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

35306 строки
887 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. });
  45. return createEntityMaker(info, views, defaultSizes);
  46. }
  47. const speciesData = {
  48. animal: {
  49. name: "Animal"
  50. },
  51. dog: {
  52. name: "Dog",
  53. parents: [
  54. "canine"
  55. ]
  56. },
  57. canine: {
  58. name: "Canine",
  59. parents: [
  60. "mammal"
  61. ]
  62. },
  63. crux: {
  64. name: "Crux",
  65. parents: [
  66. "mammal"
  67. ]
  68. },
  69. mammal: {
  70. name: "Mammal",
  71. parents: [
  72. "animal"
  73. ]
  74. },
  75. "rough-collie": {
  76. name: "Rough Collie",
  77. parents: [
  78. "dog"
  79. ]
  80. },
  81. dragon: {
  82. name: "Dragon",
  83. parents: [
  84. "reptile"
  85. ]
  86. },
  87. reptile: {
  88. name: "Reptile",
  89. parents: [
  90. "animal"
  91. ]
  92. },
  93. woodpecker: {
  94. name: "Woodpecker",
  95. parents: [
  96. "avian"
  97. ]
  98. },
  99. avian: {
  100. name: "Avian",
  101. parents: [
  102. "animal"
  103. ]
  104. },
  105. kitsune: {
  106. name: "Kitsune",
  107. parents: [
  108. "fox"
  109. ]
  110. },
  111. fox: {
  112. name: "Fox",
  113. parents: [
  114. "mammal"
  115. ]
  116. },
  117. pokemon: {
  118. name: "Pokemon"
  119. },
  120. tiger: {
  121. name: "Tiger",
  122. parents: [
  123. "cat"
  124. ]
  125. },
  126. cat: {
  127. name: "Cat",
  128. parents: [
  129. "mammal"
  130. ]
  131. },
  132. "blue-jay": {
  133. name: "Blue Jay",
  134. parents: [
  135. "avian"
  136. ]
  137. },
  138. wolf: {
  139. name: "Wolf",
  140. parents: [
  141. "mammal"
  142. ]
  143. },
  144. coyote: {
  145. name: "Coyote",
  146. parents: [
  147. "mammal"
  148. ]
  149. },
  150. raccoon: {
  151. name: "Raccoon",
  152. parents: [
  153. "mammal"
  154. ]
  155. },
  156. weasel: {
  157. name: "Weasel",
  158. parents: [
  159. "mammal"
  160. ]
  161. },
  162. "red-panda": {
  163. name: "Red Panda",
  164. parents: [
  165. "mammal"
  166. ]
  167. },
  168. dolphin: {
  169. name: "Dolphin",
  170. parents: [
  171. "mammal"
  172. ]
  173. },
  174. "african-wild-dog": {
  175. name: "African Wild Dog",
  176. parents: [
  177. "canine"
  178. ]
  179. },
  180. "hyena": {
  181. name: "Hyena",
  182. parents: [
  183. "canine"
  184. ]
  185. },
  186. "carbuncle": {
  187. name: "Carbuncle",
  188. parents: [
  189. "animal"
  190. ]
  191. },
  192. bat: {
  193. name: "Bat",
  194. parents: [
  195. "mammal"
  196. ]
  197. },
  198. "leaf-nosed-bat": {
  199. name: "Leaf-Nosed Bat",
  200. parents: [
  201. "bat"
  202. ]
  203. },
  204. "fish": {
  205. name: "Fish",
  206. parents: [
  207. "animal"
  208. ]
  209. },
  210. "ram": {
  211. name: "Ram",
  212. parents: [
  213. "mammal"
  214. ]
  215. },
  216. "demon": {
  217. name: "Demon"
  218. },
  219. "cougar": {
  220. name: "Cougar",
  221. parents: [
  222. "cat"
  223. ]
  224. },
  225. "goat": {
  226. name: "Goat",
  227. parents: [
  228. "mammal"
  229. ]
  230. },
  231. "lion": {
  232. name: "Lion",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "harpy-eager": {
  238. name: "Harpy Eagle",
  239. parents: [
  240. "avian"
  241. ]
  242. },
  243. "deer": {
  244. name: "Deer",
  245. parents: [
  246. "mammal"
  247. ]
  248. },
  249. "phoenix": {
  250. name: "Phoenix",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "aeromorph": {
  256. name: "Aeromorph",
  257. parents: [
  258. "machine"
  259. ]
  260. },
  261. "machine": {
  262. name: "Machine",
  263. },
  264. "android": {
  265. name: "Android",
  266. parents: [
  267. "machine"
  268. ]
  269. },
  270. "jackal": {
  271. name: "Jackal",
  272. parents: [
  273. "canine"
  274. ]
  275. },
  276. "corvid": {
  277. name: "Corvid",
  278. parents: [
  279. "avian"
  280. ]
  281. },
  282. "pharaoh-hound": {
  283. name: "Pharaoh Hound",
  284. parents: [
  285. "dog"
  286. ]
  287. },
  288. "skunk": {
  289. name: "Skunk",
  290. parents: [
  291. "mammal"
  292. ]
  293. },
  294. "shark": {
  295. name: "Shark",
  296. parents: [
  297. "fish"
  298. ]
  299. },
  300. "black-panther": {
  301. name: "Black Panther",
  302. parents: [
  303. "cat"
  304. ]
  305. },
  306. "umbra": {
  307. name: "Umbra",
  308. parents: [
  309. "animal"
  310. ]
  311. },
  312. "raven": {
  313. name: "Raven",
  314. parents: [
  315. "corvid"
  316. ]
  317. },
  318. "snow-leopard": {
  319. name: "Snow Leopard",
  320. parents: [
  321. "cat"
  322. ]
  323. },
  324. "barbary-lion": {
  325. name: "Barbary Lion",
  326. parents: [
  327. "lion"
  328. ]
  329. },
  330. "dra'gal": {
  331. name: "Dra'Gal",
  332. parents: [
  333. "mammal"
  334. ]
  335. },
  336. "german-shepherd": {
  337. name: "German Shepherd",
  338. parents: [
  339. "dog"
  340. ]
  341. },
  342. "bayleef": {
  343. name: "Bayleef",
  344. parents: [
  345. "pokemon"
  346. ]
  347. },
  348. "mouse": {
  349. name: "Mouse",
  350. parents: [
  351. "rodent"
  352. ]
  353. },
  354. "rat": {
  355. name: "Rat",
  356. parents: [
  357. "mammal"
  358. ]
  359. },
  360. "hoshiko-beast": {
  361. name: "Hoshiko Beast",
  362. parents: ["animal"]
  363. },
  364. "snow-jugani": {
  365. name: "Snow Jugani",
  366. parents: ["cat"]
  367. },
  368. "patamon": {
  369. name: "Patamon",
  370. parents: ["digimon"]
  371. },
  372. "digimon": {
  373. name: "Digimon",
  374. },
  375. "jugani": {
  376. name: "Jugani",
  377. parents: ["cat"]
  378. },
  379. "luxray": {
  380. name: "Luxray",
  381. parents: ["pokemon"]
  382. },
  383. "mech": {
  384. name: "Mech",
  385. parents: ["machine"]
  386. },
  387. "zoid": {
  388. name: "Zoid",
  389. parents: ["mech"]
  390. },
  391. "monster": {
  392. name: "Monster",
  393. parents: ["animal"]
  394. },
  395. "foo-dog": {
  396. name: "Foo Dog",
  397. parents: ["mammal"]
  398. },
  399. "elephant": {
  400. name: "Elephant",
  401. parents: ["mammal"]
  402. },
  403. "eagle": {
  404. name: "Eagle",
  405. parents: ["avian"]
  406. },
  407. "cow": {
  408. name: "Cow",
  409. parents: ["mammal"]
  410. },
  411. "crocodile": {
  412. name: "Crocodile",
  413. parents: ["reptile"]
  414. },
  415. "borzoi": {
  416. name: "Borzoi",
  417. parents: ["dog"]
  418. },
  419. "snake": {
  420. name: "Snake",
  421. parents: ["reptile"]
  422. },
  423. "horned-bush-viper": {
  424. name: "Horned Bush Viper",
  425. parents: ["snake"]
  426. },
  427. "cobra": {
  428. name: "Cobra",
  429. parents: ["snake"]
  430. },
  431. "harpy-eagle": {
  432. name: "Harpy Eagle",
  433. parents: ["eagle"]
  434. },
  435. "raptor": {
  436. name: "Raptor",
  437. parents: ["dinosaur"]
  438. },
  439. "dinosaur": {
  440. name: "Dinosaur",
  441. parents: ["reptile"]
  442. },
  443. "veilhound": {
  444. name: "Veilhound",
  445. parents: ["hellhound", "demon"]
  446. },
  447. "hellhound": {
  448. name: "Hellhound",
  449. parents: ["canine"]
  450. },
  451. "insect": {
  452. name: "Insect",
  453. parents: ["animal"]
  454. },
  455. "beetle": {
  456. name: "Beetle",
  457. parents: ["insect"]
  458. },
  459. "moth": {
  460. name: "Moth",
  461. parents: ["insect"]
  462. },
  463. "eastern-dragon": {
  464. name: "Eastern Dragon",
  465. parents: ["dragon"]
  466. },
  467. "jaguar": {
  468. name: "Jaguar",
  469. parents: ["cat"]
  470. },
  471. "horse": {
  472. name: "Horse",
  473. parents: ["mammal"]
  474. },
  475. "sergal": {
  476. name: "Sergal",
  477. parents: ["mammal"]
  478. },
  479. "gryphon": {
  480. name: "Gryphon",
  481. parents: ["lion", "eagle"]
  482. },
  483. "robot": {
  484. name: "Robot",
  485. parents: ["machine"]
  486. },
  487. "medihound": {
  488. name: "Medihound",
  489. parents: ["robot", "dog"]
  490. },
  491. "sylveon": {
  492. name: "Sylveon",
  493. parents: ["pokemon"]
  494. },
  495. "catgirl": {
  496. name: "Catgirl",
  497. parents: ["mammal"]
  498. },
  499. "cowgirl": {
  500. name: "Cowgirl",
  501. parents: ["mammal"]
  502. },
  503. "pony": {
  504. name: "Pony",
  505. parents: ["horse"]
  506. },
  507. "rabbit": {
  508. name: "Rabbit",
  509. parents: ["mammal"]
  510. },
  511. "fennec-fox": {
  512. name: "Fennec Fox",
  513. parents: ["fox"]
  514. },
  515. "azodian": {
  516. name: "Azodian",
  517. parents: ["mouse"]
  518. },
  519. "shiba-inu": {
  520. name: "Shiba Inu",
  521. parents: ["dog"]
  522. },
  523. "changeling": {
  524. name: "Changeling",
  525. parents: ["insect"]
  526. },
  527. "cheetah": {
  528. name: "Cheetah",
  529. parents: ["cat"]
  530. },
  531. "golden-jackal": {
  532. name: "Golden Jackal",
  533. parents: ["jackal"]
  534. },
  535. "manectric": {
  536. name: "Manectric",
  537. parents: ["pokemon"]
  538. },
  539. "rat": {
  540. name: "Rat",
  541. parents: ["rodent"]
  542. },
  543. "rodent": {
  544. name: "Rodent",
  545. parents: ["mammal"]
  546. },
  547. "octocoon": {
  548. name: "Octocoon",
  549. parents: ["raccoon", "octopus"]
  550. },
  551. "octopus": {
  552. name: "Octopus",
  553. parents: ["fish"]
  554. },
  555. "werewolf": {
  556. name: "Werewolf",
  557. parents: ["wolf"]
  558. },
  559. "meerkat": {
  560. name: "Meerkat",
  561. parents: ["mammal"]
  562. },
  563. "human": {
  564. name: "Human",
  565. parents: ["mammal"]
  566. },
  567. "geth": {
  568. name: "Geth",
  569. parents: ["android"]
  570. },
  571. "husky": {
  572. name: "Husky",
  573. parents: ["dog"]
  574. },
  575. "long-eared-bat": {
  576. name: "Long Eared Bat",
  577. parents: ["bat"]
  578. },
  579. "lizard": {
  580. name: "Lizard",
  581. parents: ["reptile"]
  582. },
  583. "salamander": {
  584. name: "Salamander",
  585. parents: ["lizard"]
  586. },
  587. "chameleon": {
  588. name: "Chameleon",
  589. parents: ["lizard"]
  590. },
  591. "gecko": {
  592. name: "Gecko",
  593. parents: ["lizard"]
  594. },
  595. "kobold": {
  596. name: "Kobold",
  597. parents: ["reptile"]
  598. },
  599. "charizard": {
  600. name: "Charizard",
  601. parents: ["pokemon"]
  602. },
  603. "lugia": {
  604. name: "Lugia",
  605. parents: ["pokemon"]
  606. },
  607. "cerberus": {
  608. name: "Cerberus",
  609. parents: ["dog"]
  610. },
  611. "tyrantrum": {
  612. name: "Tyrantrum",
  613. parents: ["pokemon"]
  614. },
  615. "lemur": {
  616. name: "Lemur",
  617. parents: ["mammal"]
  618. },
  619. "kelpie": {
  620. name: "Kelpie",
  621. parents: ["horse", "monster"]
  622. },
  623. "labrador": {
  624. name: "Labrador",
  625. parents: ["dog"]
  626. },
  627. "sylveon": {
  628. name: "Sylveon",
  629. parents: ["eeveelution"]
  630. },
  631. "eeveelution": {
  632. name: "Eeveelution",
  633. parents: ["pokemon"]
  634. },
  635. "polar-bear": {
  636. name: "Polar Bear",
  637. parents: ["bear"]
  638. },
  639. "bear": {
  640. name: "Bear",
  641. parents: ["mammal"]
  642. },
  643. "absol": {
  644. name: "Absol",
  645. parents: ["pokemon"]
  646. },
  647. "wolver": {
  648. name: "Wolver",
  649. parents: ["mammal"]
  650. },
  651. "rottweiler": {
  652. name: "Rottweiler",
  653. parents: ["dog"]
  654. },
  655. "zebra": {
  656. name: "Zebra",
  657. parents: ["horse"]
  658. },
  659. "yoshi": {
  660. name: "Yoshi",
  661. parents: ["lizard"]
  662. },
  663. "lynx": {
  664. name: "Lynx",
  665. parents: ["cat"]
  666. },
  667. "unknown": {
  668. name: "Unknown",
  669. parents: []
  670. },
  671. "thylacine": {
  672. name: "Thylacine",
  673. parents: ["mammal"]
  674. },
  675. "gabumon": {
  676. name: "Gabumon",
  677. parents: ["digimon"]
  678. },
  679. "border-collie": {
  680. name: "Border Collie",
  681. parents: ["dog"]
  682. },
  683. "imp": {
  684. name: "Imp",
  685. parents: ["demon"]
  686. },
  687. "kangaroo": {
  688. name: "Kangaroo",
  689. parents: ["mammal"]
  690. },
  691. "renamon": {
  692. name: "Renamon",
  693. parents: ["digimon"]
  694. },
  695. "candy-orca-dragon": {
  696. name: "Candy Orca Dragon",
  697. parents: ["fish", "dragon", "candy"]
  698. },
  699. "sabertooth-tiger": {
  700. name: "Sabertooth Tiger",
  701. parents: ["cat"]
  702. },
  703. "espurr": {
  704. name: "Espurr",
  705. parents: ["pokemon"]
  706. },
  707. "otter": {
  708. name: "Otter",
  709. parents: ["mammal"]
  710. },
  711. "elemental": {
  712. name: "Elemental",
  713. parents: ["mammal"]
  714. },
  715. "mew": {
  716. name: "Mew",
  717. parents: ["pokemon"]
  718. },
  719. "goodra": {
  720. name: "Goodra",
  721. parents: ["pokemon"]
  722. },
  723. "fairy": {
  724. name: "Fairy",
  725. parents: ["magical"]
  726. },
  727. "typhlosion": {
  728. name: "Typhlosion",
  729. parents: ["pokemon"]
  730. },
  731. "magical": {
  732. name: "Magical",
  733. parents: []
  734. },
  735. "xenomorph": {
  736. name: "Xenomorph",
  737. parents: ["monster", "alien"]
  738. },
  739. "charr": {
  740. name: "Charr",
  741. parents: ["cat"]
  742. },
  743. "siberian-husky": {
  744. name: "Siberian Husky",
  745. parents: ["husky"]
  746. },
  747. "alligator": {
  748. name: "Alligator",
  749. parents: ["reptile"]
  750. },
  751. "bernese-mountain-dog": {
  752. name: "Bernese Mountain Dog",
  753. parents: ["dog"]
  754. },
  755. "reshiram": {
  756. name: "Reshiram",
  757. parents: ["pokemon"]
  758. },
  759. "grizzly-bear": {
  760. name: "Grizzly Bear",
  761. parents: ["bear"]
  762. },
  763. "water-monitor": {
  764. name: "Water Monitor",
  765. parents: ["lizard"]
  766. },
  767. "banchofossa": {
  768. name: "Banchofossa",
  769. parents: ["mammal"]
  770. },
  771. "kirin": {
  772. name: "Kirin",
  773. parents: ["monster"]
  774. },
  775. "quilava": {
  776. name: "Quilava",
  777. parents: ["pokemon"]
  778. },
  779. "seviper": {
  780. name: "Seviper",
  781. parents: ["pokemon"]
  782. },
  783. "flying-fox": {
  784. name: "Flying Fox",
  785. parents: ["bat"]
  786. },
  787. "keynain": {
  788. name: "Keynain",
  789. parents: ["avian"]
  790. },
  791. "lucario": {
  792. name: "Lucario",
  793. parents: ["pokemon"]
  794. },
  795. "siamese-cat": {
  796. name: "Siamese Cat",
  797. parents: ["cat"]
  798. },
  799. "spider": {
  800. name: "Spider",
  801. parents: ["insect"]
  802. },
  803. "samurott": {
  804. name: "Samurott",
  805. parents: ["pokemon"]
  806. },
  807. "megalodon": {
  808. name: "Megalodon",
  809. parents: ["shark"]
  810. },
  811. "unicorn": {
  812. name: "Unicorn",
  813. parents: ["horse"]
  814. },
  815. "greninja": {
  816. name: "Greninja",
  817. parents: ["pokemon"]
  818. },
  819. "water-dragon": {
  820. name: "Water Dragon",
  821. parents: ["dragon"]
  822. },
  823. "cross-fox": {
  824. name: "Cross Fox",
  825. parents: ["fox"]
  826. },
  827. "synth": {
  828. name: "Synth",
  829. parents: ["machine"]
  830. },
  831. "construct": {
  832. name: "Construct",
  833. parents: []
  834. },
  835. "mexican-wolf": {
  836. name: "Mexican Wolf",
  837. parents: ["wolf"]
  838. },
  839. "leopard": {
  840. name: "Leopard",
  841. parents: ["cat"]
  842. },
  843. "pig": {
  844. name: "Pig",
  845. parents: ["mammal"]
  846. },
  847. "ampharos": {
  848. name: "Ampharos",
  849. parents: ["pokemon"]
  850. },
  851. "orca": {
  852. name: "Orca",
  853. parents: ["fish"]
  854. },
  855. "lycanroc": {
  856. name: "Lycanroc",
  857. parents: ["pokemon"]
  858. },
  859. "surkanu": {
  860. name: "Surkanu",
  861. parents: ["monster"]
  862. },
  863. "seal": {
  864. name: "Seal",
  865. parents: ["mammal"]
  866. },
  867. "keldeo": {
  868. name: "Keldeo",
  869. parents: ["pokemon"]
  870. },
  871. "great-dane": {
  872. name: "Great Dane",
  873. parents: ["dog"]
  874. },
  875. "black-backed-jackal": {
  876. name: "Black Backed Jackal",
  877. parents: ["jackal"]
  878. },
  879. "sheep": {
  880. name: "Sheep",
  881. parents: ["mammal"]
  882. },
  883. "leopard-seal": {
  884. name: "Leopard Seal",
  885. parents: ["seal"]
  886. },
  887. "zoroark": {
  888. name: "Zoroark",
  889. parents: ["pokemon"]
  890. },
  891. "maned-wolf": {
  892. name: "Maned Wolf",
  893. parents: ["canine"]
  894. },
  895. "dracha": {
  896. name: "Dracha",
  897. parents: ["dragon"]
  898. },
  899. "wolxi": {
  900. name: "Wolxi",
  901. parents: ["mammal", "alien"]
  902. },
  903. "dratini": {
  904. name: "Dratini",
  905. parents: ["pokemon", "dragon"]
  906. },
  907. "skaven": {
  908. name: "Skaven",
  909. parents: ["rat"]
  910. },
  911. "mongoose": {
  912. name: "Mongoose",
  913. parents: ["mammal"]
  914. },
  915. "lopunny": {
  916. name: "Lopunny",
  917. parents: ["pokemon", "rabbit"]
  918. },
  919. "feraligatr": {
  920. name: "Feraligatr",
  921. parents: ["pokemon", "alligator"]
  922. },
  923. "houndoom": {
  924. name: "Houndoom",
  925. parents: ["pokemon", "dog"]
  926. },
  927. "protogen": {
  928. name: "Protogen",
  929. parents: ["machine"]
  930. },
  931. "saint-bernard": {
  932. name: "Saint Bernard",
  933. parents: ["dog"]
  934. },
  935. "crow": {
  936. name: "Crow",
  937. parents: ["corvid"]
  938. },
  939. "delphox": {
  940. name: "Delphox",
  941. parents: ["pokemon", "fox"]
  942. },
  943. "moose": {
  944. name: "Moose",
  945. parents: ["mammal"]
  946. },
  947. "joraxian": {
  948. name: "Joraxian",
  949. parents: ["monster", "canine", "demon"]
  950. },
  951. "nimbat": {
  952. name: "Nimbat",
  953. parents: ["mammal"]
  954. },
  955. "aardwolf": {
  956. name: "Aardwolf",
  957. parents: ["canine"]
  958. },
  959. "fluudrani": {
  960. name: "Fluudrani",
  961. parents: ["animal"]
  962. },
  963. "arcanine": {
  964. name: "Arcanine",
  965. parents: ["pokemon", "dog"]
  966. },
  967. "inteleon": {
  968. name: "Inteleon",
  969. parents: ["pokemon", "fish"]
  970. },
  971. "ninetales": {
  972. name: "Ninetales",
  973. parents: ["pokemon", "kitsune"]
  974. },
  975. "tigrex": {
  976. name: "Tigrex",
  977. parents: ["tiger"]
  978. },
  979. "zorua": {
  980. name: "Zorua",
  981. parents: ["pokemon", "fox"]
  982. },
  983. "vulpix": {
  984. name: "Vulpix",
  985. parents: ["pokemon", "fox"]
  986. },
  987. "barghest": {
  988. name: "Barghest",
  989. parents: ["monster"]
  990. },
  991. "gray-wolf": {
  992. name: "Gray Wolf",
  993. parents: ["wolf"]
  994. },
  995. "ruppells-fox": {
  996. name: "Rüppell's Fox",
  997. parents: ["fox"]
  998. },
  999. "bull-terrier": {
  1000. name: "Bull Terrier",
  1001. parents: ["dog"]
  1002. },
  1003. "european-honey-buzzard": {
  1004. name: "European Honey Buzzard",
  1005. parents: ["avian"]
  1006. },
  1007. "t-rex": {
  1008. name: "T Rex",
  1009. parents: ["dinosaur"]
  1010. },
  1011. "mactarian": {
  1012. name: "Mactarian",
  1013. parents: ["shark", "monster"]
  1014. },
  1015. "mewtwo-y": {
  1016. name: "Mewtwo Y",
  1017. parents: ["mewtwo"]
  1018. },
  1019. "mewtwo": {
  1020. name: "Mewtwo",
  1021. parents: ["pokemon"]
  1022. },
  1023. "mew": {
  1024. name: "Mew",
  1025. parents: ["pokemon"]
  1026. },
  1027. "eevee": {
  1028. name: "Eevee",
  1029. parents: ["eeveelution"]
  1030. },
  1031. "mienshao": {
  1032. name: "Mienshao",
  1033. parents: ["pokemon"]
  1034. },
  1035. "sugar-glider": {
  1036. name: "Sugar Glider",
  1037. parents: ["opossum"]
  1038. },
  1039. "spectral-bat": {
  1040. name: "Spectral Bat",
  1041. parents: ["bat"]
  1042. },
  1043. "scolipede": {
  1044. name: "Scolipede",
  1045. parents: ["pokemon", "insect"]
  1046. },
  1047. "jackalope": {
  1048. name: "Jackalope",
  1049. parents: ["rabbit", "antelope"]
  1050. },
  1051. "caracal": {
  1052. name: "Caracal",
  1053. parents: ["cat"]
  1054. },
  1055. "stoat": {
  1056. name: "Stoat",
  1057. parents: ["mammal"]
  1058. },
  1059. "african-golden-cat": {
  1060. name: "African Golden Cat",
  1061. parents: ["cat"]
  1062. },
  1063. "gigantosaurus": {
  1064. name: "Gigantosaurus",
  1065. parents: ["dinosaur"]
  1066. },
  1067. "zorgoia": {
  1068. name: "Zorgoia",
  1069. parents: ["mammal"]
  1070. },
  1071. "monitor-lizard": {
  1072. name: "Monitor Lizard",
  1073. parents: ["lizard"]
  1074. },
  1075. "ziralkia": {
  1076. name: "Ziralkia",
  1077. parents: ["mammal"]
  1078. },
  1079. "kiiasi": {
  1080. name: "Kiiasi",
  1081. parents: ["animal"]
  1082. },
  1083. "synx": {
  1084. name: "Synx",
  1085. parents: ["monster"]
  1086. },
  1087. "panther": {
  1088. name: "Panther",
  1089. parents: ["cat"]
  1090. },
  1091. "azumarill": {
  1092. name: "Azumarill",
  1093. parents: ["pokemon"]
  1094. },
  1095. "river-snaptail": {
  1096. name: "River Snaptail",
  1097. parents: ["otter", "crocodile"]
  1098. },
  1099. "great-blue-heron": {
  1100. name: "Great Blue Heron",
  1101. parents: ["avian"]
  1102. },
  1103. "smeargle": {
  1104. name: "Smeargle",
  1105. parents: ["pokemon"]
  1106. },
  1107. "vendeilen": {
  1108. name: "Vendeilen",
  1109. parents: ["monster"]
  1110. },
  1111. "ventura": {
  1112. name: "Ventura",
  1113. parents: ["canine"]
  1114. },
  1115. "clouded-leopard": {
  1116. name: "Clouded Leopard",
  1117. parents: ["leopard"]
  1118. },
  1119. "argonian": {
  1120. name: "Argonian",
  1121. parents: ["lizard"]
  1122. },
  1123. "salazzle": {
  1124. name: "Salazzle",
  1125. parents: ["pokemon", "lizard"]
  1126. },
  1127. "je-stoff-drachen": {
  1128. name: "Je-Stoff Drachen",
  1129. parents: ["dragon"]
  1130. },
  1131. "finnish-spitz-dog": {
  1132. name: "Finnish Spitz Dog",
  1133. parents: ["dog"]
  1134. },
  1135. "gray-fox": {
  1136. name: "Gray Fox",
  1137. parents: ["fox"]
  1138. },
  1139. "opossum": {
  1140. name: "opossum",
  1141. parents: ["mammal"]
  1142. },
  1143. "antelope": {
  1144. name: "Antelope",
  1145. parents: ["mammal"]
  1146. },
  1147. "weavile": {
  1148. name: "Weavile",
  1149. parents: ["pokemon"]
  1150. },
  1151. "pikachu": {
  1152. name: "Pikachu",
  1153. parents: ["pokemon", "mouse"]
  1154. },
  1155. "grovyle": {
  1156. name: "Grovyle",
  1157. parents: ["pokemon", "plant"]
  1158. },
  1159. "sthara": {
  1160. name: "Sthara",
  1161. parents: ["snow-leopard", "reptile"]
  1162. },
  1163. "star-warrior": {
  1164. name: "Star Warrior",
  1165. parents: ["magical"]
  1166. },
  1167. "dragonoid": {
  1168. name: "Dragonoid",
  1169. parents: ["dragon"]
  1170. },
  1171. "suicune": {
  1172. name: "Suicune",
  1173. parents: ["pokemon"]
  1174. },
  1175. "vole": {
  1176. name: "Vole",
  1177. parents: ["mammal"]
  1178. },
  1179. "blaziken": {
  1180. name: "Blaziken",
  1181. parents: ["pokemon", "avian"]
  1182. },
  1183. "buizel": {
  1184. name: "Buizel",
  1185. parents: ["pokemon", "fish"]
  1186. },
  1187. "floatzel": {
  1188. name: "Floatzel",
  1189. parents: ["pokemon", "fish"]
  1190. },
  1191. "umok": {
  1192. name: "Umok",
  1193. parents: ["avian"]
  1194. },
  1195. "sea-monster": {
  1196. name: "Sea Monster",
  1197. parents: ["monster", "fish"]
  1198. },
  1199. "egyptian-vulture": {
  1200. name: "Egyptian Vulture",
  1201. parents: ["avian"]
  1202. },
  1203. "doberman": {
  1204. name: "Doberman",
  1205. parents: ["dog"]
  1206. },
  1207. "zangoose": {
  1208. name: "Zangoose",
  1209. parents: ["pokemon", "mongoose"]
  1210. },
  1211. "mongoose": {
  1212. name: "Mongoose",
  1213. parents: ["mammal"]
  1214. },
  1215. "wickerbeast": {
  1216. name: "Wickerbeast",
  1217. parents: ["monster"]
  1218. },
  1219. "zenari": {
  1220. name: "Zenari",
  1221. parents: ["lizard"]
  1222. },
  1223. "plant": {
  1224. name: "Plant",
  1225. parents: []
  1226. },
  1227. "raskatox": {
  1228. name: "Raskatox",
  1229. parents: ["raccoon", "skunk", "cat", "fox"]
  1230. },
  1231. "mikromare": {
  1232. name: "mikromare",
  1233. parents: ["alien"]
  1234. },
  1235. "alien": {
  1236. name: "Alien",
  1237. parents: ["animal"]
  1238. },
  1239. "deity": {
  1240. name: "Deity",
  1241. parents: []
  1242. },
  1243. "skarlan": {
  1244. name: "Skarlan",
  1245. parents: ["slug", "dragon"]
  1246. },
  1247. "slug": {
  1248. name: "Slug",
  1249. parents: ["mollusk"]
  1250. },
  1251. "mollusk": {
  1252. name: "Mollusk",
  1253. parents: ["animal"]
  1254. },
  1255. "chimera": {
  1256. name: "Chimera",
  1257. parents: ["monster"]
  1258. },
  1259. "gestalt": {
  1260. name: "Gestalt",
  1261. parents: ["construct"]
  1262. },
  1263. "mimic": {
  1264. name: "Mimic",
  1265. parents: ["monster"]
  1266. },
  1267. "calico-rat": {
  1268. name: "Calico Rat",
  1269. parents: ["rat"]
  1270. },
  1271. "panda": {
  1272. name: "Panda",
  1273. parents: ["mammal"]
  1274. },
  1275. "oni": {
  1276. name: "Oni",
  1277. parents: ["monster"]
  1278. },
  1279. "pegasus": {
  1280. name: "Pegasus",
  1281. parents: ["horse"]
  1282. },
  1283. "vulpera": {
  1284. name: "Vulpera",
  1285. parents: ["fennec-fox"]
  1286. },
  1287. "ceratosaurus": {
  1288. name: "Ceratosaurus",
  1289. parents: ["dinosaur"]
  1290. },
  1291. "nykur": {
  1292. name: "Nykur",
  1293. parents: ["horse", "monster"]
  1294. },
  1295. "giraffe": {
  1296. name: "Giraffe",
  1297. parents: ["mammal"]
  1298. },
  1299. "tauren": {
  1300. name: "Tauren",
  1301. parents: ["cow"]
  1302. },
  1303. "draconi": {
  1304. name: "Draconi",
  1305. parents: ["alien", "cat", "cyborg"]
  1306. },
  1307. "dire-wolf": {
  1308. name: "Dire Wolf",
  1309. parents: ["wolf"]
  1310. },
  1311. "ferromorph": {
  1312. name: "Ferromorph",
  1313. parents: ["construct"]
  1314. },
  1315. "meowth": {
  1316. name: "Meowth",
  1317. parents: ["cat", "pokemon"]
  1318. },
  1319. "pavodragon": {
  1320. name: "Pavodragon",
  1321. parents: ["dragon"]
  1322. },
  1323. "aaltranae": {
  1324. name: "Aaltranae",
  1325. parents: ["dragon"]
  1326. },
  1327. "cyborg": {
  1328. name: "Cyborg",
  1329. parents: ["machine"]
  1330. },
  1331. "draptor": {
  1332. name: "Draptor",
  1333. parents: ["dragon"]
  1334. },
  1335. "candy": {
  1336. name: "Candy",
  1337. parents: []
  1338. },
  1339. "drenath": {
  1340. name: "Drenath",
  1341. parents: ["dragon", "snake", "rabbit"]
  1342. },
  1343. "coyju": {
  1344. name: "Coyju",
  1345. parents: ["coyote", "kaiju"]
  1346. },
  1347. "kaiju": {
  1348. name: "Kaiju",
  1349. parents: ["monster"]
  1350. },
  1351. "nickit": {
  1352. name: "Nickit",
  1353. parents: ["pokemon", "cat"]
  1354. },
  1355. "lopunny": {
  1356. name: "Lopunny",
  1357. parents: ["pokemon", "rabbit"]
  1358. },
  1359. "korean-jindo-dog": {
  1360. name: "Korean Jindo Dog",
  1361. parents: ["dog"]
  1362. },
  1363. "naga": {
  1364. name: "Naga",
  1365. parents: ["snake", "monster"]
  1366. },
  1367. "undead": {
  1368. name: "Undead",
  1369. parents: ["monster"]
  1370. },
  1371. "whale": {
  1372. name: "Whale",
  1373. parents: ["fish"]
  1374. },
  1375. "gelato-bee": {
  1376. name: "Gelato Bee",
  1377. parents: ["bee"]
  1378. },
  1379. "bee": {
  1380. name: "Bee",
  1381. parents: ["insect"]
  1382. },
  1383. "gardevoir": {
  1384. name: "Gardevoir",
  1385. parents: ["pokemon"]
  1386. },
  1387. "ant": {
  1388. name: "Ant",
  1389. parents: ["insect"]
  1390. },
  1391. "frog": {
  1392. name: "Frog",
  1393. parents: ["amphibian"]
  1394. },
  1395. "amphibian": {
  1396. name: "Amphibian",
  1397. parents: ["animal"]
  1398. },
  1399. "pangolin": {
  1400. name: "Pangolin",
  1401. parents: ["mammal"]
  1402. },
  1403. "uragi'viidorn": {
  1404. name: "Uragi'viidorn",
  1405. parents: ["avian", "bear"]
  1406. },
  1407. "gryphdelphais": {
  1408. name: "Gryphdelphais",
  1409. parents: ["dolphin", "gryphon"]
  1410. },
  1411. "plush": {
  1412. name: "Plush",
  1413. parents: ["construct"]
  1414. },
  1415. "draiger": {
  1416. name: "Draiger",
  1417. parents: ["dragon","tiger"]
  1418. },
  1419. "foxsky": {
  1420. name: "Foxsky",
  1421. parents: ["fox", "husky"]
  1422. },
  1423. "umbreon": {
  1424. name: "Umbreon",
  1425. parents: ["eeveelution"]
  1426. },
  1427. "slime-dragon": {
  1428. name: "Slime Dragon",
  1429. parents: ["dragon"]
  1430. },
  1431. "enderman": {
  1432. name: "Enderman",
  1433. parents: ["monster"]
  1434. },
  1435. "gremlin": {
  1436. name: "Gremlin",
  1437. parents: ["monster"]
  1438. },
  1439. "dragonsune": {
  1440. name: "Dragonsune",
  1441. parents: ["dragon", "kitsune"]
  1442. },
  1443. "ghost": {
  1444. name: "Ghost",
  1445. parents: ["monster"]
  1446. },
  1447. "false-vampire-bat": {
  1448. name: "False Vampire Bat",
  1449. parents: ["bat"]
  1450. },
  1451. "succubus": {
  1452. name: "Succubus",
  1453. parents: ["demon"]
  1454. },
  1455. "mia": {
  1456. name: "Mia",
  1457. parents: ["canine"]
  1458. },
  1459. "rainbow": {
  1460. name: "Rainbow",
  1461. parents: ["monster"]
  1462. },
  1463. "solgaleo": {
  1464. name: "Solgaleo",
  1465. parents: ["pokemon"]
  1466. },
  1467. "lucent-nargacuga": {
  1468. name: "Lucent Nargacuga",
  1469. parents: ["monster-hunter"]
  1470. },
  1471. "monster-hunter": {
  1472. name: "Monster Hunter",
  1473. parents: ["monster"]
  1474. },
  1475. "leviathan": {
  1476. "name": "Leviathan",
  1477. "url": "sea-monster"
  1478. },
  1479. "bull": {
  1480. name: "Bull",
  1481. parents: ["mammal"]
  1482. },
  1483. "tanuki": {
  1484. name: "Tanuki",
  1485. parents: ["monster"]
  1486. },
  1487. "chakat": {
  1488. name: "Chakat",
  1489. parents: ["cat"]
  1490. },
  1491. "hydra": {
  1492. name: "Hydra",
  1493. parents: ["monster"]
  1494. },
  1495. "zigzagoon": {
  1496. name: "Zigzagoon",
  1497. parents: ["raccoon", "pokemon"]
  1498. },
  1499. "vulture": {
  1500. name: "Vulture",
  1501. parents: ["avian"]
  1502. },
  1503. "eastern-dragon": {
  1504. name: "Eastern Dragon",
  1505. parents: ["dragon"]
  1506. },
  1507. "gryffon": {
  1508. name: "Gryffon",
  1509. parents: ["phoenix", "red-panda"]
  1510. },
  1511. "amtsvane": {
  1512. name: "Amtsvane",
  1513. parents: ["reptile"]
  1514. },
  1515. "kigavi": {
  1516. name: "Kigavi",
  1517. parents: ["avian"]
  1518. },
  1519. "turian": {
  1520. name: "Turian",
  1521. parents: ["avian"]
  1522. },
  1523. "zeraora": {
  1524. name: "Zeraora",
  1525. parents: ["pokemon"]
  1526. },
  1527. "sandshrew": {
  1528. name: "Sandshrew",
  1529. parents: ["pokemon", "pangolin"]
  1530. },
  1531. "valais-blacknose-sheep": {
  1532. name: "Valais Blacknose Sheep",
  1533. parents: ["sheep"]
  1534. },
  1535. }
  1536. //species
  1537. function getSpeciesInfo(speciesList) {
  1538. let result = new Set();
  1539. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1540. result.add(entry)
  1541. });
  1542. return Array.from(result);
  1543. };
  1544. function getSpeciesInfoHelper(species) {
  1545. if (!speciesData[species]) {
  1546. console.warn(species + " doesn't exist");
  1547. return [];
  1548. }
  1549. if (speciesData[species].parents) {
  1550. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1551. } else {
  1552. return [species];
  1553. }
  1554. }
  1555. characterMakers.push(() => makeCharacter(
  1556. {
  1557. name: "Fen",
  1558. species: ["crux"],
  1559. description: {
  1560. title: "Bio",
  1561. text: "Very furry. Sheds on everything."
  1562. },
  1563. tags: [
  1564. "anthro",
  1565. "goo"
  1566. ]
  1567. },
  1568. {
  1569. back: {
  1570. height: math.unit(2.2428, "meter"),
  1571. weight: math.unit(124.738, "kg"),
  1572. name: "Back",
  1573. image: {
  1574. source: "./media/characters/fen/back.svg",
  1575. extra: 2024 / 1867,
  1576. bottom: 13 / 2037
  1577. },
  1578. info: {
  1579. description: {
  1580. mode: "append",
  1581. text: "\n\nHe is not currently looking at you."
  1582. }
  1583. }
  1584. },
  1585. full: {
  1586. height: math.unit(1.34, "meter"),
  1587. weight: math.unit(225, "kg"),
  1588. name: "Full",
  1589. image: {
  1590. source: "./media/characters/fen/full.svg"
  1591. },
  1592. info: {
  1593. description: {
  1594. mode: "append",
  1595. text: "\n\nMunch."
  1596. }
  1597. }
  1598. },
  1599. kneeling: {
  1600. height: math.unit(5.4, "feet"),
  1601. weight: math.unit(124.738, "kg"),
  1602. name: "Kneeling",
  1603. image: {
  1604. source: "./media/characters/fen/kneeling.svg",
  1605. extra: 563 / 507
  1606. }
  1607. },
  1608. goo: {
  1609. height: math.unit(2.8, "feet"),
  1610. weight: math.unit(125, "kg"),
  1611. capacity: math.unit(1, "people"),
  1612. name: "Goo",
  1613. image: {
  1614. source: "./media/characters/fen/goo.svg",
  1615. bottom: 116 / 613
  1616. }
  1617. },
  1618. lounging: {
  1619. height: math.unit(6.5, "feet"),
  1620. weight: math.unit(125, "kg"),
  1621. name: "Lounging",
  1622. image: {
  1623. source: "./media/characters/fen/lounging.svg"
  1624. }
  1625. },
  1626. },
  1627. [
  1628. {
  1629. name: "Normal",
  1630. height: math.unit(2.2428, "meter")
  1631. },
  1632. {
  1633. name: "Big",
  1634. height: math.unit(12, "feet")
  1635. },
  1636. {
  1637. name: "Minimacro",
  1638. height: math.unit(40, "feet"),
  1639. default: true,
  1640. info: {
  1641. description: {
  1642. mode: "append",
  1643. text: "\n\nTOO DAMN BIG"
  1644. }
  1645. }
  1646. },
  1647. {
  1648. name: "Macro",
  1649. height: math.unit(100, "feet"),
  1650. info: {
  1651. description: {
  1652. mode: "append",
  1653. text: "\n\nTOO DAMN BIG"
  1654. }
  1655. }
  1656. },
  1657. {
  1658. name: "Macro+",
  1659. height: math.unit(300, "feet")
  1660. },
  1661. {
  1662. name: "Megamacro",
  1663. height: math.unit(2, "miles")
  1664. }
  1665. ]
  1666. ))
  1667. characterMakers.push(() => makeCharacter(
  1668. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1669. {
  1670. front: {
  1671. height: math.unit(183, "cm"),
  1672. weight: math.unit(80, "kg"),
  1673. name: "Front",
  1674. image: {
  1675. source: "./media/characters/sofia-fluttertail/front.svg",
  1676. bottom: 0.01,
  1677. extra: 2154 / 2081
  1678. }
  1679. },
  1680. frontAlt: {
  1681. height: math.unit(183, "cm"),
  1682. weight: math.unit(80, "kg"),
  1683. name: "Front (alt)",
  1684. image: {
  1685. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1686. }
  1687. },
  1688. back: {
  1689. height: math.unit(183, "cm"),
  1690. weight: math.unit(80, "kg"),
  1691. name: "Back",
  1692. image: {
  1693. source: "./media/characters/sofia-fluttertail/back.svg"
  1694. }
  1695. },
  1696. kneeling: {
  1697. height: math.unit(125, "cm"),
  1698. weight: math.unit(80, "kg"),
  1699. name: "Kneeling",
  1700. image: {
  1701. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1702. extra: 1033 / 977,
  1703. bottom: 23.7 / 1057
  1704. }
  1705. },
  1706. maw: {
  1707. height: math.unit(183 / 5, "cm"),
  1708. name: "Maw",
  1709. image: {
  1710. source: "./media/characters/sofia-fluttertail/maw.svg"
  1711. }
  1712. },
  1713. mawcloseup: {
  1714. height: math.unit(183 / 5 * 0.41, "cm"),
  1715. name: "Maw (Closeup)",
  1716. image: {
  1717. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1718. }
  1719. },
  1720. paws: {
  1721. height: math.unit(1.17, "feet"),
  1722. name: "Paws",
  1723. image: {
  1724. source: "./media/characters/sofia-fluttertail/paws.svg",
  1725. extra: 851 / 851,
  1726. bottom: 17 / 868
  1727. }
  1728. },
  1729. },
  1730. [
  1731. {
  1732. name: "Normal",
  1733. height: math.unit(1.83, "meter")
  1734. },
  1735. {
  1736. name: "Size Thief",
  1737. height: math.unit(18, "feet")
  1738. },
  1739. {
  1740. name: "50 Foot Collie",
  1741. height: math.unit(50, "feet")
  1742. },
  1743. {
  1744. name: "Macro",
  1745. height: math.unit(96, "feet"),
  1746. default: true
  1747. },
  1748. {
  1749. name: "Megamerger",
  1750. height: math.unit(650, "feet")
  1751. },
  1752. ]
  1753. ))
  1754. characterMakers.push(() => makeCharacter(
  1755. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1756. {
  1757. front: {
  1758. height: math.unit(7, "feet"),
  1759. weight: math.unit(100, "kg"),
  1760. name: "Front",
  1761. image: {
  1762. source: "./media/characters/march/front.svg",
  1763. extra: 1,
  1764. bottom: 0.015
  1765. }
  1766. },
  1767. foot: {
  1768. height: math.unit(0.9, "feet"),
  1769. name: "Foot",
  1770. image: {
  1771. source: "./media/characters/march/foot.svg"
  1772. }
  1773. },
  1774. },
  1775. [
  1776. {
  1777. name: "Normal",
  1778. height: math.unit(7.9, "feet")
  1779. },
  1780. {
  1781. name: "Macro",
  1782. height: math.unit(220, "meters")
  1783. },
  1784. {
  1785. name: "Megamacro",
  1786. height: math.unit(2.98, "km"),
  1787. default: true
  1788. },
  1789. {
  1790. name: "Gigamacro",
  1791. height: math.unit(15963, "km")
  1792. },
  1793. {
  1794. name: "Teramacro",
  1795. height: math.unit(2980000000, "km")
  1796. },
  1797. {
  1798. name: "Examacro",
  1799. height: math.unit(250, "parsecs")
  1800. },
  1801. ]
  1802. ))
  1803. characterMakers.push(() => makeCharacter(
  1804. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1805. {
  1806. front: {
  1807. height: math.unit(6, "feet"),
  1808. weight: math.unit(60, "kg"),
  1809. name: "Front",
  1810. image: {
  1811. source: "./media/characters/noir/front.svg",
  1812. extra: 1,
  1813. bottom: 0.032
  1814. }
  1815. },
  1816. },
  1817. [
  1818. {
  1819. name: "Normal",
  1820. height: math.unit(6.6, "feet")
  1821. },
  1822. {
  1823. name: "Macro",
  1824. height: math.unit(500, "feet")
  1825. },
  1826. {
  1827. name: "Megamacro",
  1828. height: math.unit(2.5, "km"),
  1829. default: true
  1830. },
  1831. {
  1832. name: "Gigamacro",
  1833. height: math.unit(22500, "km")
  1834. },
  1835. {
  1836. name: "Teramacro",
  1837. height: math.unit(2500000000, "km")
  1838. },
  1839. {
  1840. name: "Examacro",
  1841. height: math.unit(200, "parsecs")
  1842. },
  1843. ]
  1844. ))
  1845. characterMakers.push(() => makeCharacter(
  1846. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1847. {
  1848. front: {
  1849. height: math.unit(7, "feet"),
  1850. weight: math.unit(100, "kg"),
  1851. name: "Front",
  1852. image: {
  1853. source: "./media/characters/okuri/front.svg",
  1854. extra: 1,
  1855. bottom: 0.037
  1856. }
  1857. },
  1858. back: {
  1859. height: math.unit(7, "feet"),
  1860. weight: math.unit(100, "kg"),
  1861. name: "Back",
  1862. image: {
  1863. source: "./media/characters/okuri/back.svg",
  1864. extra: 1,
  1865. bottom: 0.007
  1866. }
  1867. },
  1868. },
  1869. [
  1870. {
  1871. name: "Megamacro",
  1872. height: math.unit(100, "miles"),
  1873. default: true
  1874. },
  1875. ]
  1876. ))
  1877. characterMakers.push(() => makeCharacter(
  1878. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1879. {
  1880. front: {
  1881. height: math.unit(7, "feet"),
  1882. weight: math.unit(100, "kg"),
  1883. name: "Front",
  1884. image: {
  1885. source: "./media/characters/manny/front.svg",
  1886. extra: 1,
  1887. bottom: 0.06
  1888. }
  1889. },
  1890. back: {
  1891. height: math.unit(7, "feet"),
  1892. weight: math.unit(100, "kg"),
  1893. name: "Back",
  1894. image: {
  1895. source: "./media/characters/manny/back.svg",
  1896. extra: 1,
  1897. bottom: 0.014
  1898. }
  1899. },
  1900. },
  1901. [
  1902. {
  1903. name: "Normal",
  1904. height: math.unit(7, "feet"),
  1905. },
  1906. {
  1907. name: "Macro",
  1908. height: math.unit(78, "feet"),
  1909. default: true
  1910. },
  1911. {
  1912. name: "Macro+",
  1913. height: math.unit(300, "meters")
  1914. },
  1915. {
  1916. name: "Macro++",
  1917. height: math.unit(2400, "meters")
  1918. },
  1919. {
  1920. name: "Megamacro",
  1921. height: math.unit(5167, "meters")
  1922. },
  1923. {
  1924. name: "Gigamacro",
  1925. height: math.unit(41769, "miles")
  1926. },
  1927. ]
  1928. ))
  1929. characterMakers.push(() => makeCharacter(
  1930. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1931. {
  1932. front: {
  1933. height: math.unit(7, "feet"),
  1934. weight: math.unit(100, "kg"),
  1935. name: "Front",
  1936. image: {
  1937. source: "./media/characters/adake/front-1.svg"
  1938. }
  1939. },
  1940. frontAlt: {
  1941. height: math.unit(7, "feet"),
  1942. weight: math.unit(100, "kg"),
  1943. name: "Front (Alt)",
  1944. image: {
  1945. source: "./media/characters/adake/front-2.svg",
  1946. extra: 1,
  1947. bottom: 0.01
  1948. }
  1949. },
  1950. back: {
  1951. height: math.unit(7, "feet"),
  1952. weight: math.unit(100, "kg"),
  1953. name: "Back",
  1954. image: {
  1955. source: "./media/characters/adake/back.svg",
  1956. }
  1957. },
  1958. kneel: {
  1959. height: math.unit(5.385, "feet"),
  1960. weight: math.unit(100, "kg"),
  1961. name: "Kneeling",
  1962. image: {
  1963. source: "./media/characters/adake/kneel.svg",
  1964. bottom: 0.052
  1965. }
  1966. },
  1967. },
  1968. [
  1969. {
  1970. name: "Normal",
  1971. height: math.unit(7, "feet"),
  1972. },
  1973. {
  1974. name: "Macro",
  1975. height: math.unit(78, "feet"),
  1976. default: true
  1977. },
  1978. {
  1979. name: "Macro+",
  1980. height: math.unit(300, "meters")
  1981. },
  1982. {
  1983. name: "Macro++",
  1984. height: math.unit(2400, "meters")
  1985. },
  1986. {
  1987. name: "Megamacro",
  1988. height: math.unit(5167, "meters")
  1989. },
  1990. {
  1991. name: "Gigamacro",
  1992. height: math.unit(41769, "miles")
  1993. },
  1994. ]
  1995. ))
  1996. characterMakers.push(() => makeCharacter(
  1997. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1998. {
  1999. front: {
  2000. height: math.unit(1.65, "meters"),
  2001. weight: math.unit(50, "kg"),
  2002. name: "Front",
  2003. image: {
  2004. source: "./media/characters/elijah/front.svg",
  2005. extra: 858 / 830,
  2006. bottom: 95.5 / 953.8559
  2007. }
  2008. },
  2009. back: {
  2010. height: math.unit(1.65, "meters"),
  2011. weight: math.unit(50, "kg"),
  2012. name: "Back",
  2013. image: {
  2014. source: "./media/characters/elijah/back.svg",
  2015. extra: 895 / 850,
  2016. bottom: 5.3 / 897.956
  2017. }
  2018. },
  2019. frontNsfw: {
  2020. height: math.unit(1.65, "meters"),
  2021. weight: math.unit(50, "kg"),
  2022. name: "Front (NSFW)",
  2023. image: {
  2024. source: "./media/characters/elijah/front-nsfw.svg",
  2025. extra: 858 / 830,
  2026. bottom: 95.5 / 953.8559
  2027. }
  2028. },
  2029. backNsfw: {
  2030. height: math.unit(1.65, "meters"),
  2031. weight: math.unit(50, "kg"),
  2032. name: "Back (NSFW)",
  2033. image: {
  2034. source: "./media/characters/elijah/back-nsfw.svg",
  2035. extra: 895 / 850,
  2036. bottom: 5.3 / 897.956
  2037. }
  2038. },
  2039. dick: {
  2040. height: math.unit(1, "feet"),
  2041. name: "Dick",
  2042. image: {
  2043. source: "./media/characters/elijah/dick.svg"
  2044. }
  2045. },
  2046. beakOpen: {
  2047. height: math.unit(1.25, "feet"),
  2048. name: "Beak (Open)",
  2049. image: {
  2050. source: "./media/characters/elijah/beak-open.svg"
  2051. }
  2052. },
  2053. beakShut: {
  2054. height: math.unit(1.25, "feet"),
  2055. name: "Beak (Shut)",
  2056. image: {
  2057. source: "./media/characters/elijah/beak-shut.svg"
  2058. }
  2059. },
  2060. footFlexing: {
  2061. height: math.unit(1.61, "feet"),
  2062. name: "Foot (Flexing)",
  2063. image: {
  2064. source: "./media/characters/elijah/foot-flexing.svg"
  2065. }
  2066. },
  2067. footStepping: {
  2068. height: math.unit(1.44, "feet"),
  2069. name: "Foot (Stepping)",
  2070. image: {
  2071. source: "./media/characters/elijah/foot-stepping.svg"
  2072. }
  2073. },
  2074. plantigradeLeg: {
  2075. height: math.unit(2.34, "feet"),
  2076. name: "Plantigrade Leg",
  2077. image: {
  2078. source: "./media/characters/elijah/plantigrade-leg.svg"
  2079. }
  2080. },
  2081. plantigradeFootLeft: {
  2082. height: math.unit(0.9, "feet"),
  2083. name: "Plantigrade Foot (Left)",
  2084. image: {
  2085. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2086. }
  2087. },
  2088. plantigradeFootRight: {
  2089. height: math.unit(0.9, "feet"),
  2090. name: "Plantigrade Foot (Right)",
  2091. image: {
  2092. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2093. }
  2094. },
  2095. },
  2096. [
  2097. {
  2098. name: "Normal",
  2099. height: math.unit(1.65, "meters")
  2100. },
  2101. {
  2102. name: "Macro",
  2103. height: math.unit(55, "meters"),
  2104. default: true
  2105. },
  2106. {
  2107. name: "Macro+",
  2108. height: math.unit(105, "meters")
  2109. },
  2110. ]
  2111. ))
  2112. characterMakers.push(() => makeCharacter(
  2113. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2114. {
  2115. front: {
  2116. height: math.unit(11, "feet"),
  2117. weight: math.unit(80, "kg"),
  2118. name: "Front",
  2119. image: {
  2120. source: "./media/characters/rai/front.svg",
  2121. extra: 1,
  2122. bottom: 0.03
  2123. }
  2124. },
  2125. side: {
  2126. height: math.unit(11, "feet"),
  2127. weight: math.unit(80, "kg"),
  2128. name: "Side",
  2129. image: {
  2130. source: "./media/characters/rai/side.svg"
  2131. }
  2132. },
  2133. back: {
  2134. height: math.unit(11, "feet"),
  2135. weight: math.unit(80, "lb"),
  2136. name: "Back",
  2137. image: {
  2138. source: "./media/characters/rai/back.svg",
  2139. extra: 1,
  2140. bottom: 0.01
  2141. }
  2142. },
  2143. feral: {
  2144. height: math.unit(11, "feet"),
  2145. weight: math.unit(800, "lb"),
  2146. name: "Feral",
  2147. image: {
  2148. source: "./media/characters/rai/feral.svg",
  2149. extra: 1050 / 659,
  2150. bottom: 0.07
  2151. }
  2152. },
  2153. dragon: {
  2154. height: math.unit(23, "feet"),
  2155. weight: math.unit(50000, "lb"),
  2156. name: "Dragon",
  2157. image: {
  2158. source: "./media/characters/rai/dragon.svg",
  2159. extra: 2498 / 2030,
  2160. bottom: 85.2 / 2584
  2161. }
  2162. },
  2163. maw: {
  2164. height: math.unit(6 / 3.81416, "feet"),
  2165. name: "Maw",
  2166. image: {
  2167. source: "./media/characters/rai/maw.svg"
  2168. }
  2169. },
  2170. },
  2171. [
  2172. {
  2173. name: "Normal",
  2174. height: math.unit(11, "feet")
  2175. },
  2176. {
  2177. name: "Macro",
  2178. height: math.unit(302, "feet"),
  2179. default: true
  2180. },
  2181. ]
  2182. ))
  2183. characterMakers.push(() => makeCharacter(
  2184. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2185. {
  2186. frontDressed: {
  2187. height: math.unit(216, "feet"),
  2188. weight: math.unit(7000000, "lb"),
  2189. name: "Front (Dressed)",
  2190. image: {
  2191. source: "./media/characters/jazzy/front-dressed.svg",
  2192. extra: 2738 / 2651,
  2193. bottom: 41.8 / 2786
  2194. }
  2195. },
  2196. backDressed: {
  2197. height: math.unit(216, "feet"),
  2198. weight: math.unit(7000000, "lb"),
  2199. name: "Back (Dressed)",
  2200. image: {
  2201. source: "./media/characters/jazzy/back-dressed.svg",
  2202. extra: 2775 / 2673,
  2203. bottom: 36.8 / 2817
  2204. }
  2205. },
  2206. front: {
  2207. height: math.unit(216, "feet"),
  2208. weight: math.unit(7000000, "lb"),
  2209. name: "Front",
  2210. image: {
  2211. source: "./media/characters/jazzy/front.svg",
  2212. extra: 2738 / 2651,
  2213. bottom: 41.8 / 2786
  2214. }
  2215. },
  2216. back: {
  2217. height: math.unit(216, "feet"),
  2218. weight: math.unit(7000000, "lb"),
  2219. name: "Back",
  2220. image: {
  2221. source: "./media/characters/jazzy/back.svg",
  2222. extra: 2775 / 2673,
  2223. bottom: 36.8 / 2817
  2224. }
  2225. },
  2226. maw: {
  2227. height: math.unit(20, "feet"),
  2228. name: "Maw",
  2229. image: {
  2230. source: "./media/characters/jazzy/maw.svg"
  2231. }
  2232. },
  2233. paws: {
  2234. height: math.unit(27.5, "feet"),
  2235. name: "Paws",
  2236. image: {
  2237. source: "./media/characters/jazzy/paws.svg"
  2238. }
  2239. },
  2240. eye: {
  2241. height: math.unit(4.4, "feet"),
  2242. name: "Eye",
  2243. image: {
  2244. source: "./media/characters/jazzy/eye.svg"
  2245. }
  2246. },
  2247. droneOffense: {
  2248. height: math.unit(9.5, "inches"),
  2249. name: "Drone (Offense)",
  2250. image: {
  2251. source: "./media/characters/jazzy/drone-offense.svg"
  2252. }
  2253. },
  2254. droneRecon: {
  2255. height: math.unit(9.5, "inches"),
  2256. name: "Drone (Recon)",
  2257. image: {
  2258. source: "./media/characters/jazzy/drone-recon.svg"
  2259. }
  2260. },
  2261. droneDefense: {
  2262. height: math.unit(9.5, "inches"),
  2263. name: "Drone (Defense)",
  2264. image: {
  2265. source: "./media/characters/jazzy/drone-defense.svg"
  2266. }
  2267. },
  2268. },
  2269. [
  2270. {
  2271. name: "Macro",
  2272. height: math.unit(216, "feet"),
  2273. default: true
  2274. },
  2275. ]
  2276. ))
  2277. characterMakers.push(() => makeCharacter(
  2278. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2279. {
  2280. front: {
  2281. height: math.unit(7, "feet"),
  2282. weight: math.unit(80, "kg"),
  2283. name: "Front",
  2284. image: {
  2285. source: "./media/characters/flamm/front.svg",
  2286. extra: 1794 / 1677,
  2287. bottom: 31.7 / 1828.5
  2288. }
  2289. },
  2290. },
  2291. [
  2292. {
  2293. name: "Normal",
  2294. height: math.unit(9.5, "feet")
  2295. },
  2296. {
  2297. name: "Macro",
  2298. height: math.unit(200, "feet"),
  2299. default: true
  2300. },
  2301. ]
  2302. ))
  2303. characterMakers.push(() => makeCharacter(
  2304. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2305. {
  2306. front: {
  2307. height: math.unit(5 + 3/12, "feet"),
  2308. weight: math.unit(60, "kg"),
  2309. name: "Front",
  2310. image: {
  2311. source: "./media/characters/zephiro/front.svg",
  2312. extra: 2309 / 2162,
  2313. bottom: 0.069
  2314. }
  2315. },
  2316. side: {
  2317. height: math.unit(5 + 3/12, "feet"),
  2318. weight: math.unit(60, "kg"),
  2319. name: "Side",
  2320. image: {
  2321. source: "./media/characters/zephiro/side.svg",
  2322. extra: 2403 / 2279,
  2323. bottom: 0.015
  2324. }
  2325. },
  2326. back: {
  2327. height: math.unit(5 + 3/12, "feet"),
  2328. weight: math.unit(60, "kg"),
  2329. name: "Back",
  2330. image: {
  2331. source: "./media/characters/zephiro/back.svg",
  2332. extra: 2373 / 2244,
  2333. bottom: 0.013
  2334. }
  2335. },
  2336. hand: {
  2337. height: math.unit(0.68, "feet"),
  2338. name: "Hand",
  2339. image: {
  2340. source: "./media/characters/zephiro/hand.svg"
  2341. }
  2342. },
  2343. paw: {
  2344. height: math.unit(1, "feet"),
  2345. name: "Paw",
  2346. image: {
  2347. source: "./media/characters/zephiro/paw.svg"
  2348. }
  2349. },
  2350. beans: {
  2351. height: math.unit(0.93, "feet"),
  2352. name: "Beans",
  2353. image: {
  2354. source: "./media/characters/zephiro/beans.svg"
  2355. }
  2356. },
  2357. },
  2358. [
  2359. {
  2360. name: "Micro",
  2361. height: math.unit(3, "inches")
  2362. },
  2363. {
  2364. name: "Normal",
  2365. height: math.unit(5 + 3 / 12, "feet"),
  2366. default: true
  2367. },
  2368. {
  2369. name: "Macro",
  2370. height: math.unit(118, "feet")
  2371. },
  2372. ]
  2373. ))
  2374. characterMakers.push(() => makeCharacter(
  2375. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2376. {
  2377. front: {
  2378. height: math.unit(5, "feet"),
  2379. weight: math.unit(90, "kg"),
  2380. name: "Front",
  2381. image: {
  2382. source: "./media/characters/fory/front.svg",
  2383. extra: 2862 / 2674,
  2384. bottom: 180 / 3043.8
  2385. }
  2386. },
  2387. back: {
  2388. height: math.unit(5, "feet"),
  2389. weight: math.unit(90, "kg"),
  2390. name: "Back",
  2391. image: {
  2392. source: "./media/characters/fory/back.svg",
  2393. extra: 2962 / 2791,
  2394. bottom: 106 / 3071.8
  2395. }
  2396. },
  2397. foot: {
  2398. height: math.unit(2.14, "feet"),
  2399. name: "Foot",
  2400. image: {
  2401. source: "./media/characters/fory/foot.svg"
  2402. }
  2403. },
  2404. },
  2405. [
  2406. {
  2407. name: "Normal",
  2408. height: math.unit(5, "feet")
  2409. },
  2410. {
  2411. name: "Macro",
  2412. height: math.unit(50, "feet"),
  2413. default: true
  2414. },
  2415. {
  2416. name: "Megamacro",
  2417. height: math.unit(10, "miles")
  2418. },
  2419. {
  2420. name: "Gigamacro",
  2421. height: math.unit(5, "earths")
  2422. },
  2423. ]
  2424. ))
  2425. characterMakers.push(() => makeCharacter(
  2426. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2427. {
  2428. front: {
  2429. height: math.unit(7, "feet"),
  2430. weight: math.unit(90, "kg"),
  2431. name: "Front",
  2432. image: {
  2433. source: "./media/characters/kurrikage/front.svg",
  2434. extra: 1,
  2435. bottom: 0.035
  2436. }
  2437. },
  2438. back: {
  2439. height: math.unit(7, "feet"),
  2440. weight: math.unit(90, "lb"),
  2441. name: "Back",
  2442. image: {
  2443. source: "./media/characters/kurrikage/back.svg"
  2444. }
  2445. },
  2446. paw: {
  2447. height: math.unit(1.5, "feet"),
  2448. name: "Paw",
  2449. image: {
  2450. source: "./media/characters/kurrikage/paw.svg"
  2451. }
  2452. },
  2453. staff: {
  2454. height: math.unit(6.7, "feet"),
  2455. name: "Staff",
  2456. image: {
  2457. source: "./media/characters/kurrikage/staff.svg"
  2458. }
  2459. },
  2460. peek: {
  2461. height: math.unit(1.05, "feet"),
  2462. name: "Peeking",
  2463. image: {
  2464. source: "./media/characters/kurrikage/peek.svg",
  2465. bottom: 0.08
  2466. }
  2467. },
  2468. },
  2469. [
  2470. {
  2471. name: "Normal",
  2472. height: math.unit(12, "feet"),
  2473. default: true
  2474. },
  2475. {
  2476. name: "Big",
  2477. height: math.unit(20, "feet")
  2478. },
  2479. {
  2480. name: "Macro",
  2481. height: math.unit(500, "feet")
  2482. },
  2483. {
  2484. name: "Megamacro",
  2485. height: math.unit(20, "miles")
  2486. },
  2487. ]
  2488. ))
  2489. characterMakers.push(() => makeCharacter(
  2490. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2491. {
  2492. front: {
  2493. height: math.unit(6, "feet"),
  2494. weight: math.unit(75, "kg"),
  2495. name: "Front",
  2496. image: {
  2497. source: "./media/characters/shingo/front.svg",
  2498. extra: 706/681,
  2499. bottom: 11/717
  2500. }
  2501. },
  2502. frontAlt: {
  2503. height: math.unit(6, "feet"),
  2504. weight: math.unit(75, "kg"),
  2505. name: "Front (Alt)",
  2506. image: {
  2507. source: "./media/characters/shingo/front-alt.svg",
  2508. extra: 3511 / 3338,
  2509. bottom: 0.005
  2510. }
  2511. },
  2512. paw: {
  2513. height: math.unit(1, "feet"),
  2514. name: "Paw",
  2515. image: {
  2516. source: "./media/characters/shingo/paw.svg"
  2517. }
  2518. },
  2519. },
  2520. [
  2521. {
  2522. name: "Micro",
  2523. height: math.unit(4, "inches")
  2524. },
  2525. {
  2526. name: "Normal",
  2527. height: math.unit(6, "feet"),
  2528. default: true
  2529. },
  2530. {
  2531. name: "Macro",
  2532. height: math.unit(108, "feet")
  2533. },
  2534. {
  2535. name: "Macro+",
  2536. height: math.unit(1500, "feet")
  2537. },
  2538. ]
  2539. ))
  2540. characterMakers.push(() => makeCharacter(
  2541. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2542. {
  2543. side: {
  2544. height: math.unit(6, "feet"),
  2545. weight: math.unit(75, "kg"),
  2546. name: "Side",
  2547. image: {
  2548. source: "./media/characters/aigey/side.svg"
  2549. }
  2550. },
  2551. },
  2552. [
  2553. {
  2554. name: "Macro",
  2555. height: math.unit(200, "feet"),
  2556. default: true
  2557. },
  2558. {
  2559. name: "Megamacro",
  2560. height: math.unit(100, "miles")
  2561. },
  2562. ]
  2563. )
  2564. )
  2565. characterMakers.push(() => makeCharacter(
  2566. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2567. {
  2568. front: {
  2569. height: math.unit(5 + 5 / 12, "feet"),
  2570. weight: math.unit(75, "kg"),
  2571. name: "Front",
  2572. image: {
  2573. source: "./media/characters/natasha/front.svg",
  2574. extra: 859 / 824,
  2575. bottom: 23 / 879.6
  2576. }
  2577. },
  2578. frontNsfw: {
  2579. height: math.unit(5 + 5 / 12, "feet"),
  2580. weight: math.unit(75, "kg"),
  2581. name: "Front (NSFW)",
  2582. image: {
  2583. source: "./media/characters/natasha/front-nsfw.svg",
  2584. extra: 859 / 824,
  2585. bottom: 23 / 879.6
  2586. }
  2587. },
  2588. frontErect: {
  2589. height: math.unit(5 + 5 / 12, "feet"),
  2590. weight: math.unit(75, "kg"),
  2591. name: "Front (Erect)",
  2592. image: {
  2593. source: "./media/characters/natasha/front-erect.svg",
  2594. extra: 859 / 824,
  2595. bottom: 23 / 879.6
  2596. }
  2597. },
  2598. back: {
  2599. height: math.unit(5 + 5 / 12, "feet"),
  2600. weight: math.unit(75, "kg"),
  2601. name: "Back",
  2602. image: {
  2603. source: "./media/characters/natasha/back.svg",
  2604. extra: 887.9 / 852.6,
  2605. bottom: 9.7 / 896.4
  2606. }
  2607. },
  2608. backAlt: {
  2609. height: math.unit(5 + 5 / 12, "feet"),
  2610. weight: math.unit(75, "kg"),
  2611. name: "Back (Alt)",
  2612. image: {
  2613. source: "./media/characters/natasha/back-alt.svg",
  2614. extra: 1236.7 / 1192,
  2615. bottom: 22.3 / 1258.2
  2616. }
  2617. },
  2618. dick: {
  2619. height: math.unit(1.772, "feet"),
  2620. name: "Dick",
  2621. image: {
  2622. source: "./media/characters/natasha/dick.svg"
  2623. }
  2624. },
  2625. paw: {
  2626. height: math.unit(0.250, "meters"),
  2627. name: "Paw",
  2628. image: {
  2629. source: "./media/characters/natasha/paw.svg"
  2630. }
  2631. },
  2632. },
  2633. [
  2634. {
  2635. name: "Normal",
  2636. height: math.unit(5 + 5 / 12, "feet")
  2637. },
  2638. {
  2639. name: "Large",
  2640. height: math.unit(12, "feet")
  2641. },
  2642. {
  2643. name: "Macro",
  2644. height: math.unit(100, "feet"),
  2645. default: true
  2646. },
  2647. {
  2648. name: "Macro+",
  2649. height: math.unit(260, "feet")
  2650. },
  2651. {
  2652. name: "Macro++",
  2653. height: math.unit(1, "mile")
  2654. },
  2655. ]
  2656. ))
  2657. characterMakers.push(() => makeCharacter(
  2658. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2659. {
  2660. front: {
  2661. height: math.unit(6, "feet"),
  2662. weight: math.unit(75, "kg"),
  2663. name: "Front",
  2664. image: {
  2665. source: "./media/characters/malik/front.svg"
  2666. }
  2667. },
  2668. side: {
  2669. height: math.unit(6, "feet"),
  2670. weight: math.unit(75, "kg"),
  2671. name: "Side",
  2672. image: {
  2673. source: "./media/characters/malik/side.svg",
  2674. extra: 1.1539
  2675. }
  2676. },
  2677. back: {
  2678. height: math.unit(6, "feet"),
  2679. weight: math.unit(75, "kg"),
  2680. name: "Back",
  2681. image: {
  2682. source: "./media/characters/malik/back.svg"
  2683. }
  2684. },
  2685. },
  2686. [
  2687. {
  2688. name: "Macro",
  2689. height: math.unit(156, "feet"),
  2690. default: true
  2691. },
  2692. {
  2693. name: "Macro+",
  2694. height: math.unit(1188, "feet")
  2695. },
  2696. ]
  2697. ))
  2698. characterMakers.push(() => makeCharacter(
  2699. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2700. {
  2701. front: {
  2702. height: math.unit(6, "feet"),
  2703. weight: math.unit(75, "kg"),
  2704. name: "Front",
  2705. image: {
  2706. source: "./media/characters/sefer/front.svg",
  2707. extra: 848 / 659,
  2708. bottom: 28.3 / 876.442
  2709. }
  2710. },
  2711. back: {
  2712. height: math.unit(6, "feet"),
  2713. weight: math.unit(75, "kg"),
  2714. name: "Back",
  2715. image: {
  2716. source: "./media/characters/sefer/back.svg",
  2717. extra: 864 / 695,
  2718. bottom: 10 / 871
  2719. }
  2720. },
  2721. frontDressed: {
  2722. height: math.unit(6, "feet"),
  2723. weight: math.unit(75, "kg"),
  2724. name: "Front (Dressed)",
  2725. image: {
  2726. source: "./media/characters/sefer/front-dressed.svg",
  2727. extra: 839 / 653,
  2728. bottom: 37.6 / 878
  2729. }
  2730. },
  2731. },
  2732. [
  2733. {
  2734. name: "Normal",
  2735. height: math.unit(6, "feet"),
  2736. default: true
  2737. },
  2738. ]
  2739. ))
  2740. characterMakers.push(() => makeCharacter(
  2741. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2742. {
  2743. body: {
  2744. height: math.unit(2.2428, "meter"),
  2745. weight: math.unit(124.738, "kg"),
  2746. name: "Body",
  2747. image: {
  2748. extra: 1225 / 1050,
  2749. source: "./media/characters/north/front.svg"
  2750. }
  2751. }
  2752. },
  2753. [
  2754. {
  2755. name: "Micro",
  2756. height: math.unit(4, "inches")
  2757. },
  2758. {
  2759. name: "Macro",
  2760. height: math.unit(63, "meters")
  2761. },
  2762. {
  2763. name: "Megamacro",
  2764. height: math.unit(101, "miles"),
  2765. default: true
  2766. }
  2767. ]
  2768. ))
  2769. characterMakers.push(() => makeCharacter(
  2770. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2771. {
  2772. angled: {
  2773. height: math.unit(4, "meter"),
  2774. weight: math.unit(150, "kg"),
  2775. name: "Angled",
  2776. image: {
  2777. source: "./media/characters/talan/angled-sfw.svg",
  2778. bottom: 29 / 3734
  2779. }
  2780. },
  2781. angledNsfw: {
  2782. height: math.unit(4, "meter"),
  2783. weight: math.unit(150, "kg"),
  2784. name: "Angled (NSFW)",
  2785. image: {
  2786. source: "./media/characters/talan/angled-nsfw.svg",
  2787. bottom: 29 / 3734
  2788. }
  2789. },
  2790. frontNsfw: {
  2791. height: math.unit(4, "meter"),
  2792. weight: math.unit(150, "kg"),
  2793. name: "Front (NSFW)",
  2794. image: {
  2795. source: "./media/characters/talan/front-nsfw.svg",
  2796. bottom: 29 / 3734
  2797. }
  2798. },
  2799. sideNsfw: {
  2800. height: math.unit(4, "meter"),
  2801. weight: math.unit(150, "kg"),
  2802. name: "Side (NSFW)",
  2803. image: {
  2804. source: "./media/characters/talan/side-nsfw.svg",
  2805. bottom: 29 / 3734
  2806. }
  2807. },
  2808. back: {
  2809. height: math.unit(4, "meter"),
  2810. weight: math.unit(150, "kg"),
  2811. name: "Back",
  2812. image: {
  2813. source: "./media/characters/talan/back.svg"
  2814. }
  2815. },
  2816. dickBottom: {
  2817. height: math.unit(0.621, "meter"),
  2818. name: "Dick (Bottom)",
  2819. image: {
  2820. source: "./media/characters/talan/dick-bottom.svg"
  2821. }
  2822. },
  2823. dickTop: {
  2824. height: math.unit(0.621, "meter"),
  2825. name: "Dick (Top)",
  2826. image: {
  2827. source: "./media/characters/talan/dick-top.svg"
  2828. }
  2829. },
  2830. dickSide: {
  2831. height: math.unit(0.305, "meter"),
  2832. name: "Dick (Side)",
  2833. image: {
  2834. source: "./media/characters/talan/dick-side.svg"
  2835. }
  2836. },
  2837. dickFront: {
  2838. height: math.unit(0.305, "meter"),
  2839. name: "Dick (Front)",
  2840. image: {
  2841. source: "./media/characters/talan/dick-front.svg"
  2842. }
  2843. },
  2844. },
  2845. [
  2846. {
  2847. name: "Normal",
  2848. height: math.unit(4, "meters")
  2849. },
  2850. {
  2851. name: "Macro",
  2852. height: math.unit(100, "meters")
  2853. },
  2854. {
  2855. name: "Megamacro",
  2856. height: math.unit(2, "miles"),
  2857. default: true
  2858. },
  2859. {
  2860. name: "Gigamacro",
  2861. height: math.unit(5000, "miles")
  2862. },
  2863. {
  2864. name: "Teramacro",
  2865. height: math.unit(100, "parsecs")
  2866. }
  2867. ]
  2868. ))
  2869. characterMakers.push(() => makeCharacter(
  2870. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2871. {
  2872. front: {
  2873. height: math.unit(2, "meter"),
  2874. weight: math.unit(90, "kg"),
  2875. name: "Front",
  2876. image: {
  2877. source: "./media/characters/gael'rathus/front.svg"
  2878. }
  2879. },
  2880. frontAlt: {
  2881. height: math.unit(2, "meter"),
  2882. weight: math.unit(90, "kg"),
  2883. name: "Front (alt)",
  2884. image: {
  2885. source: "./media/characters/gael'rathus/front-alt.svg"
  2886. }
  2887. },
  2888. frontAlt2: {
  2889. height: math.unit(2, "meter"),
  2890. weight: math.unit(90, "kg"),
  2891. name: "Front (alt 2)",
  2892. image: {
  2893. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2894. }
  2895. }
  2896. },
  2897. [
  2898. {
  2899. name: "Normal",
  2900. height: math.unit(9, "feet"),
  2901. default: true
  2902. },
  2903. {
  2904. name: "Large",
  2905. height: math.unit(25, "feet")
  2906. },
  2907. {
  2908. name: "Macro",
  2909. height: math.unit(0.25, "miles")
  2910. },
  2911. {
  2912. name: "Megamacro",
  2913. height: math.unit(10, "miles")
  2914. }
  2915. ]
  2916. ))
  2917. characterMakers.push(() => makeCharacter(
  2918. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2919. {
  2920. side: {
  2921. height: math.unit(2, "meter"),
  2922. weight: math.unit(140, "kg"),
  2923. name: "Side",
  2924. image: {
  2925. source: "./media/characters/sosha/side.svg",
  2926. bottom: 0.042
  2927. }
  2928. },
  2929. },
  2930. [
  2931. {
  2932. name: "Normal",
  2933. height: math.unit(12, "feet"),
  2934. default: true
  2935. }
  2936. ]
  2937. ))
  2938. characterMakers.push(() => makeCharacter(
  2939. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2940. {
  2941. side: {
  2942. height: math.unit(5 + 5 / 12, "feet"),
  2943. weight: math.unit(170, "kg"),
  2944. name: "Side",
  2945. image: {
  2946. source: "./media/characters/runnola/side.svg",
  2947. extra: 741 / 448,
  2948. bottom: 0.05
  2949. }
  2950. },
  2951. },
  2952. [
  2953. {
  2954. name: "Small",
  2955. height: math.unit(3, "feet")
  2956. },
  2957. {
  2958. name: "Normal",
  2959. height: math.unit(5 + 5 / 12, "feet"),
  2960. default: true
  2961. },
  2962. {
  2963. name: "Big",
  2964. height: math.unit(10, "feet")
  2965. },
  2966. ]
  2967. ))
  2968. characterMakers.push(() => makeCharacter(
  2969. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2970. {
  2971. front: {
  2972. height: math.unit(2, "meter"),
  2973. weight: math.unit(50, "kg"),
  2974. name: "Front",
  2975. image: {
  2976. source: "./media/characters/kurribird/front.svg",
  2977. bottom: 0.015
  2978. }
  2979. },
  2980. frontAlt: {
  2981. height: math.unit(1.5, "meter"),
  2982. weight: math.unit(50, "kg"),
  2983. name: "Front (Alt)",
  2984. image: {
  2985. source: "./media/characters/kurribird/front-alt.svg",
  2986. extra: 1.45
  2987. }
  2988. },
  2989. },
  2990. [
  2991. {
  2992. name: "Normal",
  2993. height: math.unit(7, "feet")
  2994. },
  2995. {
  2996. name: "Big",
  2997. height: math.unit(12, "feet"),
  2998. default: true
  2999. },
  3000. {
  3001. name: "Macro",
  3002. height: math.unit(1500, "feet")
  3003. },
  3004. {
  3005. name: "Megamacro",
  3006. height: math.unit(2, "miles")
  3007. }
  3008. ]
  3009. ))
  3010. characterMakers.push(() => makeCharacter(
  3011. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3012. {
  3013. front: {
  3014. height: math.unit(2, "meter"),
  3015. weight: math.unit(80, "kg"),
  3016. name: "Front",
  3017. image: {
  3018. source: "./media/characters/elbial/front.svg",
  3019. extra: 1643 / 1556,
  3020. bottom: 60.2 / 1696
  3021. }
  3022. },
  3023. side: {
  3024. height: math.unit(2, "meter"),
  3025. weight: math.unit(80, "kg"),
  3026. name: "Side",
  3027. image: {
  3028. source: "./media/characters/elbial/side.svg",
  3029. extra: 1630 / 1565,
  3030. bottom: 71.5 / 1697
  3031. }
  3032. },
  3033. back: {
  3034. height: math.unit(2, "meter"),
  3035. weight: math.unit(80, "kg"),
  3036. name: "Back",
  3037. image: {
  3038. source: "./media/characters/elbial/back.svg",
  3039. extra: 1668 / 1595,
  3040. bottom: 5.6 / 1672
  3041. }
  3042. },
  3043. frontDressed: {
  3044. height: math.unit(2, "meter"),
  3045. weight: math.unit(80, "kg"),
  3046. name: "Front (Dressed)",
  3047. image: {
  3048. source: "./media/characters/elbial/front-dressed.svg",
  3049. extra: 1653 / 1584,
  3050. bottom: 57 / 1708
  3051. }
  3052. },
  3053. genitals: {
  3054. height: math.unit(2 / 3.367, "meter"),
  3055. name: "Genitals",
  3056. image: {
  3057. source: "./media/characters/elbial/genitals.svg"
  3058. }
  3059. },
  3060. },
  3061. [
  3062. {
  3063. name: "Large",
  3064. height: math.unit(100, "feet")
  3065. },
  3066. {
  3067. name: "Macro",
  3068. height: math.unit(500, "feet"),
  3069. default: true
  3070. },
  3071. {
  3072. name: "Megamacro",
  3073. height: math.unit(10, "miles")
  3074. },
  3075. {
  3076. name: "Gigamacro",
  3077. height: math.unit(25000, "miles")
  3078. },
  3079. {
  3080. name: "Full-Size",
  3081. height: math.unit(8000000, "gigaparsecs")
  3082. }
  3083. ]
  3084. ))
  3085. characterMakers.push(() => makeCharacter(
  3086. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3087. {
  3088. front: {
  3089. height: math.unit(2, "meter"),
  3090. weight: math.unit(60, "kg"),
  3091. name: "Front",
  3092. image: {
  3093. source: "./media/characters/noah/front.svg"
  3094. }
  3095. },
  3096. talons: {
  3097. height: math.unit(0.315, "meter"),
  3098. name: "Talons",
  3099. image: {
  3100. source: "./media/characters/noah/talons.svg"
  3101. }
  3102. }
  3103. },
  3104. [
  3105. {
  3106. name: "Large",
  3107. height: math.unit(50, "feet")
  3108. },
  3109. {
  3110. name: "Macro",
  3111. height: math.unit(750, "feet"),
  3112. default: true
  3113. },
  3114. {
  3115. name: "Megamacro",
  3116. height: math.unit(50, "miles")
  3117. },
  3118. {
  3119. name: "Gigamacro",
  3120. height: math.unit(100000, "miles")
  3121. },
  3122. {
  3123. name: "Full-Size",
  3124. height: math.unit(3000000000, "miles")
  3125. }
  3126. ]
  3127. ))
  3128. characterMakers.push(() => makeCharacter(
  3129. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3130. {
  3131. front: {
  3132. height: math.unit(2, "meter"),
  3133. weight: math.unit(80, "kg"),
  3134. name: "Front",
  3135. image: {
  3136. source: "./media/characters/natalya/front.svg"
  3137. }
  3138. },
  3139. back: {
  3140. height: math.unit(2, "meter"),
  3141. weight: math.unit(80, "kg"),
  3142. name: "Back",
  3143. image: {
  3144. source: "./media/characters/natalya/back.svg"
  3145. }
  3146. }
  3147. },
  3148. [
  3149. {
  3150. name: "Normal",
  3151. height: math.unit(150, "feet"),
  3152. default: true
  3153. },
  3154. {
  3155. name: "Megamacro",
  3156. height: math.unit(5, "miles")
  3157. },
  3158. {
  3159. name: "Full-Size",
  3160. height: math.unit(600, "kiloparsecs")
  3161. }
  3162. ]
  3163. ))
  3164. characterMakers.push(() => makeCharacter(
  3165. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3166. {
  3167. front: {
  3168. height: math.unit(2, "meter"),
  3169. weight: math.unit(50, "kg"),
  3170. name: "Front",
  3171. image: {
  3172. source: "./media/characters/erestrebah/front.svg",
  3173. extra: 208 / 193,
  3174. bottom: 0.055
  3175. }
  3176. },
  3177. back: {
  3178. height: math.unit(2, "meter"),
  3179. weight: math.unit(50, "kg"),
  3180. name: "Back",
  3181. image: {
  3182. source: "./media/characters/erestrebah/back.svg",
  3183. extra: 1.3
  3184. }
  3185. }
  3186. },
  3187. [
  3188. {
  3189. name: "Normal",
  3190. height: math.unit(10, "feet")
  3191. },
  3192. {
  3193. name: "Large",
  3194. height: math.unit(50, "feet"),
  3195. default: true
  3196. },
  3197. {
  3198. name: "Macro",
  3199. height: math.unit(300, "feet")
  3200. },
  3201. {
  3202. name: "Macro+",
  3203. height: math.unit(750, "feet")
  3204. },
  3205. {
  3206. name: "Megamacro",
  3207. height: math.unit(3, "miles")
  3208. }
  3209. ]
  3210. ))
  3211. characterMakers.push(() => makeCharacter(
  3212. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3213. {
  3214. front: {
  3215. height: math.unit(2, "meter"),
  3216. weight: math.unit(80, "kg"),
  3217. name: "Front",
  3218. image: {
  3219. source: "./media/characters/jennifer/front.svg",
  3220. bottom: 0.11,
  3221. extra: 1.16
  3222. }
  3223. },
  3224. frontAlt: {
  3225. height: math.unit(2, "meter"),
  3226. weight: math.unit(80, "kg"),
  3227. name: "Front (Alt)",
  3228. image: {
  3229. source: "./media/characters/jennifer/front-alt.svg"
  3230. }
  3231. }
  3232. },
  3233. [
  3234. {
  3235. name: "Canon Height",
  3236. height: math.unit(120, "feet"),
  3237. default: true
  3238. },
  3239. {
  3240. name: "Macro+",
  3241. height: math.unit(300, "feet")
  3242. },
  3243. {
  3244. name: "Megamacro",
  3245. height: math.unit(20000, "feet")
  3246. }
  3247. ]
  3248. ))
  3249. characterMakers.push(() => makeCharacter(
  3250. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3251. {
  3252. front: {
  3253. height: math.unit(2, "meter"),
  3254. weight: math.unit(50, "kg"),
  3255. name: "Front",
  3256. image: {
  3257. source: "./media/characters/kalista/front.svg",
  3258. extra: 1947 / 1700,
  3259. bottom: 76.6 / 1412.98
  3260. }
  3261. },
  3262. back: {
  3263. height: math.unit(2, "meter"),
  3264. weight: math.unit(50, "kg"),
  3265. name: "Back",
  3266. image: {
  3267. source: "./media/characters/kalista/back.svg",
  3268. extra: 1366 / 1156,
  3269. bottom: 33.9 / 1362.78
  3270. }
  3271. }
  3272. },
  3273. [
  3274. {
  3275. name: "Uncomfortably Small",
  3276. height: math.unit(10, "feet")
  3277. },
  3278. {
  3279. name: "Small",
  3280. height: math.unit(30, "feet")
  3281. },
  3282. {
  3283. name: "Macro",
  3284. height: math.unit(100, "feet"),
  3285. default: true
  3286. },
  3287. {
  3288. name: "Macro+",
  3289. height: math.unit(2000, "feet")
  3290. },
  3291. {
  3292. name: "True Form",
  3293. height: math.unit(8924, "miles")
  3294. }
  3295. ]
  3296. ))
  3297. characterMakers.push(() => makeCharacter(
  3298. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3299. {
  3300. front: {
  3301. height: math.unit(2, "meter"),
  3302. weight: math.unit(120, "kg"),
  3303. name: "Front",
  3304. image: {
  3305. source: "./media/characters/ggv/front.svg"
  3306. }
  3307. },
  3308. side: {
  3309. height: math.unit(2, "meter"),
  3310. weight: math.unit(120, "kg"),
  3311. name: "Side",
  3312. image: {
  3313. source: "./media/characters/ggv/side.svg"
  3314. }
  3315. }
  3316. },
  3317. [
  3318. {
  3319. name: "Extremely Puny",
  3320. height: math.unit(9 + 5 / 12, "feet")
  3321. },
  3322. {
  3323. name: "Horribly Small",
  3324. height: math.unit(47.7, "miles"),
  3325. default: true
  3326. },
  3327. {
  3328. name: "Reasonably Sized",
  3329. height: math.unit(25000, "parsecs")
  3330. },
  3331. {
  3332. name: "Slightly Uncompressed",
  3333. height: math.unit(7.77e31, "parsecs")
  3334. },
  3335. {
  3336. name: "Omniversal",
  3337. height: math.unit(1e300, "meters")
  3338. },
  3339. ]
  3340. ))
  3341. characterMakers.push(() => makeCharacter(
  3342. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3343. {
  3344. front: {
  3345. height: math.unit(2, "meter"),
  3346. weight: math.unit(75, "lb"),
  3347. name: "Front",
  3348. image: {
  3349. source: "./media/characters/napalm/front.svg"
  3350. }
  3351. },
  3352. back: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(75, "lb"),
  3355. name: "Back",
  3356. image: {
  3357. source: "./media/characters/napalm/back.svg"
  3358. }
  3359. }
  3360. },
  3361. [
  3362. {
  3363. name: "Standard",
  3364. height: math.unit(55, "feet"),
  3365. default: true
  3366. }
  3367. ]
  3368. ))
  3369. characterMakers.push(() => makeCharacter(
  3370. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3371. {
  3372. front: {
  3373. height: math.unit(7 + 5 / 6, "feet"),
  3374. weight: math.unit(325, "lb"),
  3375. name: "Front",
  3376. image: {
  3377. source: "./media/characters/asana/front.svg",
  3378. extra: 1133 / 1060,
  3379. bottom: 15.2 / 1148.6
  3380. }
  3381. },
  3382. back: {
  3383. height: math.unit(7 + 5 / 6, "feet"),
  3384. weight: math.unit(325, "lb"),
  3385. name: "Back",
  3386. image: {
  3387. source: "./media/characters/asana/back.svg",
  3388. extra: 1114 / 1043,
  3389. bottom: 5 / 1120
  3390. }
  3391. },
  3392. dressedDark: {
  3393. height: math.unit(7 + 5 / 6, "feet"),
  3394. weight: math.unit(325, "lb"),
  3395. name: "Dressed (Dark)",
  3396. image: {
  3397. source: "./media/characters/asana/dressed-dark.svg",
  3398. extra: 1133 / 1060,
  3399. bottom: 15.2 / 1148.6
  3400. }
  3401. },
  3402. dressedLight: {
  3403. height: math.unit(7 + 5 / 6, "feet"),
  3404. weight: math.unit(325, "lb"),
  3405. name: "Dressed (Light)",
  3406. image: {
  3407. source: "./media/characters/asana/dressed-light.svg",
  3408. extra: 1133 / 1060,
  3409. bottom: 15.2 / 1148.6
  3410. }
  3411. },
  3412. },
  3413. [
  3414. {
  3415. name: "Standard",
  3416. height: math.unit(7 + 5 / 6, "feet"),
  3417. default: true
  3418. },
  3419. {
  3420. name: "Large",
  3421. height: math.unit(10, "meters")
  3422. },
  3423. {
  3424. name: "Macro",
  3425. height: math.unit(2500, "meters")
  3426. },
  3427. {
  3428. name: "Megamacro",
  3429. height: math.unit(5e6, "meters")
  3430. },
  3431. {
  3432. name: "Examacro",
  3433. height: math.unit(5e12, "lightyears")
  3434. },
  3435. {
  3436. name: "Max Size",
  3437. height: math.unit(1e31, "lightyears")
  3438. }
  3439. ]
  3440. ))
  3441. characterMakers.push(() => makeCharacter(
  3442. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3443. {
  3444. front: {
  3445. height: math.unit(2, "meter"),
  3446. weight: math.unit(60, "kg"),
  3447. name: "Front",
  3448. image: {
  3449. source: "./media/characters/ebony/front.svg",
  3450. bottom: 0.03,
  3451. extra: 1045 / 810 + 0.03
  3452. }
  3453. },
  3454. side: {
  3455. height: math.unit(2, "meter"),
  3456. weight: math.unit(60, "kg"),
  3457. name: "Side",
  3458. image: {
  3459. source: "./media/characters/ebony/side.svg",
  3460. bottom: 0.03,
  3461. extra: 1045 / 810 + 0.03
  3462. }
  3463. },
  3464. back: {
  3465. height: math.unit(2, "meter"),
  3466. weight: math.unit(60, "kg"),
  3467. name: "Back",
  3468. image: {
  3469. source: "./media/characters/ebony/back.svg",
  3470. bottom: 0.01,
  3471. extra: 1045 / 810 + 0.01
  3472. }
  3473. },
  3474. },
  3475. [
  3476. // TODO check why I did this lol
  3477. {
  3478. name: "Standard",
  3479. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3480. default: true
  3481. },
  3482. {
  3483. name: "Macro",
  3484. height: math.unit(200, "feet")
  3485. },
  3486. {
  3487. name: "Gigamacro",
  3488. height: math.unit(13000, "km")
  3489. }
  3490. ]
  3491. ))
  3492. characterMakers.push(() => makeCharacter(
  3493. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3494. {
  3495. front: {
  3496. height: math.unit(6, "feet"),
  3497. weight: math.unit(175, "lb"),
  3498. name: "Front",
  3499. image: {
  3500. source: "./media/characters/mountain/front.svg",
  3501. extra: 972 / 955,
  3502. bottom: 64 / 1036.6
  3503. }
  3504. },
  3505. back: {
  3506. height: math.unit(6, "feet"),
  3507. weight: math.unit(175, "lb"),
  3508. name: "Back",
  3509. image: {
  3510. source: "./media/characters/mountain/back.svg",
  3511. extra: 970 / 950,
  3512. bottom: 28.25 / 999
  3513. }
  3514. },
  3515. },
  3516. [
  3517. {
  3518. name: "Large",
  3519. height: math.unit(20, "meters")
  3520. },
  3521. {
  3522. name: "Macro",
  3523. height: math.unit(300, "meters")
  3524. },
  3525. {
  3526. name: "Gigamacro",
  3527. height: math.unit(10000, "km"),
  3528. default: true
  3529. },
  3530. {
  3531. name: "Examacro",
  3532. height: math.unit(10e9, "lightyears")
  3533. }
  3534. ]
  3535. ))
  3536. characterMakers.push(() => makeCharacter(
  3537. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3538. {
  3539. front: {
  3540. height: math.unit(8, "feet"),
  3541. weight: math.unit(500, "lb"),
  3542. name: "Front",
  3543. image: {
  3544. source: "./media/characters/rick/front.svg"
  3545. }
  3546. }
  3547. },
  3548. [
  3549. {
  3550. name: "Normal",
  3551. height: math.unit(8, "feet"),
  3552. default: true
  3553. },
  3554. {
  3555. name: "Macro",
  3556. height: math.unit(5, "km")
  3557. }
  3558. ]
  3559. ))
  3560. characterMakers.push(() => makeCharacter(
  3561. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3562. {
  3563. front: {
  3564. height: math.unit(8, "feet"),
  3565. weight: math.unit(120, "lb"),
  3566. name: "Front",
  3567. image: {
  3568. source: "./media/characters/ona/front.svg"
  3569. }
  3570. },
  3571. frontAlt: {
  3572. height: math.unit(8, "feet"),
  3573. weight: math.unit(120, "lb"),
  3574. name: "Front (Alt)",
  3575. image: {
  3576. source: "./media/characters/ona/front-alt.svg"
  3577. }
  3578. },
  3579. back: {
  3580. height: math.unit(8, "feet"),
  3581. weight: math.unit(120, "lb"),
  3582. name: "Back",
  3583. image: {
  3584. source: "./media/characters/ona/back.svg"
  3585. }
  3586. },
  3587. foot: {
  3588. height: math.unit(1.1, "feet"),
  3589. name: "Foot",
  3590. image: {
  3591. source: "./media/characters/ona/foot.svg"
  3592. }
  3593. }
  3594. },
  3595. [
  3596. {
  3597. name: "Megamacro",
  3598. height: math.unit(70, "km"),
  3599. default: true
  3600. },
  3601. {
  3602. name: "Gigamacro",
  3603. height: math.unit(681818, "miles")
  3604. },
  3605. {
  3606. name: "Examacro",
  3607. height: math.unit(3800000, "lightyears")
  3608. },
  3609. ]
  3610. ))
  3611. characterMakers.push(() => makeCharacter(
  3612. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3613. {
  3614. front: {
  3615. height: math.unit(12, "feet"),
  3616. weight: math.unit(3000, "lb"),
  3617. name: "Front",
  3618. image: {
  3619. source: "./media/characters/mech/front.svg",
  3620. extra: 2900 / 2770,
  3621. bottom: 110 / 3010
  3622. }
  3623. },
  3624. back: {
  3625. height: math.unit(12, "feet"),
  3626. weight: math.unit(3000, "lb"),
  3627. name: "Back",
  3628. image: {
  3629. source: "./media/characters/mech/back.svg",
  3630. extra: 3011 / 2890,
  3631. bottom: 94 / 3105
  3632. }
  3633. },
  3634. maw: {
  3635. height: math.unit(3.07, "feet"),
  3636. name: "Maw",
  3637. image: {
  3638. source: "./media/characters/mech/maw.svg"
  3639. }
  3640. },
  3641. head: {
  3642. height: math.unit(2.82, "feet"),
  3643. name: "Head",
  3644. image: {
  3645. source: "./media/characters/mech/head.svg"
  3646. }
  3647. },
  3648. dick: {
  3649. height: math.unit(1.43, "feet"),
  3650. name: "Dick",
  3651. image: {
  3652. source: "./media/characters/mech/dick.svg"
  3653. }
  3654. },
  3655. },
  3656. [
  3657. {
  3658. name: "Normal",
  3659. height: math.unit(12, "feet")
  3660. },
  3661. {
  3662. name: "Macro",
  3663. height: math.unit(300, "feet"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Macro+",
  3668. height: math.unit(1500, "feet")
  3669. },
  3670. ]
  3671. ))
  3672. characterMakers.push(() => makeCharacter(
  3673. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3674. {
  3675. front: {
  3676. height: math.unit(1.3, "meter"),
  3677. weight: math.unit(30, "kg"),
  3678. name: "Front",
  3679. image: {
  3680. source: "./media/characters/gregory/front.svg",
  3681. }
  3682. }
  3683. },
  3684. [
  3685. {
  3686. name: "Normal",
  3687. height: math.unit(1.3, "meter"),
  3688. default: true
  3689. },
  3690. {
  3691. name: "Macro",
  3692. height: math.unit(20, "meter")
  3693. }
  3694. ]
  3695. ))
  3696. characterMakers.push(() => makeCharacter(
  3697. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3698. {
  3699. front: {
  3700. height: math.unit(2.8, "meter"),
  3701. weight: math.unit(200, "kg"),
  3702. name: "Front",
  3703. image: {
  3704. source: "./media/characters/elory/front.svg",
  3705. }
  3706. }
  3707. },
  3708. [
  3709. {
  3710. name: "Normal",
  3711. height: math.unit(2.8, "meter"),
  3712. default: true
  3713. },
  3714. {
  3715. name: "Macro",
  3716. height: math.unit(38, "meter")
  3717. }
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3722. {
  3723. front: {
  3724. height: math.unit(470, "feet"),
  3725. weight: math.unit(924, "tons"),
  3726. name: "Front",
  3727. image: {
  3728. source: "./media/characters/angelpatamon/front.svg",
  3729. }
  3730. }
  3731. },
  3732. [
  3733. {
  3734. name: "Normal",
  3735. height: math.unit(470, "feet"),
  3736. default: true
  3737. },
  3738. {
  3739. name: "Deity Size I",
  3740. height: math.unit(28651.2, "km")
  3741. },
  3742. {
  3743. name: "Deity Size II",
  3744. height: math.unit(171907.2, "km")
  3745. }
  3746. ]
  3747. ))
  3748. characterMakers.push(() => makeCharacter(
  3749. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3750. {
  3751. side: {
  3752. height: math.unit(7.2, "meter"),
  3753. weight: math.unit(8.2, "tons"),
  3754. name: "Side",
  3755. image: {
  3756. source: "./media/characters/cryae/side.svg",
  3757. extra: 3500 / 1500
  3758. }
  3759. }
  3760. },
  3761. [
  3762. {
  3763. name: "Normal",
  3764. height: math.unit(7.2, "meter"),
  3765. default: true
  3766. }
  3767. ]
  3768. ))
  3769. characterMakers.push(() => makeCharacter(
  3770. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3771. {
  3772. front: {
  3773. height: math.unit(6, "feet"),
  3774. weight: math.unit(175, "lb"),
  3775. name: "Front",
  3776. image: {
  3777. source: "./media/characters/xera/front.svg",
  3778. extra: 2377 / 1972,
  3779. bottom: 75.5 / 2452
  3780. }
  3781. },
  3782. side: {
  3783. height: math.unit(6, "feet"),
  3784. weight: math.unit(175, "lb"),
  3785. name: "Side",
  3786. image: {
  3787. source: "./media/characters/xera/side.svg",
  3788. extra: 2345 / 2019,
  3789. bottom: 39.7 / 2384
  3790. }
  3791. },
  3792. back: {
  3793. height: math.unit(6, "feet"),
  3794. weight: math.unit(175, "lb"),
  3795. name: "Back",
  3796. image: {
  3797. source: "./media/characters/xera/back.svg",
  3798. extra: 2095 / 1984,
  3799. bottom: 67 / 2166
  3800. }
  3801. },
  3802. },
  3803. [
  3804. {
  3805. name: "Small",
  3806. height: math.unit(10, "feet")
  3807. },
  3808. {
  3809. name: "Macro",
  3810. height: math.unit(500, "meters"),
  3811. default: true
  3812. },
  3813. {
  3814. name: "Macro+",
  3815. height: math.unit(10, "km")
  3816. },
  3817. {
  3818. name: "Gigamacro",
  3819. height: math.unit(25000, "km")
  3820. },
  3821. {
  3822. name: "Teramacro",
  3823. height: math.unit(3e6, "km")
  3824. }
  3825. ]
  3826. ))
  3827. characterMakers.push(() => makeCharacter(
  3828. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3829. {
  3830. front: {
  3831. height: math.unit(6, "feet"),
  3832. weight: math.unit(175, "lb"),
  3833. name: "Front",
  3834. image: {
  3835. source: "./media/characters/nebula/front.svg",
  3836. extra: 2566 / 2362,
  3837. bottom: 81 / 2644
  3838. }
  3839. }
  3840. },
  3841. [
  3842. {
  3843. name: "Small",
  3844. height: math.unit(4.5, "meters")
  3845. },
  3846. {
  3847. name: "Macro",
  3848. height: math.unit(1500, "meters"),
  3849. default: true
  3850. },
  3851. {
  3852. name: "Megamacro",
  3853. height: math.unit(150, "km")
  3854. },
  3855. {
  3856. name: "Gigamacro",
  3857. height: math.unit(27000, "km")
  3858. }
  3859. ]
  3860. ))
  3861. characterMakers.push(() => makeCharacter(
  3862. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3863. {
  3864. front: {
  3865. height: math.unit(6, "feet"),
  3866. weight: math.unit(225, "lb"),
  3867. name: "Front",
  3868. image: {
  3869. source: "./media/characters/abysgar/front.svg"
  3870. }
  3871. }
  3872. },
  3873. [
  3874. {
  3875. name: "Small",
  3876. height: math.unit(4.5, "meters")
  3877. },
  3878. {
  3879. name: "Macro",
  3880. height: math.unit(1250, "meters"),
  3881. default: true
  3882. },
  3883. {
  3884. name: "Megamacro",
  3885. height: math.unit(125, "km")
  3886. },
  3887. {
  3888. name: "Gigamacro",
  3889. height: math.unit(26000, "km")
  3890. }
  3891. ]
  3892. ))
  3893. characterMakers.push(() => makeCharacter(
  3894. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3895. {
  3896. front: {
  3897. height: math.unit(6, "feet"),
  3898. weight: math.unit(180, "lb"),
  3899. name: "Front",
  3900. image: {
  3901. source: "./media/characters/yakuz/front.svg"
  3902. }
  3903. }
  3904. },
  3905. [
  3906. {
  3907. name: "Small",
  3908. height: math.unit(5, "meters")
  3909. },
  3910. {
  3911. name: "Macro",
  3912. height: math.unit(1500, "meters"),
  3913. default: true
  3914. },
  3915. {
  3916. name: "Megamacro",
  3917. height: math.unit(200, "km")
  3918. },
  3919. {
  3920. name: "Gigamacro",
  3921. height: math.unit(100000, "km")
  3922. }
  3923. ]
  3924. ))
  3925. characterMakers.push(() => makeCharacter(
  3926. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3927. {
  3928. front: {
  3929. height: math.unit(6, "feet"),
  3930. weight: math.unit(175, "lb"),
  3931. name: "Front",
  3932. image: {
  3933. source: "./media/characters/mirova/front.svg",
  3934. extra: 3334 / 3071,
  3935. bottom: 42 / 3375.6
  3936. }
  3937. }
  3938. },
  3939. [
  3940. {
  3941. name: "Small",
  3942. height: math.unit(5, "meters")
  3943. },
  3944. {
  3945. name: "Macro",
  3946. height: math.unit(900, "meters"),
  3947. default: true
  3948. },
  3949. {
  3950. name: "Megamacro",
  3951. height: math.unit(135, "km")
  3952. },
  3953. {
  3954. name: "Gigamacro",
  3955. height: math.unit(20000, "km")
  3956. }
  3957. ]
  3958. ))
  3959. characterMakers.push(() => makeCharacter(
  3960. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3961. {
  3962. side: {
  3963. height: math.unit(28.35, "feet"),
  3964. weight: math.unit(99.75, "tons"),
  3965. name: "Side",
  3966. image: {
  3967. source: "./media/characters/asana-mech/side.svg",
  3968. extra: 923 / 699,
  3969. bottom: 50 / 975
  3970. }
  3971. },
  3972. chaingun: {
  3973. height: math.unit(7, "feet"),
  3974. weight: math.unit(2400, "lb"),
  3975. name: "Chaingun",
  3976. image: {
  3977. source: "./media/characters/asana-mech/chaingun.svg"
  3978. }
  3979. },
  3980. laser: {
  3981. height: math.unit(7.12, "feet"),
  3982. weight: math.unit(2000, "lb"),
  3983. name: "Laser",
  3984. image: {
  3985. source: "./media/characters/asana-mech/laser.svg"
  3986. }
  3987. },
  3988. },
  3989. [
  3990. {
  3991. name: "Normal",
  3992. height: math.unit(28.35, "feet"),
  3993. default: true
  3994. },
  3995. {
  3996. name: "Macro",
  3997. height: math.unit(2500, "feet")
  3998. },
  3999. {
  4000. name: "Megamacro",
  4001. height: math.unit(25, "miles")
  4002. },
  4003. {
  4004. name: "Examacro",
  4005. height: math.unit(6e8, "lightyears")
  4006. },
  4007. ]
  4008. ))
  4009. characterMakers.push(() => makeCharacter(
  4010. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4011. {
  4012. front: {
  4013. height: math.unit(5, "meters"),
  4014. weight: math.unit(1000, "kg"),
  4015. name: "Front",
  4016. image: {
  4017. source: "./media/characters/asche/front.svg",
  4018. extra: 1258 / 1190,
  4019. bottom: 47 / 1305
  4020. }
  4021. },
  4022. frontUnderwear: {
  4023. height: math.unit(5, "meters"),
  4024. weight: math.unit(1000, "kg"),
  4025. name: "Front (Underwear)",
  4026. image: {
  4027. source: "./media/characters/asche/front-underwear.svg",
  4028. extra: 1258 / 1190,
  4029. bottom: 47 / 1305
  4030. }
  4031. },
  4032. frontDressed: {
  4033. height: math.unit(5, "meters"),
  4034. weight: math.unit(1000, "kg"),
  4035. name: "Front (Dressed)",
  4036. image: {
  4037. source: "./media/characters/asche/front-dressed.svg",
  4038. extra: 1258 / 1190,
  4039. bottom: 47 / 1305
  4040. }
  4041. },
  4042. frontArmor: {
  4043. height: math.unit(5, "meters"),
  4044. weight: math.unit(1000, "kg"),
  4045. name: "Front (Armored)",
  4046. image: {
  4047. source: "./media/characters/asche/front-armored.svg",
  4048. extra: 1374 / 1308,
  4049. bottom: 23 / 1397
  4050. }
  4051. },
  4052. mp724: {
  4053. height: math.unit(0.96, "meters"),
  4054. weight: math.unit(38, "kg"),
  4055. name: "H&K MP724",
  4056. image: {
  4057. source: "./media/characters/asche/h&k-mp724.svg"
  4058. }
  4059. },
  4060. side: {
  4061. height: math.unit(5, "meters"),
  4062. weight: math.unit(1000, "kg"),
  4063. name: "Side",
  4064. image: {
  4065. source: "./media/characters/asche/side.svg",
  4066. extra: 1717 / 1609,
  4067. bottom: 0.005
  4068. }
  4069. },
  4070. back: {
  4071. height: math.unit(5, "meters"),
  4072. weight: math.unit(1000, "kg"),
  4073. name: "Back",
  4074. image: {
  4075. source: "./media/characters/asche/back.svg",
  4076. extra: 1570 / 1501
  4077. }
  4078. },
  4079. },
  4080. [
  4081. {
  4082. name: "DEFCON 5",
  4083. height: math.unit(5, "meters")
  4084. },
  4085. {
  4086. name: "DEFCON 4",
  4087. height: math.unit(500, "meters"),
  4088. default: true
  4089. },
  4090. {
  4091. name: "DEFCON 3",
  4092. height: math.unit(5, "km")
  4093. },
  4094. {
  4095. name: "DEFCON 2",
  4096. height: math.unit(500, "km")
  4097. },
  4098. {
  4099. name: "DEFCON 1",
  4100. height: math.unit(500000, "km")
  4101. },
  4102. {
  4103. name: "DEFCON 0",
  4104. height: math.unit(3, "gigaparsecs")
  4105. },
  4106. ]
  4107. ))
  4108. characterMakers.push(() => makeCharacter(
  4109. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4110. {
  4111. front: {
  4112. height: math.unit(2, "meters"),
  4113. weight: math.unit(76, "kg"),
  4114. name: "Front",
  4115. image: {
  4116. source: "./media/characters/gale/front.svg"
  4117. }
  4118. },
  4119. frontAlt1: {
  4120. height: math.unit(2, "meters"),
  4121. weight: math.unit(76, "kg"),
  4122. name: "Front (Alt 1)",
  4123. image: {
  4124. source: "./media/characters/gale/front-alt-1.svg"
  4125. }
  4126. },
  4127. frontAlt2: {
  4128. height: math.unit(2, "meters"),
  4129. weight: math.unit(76, "kg"),
  4130. name: "Front (Alt 2)",
  4131. image: {
  4132. source: "./media/characters/gale/front-alt-2.svg"
  4133. }
  4134. },
  4135. },
  4136. [
  4137. {
  4138. name: "Normal",
  4139. height: math.unit(7, "feet")
  4140. },
  4141. {
  4142. name: "Macro",
  4143. height: math.unit(150, "feet"),
  4144. default: true
  4145. },
  4146. {
  4147. name: "Macro+",
  4148. height: math.unit(300, "feet")
  4149. },
  4150. ]
  4151. ))
  4152. characterMakers.push(() => makeCharacter(
  4153. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4154. {
  4155. front: {
  4156. height: math.unit(2, "meters"),
  4157. weight: math.unit(76, "kg"),
  4158. name: "Front",
  4159. image: {
  4160. source: "./media/characters/draylen/front.svg"
  4161. }
  4162. }
  4163. },
  4164. [
  4165. {
  4166. name: "Macro",
  4167. height: math.unit(150, "feet"),
  4168. default: true
  4169. }
  4170. ]
  4171. ))
  4172. characterMakers.push(() => makeCharacter(
  4173. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4174. {
  4175. front: {
  4176. height: math.unit(7 + 9 / 12, "feet"),
  4177. weight: math.unit(379, "lbs"),
  4178. name: "Front",
  4179. image: {
  4180. source: "./media/characters/chez/front.svg"
  4181. }
  4182. },
  4183. side: {
  4184. height: math.unit(7 + 9 / 12, "feet"),
  4185. weight: math.unit(379, "lbs"),
  4186. name: "Side",
  4187. image: {
  4188. source: "./media/characters/chez/side.svg"
  4189. }
  4190. }
  4191. },
  4192. [
  4193. {
  4194. name: "Normal",
  4195. height: math.unit(7 + 9 / 12, "feet"),
  4196. default: true
  4197. },
  4198. {
  4199. name: "God King",
  4200. height: math.unit(9750000, "meters")
  4201. }
  4202. ]
  4203. ))
  4204. characterMakers.push(() => makeCharacter(
  4205. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4206. {
  4207. front: {
  4208. height: math.unit(6, "feet"),
  4209. weight: math.unit(275, "lbs"),
  4210. name: "Front",
  4211. image: {
  4212. source: "./media/characters/kaylum/front.svg",
  4213. bottom: 0.01,
  4214. extra: 1166 / 1031
  4215. }
  4216. },
  4217. frontWingless: {
  4218. height: math.unit(6, "feet"),
  4219. weight: math.unit(275, "lbs"),
  4220. name: "Front (Wingless)",
  4221. image: {
  4222. source: "./media/characters/kaylum/front-wingless.svg",
  4223. bottom: 0.01,
  4224. extra: 1117 / 1031
  4225. }
  4226. }
  4227. },
  4228. [
  4229. {
  4230. name: "Normal",
  4231. height: math.unit(3.05, "meters")
  4232. },
  4233. {
  4234. name: "Master",
  4235. height: math.unit(5.5, "meters")
  4236. },
  4237. {
  4238. name: "Rampage",
  4239. height: math.unit(19, "meters")
  4240. },
  4241. {
  4242. name: "Macro Lite",
  4243. height: math.unit(37, "meters")
  4244. },
  4245. {
  4246. name: "Hyper Predator",
  4247. height: math.unit(61, "meters")
  4248. },
  4249. {
  4250. name: "Macro",
  4251. height: math.unit(138, "meters"),
  4252. default: true
  4253. }
  4254. ]
  4255. ))
  4256. characterMakers.push(() => makeCharacter(
  4257. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4258. {
  4259. front: {
  4260. height: math.unit(6, "feet"),
  4261. weight: math.unit(150, "lbs"),
  4262. name: "Front",
  4263. image: {
  4264. source: "./media/characters/geta/front.svg"
  4265. }
  4266. }
  4267. },
  4268. [
  4269. {
  4270. name: "Micro",
  4271. height: math.unit(3, "inches"),
  4272. default: true
  4273. },
  4274. {
  4275. name: "Normal",
  4276. height: math.unit(5 + 5 / 12, "feet")
  4277. }
  4278. ]
  4279. ))
  4280. characterMakers.push(() => makeCharacter(
  4281. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4282. {
  4283. front: {
  4284. height: math.unit(6, "feet"),
  4285. weight: math.unit(300, "lbs"),
  4286. name: "Front",
  4287. image: {
  4288. source: "./media/characters/tyrnn/front.svg"
  4289. }
  4290. }
  4291. },
  4292. [
  4293. {
  4294. name: "Main Height",
  4295. height: math.unit(355, "feet"),
  4296. default: true
  4297. },
  4298. {
  4299. name: "Fave. Height",
  4300. height: math.unit(2400, "feet")
  4301. }
  4302. ]
  4303. ))
  4304. characterMakers.push(() => makeCharacter(
  4305. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4306. {
  4307. front: {
  4308. height: math.unit(6, "feet"),
  4309. weight: math.unit(300, "lbs"),
  4310. name: "Front",
  4311. image: {
  4312. source: "./media/characters/appledectomy/front.svg"
  4313. }
  4314. }
  4315. },
  4316. [
  4317. {
  4318. name: "Macro",
  4319. height: math.unit(2500, "feet")
  4320. },
  4321. {
  4322. name: "Megamacro",
  4323. height: math.unit(50, "miles"),
  4324. default: true
  4325. },
  4326. {
  4327. name: "Gigamacro",
  4328. height: math.unit(5000, "miles")
  4329. },
  4330. {
  4331. name: "Teramacro",
  4332. height: math.unit(250000, "miles")
  4333. },
  4334. ]
  4335. ))
  4336. characterMakers.push(() => makeCharacter(
  4337. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4338. {
  4339. front: {
  4340. height: math.unit(6, "feet"),
  4341. weight: math.unit(200, "lbs"),
  4342. name: "Front",
  4343. image: {
  4344. source: "./media/characters/vulpes/front.svg",
  4345. extra: 573 / 543,
  4346. bottom: 0.033
  4347. }
  4348. },
  4349. side: {
  4350. height: math.unit(6, "feet"),
  4351. weight: math.unit(200, "lbs"),
  4352. name: "Side",
  4353. image: {
  4354. source: "./media/characters/vulpes/side.svg",
  4355. extra: 577 / 549,
  4356. bottom: 11 / 588
  4357. }
  4358. },
  4359. back: {
  4360. height: math.unit(6, "feet"),
  4361. weight: math.unit(200, "lbs"),
  4362. name: "Back",
  4363. image: {
  4364. source: "./media/characters/vulpes/back.svg",
  4365. extra: 573 / 549,
  4366. bottom: 20 / 593
  4367. }
  4368. },
  4369. feet: {
  4370. height: math.unit(1.276, "feet"),
  4371. name: "Feet",
  4372. image: {
  4373. source: "./media/characters/vulpes/feet.svg"
  4374. }
  4375. },
  4376. maw: {
  4377. height: math.unit(1.18, "feet"),
  4378. name: "Maw",
  4379. image: {
  4380. source: "./media/characters/vulpes/maw.svg"
  4381. }
  4382. },
  4383. },
  4384. [
  4385. {
  4386. name: "Micro",
  4387. height: math.unit(2, "inches")
  4388. },
  4389. {
  4390. name: "Normal",
  4391. height: math.unit(6.3, "feet")
  4392. },
  4393. {
  4394. name: "Macro",
  4395. height: math.unit(850, "feet")
  4396. },
  4397. {
  4398. name: "Megamacro",
  4399. height: math.unit(7500, "feet"),
  4400. default: true
  4401. },
  4402. {
  4403. name: "Gigamacro",
  4404. height: math.unit(570000, "miles")
  4405. }
  4406. ]
  4407. ))
  4408. characterMakers.push(() => makeCharacter(
  4409. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4410. {
  4411. front: {
  4412. height: math.unit(6, "feet"),
  4413. weight: math.unit(210, "lbs"),
  4414. name: "Front",
  4415. image: {
  4416. source: "./media/characters/rain-fallen/front.svg"
  4417. }
  4418. },
  4419. side: {
  4420. height: math.unit(6, "feet"),
  4421. weight: math.unit(210, "lbs"),
  4422. name: "Side",
  4423. image: {
  4424. source: "./media/characters/rain-fallen/side.svg"
  4425. }
  4426. },
  4427. back: {
  4428. height: math.unit(6, "feet"),
  4429. weight: math.unit(210, "lbs"),
  4430. name: "Back",
  4431. image: {
  4432. source: "./media/characters/rain-fallen/back.svg"
  4433. }
  4434. },
  4435. feral: {
  4436. height: math.unit(9, "feet"),
  4437. weight: math.unit(700, "lbs"),
  4438. name: "Feral",
  4439. image: {
  4440. source: "./media/characters/rain-fallen/feral.svg"
  4441. }
  4442. },
  4443. },
  4444. [
  4445. {
  4446. name: "Meddling with Mortals",
  4447. height: math.unit(8 + 8/12, "feet")
  4448. },
  4449. {
  4450. name: "Normal",
  4451. height: math.unit(5, "meter")
  4452. },
  4453. {
  4454. name: "Macro",
  4455. height: math.unit(150, "meter"),
  4456. default: true
  4457. },
  4458. {
  4459. name: "Megamacro",
  4460. height: math.unit(278e6, "meter")
  4461. },
  4462. {
  4463. name: "Gigamacro",
  4464. height: math.unit(2e9, "meter")
  4465. },
  4466. {
  4467. name: "Teramacro",
  4468. height: math.unit(8e12, "meter")
  4469. },
  4470. {
  4471. name: "Devourer",
  4472. height: math.unit(14, "zettameters")
  4473. },
  4474. {
  4475. name: "Scarlet King",
  4476. height: math.unit(18, "yottameters")
  4477. },
  4478. {
  4479. name: "Void",
  4480. height: math.unit(1e88, "yottameters")
  4481. }
  4482. ]
  4483. ))
  4484. characterMakers.push(() => makeCharacter(
  4485. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4486. {
  4487. standing: {
  4488. height: math.unit(6, "feet"),
  4489. weight: math.unit(180, "lbs"),
  4490. name: "Standing",
  4491. image: {
  4492. source: "./media/characters/zaakira/standing.svg"
  4493. }
  4494. },
  4495. laying: {
  4496. height: math.unit(3, "feet"),
  4497. weight: math.unit(180, "lbs"),
  4498. name: "Laying",
  4499. image: {
  4500. source: "./media/characters/zaakira/laying.svg"
  4501. }
  4502. },
  4503. },
  4504. [
  4505. {
  4506. name: "Normal",
  4507. height: math.unit(12, "feet")
  4508. },
  4509. {
  4510. name: "Macro",
  4511. height: math.unit(279, "feet"),
  4512. default: true
  4513. }
  4514. ]
  4515. ))
  4516. characterMakers.push(() => makeCharacter(
  4517. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4518. {
  4519. femSfw: {
  4520. height: math.unit(8, "feet"),
  4521. weight: math.unit(350, "lb"),
  4522. name: "Fem",
  4523. image: {
  4524. source: "./media/characters/sigvald/fem-sfw.svg",
  4525. extra: 182 / 164,
  4526. bottom: 8.7 / 190.5
  4527. }
  4528. },
  4529. femNsfw: {
  4530. height: math.unit(8, "feet"),
  4531. weight: math.unit(350, "lb"),
  4532. name: "Fem (NSFW)",
  4533. image: {
  4534. source: "./media/characters/sigvald/fem-nsfw.svg",
  4535. extra: 182 / 164,
  4536. bottom: 8.7 / 190.5
  4537. }
  4538. },
  4539. maleNsfw: {
  4540. height: math.unit(8, "feet"),
  4541. weight: math.unit(350, "lb"),
  4542. name: "Male (NSFW)",
  4543. image: {
  4544. source: "./media/characters/sigvald/male-nsfw.svg",
  4545. extra: 182 / 164,
  4546. bottom: 8.7 / 190.5
  4547. }
  4548. },
  4549. hermNsfw: {
  4550. height: math.unit(8, "feet"),
  4551. weight: math.unit(350, "lb"),
  4552. name: "Herm (NSFW)",
  4553. image: {
  4554. source: "./media/characters/sigvald/herm-nsfw.svg",
  4555. extra: 182 / 164,
  4556. bottom: 8.7 / 190.5
  4557. }
  4558. },
  4559. dick: {
  4560. height: math.unit(2.36, "feet"),
  4561. name: "Dick",
  4562. image: {
  4563. source: "./media/characters/sigvald/dick.svg"
  4564. }
  4565. },
  4566. eye: {
  4567. height: math.unit(0.31, "feet"),
  4568. name: "Eye",
  4569. image: {
  4570. source: "./media/characters/sigvald/eye.svg"
  4571. }
  4572. },
  4573. mouth: {
  4574. height: math.unit(0.92, "feet"),
  4575. name: "Mouth",
  4576. image: {
  4577. source: "./media/characters/sigvald/mouth.svg"
  4578. }
  4579. },
  4580. paws: {
  4581. height: math.unit(2.2, "feet"),
  4582. name: "Paws",
  4583. image: {
  4584. source: "./media/characters/sigvald/paws.svg"
  4585. }
  4586. }
  4587. },
  4588. [
  4589. {
  4590. name: "Normal",
  4591. height: math.unit(8, "feet")
  4592. },
  4593. {
  4594. name: "Large",
  4595. height: math.unit(12, "feet")
  4596. },
  4597. {
  4598. name: "Larger",
  4599. height: math.unit(20, "feet")
  4600. },
  4601. {
  4602. name: "Macro",
  4603. height: math.unit(150, "feet")
  4604. },
  4605. {
  4606. name: "Macro+",
  4607. height: math.unit(200, "feet"),
  4608. default: true
  4609. },
  4610. ]
  4611. ))
  4612. characterMakers.push(() => makeCharacter(
  4613. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4614. {
  4615. side: {
  4616. height: math.unit(12, "feet"),
  4617. weight: math.unit(2000, "kg"),
  4618. name: "Side",
  4619. image: {
  4620. source: "./media/characters/scott/side.svg",
  4621. extra: 754 / 724,
  4622. bottom: 0.069
  4623. }
  4624. },
  4625. upright: {
  4626. height: math.unit(12, "feet"),
  4627. weight: math.unit(2000, "kg"),
  4628. name: "Upright",
  4629. image: {
  4630. source: "./media/characters/scott/upright.svg",
  4631. extra: 3881 / 3722,
  4632. bottom: 0.05
  4633. }
  4634. },
  4635. },
  4636. [
  4637. {
  4638. name: "Normal",
  4639. height: math.unit(12, "feet"),
  4640. default: true
  4641. },
  4642. ]
  4643. ))
  4644. characterMakers.push(() => makeCharacter(
  4645. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4646. {
  4647. side: {
  4648. height: math.unit(8, "meters"),
  4649. weight: math.unit(84755, "lbs"),
  4650. name: "Side",
  4651. image: {
  4652. source: "./media/characters/tobias/side.svg",
  4653. extra: 1474 / 1096,
  4654. bottom: 38.9 / 1513.1235
  4655. }
  4656. },
  4657. },
  4658. [
  4659. {
  4660. name: "Normal",
  4661. height: math.unit(8, "meters"),
  4662. default: true
  4663. },
  4664. ]
  4665. ))
  4666. characterMakers.push(() => makeCharacter(
  4667. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4668. {
  4669. front: {
  4670. height: math.unit(5.5, "feet"),
  4671. weight: math.unit(400, "lbs"),
  4672. name: "Front",
  4673. image: {
  4674. source: "./media/characters/kieran/front.svg",
  4675. extra: 2694 / 2364,
  4676. bottom: 217 / 2908
  4677. }
  4678. },
  4679. side: {
  4680. height: math.unit(5.5, "feet"),
  4681. weight: math.unit(400, "lbs"),
  4682. name: "Side",
  4683. image: {
  4684. source: "./media/characters/kieran/side.svg",
  4685. extra: 875 / 777,
  4686. bottom: 84.6 / 959
  4687. }
  4688. },
  4689. },
  4690. [
  4691. {
  4692. name: "Normal",
  4693. height: math.unit(5.5, "feet"),
  4694. default: true
  4695. },
  4696. ]
  4697. ))
  4698. characterMakers.push(() => makeCharacter(
  4699. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4700. {
  4701. side: {
  4702. height: math.unit(2, "meters"),
  4703. weight: math.unit(70, "kg"),
  4704. name: "Side",
  4705. image: {
  4706. source: "./media/characters/sanya/side.svg",
  4707. bottom: 0.02,
  4708. extra: 1.02
  4709. }
  4710. },
  4711. },
  4712. [
  4713. {
  4714. name: "Small",
  4715. height: math.unit(2, "meters")
  4716. },
  4717. {
  4718. name: "Normal",
  4719. height: math.unit(3, "meters")
  4720. },
  4721. {
  4722. name: "Macro",
  4723. height: math.unit(16, "meters"),
  4724. default: true
  4725. },
  4726. ]
  4727. ))
  4728. characterMakers.push(() => makeCharacter(
  4729. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4730. {
  4731. front: {
  4732. height: math.unit(2, "meters"),
  4733. weight: math.unit(120, "kg"),
  4734. name: "Front",
  4735. image: {
  4736. source: "./media/characters/miranda/front.svg",
  4737. extra: 195 / 185,
  4738. bottom: 10.9 / 206.5
  4739. }
  4740. },
  4741. back: {
  4742. height: math.unit(2, "meters"),
  4743. weight: math.unit(120, "kg"),
  4744. name: "Back",
  4745. image: {
  4746. source: "./media/characters/miranda/back.svg",
  4747. extra: 201 / 193,
  4748. bottom: 2.3 / 203.7
  4749. }
  4750. },
  4751. },
  4752. [
  4753. {
  4754. name: "Normal",
  4755. height: math.unit(10, "feet"),
  4756. default: true
  4757. }
  4758. ]
  4759. ))
  4760. characterMakers.push(() => makeCharacter(
  4761. { name: "James", species: ["deer"], tags: ["anthro"] },
  4762. {
  4763. side: {
  4764. height: math.unit(2, "meters"),
  4765. weight: math.unit(100, "kg"),
  4766. name: "Front",
  4767. image: {
  4768. source: "./media/characters/james/front.svg",
  4769. extra: 10 / 8.5
  4770. }
  4771. },
  4772. },
  4773. [
  4774. {
  4775. name: "Normal",
  4776. height: math.unit(8.5, "feet"),
  4777. default: true
  4778. }
  4779. ]
  4780. ))
  4781. characterMakers.push(() => makeCharacter(
  4782. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4783. {
  4784. side: {
  4785. height: math.unit(9.5, "feet"),
  4786. weight: math.unit(2500, "lbs"),
  4787. name: "Side",
  4788. image: {
  4789. source: "./media/characters/heather/side.svg"
  4790. }
  4791. },
  4792. },
  4793. [
  4794. {
  4795. name: "Normal",
  4796. height: math.unit(9.5, "feet"),
  4797. default: true
  4798. }
  4799. ]
  4800. ))
  4801. characterMakers.push(() => makeCharacter(
  4802. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4803. {
  4804. side: {
  4805. height: math.unit(6.5, "feet"),
  4806. weight: math.unit(400, "lbs"),
  4807. name: "Side",
  4808. image: {
  4809. source: "./media/characters/lukas/side.svg",
  4810. extra: 7.25 / 6.5
  4811. }
  4812. },
  4813. },
  4814. [
  4815. {
  4816. name: "Normal",
  4817. height: math.unit(6.5, "feet"),
  4818. default: true
  4819. }
  4820. ]
  4821. ))
  4822. characterMakers.push(() => makeCharacter(
  4823. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4824. {
  4825. side: {
  4826. height: math.unit(5, "feet"),
  4827. weight: math.unit(3000, "lbs"),
  4828. name: "Side",
  4829. image: {
  4830. source: "./media/characters/louise/side.svg"
  4831. }
  4832. },
  4833. },
  4834. [
  4835. {
  4836. name: "Normal",
  4837. height: math.unit(5, "feet"),
  4838. default: true
  4839. }
  4840. ]
  4841. ))
  4842. characterMakers.push(() => makeCharacter(
  4843. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4844. {
  4845. side: {
  4846. height: math.unit(6, "feet"),
  4847. weight: math.unit(150, "lbs"),
  4848. name: "Side",
  4849. image: {
  4850. source: "./media/characters/ramona/side.svg"
  4851. }
  4852. },
  4853. },
  4854. [
  4855. {
  4856. name: "Normal",
  4857. height: math.unit(5.3, "meters"),
  4858. default: true
  4859. },
  4860. {
  4861. name: "Macro",
  4862. height: math.unit(20, "stories")
  4863. },
  4864. {
  4865. name: "Macro+",
  4866. height: math.unit(50, "stories")
  4867. },
  4868. ]
  4869. ))
  4870. characterMakers.push(() => makeCharacter(
  4871. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4872. {
  4873. standing: {
  4874. height: math.unit(5.75, "feet"),
  4875. weight: math.unit(160, "lbs"),
  4876. name: "Standing",
  4877. image: {
  4878. source: "./media/characters/deerpuff/standing.svg",
  4879. extra: 682 / 624
  4880. }
  4881. },
  4882. sitting: {
  4883. height: math.unit(5.75 / 1.79, "feet"),
  4884. weight: math.unit(160, "lbs"),
  4885. name: "Sitting",
  4886. image: {
  4887. source: "./media/characters/deerpuff/sitting.svg",
  4888. bottom: 44 / 400,
  4889. extra: 1
  4890. }
  4891. },
  4892. taurLaying: {
  4893. height: math.unit(6, "feet"),
  4894. weight: math.unit(400, "lbs"),
  4895. name: "Taur (Laying)",
  4896. image: {
  4897. source: "./media/characters/deerpuff/taur-laying.svg"
  4898. }
  4899. },
  4900. },
  4901. [
  4902. {
  4903. name: "Puffball",
  4904. height: math.unit(6, "inches")
  4905. },
  4906. {
  4907. name: "Normalpuff",
  4908. height: math.unit(5.75, "feet")
  4909. },
  4910. {
  4911. name: "Macropuff",
  4912. height: math.unit(1500, "feet"),
  4913. default: true
  4914. },
  4915. {
  4916. name: "Megapuff",
  4917. height: math.unit(500, "miles")
  4918. },
  4919. {
  4920. name: "Gigapuff",
  4921. height: math.unit(250000, "miles")
  4922. },
  4923. {
  4924. name: "Omegapuff",
  4925. height: math.unit(1000, "lightyears")
  4926. },
  4927. ]
  4928. ))
  4929. characterMakers.push(() => makeCharacter(
  4930. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4931. {
  4932. stomping: {
  4933. height: math.unit(6, "feet"),
  4934. weight: math.unit(170, "lbs"),
  4935. name: "Stomping",
  4936. image: {
  4937. source: "./media/characters/vivian/stomping.svg"
  4938. }
  4939. },
  4940. sitting: {
  4941. height: math.unit(6 / 1.75, "feet"),
  4942. weight: math.unit(170, "lbs"),
  4943. name: "Sitting",
  4944. image: {
  4945. source: "./media/characters/vivian/sitting.svg",
  4946. bottom: 1 / 6.4,
  4947. extra: 1,
  4948. }
  4949. },
  4950. },
  4951. [
  4952. {
  4953. name: "Normal",
  4954. height: math.unit(7, "feet"),
  4955. default: true
  4956. },
  4957. {
  4958. name: "Macro",
  4959. height: math.unit(10, "stories")
  4960. },
  4961. {
  4962. name: "Macro+",
  4963. height: math.unit(30, "stories")
  4964. },
  4965. {
  4966. name: "Megamacro",
  4967. height: math.unit(10, "miles")
  4968. },
  4969. {
  4970. name: "Megamacro+",
  4971. height: math.unit(2750000, "meters")
  4972. },
  4973. ]
  4974. ))
  4975. characterMakers.push(() => makeCharacter(
  4976. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4977. {
  4978. front: {
  4979. height: math.unit(6, "feet"),
  4980. weight: math.unit(160, "lbs"),
  4981. name: "Front",
  4982. image: {
  4983. source: "./media/characters/prince/front.svg",
  4984. extra: 3400 / 3000
  4985. }
  4986. },
  4987. jumping: {
  4988. height: math.unit(6, "feet"),
  4989. weight: math.unit(160, "lbs"),
  4990. name: "Jumping",
  4991. image: {
  4992. source: "./media/characters/prince/jump.svg",
  4993. extra: 2555 / 2134
  4994. }
  4995. },
  4996. },
  4997. [
  4998. {
  4999. name: "Normal",
  5000. height: math.unit(7.75, "feet"),
  5001. default: true
  5002. },
  5003. {
  5004. name: "Not cute",
  5005. height: math.unit(17, "feet")
  5006. },
  5007. {
  5008. name: "I said NOT",
  5009. height: math.unit(91, "feet")
  5010. },
  5011. {
  5012. name: "Please stop",
  5013. height: math.unit(560, "feet")
  5014. },
  5015. {
  5016. name: "What have you done",
  5017. height: math.unit(2200, "feet")
  5018. },
  5019. {
  5020. name: "Deer God",
  5021. height: math.unit(3.6, "miles")
  5022. },
  5023. ]
  5024. ))
  5025. characterMakers.push(() => makeCharacter(
  5026. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5027. {
  5028. standing: {
  5029. height: math.unit(6, "feet"),
  5030. weight: math.unit(300, "lbs"),
  5031. name: "Standing",
  5032. image: {
  5033. source: "./media/characters/psymon/standing.svg",
  5034. extra: 1888 / 1810,
  5035. bottom: 0.05
  5036. }
  5037. },
  5038. slithering: {
  5039. height: math.unit(6, "feet"),
  5040. weight: math.unit(300, "lbs"),
  5041. name: "Slithering",
  5042. image: {
  5043. source: "./media/characters/psymon/slithering.svg",
  5044. extra: 1330 / 1224
  5045. }
  5046. },
  5047. slitheringAlt: {
  5048. height: math.unit(6, "feet"),
  5049. weight: math.unit(300, "lbs"),
  5050. name: "Slithering (Alt)",
  5051. image: {
  5052. source: "./media/characters/psymon/slithering-alt.svg",
  5053. extra: 1330 / 1224
  5054. }
  5055. },
  5056. },
  5057. [
  5058. {
  5059. name: "Normal",
  5060. height: math.unit(11.25, "feet"),
  5061. default: true
  5062. },
  5063. {
  5064. name: "Large",
  5065. height: math.unit(27, "feet")
  5066. },
  5067. {
  5068. name: "Giant",
  5069. height: math.unit(87, "feet")
  5070. },
  5071. {
  5072. name: "Macro",
  5073. height: math.unit(365, "feet")
  5074. },
  5075. {
  5076. name: "Megamacro",
  5077. height: math.unit(3, "miles")
  5078. },
  5079. {
  5080. name: "World Serpent",
  5081. height: math.unit(8000, "miles")
  5082. },
  5083. ]
  5084. ))
  5085. characterMakers.push(() => makeCharacter(
  5086. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5087. {
  5088. front: {
  5089. height: math.unit(6, "feet"),
  5090. weight: math.unit(180, "lbs"),
  5091. name: "Front",
  5092. image: {
  5093. source: "./media/characters/daimos/front.svg",
  5094. extra: 4160 / 3897,
  5095. bottom: 0.021
  5096. }
  5097. }
  5098. },
  5099. [
  5100. {
  5101. name: "Normal",
  5102. height: math.unit(8, "feet"),
  5103. default: true
  5104. },
  5105. {
  5106. name: "Big Dog",
  5107. height: math.unit(22, "feet")
  5108. },
  5109. {
  5110. name: "Macro",
  5111. height: math.unit(127, "feet")
  5112. },
  5113. {
  5114. name: "Megamacro",
  5115. height: math.unit(3600, "feet")
  5116. },
  5117. ]
  5118. ))
  5119. characterMakers.push(() => makeCharacter(
  5120. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5121. {
  5122. side: {
  5123. height: math.unit(6, "feet"),
  5124. weight: math.unit(180, "lbs"),
  5125. name: "Side",
  5126. image: {
  5127. source: "./media/characters/blake/side.svg",
  5128. extra: 1212 / 1120,
  5129. bottom: 0.05
  5130. }
  5131. },
  5132. crouched: {
  5133. height: math.unit(6 * 0.57, "feet"),
  5134. weight: math.unit(180, "lbs"),
  5135. name: "Crouched",
  5136. image: {
  5137. source: "./media/characters/blake/crouched.svg",
  5138. extra: 840 / 587,
  5139. bottom: 0.04
  5140. }
  5141. },
  5142. bent: {
  5143. height: math.unit(6 * 0.75, "feet"),
  5144. weight: math.unit(180, "lbs"),
  5145. name: "Bent",
  5146. image: {
  5147. source: "./media/characters/blake/bent.svg",
  5148. extra: 592 / 544,
  5149. bottom: 0.035
  5150. }
  5151. },
  5152. },
  5153. [
  5154. {
  5155. name: "Normal",
  5156. height: math.unit(8 + 1 / 6, "feet"),
  5157. default: true
  5158. },
  5159. {
  5160. name: "Big Backside",
  5161. height: math.unit(37, "feet")
  5162. },
  5163. {
  5164. name: "Subway Shredder",
  5165. height: math.unit(72, "feet")
  5166. },
  5167. {
  5168. name: "City Carver",
  5169. height: math.unit(1675, "feet")
  5170. },
  5171. {
  5172. name: "Tectonic Tweaker",
  5173. height: math.unit(2300, "miles")
  5174. },
  5175. ]
  5176. ))
  5177. characterMakers.push(() => makeCharacter(
  5178. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5179. {
  5180. front: {
  5181. height: math.unit(6, "feet"),
  5182. weight: math.unit(180, "lbs"),
  5183. name: "Front",
  5184. image: {
  5185. source: "./media/characters/guisetto/front.svg",
  5186. extra: 856 / 817,
  5187. bottom: 0.06
  5188. }
  5189. },
  5190. airborne: {
  5191. height: math.unit(6, "feet"),
  5192. weight: math.unit(180, "lbs"),
  5193. name: "Airborne",
  5194. image: {
  5195. source: "./media/characters/guisetto/airborne.svg",
  5196. extra: 584 / 525
  5197. }
  5198. },
  5199. },
  5200. [
  5201. {
  5202. name: "Normal",
  5203. height: math.unit(10 + 11 / 12, "feet"),
  5204. default: true
  5205. },
  5206. {
  5207. name: "Large",
  5208. height: math.unit(35, "feet")
  5209. },
  5210. {
  5211. name: "Macro",
  5212. height: math.unit(475, "feet")
  5213. },
  5214. ]
  5215. ))
  5216. characterMakers.push(() => makeCharacter(
  5217. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5218. {
  5219. front: {
  5220. height: math.unit(6, "feet"),
  5221. weight: math.unit(180, "lbs"),
  5222. name: "Front",
  5223. image: {
  5224. source: "./media/characters/luxor/front.svg",
  5225. extra: 2940 / 2152
  5226. }
  5227. },
  5228. back: {
  5229. height: math.unit(6, "feet"),
  5230. weight: math.unit(180, "lbs"),
  5231. name: "Back",
  5232. image: {
  5233. source: "./media/characters/luxor/back.svg",
  5234. extra: 1083 / 960
  5235. }
  5236. },
  5237. },
  5238. [
  5239. {
  5240. name: "Normal",
  5241. height: math.unit(5 + 5 / 6, "feet"),
  5242. default: true
  5243. },
  5244. {
  5245. name: "Lamp",
  5246. height: math.unit(50, "feet")
  5247. },
  5248. {
  5249. name: "Lämp",
  5250. height: math.unit(300, "feet")
  5251. },
  5252. {
  5253. name: "The sun is a lamp",
  5254. height: math.unit(250000, "miles")
  5255. },
  5256. ]
  5257. ))
  5258. characterMakers.push(() => makeCharacter(
  5259. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5260. {
  5261. front: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(50, "lbs"),
  5264. name: "Front",
  5265. image: {
  5266. source: "./media/characters/huoyan/front.svg"
  5267. }
  5268. },
  5269. side: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(180, "lbs"),
  5272. name: "Side",
  5273. image: {
  5274. source: "./media/characters/huoyan/side.svg"
  5275. }
  5276. },
  5277. },
  5278. [
  5279. {
  5280. name: "Chef",
  5281. height: math.unit(9, "feet")
  5282. },
  5283. {
  5284. name: "Normal",
  5285. height: math.unit(65, "feet"),
  5286. default: true
  5287. },
  5288. {
  5289. name: "Macro",
  5290. height: math.unit(780, "feet")
  5291. },
  5292. {
  5293. name: "Flaming Mountain",
  5294. height: math.unit(4.8, "miles")
  5295. },
  5296. {
  5297. name: "Celestial",
  5298. height: math.unit(765000, "miles")
  5299. },
  5300. ]
  5301. ))
  5302. characterMakers.push(() => makeCharacter(
  5303. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5304. {
  5305. front: {
  5306. height: math.unit(5 + 3 / 4, "feet"),
  5307. weight: math.unit(120, "lbs"),
  5308. name: "Front",
  5309. image: {
  5310. source: "./media/characters/tails/front.svg"
  5311. }
  5312. }
  5313. },
  5314. [
  5315. {
  5316. name: "Normal",
  5317. height: math.unit(5 + 3 / 4, "feet"),
  5318. default: true
  5319. }
  5320. ]
  5321. ))
  5322. characterMakers.push(() => makeCharacter(
  5323. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5324. {
  5325. front: {
  5326. height: math.unit(4, "feet"),
  5327. weight: math.unit(50, "lbs"),
  5328. name: "Front",
  5329. image: {
  5330. source: "./media/characters/rainy/front.svg"
  5331. }
  5332. }
  5333. },
  5334. [
  5335. {
  5336. name: "Macro",
  5337. height: math.unit(800, "feet"),
  5338. default: true
  5339. }
  5340. ]
  5341. ))
  5342. characterMakers.push(() => makeCharacter(
  5343. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5344. {
  5345. front: {
  5346. height: math.unit(6, "feet"),
  5347. weight: math.unit(150, "lbs"),
  5348. name: "Front",
  5349. image: {
  5350. source: "./media/characters/rainier/front.svg"
  5351. }
  5352. }
  5353. },
  5354. [
  5355. {
  5356. name: "Micro",
  5357. height: math.unit(2, "mm"),
  5358. default: true
  5359. }
  5360. ]
  5361. ))
  5362. characterMakers.push(() => makeCharacter(
  5363. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5364. {
  5365. front: {
  5366. height: math.unit(6, "feet"),
  5367. weight: math.unit(180, "lbs"),
  5368. name: "Front",
  5369. image: {
  5370. source: "./media/characters/andy/front.svg"
  5371. }
  5372. }
  5373. },
  5374. [
  5375. {
  5376. name: "Normal",
  5377. height: math.unit(8, "feet"),
  5378. default: true
  5379. },
  5380. {
  5381. name: "Macro",
  5382. height: math.unit(1000, "feet")
  5383. },
  5384. {
  5385. name: "Megamacro",
  5386. height: math.unit(5, "miles")
  5387. },
  5388. {
  5389. name: "Gigamacro",
  5390. height: math.unit(5000, "miles")
  5391. },
  5392. ]
  5393. ))
  5394. characterMakers.push(() => makeCharacter(
  5395. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5396. {
  5397. front: {
  5398. height: math.unit(6, "feet"),
  5399. weight: math.unit(210, "lbs"),
  5400. name: "Front",
  5401. image: {
  5402. source: "./media/characters/cimmaron/front-sfw.svg",
  5403. extra: 701 / 676,
  5404. bottom: 0.046
  5405. }
  5406. },
  5407. back: {
  5408. height: math.unit(6, "feet"),
  5409. weight: math.unit(210, "lbs"),
  5410. name: "Back",
  5411. image: {
  5412. source: "./media/characters/cimmaron/back-sfw.svg",
  5413. extra: 701 / 676,
  5414. bottom: 0.046
  5415. }
  5416. },
  5417. frontNsfw: {
  5418. height: math.unit(6, "feet"),
  5419. weight: math.unit(210, "lbs"),
  5420. name: "Front (NSFW)",
  5421. image: {
  5422. source: "./media/characters/cimmaron/front-nsfw.svg",
  5423. extra: 701 / 676,
  5424. bottom: 0.046
  5425. }
  5426. },
  5427. backNsfw: {
  5428. height: math.unit(6, "feet"),
  5429. weight: math.unit(210, "lbs"),
  5430. name: "Back (NSFW)",
  5431. image: {
  5432. source: "./media/characters/cimmaron/back-nsfw.svg",
  5433. extra: 701 / 676,
  5434. bottom: 0.046
  5435. }
  5436. },
  5437. dick: {
  5438. height: math.unit(1.714, "feet"),
  5439. name: "Dick",
  5440. image: {
  5441. source: "./media/characters/cimmaron/dick.svg"
  5442. }
  5443. },
  5444. },
  5445. [
  5446. {
  5447. name: "Normal",
  5448. height: math.unit(6, "feet"),
  5449. default: true
  5450. },
  5451. {
  5452. name: "Macro Mayor",
  5453. height: math.unit(350, "meters")
  5454. },
  5455. ]
  5456. ))
  5457. characterMakers.push(() => makeCharacter(
  5458. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5459. {
  5460. front: {
  5461. height: math.unit(6, "feet"),
  5462. weight: math.unit(200, "lbs"),
  5463. name: "Front",
  5464. image: {
  5465. source: "./media/characters/akari/front.svg",
  5466. extra: 962 / 901,
  5467. bottom: 0.04
  5468. }
  5469. }
  5470. },
  5471. [
  5472. {
  5473. name: "Micro",
  5474. height: math.unit(5, "inches"),
  5475. default: true
  5476. },
  5477. {
  5478. name: "Normal",
  5479. height: math.unit(7, "feet")
  5480. },
  5481. ]
  5482. ))
  5483. characterMakers.push(() => makeCharacter(
  5484. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5485. {
  5486. front: {
  5487. height: math.unit(6, "feet"),
  5488. weight: math.unit(140, "lbs"),
  5489. name: "Front",
  5490. image: {
  5491. source: "./media/characters/cynosura/front.svg",
  5492. extra: 896 / 847
  5493. }
  5494. },
  5495. back: {
  5496. height: math.unit(6, "feet"),
  5497. weight: math.unit(140, "lbs"),
  5498. name: "Back",
  5499. image: {
  5500. source: "./media/characters/cynosura/back.svg",
  5501. extra: 1365 / 1250
  5502. }
  5503. },
  5504. },
  5505. [
  5506. {
  5507. name: "Micro",
  5508. height: math.unit(4, "inches")
  5509. },
  5510. {
  5511. name: "Normal",
  5512. height: math.unit(5.75, "feet"),
  5513. default: true
  5514. },
  5515. {
  5516. name: "Tall",
  5517. height: math.unit(10, "feet")
  5518. },
  5519. {
  5520. name: "Big",
  5521. height: math.unit(20, "feet")
  5522. },
  5523. {
  5524. name: "Macro",
  5525. height: math.unit(50, "feet")
  5526. },
  5527. ]
  5528. ))
  5529. characterMakers.push(() => makeCharacter(
  5530. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5531. {
  5532. front: {
  5533. height: math.unit(6, "feet"),
  5534. weight: math.unit(170, "lbs"),
  5535. name: "Front",
  5536. image: {
  5537. source: "./media/characters/gin/front.svg",
  5538. extra: 1.053,
  5539. bottom: 0.025
  5540. }
  5541. },
  5542. foot: {
  5543. height: math.unit(6 / 4.25, "feet"),
  5544. name: "Foot",
  5545. image: {
  5546. source: "./media/characters/gin/foot.svg"
  5547. }
  5548. },
  5549. sole: {
  5550. height: math.unit(6 / 4.40, "feet"),
  5551. name: "Sole",
  5552. image: {
  5553. source: "./media/characters/gin/sole.svg"
  5554. }
  5555. },
  5556. },
  5557. [
  5558. {
  5559. name: "Normal",
  5560. height: math.unit(13 + 2 / 12, "feet")
  5561. },
  5562. {
  5563. name: "Macro",
  5564. height: math.unit(1500, "feet")
  5565. },
  5566. {
  5567. name: "Megamacro",
  5568. height: math.unit(200, "miles"),
  5569. default: true
  5570. },
  5571. {
  5572. name: "Gigamacro",
  5573. height: math.unit(500, "megameters")
  5574. },
  5575. {
  5576. name: "Teramacro",
  5577. height: math.unit(15, "lightyears")
  5578. }
  5579. ]
  5580. ))
  5581. characterMakers.push(() => makeCharacter(
  5582. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5583. {
  5584. front: {
  5585. height: math.unit(6 + 1 / 6, "feet"),
  5586. weight: math.unit(178, "lbs"),
  5587. name: "Front",
  5588. image: {
  5589. source: "./media/characters/guy/front.svg"
  5590. }
  5591. }
  5592. },
  5593. [
  5594. {
  5595. name: "Normal",
  5596. height: math.unit(6 + 1 / 6, "feet"),
  5597. default: true
  5598. },
  5599. {
  5600. name: "Large",
  5601. height: math.unit(25 + 7 / 12, "feet")
  5602. },
  5603. {
  5604. name: "Macro",
  5605. height: math.unit(60 + 9 / 12, "feet")
  5606. },
  5607. {
  5608. name: "Macro+",
  5609. height: math.unit(246, "feet")
  5610. },
  5611. {
  5612. name: "Macro++",
  5613. height: math.unit(878, "feet")
  5614. }
  5615. ]
  5616. ))
  5617. characterMakers.push(() => makeCharacter(
  5618. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5619. {
  5620. front: {
  5621. height: math.unit(9, "feet"),
  5622. weight: math.unit(800, "lbs"),
  5623. name: "Front",
  5624. image: {
  5625. source: "./media/characters/tiberius/front.svg",
  5626. extra: 2295 / 2071
  5627. }
  5628. },
  5629. back: {
  5630. height: math.unit(9, "feet"),
  5631. weight: math.unit(800, "lbs"),
  5632. name: "Back",
  5633. image: {
  5634. source: "./media/characters/tiberius/back.svg",
  5635. extra: 2373 / 2160
  5636. }
  5637. },
  5638. },
  5639. [
  5640. {
  5641. name: "Normal",
  5642. height: math.unit(9, "feet"),
  5643. default: true
  5644. }
  5645. ]
  5646. ))
  5647. characterMakers.push(() => makeCharacter(
  5648. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5649. {
  5650. front: {
  5651. height: math.unit(6, "feet"),
  5652. weight: math.unit(600, "lbs"),
  5653. name: "Front",
  5654. image: {
  5655. source: "./media/characters/surgo/front.svg",
  5656. extra: 3591 / 2227
  5657. }
  5658. },
  5659. back: {
  5660. height: math.unit(6, "feet"),
  5661. weight: math.unit(600, "lbs"),
  5662. name: "Back",
  5663. image: {
  5664. source: "./media/characters/surgo/back.svg",
  5665. extra: 3557 / 2228
  5666. }
  5667. },
  5668. laying: {
  5669. height: math.unit(6 * 0.85, "feet"),
  5670. weight: math.unit(600, "lbs"),
  5671. name: "Laying",
  5672. image: {
  5673. source: "./media/characters/surgo/laying.svg"
  5674. }
  5675. },
  5676. },
  5677. [
  5678. {
  5679. name: "Normal",
  5680. height: math.unit(6, "feet"),
  5681. default: true
  5682. }
  5683. ]
  5684. ))
  5685. characterMakers.push(() => makeCharacter(
  5686. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5687. {
  5688. side: {
  5689. height: math.unit(6, "feet"),
  5690. weight: math.unit(150, "lbs"),
  5691. name: "Side",
  5692. image: {
  5693. source: "./media/characters/cibus/side.svg",
  5694. extra: 800 / 400
  5695. }
  5696. },
  5697. },
  5698. [
  5699. {
  5700. name: "Normal",
  5701. height: math.unit(6, "feet"),
  5702. default: true
  5703. }
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5708. {
  5709. front: {
  5710. height: math.unit(6, "feet"),
  5711. weight: math.unit(240, "lbs"),
  5712. name: "Front",
  5713. image: {
  5714. source: "./media/characters/nibbles/front.svg"
  5715. }
  5716. },
  5717. side: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(240, "lbs"),
  5720. name: "Side",
  5721. image: {
  5722. source: "./media/characters/nibbles/side.svg"
  5723. }
  5724. },
  5725. },
  5726. [
  5727. {
  5728. name: "Normal",
  5729. height: math.unit(9, "feet"),
  5730. default: true
  5731. }
  5732. ]
  5733. ))
  5734. characterMakers.push(() => makeCharacter(
  5735. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5736. {
  5737. side: {
  5738. height: math.unit(5 + 1 / 6, "feet"),
  5739. weight: math.unit(130, "lbs"),
  5740. name: "Side",
  5741. image: {
  5742. source: "./media/characters/rikky/side.svg",
  5743. extra: 851 / 801
  5744. }
  5745. },
  5746. },
  5747. [
  5748. {
  5749. name: "Normal",
  5750. height: math.unit(5 + 1 / 6, "feet")
  5751. },
  5752. {
  5753. name: "Macro",
  5754. height: math.unit(152, "feet"),
  5755. default: true
  5756. },
  5757. {
  5758. name: "Megamacro",
  5759. height: math.unit(7, "miles")
  5760. }
  5761. ]
  5762. ))
  5763. characterMakers.push(() => makeCharacter(
  5764. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5765. {
  5766. side: {
  5767. height: math.unit(370, "cm"),
  5768. weight: math.unit(350, "lbs"),
  5769. name: "Side",
  5770. image: {
  5771. source: "./media/characters/malfressa/side.svg"
  5772. }
  5773. },
  5774. walking: {
  5775. height: math.unit(370, "cm"),
  5776. weight: math.unit(350, "lbs"),
  5777. name: "Walking",
  5778. image: {
  5779. source: "./media/characters/malfressa/walking.svg"
  5780. }
  5781. },
  5782. feral: {
  5783. height: math.unit(2500, "cm"),
  5784. weight: math.unit(100000, "lbs"),
  5785. name: "Feral",
  5786. image: {
  5787. source: "./media/characters/malfressa/feral.svg",
  5788. extra: 2108 / 837,
  5789. bottom: 0.02
  5790. }
  5791. },
  5792. },
  5793. [
  5794. {
  5795. name: "Normal",
  5796. height: math.unit(370, "cm")
  5797. },
  5798. {
  5799. name: "Macro",
  5800. height: math.unit(300, "meters"),
  5801. default: true
  5802. }
  5803. ]
  5804. ))
  5805. characterMakers.push(() => makeCharacter(
  5806. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5807. {
  5808. front: {
  5809. height: math.unit(6, "feet"),
  5810. weight: math.unit(60, "kg"),
  5811. name: "Front",
  5812. image: {
  5813. source: "./media/characters/jaro/front.svg"
  5814. }
  5815. },
  5816. back: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(60, "kg"),
  5819. name: "Back",
  5820. image: {
  5821. source: "./media/characters/jaro/back.svg"
  5822. }
  5823. },
  5824. },
  5825. [
  5826. {
  5827. name: "Micro",
  5828. height: math.unit(7, "inches")
  5829. },
  5830. {
  5831. name: "Normal",
  5832. height: math.unit(5.5, "feet"),
  5833. default: true
  5834. },
  5835. {
  5836. name: "Minimacro",
  5837. height: math.unit(20, "feet")
  5838. },
  5839. {
  5840. name: "Macro",
  5841. height: math.unit(200, "meters")
  5842. }
  5843. ]
  5844. ))
  5845. characterMakers.push(() => makeCharacter(
  5846. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5847. {
  5848. front: {
  5849. height: math.unit(6, "feet"),
  5850. weight: math.unit(195, "lb"),
  5851. name: "Front",
  5852. image: {
  5853. source: "./media/characters/rogue/front.svg"
  5854. }
  5855. },
  5856. },
  5857. [
  5858. {
  5859. name: "Macro",
  5860. height: math.unit(90, "feet"),
  5861. default: true
  5862. },
  5863. ]
  5864. ))
  5865. characterMakers.push(() => makeCharacter(
  5866. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5867. {
  5868. front: {
  5869. height: math.unit(5 + 8 / 12, "feet"),
  5870. weight: math.unit(140, "lb"),
  5871. name: "Front",
  5872. image: {
  5873. source: "./media/characters/piper/front.svg",
  5874. extra: 3948/3655,
  5875. bottom: 0/3948
  5876. }
  5877. },
  5878. },
  5879. [
  5880. {
  5881. name: "Micro",
  5882. height: math.unit(2, "inches")
  5883. },
  5884. {
  5885. name: "Normal",
  5886. height: math.unit(5 + 8 / 12, "feet")
  5887. },
  5888. {
  5889. name: "Macro",
  5890. height: math.unit(250, "feet"),
  5891. default: true
  5892. },
  5893. {
  5894. name: "Megamacro",
  5895. height: math.unit(7, "miles")
  5896. },
  5897. ]
  5898. ))
  5899. characterMakers.push(() => makeCharacter(
  5900. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5901. {
  5902. front: {
  5903. height: math.unit(6, "feet"),
  5904. weight: math.unit(220, "lb"),
  5905. name: "Front",
  5906. image: {
  5907. source: "./media/characters/gemini/front.svg"
  5908. }
  5909. },
  5910. back: {
  5911. height: math.unit(6, "feet"),
  5912. weight: math.unit(220, "lb"),
  5913. name: "Back",
  5914. image: {
  5915. source: "./media/characters/gemini/back.svg"
  5916. }
  5917. },
  5918. kneeling: {
  5919. height: math.unit(6 / 1.5, "feet"),
  5920. weight: math.unit(220, "lb"),
  5921. name: "Kneeling",
  5922. image: {
  5923. source: "./media/characters/gemini/kneeling.svg",
  5924. bottom: 0.02
  5925. }
  5926. },
  5927. },
  5928. [
  5929. {
  5930. name: "Macro",
  5931. height: math.unit(300, "meters"),
  5932. default: true
  5933. },
  5934. {
  5935. name: "Megamacro",
  5936. height: math.unit(6900, "meters")
  5937. },
  5938. ]
  5939. ))
  5940. characterMakers.push(() => makeCharacter(
  5941. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5942. {
  5943. anthro: {
  5944. height: math.unit(2.35, "meters"),
  5945. weight: math.unit(73, "kg"),
  5946. name: "Anthro",
  5947. image: {
  5948. source: "./media/characters/alicia/anthro.svg",
  5949. extra: 2571 / 2385,
  5950. bottom: 75 / 2648
  5951. }
  5952. },
  5953. paw: {
  5954. height: math.unit(1.32, "feet"),
  5955. name: "Paw",
  5956. image: {
  5957. source: "./media/characters/alicia/paw.svg"
  5958. }
  5959. },
  5960. feral: {
  5961. height: math.unit(1.69, "meters"),
  5962. weight: math.unit(73, "kg"),
  5963. name: "Feral",
  5964. image: {
  5965. source: "./media/characters/alicia/feral.svg",
  5966. extra: 2123 / 1715,
  5967. bottom: 222 / 2349
  5968. }
  5969. },
  5970. },
  5971. [
  5972. {
  5973. name: "Normal",
  5974. height: math.unit(2.35, "meters")
  5975. },
  5976. {
  5977. name: "Macro",
  5978. height: math.unit(60, "meters"),
  5979. default: true
  5980. },
  5981. {
  5982. name: "Megamacro",
  5983. height: math.unit(10000, "kilometers")
  5984. },
  5985. ]
  5986. ))
  5987. characterMakers.push(() => makeCharacter(
  5988. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5989. {
  5990. front: {
  5991. height: math.unit(7, "feet"),
  5992. weight: math.unit(250, "lbs"),
  5993. name: "Front",
  5994. image: {
  5995. source: "./media/characters/archy/front.svg"
  5996. }
  5997. }
  5998. },
  5999. [
  6000. {
  6001. name: "Micro",
  6002. height: math.unit(1, "inch")
  6003. },
  6004. {
  6005. name: "Shorty",
  6006. height: math.unit(5, "feet")
  6007. },
  6008. {
  6009. name: "Normal",
  6010. height: math.unit(7, "feet")
  6011. },
  6012. {
  6013. name: "Macro",
  6014. height: math.unit(600, "meters"),
  6015. default: true
  6016. },
  6017. {
  6018. name: "Megamacro",
  6019. height: math.unit(1, "mile")
  6020. },
  6021. ]
  6022. ))
  6023. characterMakers.push(() => makeCharacter(
  6024. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6025. {
  6026. front: {
  6027. height: math.unit(1.65, "meters"),
  6028. weight: math.unit(74, "kg"),
  6029. name: "Front",
  6030. image: {
  6031. source: "./media/characters/berri/front.svg",
  6032. extra: 857 / 837,
  6033. bottom: 18 / 877
  6034. }
  6035. },
  6036. bum: {
  6037. height: math.unit(1.46, "feet"),
  6038. name: "Bum",
  6039. image: {
  6040. source: "./media/characters/berri/bum.svg"
  6041. }
  6042. },
  6043. mouth: {
  6044. height: math.unit(0.44, "feet"),
  6045. name: "Mouth",
  6046. image: {
  6047. source: "./media/characters/berri/mouth.svg"
  6048. }
  6049. },
  6050. paw: {
  6051. height: math.unit(0.826, "feet"),
  6052. name: "Paw",
  6053. image: {
  6054. source: "./media/characters/berri/paw.svg"
  6055. }
  6056. },
  6057. },
  6058. [
  6059. {
  6060. name: "Normal",
  6061. height: math.unit(1.65, "meters")
  6062. },
  6063. {
  6064. name: "Macro",
  6065. height: math.unit(60, "m"),
  6066. default: true
  6067. },
  6068. {
  6069. name: "Megamacro",
  6070. height: math.unit(9.213, "km")
  6071. },
  6072. {
  6073. name: "Planet Eater",
  6074. height: math.unit(489, "megameters")
  6075. },
  6076. {
  6077. name: "Teramacro",
  6078. height: math.unit(2471635000000, "meters")
  6079. },
  6080. {
  6081. name: "Examacro",
  6082. height: math.unit(8.0624e+26, "meters")
  6083. }
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6088. {
  6089. front: {
  6090. height: math.unit(1.72, "meters"),
  6091. weight: math.unit(68, "kg"),
  6092. name: "Front",
  6093. image: {
  6094. source: "./media/characters/lexi/front.svg"
  6095. }
  6096. }
  6097. },
  6098. [
  6099. {
  6100. name: "Very Smol",
  6101. height: math.unit(10, "mm")
  6102. },
  6103. {
  6104. name: "Micro",
  6105. height: math.unit(6.8, "cm"),
  6106. default: true
  6107. },
  6108. {
  6109. name: "Normal",
  6110. height: math.unit(1.72, "m")
  6111. }
  6112. ]
  6113. ))
  6114. characterMakers.push(() => makeCharacter(
  6115. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6116. {
  6117. front: {
  6118. height: math.unit(1.69, "meters"),
  6119. weight: math.unit(68, "kg"),
  6120. name: "Front",
  6121. image: {
  6122. source: "./media/characters/martin/front.svg",
  6123. extra: 596 / 581
  6124. }
  6125. }
  6126. },
  6127. [
  6128. {
  6129. name: "Micro",
  6130. height: math.unit(6.85, "cm"),
  6131. default: true
  6132. },
  6133. {
  6134. name: "Normal",
  6135. height: math.unit(1.69, "m")
  6136. }
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6141. {
  6142. front: {
  6143. height: math.unit(1.69, "meters"),
  6144. weight: math.unit(68, "kg"),
  6145. name: "Front",
  6146. image: {
  6147. source: "./media/characters/juno/front.svg"
  6148. }
  6149. }
  6150. },
  6151. [
  6152. {
  6153. name: "Micro",
  6154. height: math.unit(7, "cm")
  6155. },
  6156. {
  6157. name: "Normal",
  6158. height: math.unit(1.89, "m")
  6159. },
  6160. {
  6161. name: "Macro",
  6162. height: math.unit(353, "meters"),
  6163. default: true
  6164. }
  6165. ]
  6166. ))
  6167. characterMakers.push(() => makeCharacter(
  6168. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6169. {
  6170. front: {
  6171. height: math.unit(1.93, "meters"),
  6172. weight: math.unit(83, "kg"),
  6173. name: "Front",
  6174. image: {
  6175. source: "./media/characters/samantha/front.svg"
  6176. }
  6177. },
  6178. frontClothed: {
  6179. height: math.unit(1.93, "meters"),
  6180. weight: math.unit(83, "kg"),
  6181. name: "Front (Clothed)",
  6182. image: {
  6183. source: "./media/characters/samantha/front-clothed.svg"
  6184. }
  6185. },
  6186. back: {
  6187. height: math.unit(1.93, "meters"),
  6188. weight: math.unit(83, "kg"),
  6189. name: "Back",
  6190. image: {
  6191. source: "./media/characters/samantha/back.svg"
  6192. }
  6193. },
  6194. },
  6195. [
  6196. {
  6197. name: "Normal",
  6198. height: math.unit(1.93, "m")
  6199. },
  6200. {
  6201. name: "Macro",
  6202. height: math.unit(74, "meters"),
  6203. default: true
  6204. },
  6205. {
  6206. name: "Macro+",
  6207. height: math.unit(223, "meters"),
  6208. },
  6209. {
  6210. name: "Megamacro",
  6211. height: math.unit(8381, "meters"),
  6212. },
  6213. {
  6214. name: "Megamacro+",
  6215. height: math.unit(12000, "kilometers")
  6216. },
  6217. ]
  6218. ))
  6219. characterMakers.push(() => makeCharacter(
  6220. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6221. {
  6222. front: {
  6223. height: math.unit(1.92, "meters"),
  6224. weight: math.unit(80, "kg"),
  6225. name: "Front",
  6226. image: {
  6227. source: "./media/characters/dr-clay/front.svg"
  6228. }
  6229. },
  6230. frontClothed: {
  6231. height: math.unit(1.92, "meters"),
  6232. weight: math.unit(80, "kg"),
  6233. name: "Front (Clothed)",
  6234. image: {
  6235. source: "./media/characters/dr-clay/front-clothed.svg"
  6236. }
  6237. }
  6238. },
  6239. [
  6240. {
  6241. name: "Normal",
  6242. height: math.unit(1.92, "m")
  6243. },
  6244. {
  6245. name: "Macro",
  6246. height: math.unit(214, "meters"),
  6247. default: true
  6248. },
  6249. {
  6250. name: "Macro+",
  6251. height: math.unit(12.237, "meters"),
  6252. },
  6253. {
  6254. name: "Megamacro",
  6255. height: math.unit(557, "megameters"),
  6256. },
  6257. {
  6258. name: "Unimaginable",
  6259. height: math.unit(120e9, "lightyears")
  6260. },
  6261. ]
  6262. ))
  6263. characterMakers.push(() => makeCharacter(
  6264. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6265. {
  6266. front: {
  6267. height: math.unit(2, "meters"),
  6268. weight: math.unit(80, "kg"),
  6269. name: "Front",
  6270. image: {
  6271. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6272. }
  6273. }
  6274. },
  6275. [
  6276. {
  6277. name: "Teramacro",
  6278. height: math.unit(500000, "lightyears"),
  6279. default: true
  6280. },
  6281. ]
  6282. ))
  6283. characterMakers.push(() => makeCharacter(
  6284. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6285. {
  6286. front: {
  6287. height: math.unit(2, "meters"),
  6288. weight: math.unit(150, "kg"),
  6289. name: "Front",
  6290. image: {
  6291. source: "./media/characters/vemus/front.svg",
  6292. extra: 2384 / 2084,
  6293. bottom: 0.0123
  6294. }
  6295. }
  6296. },
  6297. [
  6298. {
  6299. name: "Normal",
  6300. height: math.unit(3.75, "meters"),
  6301. default: true
  6302. },
  6303. {
  6304. name: "Big",
  6305. height: math.unit(8, "meters")
  6306. },
  6307. {
  6308. name: "Macro",
  6309. height: math.unit(100, "meters")
  6310. },
  6311. {
  6312. name: "Macro+",
  6313. height: math.unit(1500, "meters")
  6314. },
  6315. {
  6316. name: "Stellar",
  6317. height: math.unit(14e8, "meters")
  6318. },
  6319. ]
  6320. ))
  6321. characterMakers.push(() => makeCharacter(
  6322. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6323. {
  6324. front: {
  6325. height: math.unit(2, "meters"),
  6326. weight: math.unit(70, "kg"),
  6327. name: "Front",
  6328. image: {
  6329. source: "./media/characters/beherit/front.svg",
  6330. extra: 1408 / 1242
  6331. }
  6332. }
  6333. },
  6334. [
  6335. {
  6336. name: "Normal",
  6337. height: math.unit(6, "feet")
  6338. },
  6339. {
  6340. name: "Lorg",
  6341. height: math.unit(25, "feet"),
  6342. default: true
  6343. },
  6344. {
  6345. name: "Lorger",
  6346. height: math.unit(75, "feet")
  6347. },
  6348. {
  6349. name: "Macro",
  6350. height: math.unit(200, "meters")
  6351. },
  6352. ]
  6353. ))
  6354. characterMakers.push(() => makeCharacter(
  6355. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6356. {
  6357. front: {
  6358. height: math.unit(2, "meters"),
  6359. weight: math.unit(150, "kg"),
  6360. name: "Front",
  6361. image: {
  6362. source: "./media/characters/everett/front.svg",
  6363. extra: 2038 / 1737,
  6364. bottom: 0.03
  6365. }
  6366. },
  6367. paw: {
  6368. height: math.unit(2 / 3.6, "meters"),
  6369. name: "Paw",
  6370. image: {
  6371. source: "./media/characters/everett/paw.svg"
  6372. }
  6373. },
  6374. },
  6375. [
  6376. {
  6377. name: "Normal",
  6378. height: math.unit(15, "feet"),
  6379. default: true
  6380. },
  6381. {
  6382. name: "Lorg",
  6383. height: math.unit(70, "feet"),
  6384. default: true
  6385. },
  6386. {
  6387. name: "Lorger",
  6388. height: math.unit(250, "feet")
  6389. },
  6390. {
  6391. name: "Macro",
  6392. height: math.unit(500, "meters")
  6393. },
  6394. ]
  6395. ))
  6396. characterMakers.push(() => makeCharacter(
  6397. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6398. {
  6399. front: {
  6400. height: math.unit(2, "meters"),
  6401. weight: math.unit(86, "kg"),
  6402. name: "Front",
  6403. image: {
  6404. source: "./media/characters/rose/front.svg",
  6405. extra: 350/335,
  6406. bottom: 10/360
  6407. }
  6408. },
  6409. frontAlt: {
  6410. height: math.unit(1.6, "meters"),
  6411. weight: math.unit(86, "kg"),
  6412. name: "Front (Alt)",
  6413. image: {
  6414. source: "./media/characters/rose/front-alt.svg",
  6415. extra: 299/283,
  6416. bottom: 3/302
  6417. }
  6418. },
  6419. plush: {
  6420. height: math.unit(2, "meters"),
  6421. weight: math.unit(86/3, "kg"),
  6422. name: "Plush",
  6423. image: {
  6424. source: "./media/characters/rose/plush.svg",
  6425. extra: 361/337,
  6426. bottom: 11/372
  6427. }
  6428. },
  6429. },
  6430. [
  6431. {
  6432. name: "Mini-Micro",
  6433. height: math.unit(1, "cm")
  6434. },
  6435. {
  6436. name: "Micro",
  6437. height: math.unit(3.5, "inches"),
  6438. default: true
  6439. },
  6440. {
  6441. name: "Normal",
  6442. height: math.unit(6 + 1 / 6, "feet")
  6443. },
  6444. {
  6445. name: "Mini-Macro",
  6446. height: math.unit(9 + 10 / 12, "feet")
  6447. },
  6448. ]
  6449. ))
  6450. characterMakers.push(() => makeCharacter(
  6451. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6452. {
  6453. front: {
  6454. height: math.unit(2, "meters"),
  6455. weight: math.unit(350, "lbs"),
  6456. name: "Front",
  6457. image: {
  6458. source: "./media/characters/regal/front.svg"
  6459. }
  6460. },
  6461. back: {
  6462. height: math.unit(2, "meters"),
  6463. weight: math.unit(350, "lbs"),
  6464. name: "Back",
  6465. image: {
  6466. source: "./media/characters/regal/back.svg"
  6467. }
  6468. },
  6469. },
  6470. [
  6471. {
  6472. name: "Macro",
  6473. height: math.unit(350, "feet"),
  6474. default: true
  6475. }
  6476. ]
  6477. ))
  6478. characterMakers.push(() => makeCharacter(
  6479. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6480. {
  6481. front: {
  6482. height: math.unit(4 + 11 / 12, "feet"),
  6483. weight: math.unit(100, "lbs"),
  6484. name: "Front",
  6485. image: {
  6486. source: "./media/characters/opal/front.svg"
  6487. }
  6488. },
  6489. frontAlt: {
  6490. height: math.unit(4 + 11 / 12, "feet"),
  6491. weight: math.unit(100, "lbs"),
  6492. name: "Front (Alt)",
  6493. image: {
  6494. source: "./media/characters/opal/front-alt.svg"
  6495. }
  6496. },
  6497. },
  6498. [
  6499. {
  6500. name: "Small",
  6501. height: math.unit(4 + 11 / 12, "feet")
  6502. },
  6503. {
  6504. name: "Normal",
  6505. height: math.unit(20, "feet"),
  6506. default: true
  6507. },
  6508. {
  6509. name: "Macro",
  6510. height: math.unit(120, "feet")
  6511. },
  6512. {
  6513. name: "Megamacro",
  6514. height: math.unit(80, "miles")
  6515. },
  6516. {
  6517. name: "True Size",
  6518. height: math.unit(100000, "lightyears")
  6519. },
  6520. ]
  6521. ))
  6522. characterMakers.push(() => makeCharacter(
  6523. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6524. {
  6525. front: {
  6526. height: math.unit(6, "feet"),
  6527. weight: math.unit(200, "lbs"),
  6528. name: "Front",
  6529. image: {
  6530. source: "./media/characters/vector-wuff/front.svg"
  6531. }
  6532. }
  6533. },
  6534. [
  6535. {
  6536. name: "Normal",
  6537. height: math.unit(2.8, "meters")
  6538. },
  6539. {
  6540. name: "Macro",
  6541. height: math.unit(450, "meters"),
  6542. default: true
  6543. },
  6544. {
  6545. name: "Megamacro",
  6546. height: math.unit(15, "kilometers")
  6547. }
  6548. ]
  6549. ))
  6550. characterMakers.push(() => makeCharacter(
  6551. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6552. {
  6553. front: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(256, "lbs"),
  6556. name: "Front",
  6557. image: {
  6558. source: "./media/characters/dannik/front.svg"
  6559. }
  6560. }
  6561. },
  6562. [
  6563. {
  6564. name: "Macro",
  6565. height: math.unit(69.57, "meters"),
  6566. default: true
  6567. },
  6568. ]
  6569. ))
  6570. characterMakers.push(() => makeCharacter(
  6571. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6572. {
  6573. front: {
  6574. height: math.unit(6, "feet"),
  6575. weight: math.unit(120, "lbs"),
  6576. name: "Front",
  6577. image: {
  6578. source: "./media/characters/azura-saharah/front.svg"
  6579. }
  6580. },
  6581. back: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(120, "lbs"),
  6584. name: "Back",
  6585. image: {
  6586. source: "./media/characters/azura-saharah/back.svg"
  6587. }
  6588. },
  6589. },
  6590. [
  6591. {
  6592. name: "Macro",
  6593. height: math.unit(100, "feet"),
  6594. default: true
  6595. },
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6600. {
  6601. side: {
  6602. height: math.unit(5 + 4 / 12, "feet"),
  6603. weight: math.unit(163, "lbs"),
  6604. name: "Side",
  6605. image: {
  6606. source: "./media/characters/kennedy/side.svg"
  6607. }
  6608. }
  6609. },
  6610. [
  6611. {
  6612. name: "Standard Doggo",
  6613. height: math.unit(5 + 4 / 12, "feet")
  6614. },
  6615. {
  6616. name: "Big Doggo",
  6617. height: math.unit(25 + 3 / 12, "feet"),
  6618. default: true
  6619. },
  6620. ]
  6621. ))
  6622. characterMakers.push(() => makeCharacter(
  6623. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6624. {
  6625. front: {
  6626. height: math.unit(6, "feet"),
  6627. weight: math.unit(90, "lbs"),
  6628. name: "Front",
  6629. image: {
  6630. source: "./media/characters/odi-lunar/front.svg"
  6631. }
  6632. }
  6633. },
  6634. [
  6635. {
  6636. name: "Micro",
  6637. height: math.unit(3, "inches"),
  6638. default: true
  6639. },
  6640. {
  6641. name: "Normal",
  6642. height: math.unit(5.5, "feet")
  6643. }
  6644. ]
  6645. ))
  6646. characterMakers.push(() => makeCharacter(
  6647. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6648. {
  6649. back: {
  6650. height: math.unit(6, "feet"),
  6651. weight: math.unit(220, "lbs"),
  6652. name: "Back",
  6653. image: {
  6654. source: "./media/characters/mandake/back.svg"
  6655. }
  6656. }
  6657. },
  6658. [
  6659. {
  6660. name: "Normal",
  6661. height: math.unit(7, "feet"),
  6662. default: true
  6663. },
  6664. {
  6665. name: "Macro",
  6666. height: math.unit(78, "feet")
  6667. },
  6668. {
  6669. name: "Macro+",
  6670. height: math.unit(300, "meters")
  6671. },
  6672. {
  6673. name: "Macro++",
  6674. height: math.unit(2400, "feet")
  6675. },
  6676. {
  6677. name: "Megamacro",
  6678. height: math.unit(5167, "meters")
  6679. },
  6680. {
  6681. name: "Gigamacro",
  6682. height: math.unit(41769, "miles")
  6683. },
  6684. ]
  6685. ))
  6686. characterMakers.push(() => makeCharacter(
  6687. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6688. {
  6689. front: {
  6690. height: math.unit(6, "feet"),
  6691. weight: math.unit(120, "lbs"),
  6692. name: "Front",
  6693. image: {
  6694. source: "./media/characters/yozey/front.svg"
  6695. }
  6696. },
  6697. frontAlt: {
  6698. height: math.unit(6, "feet"),
  6699. weight: math.unit(120, "lbs"),
  6700. name: "Front (Alt)",
  6701. image: {
  6702. source: "./media/characters/yozey/front-alt.svg"
  6703. }
  6704. },
  6705. side: {
  6706. height: math.unit(6, "feet"),
  6707. weight: math.unit(120, "lbs"),
  6708. name: "Side",
  6709. image: {
  6710. source: "./media/characters/yozey/side.svg"
  6711. }
  6712. },
  6713. },
  6714. [
  6715. {
  6716. name: "Micro",
  6717. height: math.unit(3, "inches"),
  6718. default: true
  6719. },
  6720. {
  6721. name: "Normal",
  6722. height: math.unit(6, "feet")
  6723. }
  6724. ]
  6725. ))
  6726. characterMakers.push(() => makeCharacter(
  6727. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6728. {
  6729. front: {
  6730. height: math.unit(6, "feet"),
  6731. weight: math.unit(103, "lbs"),
  6732. name: "Front",
  6733. image: {
  6734. source: "./media/characters/valeska-voss/front.svg"
  6735. }
  6736. }
  6737. },
  6738. [
  6739. {
  6740. name: "Mini-Sized Sub",
  6741. height: math.unit(3.1, "inches")
  6742. },
  6743. {
  6744. name: "Mid-Sized Sub",
  6745. height: math.unit(6.2, "inches")
  6746. },
  6747. {
  6748. name: "Full-Sized Sub",
  6749. height: math.unit(9.3, "inches")
  6750. },
  6751. {
  6752. name: "Normal",
  6753. height: math.unit(5 + 2 / 12, "foot"),
  6754. default: true
  6755. },
  6756. ]
  6757. ))
  6758. characterMakers.push(() => makeCharacter(
  6759. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6760. {
  6761. front: {
  6762. height: math.unit(6, "feet"),
  6763. weight: math.unit(160, "lbs"),
  6764. name: "Front",
  6765. image: {
  6766. source: "./media/characters/gene-zeta/front.svg",
  6767. extra: 3006 / 2826,
  6768. bottom: 182 / 3188
  6769. }
  6770. }
  6771. },
  6772. [
  6773. {
  6774. name: "Micro",
  6775. height: math.unit(6, "inches")
  6776. },
  6777. {
  6778. name: "Normal",
  6779. height: math.unit(5 + 11 / 12, "foot"),
  6780. default: true
  6781. },
  6782. {
  6783. name: "Macro",
  6784. height: math.unit(140, "feet")
  6785. },
  6786. {
  6787. name: "Supercharged",
  6788. height: math.unit(2500, "feet")
  6789. },
  6790. ]
  6791. ))
  6792. characterMakers.push(() => makeCharacter(
  6793. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6794. {
  6795. front: {
  6796. height: math.unit(6, "feet"),
  6797. weight: math.unit(350, "lbs"),
  6798. name: "Front",
  6799. image: {
  6800. source: "./media/characters/razinox/front.svg",
  6801. extra: 1686 / 1548,
  6802. bottom: 28.2 / 1868
  6803. }
  6804. },
  6805. back: {
  6806. height: math.unit(6, "feet"),
  6807. weight: math.unit(350, "lbs"),
  6808. name: "Back",
  6809. image: {
  6810. source: "./media/characters/razinox/back.svg",
  6811. extra: 1660 / 1590,
  6812. bottom: 15 / 1665
  6813. }
  6814. },
  6815. },
  6816. [
  6817. {
  6818. name: "Normal",
  6819. height: math.unit(10 + 8 / 12, "foot")
  6820. },
  6821. {
  6822. name: "Minimacro",
  6823. height: math.unit(15, "foot")
  6824. },
  6825. {
  6826. name: "Macro",
  6827. height: math.unit(60, "foot"),
  6828. default: true
  6829. },
  6830. {
  6831. name: "Megamacro",
  6832. height: math.unit(5, "miles")
  6833. },
  6834. {
  6835. name: "Gigamacro",
  6836. height: math.unit(6000, "miles")
  6837. },
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6842. {
  6843. front: {
  6844. height: math.unit(6, "feet"),
  6845. weight: math.unit(150, "lbs"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/cobalt/front.svg"
  6849. }
  6850. }
  6851. },
  6852. [
  6853. {
  6854. name: "Normal",
  6855. height: math.unit(8 + 1 / 12, "foot")
  6856. },
  6857. {
  6858. name: "Macro",
  6859. height: math.unit(111, "foot"),
  6860. default: true
  6861. },
  6862. {
  6863. name: "Supracosmic",
  6864. height: math.unit(1e42, "feet")
  6865. },
  6866. ]
  6867. ))
  6868. characterMakers.push(() => makeCharacter(
  6869. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6870. {
  6871. front: {
  6872. height: math.unit(6, "feet"),
  6873. weight: math.unit(140, "lbs"),
  6874. name: "Front",
  6875. image: {
  6876. source: "./media/characters/amanda/front.svg"
  6877. }
  6878. }
  6879. },
  6880. [
  6881. {
  6882. name: "Micro",
  6883. height: math.unit(5, "inches"),
  6884. default: true
  6885. },
  6886. ]
  6887. ))
  6888. characterMakers.push(() => makeCharacter(
  6889. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6890. {
  6891. front: {
  6892. height: math.unit(2.75, "meters"),
  6893. weight: math.unit(1200, "lb"),
  6894. name: "Front",
  6895. image: {
  6896. source: "./media/characters/teal/front.svg",
  6897. extra: 2463 / 2320,
  6898. bottom: 166 / 2629
  6899. }
  6900. },
  6901. back: {
  6902. height: math.unit(2.75, "meters"),
  6903. weight: math.unit(1200, "lb"),
  6904. name: "Back",
  6905. image: {
  6906. source: "./media/characters/teal/back.svg",
  6907. extra: 2580 / 2489,
  6908. bottom: 151 / 2731
  6909. }
  6910. },
  6911. sitting: {
  6912. height: math.unit(1.9, "meters"),
  6913. weight: math.unit(1200, "lb"),
  6914. name: "Sitting",
  6915. image: {
  6916. source: "./media/characters/teal/sitting.svg",
  6917. extra: 623 / 590,
  6918. bottom: 121 / 744
  6919. }
  6920. },
  6921. standing: {
  6922. height: math.unit(2.75, "meters"),
  6923. weight: math.unit(1200, "lb"),
  6924. name: "Standing",
  6925. image: {
  6926. source: "./media/characters/teal/standing.svg",
  6927. extra: 923 / 893,
  6928. bottom: 60 / 983
  6929. }
  6930. },
  6931. stretching: {
  6932. height: math.unit(3.65, "meters"),
  6933. weight: math.unit(1200, "lb"),
  6934. name: "Stretching",
  6935. image: {
  6936. source: "./media/characters/teal/stretching.svg",
  6937. extra: 1276 / 1244,
  6938. bottom: 0 / 1276
  6939. }
  6940. },
  6941. legged: {
  6942. height: math.unit(1.3, "meters"),
  6943. weight: math.unit(100, "lb"),
  6944. name: "Legged",
  6945. image: {
  6946. source: "./media/characters/teal/legged.svg",
  6947. extra: 462 / 437,
  6948. bottom: 24 / 486
  6949. }
  6950. },
  6951. naga: {
  6952. height: math.unit(5.4, "meters"),
  6953. weight: math.unit(4000, "lb"),
  6954. name: "Naga",
  6955. image: {
  6956. source: "./media/characters/teal/naga.svg",
  6957. extra: 1902 / 1858,
  6958. bottom: 0 / 1902
  6959. }
  6960. },
  6961. hand: {
  6962. height: math.unit(0.52, "meters"),
  6963. name: "Hand",
  6964. image: {
  6965. source: "./media/characters/teal/hand.svg"
  6966. }
  6967. },
  6968. maw: {
  6969. height: math.unit(0.43, "meters"),
  6970. name: "Maw",
  6971. image: {
  6972. source: "./media/characters/teal/maw.svg"
  6973. }
  6974. },
  6975. slit: {
  6976. height: math.unit(0.25, "meters"),
  6977. name: "Slit",
  6978. image: {
  6979. source: "./media/characters/teal/slit.svg"
  6980. }
  6981. },
  6982. },
  6983. [
  6984. {
  6985. name: "Normal",
  6986. height: math.unit(2.75, "meters"),
  6987. default: true
  6988. },
  6989. {
  6990. name: "Macro",
  6991. height: math.unit(300, "feet")
  6992. },
  6993. {
  6994. name: "Macro+",
  6995. height: math.unit(2000, "feet")
  6996. },
  6997. ]
  6998. ))
  6999. characterMakers.push(() => makeCharacter(
  7000. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7001. {
  7002. frontCat: {
  7003. height: math.unit(6, "feet"),
  7004. weight: math.unit(180, "lbs"),
  7005. name: "Front (Cat)",
  7006. image: {
  7007. source: "./media/characters/ravin-amulet/front-cat.svg"
  7008. }
  7009. },
  7010. frontCatAlt: {
  7011. height: math.unit(6, "feet"),
  7012. weight: math.unit(180, "lbs"),
  7013. name: "Front (Alt, Cat)",
  7014. image: {
  7015. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7016. }
  7017. },
  7018. frontWerewolf: {
  7019. height: math.unit(6 * 1.2, "feet"),
  7020. weight: math.unit(225, "lbs"),
  7021. name: "Front (Werewolf)",
  7022. image: {
  7023. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7024. }
  7025. },
  7026. backWerewolf: {
  7027. height: math.unit(6 * 1.2, "feet"),
  7028. weight: math.unit(225, "lbs"),
  7029. name: "Back (Werewolf)",
  7030. image: {
  7031. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7032. }
  7033. },
  7034. },
  7035. [
  7036. {
  7037. name: "Nano",
  7038. height: math.unit(1, "micrometer")
  7039. },
  7040. {
  7041. name: "Micro",
  7042. height: math.unit(1, "inch")
  7043. },
  7044. {
  7045. name: "Normal",
  7046. height: math.unit(6, "feet"),
  7047. default: true
  7048. },
  7049. {
  7050. name: "Macro",
  7051. height: math.unit(60, "feet")
  7052. }
  7053. ]
  7054. ))
  7055. characterMakers.push(() => makeCharacter(
  7056. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7057. {
  7058. front: {
  7059. height: math.unit(6, "feet"),
  7060. weight: math.unit(165, "lbs"),
  7061. name: "Front",
  7062. image: {
  7063. source: "./media/characters/fluoresce/front.svg"
  7064. }
  7065. }
  7066. },
  7067. [
  7068. {
  7069. name: "Micro",
  7070. height: math.unit(6, "cm")
  7071. },
  7072. {
  7073. name: "Normal",
  7074. height: math.unit(5 + 7 / 12, "feet"),
  7075. default: true
  7076. },
  7077. {
  7078. name: "Macro",
  7079. height: math.unit(56, "feet")
  7080. },
  7081. {
  7082. name: "Megamacro",
  7083. height: math.unit(1.9, "miles")
  7084. },
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(9 + 6 / 12, "feet"),
  7092. weight: math.unit(523, "lbs"),
  7093. name: "Side",
  7094. image: {
  7095. source: "./media/characters/aurora/side.svg"
  7096. }
  7097. }
  7098. },
  7099. [
  7100. {
  7101. name: "Normal",
  7102. height: math.unit(9 + 6 / 12, "feet")
  7103. },
  7104. {
  7105. name: "Macro",
  7106. height: math.unit(96, "feet"),
  7107. default: true
  7108. },
  7109. {
  7110. name: "Macro+",
  7111. height: math.unit(243, "feet")
  7112. },
  7113. ]
  7114. ))
  7115. characterMakers.push(() => makeCharacter(
  7116. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7117. {
  7118. front: {
  7119. height: math.unit(194, "cm"),
  7120. weight: math.unit(90, "kg"),
  7121. name: "Front",
  7122. image: {
  7123. source: "./media/characters/ranek/front.svg"
  7124. }
  7125. },
  7126. side: {
  7127. height: math.unit(194, "cm"),
  7128. weight: math.unit(90, "kg"),
  7129. name: "Side",
  7130. image: {
  7131. source: "./media/characters/ranek/side.svg"
  7132. }
  7133. },
  7134. back: {
  7135. height: math.unit(194, "cm"),
  7136. weight: math.unit(90, "kg"),
  7137. name: "Back",
  7138. image: {
  7139. source: "./media/characters/ranek/back.svg"
  7140. }
  7141. },
  7142. feral: {
  7143. height: math.unit(30, "cm"),
  7144. weight: math.unit(1.6, "lbs"),
  7145. name: "Feral",
  7146. image: {
  7147. source: "./media/characters/ranek/feral.svg"
  7148. }
  7149. },
  7150. },
  7151. [
  7152. {
  7153. name: "Normal",
  7154. height: math.unit(194, "cm"),
  7155. default: true
  7156. },
  7157. {
  7158. name: "Macro",
  7159. height: math.unit(100, "meters")
  7160. },
  7161. ]
  7162. ))
  7163. characterMakers.push(() => makeCharacter(
  7164. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7165. {
  7166. front: {
  7167. height: math.unit(5 + 6 / 12, "feet"),
  7168. weight: math.unit(153, "lbs"),
  7169. name: "Front",
  7170. image: {
  7171. source: "./media/characters/andrew-cooper/front.svg"
  7172. }
  7173. },
  7174. },
  7175. [
  7176. {
  7177. name: "Nano",
  7178. height: math.unit(1, "mm")
  7179. },
  7180. {
  7181. name: "Micro",
  7182. height: math.unit(2, "inches")
  7183. },
  7184. {
  7185. name: "Normal",
  7186. height: math.unit(5 + 6 / 12, "feet"),
  7187. default: true
  7188. }
  7189. ]
  7190. ))
  7191. characterMakers.push(() => makeCharacter(
  7192. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7193. {
  7194. front: {
  7195. height: math.unit(6, "feet"),
  7196. weight: math.unit(180, "lbs"),
  7197. name: "Front",
  7198. image: {
  7199. source: "./media/characters/akane-sato/front.svg",
  7200. extra: 1219 / 1140
  7201. }
  7202. },
  7203. back: {
  7204. height: math.unit(6, "feet"),
  7205. weight: math.unit(180, "lbs"),
  7206. name: "Back",
  7207. image: {
  7208. source: "./media/characters/akane-sato/back.svg",
  7209. extra: 1219 / 1170
  7210. }
  7211. },
  7212. },
  7213. [
  7214. {
  7215. name: "Normal",
  7216. height: math.unit(2.5, "meters")
  7217. },
  7218. {
  7219. name: "Macro",
  7220. height: math.unit(250, "meters"),
  7221. default: true
  7222. },
  7223. {
  7224. name: "Megamacro",
  7225. height: math.unit(25, "km")
  7226. },
  7227. ]
  7228. ))
  7229. characterMakers.push(() => makeCharacter(
  7230. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7231. {
  7232. front: {
  7233. height: math.unit(6, "feet"),
  7234. weight: math.unit(65, "kg"),
  7235. name: "Front",
  7236. image: {
  7237. source: "./media/characters/rook/front.svg",
  7238. extra: 960 / 950
  7239. }
  7240. }
  7241. },
  7242. [
  7243. {
  7244. name: "Normal",
  7245. height: math.unit(8.8, "feet")
  7246. },
  7247. {
  7248. name: "Macro",
  7249. height: math.unit(88, "feet"),
  7250. default: true
  7251. },
  7252. {
  7253. name: "Megamacro",
  7254. height: math.unit(8, "miles")
  7255. },
  7256. ]
  7257. ))
  7258. characterMakers.push(() => makeCharacter(
  7259. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7260. {
  7261. front: {
  7262. height: math.unit(12 + 2 / 12, "feet"),
  7263. weight: math.unit(808, "lbs"),
  7264. name: "Front",
  7265. image: {
  7266. source: "./media/characters/prodigy/front.svg"
  7267. }
  7268. }
  7269. },
  7270. [
  7271. {
  7272. name: "Normal",
  7273. height: math.unit(12 + 2 / 12, "feet"),
  7274. default: true
  7275. },
  7276. {
  7277. name: "Macro",
  7278. height: math.unit(143, "feet")
  7279. },
  7280. {
  7281. name: "Macro+",
  7282. height: math.unit(400, "feet")
  7283. },
  7284. ]
  7285. ))
  7286. characterMakers.push(() => makeCharacter(
  7287. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7288. {
  7289. front: {
  7290. height: math.unit(6, "feet"),
  7291. weight: math.unit(225, "lbs"),
  7292. name: "Front",
  7293. image: {
  7294. source: "./media/characters/daniel/front.svg"
  7295. }
  7296. },
  7297. leaning: {
  7298. height: math.unit(6, "feet"),
  7299. weight: math.unit(225, "lbs"),
  7300. name: "Leaning",
  7301. image: {
  7302. source: "./media/characters/daniel/leaning.svg"
  7303. }
  7304. },
  7305. },
  7306. [
  7307. {
  7308. name: "Macro",
  7309. height: math.unit(1000, "feet"),
  7310. default: true
  7311. },
  7312. ]
  7313. ))
  7314. characterMakers.push(() => makeCharacter(
  7315. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7316. {
  7317. front: {
  7318. height: math.unit(6, "feet"),
  7319. weight: math.unit(88, "lbs"),
  7320. name: "Front",
  7321. image: {
  7322. source: "./media/characters/chiros/front.svg",
  7323. extra: 306 / 226
  7324. }
  7325. },
  7326. side: {
  7327. height: math.unit(6, "feet"),
  7328. weight: math.unit(88, "lbs"),
  7329. name: "Side",
  7330. image: {
  7331. source: "./media/characters/chiros/side.svg",
  7332. extra: 306 / 226
  7333. }
  7334. },
  7335. },
  7336. [
  7337. {
  7338. name: "Normal",
  7339. height: math.unit(6, "cm"),
  7340. default: true
  7341. },
  7342. ]
  7343. ))
  7344. characterMakers.push(() => makeCharacter(
  7345. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7346. {
  7347. front: {
  7348. height: math.unit(6, "feet"),
  7349. weight: math.unit(100, "lbs"),
  7350. name: "Front",
  7351. image: {
  7352. source: "./media/characters/selka/front.svg",
  7353. extra: 947 / 887
  7354. }
  7355. }
  7356. },
  7357. [
  7358. {
  7359. name: "Normal",
  7360. height: math.unit(5, "cm"),
  7361. default: true
  7362. },
  7363. ]
  7364. ))
  7365. characterMakers.push(() => makeCharacter(
  7366. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7367. {
  7368. front: {
  7369. height: math.unit(8 + 3 / 12, "feet"),
  7370. weight: math.unit(424, "lbs"),
  7371. name: "Front",
  7372. image: {
  7373. source: "./media/characters/verin/front.svg",
  7374. extra: 1845 / 1550
  7375. }
  7376. },
  7377. frontArmored: {
  7378. height: math.unit(8 + 3 / 12, "feet"),
  7379. weight: math.unit(424, "lbs"),
  7380. name: "Front (Armored)",
  7381. image: {
  7382. source: "./media/characters/verin/front-armor.svg",
  7383. extra: 1845 / 1550,
  7384. bottom: 0.01
  7385. }
  7386. },
  7387. back: {
  7388. height: math.unit(8 + 3 / 12, "feet"),
  7389. weight: math.unit(424, "lbs"),
  7390. name: "Back",
  7391. image: {
  7392. source: "./media/characters/verin/back.svg",
  7393. bottom: 0.1,
  7394. extra: 1
  7395. }
  7396. },
  7397. foot: {
  7398. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7399. name: "Foot",
  7400. image: {
  7401. source: "./media/characters/verin/foot.svg"
  7402. }
  7403. },
  7404. },
  7405. [
  7406. {
  7407. name: "Normal",
  7408. height: math.unit(8 + 3 / 12, "feet")
  7409. },
  7410. {
  7411. name: "Minimacro",
  7412. height: math.unit(21, "feet"),
  7413. default: true
  7414. },
  7415. {
  7416. name: "Macro",
  7417. height: math.unit(626, "feet")
  7418. },
  7419. ]
  7420. ))
  7421. characterMakers.push(() => makeCharacter(
  7422. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7423. {
  7424. front: {
  7425. height: math.unit(2.718, "meters"),
  7426. weight: math.unit(150, "lbs"),
  7427. name: "Front",
  7428. image: {
  7429. source: "./media/characters/sovrim-terraquian/front.svg"
  7430. }
  7431. },
  7432. back: {
  7433. height: math.unit(2.718, "meters"),
  7434. weight: math.unit(150, "lbs"),
  7435. name: "Back",
  7436. image: {
  7437. source: "./media/characters/sovrim-terraquian/back.svg"
  7438. }
  7439. }
  7440. },
  7441. [
  7442. {
  7443. name: "Micro",
  7444. height: math.unit(2, "inches")
  7445. },
  7446. {
  7447. name: "Small",
  7448. height: math.unit(1, "meter")
  7449. },
  7450. {
  7451. name: "Normal",
  7452. height: math.unit(Math.E, "meters"),
  7453. default: true
  7454. },
  7455. {
  7456. name: "Macro",
  7457. height: math.unit(20, "meters")
  7458. },
  7459. {
  7460. name: "Macro+",
  7461. height: math.unit(400, "meters")
  7462. },
  7463. ]
  7464. ))
  7465. characterMakers.push(() => makeCharacter(
  7466. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7467. {
  7468. front: {
  7469. height: math.unit(7, "feet"),
  7470. weight: math.unit(489, "lbs"),
  7471. name: "Front",
  7472. image: {
  7473. source: "./media/characters/reece-silvermane/front.svg",
  7474. bottom: 0.02,
  7475. extra: 1
  7476. }
  7477. },
  7478. },
  7479. [
  7480. {
  7481. name: "Macro",
  7482. height: math.unit(1.5, "miles"),
  7483. default: true
  7484. },
  7485. ]
  7486. ))
  7487. characterMakers.push(() => makeCharacter(
  7488. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7489. {
  7490. front: {
  7491. height: math.unit(6, "feet"),
  7492. weight: math.unit(78, "kg"),
  7493. name: "Front",
  7494. image: {
  7495. source: "./media/characters/kane/front.svg",
  7496. extra: 978 / 899
  7497. }
  7498. },
  7499. },
  7500. [
  7501. {
  7502. name: "Normal",
  7503. height: math.unit(2.1, "m"),
  7504. },
  7505. {
  7506. name: "Macro",
  7507. height: math.unit(1, "km"),
  7508. default: true
  7509. },
  7510. ]
  7511. ))
  7512. characterMakers.push(() => makeCharacter(
  7513. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7514. {
  7515. front: {
  7516. height: math.unit(6, "feet"),
  7517. weight: math.unit(200, "kg"),
  7518. name: "Front",
  7519. image: {
  7520. source: "./media/characters/tegon/front.svg",
  7521. bottom: 0.01,
  7522. extra: 1
  7523. }
  7524. },
  7525. },
  7526. [
  7527. {
  7528. name: "Micro",
  7529. height: math.unit(1, "inch")
  7530. },
  7531. {
  7532. name: "Normal",
  7533. height: math.unit(6 + 3 / 12, "feet"),
  7534. default: true
  7535. },
  7536. {
  7537. name: "Macro",
  7538. height: math.unit(300, "feet")
  7539. },
  7540. {
  7541. name: "Megamacro",
  7542. height: math.unit(69, "miles")
  7543. },
  7544. ]
  7545. ))
  7546. characterMakers.push(() => makeCharacter(
  7547. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7548. {
  7549. side: {
  7550. height: math.unit(6, "feet"),
  7551. weight: math.unit(2304, "lbs"),
  7552. name: "Side",
  7553. image: {
  7554. source: "./media/characters/arcturax/side.svg",
  7555. extra: 790 / 376,
  7556. bottom: 0.01
  7557. }
  7558. },
  7559. },
  7560. [
  7561. {
  7562. name: "Micro",
  7563. height: math.unit(2, "inch")
  7564. },
  7565. {
  7566. name: "Normal",
  7567. height: math.unit(6, "feet")
  7568. },
  7569. {
  7570. name: "Macro",
  7571. height: math.unit(39, "feet"),
  7572. default: true
  7573. },
  7574. {
  7575. name: "Megamacro",
  7576. height: math.unit(7, "miles")
  7577. },
  7578. ]
  7579. ))
  7580. characterMakers.push(() => makeCharacter(
  7581. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7582. {
  7583. front: {
  7584. height: math.unit(6, "feet"),
  7585. weight: math.unit(50, "lbs"),
  7586. name: "Front",
  7587. image: {
  7588. source: "./media/characters/sentri/front.svg",
  7589. extra: 1750 / 1570,
  7590. bottom: 0.025
  7591. }
  7592. },
  7593. frontAlt: {
  7594. height: math.unit(6, "feet"),
  7595. weight: math.unit(50, "lbs"),
  7596. name: "Front (Alt)",
  7597. image: {
  7598. source: "./media/characters/sentri/front-alt.svg",
  7599. extra: 1750 / 1570,
  7600. bottom: 0.025
  7601. }
  7602. },
  7603. },
  7604. [
  7605. {
  7606. name: "Normal",
  7607. height: math.unit(15, "feet"),
  7608. default: true
  7609. },
  7610. {
  7611. name: "Macro",
  7612. height: math.unit(2500, "feet")
  7613. }
  7614. ]
  7615. ))
  7616. characterMakers.push(() => makeCharacter(
  7617. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7618. {
  7619. front: {
  7620. height: math.unit(5 + 8 / 12, "feet"),
  7621. weight: math.unit(130, "lbs"),
  7622. name: "Front",
  7623. image: {
  7624. source: "./media/characters/corvin/front.svg",
  7625. extra: 1803 / 1629
  7626. }
  7627. },
  7628. frontShirt: {
  7629. height: math.unit(5 + 8 / 12, "feet"),
  7630. weight: math.unit(130, "lbs"),
  7631. name: "Front (Shirt)",
  7632. image: {
  7633. source: "./media/characters/corvin/front-shirt.svg",
  7634. extra: 1803 / 1629
  7635. }
  7636. },
  7637. frontPoncho: {
  7638. height: math.unit(5 + 8 / 12, "feet"),
  7639. weight: math.unit(130, "lbs"),
  7640. name: "Front (Poncho)",
  7641. image: {
  7642. source: "./media/characters/corvin/front-poncho.svg",
  7643. extra: 1803 / 1629
  7644. }
  7645. },
  7646. side: {
  7647. height: math.unit(5 + 8 / 12, "feet"),
  7648. weight: math.unit(130, "lbs"),
  7649. name: "Side",
  7650. image: {
  7651. source: "./media/characters/corvin/side.svg",
  7652. extra: 1012 / 945
  7653. }
  7654. },
  7655. back: {
  7656. height: math.unit(5 + 8 / 12, "feet"),
  7657. weight: math.unit(130, "lbs"),
  7658. name: "Back",
  7659. image: {
  7660. source: "./media/characters/corvin/back.svg",
  7661. extra: 1803 / 1629
  7662. }
  7663. },
  7664. },
  7665. [
  7666. {
  7667. name: "Micro",
  7668. height: math.unit(3, "inches")
  7669. },
  7670. {
  7671. name: "Normal",
  7672. height: math.unit(5 + 8 / 12, "feet")
  7673. },
  7674. {
  7675. name: "Macro",
  7676. height: math.unit(300, "feet"),
  7677. default: true
  7678. },
  7679. {
  7680. name: "Megamacro",
  7681. height: math.unit(500, "miles")
  7682. }
  7683. ]
  7684. ))
  7685. characterMakers.push(() => makeCharacter(
  7686. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7687. {
  7688. front: {
  7689. height: math.unit(6, "feet"),
  7690. weight: math.unit(135, "lbs"),
  7691. name: "Front",
  7692. image: {
  7693. source: "./media/characters/q/front.svg",
  7694. extra: 854 / 752,
  7695. bottom: 0.005
  7696. }
  7697. },
  7698. back: {
  7699. height: math.unit(6, "feet"),
  7700. weight: math.unit(130, "lbs"),
  7701. name: "Back",
  7702. image: {
  7703. source: "./media/characters/q/back.svg",
  7704. extra: 854 / 752
  7705. }
  7706. },
  7707. },
  7708. [
  7709. {
  7710. name: "Macro",
  7711. height: math.unit(90, "feet"),
  7712. default: true
  7713. },
  7714. {
  7715. name: "Extra Macro",
  7716. height: math.unit(300, "feet"),
  7717. },
  7718. {
  7719. name: "BIG WALF",
  7720. height: math.unit(750, "feet"),
  7721. },
  7722. ]
  7723. ))
  7724. characterMakers.push(() => makeCharacter(
  7725. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7726. {
  7727. front: {
  7728. height: math.unit(6, "feet"),
  7729. weight: math.unit(150, "lbs"),
  7730. name: "Front",
  7731. image: {
  7732. source: "./media/characters/carley/front.svg",
  7733. extra: 3927 / 3540,
  7734. bottom: 29.2 / 735
  7735. }
  7736. }
  7737. },
  7738. [
  7739. {
  7740. name: "Normal",
  7741. height: math.unit(6 + 3 / 12, "feet")
  7742. },
  7743. {
  7744. name: "Macro",
  7745. height: math.unit(185, "feet"),
  7746. default: true
  7747. },
  7748. {
  7749. name: "Megamacro",
  7750. height: math.unit(8, "miles"),
  7751. },
  7752. ]
  7753. ))
  7754. characterMakers.push(() => makeCharacter(
  7755. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7756. {
  7757. front: {
  7758. height: math.unit(3, "feet"),
  7759. weight: math.unit(28, "lbs"),
  7760. name: "Front",
  7761. image: {
  7762. source: "./media/characters/citrine/front.svg"
  7763. }
  7764. }
  7765. },
  7766. [
  7767. {
  7768. name: "Normal",
  7769. height: math.unit(3, "feet"),
  7770. default: true
  7771. }
  7772. ]
  7773. ))
  7774. characterMakers.push(() => makeCharacter(
  7775. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7776. {
  7777. front: {
  7778. height: math.unit(14, "feet"),
  7779. weight: math.unit(1450, "kg"),
  7780. capacity: math.unit(15, "people"),
  7781. name: "Front",
  7782. image: {
  7783. source: "./media/characters/aura-starwind/front.svg",
  7784. extra: 1455 / 1335
  7785. }
  7786. },
  7787. side: {
  7788. height: math.unit(14, "feet"),
  7789. weight: math.unit(1450, "kg"),
  7790. capacity: math.unit(15, "people"),
  7791. name: "Side",
  7792. image: {
  7793. source: "./media/characters/aura-starwind/side.svg",
  7794. extra: 1654 / 1497
  7795. }
  7796. },
  7797. taur: {
  7798. height: math.unit(18, "feet"),
  7799. weight: math.unit(5500, "kg"),
  7800. capacity: math.unit(50, "people"),
  7801. name: "Taur",
  7802. image: {
  7803. source: "./media/characters/aura-starwind/taur.svg",
  7804. extra: 1760 / 1650
  7805. }
  7806. },
  7807. feral: {
  7808. height: math.unit(46, "feet"),
  7809. weight: math.unit(25000, "kg"),
  7810. capacity: math.unit(120, "people"),
  7811. name: "Feral",
  7812. image: {
  7813. source: "./media/characters/aura-starwind/feral.svg"
  7814. }
  7815. },
  7816. },
  7817. [
  7818. {
  7819. name: "Normal",
  7820. height: math.unit(14, "feet"),
  7821. default: true
  7822. },
  7823. {
  7824. name: "Macro",
  7825. height: math.unit(50, "meters")
  7826. },
  7827. {
  7828. name: "Megamacro",
  7829. height: math.unit(5000, "meters")
  7830. },
  7831. {
  7832. name: "Gigamacro",
  7833. height: math.unit(100000, "kilometers")
  7834. },
  7835. ]
  7836. ))
  7837. characterMakers.push(() => makeCharacter(
  7838. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7839. {
  7840. front: {
  7841. height: math.unit(2 + 7 / 12, "feet"),
  7842. weight: math.unit(32, "lbs"),
  7843. name: "Front",
  7844. image: {
  7845. source: "./media/characters/rivet/front.svg",
  7846. extra: 1716 / 1658,
  7847. bottom: 0.03
  7848. }
  7849. },
  7850. foot: {
  7851. height: math.unit(0.551, "feet"),
  7852. name: "Rivet's Foot",
  7853. image: {
  7854. source: "./media/characters/rivet/foot.svg"
  7855. },
  7856. rename: true
  7857. }
  7858. },
  7859. [
  7860. {
  7861. name: "Micro",
  7862. height: math.unit(1.5, "inches"),
  7863. },
  7864. {
  7865. name: "Normal",
  7866. height: math.unit(2 + 7 / 12, "feet"),
  7867. default: true
  7868. },
  7869. {
  7870. name: "Macro",
  7871. height: math.unit(85, "feet")
  7872. },
  7873. {
  7874. name: "Megamacro",
  7875. height: math.unit(2.2, "km")
  7876. }
  7877. ]
  7878. ))
  7879. characterMakers.push(() => makeCharacter(
  7880. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7881. {
  7882. front: {
  7883. height: math.unit(5 + 9 / 12, "feet"),
  7884. weight: math.unit(150, "lbs"),
  7885. name: "Front",
  7886. image: {
  7887. source: "./media/characters/coffee/front.svg",
  7888. extra: 3666 / 3032,
  7889. bottom: 0.04
  7890. }
  7891. },
  7892. foot: {
  7893. height: math.unit(1.29, "feet"),
  7894. name: "Foot",
  7895. image: {
  7896. source: "./media/characters/coffee/foot.svg"
  7897. }
  7898. },
  7899. },
  7900. [
  7901. {
  7902. name: "Micro",
  7903. height: math.unit(2, "inches"),
  7904. },
  7905. {
  7906. name: "Normal",
  7907. height: math.unit(5 + 9 / 12, "feet"),
  7908. default: true
  7909. },
  7910. {
  7911. name: "Macro",
  7912. height: math.unit(800, "feet")
  7913. },
  7914. {
  7915. name: "Megamacro",
  7916. height: math.unit(25, "miles")
  7917. }
  7918. ]
  7919. ))
  7920. characterMakers.push(() => makeCharacter(
  7921. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7922. {
  7923. front: {
  7924. height: math.unit(6, "feet"),
  7925. weight: math.unit(200, "lbs"),
  7926. name: "Front",
  7927. image: {
  7928. source: "./media/characters/chari-gal/front.svg",
  7929. extra: 1568 / 1385,
  7930. bottom: 0.047
  7931. }
  7932. },
  7933. gigantamax: {
  7934. height: math.unit(6 * 16, "feet"),
  7935. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7936. name: "Gigantamax",
  7937. image: {
  7938. source: "./media/characters/chari-gal/gigantamax.svg",
  7939. extra: 1124 / 888,
  7940. bottom: 0.03
  7941. }
  7942. },
  7943. },
  7944. [
  7945. {
  7946. name: "Normal",
  7947. height: math.unit(5 + 7 / 12, "feet")
  7948. },
  7949. {
  7950. name: "Macro",
  7951. height: math.unit(200, "feet"),
  7952. default: true
  7953. }
  7954. ]
  7955. ))
  7956. characterMakers.push(() => makeCharacter(
  7957. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7958. {
  7959. front: {
  7960. height: math.unit(6, "feet"),
  7961. weight: math.unit(150, "lbs"),
  7962. name: "Front",
  7963. image: {
  7964. source: "./media/characters/nova/front.svg",
  7965. extra: 5000 / 4722,
  7966. bottom: 0.02
  7967. }
  7968. }
  7969. },
  7970. [
  7971. {
  7972. name: "Micro-",
  7973. height: math.unit(0.8, "inches")
  7974. },
  7975. {
  7976. name: "Micro",
  7977. height: math.unit(2, "inches"),
  7978. default: true
  7979. },
  7980. ]
  7981. ))
  7982. characterMakers.push(() => makeCharacter(
  7983. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7984. {
  7985. front: {
  7986. height: math.unit(3 + 1 / 12, "feet"),
  7987. weight: math.unit(21.7, "lbs"),
  7988. name: "Front",
  7989. image: {
  7990. source: "./media/characters/argent/front.svg",
  7991. extra: 1471 / 1331,
  7992. bottom: 100.8 / 1575.5
  7993. }
  7994. }
  7995. },
  7996. [
  7997. {
  7998. name: "Micro",
  7999. height: math.unit(2, "inches")
  8000. },
  8001. {
  8002. name: "Normal",
  8003. height: math.unit(3 + 1 / 12, "feet"),
  8004. default: true
  8005. },
  8006. {
  8007. name: "Macro",
  8008. height: math.unit(120, "feet")
  8009. },
  8010. ]
  8011. ))
  8012. characterMakers.push(() => makeCharacter(
  8013. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8014. {
  8015. lamp: {
  8016. height: math.unit(7 * 1559 / 989, "feet"),
  8017. name: "Magic Lamp",
  8018. image: {
  8019. source: "./media/characters/mira-al-cul/lamp.svg",
  8020. extra: 1617 / 1559
  8021. }
  8022. },
  8023. front: {
  8024. height: math.unit(7, "feet"),
  8025. name: "Front",
  8026. image: {
  8027. source: "./media/characters/mira-al-cul/front.svg",
  8028. extra: 1044 / 990
  8029. }
  8030. },
  8031. },
  8032. [
  8033. {
  8034. name: "Heavily Restricted",
  8035. height: math.unit(7 * 1559 / 989, "feet")
  8036. },
  8037. {
  8038. name: "Freshly Freed",
  8039. height: math.unit(50 * 1559 / 989, "feet")
  8040. },
  8041. {
  8042. name: "World Encompassing",
  8043. height: math.unit(10000 * 1559 / 989, "miles")
  8044. },
  8045. {
  8046. name: "Galactic",
  8047. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8048. },
  8049. {
  8050. name: "Palmed Universe",
  8051. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8052. default: true
  8053. },
  8054. {
  8055. name: "Multiversal Matriarch",
  8056. height: math.unit(8.87e10, "yottameters")
  8057. },
  8058. {
  8059. name: "Void Mother",
  8060. height: math.unit(3.14e110, "yottaparsecs")
  8061. },
  8062. {
  8063. name: "Toying with Transcendence",
  8064. height: math.unit(1e307, "meters")
  8065. },
  8066. ]
  8067. ))
  8068. characterMakers.push(() => makeCharacter(
  8069. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8070. {
  8071. front: {
  8072. height: math.unit(17 + 1 / 12, "feet"),
  8073. weight: math.unit(476.2 * 5, "lbs"),
  8074. name: "Front",
  8075. image: {
  8076. source: "./media/characters/kuro-shi-uchū/front.svg",
  8077. extra: 2329 / 1835,
  8078. bottom: 0.02
  8079. }
  8080. },
  8081. },
  8082. [
  8083. {
  8084. name: "Micro",
  8085. height: math.unit(2, "inches")
  8086. },
  8087. {
  8088. name: "Normal",
  8089. height: math.unit(12, "meters")
  8090. },
  8091. {
  8092. name: "Planetary",
  8093. height: math.unit(0.00929, "AU"),
  8094. default: true
  8095. },
  8096. {
  8097. name: "Universal",
  8098. height: math.unit(20, "gigaparsecs")
  8099. },
  8100. ]
  8101. ))
  8102. characterMakers.push(() => makeCharacter(
  8103. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8104. {
  8105. front: {
  8106. height: math.unit(5 + 2 / 12, "feet"),
  8107. weight: math.unit(120, "lbs"),
  8108. name: "Front",
  8109. image: {
  8110. source: "./media/characters/katherine/front.svg",
  8111. extra: 2075 / 1969
  8112. }
  8113. },
  8114. dress: {
  8115. height: math.unit(5 + 2 / 12, "feet"),
  8116. weight: math.unit(120, "lbs"),
  8117. name: "Dress",
  8118. image: {
  8119. source: "./media/characters/katherine/dress.svg",
  8120. extra: 2258 / 2064
  8121. }
  8122. },
  8123. },
  8124. [
  8125. {
  8126. name: "Micro",
  8127. height: math.unit(1, "inches"),
  8128. default: true
  8129. },
  8130. {
  8131. name: "Normal",
  8132. height: math.unit(5 + 2 / 12, "feet")
  8133. },
  8134. {
  8135. name: "Macro",
  8136. height: math.unit(100, "meters")
  8137. },
  8138. {
  8139. name: "Megamacro",
  8140. height: math.unit(80, "miles")
  8141. },
  8142. ]
  8143. ))
  8144. characterMakers.push(() => makeCharacter(
  8145. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8146. {
  8147. front: {
  8148. height: math.unit(7 + 8 / 12, "feet"),
  8149. weight: math.unit(250, "lbs"),
  8150. name: "Front",
  8151. image: {
  8152. source: "./media/characters/yevis/front.svg",
  8153. extra: 1938 / 1755
  8154. }
  8155. }
  8156. },
  8157. [
  8158. {
  8159. name: "Mortal",
  8160. height: math.unit(7 + 8 / 12, "feet")
  8161. },
  8162. {
  8163. name: "Battle",
  8164. height: math.unit(25 + 11 / 12, "feet")
  8165. },
  8166. {
  8167. name: "Wrath",
  8168. height: math.unit(1654 + 11 / 12, "feet")
  8169. },
  8170. {
  8171. name: "Planet Destroyer",
  8172. height: math.unit(12000, "miles")
  8173. },
  8174. {
  8175. name: "Galaxy Conqueror",
  8176. height: math.unit(1.45, "zettameters"),
  8177. default: true
  8178. },
  8179. {
  8180. name: "Universal War",
  8181. height: math.unit(184, "gigaparsecs")
  8182. },
  8183. {
  8184. name: "Eternity War",
  8185. height: math.unit(1.98e55, "yottaparsecs")
  8186. },
  8187. ]
  8188. ))
  8189. characterMakers.push(() => makeCharacter(
  8190. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8191. {
  8192. front: {
  8193. height: math.unit(5 + 8 / 12, "feet"),
  8194. weight: math.unit(63, "kg"),
  8195. name: "Front",
  8196. image: {
  8197. source: "./media/characters/xavier/front.svg",
  8198. extra: 944 / 883
  8199. }
  8200. },
  8201. frontStretch: {
  8202. height: math.unit(5 + 8 / 12, "feet"),
  8203. weight: math.unit(63, "kg"),
  8204. name: "Stretching",
  8205. image: {
  8206. source: "./media/characters/xavier/front-stretch.svg",
  8207. extra: 962 / 820
  8208. }
  8209. },
  8210. },
  8211. [
  8212. {
  8213. name: "Normal",
  8214. height: math.unit(5 + 8 / 12, "feet")
  8215. },
  8216. {
  8217. name: "Macro",
  8218. height: math.unit(100, "meters"),
  8219. default: true
  8220. },
  8221. {
  8222. name: "McLargeHuge",
  8223. height: math.unit(10, "miles")
  8224. },
  8225. ]
  8226. ))
  8227. characterMakers.push(() => makeCharacter(
  8228. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8229. {
  8230. front: {
  8231. height: math.unit(5 + 5 / 12, "feet"),
  8232. weight: math.unit(150, "lb"),
  8233. name: "Front",
  8234. image: {
  8235. source: "./media/characters/joshii/front.svg",
  8236. extra: 765 / 653,
  8237. bottom: 51 / 816
  8238. }
  8239. },
  8240. foot: {
  8241. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8242. name: "Foot",
  8243. image: {
  8244. source: "./media/characters/joshii/foot.svg"
  8245. }
  8246. },
  8247. },
  8248. [
  8249. {
  8250. name: "Micro",
  8251. height: math.unit(2, "inches"),
  8252. default: true
  8253. },
  8254. {
  8255. name: "Normal",
  8256. height: math.unit(5 + 5 / 12, "feet")
  8257. },
  8258. {
  8259. name: "Macro",
  8260. height: math.unit(785, "feet")
  8261. },
  8262. {
  8263. name: "Megamacro",
  8264. height: math.unit(24.5, "miles")
  8265. },
  8266. ]
  8267. ))
  8268. characterMakers.push(() => makeCharacter(
  8269. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8270. {
  8271. front: {
  8272. height: math.unit(6, "feet"),
  8273. weight: math.unit(150, "lb"),
  8274. name: "Front",
  8275. image: {
  8276. source: "./media/characters/goddess-elizabeth/front.svg",
  8277. extra: 1800 / 1525,
  8278. bottom: 0.005
  8279. }
  8280. },
  8281. foot: {
  8282. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8283. name: "Foot",
  8284. image: {
  8285. source: "./media/characters/goddess-elizabeth/foot.svg"
  8286. }
  8287. },
  8288. mouth: {
  8289. height: math.unit(6, "feet"),
  8290. name: "Mouth",
  8291. image: {
  8292. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8293. }
  8294. },
  8295. },
  8296. [
  8297. {
  8298. name: "Micro",
  8299. height: math.unit(12, "feet")
  8300. },
  8301. {
  8302. name: "Normal",
  8303. height: math.unit(80, "miles"),
  8304. default: true
  8305. },
  8306. {
  8307. name: "Macro",
  8308. height: math.unit(15000, "parsecs")
  8309. },
  8310. ]
  8311. ))
  8312. characterMakers.push(() => makeCharacter(
  8313. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8314. {
  8315. front: {
  8316. height: math.unit(5 + 9 / 12, "feet"),
  8317. weight: math.unit(144, "lb"),
  8318. name: "Front",
  8319. image: {
  8320. source: "./media/characters/kara/front.svg"
  8321. }
  8322. },
  8323. feet: {
  8324. height: math.unit(6 / 6.765, "feet"),
  8325. name: "Kara's Feet",
  8326. rename: true,
  8327. image: {
  8328. source: "./media/characters/kara/feet.svg"
  8329. }
  8330. },
  8331. },
  8332. [
  8333. {
  8334. name: "Normal",
  8335. height: math.unit(5 + 9 / 12, "feet")
  8336. },
  8337. {
  8338. name: "Macro",
  8339. height: math.unit(174, "feet"),
  8340. default: true
  8341. },
  8342. ]
  8343. ))
  8344. characterMakers.push(() => makeCharacter(
  8345. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8346. {
  8347. front: {
  8348. height: math.unit(18, "feet"),
  8349. weight: math.unit(4050, "lb"),
  8350. name: "Front",
  8351. image: {
  8352. source: "./media/characters/tyrone/front.svg",
  8353. extra: 2405 / 2270,
  8354. bottom: 182 / 2587
  8355. }
  8356. },
  8357. },
  8358. [
  8359. {
  8360. name: "Normal",
  8361. height: math.unit(18, "feet"),
  8362. default: true
  8363. },
  8364. {
  8365. name: "Macro",
  8366. height: math.unit(300, "feet")
  8367. },
  8368. {
  8369. name: "Megamacro",
  8370. height: math.unit(15, "km")
  8371. },
  8372. {
  8373. name: "Gigamacro",
  8374. height: math.unit(500, "km")
  8375. },
  8376. {
  8377. name: "Teramacro",
  8378. height: math.unit(0.5, "gigameters")
  8379. },
  8380. {
  8381. name: "Omnimacro",
  8382. height: math.unit(1e252, "yottauniverse")
  8383. },
  8384. ]
  8385. ))
  8386. characterMakers.push(() => makeCharacter(
  8387. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8388. {
  8389. front: {
  8390. height: math.unit(7 + 8 / 12, "feet"),
  8391. weight: math.unit(120, "lb"),
  8392. name: "Front",
  8393. image: {
  8394. source: "./media/characters/danny/front.svg",
  8395. extra: 1490 / 1350
  8396. }
  8397. },
  8398. back: {
  8399. height: math.unit(7 + 8 / 12, "feet"),
  8400. weight: math.unit(120, "lb"),
  8401. name: "Back",
  8402. image: {
  8403. source: "./media/characters/danny/back.svg",
  8404. extra: 1490 / 1350
  8405. }
  8406. },
  8407. },
  8408. [
  8409. {
  8410. name: "Normal",
  8411. height: math.unit(7 + 8 / 12, "feet"),
  8412. default: true
  8413. },
  8414. ]
  8415. ))
  8416. characterMakers.push(() => makeCharacter(
  8417. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8418. {
  8419. front: {
  8420. height: math.unit(3.5, "inches"),
  8421. weight: math.unit(19, "grams"),
  8422. name: "Front",
  8423. image: {
  8424. source: "./media/characters/mallow/front.svg",
  8425. extra: 471 / 431
  8426. }
  8427. },
  8428. back: {
  8429. height: math.unit(3.5, "inches"),
  8430. weight: math.unit(19, "grams"),
  8431. name: "Back",
  8432. image: {
  8433. source: "./media/characters/mallow/back.svg",
  8434. extra: 471 / 431
  8435. }
  8436. },
  8437. },
  8438. [
  8439. {
  8440. name: "Normal",
  8441. height: math.unit(3.5, "inches"),
  8442. default: true
  8443. },
  8444. ]
  8445. ))
  8446. characterMakers.push(() => makeCharacter(
  8447. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8448. {
  8449. front: {
  8450. height: math.unit(9, "feet"),
  8451. weight: math.unit(230, "kg"),
  8452. name: "Front",
  8453. image: {
  8454. source: "./media/characters/starry-aqua/front.svg"
  8455. }
  8456. },
  8457. back: {
  8458. height: math.unit(9, "feet"),
  8459. weight: math.unit(230, "kg"),
  8460. name: "Back",
  8461. image: {
  8462. source: "./media/characters/starry-aqua/back.svg"
  8463. }
  8464. },
  8465. hand: {
  8466. height: math.unit(9 * 0.1168, "feet"),
  8467. name: "Hand",
  8468. image: {
  8469. source: "./media/characters/starry-aqua/hand.svg"
  8470. }
  8471. },
  8472. foot: {
  8473. height: math.unit(9 * 0.18, "feet"),
  8474. name: "Foot",
  8475. image: {
  8476. source: "./media/characters/starry-aqua/foot.svg"
  8477. }
  8478. }
  8479. },
  8480. [
  8481. {
  8482. name: "Micro",
  8483. height: math.unit(3, "inches")
  8484. },
  8485. {
  8486. name: "Normal",
  8487. height: math.unit(9, "feet")
  8488. },
  8489. {
  8490. name: "Macro",
  8491. height: math.unit(300, "feet"),
  8492. default: true
  8493. },
  8494. {
  8495. name: "Megamacro",
  8496. height: math.unit(3200, "feet")
  8497. }
  8498. ]
  8499. ))
  8500. characterMakers.push(() => makeCharacter(
  8501. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8502. {
  8503. front: {
  8504. height: math.unit(6, "feet"),
  8505. weight: math.unit(230, "lb"),
  8506. name: "Front",
  8507. image: {
  8508. source: "./media/characters/luka/front.svg",
  8509. extra: 1,
  8510. bottom: 0.025
  8511. }
  8512. },
  8513. },
  8514. [
  8515. {
  8516. name: "Normal",
  8517. height: math.unit(12 + 8 / 12, "feet"),
  8518. default: true
  8519. },
  8520. {
  8521. name: "Minimacro",
  8522. height: math.unit(20, "feet")
  8523. },
  8524. {
  8525. name: "Macro",
  8526. height: math.unit(250, "feet")
  8527. },
  8528. {
  8529. name: "Megamacro",
  8530. height: math.unit(5, "miles")
  8531. },
  8532. {
  8533. name: "Gigamacro",
  8534. height: math.unit(8000, "miles")
  8535. },
  8536. ]
  8537. ))
  8538. characterMakers.push(() => makeCharacter(
  8539. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8540. {
  8541. front: {
  8542. height: math.unit(6, "feet"),
  8543. weight: math.unit(150, "lb"),
  8544. name: "Front",
  8545. image: {
  8546. source: "./media/characters/natalie-nightring/front.svg",
  8547. extra: 1,
  8548. bottom: 0.06
  8549. }
  8550. },
  8551. },
  8552. [
  8553. {
  8554. name: "Uh Oh",
  8555. height: math.unit(0.1, "mm")
  8556. },
  8557. {
  8558. name: "Small",
  8559. height: math.unit(3, "inches")
  8560. },
  8561. {
  8562. name: "Human Scale",
  8563. height: math.unit(6, "feet")
  8564. },
  8565. {
  8566. name: "Librarian",
  8567. height: math.unit(50, "feet"),
  8568. default: true
  8569. },
  8570. {
  8571. name: "Immense",
  8572. height: math.unit(200, "miles")
  8573. },
  8574. ]
  8575. ))
  8576. characterMakers.push(() => makeCharacter(
  8577. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8578. {
  8579. front: {
  8580. height: math.unit(6, "feet"),
  8581. weight: math.unit(180, "lbs"),
  8582. name: "Front",
  8583. image: {
  8584. source: "./media/characters/danni-rosie/front.svg",
  8585. extra: 1260 / 1128,
  8586. bottom: 0.022
  8587. }
  8588. },
  8589. },
  8590. [
  8591. {
  8592. name: "Micro",
  8593. height: math.unit(2, "inches"),
  8594. default: true
  8595. },
  8596. ]
  8597. ))
  8598. characterMakers.push(() => makeCharacter(
  8599. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8600. {
  8601. front: {
  8602. height: math.unit(5 + 9 / 12, "feet"),
  8603. weight: math.unit(220, "lb"),
  8604. name: "Front",
  8605. image: {
  8606. source: "./media/characters/samantha-kruse/front.svg",
  8607. extra: (985 / 935),
  8608. bottom: 0.03
  8609. }
  8610. },
  8611. frontUndressed: {
  8612. height: math.unit(5 + 9 / 12, "feet"),
  8613. weight: math.unit(220, "lb"),
  8614. name: "Front (Undressed)",
  8615. image: {
  8616. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8617. extra: (973 / 923),
  8618. bottom: 0.025
  8619. }
  8620. },
  8621. fat: {
  8622. height: math.unit(5 + 9 / 12, "feet"),
  8623. weight: math.unit(900, "lb"),
  8624. name: "Front (Fat)",
  8625. image: {
  8626. source: "./media/characters/samantha-kruse/fat.svg",
  8627. extra: 2688 / 2561
  8628. }
  8629. },
  8630. },
  8631. [
  8632. {
  8633. name: "Normal",
  8634. height: math.unit(5 + 9 / 12, "feet"),
  8635. default: true
  8636. }
  8637. ]
  8638. ))
  8639. characterMakers.push(() => makeCharacter(
  8640. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8641. {
  8642. back: {
  8643. height: math.unit(5 + 4 / 12, "feet"),
  8644. weight: math.unit(4963, "lb"),
  8645. name: "Back",
  8646. image: {
  8647. source: "./media/characters/amelia-rosie/back.svg",
  8648. extra: 1113 / 963,
  8649. bottom: 0.01
  8650. }
  8651. },
  8652. },
  8653. [
  8654. {
  8655. name: "Level 0",
  8656. height: math.unit(5 + 4 / 12, "feet")
  8657. },
  8658. {
  8659. name: "Level 1",
  8660. height: math.unit(164597, "feet"),
  8661. default: true
  8662. },
  8663. {
  8664. name: "Level 2",
  8665. height: math.unit(956243, "miles")
  8666. },
  8667. {
  8668. name: "Level 3",
  8669. height: math.unit(29421709423, "miles")
  8670. },
  8671. {
  8672. name: "Level 4",
  8673. height: math.unit(154, "lightyears")
  8674. },
  8675. {
  8676. name: "Level 5",
  8677. height: math.unit(4738272, "lightyears")
  8678. },
  8679. {
  8680. name: "Level 6",
  8681. height: math.unit(145787152896, "lightyears")
  8682. },
  8683. ]
  8684. ))
  8685. characterMakers.push(() => makeCharacter(
  8686. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8687. {
  8688. front: {
  8689. height: math.unit(5 + 11 / 12, "feet"),
  8690. weight: math.unit(65, "kg"),
  8691. name: "Front",
  8692. image: {
  8693. source: "./media/characters/rook-kitara/front.svg",
  8694. extra: 1347 / 1274,
  8695. bottom: 0.005
  8696. }
  8697. },
  8698. },
  8699. [
  8700. {
  8701. name: "Totally Unfair",
  8702. height: math.unit(1.8, "mm")
  8703. },
  8704. {
  8705. name: "Lap Rookie",
  8706. height: math.unit(1.4, "feet")
  8707. },
  8708. {
  8709. name: "Normal",
  8710. height: math.unit(5 + 11 / 12, "feet"),
  8711. default: true
  8712. },
  8713. {
  8714. name: "How Did This Happen",
  8715. height: math.unit(80, "miles")
  8716. }
  8717. ]
  8718. ))
  8719. characterMakers.push(() => makeCharacter(
  8720. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8721. {
  8722. front: {
  8723. height: math.unit(7, "feet"),
  8724. weight: math.unit(300, "lb"),
  8725. name: "Front",
  8726. image: {
  8727. source: "./media/characters/pisces/front.svg",
  8728. extra: 2255 / 2115,
  8729. bottom: 0.03
  8730. }
  8731. },
  8732. back: {
  8733. height: math.unit(7, "feet"),
  8734. weight: math.unit(300, "lb"),
  8735. name: "Back",
  8736. image: {
  8737. source: "./media/characters/pisces/back.svg",
  8738. extra: 2146 / 2055,
  8739. bottom: 0.04
  8740. }
  8741. },
  8742. },
  8743. [
  8744. {
  8745. name: "Normal",
  8746. height: math.unit(7, "feet"),
  8747. default: true
  8748. },
  8749. {
  8750. name: "Swimming Pool",
  8751. height: math.unit(12.2, "meters")
  8752. },
  8753. {
  8754. name: "Olympic Swimming Pool",
  8755. height: math.unit(56.3, "meters")
  8756. },
  8757. {
  8758. name: "Lake Superior",
  8759. height: math.unit(93900, "meters")
  8760. },
  8761. {
  8762. name: "Mediterranean Sea",
  8763. height: math.unit(644457, "meters")
  8764. },
  8765. {
  8766. name: "World's Oceans",
  8767. height: math.unit(4567491, "meters")
  8768. },
  8769. ]
  8770. ))
  8771. characterMakers.push(() => makeCharacter(
  8772. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8773. {
  8774. front: {
  8775. height: math.unit(2.3, "meters"),
  8776. weight: math.unit(120, "kg"),
  8777. name: "Front",
  8778. image: {
  8779. source: "./media/characters/zelas/front.svg"
  8780. }
  8781. },
  8782. side: {
  8783. height: math.unit(2.3, "meters"),
  8784. weight: math.unit(120, "kg"),
  8785. name: "Side",
  8786. image: {
  8787. source: "./media/characters/zelas/side.svg"
  8788. }
  8789. },
  8790. back: {
  8791. height: math.unit(2.3, "meters"),
  8792. weight: math.unit(120, "kg"),
  8793. name: "Back",
  8794. image: {
  8795. source: "./media/characters/zelas/back.svg"
  8796. }
  8797. },
  8798. foot: {
  8799. height: math.unit(1.116, "feet"),
  8800. name: "Foot",
  8801. image: {
  8802. source: "./media/characters/zelas/foot.svg"
  8803. }
  8804. },
  8805. },
  8806. [
  8807. {
  8808. name: "Normal",
  8809. height: math.unit(2.3, "meters")
  8810. },
  8811. {
  8812. name: "Macro",
  8813. height: math.unit(30, "meters"),
  8814. default: true
  8815. },
  8816. ]
  8817. ))
  8818. characterMakers.push(() => makeCharacter(
  8819. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8820. {
  8821. front: {
  8822. height: math.unit(1, "inch"),
  8823. weight: math.unit(0.21, "grams"),
  8824. name: "Front",
  8825. image: {
  8826. source: "./media/characters/talbot/front.svg",
  8827. extra: 594 / 544
  8828. }
  8829. },
  8830. },
  8831. [
  8832. {
  8833. name: "Micro",
  8834. height: math.unit(1, "inch"),
  8835. default: true
  8836. },
  8837. ]
  8838. ))
  8839. characterMakers.push(() => makeCharacter(
  8840. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8841. {
  8842. front: {
  8843. height: math.unit(3 + 3 / 12, "feet"),
  8844. weight: math.unit(51.8, "lb"),
  8845. name: "Front",
  8846. image: {
  8847. source: "./media/characters/fliss/front.svg",
  8848. extra: 840 / 640
  8849. }
  8850. },
  8851. },
  8852. [
  8853. {
  8854. name: "Teeny Tiny",
  8855. height: math.unit(1, "mm")
  8856. },
  8857. {
  8858. name: "Small",
  8859. height: math.unit(1, "inch"),
  8860. default: true
  8861. },
  8862. {
  8863. name: "Standard Sylveon",
  8864. height: math.unit(3 + 3 / 12, "feet")
  8865. },
  8866. {
  8867. name: "Large Nuisance",
  8868. height: math.unit(33, "feet")
  8869. },
  8870. {
  8871. name: "City Filler",
  8872. height: math.unit(3000, "feet")
  8873. },
  8874. {
  8875. name: "New Horizon",
  8876. height: math.unit(6000, "miles")
  8877. },
  8878. ]
  8879. ))
  8880. characterMakers.push(() => makeCharacter(
  8881. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8882. {
  8883. front: {
  8884. height: math.unit(5, "cm"),
  8885. weight: math.unit(1.94, "g"),
  8886. name: "Front",
  8887. image: {
  8888. source: "./media/characters/fleta/front.svg",
  8889. extra: 835 / 803
  8890. }
  8891. },
  8892. back: {
  8893. height: math.unit(5, "cm"),
  8894. weight: math.unit(1.94, "g"),
  8895. name: "Back",
  8896. image: {
  8897. source: "./media/characters/fleta/back.svg",
  8898. extra: 835 / 803
  8899. }
  8900. },
  8901. },
  8902. [
  8903. {
  8904. name: "Micro",
  8905. height: math.unit(5, "cm"),
  8906. default: true
  8907. },
  8908. ]
  8909. ))
  8910. characterMakers.push(() => makeCharacter(
  8911. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8912. {
  8913. front: {
  8914. height: math.unit(6, "feet"),
  8915. weight: math.unit(225, "lb"),
  8916. name: "Front",
  8917. image: {
  8918. source: "./media/characters/dominic/front.svg",
  8919. extra: 1770 / 1620,
  8920. bottom: 0.025
  8921. }
  8922. },
  8923. back: {
  8924. height: math.unit(6, "feet"),
  8925. weight: math.unit(225, "lb"),
  8926. name: "Back",
  8927. image: {
  8928. source: "./media/characters/dominic/back.svg",
  8929. extra: 1745 / 1620,
  8930. bottom: 0.065
  8931. }
  8932. },
  8933. },
  8934. [
  8935. {
  8936. name: "Nano",
  8937. height: math.unit(0.1, "mm")
  8938. },
  8939. {
  8940. name: "Micro-",
  8941. height: math.unit(1, "mm")
  8942. },
  8943. {
  8944. name: "Micro",
  8945. height: math.unit(4, "inches")
  8946. },
  8947. {
  8948. name: "Normal",
  8949. height: math.unit(6 + 4 / 12, "feet"),
  8950. default: true
  8951. },
  8952. {
  8953. name: "Macro",
  8954. height: math.unit(115, "feet")
  8955. },
  8956. {
  8957. name: "Macro+",
  8958. height: math.unit(955, "feet")
  8959. },
  8960. {
  8961. name: "Megamacro",
  8962. height: math.unit(8990, "feet")
  8963. },
  8964. {
  8965. name: "Gigmacro",
  8966. height: math.unit(9310, "miles")
  8967. },
  8968. {
  8969. name: "Teramacro",
  8970. height: math.unit(1567005010, "miles")
  8971. },
  8972. {
  8973. name: "Examacro",
  8974. height: math.unit(1425, "parsecs")
  8975. },
  8976. ]
  8977. ))
  8978. characterMakers.push(() => makeCharacter(
  8979. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8980. {
  8981. front: {
  8982. height: math.unit(400, "feet"),
  8983. weight: math.unit(44444444, "lb"),
  8984. name: "Front",
  8985. image: {
  8986. source: "./media/characters/major-colonel/front.svg"
  8987. }
  8988. },
  8989. back: {
  8990. height: math.unit(400, "feet"),
  8991. weight: math.unit(44444444, "lb"),
  8992. name: "Back",
  8993. image: {
  8994. source: "./media/characters/major-colonel/back.svg"
  8995. }
  8996. },
  8997. },
  8998. [
  8999. {
  9000. name: "Macro",
  9001. height: math.unit(400, "feet"),
  9002. default: true
  9003. },
  9004. ]
  9005. ))
  9006. characterMakers.push(() => makeCharacter(
  9007. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9008. {
  9009. catFront: {
  9010. height: math.unit(6, "feet"),
  9011. weight: math.unit(120, "lb"),
  9012. name: "Front (Cat Side)",
  9013. image: {
  9014. source: "./media/characters/axel-lycan/cat-front.svg",
  9015. extra: 430 / 402,
  9016. bottom: 43 / 472.35
  9017. }
  9018. },
  9019. catBack: {
  9020. height: math.unit(6, "feet"),
  9021. weight: math.unit(120, "lb"),
  9022. name: "Back (Cat Side)",
  9023. image: {
  9024. source: "./media/characters/axel-lycan/cat-back.svg",
  9025. extra: 447 / 419,
  9026. bottom: 23.3 / 469
  9027. }
  9028. },
  9029. wolfFront: {
  9030. height: math.unit(6, "feet"),
  9031. weight: math.unit(120, "lb"),
  9032. name: "Front (Wolf Side)",
  9033. image: {
  9034. source: "./media/characters/axel-lycan/wolf-front.svg",
  9035. extra: 485 / 456,
  9036. bottom: 19 / 504
  9037. }
  9038. },
  9039. wolfBack: {
  9040. height: math.unit(6, "feet"),
  9041. weight: math.unit(120, "lb"),
  9042. name: "Back (Wolf Side)",
  9043. image: {
  9044. source: "./media/characters/axel-lycan/wolf-back.svg",
  9045. extra: 475 / 438,
  9046. bottom: 39.2 / 514
  9047. }
  9048. },
  9049. },
  9050. [
  9051. {
  9052. name: "Macro",
  9053. height: math.unit(1, "km"),
  9054. default: true
  9055. },
  9056. ]
  9057. ))
  9058. characterMakers.push(() => makeCharacter(
  9059. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9060. {
  9061. front: {
  9062. height: math.unit(5 + 9 / 12, "feet"),
  9063. weight: math.unit(175, "lb"),
  9064. name: "Front",
  9065. image: {
  9066. source: "./media/characters/vanrel-hyena/front.svg",
  9067. extra: 1086 / 1010,
  9068. bottom: 0.04
  9069. }
  9070. },
  9071. },
  9072. [
  9073. {
  9074. name: "Normal",
  9075. height: math.unit(5 + 9 / 12, "feet"),
  9076. default: true
  9077. },
  9078. ]
  9079. ))
  9080. characterMakers.push(() => makeCharacter(
  9081. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9082. {
  9083. front: {
  9084. height: math.unit(6, "feet"),
  9085. weight: math.unit(103, "lb"),
  9086. name: "Front",
  9087. image: {
  9088. source: "./media/characters/abbott-absol/front.svg",
  9089. extra: 2010 / 1842
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Megamicro",
  9096. height: math.unit(0.1, "mm")
  9097. },
  9098. {
  9099. name: "Micro",
  9100. height: math.unit(1, "inch")
  9101. },
  9102. {
  9103. name: "Normal",
  9104. height: math.unit(6, "feet"),
  9105. default: true
  9106. },
  9107. ]
  9108. ))
  9109. characterMakers.push(() => makeCharacter(
  9110. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9111. {
  9112. front: {
  9113. height: math.unit(6, "feet"),
  9114. weight: math.unit(264, "lb"),
  9115. name: "Front",
  9116. image: {
  9117. source: "./media/characters/hector/front.svg",
  9118. extra: 2280 / 2130,
  9119. bottom: 0.07
  9120. }
  9121. },
  9122. },
  9123. [
  9124. {
  9125. name: "Normal",
  9126. height: math.unit(12.25, "foot"),
  9127. default: true
  9128. },
  9129. {
  9130. name: "Macro",
  9131. height: math.unit(160, "feet")
  9132. },
  9133. ]
  9134. ))
  9135. characterMakers.push(() => makeCharacter(
  9136. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9137. {
  9138. front: {
  9139. height: math.unit(6, "feet"),
  9140. weight: math.unit(150, "lb"),
  9141. name: "Front",
  9142. image: {
  9143. source: "./media/characters/sal/front.svg",
  9144. extra: 1846 / 1699,
  9145. bottom: 0.04
  9146. }
  9147. },
  9148. },
  9149. [
  9150. {
  9151. name: "Megamacro",
  9152. height: math.unit(10, "miles"),
  9153. default: true
  9154. },
  9155. ]
  9156. ))
  9157. characterMakers.push(() => makeCharacter(
  9158. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9159. {
  9160. front: {
  9161. height: math.unit(3, "meters"),
  9162. weight: math.unit(450, "kg"),
  9163. name: "front",
  9164. image: {
  9165. source: "./media/characters/ranger/front.svg",
  9166. extra: 2401 / 2243,
  9167. bottom: 0.05
  9168. }
  9169. },
  9170. },
  9171. [
  9172. {
  9173. name: "Normal",
  9174. height: math.unit(3, "meters"),
  9175. default: true
  9176. },
  9177. ]
  9178. ))
  9179. characterMakers.push(() => makeCharacter(
  9180. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9181. {
  9182. front: {
  9183. height: math.unit(14, "feet"),
  9184. weight: math.unit(800, "kg"),
  9185. name: "Front",
  9186. image: {
  9187. source: "./media/characters/theresa/front.svg",
  9188. extra: 3575 / 3346,
  9189. bottom: 0.03
  9190. }
  9191. },
  9192. },
  9193. [
  9194. {
  9195. name: "Normal",
  9196. height: math.unit(14, "feet"),
  9197. default: true
  9198. },
  9199. ]
  9200. ))
  9201. characterMakers.push(() => makeCharacter(
  9202. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9203. {
  9204. front: {
  9205. height: math.unit(6, "feet"),
  9206. weight: math.unit(3, "kg"),
  9207. name: "Front",
  9208. image: {
  9209. source: "./media/characters/ine/front.svg",
  9210. extra: 678 / 539,
  9211. bottom: 0.023
  9212. }
  9213. },
  9214. },
  9215. [
  9216. {
  9217. name: "Normal",
  9218. height: math.unit(2.265, "feet"),
  9219. default: true
  9220. },
  9221. ]
  9222. ))
  9223. characterMakers.push(() => makeCharacter(
  9224. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9225. {
  9226. front: {
  9227. height: math.unit(5, "feet"),
  9228. weight: math.unit(30, "kg"),
  9229. name: "Front",
  9230. image: {
  9231. source: "./media/characters/vial/front.svg",
  9232. extra: 1365 / 1277,
  9233. bottom: 0.04
  9234. }
  9235. },
  9236. },
  9237. [
  9238. {
  9239. name: "Normal",
  9240. height: math.unit(5, "feet"),
  9241. default: true
  9242. },
  9243. ]
  9244. ))
  9245. characterMakers.push(() => makeCharacter(
  9246. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9247. {
  9248. side: {
  9249. height: math.unit(3.4, "meters"),
  9250. weight: math.unit(1000, "lb"),
  9251. name: "Side",
  9252. image: {
  9253. source: "./media/characters/rovoska/side.svg",
  9254. extra: 4403 / 1515
  9255. }
  9256. },
  9257. },
  9258. [
  9259. {
  9260. name: "Normal",
  9261. height: math.unit(3.4, "meters"),
  9262. default: true
  9263. },
  9264. ]
  9265. ))
  9266. characterMakers.push(() => makeCharacter(
  9267. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9268. {
  9269. front: {
  9270. height: math.unit(8, "feet"),
  9271. weight: math.unit(315, "lb"),
  9272. name: "Front",
  9273. image: {
  9274. source: "./media/characters/gunner-rotthbauer/front.svg"
  9275. }
  9276. },
  9277. back: {
  9278. height: math.unit(8, "feet"),
  9279. weight: math.unit(315, "lb"),
  9280. name: "Back",
  9281. image: {
  9282. source: "./media/characters/gunner-rotthbauer/back.svg"
  9283. }
  9284. },
  9285. },
  9286. [
  9287. {
  9288. name: "Micro",
  9289. height: math.unit(3.5, "inches")
  9290. },
  9291. {
  9292. name: "Normal",
  9293. height: math.unit(8, "feet"),
  9294. default: true
  9295. },
  9296. {
  9297. name: "Macro",
  9298. height: math.unit(250, "feet")
  9299. },
  9300. {
  9301. name: "Megamacro",
  9302. height: math.unit(1, "AU")
  9303. },
  9304. ]
  9305. ))
  9306. characterMakers.push(() => makeCharacter(
  9307. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9308. {
  9309. front: {
  9310. height: math.unit(5 + 5 / 12, "feet"),
  9311. weight: math.unit(140, "lb"),
  9312. name: "Front",
  9313. image: {
  9314. source: "./media/characters/allatia/front.svg",
  9315. extra: 1227 / 1180,
  9316. bottom: 0.027
  9317. }
  9318. },
  9319. },
  9320. [
  9321. {
  9322. name: "Normal",
  9323. height: math.unit(5 + 5 / 12, "feet")
  9324. },
  9325. {
  9326. name: "Macro",
  9327. height: math.unit(250, "feet"),
  9328. default: true
  9329. },
  9330. {
  9331. name: "Megamacro",
  9332. height: math.unit(8, "miles")
  9333. }
  9334. ]
  9335. ))
  9336. characterMakers.push(() => makeCharacter(
  9337. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9338. {
  9339. front: {
  9340. height: math.unit(6, "feet"),
  9341. weight: math.unit(120, "lb"),
  9342. name: "Front",
  9343. image: {
  9344. source: "./media/characters/tene/front.svg",
  9345. extra: 1728 / 1578,
  9346. bottom: 0.022
  9347. }
  9348. },
  9349. stomping: {
  9350. height: math.unit(2.025, "meters"),
  9351. weight: math.unit(120, "lb"),
  9352. name: "Stomping",
  9353. image: {
  9354. source: "./media/characters/tene/stomping.svg",
  9355. extra: 938 / 873,
  9356. bottom: 0.01
  9357. }
  9358. },
  9359. sitting: {
  9360. height: math.unit(1, "meter"),
  9361. weight: math.unit(120, "lb"),
  9362. name: "Sitting",
  9363. image: {
  9364. source: "./media/characters/tene/sitting.svg",
  9365. extra: 437 / 415,
  9366. bottom: 0.1
  9367. }
  9368. },
  9369. feral: {
  9370. height: math.unit(3.9, "feet"),
  9371. weight: math.unit(250, "lb"),
  9372. name: "Feral",
  9373. image: {
  9374. source: "./media/characters/tene/feral.svg",
  9375. extra: 717 / 458,
  9376. bottom: 0.179
  9377. }
  9378. },
  9379. },
  9380. [
  9381. {
  9382. name: "Normal",
  9383. height: math.unit(6, "feet")
  9384. },
  9385. {
  9386. name: "Macro",
  9387. height: math.unit(300, "feet"),
  9388. default: true
  9389. },
  9390. {
  9391. name: "Megamacro",
  9392. height: math.unit(5, "miles")
  9393. },
  9394. ]
  9395. ))
  9396. characterMakers.push(() => makeCharacter(
  9397. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9398. {
  9399. side: {
  9400. height: math.unit(6, "feet"),
  9401. name: "Side",
  9402. image: {
  9403. source: "./media/characters/evander/side.svg",
  9404. extra: 877 / 477
  9405. }
  9406. },
  9407. },
  9408. [
  9409. {
  9410. name: "Normal",
  9411. height: math.unit(0.83, "meters"),
  9412. default: true
  9413. },
  9414. ]
  9415. ))
  9416. characterMakers.push(() => makeCharacter(
  9417. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9418. {
  9419. front: {
  9420. height: math.unit(12, "feet"),
  9421. weight: math.unit(1000, "lb"),
  9422. name: "Front",
  9423. image: {
  9424. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9425. extra: 1762 / 1611
  9426. }
  9427. },
  9428. back: {
  9429. height: math.unit(12, "feet"),
  9430. weight: math.unit(1000, "lb"),
  9431. name: "Back",
  9432. image: {
  9433. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9434. extra: 1762 / 1611
  9435. }
  9436. },
  9437. },
  9438. [
  9439. {
  9440. name: "Normal",
  9441. height: math.unit(12, "feet"),
  9442. default: true
  9443. },
  9444. {
  9445. name: "Kaiju",
  9446. height: math.unit(150, "feet")
  9447. },
  9448. ]
  9449. ))
  9450. characterMakers.push(() => makeCharacter(
  9451. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9452. {
  9453. front: {
  9454. height: math.unit(6, "feet"),
  9455. weight: math.unit(150, "lb"),
  9456. name: "Front",
  9457. image: {
  9458. source: "./media/characters/zero-alurus/front.svg"
  9459. }
  9460. },
  9461. back: {
  9462. height: math.unit(6, "feet"),
  9463. weight: math.unit(150, "lb"),
  9464. name: "Back",
  9465. image: {
  9466. source: "./media/characters/zero-alurus/back.svg"
  9467. }
  9468. },
  9469. },
  9470. [
  9471. {
  9472. name: "Normal",
  9473. height: math.unit(5 + 10 / 12, "feet")
  9474. },
  9475. {
  9476. name: "Macro",
  9477. height: math.unit(60, "feet"),
  9478. default: true
  9479. },
  9480. {
  9481. name: "Macro+",
  9482. height: math.unit(450, "feet")
  9483. },
  9484. ]
  9485. ))
  9486. characterMakers.push(() => makeCharacter(
  9487. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9488. {
  9489. front: {
  9490. height: math.unit(6, "feet"),
  9491. weight: math.unit(200, "lb"),
  9492. name: "Front",
  9493. image: {
  9494. source: "./media/characters/mega-shi/front.svg",
  9495. extra: 1279 / 1250,
  9496. bottom: 0.02
  9497. }
  9498. },
  9499. back: {
  9500. height: math.unit(6, "feet"),
  9501. weight: math.unit(200, "lb"),
  9502. name: "Back",
  9503. image: {
  9504. source: "./media/characters/mega-shi/back.svg",
  9505. extra: 1279 / 1250,
  9506. bottom: 0.02
  9507. }
  9508. },
  9509. },
  9510. [
  9511. {
  9512. name: "Micro",
  9513. height: math.unit(16 + 6 / 12, "feet")
  9514. },
  9515. {
  9516. name: "Third Dimension",
  9517. height: math.unit(40, "meters")
  9518. },
  9519. {
  9520. name: "Normal",
  9521. height: math.unit(660, "feet"),
  9522. default: true
  9523. },
  9524. {
  9525. name: "Megamacro",
  9526. height: math.unit(10, "miles")
  9527. },
  9528. {
  9529. name: "Planetary Launch",
  9530. height: math.unit(500, "miles")
  9531. },
  9532. {
  9533. name: "Interstellar",
  9534. height: math.unit(1e9, "miles")
  9535. },
  9536. {
  9537. name: "Leaving the Universe",
  9538. height: math.unit(1, "gigaparsec")
  9539. },
  9540. {
  9541. name: "Travelling Universes",
  9542. height: math.unit(30e15, "parsecs")
  9543. },
  9544. ]
  9545. ))
  9546. characterMakers.push(() => makeCharacter(
  9547. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9548. {
  9549. front: {
  9550. height: math.unit(6, "feet"),
  9551. weight: math.unit(150, "lb"),
  9552. name: "Front",
  9553. image: {
  9554. source: "./media/characters/odyssey/front.svg",
  9555. extra: 1782 / 1582,
  9556. bottom: 0.01
  9557. }
  9558. },
  9559. side: {
  9560. height: math.unit(5.7, "feet"),
  9561. weight: math.unit(140, "lb"),
  9562. name: "Side",
  9563. image: {
  9564. source: "./media/characters/odyssey/side.svg",
  9565. extra: 6462 / 5700
  9566. }
  9567. },
  9568. },
  9569. [
  9570. {
  9571. name: "Normal",
  9572. height: math.unit(5 + 4 / 12, "feet")
  9573. },
  9574. {
  9575. name: "Macro",
  9576. height: math.unit(1, "km")
  9577. },
  9578. {
  9579. name: "Megamacro",
  9580. height: math.unit(3000, "km")
  9581. },
  9582. {
  9583. name: "Gigamacro",
  9584. height: math.unit(1, "AU"),
  9585. default: true
  9586. },
  9587. {
  9588. name: "Omniversal",
  9589. height: math.unit(100e14, "lightyears")
  9590. },
  9591. ]
  9592. ))
  9593. characterMakers.push(() => makeCharacter(
  9594. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9595. {
  9596. front: {
  9597. height: math.unit(6, "feet"),
  9598. weight: math.unit(300, "lb"),
  9599. name: "Front",
  9600. image: {
  9601. source: "./media/characters/mekuto/front.svg",
  9602. extra: 921 / 832,
  9603. bottom: 0.03
  9604. }
  9605. },
  9606. hand: {
  9607. height: math.unit(6 / 10.24, "feet"),
  9608. name: "Hand",
  9609. image: {
  9610. source: "./media/characters/mekuto/hand.svg"
  9611. }
  9612. },
  9613. foot: {
  9614. height: math.unit(6 / 5.05, "feet"),
  9615. name: "Foot",
  9616. image: {
  9617. source: "./media/characters/mekuto/foot.svg"
  9618. }
  9619. },
  9620. },
  9621. [
  9622. {
  9623. name: "Minimicro",
  9624. height: math.unit(0.2, "inches")
  9625. },
  9626. {
  9627. name: "Micro",
  9628. height: math.unit(1.5, "inches")
  9629. },
  9630. {
  9631. name: "Normal",
  9632. height: math.unit(5 + 11 / 12, "feet"),
  9633. default: true
  9634. },
  9635. {
  9636. name: "Minimacro",
  9637. height: math.unit(17 + 9 / 12, "feet")
  9638. },
  9639. {
  9640. name: "Macro",
  9641. height: math.unit(177.5, "feet")
  9642. },
  9643. {
  9644. name: "Megamacro",
  9645. height: math.unit(152, "miles")
  9646. },
  9647. ]
  9648. ))
  9649. characterMakers.push(() => makeCharacter(
  9650. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9651. {
  9652. front: {
  9653. height: math.unit(6.5, "inches"),
  9654. weight: math.unit(13, "oz"),
  9655. name: "Front",
  9656. image: {
  9657. source: "./media/characters/dafydd-tomos/front.svg",
  9658. extra: 2990 / 2603,
  9659. bottom: 0.03
  9660. }
  9661. },
  9662. },
  9663. [
  9664. {
  9665. name: "Micro",
  9666. height: math.unit(6.5, "inches"),
  9667. default: true
  9668. },
  9669. ]
  9670. ))
  9671. characterMakers.push(() => makeCharacter(
  9672. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9673. {
  9674. front: {
  9675. height: math.unit(6, "feet"),
  9676. weight: math.unit(150, "lb"),
  9677. name: "Front",
  9678. image: {
  9679. source: "./media/characters/splinter/front.svg",
  9680. extra: 2990 / 2882,
  9681. bottom: 0.04
  9682. }
  9683. },
  9684. back: {
  9685. height: math.unit(6, "feet"),
  9686. weight: math.unit(150, "lb"),
  9687. name: "Back",
  9688. image: {
  9689. source: "./media/characters/splinter/back.svg",
  9690. extra: 2990 / 2882,
  9691. bottom: 0.04
  9692. }
  9693. },
  9694. },
  9695. [
  9696. {
  9697. name: "Normal",
  9698. height: math.unit(6, "feet")
  9699. },
  9700. {
  9701. name: "Macro",
  9702. height: math.unit(230, "meters"),
  9703. default: true
  9704. },
  9705. ]
  9706. ))
  9707. characterMakers.push(() => makeCharacter(
  9708. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9709. {
  9710. front: {
  9711. height: math.unit(4 + 10 / 12, "feet"),
  9712. weight: math.unit(480, "lb"),
  9713. name: "Front",
  9714. image: {
  9715. source: "./media/characters/snow-gabumon/front.svg",
  9716. extra: 1140 / 963,
  9717. bottom: 0.058
  9718. }
  9719. },
  9720. back: {
  9721. height: math.unit(4 + 10 / 12, "feet"),
  9722. weight: math.unit(480, "lb"),
  9723. name: "Back",
  9724. image: {
  9725. source: "./media/characters/snow-gabumon/back.svg",
  9726. extra: 1115 / 962,
  9727. bottom: 0.041
  9728. }
  9729. },
  9730. frontUndresed: {
  9731. height: math.unit(4 + 10 / 12, "feet"),
  9732. weight: math.unit(480, "lb"),
  9733. name: "Front (Undressed)",
  9734. image: {
  9735. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9736. extra: 1061 / 960,
  9737. bottom: 0.045
  9738. }
  9739. },
  9740. },
  9741. [
  9742. {
  9743. name: "Micro",
  9744. height: math.unit(1, "inch")
  9745. },
  9746. {
  9747. name: "Normal",
  9748. height: math.unit(4 + 10 / 12, "feet"),
  9749. default: true
  9750. },
  9751. {
  9752. name: "Macro",
  9753. height: math.unit(200, "feet")
  9754. },
  9755. {
  9756. name: "Megamacro",
  9757. height: math.unit(120, "miles")
  9758. },
  9759. {
  9760. name: "Gigamacro",
  9761. height: math.unit(9800, "miles")
  9762. },
  9763. ]
  9764. ))
  9765. characterMakers.push(() => makeCharacter(
  9766. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9767. {
  9768. front: {
  9769. height: math.unit(1.7, "meters"),
  9770. weight: math.unit(140, "lb"),
  9771. name: "Front",
  9772. image: {
  9773. source: "./media/characters/moody/front.svg",
  9774. extra: 3226 / 3007,
  9775. bottom: 0.087
  9776. }
  9777. },
  9778. },
  9779. [
  9780. {
  9781. name: "Micro",
  9782. height: math.unit(1, "mm")
  9783. },
  9784. {
  9785. name: "Normal",
  9786. height: math.unit(1.7, "meters"),
  9787. default: true
  9788. },
  9789. {
  9790. name: "Macro",
  9791. height: math.unit(80, "meters")
  9792. },
  9793. {
  9794. name: "Macro+",
  9795. height: math.unit(500, "meters")
  9796. },
  9797. ]
  9798. ))
  9799. characterMakers.push(() => makeCharacter(
  9800. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9801. {
  9802. front: {
  9803. height: math.unit(6, "feet"),
  9804. weight: math.unit(150, "lb"),
  9805. name: "Front",
  9806. image: {
  9807. source: "./media/characters/zyas/front.svg",
  9808. extra: 1180 / 1120,
  9809. bottom: 0.045
  9810. }
  9811. },
  9812. },
  9813. [
  9814. {
  9815. name: "Normal",
  9816. height: math.unit(10, "feet"),
  9817. default: true
  9818. },
  9819. {
  9820. name: "Macro",
  9821. height: math.unit(500, "feet")
  9822. },
  9823. {
  9824. name: "Megamacro",
  9825. height: math.unit(5, "miles")
  9826. },
  9827. {
  9828. name: "Teramacro",
  9829. height: math.unit(150000, "miles")
  9830. },
  9831. ]
  9832. ))
  9833. characterMakers.push(() => makeCharacter(
  9834. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9835. {
  9836. front: {
  9837. height: math.unit(6, "feet"),
  9838. weight: math.unit(150, "lb"),
  9839. name: "Front",
  9840. image: {
  9841. source: "./media/characters/cuon/front.svg",
  9842. extra: 1390 / 1320,
  9843. bottom: 0.008
  9844. }
  9845. },
  9846. },
  9847. [
  9848. {
  9849. name: "Micro",
  9850. height: math.unit(3, "inches")
  9851. },
  9852. {
  9853. name: "Normal",
  9854. height: math.unit(18 + 9 / 12, "feet"),
  9855. default: true
  9856. },
  9857. {
  9858. name: "Macro",
  9859. height: math.unit(360, "feet")
  9860. },
  9861. {
  9862. name: "Megamacro",
  9863. height: math.unit(360, "miles")
  9864. },
  9865. ]
  9866. ))
  9867. characterMakers.push(() => makeCharacter(
  9868. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9869. {
  9870. front: {
  9871. height: math.unit(2.4, "meters"),
  9872. weight: math.unit(70, "kg"),
  9873. name: "Front",
  9874. image: {
  9875. source: "./media/characters/nyanuxk/front.svg",
  9876. extra: 1172 / 1084,
  9877. bottom: 0.065
  9878. }
  9879. },
  9880. side: {
  9881. height: math.unit(2.4, "meters"),
  9882. weight: math.unit(70, "kg"),
  9883. name: "Side",
  9884. image: {
  9885. source: "./media/characters/nyanuxk/side.svg",
  9886. extra: 1190 / 1132,
  9887. bottom: 0.007
  9888. }
  9889. },
  9890. back: {
  9891. height: math.unit(2.4, "meters"),
  9892. weight: math.unit(70, "kg"),
  9893. name: "Back",
  9894. image: {
  9895. source: "./media/characters/nyanuxk/back.svg",
  9896. extra: 1200 / 1141,
  9897. bottom: 0.015
  9898. }
  9899. },
  9900. foot: {
  9901. height: math.unit(0.52, "meters"),
  9902. name: "Foot",
  9903. image: {
  9904. source: "./media/characters/nyanuxk/foot.svg"
  9905. }
  9906. },
  9907. },
  9908. [
  9909. {
  9910. name: "Micro",
  9911. height: math.unit(2, "cm")
  9912. },
  9913. {
  9914. name: "Normal",
  9915. height: math.unit(2.4, "meters"),
  9916. default: true
  9917. },
  9918. {
  9919. name: "Smaller Macro",
  9920. height: math.unit(120, "meters")
  9921. },
  9922. {
  9923. name: "Bigger Macro",
  9924. height: math.unit(1.2, "km")
  9925. },
  9926. {
  9927. name: "Megamacro",
  9928. height: math.unit(15, "kilometers")
  9929. },
  9930. {
  9931. name: "Gigamacro",
  9932. height: math.unit(2000, "km")
  9933. },
  9934. {
  9935. name: "Teramacro",
  9936. height: math.unit(500000, "km")
  9937. },
  9938. ]
  9939. ))
  9940. characterMakers.push(() => makeCharacter(
  9941. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9942. {
  9943. side: {
  9944. height: math.unit(6, "feet"),
  9945. name: "Side",
  9946. image: {
  9947. source: "./media/characters/ailbhe/side.svg",
  9948. extra: 757 / 464,
  9949. bottom: 0.041
  9950. }
  9951. },
  9952. },
  9953. [
  9954. {
  9955. name: "Normal",
  9956. height: math.unit(1.07, "meters"),
  9957. default: true
  9958. },
  9959. ]
  9960. ))
  9961. characterMakers.push(() => makeCharacter(
  9962. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9963. {
  9964. front: {
  9965. height: math.unit(6, "feet"),
  9966. weight: math.unit(120, "kg"),
  9967. name: "Front",
  9968. image: {
  9969. source: "./media/characters/zevulfius/front.svg",
  9970. extra: 965 / 903
  9971. }
  9972. },
  9973. side: {
  9974. height: math.unit(6, "feet"),
  9975. weight: math.unit(120, "kg"),
  9976. name: "Side",
  9977. image: {
  9978. source: "./media/characters/zevulfius/side.svg",
  9979. extra: 939 / 900
  9980. }
  9981. },
  9982. back: {
  9983. height: math.unit(6, "feet"),
  9984. weight: math.unit(120, "kg"),
  9985. name: "Back",
  9986. image: {
  9987. source: "./media/characters/zevulfius/back.svg",
  9988. extra: 918 / 854,
  9989. bottom: 0.005
  9990. }
  9991. },
  9992. foot: {
  9993. height: math.unit(6 / 3.72, "feet"),
  9994. name: "Foot",
  9995. image: {
  9996. source: "./media/characters/zevulfius/foot.svg"
  9997. }
  9998. },
  9999. },
  10000. [
  10001. {
  10002. name: "Macro",
  10003. height: math.unit(750, "meters")
  10004. },
  10005. {
  10006. name: "Megamacro",
  10007. height: math.unit(20, "km"),
  10008. default: true
  10009. },
  10010. {
  10011. name: "Gigamacro",
  10012. height: math.unit(2000, "km")
  10013. },
  10014. {
  10015. name: "Teramacro",
  10016. height: math.unit(250000, "km")
  10017. },
  10018. ]
  10019. ))
  10020. characterMakers.push(() => makeCharacter(
  10021. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10022. {
  10023. front: {
  10024. height: math.unit(100, "feet"),
  10025. weight: math.unit(350, "kg"),
  10026. name: "Front",
  10027. image: {
  10028. source: "./media/characters/rikes/front.svg",
  10029. extra: 1565 / 1483,
  10030. bottom: 0.017
  10031. }
  10032. },
  10033. },
  10034. [
  10035. {
  10036. name: "Macro",
  10037. height: math.unit(100, "feet"),
  10038. default: true
  10039. },
  10040. ]
  10041. ))
  10042. characterMakers.push(() => makeCharacter(
  10043. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10044. {
  10045. anthro: {
  10046. height: math.unit(8, "feet"),
  10047. weight: math.unit(120, "kg"),
  10048. name: "Anthro",
  10049. image: {
  10050. source: "./media/characters/adam-silver-mane/anthro.svg",
  10051. extra: 5743 / 5339,
  10052. bottom: 0.07
  10053. }
  10054. },
  10055. taur: {
  10056. height: math.unit(16, "feet"),
  10057. weight: math.unit(1500, "kg"),
  10058. name: "Taur",
  10059. image: {
  10060. source: "./media/characters/adam-silver-mane/taur.svg",
  10061. extra: 1713 / 1571,
  10062. bottom: 0.01
  10063. }
  10064. },
  10065. },
  10066. [
  10067. {
  10068. name: "Normal",
  10069. height: math.unit(8, "feet")
  10070. },
  10071. {
  10072. name: "Minimacro",
  10073. height: math.unit(80, "feet")
  10074. },
  10075. {
  10076. name: "Macro",
  10077. height: math.unit(800, "feet"),
  10078. default: true
  10079. },
  10080. {
  10081. name: "Megamacro",
  10082. height: math.unit(8000, "feet")
  10083. },
  10084. {
  10085. name: "Gigamacro",
  10086. height: math.unit(800, "miles")
  10087. },
  10088. {
  10089. name: "Teramacro",
  10090. height: math.unit(80000, "miles")
  10091. },
  10092. {
  10093. name: "Celestial",
  10094. height: math.unit(8e6, "miles")
  10095. },
  10096. {
  10097. name: "Star Dragon",
  10098. height: math.unit(800000, "parsecs")
  10099. },
  10100. {
  10101. name: "Godly",
  10102. height: math.unit(800, "teraparsecs")
  10103. },
  10104. ]
  10105. ))
  10106. characterMakers.push(() => makeCharacter(
  10107. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10108. {
  10109. front: {
  10110. height: math.unit(6, "feet"),
  10111. weight: math.unit(150, "lb"),
  10112. name: "Front",
  10113. image: {
  10114. source: "./media/characters/ky'owin/front.svg",
  10115. extra: 3888 / 3068,
  10116. bottom: 0.015
  10117. }
  10118. },
  10119. },
  10120. [
  10121. {
  10122. name: "Normal",
  10123. height: math.unit(6 + 8 / 12, "feet")
  10124. },
  10125. {
  10126. name: "Large",
  10127. height: math.unit(68, "feet")
  10128. },
  10129. {
  10130. name: "Macro",
  10131. height: math.unit(132, "feet")
  10132. },
  10133. {
  10134. name: "Macro+",
  10135. height: math.unit(340, "feet")
  10136. },
  10137. {
  10138. name: "Macro++",
  10139. height: math.unit(680, "feet"),
  10140. default: true
  10141. },
  10142. {
  10143. name: "Megamacro",
  10144. height: math.unit(1, "mile")
  10145. },
  10146. {
  10147. name: "Megamacro+",
  10148. height: math.unit(10, "miles")
  10149. },
  10150. ]
  10151. ))
  10152. characterMakers.push(() => makeCharacter(
  10153. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10154. {
  10155. front: {
  10156. height: math.unit(4, "feet"),
  10157. weight: math.unit(50, "lb"),
  10158. name: "Front",
  10159. image: {
  10160. source: "./media/characters/mal/front.svg",
  10161. extra: 785 / 724,
  10162. bottom: 0.07
  10163. }
  10164. },
  10165. },
  10166. [
  10167. {
  10168. name: "Micro",
  10169. height: math.unit(4, "inches")
  10170. },
  10171. {
  10172. name: "Normal",
  10173. height: math.unit(4, "feet"),
  10174. default: true
  10175. },
  10176. {
  10177. name: "Macro",
  10178. height: math.unit(200, "feet")
  10179. },
  10180. ]
  10181. ))
  10182. characterMakers.push(() => makeCharacter(
  10183. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10184. {
  10185. front: {
  10186. height: math.unit(6, "feet"),
  10187. weight: math.unit(150, "lb"),
  10188. name: "Front",
  10189. image: {
  10190. source: "./media/characters/jordan-deware/front.svg",
  10191. extra: 1191 / 1012
  10192. }
  10193. },
  10194. },
  10195. [
  10196. {
  10197. name: "Nano",
  10198. height: math.unit(0.01, "mm")
  10199. },
  10200. {
  10201. name: "Minimicro",
  10202. height: math.unit(1, "mm")
  10203. },
  10204. {
  10205. name: "Micro",
  10206. height: math.unit(0.5, "inches")
  10207. },
  10208. {
  10209. name: "Normal",
  10210. height: math.unit(4, "feet"),
  10211. default: true
  10212. },
  10213. {
  10214. name: "Minimacro",
  10215. height: math.unit(40, "meters")
  10216. },
  10217. {
  10218. name: "Small Macro",
  10219. height: math.unit(400, "meters")
  10220. },
  10221. {
  10222. name: "Macro",
  10223. height: math.unit(4, "miles")
  10224. },
  10225. {
  10226. name: "Megamacro",
  10227. height: math.unit(40, "miles")
  10228. },
  10229. {
  10230. name: "Megamacro+",
  10231. height: math.unit(400, "miles")
  10232. },
  10233. {
  10234. name: "Gigamacro",
  10235. height: math.unit(400000, "miles")
  10236. },
  10237. ]
  10238. ))
  10239. characterMakers.push(() => makeCharacter(
  10240. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10241. {
  10242. side: {
  10243. height: math.unit(6, "feet"),
  10244. weight: math.unit(150, "lb"),
  10245. name: "Side",
  10246. image: {
  10247. source: "./media/characters/kimiko/side.svg",
  10248. extra: 600 / 358
  10249. }
  10250. },
  10251. },
  10252. [
  10253. {
  10254. name: "Normal",
  10255. height: math.unit(15, "feet"),
  10256. default: true
  10257. },
  10258. {
  10259. name: "Macro",
  10260. height: math.unit(220, "feet")
  10261. },
  10262. {
  10263. name: "Macro+",
  10264. height: math.unit(1450, "feet")
  10265. },
  10266. {
  10267. name: "Megamacro",
  10268. height: math.unit(11500, "feet")
  10269. },
  10270. {
  10271. name: "Gigamacro",
  10272. height: math.unit(9500, "miles")
  10273. },
  10274. {
  10275. name: "Teramacro",
  10276. height: math.unit(2208005005, "miles")
  10277. },
  10278. {
  10279. name: "Examacro",
  10280. height: math.unit(2750, "parsecs")
  10281. },
  10282. {
  10283. name: "Zettamacro",
  10284. height: math.unit(101500, "parsecs")
  10285. },
  10286. ]
  10287. ))
  10288. characterMakers.push(() => makeCharacter(
  10289. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10290. {
  10291. front: {
  10292. height: math.unit(6, "feet"),
  10293. weight: math.unit(70, "kg"),
  10294. name: "Front",
  10295. image: {
  10296. source: "./media/characters/andrew-sleepy/front.svg"
  10297. }
  10298. },
  10299. side: {
  10300. height: math.unit(6, "feet"),
  10301. weight: math.unit(70, "kg"),
  10302. name: "Side",
  10303. image: {
  10304. source: "./media/characters/andrew-sleepy/side.svg"
  10305. }
  10306. },
  10307. },
  10308. [
  10309. {
  10310. name: "Micro",
  10311. height: math.unit(1, "mm"),
  10312. default: true
  10313. },
  10314. ]
  10315. ))
  10316. characterMakers.push(() => makeCharacter(
  10317. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10318. {
  10319. front: {
  10320. height: math.unit(6, "feet"),
  10321. weight: math.unit(150, "lb"),
  10322. name: "Front",
  10323. image: {
  10324. source: "./media/characters/judio/front.svg",
  10325. extra: 1258 / 1110
  10326. }
  10327. },
  10328. },
  10329. [
  10330. {
  10331. name: "Normal",
  10332. height: math.unit(5 + 6 / 12, "feet")
  10333. },
  10334. {
  10335. name: "Macro",
  10336. height: math.unit(1000, "feet"),
  10337. default: true
  10338. },
  10339. {
  10340. name: "Megamacro",
  10341. height: math.unit(10, "miles")
  10342. },
  10343. ]
  10344. ))
  10345. characterMakers.push(() => makeCharacter(
  10346. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10347. {
  10348. front: {
  10349. height: math.unit(6, "feet"),
  10350. weight: math.unit(68, "kg"),
  10351. name: "Front",
  10352. image: {
  10353. source: "./media/characters/nomaxice/front.svg",
  10354. extra: 1498 / 1073,
  10355. bottom: 0.075
  10356. }
  10357. },
  10358. foot: {
  10359. height: math.unit(1.1, "feet"),
  10360. name: "Foot",
  10361. image: {
  10362. source: "./media/characters/nomaxice/foot.svg"
  10363. }
  10364. },
  10365. },
  10366. [
  10367. {
  10368. name: "Micro",
  10369. height: math.unit(8, "cm")
  10370. },
  10371. {
  10372. name: "Norm",
  10373. height: math.unit(1.82, "m")
  10374. },
  10375. {
  10376. name: "Norm+",
  10377. height: math.unit(8.8, "feet")
  10378. },
  10379. {
  10380. name: "Big",
  10381. height: math.unit(8, "meters"),
  10382. default: true
  10383. },
  10384. {
  10385. name: "Macro",
  10386. height: math.unit(18, "meters")
  10387. },
  10388. {
  10389. name: "Macro+",
  10390. height: math.unit(88, "meters")
  10391. },
  10392. ]
  10393. ))
  10394. characterMakers.push(() => makeCharacter(
  10395. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10396. {
  10397. front: {
  10398. height: math.unit(12, "feet"),
  10399. weight: math.unit(1.5, "tons"),
  10400. name: "Front",
  10401. image: {
  10402. source: "./media/characters/dydros/front.svg",
  10403. extra: 863 / 800,
  10404. bottom: 0.015
  10405. }
  10406. },
  10407. back: {
  10408. height: math.unit(12, "feet"),
  10409. weight: math.unit(1.5, "tons"),
  10410. name: "Back",
  10411. image: {
  10412. source: "./media/characters/dydros/back.svg",
  10413. extra: 900 / 843,
  10414. bottom: 0.005
  10415. }
  10416. },
  10417. },
  10418. [
  10419. {
  10420. name: "Normal",
  10421. height: math.unit(12, "feet"),
  10422. default: true
  10423. },
  10424. ]
  10425. ))
  10426. characterMakers.push(() => makeCharacter(
  10427. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10428. {
  10429. front: {
  10430. height: math.unit(6, "feet"),
  10431. weight: math.unit(100, "kg"),
  10432. name: "Front",
  10433. image: {
  10434. source: "./media/characters/riggi/front.svg",
  10435. extra: 5787 / 5303
  10436. }
  10437. },
  10438. hyper: {
  10439. height: math.unit(6 * 5 / 3, "feet"),
  10440. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10441. name: "Hyper",
  10442. image: {
  10443. source: "./media/characters/riggi/hyper.svg",
  10444. extra: 3595 / 3485
  10445. }
  10446. },
  10447. },
  10448. [
  10449. {
  10450. name: "Small Macro",
  10451. height: math.unit(50, "feet")
  10452. },
  10453. {
  10454. name: "Default",
  10455. height: math.unit(200, "feet"),
  10456. default: true
  10457. },
  10458. {
  10459. name: "Loom",
  10460. height: math.unit(10000, "feet")
  10461. },
  10462. {
  10463. name: "Cruising Altitude",
  10464. height: math.unit(30000, "feet")
  10465. },
  10466. {
  10467. name: "Megamacro",
  10468. height: math.unit(100, "miles")
  10469. },
  10470. {
  10471. name: "Continent Sized",
  10472. height: math.unit(2800, "miles")
  10473. },
  10474. {
  10475. name: "Earth Sized",
  10476. height: math.unit(8000, "miles")
  10477. },
  10478. ]
  10479. ))
  10480. characterMakers.push(() => makeCharacter(
  10481. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10482. {
  10483. front: {
  10484. height: math.unit(6, "feet"),
  10485. weight: math.unit(250, "lb"),
  10486. name: "Front",
  10487. image: {
  10488. source: "./media/characters/alexi/front.svg",
  10489. extra: 3483 / 3291,
  10490. bottom: 0.04
  10491. }
  10492. },
  10493. back: {
  10494. height: math.unit(6, "feet"),
  10495. weight: math.unit(250, "lb"),
  10496. name: "Back",
  10497. image: {
  10498. source: "./media/characters/alexi/back.svg",
  10499. extra: 3533 / 3356,
  10500. bottom: 0.021
  10501. }
  10502. },
  10503. frontTransforming: {
  10504. height: math.unit(8.58, "feet"),
  10505. weight: math.unit(1300, "lb"),
  10506. name: "Transforming",
  10507. image: {
  10508. source: "./media/characters/alexi/front-transforming.svg",
  10509. extra: 437 / 409,
  10510. bottom: 19 / 458.66
  10511. }
  10512. },
  10513. frontTransformed: {
  10514. height: math.unit(12.5, "feet"),
  10515. weight: math.unit(4000, "lb"),
  10516. name: "Transformed",
  10517. image: {
  10518. source: "./media/characters/alexi/front-transformed.svg",
  10519. extra: 639 / 614,
  10520. bottom: 30.55 / 671
  10521. }
  10522. },
  10523. },
  10524. [
  10525. {
  10526. name: "Normal",
  10527. height: math.unit(14, "feet"),
  10528. default: true
  10529. },
  10530. {
  10531. name: "Minimacro",
  10532. height: math.unit(30, "meters")
  10533. },
  10534. {
  10535. name: "Macro",
  10536. height: math.unit(500, "meters")
  10537. },
  10538. {
  10539. name: "Megamacro",
  10540. height: math.unit(9000, "km")
  10541. },
  10542. {
  10543. name: "Teramacro",
  10544. height: math.unit(384000, "km")
  10545. },
  10546. ]
  10547. ))
  10548. characterMakers.push(() => makeCharacter(
  10549. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10550. {
  10551. front: {
  10552. height: math.unit(6, "feet"),
  10553. weight: math.unit(150, "lb"),
  10554. name: "Front",
  10555. image: {
  10556. source: "./media/characters/kayroo/front.svg",
  10557. extra: 1153 / 1038,
  10558. bottom: 0.06
  10559. }
  10560. },
  10561. foot: {
  10562. height: math.unit(6, "feet"),
  10563. weight: math.unit(150, "lb"),
  10564. name: "Foot",
  10565. image: {
  10566. source: "./media/characters/kayroo/foot.svg"
  10567. }
  10568. },
  10569. },
  10570. [
  10571. {
  10572. name: "Normal",
  10573. height: math.unit(8, "feet"),
  10574. default: true
  10575. },
  10576. {
  10577. name: "Minimacro",
  10578. height: math.unit(250, "feet")
  10579. },
  10580. {
  10581. name: "Macro",
  10582. height: math.unit(2800, "feet")
  10583. },
  10584. {
  10585. name: "Megamacro",
  10586. height: math.unit(5200, "feet")
  10587. },
  10588. {
  10589. name: "Gigamacro",
  10590. height: math.unit(27000, "feet")
  10591. },
  10592. {
  10593. name: "Omega",
  10594. height: math.unit(45000, "feet")
  10595. },
  10596. ]
  10597. ))
  10598. characterMakers.push(() => makeCharacter(
  10599. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10600. {
  10601. front: {
  10602. height: math.unit(18, "feet"),
  10603. weight: math.unit(5800, "lb"),
  10604. name: "Front",
  10605. image: {
  10606. source: "./media/characters/rhys/front.svg",
  10607. extra: 3386 / 3090,
  10608. bottom: 0.07
  10609. }
  10610. },
  10611. },
  10612. [
  10613. {
  10614. name: "Normal",
  10615. height: math.unit(18, "feet"),
  10616. default: true
  10617. },
  10618. {
  10619. name: "Working Size",
  10620. height: math.unit(200, "feet")
  10621. },
  10622. {
  10623. name: "Demolition Size",
  10624. height: math.unit(2000, "feet")
  10625. },
  10626. {
  10627. name: "Maximum Licensed Size",
  10628. height: math.unit(5, "miles")
  10629. },
  10630. {
  10631. name: "Maximum Observed Size",
  10632. height: math.unit(10, "yottameters")
  10633. },
  10634. ]
  10635. ))
  10636. characterMakers.push(() => makeCharacter(
  10637. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10638. {
  10639. front: {
  10640. height: math.unit(6, "feet"),
  10641. weight: math.unit(250, "lb"),
  10642. name: "Front",
  10643. image: {
  10644. source: "./media/characters/toto/front.svg",
  10645. extra: 527 / 479,
  10646. bottom: 0.05
  10647. }
  10648. },
  10649. },
  10650. [
  10651. {
  10652. name: "Micro",
  10653. height: math.unit(3, "feet")
  10654. },
  10655. {
  10656. name: "Normal",
  10657. height: math.unit(10, "feet")
  10658. },
  10659. {
  10660. name: "Macro",
  10661. height: math.unit(150, "feet"),
  10662. default: true
  10663. },
  10664. {
  10665. name: "Megamacro",
  10666. height: math.unit(1200, "feet")
  10667. },
  10668. ]
  10669. ))
  10670. characterMakers.push(() => makeCharacter(
  10671. { name: "King", species: ["lion"], tags: ["anthro"] },
  10672. {
  10673. back: {
  10674. height: math.unit(6, "feet"),
  10675. weight: math.unit(150, "lb"),
  10676. name: "Back",
  10677. image: {
  10678. source: "./media/characters/king/back.svg"
  10679. }
  10680. },
  10681. },
  10682. [
  10683. {
  10684. name: "Micro",
  10685. height: math.unit(2, "inches")
  10686. },
  10687. {
  10688. name: "Normal",
  10689. height: math.unit(8, "feet")
  10690. },
  10691. {
  10692. name: "Macro",
  10693. height: math.unit(200, "feet"),
  10694. default: true
  10695. },
  10696. {
  10697. name: "Megamacro",
  10698. height: math.unit(50, "miles")
  10699. },
  10700. ]
  10701. ))
  10702. characterMakers.push(() => makeCharacter(
  10703. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10704. {
  10705. anthro: {
  10706. height: math.unit(6 + 5 / 12, "feet"),
  10707. weight: math.unit(280, "lb"),
  10708. name: "Anthro",
  10709. image: {
  10710. source: "./media/characters/cordite/anthro.svg",
  10711. extra: 1986 / 1905,
  10712. bottom: 0.025
  10713. }
  10714. },
  10715. feral: {
  10716. height: math.unit(2, "feet"),
  10717. weight: math.unit(90, "lb"),
  10718. name: "Feral",
  10719. image: {
  10720. source: "./media/characters/cordite/feral.svg",
  10721. extra: 1260 / 755,
  10722. bottom: 0.05
  10723. }
  10724. },
  10725. },
  10726. [
  10727. {
  10728. name: "Normal",
  10729. height: math.unit(6 + 5 / 12, "feet"),
  10730. default: true
  10731. },
  10732. ]
  10733. ))
  10734. characterMakers.push(() => makeCharacter(
  10735. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10736. {
  10737. front: {
  10738. height: math.unit(6, "feet"),
  10739. weight: math.unit(150, "lb"),
  10740. name: "Front",
  10741. image: {
  10742. source: "./media/characters/pianostrong/front.svg",
  10743. extra: 6577 / 6254,
  10744. bottom: 0.02
  10745. }
  10746. },
  10747. side: {
  10748. height: math.unit(6, "feet"),
  10749. weight: math.unit(150, "lb"),
  10750. name: "Side",
  10751. image: {
  10752. source: "./media/characters/pianostrong/side.svg",
  10753. extra: 6106 / 5730
  10754. }
  10755. },
  10756. back: {
  10757. height: math.unit(6, "feet"),
  10758. weight: math.unit(150, "lb"),
  10759. name: "Back",
  10760. image: {
  10761. source: "./media/characters/pianostrong/back.svg",
  10762. extra: 6085 / 5733,
  10763. bottom: 0.01
  10764. }
  10765. },
  10766. },
  10767. [
  10768. {
  10769. name: "Macro",
  10770. height: math.unit(100, "feet")
  10771. },
  10772. {
  10773. name: "Macro+",
  10774. height: math.unit(300, "feet"),
  10775. default: true
  10776. },
  10777. {
  10778. name: "Macro++",
  10779. height: math.unit(1000, "feet")
  10780. },
  10781. ]
  10782. ))
  10783. characterMakers.push(() => makeCharacter(
  10784. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10785. {
  10786. front: {
  10787. height: math.unit(6, "feet"),
  10788. weight: math.unit(150, "lb"),
  10789. name: "Front",
  10790. image: {
  10791. source: "./media/characters/kona/front.svg",
  10792. extra: 2960 / 2629,
  10793. bottom: 0.005
  10794. }
  10795. },
  10796. },
  10797. [
  10798. {
  10799. name: "Normal",
  10800. height: math.unit(11 + 8 / 12, "feet")
  10801. },
  10802. {
  10803. name: "Macro",
  10804. height: math.unit(850, "feet"),
  10805. default: true
  10806. },
  10807. {
  10808. name: "Macro+",
  10809. height: math.unit(1.5, "km"),
  10810. default: true
  10811. },
  10812. {
  10813. name: "Megamacro",
  10814. height: math.unit(80, "miles")
  10815. },
  10816. {
  10817. name: "Gigamacro",
  10818. height: math.unit(3500, "miles")
  10819. },
  10820. ]
  10821. ))
  10822. characterMakers.push(() => makeCharacter(
  10823. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10824. {
  10825. side: {
  10826. height: math.unit(1.9, "meters"),
  10827. weight: math.unit(326, "kg"),
  10828. name: "Side",
  10829. image: {
  10830. source: "./media/characters/levi/side.svg",
  10831. extra: 1704 / 1334,
  10832. bottom: 0.02
  10833. }
  10834. },
  10835. },
  10836. [
  10837. {
  10838. name: "Normal",
  10839. height: math.unit(1.9, "meters"),
  10840. default: true
  10841. },
  10842. {
  10843. name: "Macro",
  10844. height: math.unit(20, "meters")
  10845. },
  10846. {
  10847. name: "Macro+",
  10848. height: math.unit(200, "meters")
  10849. },
  10850. {
  10851. name: "Megamacro",
  10852. height: math.unit(2, "km")
  10853. },
  10854. {
  10855. name: "Megamacro+",
  10856. height: math.unit(20, "km")
  10857. },
  10858. {
  10859. name: "Gigamacro",
  10860. height: math.unit(2500, "km")
  10861. },
  10862. {
  10863. name: "Gigamacro+",
  10864. height: math.unit(120000, "km")
  10865. },
  10866. {
  10867. name: "Teramacro",
  10868. height: math.unit(7.77e6, "km")
  10869. },
  10870. ]
  10871. ))
  10872. characterMakers.push(() => makeCharacter(
  10873. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10874. {
  10875. front: {
  10876. height: math.unit(6 + 4 / 12, "feet"),
  10877. weight: math.unit(188, "lb"),
  10878. name: "Front",
  10879. image: {
  10880. source: "./media/characters/bmc/front.svg",
  10881. extra: 1067 / 1022,
  10882. bottom: 0.047
  10883. }
  10884. },
  10885. },
  10886. [
  10887. {
  10888. name: "Human-sized",
  10889. height: math.unit(6 + 4 / 12, "feet")
  10890. },
  10891. {
  10892. name: "Small",
  10893. height: math.unit(250, "feet")
  10894. },
  10895. {
  10896. name: "Normal",
  10897. height: math.unit(1250, "feet"),
  10898. default: true
  10899. },
  10900. {
  10901. name: "Good Day",
  10902. height: math.unit(88, "miles")
  10903. },
  10904. {
  10905. name: "Largest Measured Size",
  10906. height: math.unit(11.2e6, "lightyears")
  10907. },
  10908. ]
  10909. ))
  10910. characterMakers.push(() => makeCharacter(
  10911. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10912. {
  10913. front: {
  10914. height: math.unit(20, "feet"),
  10915. weight: math.unit(2016, "kg"),
  10916. name: "Front",
  10917. image: {
  10918. source: "./media/characters/sven-the-kaiju/front.svg",
  10919. extra: 1479 / 1449,
  10920. bottom: 0.05
  10921. }
  10922. },
  10923. },
  10924. [
  10925. {
  10926. name: "Fairy",
  10927. height: math.unit(6, "inches")
  10928. },
  10929. {
  10930. name: "Normal",
  10931. height: math.unit(20, "feet"),
  10932. default: true
  10933. },
  10934. {
  10935. name: "Rampage",
  10936. height: math.unit(200, "feet")
  10937. },
  10938. {
  10939. name: "Archfey Forest Guardian",
  10940. height: math.unit(1, "mile")
  10941. },
  10942. ]
  10943. ))
  10944. characterMakers.push(() => makeCharacter(
  10945. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10946. {
  10947. front: {
  10948. height: math.unit(4, "meters"),
  10949. weight: math.unit(2, "tons"),
  10950. name: "Front",
  10951. image: {
  10952. source: "./media/characters/marik/front.svg",
  10953. extra: 1057 / 1003,
  10954. bottom: 0.08
  10955. }
  10956. },
  10957. },
  10958. [
  10959. {
  10960. name: "Normal",
  10961. height: math.unit(4, "meters"),
  10962. default: true
  10963. },
  10964. {
  10965. name: "Macro",
  10966. height: math.unit(20, "meters")
  10967. },
  10968. {
  10969. name: "Megamacro",
  10970. height: math.unit(50, "km")
  10971. },
  10972. {
  10973. name: "Gigamacro",
  10974. height: math.unit(100, "km")
  10975. },
  10976. {
  10977. name: "Alpha Macro",
  10978. height: math.unit(7.88e7, "yottameters")
  10979. },
  10980. ]
  10981. ))
  10982. characterMakers.push(() => makeCharacter(
  10983. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10984. {
  10985. front: {
  10986. height: math.unit(6, "feet"),
  10987. weight: math.unit(110, "lb"),
  10988. name: "Front",
  10989. image: {
  10990. source: "./media/characters/mel/front.svg",
  10991. extra: 736 / 617,
  10992. bottom: 0.017
  10993. }
  10994. },
  10995. },
  10996. [
  10997. {
  10998. name: "Pico",
  10999. height: math.unit(3, "pm")
  11000. },
  11001. {
  11002. name: "Nano",
  11003. height: math.unit(3, "nm")
  11004. },
  11005. {
  11006. name: "Micro",
  11007. height: math.unit(0.3, "mm"),
  11008. default: true
  11009. },
  11010. {
  11011. name: "Micro+",
  11012. height: math.unit(3, "mm")
  11013. },
  11014. {
  11015. name: "Normal",
  11016. height: math.unit(5 + 10.5 / 12, "feet")
  11017. },
  11018. ]
  11019. ))
  11020. characterMakers.push(() => makeCharacter(
  11021. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11022. {
  11023. kaiju: {
  11024. height: math.unit(1.75, "meters"),
  11025. weight: math.unit(55, "kg"),
  11026. name: "Kaiju",
  11027. image: {
  11028. source: "./media/characters/lykonous/kaiju.svg",
  11029. extra: 1055 / 946,
  11030. bottom: 0.135
  11031. }
  11032. },
  11033. },
  11034. [
  11035. {
  11036. name: "Normal",
  11037. height: math.unit(2.5, "meters"),
  11038. default: true
  11039. },
  11040. {
  11041. name: "Kaiju Dragon",
  11042. height: math.unit(60, "meters")
  11043. },
  11044. {
  11045. name: "Mega Kaiju",
  11046. height: math.unit(120, "km")
  11047. },
  11048. {
  11049. name: "Giga Kaiju",
  11050. height: math.unit(200, "megameters")
  11051. },
  11052. {
  11053. name: "Terra Kaiju",
  11054. height: math.unit(400, "gigameters")
  11055. },
  11056. {
  11057. name: "Kaiju Dragon God",
  11058. height: math.unit(13000, "exaparsecs")
  11059. },
  11060. ]
  11061. ))
  11062. characterMakers.push(() => makeCharacter(
  11063. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11064. {
  11065. front: {
  11066. height: math.unit(6, "feet"),
  11067. weight: math.unit(150, "lb"),
  11068. name: "Front",
  11069. image: {
  11070. source: "./media/characters/blü/front.svg",
  11071. extra: 1883 / 1564,
  11072. bottom: 0.031
  11073. }
  11074. },
  11075. },
  11076. [
  11077. {
  11078. name: "Normal",
  11079. height: math.unit(13, "feet"),
  11080. default: true
  11081. },
  11082. {
  11083. name: "Big Boi",
  11084. height: math.unit(150, "meters")
  11085. },
  11086. {
  11087. name: "Mini Stomper",
  11088. height: math.unit(300, "meters")
  11089. },
  11090. {
  11091. name: "Macro",
  11092. height: math.unit(1000, "meters")
  11093. },
  11094. {
  11095. name: "Megamacro",
  11096. height: math.unit(11000, "meters")
  11097. },
  11098. {
  11099. name: "Gigamacro",
  11100. height: math.unit(11000, "km")
  11101. },
  11102. {
  11103. name: "Teramacro",
  11104. height: math.unit(420000, "km")
  11105. },
  11106. {
  11107. name: "Examacro",
  11108. height: math.unit(120, "parsecs")
  11109. },
  11110. {
  11111. name: "God Tho",
  11112. height: math.unit(98000000000, "parsecs")
  11113. },
  11114. ]
  11115. ))
  11116. characterMakers.push(() => makeCharacter(
  11117. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11118. {
  11119. taurFront: {
  11120. height: math.unit(6, "feet"),
  11121. weight: math.unit(200, "lb"),
  11122. name: "Taur (Front)",
  11123. image: {
  11124. source: "./media/characters/scales/taur-front.svg",
  11125. extra: 1,
  11126. bottom: 0.05
  11127. }
  11128. },
  11129. taurBack: {
  11130. height: math.unit(6, "feet"),
  11131. weight: math.unit(200, "lb"),
  11132. name: "Taur (Back)",
  11133. image: {
  11134. source: "./media/characters/scales/taur-back.svg",
  11135. extra: 1,
  11136. bottom: 0.08
  11137. }
  11138. },
  11139. anthro: {
  11140. height: math.unit(6 * 7 / 12, "feet"),
  11141. weight: math.unit(100, "lb"),
  11142. name: "Anthro",
  11143. image: {
  11144. source: "./media/characters/scales/anthro.svg",
  11145. extra: 1,
  11146. bottom: 0.06
  11147. }
  11148. },
  11149. },
  11150. [
  11151. {
  11152. name: "Normal",
  11153. height: math.unit(12, "feet"),
  11154. default: true
  11155. },
  11156. ]
  11157. ))
  11158. characterMakers.push(() => makeCharacter(
  11159. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11160. {
  11161. front: {
  11162. height: math.unit(6, "feet"),
  11163. weight: math.unit(150, "lb"),
  11164. name: "Front",
  11165. image: {
  11166. source: "./media/characters/koragos/front.svg",
  11167. extra: 841 / 794,
  11168. bottom: 0.035
  11169. }
  11170. },
  11171. back: {
  11172. height: math.unit(6, "feet"),
  11173. weight: math.unit(150, "lb"),
  11174. name: "Back",
  11175. image: {
  11176. source: "./media/characters/koragos/back.svg",
  11177. extra: 841 / 810,
  11178. bottom: 0.022
  11179. }
  11180. },
  11181. },
  11182. [
  11183. {
  11184. name: "Normal",
  11185. height: math.unit(6 + 11 / 12, "feet"),
  11186. default: true
  11187. },
  11188. {
  11189. name: "Macro",
  11190. height: math.unit(490, "feet")
  11191. },
  11192. {
  11193. name: "Megamacro",
  11194. height: math.unit(10, "miles")
  11195. },
  11196. {
  11197. name: "Gigamacro",
  11198. height: math.unit(50, "miles")
  11199. },
  11200. ]
  11201. ))
  11202. characterMakers.push(() => makeCharacter(
  11203. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11204. {
  11205. front: {
  11206. height: math.unit(6, "feet"),
  11207. weight: math.unit(250, "lb"),
  11208. name: "Front",
  11209. image: {
  11210. source: "./media/characters/xylrem/front.svg",
  11211. extra: 3323 / 3050,
  11212. bottom: 0.065
  11213. }
  11214. },
  11215. },
  11216. [
  11217. {
  11218. name: "Micro",
  11219. height: math.unit(4, "feet")
  11220. },
  11221. {
  11222. name: "Normal",
  11223. height: math.unit(16, "feet"),
  11224. default: true
  11225. },
  11226. {
  11227. name: "Macro",
  11228. height: math.unit(2720, "feet")
  11229. },
  11230. {
  11231. name: "Megamacro",
  11232. height: math.unit(25000, "miles")
  11233. },
  11234. ]
  11235. ))
  11236. characterMakers.push(() => makeCharacter(
  11237. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11238. {
  11239. front: {
  11240. height: math.unit(8, "feet"),
  11241. weight: math.unit(250, "kg"),
  11242. name: "Front",
  11243. image: {
  11244. source: "./media/characters/ikideru/front.svg",
  11245. extra: 930 / 870,
  11246. bottom: 0.087
  11247. }
  11248. },
  11249. back: {
  11250. height: math.unit(8, "feet"),
  11251. weight: math.unit(250, "kg"),
  11252. name: "Back",
  11253. image: {
  11254. source: "./media/characters/ikideru/back.svg",
  11255. extra: 919 / 852,
  11256. bottom: 0.055
  11257. }
  11258. },
  11259. },
  11260. [
  11261. {
  11262. name: "Rare",
  11263. height: math.unit(8, "feet"),
  11264. default: true
  11265. },
  11266. {
  11267. name: "Playful Loom",
  11268. height: math.unit(80, "feet")
  11269. },
  11270. {
  11271. name: "City Leaner",
  11272. height: math.unit(230, "feet")
  11273. },
  11274. {
  11275. name: "Megamacro",
  11276. height: math.unit(2500, "feet")
  11277. },
  11278. {
  11279. name: "Gigamacro",
  11280. height: math.unit(26400, "feet")
  11281. },
  11282. {
  11283. name: "Tectonic Shifter",
  11284. height: math.unit(1.7, "megameters")
  11285. },
  11286. {
  11287. name: "Planet Carer",
  11288. height: math.unit(21, "megameters")
  11289. },
  11290. {
  11291. name: "God",
  11292. height: math.unit(11157.22, "parsecs")
  11293. },
  11294. ]
  11295. ))
  11296. characterMakers.push(() => makeCharacter(
  11297. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11298. {
  11299. front: {
  11300. height: math.unit(6, "feet"),
  11301. weight: math.unit(120, "lb"),
  11302. name: "Front",
  11303. image: {
  11304. source: "./media/characters/neo/front.svg"
  11305. }
  11306. },
  11307. },
  11308. [
  11309. {
  11310. name: "Micro",
  11311. height: math.unit(2, "inches"),
  11312. default: true
  11313. },
  11314. {
  11315. name: "Human Size",
  11316. height: math.unit(5 + 8 / 12, "feet")
  11317. },
  11318. ]
  11319. ))
  11320. characterMakers.push(() => makeCharacter(
  11321. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11322. {
  11323. front: {
  11324. height: math.unit(13 + 10 / 12, "feet"),
  11325. weight: math.unit(5320, "lb"),
  11326. name: "Front",
  11327. image: {
  11328. source: "./media/characters/chauncey-chantz/front.svg",
  11329. extra: 1587 / 1435,
  11330. bottom: 0.02
  11331. }
  11332. },
  11333. },
  11334. [
  11335. {
  11336. name: "Normal",
  11337. height: math.unit(13 + 10 / 12, "feet"),
  11338. default: true
  11339. },
  11340. {
  11341. name: "Macro",
  11342. height: math.unit(45, "feet")
  11343. },
  11344. {
  11345. name: "Megamacro",
  11346. height: math.unit(250, "miles")
  11347. },
  11348. {
  11349. name: "Planetary",
  11350. height: math.unit(10000, "miles")
  11351. },
  11352. {
  11353. name: "Galactic",
  11354. height: math.unit(40000, "parsecs")
  11355. },
  11356. {
  11357. name: "Universal",
  11358. height: math.unit(1, "yottameter")
  11359. },
  11360. ]
  11361. ))
  11362. characterMakers.push(() => makeCharacter(
  11363. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11364. {
  11365. front: {
  11366. height: math.unit(6, "feet"),
  11367. weight: math.unit(150, "lb"),
  11368. name: "Front",
  11369. image: {
  11370. source: "./media/characters/epifox/front.svg",
  11371. extra: 1,
  11372. bottom: 0.075
  11373. }
  11374. },
  11375. },
  11376. [
  11377. {
  11378. name: "Micro",
  11379. height: math.unit(6, "inches")
  11380. },
  11381. {
  11382. name: "Normal",
  11383. height: math.unit(12, "feet"),
  11384. default: true
  11385. },
  11386. {
  11387. name: "Macro",
  11388. height: math.unit(3810, "feet")
  11389. },
  11390. {
  11391. name: "Megamacro",
  11392. height: math.unit(500, "miles")
  11393. },
  11394. ]
  11395. ))
  11396. characterMakers.push(() => makeCharacter(
  11397. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11398. {
  11399. front: {
  11400. height: math.unit(1.8796, "m"),
  11401. weight: math.unit(230, "lb"),
  11402. name: "Front",
  11403. image: {
  11404. source: "./media/characters/colin-t/front.svg",
  11405. extra: 1272 / 1193,
  11406. bottom: 0.07
  11407. }
  11408. },
  11409. },
  11410. [
  11411. {
  11412. name: "Micro",
  11413. height: math.unit(0.571, "meters")
  11414. },
  11415. {
  11416. name: "Normal",
  11417. height: math.unit(1.8796, "meters"),
  11418. default: true
  11419. },
  11420. {
  11421. name: "Tall",
  11422. height: math.unit(4, "meters")
  11423. },
  11424. {
  11425. name: "Macro",
  11426. height: math.unit(67.241, "meters")
  11427. },
  11428. {
  11429. name: "Megamacro",
  11430. height: math.unit(371.856, "meters")
  11431. },
  11432. {
  11433. name: "Planetary",
  11434. height: math.unit(12631.5689, "km")
  11435. },
  11436. ]
  11437. ))
  11438. characterMakers.push(() => makeCharacter(
  11439. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11440. {
  11441. front: {
  11442. height: math.unit(1.85, "meters"),
  11443. weight: math.unit(80, "kg"),
  11444. name: "Front",
  11445. image: {
  11446. source: "./media/characters/matvei/front.svg",
  11447. extra: 614 / 594,
  11448. bottom: 0.01
  11449. }
  11450. },
  11451. },
  11452. [
  11453. {
  11454. name: "Normal",
  11455. height: math.unit(1.85, "meters"),
  11456. default: true
  11457. },
  11458. ]
  11459. ))
  11460. characterMakers.push(() => makeCharacter(
  11461. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11462. {
  11463. front: {
  11464. height: math.unit(5 + 9 / 12, "feet"),
  11465. weight: math.unit(70, "lb"),
  11466. name: "Front",
  11467. image: {
  11468. source: "./media/characters/quincy/front.svg",
  11469. extra: 3041 / 2751
  11470. }
  11471. },
  11472. back: {
  11473. height: math.unit(5 + 9 / 12, "feet"),
  11474. weight: math.unit(70, "lb"),
  11475. name: "Back",
  11476. image: {
  11477. source: "./media/characters/quincy/back.svg",
  11478. extra: 3041 / 2751
  11479. }
  11480. },
  11481. flying: {
  11482. height: math.unit(5 + 4 / 12, "feet"),
  11483. weight: math.unit(70, "lb"),
  11484. name: "Flying",
  11485. image: {
  11486. source: "./media/characters/quincy/flying.svg",
  11487. extra: 1044 / 930
  11488. }
  11489. },
  11490. },
  11491. [
  11492. {
  11493. name: "Micro",
  11494. height: math.unit(3, "cm")
  11495. },
  11496. {
  11497. name: "Normal",
  11498. height: math.unit(5 + 9 / 12, "feet")
  11499. },
  11500. {
  11501. name: "Macro",
  11502. height: math.unit(200, "meters"),
  11503. default: true
  11504. },
  11505. {
  11506. name: "Megamacro",
  11507. height: math.unit(1000, "meters")
  11508. },
  11509. ]
  11510. ))
  11511. characterMakers.push(() => makeCharacter(
  11512. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11513. {
  11514. front: {
  11515. height: math.unit(4 + 7 / 12, "feet"),
  11516. weight: math.unit(50, "lb"),
  11517. name: "Front",
  11518. image: {
  11519. source: "./media/characters/vanrel/front.svg",
  11520. extra: 1,
  11521. bottom: 0.02
  11522. }
  11523. },
  11524. frontAlt: {
  11525. height: math.unit(4 + 7 / 12, "feet"),
  11526. weight: math.unit(50, "lb"),
  11527. name: "Front-alt",
  11528. image: {
  11529. source: "./media/characters/vanrel/front-alt.svg",
  11530. extra: 1,
  11531. bottom: 15 / 1511
  11532. }
  11533. },
  11534. elemental: {
  11535. height: math.unit(3, "feet"),
  11536. weight: math.unit(50, "lb"),
  11537. name: "Elemental",
  11538. image: {
  11539. source: "./media/characters/vanrel/elemental.svg",
  11540. extra: 192.3 / 162.8,
  11541. bottom: 1.79 / 194.17
  11542. }
  11543. },
  11544. side: {
  11545. height: math.unit(4 + 7 / 12, "feet"),
  11546. weight: math.unit(50, "lb"),
  11547. name: "Side",
  11548. image: {
  11549. source: "./media/characters/vanrel/side.svg",
  11550. extra: 1,
  11551. bottom: 0.025
  11552. }
  11553. },
  11554. tome: {
  11555. height: math.unit(1.35, "feet"),
  11556. weight: math.unit(10, "lb"),
  11557. name: "Vanrel's Tome",
  11558. rename: true,
  11559. image: {
  11560. source: "./media/characters/vanrel/tome.svg"
  11561. }
  11562. },
  11563. beans: {
  11564. height: math.unit(0.89, "feet"),
  11565. name: "Beans",
  11566. image: {
  11567. source: "./media/characters/vanrel/beans.svg"
  11568. }
  11569. },
  11570. },
  11571. [
  11572. {
  11573. name: "Normal",
  11574. height: math.unit(4 + 7 / 12, "feet"),
  11575. default: true
  11576. },
  11577. ]
  11578. ))
  11579. characterMakers.push(() => makeCharacter(
  11580. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11581. {
  11582. front: {
  11583. height: math.unit(7 + 5 / 12, "feet"),
  11584. weight: math.unit(150, "lb"),
  11585. name: "Front",
  11586. image: {
  11587. source: "./media/characters/kuiper-vanrel/front.svg",
  11588. extra: 1118 / 1068,
  11589. bottom: 0.09
  11590. }
  11591. },
  11592. foot: {
  11593. height: math.unit(0.55, "meters"),
  11594. name: "Foot",
  11595. image: {
  11596. source: "./media/characters/kuiper-vanrel/foot.svg",
  11597. }
  11598. },
  11599. battle: {
  11600. height: math.unit(6.824, "feet"),
  11601. weight: math.unit(150, "lb"),
  11602. name: "Battle",
  11603. image: {
  11604. source: "./media/characters/kuiper-vanrel/battle.svg",
  11605. extra: 1466 / 1327,
  11606. bottom: 29 / 1492.5
  11607. }
  11608. },
  11609. battleAlt: {
  11610. height: math.unit(6.824, "feet"),
  11611. weight: math.unit(150, "lb"),
  11612. name: "Battle (Alt)",
  11613. image: {
  11614. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11615. extra: 2081 / 1965,
  11616. bottom: 40 / 2121
  11617. }
  11618. },
  11619. },
  11620. [
  11621. {
  11622. name: "Normal",
  11623. height: math.unit(7 + 5 / 12, "feet"),
  11624. default: true
  11625. },
  11626. ]
  11627. ))
  11628. characterMakers.push(() => makeCharacter(
  11629. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11630. {
  11631. front: {
  11632. height: math.unit(8 + 5 / 12, "feet"),
  11633. weight: math.unit(150, "lb"),
  11634. name: "Front",
  11635. image: {
  11636. source: "./media/characters/keset-vanrel/front.svg",
  11637. extra: 1150 / 1084,
  11638. bottom: 0.05
  11639. }
  11640. },
  11641. hand: {
  11642. height: math.unit(0.6, "meters"),
  11643. name: "Hand",
  11644. image: {
  11645. source: "./media/characters/keset-vanrel/hand.svg"
  11646. }
  11647. },
  11648. foot: {
  11649. height: math.unit(0.94978, "meters"),
  11650. name: "Foot",
  11651. image: {
  11652. source: "./media/characters/keset-vanrel/foot.svg"
  11653. }
  11654. },
  11655. battle: {
  11656. height: math.unit(7.408, "feet"),
  11657. weight: math.unit(150, "lb"),
  11658. name: "Battle",
  11659. image: {
  11660. source: "./media/characters/keset-vanrel/battle.svg",
  11661. extra: 1890 / 1386,
  11662. bottom: 73.28 / 1970
  11663. }
  11664. },
  11665. },
  11666. [
  11667. {
  11668. name: "Normal",
  11669. height: math.unit(8 + 5 / 12, "feet"),
  11670. default: true
  11671. },
  11672. ]
  11673. ))
  11674. characterMakers.push(() => makeCharacter(
  11675. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11676. {
  11677. front: {
  11678. height: math.unit(6, "feet"),
  11679. weight: math.unit(150, "lb"),
  11680. name: "Front",
  11681. image: {
  11682. source: "./media/characters/neos/front.svg",
  11683. extra: 1696 / 992,
  11684. bottom: 0.14
  11685. }
  11686. },
  11687. },
  11688. [
  11689. {
  11690. name: "Normal",
  11691. height: math.unit(54, "cm"),
  11692. default: true
  11693. },
  11694. {
  11695. name: "Macro",
  11696. height: math.unit(100, "m")
  11697. },
  11698. {
  11699. name: "Megamacro",
  11700. height: math.unit(10, "km")
  11701. },
  11702. {
  11703. name: "Megamacro+",
  11704. height: math.unit(100, "km")
  11705. },
  11706. {
  11707. name: "Gigamacro",
  11708. height: math.unit(100, "Mm")
  11709. },
  11710. {
  11711. name: "Teramacro",
  11712. height: math.unit(100, "Gm")
  11713. },
  11714. {
  11715. name: "Examacro",
  11716. height: math.unit(100, "Em")
  11717. },
  11718. {
  11719. name: "Godly",
  11720. height: math.unit(10000, "Ym")
  11721. },
  11722. {
  11723. name: "Beyond Godly",
  11724. height: math.unit(25, "multiverses")
  11725. },
  11726. ]
  11727. ))
  11728. characterMakers.push(() => makeCharacter(
  11729. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11730. {
  11731. feminine: {
  11732. height: math.unit(5, "feet"),
  11733. weight: math.unit(100, "lb"),
  11734. name: "Feminine",
  11735. image: {
  11736. source: "./media/characters/sammy-mouse/feminine.svg",
  11737. extra: 2526 / 2425,
  11738. bottom: 0.123
  11739. }
  11740. },
  11741. masculine: {
  11742. height: math.unit(5, "feet"),
  11743. weight: math.unit(100, "lb"),
  11744. name: "Masculine",
  11745. image: {
  11746. source: "./media/characters/sammy-mouse/masculine.svg",
  11747. extra: 2526 / 2425,
  11748. bottom: 0.123
  11749. }
  11750. },
  11751. },
  11752. [
  11753. {
  11754. name: "Micro",
  11755. height: math.unit(5, "inches")
  11756. },
  11757. {
  11758. name: "Normal",
  11759. height: math.unit(5, "feet"),
  11760. default: true
  11761. },
  11762. {
  11763. name: "Macro",
  11764. height: math.unit(60, "feet")
  11765. },
  11766. ]
  11767. ))
  11768. characterMakers.push(() => makeCharacter(
  11769. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11770. {
  11771. front: {
  11772. height: math.unit(4, "feet"),
  11773. weight: math.unit(50, "lb"),
  11774. name: "Front",
  11775. image: {
  11776. source: "./media/characters/kole/front.svg",
  11777. extra: 1423 / 1303,
  11778. bottom: 0.025
  11779. }
  11780. },
  11781. back: {
  11782. height: math.unit(4, "feet"),
  11783. weight: math.unit(50, "lb"),
  11784. name: "Back",
  11785. image: {
  11786. source: "./media/characters/kole/back.svg",
  11787. extra: 1426 / 1280,
  11788. bottom: 0.02
  11789. }
  11790. },
  11791. },
  11792. [
  11793. {
  11794. name: "Normal",
  11795. height: math.unit(4, "feet"),
  11796. default: true
  11797. },
  11798. ]
  11799. ))
  11800. characterMakers.push(() => makeCharacter(
  11801. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11802. {
  11803. front: {
  11804. height: math.unit(2 + 6 / 12, "feet"),
  11805. weight: math.unit(20, "lb"),
  11806. name: "Front",
  11807. image: {
  11808. source: "./media/characters/rufran/front.svg",
  11809. extra: 2041 / 1839,
  11810. bottom: 0.055
  11811. }
  11812. },
  11813. back: {
  11814. height: math.unit(2 + 6 / 12, "feet"),
  11815. weight: math.unit(20, "lb"),
  11816. name: "Back",
  11817. image: {
  11818. source: "./media/characters/rufran/back.svg",
  11819. extra: 2054 / 1839,
  11820. bottom: 0.01
  11821. }
  11822. },
  11823. hand: {
  11824. height: math.unit(0.2166, "meters"),
  11825. name: "Hand",
  11826. image: {
  11827. source: "./media/characters/rufran/hand.svg"
  11828. }
  11829. },
  11830. foot: {
  11831. height: math.unit(0.185, "meters"),
  11832. name: "Foot",
  11833. image: {
  11834. source: "./media/characters/rufran/foot.svg"
  11835. }
  11836. },
  11837. },
  11838. [
  11839. {
  11840. name: "Micro",
  11841. height: math.unit(1, "inch")
  11842. },
  11843. {
  11844. name: "Normal",
  11845. height: math.unit(2 + 6 / 12, "feet"),
  11846. default: true
  11847. },
  11848. {
  11849. name: "Big",
  11850. height: math.unit(60, "feet")
  11851. },
  11852. {
  11853. name: "Macro",
  11854. height: math.unit(325, "feet")
  11855. },
  11856. ]
  11857. ))
  11858. characterMakers.push(() => makeCharacter(
  11859. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11860. {
  11861. front: {
  11862. height: math.unit(0.3, "meters"),
  11863. weight: math.unit(3.5, "kg"),
  11864. name: "Front",
  11865. image: {
  11866. source: "./media/characters/chip/front.svg",
  11867. extra: 748 / 674
  11868. }
  11869. },
  11870. },
  11871. [
  11872. {
  11873. name: "Micro",
  11874. height: math.unit(1, "inch"),
  11875. default: true
  11876. },
  11877. ]
  11878. ))
  11879. characterMakers.push(() => makeCharacter(
  11880. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11881. {
  11882. side: {
  11883. height: math.unit(2.3, "meters"),
  11884. weight: math.unit(3500, "lb"),
  11885. name: "Side",
  11886. image: {
  11887. source: "./media/characters/torvid/side.svg",
  11888. extra: 1972 / 722,
  11889. bottom: 0.035
  11890. }
  11891. },
  11892. },
  11893. [
  11894. {
  11895. name: "Normal",
  11896. height: math.unit(2.3, "meters"),
  11897. default: true
  11898. },
  11899. ]
  11900. ))
  11901. characterMakers.push(() => makeCharacter(
  11902. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11903. {
  11904. front: {
  11905. height: math.unit(2, "meters"),
  11906. weight: math.unit(150.5, "kg"),
  11907. name: "Front",
  11908. image: {
  11909. source: "./media/characters/susan/front.svg",
  11910. extra: 693 / 635,
  11911. bottom: 0.05
  11912. }
  11913. },
  11914. },
  11915. [
  11916. {
  11917. name: "Megamacro",
  11918. height: math.unit(505, "miles"),
  11919. default: true
  11920. },
  11921. ]
  11922. ))
  11923. characterMakers.push(() => makeCharacter(
  11924. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11925. {
  11926. front: {
  11927. height: math.unit(6, "feet"),
  11928. weight: math.unit(150, "lb"),
  11929. name: "Front",
  11930. image: {
  11931. source: "./media/characters/raindrops/front.svg",
  11932. extra: 2655 / 2461,
  11933. bottom: 49 / 2705
  11934. }
  11935. },
  11936. back: {
  11937. height: math.unit(6, "feet"),
  11938. weight: math.unit(150, "lb"),
  11939. name: "Back",
  11940. image: {
  11941. source: "./media/characters/raindrops/back.svg",
  11942. extra: 2574 / 2400,
  11943. bottom: 65 / 2634
  11944. }
  11945. },
  11946. },
  11947. [
  11948. {
  11949. name: "Micro",
  11950. height: math.unit(6, "inches")
  11951. },
  11952. {
  11953. name: "Normal",
  11954. height: math.unit(6 + 2 / 12, "feet")
  11955. },
  11956. {
  11957. name: "Macro",
  11958. height: math.unit(131, "feet"),
  11959. default: true
  11960. },
  11961. {
  11962. name: "Megamacro",
  11963. height: math.unit(15, "miles")
  11964. },
  11965. {
  11966. name: "Gigamacro",
  11967. height: math.unit(4000, "miles")
  11968. },
  11969. {
  11970. name: "Teramacro",
  11971. height: math.unit(315000, "miles")
  11972. },
  11973. ]
  11974. ))
  11975. characterMakers.push(() => makeCharacter(
  11976. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11977. {
  11978. front: {
  11979. height: math.unit(2.794, "meters"),
  11980. weight: math.unit(325, "kg"),
  11981. name: "Front",
  11982. image: {
  11983. source: "./media/characters/tezwa/front.svg",
  11984. extra: 2083 / 1906,
  11985. bottom: 0.031
  11986. }
  11987. },
  11988. foot: {
  11989. height: math.unit(0.687, "meters"),
  11990. name: "Foot",
  11991. image: {
  11992. source: "./media/characters/tezwa/foot.svg"
  11993. }
  11994. },
  11995. },
  11996. [
  11997. {
  11998. name: "Normal",
  11999. height: math.unit(9 + 2 / 12, "feet"),
  12000. default: true
  12001. },
  12002. ]
  12003. ))
  12004. characterMakers.push(() => makeCharacter(
  12005. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12006. {
  12007. front: {
  12008. height: math.unit(58, "feet"),
  12009. weight: math.unit(89000, "lb"),
  12010. name: "Front",
  12011. image: {
  12012. source: "./media/characters/typhus/front.svg",
  12013. extra: 816 / 800,
  12014. bottom: 0.065
  12015. }
  12016. },
  12017. },
  12018. [
  12019. {
  12020. name: "Macro",
  12021. height: math.unit(58, "feet"),
  12022. default: true
  12023. },
  12024. ]
  12025. ))
  12026. characterMakers.push(() => makeCharacter(
  12027. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12028. {
  12029. front: {
  12030. height: math.unit(12, "feet"),
  12031. weight: math.unit(6, "tonnes"),
  12032. name: "Front",
  12033. image: {
  12034. source: "./media/characters/lyra-von-wulf/front.svg",
  12035. extra: 1,
  12036. bottom: 0.10
  12037. }
  12038. },
  12039. frontMecha: {
  12040. height: math.unit(12, "feet"),
  12041. weight: math.unit(12, "tonnes"),
  12042. name: "Front (Mecha)",
  12043. image: {
  12044. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12045. extra: 1,
  12046. bottom: 0.042
  12047. }
  12048. },
  12049. maw: {
  12050. height: math.unit(2.2, "feet"),
  12051. name: "Maw",
  12052. image: {
  12053. source: "./media/characters/lyra-von-wulf/maw.svg"
  12054. }
  12055. },
  12056. },
  12057. [
  12058. {
  12059. name: "Normal",
  12060. height: math.unit(12, "feet"),
  12061. default: true
  12062. },
  12063. {
  12064. name: "Classic",
  12065. height: math.unit(50, "feet")
  12066. },
  12067. {
  12068. name: "Macro",
  12069. height: math.unit(500, "feet")
  12070. },
  12071. {
  12072. name: "Megamacro",
  12073. height: math.unit(1, "mile")
  12074. },
  12075. {
  12076. name: "Gigamacro",
  12077. height: math.unit(400, "miles")
  12078. },
  12079. {
  12080. name: "Teramacro",
  12081. height: math.unit(22000, "miles")
  12082. },
  12083. {
  12084. name: "Solarmacro",
  12085. height: math.unit(8600000, "miles")
  12086. },
  12087. {
  12088. name: "Galactic",
  12089. height: math.unit(1057000, "lightyears")
  12090. },
  12091. ]
  12092. ))
  12093. characterMakers.push(() => makeCharacter(
  12094. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12095. {
  12096. front: {
  12097. height: math.unit(6 + 10 / 12, "feet"),
  12098. weight: math.unit(150, "lb"),
  12099. name: "Front",
  12100. image: {
  12101. source: "./media/characters/dixon/front.svg",
  12102. extra: 3361 / 3209,
  12103. bottom: 0.01
  12104. }
  12105. },
  12106. },
  12107. [
  12108. {
  12109. name: "Normal",
  12110. height: math.unit(6 + 10 / 12, "feet"),
  12111. default: true
  12112. },
  12113. {
  12114. name: "Big",
  12115. height: math.unit(12, "meters")
  12116. },
  12117. {
  12118. name: "Macro",
  12119. height: math.unit(500, "meters")
  12120. },
  12121. {
  12122. name: "Megamacro",
  12123. height: math.unit(2, "km")
  12124. },
  12125. ]
  12126. ))
  12127. characterMakers.push(() => makeCharacter(
  12128. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12129. {
  12130. front: {
  12131. height: math.unit(185, "cm"),
  12132. weight: math.unit(68, "kg"),
  12133. name: "Front",
  12134. image: {
  12135. source: "./media/characters/kauko/front.svg",
  12136. extra: 1455 / 1421,
  12137. bottom: 0.03
  12138. }
  12139. },
  12140. back: {
  12141. height: math.unit(185, "cm"),
  12142. weight: math.unit(68, "kg"),
  12143. name: "Back",
  12144. image: {
  12145. source: "./media/characters/kauko/back.svg",
  12146. extra: 1455 / 1421,
  12147. bottom: 0.004
  12148. }
  12149. },
  12150. },
  12151. [
  12152. {
  12153. name: "Normal",
  12154. height: math.unit(185, "cm"),
  12155. default: true
  12156. },
  12157. ]
  12158. ))
  12159. characterMakers.push(() => makeCharacter(
  12160. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12161. {
  12162. front: {
  12163. height: math.unit(6, "feet"),
  12164. weight: math.unit(150, "kg"),
  12165. name: "Front",
  12166. image: {
  12167. source: "./media/characters/varg/front.svg",
  12168. extra: 1108 / 1018,
  12169. bottom: 0.0375
  12170. }
  12171. },
  12172. },
  12173. [
  12174. {
  12175. name: "Normal",
  12176. height: math.unit(5, "meters")
  12177. },
  12178. {
  12179. name: "Macro",
  12180. height: math.unit(200, "meters")
  12181. },
  12182. {
  12183. name: "Megamacro",
  12184. height: math.unit(20, "kilometers")
  12185. },
  12186. {
  12187. name: "True Size",
  12188. height: math.unit(211, "km"),
  12189. default: true
  12190. },
  12191. {
  12192. name: "Gigamacro",
  12193. height: math.unit(1000, "km")
  12194. },
  12195. {
  12196. name: "Gigamacro+",
  12197. height: math.unit(8000, "km")
  12198. },
  12199. {
  12200. name: "Teramacro",
  12201. height: math.unit(1000000, "km")
  12202. },
  12203. ]
  12204. ))
  12205. characterMakers.push(() => makeCharacter(
  12206. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12207. {
  12208. front: {
  12209. height: math.unit(7 + 7 / 12, "feet"),
  12210. weight: math.unit(267, "lb"),
  12211. name: "Front",
  12212. image: {
  12213. source: "./media/characters/dayza/front.svg",
  12214. extra: 1262 / 1200,
  12215. bottom: 0.035
  12216. }
  12217. },
  12218. side: {
  12219. height: math.unit(7 + 7 / 12, "feet"),
  12220. weight: math.unit(267, "lb"),
  12221. name: "Side",
  12222. image: {
  12223. source: "./media/characters/dayza/side.svg",
  12224. extra: 1295 / 1245,
  12225. bottom: 0.05
  12226. }
  12227. },
  12228. back: {
  12229. height: math.unit(7 + 7 / 12, "feet"),
  12230. weight: math.unit(267, "lb"),
  12231. name: "Back",
  12232. image: {
  12233. source: "./media/characters/dayza/back.svg",
  12234. extra: 1241 / 1170
  12235. }
  12236. },
  12237. },
  12238. [
  12239. {
  12240. name: "Normal",
  12241. height: math.unit(7 + 7 / 12, "feet"),
  12242. default: true
  12243. },
  12244. {
  12245. name: "Macro",
  12246. height: math.unit(155, "feet")
  12247. },
  12248. ]
  12249. ))
  12250. characterMakers.push(() => makeCharacter(
  12251. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12252. {
  12253. front: {
  12254. height: math.unit(6 + 5 / 12, "feet"),
  12255. weight: math.unit(160, "lb"),
  12256. name: "Front",
  12257. image: {
  12258. source: "./media/characters/xanthos/front.svg",
  12259. extra: 1,
  12260. bottom: 0.04
  12261. }
  12262. },
  12263. back: {
  12264. height: math.unit(6 + 5 / 12, "feet"),
  12265. weight: math.unit(160, "lb"),
  12266. name: "Back",
  12267. image: {
  12268. source: "./media/characters/xanthos/back.svg",
  12269. extra: 1,
  12270. bottom: 0.03
  12271. }
  12272. },
  12273. hand: {
  12274. height: math.unit(0.928, "feet"),
  12275. name: "Hand",
  12276. image: {
  12277. source: "./media/characters/xanthos/hand.svg"
  12278. }
  12279. },
  12280. foot: {
  12281. height: math.unit(1.286, "feet"),
  12282. name: "Foot",
  12283. image: {
  12284. source: "./media/characters/xanthos/foot.svg"
  12285. }
  12286. },
  12287. },
  12288. [
  12289. {
  12290. name: "Normal",
  12291. height: math.unit(6 + 5 / 12, "feet"),
  12292. default: true
  12293. },
  12294. {
  12295. name: "Normal+",
  12296. height: math.unit(6, "meters")
  12297. },
  12298. {
  12299. name: "Macro",
  12300. height: math.unit(40, "feet")
  12301. },
  12302. {
  12303. name: "Macro+",
  12304. height: math.unit(200, "meters")
  12305. },
  12306. {
  12307. name: "Megamacro",
  12308. height: math.unit(20, "km")
  12309. },
  12310. {
  12311. name: "Megamacro+",
  12312. height: math.unit(100, "km")
  12313. },
  12314. ]
  12315. ))
  12316. characterMakers.push(() => makeCharacter(
  12317. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12318. {
  12319. front: {
  12320. height: math.unit(6 + 3 / 12, "feet"),
  12321. weight: math.unit(215, "lb"),
  12322. name: "Front",
  12323. image: {
  12324. source: "./media/characters/grynn/front.svg",
  12325. extra: 4627 / 4209,
  12326. bottom: 0.047
  12327. }
  12328. },
  12329. },
  12330. [
  12331. {
  12332. name: "Micro",
  12333. height: math.unit(6, "inches")
  12334. },
  12335. {
  12336. name: "Normal",
  12337. height: math.unit(6 + 3 / 12, "feet"),
  12338. default: true
  12339. },
  12340. {
  12341. name: "Big",
  12342. height: math.unit(104, "feet")
  12343. },
  12344. {
  12345. name: "Macro",
  12346. height: math.unit(944, "feet")
  12347. },
  12348. {
  12349. name: "Macro+",
  12350. height: math.unit(9480, "feet")
  12351. },
  12352. {
  12353. name: "Megamacro",
  12354. height: math.unit(78752, "feet")
  12355. },
  12356. {
  12357. name: "Megamacro+",
  12358. height: math.unit(630128, "feet")
  12359. },
  12360. {
  12361. name: "Megamacro++",
  12362. height: math.unit(3150695, "feet")
  12363. },
  12364. ]
  12365. ))
  12366. characterMakers.push(() => makeCharacter(
  12367. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12368. {
  12369. front: {
  12370. height: math.unit(7 + 5 / 12, "feet"),
  12371. weight: math.unit(450, "lb"),
  12372. name: "Front",
  12373. image: {
  12374. source: "./media/characters/mocha-aura/front.svg",
  12375. extra: 1907 / 1817,
  12376. bottom: 0.04
  12377. }
  12378. },
  12379. back: {
  12380. height: math.unit(7 + 5 / 12, "feet"),
  12381. weight: math.unit(450, "lb"),
  12382. name: "Back",
  12383. image: {
  12384. source: "./media/characters/mocha-aura/back.svg",
  12385. extra: 1900 / 1825,
  12386. bottom: 0.045
  12387. }
  12388. },
  12389. },
  12390. [
  12391. {
  12392. name: "Nano",
  12393. height: math.unit(1, "nm")
  12394. },
  12395. {
  12396. name: "Megamicro",
  12397. height: math.unit(1, "mm")
  12398. },
  12399. {
  12400. name: "Micro",
  12401. height: math.unit(3, "inches")
  12402. },
  12403. {
  12404. name: "Normal",
  12405. height: math.unit(7 + 5 / 12, "feet"),
  12406. default: true
  12407. },
  12408. {
  12409. name: "Macro",
  12410. height: math.unit(30, "feet")
  12411. },
  12412. {
  12413. name: "Megamacro",
  12414. height: math.unit(3500, "feet")
  12415. },
  12416. {
  12417. name: "Teramacro",
  12418. height: math.unit(500000, "miles")
  12419. },
  12420. {
  12421. name: "Petamacro",
  12422. height: math.unit(50000000000000000, "parsecs")
  12423. },
  12424. ]
  12425. ))
  12426. characterMakers.push(() => makeCharacter(
  12427. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12428. {
  12429. front: {
  12430. height: math.unit(6, "feet"),
  12431. weight: math.unit(150, "lb"),
  12432. name: "Front",
  12433. image: {
  12434. source: "./media/characters/ilisha-devya/front.svg",
  12435. extra: 1,
  12436. bottom: 0.175
  12437. }
  12438. },
  12439. back: {
  12440. height: math.unit(6, "feet"),
  12441. weight: math.unit(150, "lb"),
  12442. name: "Back",
  12443. image: {
  12444. source: "./media/characters/ilisha-devya/back.svg",
  12445. extra: 1,
  12446. bottom: 0.015
  12447. }
  12448. },
  12449. },
  12450. [
  12451. {
  12452. name: "Macro",
  12453. height: math.unit(500, "feet"),
  12454. default: true
  12455. },
  12456. {
  12457. name: "Megamacro",
  12458. height: math.unit(10, "miles")
  12459. },
  12460. {
  12461. name: "Gigamacro",
  12462. height: math.unit(100000, "miles")
  12463. },
  12464. {
  12465. name: "Examacro",
  12466. height: math.unit(1e9, "lightyears")
  12467. },
  12468. {
  12469. name: "Omniversal",
  12470. height: math.unit(1e33, "lightyears")
  12471. },
  12472. {
  12473. name: "Beyond Infinite",
  12474. height: math.unit(1e100, "lightyears")
  12475. },
  12476. ]
  12477. ))
  12478. characterMakers.push(() => makeCharacter(
  12479. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12480. {
  12481. Side: {
  12482. height: math.unit(6, "feet"),
  12483. weight: math.unit(150, "lb"),
  12484. name: "Side",
  12485. image: {
  12486. source: "./media/characters/mira/side.svg",
  12487. extra: 900 / 799,
  12488. bottom: 0.02
  12489. }
  12490. },
  12491. },
  12492. [
  12493. {
  12494. name: "Human Size",
  12495. height: math.unit(6, "feet")
  12496. },
  12497. {
  12498. name: "Macro",
  12499. height: math.unit(100, "feet"),
  12500. default: true
  12501. },
  12502. {
  12503. name: "Megamacro",
  12504. height: math.unit(10, "miles")
  12505. },
  12506. {
  12507. name: "Gigamacro",
  12508. height: math.unit(25000, "miles")
  12509. },
  12510. {
  12511. name: "Teramacro",
  12512. height: math.unit(300, "AU")
  12513. },
  12514. {
  12515. name: "Full Size",
  12516. height: math.unit(4.5e10, "lightyears")
  12517. },
  12518. ]
  12519. ))
  12520. characterMakers.push(() => makeCharacter(
  12521. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12522. {
  12523. front: {
  12524. height: math.unit(6, "feet"),
  12525. weight: math.unit(150, "lb"),
  12526. name: "Front",
  12527. image: {
  12528. source: "./media/characters/holly/front.svg",
  12529. extra: 639 / 606
  12530. }
  12531. },
  12532. back: {
  12533. height: math.unit(6, "feet"),
  12534. weight: math.unit(150, "lb"),
  12535. name: "Back",
  12536. image: {
  12537. source: "./media/characters/holly/back.svg",
  12538. extra: 623 / 598
  12539. }
  12540. },
  12541. frontWorking: {
  12542. height: math.unit(6, "feet"),
  12543. weight: math.unit(150, "lb"),
  12544. name: "Front (Working)",
  12545. image: {
  12546. source: "./media/characters/holly/front-working.svg",
  12547. extra: 607 / 577,
  12548. bottom: 0.048
  12549. }
  12550. },
  12551. },
  12552. [
  12553. {
  12554. name: "Normal",
  12555. height: math.unit(12 + 3 / 12, "feet"),
  12556. default: true
  12557. },
  12558. ]
  12559. ))
  12560. characterMakers.push(() => makeCharacter(
  12561. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12562. {
  12563. front: {
  12564. height: math.unit(6, "feet"),
  12565. weight: math.unit(150, "lb"),
  12566. name: "Front",
  12567. image: {
  12568. source: "./media/characters/porter/front.svg",
  12569. extra: 1,
  12570. bottom: 0.01
  12571. }
  12572. },
  12573. frontRobes: {
  12574. height: math.unit(6, "feet"),
  12575. weight: math.unit(150, "lb"),
  12576. name: "Front (Robes)",
  12577. image: {
  12578. source: "./media/characters/porter/front-robes.svg",
  12579. extra: 1.01,
  12580. bottom: 0.01
  12581. }
  12582. },
  12583. },
  12584. [
  12585. {
  12586. name: "Normal",
  12587. height: math.unit(11 + 9 / 12, "feet"),
  12588. default: true
  12589. },
  12590. ]
  12591. ))
  12592. characterMakers.push(() => makeCharacter(
  12593. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12594. {
  12595. legendary: {
  12596. height: math.unit(6, "feet"),
  12597. weight: math.unit(150, "lb"),
  12598. name: "Legendary",
  12599. image: {
  12600. source: "./media/characters/lucy/legendary.svg",
  12601. extra: 1355 / 1100,
  12602. bottom: 0.045
  12603. }
  12604. },
  12605. },
  12606. [
  12607. {
  12608. name: "Legendary",
  12609. height: math.unit(86882 * 2, "miles"),
  12610. default: true
  12611. },
  12612. ]
  12613. ))
  12614. characterMakers.push(() => makeCharacter(
  12615. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12616. {
  12617. front: {
  12618. height: math.unit(6, "feet"),
  12619. weight: math.unit(150, "lb"),
  12620. name: "Front",
  12621. image: {
  12622. source: "./media/characters/drusilla/front.svg",
  12623. extra: 678 / 635,
  12624. bottom: 0.03
  12625. }
  12626. },
  12627. back: {
  12628. height: math.unit(6, "feet"),
  12629. weight: math.unit(150, "lb"),
  12630. name: "Back",
  12631. image: {
  12632. source: "./media/characters/drusilla/back.svg",
  12633. extra: 678 / 635,
  12634. bottom: 0.005
  12635. }
  12636. },
  12637. },
  12638. [
  12639. {
  12640. name: "Macro",
  12641. height: math.unit(100, "feet")
  12642. },
  12643. {
  12644. name: "Canon Height",
  12645. height: math.unit(2000, "feet"),
  12646. default: true
  12647. },
  12648. ]
  12649. ))
  12650. characterMakers.push(() => makeCharacter(
  12651. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12652. {
  12653. front: {
  12654. height: math.unit(6, "feet"),
  12655. weight: math.unit(180, "lb"),
  12656. name: "Front",
  12657. image: {
  12658. source: "./media/characters/renard-thatch/front.svg",
  12659. extra: 2411 / 2275,
  12660. bottom: 0.01
  12661. }
  12662. },
  12663. frontPosing: {
  12664. height: math.unit(6, "feet"),
  12665. weight: math.unit(180, "lb"),
  12666. name: "Front (Posing)",
  12667. image: {
  12668. source: "./media/characters/renard-thatch/front-posing.svg",
  12669. extra: 2381 / 2261,
  12670. bottom: 0.01
  12671. }
  12672. },
  12673. back: {
  12674. height: math.unit(6, "feet"),
  12675. weight: math.unit(180, "lb"),
  12676. name: "Back",
  12677. image: {
  12678. source: "./media/characters/renard-thatch/back.svg",
  12679. extra: 2428 / 2288
  12680. }
  12681. },
  12682. },
  12683. [
  12684. {
  12685. name: "Micro",
  12686. height: math.unit(3, "inches")
  12687. },
  12688. {
  12689. name: "Default",
  12690. height: math.unit(6, "feet"),
  12691. default: true
  12692. },
  12693. {
  12694. name: "Macro",
  12695. height: math.unit(75, "feet")
  12696. },
  12697. ]
  12698. ))
  12699. characterMakers.push(() => makeCharacter(
  12700. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12701. {
  12702. front: {
  12703. height: math.unit(1450, "feet"),
  12704. weight: math.unit(1.21e6, "tons"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/sekvra/front.svg",
  12708. extra: 1,
  12709. bottom: 0.03
  12710. }
  12711. },
  12712. frontClothed: {
  12713. height: math.unit(1450, "feet"),
  12714. weight: math.unit(1.21e6, "tons"),
  12715. name: "Front (Clothed)",
  12716. image: {
  12717. source: "./media/characters/sekvra/front-clothed.svg",
  12718. extra: 1,
  12719. bottom: 0.03
  12720. }
  12721. },
  12722. side: {
  12723. height: math.unit(1450, "feet"),
  12724. weight: math.unit(1.21e6, "tons"),
  12725. name: "Side",
  12726. image: {
  12727. source: "./media/characters/sekvra/side.svg",
  12728. extra: 1,
  12729. bottom: 0.025
  12730. }
  12731. },
  12732. back: {
  12733. height: math.unit(1450, "feet"),
  12734. weight: math.unit(1.21e6, "tons"),
  12735. name: "Back",
  12736. image: {
  12737. source: "./media/characters/sekvra/back.svg",
  12738. extra: 1,
  12739. bottom: 0.005
  12740. }
  12741. },
  12742. },
  12743. [
  12744. {
  12745. name: "Macro",
  12746. height: math.unit(1450, "feet"),
  12747. default: true
  12748. },
  12749. {
  12750. name: "Megamacro",
  12751. height: math.unit(15000, "feet")
  12752. },
  12753. ]
  12754. ))
  12755. characterMakers.push(() => makeCharacter(
  12756. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12757. {
  12758. front: {
  12759. height: math.unit(6, "feet"),
  12760. weight: math.unit(150, "lb"),
  12761. name: "Front",
  12762. image: {
  12763. source: "./media/characters/carmine/front.svg",
  12764. extra: 1,
  12765. bottom: 0.035
  12766. }
  12767. },
  12768. frontArmor: {
  12769. height: math.unit(6, "feet"),
  12770. weight: math.unit(150, "lb"),
  12771. name: "Front (Armor)",
  12772. image: {
  12773. source: "./media/characters/carmine/front-armor.svg",
  12774. extra: 1,
  12775. bottom: 0.035
  12776. }
  12777. },
  12778. },
  12779. [
  12780. {
  12781. name: "Large",
  12782. height: math.unit(1, "mile")
  12783. },
  12784. {
  12785. name: "Huge",
  12786. height: math.unit(40, "miles"),
  12787. default: true
  12788. },
  12789. {
  12790. name: "Colossal",
  12791. height: math.unit(2500, "miles")
  12792. },
  12793. ]
  12794. ))
  12795. characterMakers.push(() => makeCharacter(
  12796. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12797. {
  12798. front: {
  12799. height: math.unit(6, "feet"),
  12800. weight: math.unit(150, "lb"),
  12801. name: "Front",
  12802. image: {
  12803. source: "./media/characters/elyssia/front.svg",
  12804. extra: 2201 / 2035,
  12805. bottom: 0.05
  12806. }
  12807. },
  12808. frontClothed: {
  12809. height: math.unit(6, "feet"),
  12810. weight: math.unit(150, "lb"),
  12811. name: "Front (Clothed)",
  12812. image: {
  12813. source: "./media/characters/elyssia/front-clothed.svg",
  12814. extra: 2201 / 2035,
  12815. bottom: 0.05
  12816. }
  12817. },
  12818. back: {
  12819. height: math.unit(6, "feet"),
  12820. weight: math.unit(150, "lb"),
  12821. name: "Back",
  12822. image: {
  12823. source: "./media/characters/elyssia/back.svg",
  12824. extra: 2201 / 2035,
  12825. bottom: 0.013
  12826. }
  12827. },
  12828. },
  12829. [
  12830. {
  12831. name: "Smaller",
  12832. height: math.unit(150, "feet")
  12833. },
  12834. {
  12835. name: "Standard",
  12836. height: math.unit(1400, "feet"),
  12837. default: true
  12838. },
  12839. {
  12840. name: "Distracted",
  12841. height: math.unit(15000, "feet")
  12842. },
  12843. ]
  12844. ))
  12845. characterMakers.push(() => makeCharacter(
  12846. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12847. {
  12848. front: {
  12849. height: math.unit(7 + 4 / 12, "feet"),
  12850. weight: math.unit(500, "lb"),
  12851. name: "Front",
  12852. image: {
  12853. source: "./media/characters/geno-maxwell/front.svg",
  12854. extra: 2207 / 2040,
  12855. bottom: 0.015
  12856. }
  12857. },
  12858. },
  12859. [
  12860. {
  12861. name: "Micro",
  12862. height: math.unit(3, "inches")
  12863. },
  12864. {
  12865. name: "Normal",
  12866. height: math.unit(7 + 4 / 12, "feet"),
  12867. default: true
  12868. },
  12869. {
  12870. name: "Macro",
  12871. height: math.unit(220, "feet")
  12872. },
  12873. {
  12874. name: "Megamacro",
  12875. height: math.unit(11, "miles")
  12876. },
  12877. ]
  12878. ))
  12879. characterMakers.push(() => makeCharacter(
  12880. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12881. {
  12882. front: {
  12883. height: math.unit(7 + 4 / 12, "feet"),
  12884. weight: math.unit(500, "lb"),
  12885. name: "Front",
  12886. image: {
  12887. source: "./media/characters/regena-maxwell/front.svg",
  12888. extra: 3115 / 2770,
  12889. bottom: 0.02
  12890. }
  12891. },
  12892. },
  12893. [
  12894. {
  12895. name: "Normal",
  12896. height: math.unit(7 + 4 / 12, "feet"),
  12897. default: true
  12898. },
  12899. {
  12900. name: "Macro",
  12901. height: math.unit(220, "feet")
  12902. },
  12903. {
  12904. name: "Megamacro",
  12905. height: math.unit(11, "miles")
  12906. },
  12907. ]
  12908. ))
  12909. characterMakers.push(() => makeCharacter(
  12910. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12911. {
  12912. front: {
  12913. height: math.unit(6, "feet"),
  12914. weight: math.unit(150, "lb"),
  12915. name: "Front",
  12916. image: {
  12917. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12918. extra: 860 / 690,
  12919. bottom: 0.03
  12920. }
  12921. },
  12922. },
  12923. [
  12924. {
  12925. name: "Normal",
  12926. height: math.unit(1.7, "meters"),
  12927. default: true
  12928. },
  12929. ]
  12930. ))
  12931. characterMakers.push(() => makeCharacter(
  12932. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12933. {
  12934. front: {
  12935. height: math.unit(6, "feet"),
  12936. weight: math.unit(150, "lb"),
  12937. name: "Front",
  12938. image: {
  12939. source: "./media/characters/quilly/front.svg",
  12940. extra: 890 / 776
  12941. }
  12942. },
  12943. },
  12944. [
  12945. {
  12946. name: "Gigamacro",
  12947. height: math.unit(404090, "miles"),
  12948. default: true
  12949. },
  12950. ]
  12951. ))
  12952. characterMakers.push(() => makeCharacter(
  12953. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12954. {
  12955. front: {
  12956. height: math.unit(7 + 8 / 12, "feet"),
  12957. weight: math.unit(350, "lb"),
  12958. name: "Front",
  12959. image: {
  12960. source: "./media/characters/tempest/front.svg",
  12961. extra: 1175 / 1086,
  12962. bottom: 0.02
  12963. }
  12964. },
  12965. },
  12966. [
  12967. {
  12968. name: "Normal",
  12969. height: math.unit(7 + 8 / 12, "feet"),
  12970. default: true
  12971. },
  12972. ]
  12973. ))
  12974. characterMakers.push(() => makeCharacter(
  12975. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12976. {
  12977. side: {
  12978. height: math.unit(4 + 5 / 12, "feet"),
  12979. weight: math.unit(80, "lb"),
  12980. name: "Side",
  12981. image: {
  12982. source: "./media/characters/rodger/side.svg",
  12983. extra: 1235 / 1118
  12984. }
  12985. },
  12986. },
  12987. [
  12988. {
  12989. name: "Micro",
  12990. height: math.unit(1, "inch")
  12991. },
  12992. {
  12993. name: "Normal",
  12994. height: math.unit(4 + 5 / 12, "feet"),
  12995. default: true
  12996. },
  12997. {
  12998. name: "Macro",
  12999. height: math.unit(120, "feet")
  13000. },
  13001. ]
  13002. ))
  13003. characterMakers.push(() => makeCharacter(
  13004. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13005. {
  13006. front: {
  13007. height: math.unit(6, "feet"),
  13008. weight: math.unit(150, "lb"),
  13009. name: "Front",
  13010. image: {
  13011. source: "./media/characters/danyel/front.svg",
  13012. extra: 1185 / 1123,
  13013. bottom: 0.05
  13014. }
  13015. },
  13016. },
  13017. [
  13018. {
  13019. name: "Shrunken",
  13020. height: math.unit(0.5, "mm")
  13021. },
  13022. {
  13023. name: "Micro",
  13024. height: math.unit(1, "mm"),
  13025. default: true
  13026. },
  13027. {
  13028. name: "Upsized",
  13029. height: math.unit(5 + 5 / 12, "feet")
  13030. },
  13031. ]
  13032. ))
  13033. characterMakers.push(() => makeCharacter(
  13034. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13035. {
  13036. front: {
  13037. height: math.unit(5 + 6 / 12, "feet"),
  13038. weight: math.unit(200, "lb"),
  13039. name: "Front",
  13040. image: {
  13041. source: "./media/characters/vivian-bijoux/front.svg",
  13042. extra: 1,
  13043. bottom: 0.072
  13044. }
  13045. },
  13046. },
  13047. [
  13048. {
  13049. name: "Normal",
  13050. height: math.unit(5 + 6 / 12, "feet"),
  13051. default: true
  13052. },
  13053. {
  13054. name: "Bad Dream",
  13055. height: math.unit(500, "feet")
  13056. },
  13057. {
  13058. name: "Nightmare",
  13059. height: math.unit(500, "miles")
  13060. },
  13061. ]
  13062. ))
  13063. characterMakers.push(() => makeCharacter(
  13064. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13065. {
  13066. front: {
  13067. height: math.unit(6 + 1 / 12, "feet"),
  13068. weight: math.unit(260, "lb"),
  13069. name: "Front",
  13070. image: {
  13071. source: "./media/characters/zeta/front.svg",
  13072. extra: 1968 / 1889,
  13073. bottom: 0.06
  13074. }
  13075. },
  13076. back: {
  13077. height: math.unit(6 + 1 / 12, "feet"),
  13078. weight: math.unit(260, "lb"),
  13079. name: "Back",
  13080. image: {
  13081. source: "./media/characters/zeta/back.svg",
  13082. extra: 1944 / 1858,
  13083. bottom: 0.03
  13084. }
  13085. },
  13086. hand: {
  13087. height: math.unit(1.112, "feet"),
  13088. name: "Hand",
  13089. image: {
  13090. source: "./media/characters/zeta/hand.svg"
  13091. }
  13092. },
  13093. foot: {
  13094. height: math.unit(1.48, "feet"),
  13095. name: "Foot",
  13096. image: {
  13097. source: "./media/characters/zeta/foot.svg"
  13098. }
  13099. },
  13100. },
  13101. [
  13102. {
  13103. name: "Micro",
  13104. height: math.unit(6, "inches")
  13105. },
  13106. {
  13107. name: "Normal",
  13108. height: math.unit(6 + 1 / 12, "feet"),
  13109. default: true
  13110. },
  13111. {
  13112. name: "Macro",
  13113. height: math.unit(20, "feet")
  13114. },
  13115. ]
  13116. ))
  13117. characterMakers.push(() => makeCharacter(
  13118. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13119. {
  13120. front: {
  13121. height: math.unit(6, "feet"),
  13122. weight: math.unit(150, "lb"),
  13123. name: "Front",
  13124. image: {
  13125. source: "./media/characters/jamie-larsen/front.svg",
  13126. extra: 962 / 933,
  13127. bottom: 0.02
  13128. }
  13129. },
  13130. back: {
  13131. height: math.unit(6, "feet"),
  13132. weight: math.unit(150, "lb"),
  13133. name: "Back",
  13134. image: {
  13135. source: "./media/characters/jamie-larsen/back.svg",
  13136. extra: 997 / 946
  13137. }
  13138. },
  13139. },
  13140. [
  13141. {
  13142. name: "Macro",
  13143. height: math.unit(28 + 7 / 12, "feet"),
  13144. default: true
  13145. },
  13146. {
  13147. name: "Macro+",
  13148. height: math.unit(180, "feet")
  13149. },
  13150. {
  13151. name: "Megamacro",
  13152. height: math.unit(10, "miles")
  13153. },
  13154. {
  13155. name: "Gigamacro",
  13156. height: math.unit(200000, "miles")
  13157. },
  13158. ]
  13159. ))
  13160. characterMakers.push(() => makeCharacter(
  13161. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13162. {
  13163. front: {
  13164. height: math.unit(6, "feet"),
  13165. weight: math.unit(120, "lb"),
  13166. name: "Front",
  13167. image: {
  13168. source: "./media/characters/vance/front.svg",
  13169. extra: 1980 / 1890,
  13170. bottom: 0.09
  13171. }
  13172. },
  13173. back: {
  13174. height: math.unit(6, "feet"),
  13175. weight: math.unit(120, "lb"),
  13176. name: "Back",
  13177. image: {
  13178. source: "./media/characters/vance/back.svg",
  13179. extra: 2081 / 1994,
  13180. bottom: 0.014
  13181. }
  13182. },
  13183. hand: {
  13184. height: math.unit(0.88, "feet"),
  13185. name: "Hand",
  13186. image: {
  13187. source: "./media/characters/vance/hand.svg"
  13188. }
  13189. },
  13190. foot: {
  13191. height: math.unit(0.64, "feet"),
  13192. name: "Foot",
  13193. image: {
  13194. source: "./media/characters/vance/foot.svg"
  13195. }
  13196. },
  13197. },
  13198. [
  13199. {
  13200. name: "Small",
  13201. height: math.unit(90, "feet"),
  13202. default: true
  13203. },
  13204. {
  13205. name: "Macro",
  13206. height: math.unit(100, "meters")
  13207. },
  13208. {
  13209. name: "Megamacro",
  13210. height: math.unit(15, "miles")
  13211. },
  13212. ]
  13213. ))
  13214. characterMakers.push(() => makeCharacter(
  13215. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13216. {
  13217. front: {
  13218. height: math.unit(6, "feet"),
  13219. weight: math.unit(180, "lb"),
  13220. name: "Front",
  13221. image: {
  13222. source: "./media/characters/xochitl/front.svg",
  13223. extra: 2297 / 2261,
  13224. bottom: 0.065
  13225. }
  13226. },
  13227. back: {
  13228. height: math.unit(6, "feet"),
  13229. weight: math.unit(180, "lb"),
  13230. name: "Back",
  13231. image: {
  13232. source: "./media/characters/xochitl/back.svg",
  13233. extra: 2386 / 2354,
  13234. bottom: 0.01
  13235. }
  13236. },
  13237. foot: {
  13238. height: math.unit(6 / 5 * 1.15, "feet"),
  13239. weight: math.unit(150, "lb"),
  13240. name: "Foot",
  13241. image: {
  13242. source: "./media/characters/xochitl/foot.svg"
  13243. }
  13244. },
  13245. },
  13246. [
  13247. {
  13248. name: "Macro",
  13249. height: math.unit(80, "feet")
  13250. },
  13251. {
  13252. name: "Macro+",
  13253. height: math.unit(400, "feet"),
  13254. default: true
  13255. },
  13256. {
  13257. name: "Gigamacro",
  13258. height: math.unit(80000, "miles")
  13259. },
  13260. {
  13261. name: "Gigamacro+",
  13262. height: math.unit(400000, "miles")
  13263. },
  13264. {
  13265. name: "Teramacro",
  13266. height: math.unit(300, "AU")
  13267. },
  13268. ]
  13269. ))
  13270. characterMakers.push(() => makeCharacter(
  13271. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13272. {
  13273. front: {
  13274. height: math.unit(6, "feet"),
  13275. weight: math.unit(150, "lb"),
  13276. name: "Front",
  13277. image: {
  13278. source: "./media/characters/vincent/front.svg",
  13279. extra: 1130 / 1080,
  13280. bottom: 0.055
  13281. }
  13282. },
  13283. beak: {
  13284. height: math.unit(6 * 0.1, "feet"),
  13285. name: "Beak",
  13286. image: {
  13287. source: "./media/characters/vincent/beak.svg"
  13288. }
  13289. },
  13290. hand: {
  13291. height: math.unit(6 * 0.85, "feet"),
  13292. weight: math.unit(150, "lb"),
  13293. name: "Hand",
  13294. image: {
  13295. source: "./media/characters/vincent/hand.svg"
  13296. }
  13297. },
  13298. foot: {
  13299. height: math.unit(6 * 0.19, "feet"),
  13300. weight: math.unit(150, "lb"),
  13301. name: "Foot",
  13302. image: {
  13303. source: "./media/characters/vincent/foot.svg"
  13304. }
  13305. },
  13306. },
  13307. [
  13308. {
  13309. name: "Base",
  13310. height: math.unit(6 + 5 / 12, "feet"),
  13311. default: true
  13312. },
  13313. {
  13314. name: "Macro",
  13315. height: math.unit(300, "feet")
  13316. },
  13317. {
  13318. name: "Megamacro",
  13319. height: math.unit(2, "miles")
  13320. },
  13321. {
  13322. name: "Gigamacro",
  13323. height: math.unit(1000, "miles")
  13324. },
  13325. ]
  13326. ))
  13327. characterMakers.push(() => makeCharacter(
  13328. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13329. {
  13330. front: {
  13331. height: math.unit(6 + 2 / 12, "feet"),
  13332. weight: math.unit(265, "lb"),
  13333. name: "Front",
  13334. image: {
  13335. source: "./media/characters/jay/front.svg",
  13336. extra: 1510 / 1430,
  13337. bottom: 0.042
  13338. }
  13339. },
  13340. back: {
  13341. height: math.unit(6 + 2 / 12, "feet"),
  13342. weight: math.unit(265, "lb"),
  13343. name: "Back",
  13344. image: {
  13345. source: "./media/characters/jay/back.svg",
  13346. extra: 1510 / 1430,
  13347. bottom: 0.025
  13348. }
  13349. },
  13350. clothed: {
  13351. height: math.unit(6 + 2 / 12, "feet"),
  13352. weight: math.unit(265, "lb"),
  13353. name: "Front (Clothed)",
  13354. image: {
  13355. source: "./media/characters/jay/clothed.svg",
  13356. extra: 744 / 699,
  13357. bottom: 0.043
  13358. }
  13359. },
  13360. head: {
  13361. height: math.unit(1.772, "feet"),
  13362. name: "Head",
  13363. image: {
  13364. source: "./media/characters/jay/head.svg"
  13365. }
  13366. },
  13367. sizeRay: {
  13368. height: math.unit(1.331, "feet"),
  13369. name: "Size Ray",
  13370. image: {
  13371. source: "./media/characters/jay/size-ray.svg"
  13372. }
  13373. },
  13374. },
  13375. [
  13376. {
  13377. name: "Micro",
  13378. height: math.unit(1, "inch")
  13379. },
  13380. {
  13381. name: "Normal",
  13382. height: math.unit(6 + 2 / 12, "feet"),
  13383. default: true
  13384. },
  13385. {
  13386. name: "Macro",
  13387. height: math.unit(1, "mile")
  13388. },
  13389. {
  13390. name: "Megamacro",
  13391. height: math.unit(100, "miles")
  13392. },
  13393. ]
  13394. ))
  13395. characterMakers.push(() => makeCharacter(
  13396. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13397. {
  13398. front: {
  13399. height: math.unit(2, "meters"),
  13400. weight: math.unit(500, "kg"),
  13401. name: "Front",
  13402. image: {
  13403. source: "./media/characters/coatl/front.svg",
  13404. extra: 3948 / 3500,
  13405. bottom: 0.082
  13406. }
  13407. },
  13408. },
  13409. [
  13410. {
  13411. name: "Normal",
  13412. height: math.unit(4, "meters")
  13413. },
  13414. {
  13415. name: "Macro",
  13416. height: math.unit(100, "meters"),
  13417. default: true
  13418. },
  13419. {
  13420. name: "Macro+",
  13421. height: math.unit(300, "meters")
  13422. },
  13423. {
  13424. name: "Megamacro",
  13425. height: math.unit(3, "gigameters")
  13426. },
  13427. {
  13428. name: "Megamacro+",
  13429. height: math.unit(300, "terameters")
  13430. },
  13431. {
  13432. name: "Megamacro++",
  13433. height: math.unit(3, "lightyears")
  13434. },
  13435. ]
  13436. ))
  13437. characterMakers.push(() => makeCharacter(
  13438. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13439. {
  13440. front: {
  13441. height: math.unit(6, "feet"),
  13442. weight: math.unit(50, "kg"),
  13443. name: "front",
  13444. image: {
  13445. source: "./media/characters/shiroryu/front.svg",
  13446. extra: 1990 / 1935
  13447. }
  13448. },
  13449. },
  13450. [
  13451. {
  13452. name: "Mortal Mingling",
  13453. height: math.unit(3, "meters")
  13454. },
  13455. {
  13456. name: "Kaiju-ish",
  13457. height: math.unit(250, "meters")
  13458. },
  13459. {
  13460. name: "Somewhat Godly",
  13461. height: math.unit(400, "km"),
  13462. default: true
  13463. },
  13464. {
  13465. name: "Planetary",
  13466. height: math.unit(300, "megameters")
  13467. },
  13468. {
  13469. name: "Galaxy-dwarfing",
  13470. height: math.unit(450, "kiloparsecs")
  13471. },
  13472. {
  13473. name: "Universe Eater",
  13474. height: math.unit(150, "gigaparsecs")
  13475. },
  13476. {
  13477. name: "Almost Immeasurable",
  13478. height: math.unit(1.3e266, "yottaparsecs")
  13479. },
  13480. ]
  13481. ))
  13482. characterMakers.push(() => makeCharacter(
  13483. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13484. {
  13485. front: {
  13486. height: math.unit(6, "feet"),
  13487. weight: math.unit(150, "lb"),
  13488. name: "Front",
  13489. image: {
  13490. source: "./media/characters/umeko/front.svg",
  13491. extra: 1,
  13492. bottom: 0.019
  13493. }
  13494. },
  13495. frontArmored: {
  13496. height: math.unit(6, "feet"),
  13497. weight: math.unit(150, "lb"),
  13498. name: "Front (Armored)",
  13499. image: {
  13500. source: "./media/characters/umeko/front-armored.svg",
  13501. extra: 1,
  13502. bottom: 0.021
  13503. }
  13504. },
  13505. },
  13506. [
  13507. {
  13508. name: "Macro",
  13509. height: math.unit(220, "feet"),
  13510. default: true
  13511. },
  13512. {
  13513. name: "Guardian Dragon",
  13514. height: math.unit(50, "miles")
  13515. },
  13516. {
  13517. name: "Cosmic",
  13518. height: math.unit(800000, "miles")
  13519. },
  13520. ]
  13521. ))
  13522. characterMakers.push(() => makeCharacter(
  13523. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13524. {
  13525. front: {
  13526. height: math.unit(6, "feet"),
  13527. weight: math.unit(150, "lb"),
  13528. name: "Front",
  13529. image: {
  13530. source: "./media/characters/cassidy/front.svg",
  13531. extra: 1,
  13532. bottom: 0.043
  13533. }
  13534. },
  13535. },
  13536. [
  13537. {
  13538. name: "Canon Height",
  13539. height: math.unit(120, "feet"),
  13540. default: true
  13541. },
  13542. {
  13543. name: "Macro+",
  13544. height: math.unit(400, "feet")
  13545. },
  13546. {
  13547. name: "Macro++",
  13548. height: math.unit(4000, "feet")
  13549. },
  13550. {
  13551. name: "Megamacro",
  13552. height: math.unit(3, "miles")
  13553. },
  13554. ]
  13555. ))
  13556. characterMakers.push(() => makeCharacter(
  13557. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13558. {
  13559. front: {
  13560. height: math.unit(6, "feet"),
  13561. weight: math.unit(150, "lb"),
  13562. name: "Front",
  13563. image: {
  13564. source: "./media/characters/isaac/front.svg",
  13565. extra: 896 / 815,
  13566. bottom: 0.11
  13567. }
  13568. },
  13569. },
  13570. [
  13571. {
  13572. name: "Human Size",
  13573. height: math.unit(8, "feet"),
  13574. default: true
  13575. },
  13576. {
  13577. name: "Macro",
  13578. height: math.unit(400, "feet")
  13579. },
  13580. {
  13581. name: "Megamacro",
  13582. height: math.unit(50, "miles")
  13583. },
  13584. {
  13585. name: "Canon Height",
  13586. height: math.unit(200, "AU")
  13587. },
  13588. ]
  13589. ))
  13590. characterMakers.push(() => makeCharacter(
  13591. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13592. {
  13593. front: {
  13594. height: math.unit(6, "feet"),
  13595. weight: math.unit(72, "kg"),
  13596. name: "Front",
  13597. image: {
  13598. source: "./media/characters/sleekit/front.svg",
  13599. extra: 4693 / 4487,
  13600. bottom: 0.012
  13601. }
  13602. },
  13603. },
  13604. [
  13605. {
  13606. name: "Minimum Height",
  13607. height: math.unit(10, "meters")
  13608. },
  13609. {
  13610. name: "Smaller",
  13611. height: math.unit(25, "meters")
  13612. },
  13613. {
  13614. name: "Larger",
  13615. height: math.unit(38, "meters"),
  13616. default: true
  13617. },
  13618. {
  13619. name: "Maximum height",
  13620. height: math.unit(100, "meters")
  13621. },
  13622. ]
  13623. ))
  13624. characterMakers.push(() => makeCharacter(
  13625. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13626. {
  13627. front: {
  13628. height: math.unit(6, "feet"),
  13629. weight: math.unit(150, "lb"),
  13630. name: "Front",
  13631. image: {
  13632. source: "./media/characters/nillia/front.svg",
  13633. extra: 2195 / 2037,
  13634. bottom: 0.005
  13635. }
  13636. },
  13637. back: {
  13638. height: math.unit(6, "feet"),
  13639. weight: math.unit(150, "lb"),
  13640. name: "Back",
  13641. image: {
  13642. source: "./media/characters/nillia/back.svg",
  13643. extra: 2195 / 2037,
  13644. bottom: 0.005
  13645. }
  13646. },
  13647. },
  13648. [
  13649. {
  13650. name: "Canon Height",
  13651. height: math.unit(489, "feet"),
  13652. default: true
  13653. }
  13654. ]
  13655. ))
  13656. characterMakers.push(() => makeCharacter(
  13657. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13658. {
  13659. front: {
  13660. height: math.unit(6, "feet"),
  13661. weight: math.unit(150, "lb"),
  13662. name: "Front",
  13663. image: {
  13664. source: "./media/characters/mesmyriza/front.svg",
  13665. extra: 2067 / 1784,
  13666. bottom: 0.035
  13667. }
  13668. },
  13669. foot: {
  13670. height: math.unit(6 / (250 / 35), "feet"),
  13671. name: "Foot",
  13672. image: {
  13673. source: "./media/characters/mesmyriza/foot.svg"
  13674. }
  13675. },
  13676. },
  13677. [
  13678. {
  13679. name: "Macro",
  13680. height: math.unit(457, "meters"),
  13681. default: true
  13682. },
  13683. {
  13684. name: "Megamacro",
  13685. height: math.unit(8, "megameters")
  13686. },
  13687. ]
  13688. ))
  13689. characterMakers.push(() => makeCharacter(
  13690. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13691. {
  13692. front: {
  13693. height: math.unit(6, "feet"),
  13694. weight: math.unit(250, "lb"),
  13695. name: "Front",
  13696. image: {
  13697. source: "./media/characters/saudade/front.svg",
  13698. extra: 1172 / 1139,
  13699. bottom: 0.035
  13700. }
  13701. },
  13702. },
  13703. [
  13704. {
  13705. name: "Micro",
  13706. height: math.unit(3, "inches")
  13707. },
  13708. {
  13709. name: "Normal",
  13710. height: math.unit(6, "feet"),
  13711. default: true
  13712. },
  13713. {
  13714. name: "Macro",
  13715. height: math.unit(50, "feet")
  13716. },
  13717. {
  13718. name: "Megamacro",
  13719. height: math.unit(2800, "feet")
  13720. },
  13721. ]
  13722. ))
  13723. characterMakers.push(() => makeCharacter(
  13724. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13725. {
  13726. front: {
  13727. height: math.unit(5 + 4 / 12, "feet"),
  13728. weight: math.unit(100, "lb"),
  13729. name: "Front",
  13730. image: {
  13731. source: "./media/characters/keireer/front.svg",
  13732. extra: 716 / 666,
  13733. bottom: 0.05
  13734. }
  13735. },
  13736. },
  13737. [
  13738. {
  13739. name: "Normal",
  13740. height: math.unit(5 + 4 / 12, "feet"),
  13741. default: true
  13742. },
  13743. ]
  13744. ))
  13745. characterMakers.push(() => makeCharacter(
  13746. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13747. {
  13748. front: {
  13749. height: math.unit(6, "feet"),
  13750. weight: math.unit(90, "kg"),
  13751. name: "Front",
  13752. image: {
  13753. source: "./media/characters/mirja/front.svg",
  13754. extra: 1789 / 1683,
  13755. bottom: 0.05
  13756. }
  13757. },
  13758. frontDressed: {
  13759. height: math.unit(6, "feet"),
  13760. weight: math.unit(90, "lb"),
  13761. name: "Front (Dressed)",
  13762. image: {
  13763. source: "./media/characters/mirja/front-dressed.svg",
  13764. extra: 1789 / 1683,
  13765. bottom: 0.05
  13766. }
  13767. },
  13768. back: {
  13769. height: math.unit(6, "feet"),
  13770. weight: math.unit(90, "lb"),
  13771. name: "Back",
  13772. image: {
  13773. source: "./media/characters/mirja/back.svg",
  13774. extra: 953 / 917,
  13775. bottom: 0.017
  13776. }
  13777. },
  13778. },
  13779. [
  13780. {
  13781. name: "\"Incognito\"",
  13782. height: math.unit(3, "meters")
  13783. },
  13784. {
  13785. name: "Strolling Size",
  13786. height: math.unit(15, "km")
  13787. },
  13788. {
  13789. name: "Larger Strolling Size",
  13790. height: math.unit(400, "km")
  13791. },
  13792. {
  13793. name: "Preferred Size",
  13794. height: math.unit(5000, "km")
  13795. },
  13796. {
  13797. name: "True Size",
  13798. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13799. default: true
  13800. },
  13801. ]
  13802. ))
  13803. characterMakers.push(() => makeCharacter(
  13804. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13805. {
  13806. front: {
  13807. height: math.unit(15, "feet"),
  13808. weight: math.unit(880, "kg"),
  13809. name: "Front",
  13810. image: {
  13811. source: "./media/characters/nightraver/front.svg",
  13812. extra: 2444 / 2160,
  13813. bottom: 0.027
  13814. }
  13815. },
  13816. back: {
  13817. height: math.unit(15, "feet"),
  13818. weight: math.unit(880, "kg"),
  13819. name: "Back",
  13820. image: {
  13821. source: "./media/characters/nightraver/back.svg",
  13822. extra: 2309 / 2180,
  13823. bottom: 0.005
  13824. }
  13825. },
  13826. sole: {
  13827. height: math.unit(2.878, "feet"),
  13828. name: "Sole",
  13829. image: {
  13830. source: "./media/characters/nightraver/sole.svg"
  13831. }
  13832. },
  13833. foot: {
  13834. height: math.unit(2.285, "feet"),
  13835. name: "Foot",
  13836. image: {
  13837. source: "./media/characters/nightraver/foot.svg"
  13838. }
  13839. },
  13840. maw: {
  13841. height: math.unit(2.67, "feet"),
  13842. name: "Maw",
  13843. image: {
  13844. source: "./media/characters/nightraver/maw.svg"
  13845. }
  13846. },
  13847. },
  13848. [
  13849. {
  13850. name: "Micro",
  13851. height: math.unit(1, "cm")
  13852. },
  13853. {
  13854. name: "Normal",
  13855. height: math.unit(15, "feet"),
  13856. default: true
  13857. },
  13858. {
  13859. name: "Macro",
  13860. height: math.unit(300, "feet")
  13861. },
  13862. {
  13863. name: "Megamacro",
  13864. height: math.unit(300, "miles")
  13865. },
  13866. {
  13867. name: "Gigamacro",
  13868. height: math.unit(10000, "miles")
  13869. },
  13870. ]
  13871. ))
  13872. characterMakers.push(() => makeCharacter(
  13873. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13874. {
  13875. side: {
  13876. height: math.unit(2, "inches"),
  13877. weight: math.unit(5, "grams"),
  13878. name: "Side",
  13879. image: {
  13880. source: "./media/characters/arc/side.svg"
  13881. }
  13882. },
  13883. },
  13884. [
  13885. {
  13886. name: "Micro",
  13887. height: math.unit(2, "inches"),
  13888. default: true
  13889. },
  13890. ]
  13891. ))
  13892. characterMakers.push(() => makeCharacter(
  13893. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13894. {
  13895. front: {
  13896. height: math.unit(1.1938, "meters"),
  13897. weight: math.unit(54, "kg"),
  13898. name: "Front",
  13899. image: {
  13900. source: "./media/characters/nebula-shahar/front.svg",
  13901. extra: 1642 / 1436,
  13902. bottom: 0.06
  13903. }
  13904. },
  13905. },
  13906. [
  13907. {
  13908. name: "Megamicro",
  13909. height: math.unit(0.3, "mm")
  13910. },
  13911. {
  13912. name: "Micro",
  13913. height: math.unit(3, "cm")
  13914. },
  13915. {
  13916. name: "Normal",
  13917. height: math.unit(138, "cm"),
  13918. default: true
  13919. },
  13920. {
  13921. name: "Macro",
  13922. height: math.unit(30, "m")
  13923. },
  13924. ]
  13925. ))
  13926. characterMakers.push(() => makeCharacter(
  13927. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13928. {
  13929. front: {
  13930. height: math.unit(5.24, "feet"),
  13931. weight: math.unit(150, "lb"),
  13932. name: "Front",
  13933. image: {
  13934. source: "./media/characters/shayla/front.svg",
  13935. extra: 1512 / 1414,
  13936. bottom: 0.01
  13937. }
  13938. },
  13939. back: {
  13940. height: math.unit(5.24, "feet"),
  13941. weight: math.unit(150, "lb"),
  13942. name: "Back",
  13943. image: {
  13944. source: "./media/characters/shayla/back.svg",
  13945. extra: 1512 / 1414
  13946. }
  13947. },
  13948. hand: {
  13949. height: math.unit(0.7781496062992126, "feet"),
  13950. name: "Hand",
  13951. image: {
  13952. source: "./media/characters/shayla/hand.svg"
  13953. }
  13954. },
  13955. foot: {
  13956. height: math.unit(1.4206036745406823, "feet"),
  13957. name: "Foot",
  13958. image: {
  13959. source: "./media/characters/shayla/foot.svg"
  13960. }
  13961. },
  13962. },
  13963. [
  13964. {
  13965. name: "Micro",
  13966. height: math.unit(0.32, "feet")
  13967. },
  13968. {
  13969. name: "Normal",
  13970. height: math.unit(5.24, "feet"),
  13971. default: true
  13972. },
  13973. {
  13974. name: "Macro",
  13975. height: math.unit(492.12, "feet")
  13976. },
  13977. {
  13978. name: "Megamacro",
  13979. height: math.unit(186.41, "miles")
  13980. },
  13981. ]
  13982. ))
  13983. characterMakers.push(() => makeCharacter(
  13984. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13985. {
  13986. front: {
  13987. height: math.unit(2.2, "m"),
  13988. weight: math.unit(120, "kg"),
  13989. name: "Front",
  13990. image: {
  13991. source: "./media/characters/pia-jr/front.svg",
  13992. extra: 1000 / 970,
  13993. bottom: 0.035
  13994. }
  13995. },
  13996. hand: {
  13997. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13998. name: "Hand",
  13999. image: {
  14000. source: "./media/characters/pia-jr/hand.svg"
  14001. }
  14002. },
  14003. paw: {
  14004. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14005. name: "Paw",
  14006. image: {
  14007. source: "./media/characters/pia-jr/paw.svg"
  14008. }
  14009. },
  14010. },
  14011. [
  14012. {
  14013. name: "Micro",
  14014. height: math.unit(1.2, "cm")
  14015. },
  14016. {
  14017. name: "Normal",
  14018. height: math.unit(2.2, "m"),
  14019. default: true
  14020. },
  14021. {
  14022. name: "Macro",
  14023. height: math.unit(180, "m")
  14024. },
  14025. {
  14026. name: "Megamacro",
  14027. height: math.unit(420, "km")
  14028. },
  14029. ]
  14030. ))
  14031. characterMakers.push(() => makeCharacter(
  14032. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14033. {
  14034. front: {
  14035. height: math.unit(2, "m"),
  14036. weight: math.unit(115, "kg"),
  14037. name: "Front",
  14038. image: {
  14039. source: "./media/characters/pia-sr/front.svg",
  14040. extra: 760 / 730,
  14041. bottom: 0.015
  14042. }
  14043. },
  14044. back: {
  14045. height: math.unit(2, "m"),
  14046. weight: math.unit(115, "kg"),
  14047. name: "Back",
  14048. image: {
  14049. source: "./media/characters/pia-sr/back.svg",
  14050. extra: 760 / 730,
  14051. bottom: 0.01
  14052. }
  14053. },
  14054. hand: {
  14055. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14056. name: "Hand",
  14057. image: {
  14058. source: "./media/characters/pia-sr/hand.svg"
  14059. }
  14060. },
  14061. foot: {
  14062. height: math.unit(1.83, "feet"),
  14063. name: "Foot",
  14064. image: {
  14065. source: "./media/characters/pia-sr/foot.svg"
  14066. }
  14067. },
  14068. },
  14069. [
  14070. {
  14071. name: "Micro",
  14072. height: math.unit(88, "mm")
  14073. },
  14074. {
  14075. name: "Normal",
  14076. height: math.unit(2, "m"),
  14077. default: true
  14078. },
  14079. {
  14080. name: "Macro",
  14081. height: math.unit(200, "m")
  14082. },
  14083. {
  14084. name: "Megamacro",
  14085. height: math.unit(420, "km")
  14086. },
  14087. ]
  14088. ))
  14089. characterMakers.push(() => makeCharacter(
  14090. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14091. {
  14092. front: {
  14093. height: math.unit(8 + 2 / 12, "feet"),
  14094. weight: math.unit(300, "lb"),
  14095. name: "Front",
  14096. image: {
  14097. source: "./media/characters/kibibyte/front.svg",
  14098. extra: 2221 / 2098,
  14099. bottom: 0.04
  14100. }
  14101. },
  14102. },
  14103. [
  14104. {
  14105. name: "Normal",
  14106. height: math.unit(8 + 2 / 12, "feet"),
  14107. default: true
  14108. },
  14109. {
  14110. name: "Socialable Macro",
  14111. height: math.unit(50, "feet")
  14112. },
  14113. {
  14114. name: "Macro",
  14115. height: math.unit(300, "feet")
  14116. },
  14117. {
  14118. name: "Megamacro",
  14119. height: math.unit(500, "miles")
  14120. },
  14121. ]
  14122. ))
  14123. characterMakers.push(() => makeCharacter(
  14124. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14125. {
  14126. front: {
  14127. height: math.unit(6, "feet"),
  14128. weight: math.unit(150, "lb"),
  14129. name: "Front",
  14130. image: {
  14131. source: "./media/characters/felix/front.svg",
  14132. extra: 762 / 722,
  14133. bottom: 0.02
  14134. }
  14135. },
  14136. frontClothed: {
  14137. height: math.unit(6, "feet"),
  14138. weight: math.unit(150, "lb"),
  14139. name: "Front (Clothed)",
  14140. image: {
  14141. source: "./media/characters/felix/front-clothed.svg",
  14142. extra: 762 / 722,
  14143. bottom: 0.02
  14144. }
  14145. },
  14146. },
  14147. [
  14148. {
  14149. name: "Normal",
  14150. height: math.unit(6 + 8 / 12, "feet"),
  14151. default: true
  14152. },
  14153. {
  14154. name: "Macro",
  14155. height: math.unit(2600, "feet")
  14156. },
  14157. {
  14158. name: "Megamacro",
  14159. height: math.unit(450, "miles")
  14160. },
  14161. ]
  14162. ))
  14163. characterMakers.push(() => makeCharacter(
  14164. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14165. {
  14166. front: {
  14167. height: math.unit(6 + 1 / 12, "feet"),
  14168. weight: math.unit(250, "lb"),
  14169. name: "Front",
  14170. image: {
  14171. source: "./media/characters/tobo/front.svg",
  14172. extra: 608 / 586,
  14173. bottom: 0.023
  14174. }
  14175. },
  14176. back: {
  14177. height: math.unit(6 + 1 / 12, "feet"),
  14178. weight: math.unit(250, "lb"),
  14179. name: "Back",
  14180. image: {
  14181. source: "./media/characters/tobo/back.svg",
  14182. extra: 608 / 586
  14183. }
  14184. },
  14185. },
  14186. [
  14187. {
  14188. name: "Nano",
  14189. height: math.unit(2, "nm")
  14190. },
  14191. {
  14192. name: "Megamicro",
  14193. height: math.unit(0.1, "mm")
  14194. },
  14195. {
  14196. name: "Micro",
  14197. height: math.unit(1, "inch"),
  14198. default: true
  14199. },
  14200. {
  14201. name: "Human-sized",
  14202. height: math.unit(6 + 1 / 12, "feet")
  14203. },
  14204. {
  14205. name: "Macro",
  14206. height: math.unit(250, "feet")
  14207. },
  14208. {
  14209. name: "Megamacro",
  14210. height: math.unit(75, "miles")
  14211. },
  14212. {
  14213. name: "Texas-sized",
  14214. height: math.unit(750, "miles")
  14215. },
  14216. {
  14217. name: "Teramacro",
  14218. height: math.unit(50000, "miles")
  14219. },
  14220. ]
  14221. ))
  14222. characterMakers.push(() => makeCharacter(
  14223. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14224. {
  14225. front: {
  14226. height: math.unit(6, "feet"),
  14227. weight: math.unit(269, "lb"),
  14228. name: "Front",
  14229. image: {
  14230. source: "./media/characters/danny-kapowsky/front.svg",
  14231. extra: 766 / 736,
  14232. bottom: 0.044
  14233. }
  14234. },
  14235. back: {
  14236. height: math.unit(6, "feet"),
  14237. weight: math.unit(269, "lb"),
  14238. name: "Back",
  14239. image: {
  14240. source: "./media/characters/danny-kapowsky/back.svg",
  14241. extra: 797 / 760,
  14242. bottom: 0.025
  14243. }
  14244. },
  14245. },
  14246. [
  14247. {
  14248. name: "Macro",
  14249. height: math.unit(150, "feet"),
  14250. default: true
  14251. },
  14252. {
  14253. name: "Macro+",
  14254. height: math.unit(200, "feet")
  14255. },
  14256. {
  14257. name: "Macro++",
  14258. height: math.unit(300, "feet")
  14259. },
  14260. {
  14261. name: "Macro+++",
  14262. height: math.unit(400, "feet")
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14268. {
  14269. side: {
  14270. height: math.unit(6, "feet"),
  14271. weight: math.unit(170, "lb"),
  14272. name: "Side",
  14273. image: {
  14274. source: "./media/characters/finn/side.svg",
  14275. extra: 1953 / 1807,
  14276. bottom: 0.057
  14277. }
  14278. },
  14279. },
  14280. [
  14281. {
  14282. name: "Megamacro",
  14283. height: math.unit(14445, "feet"),
  14284. default: true
  14285. },
  14286. ]
  14287. ))
  14288. characterMakers.push(() => makeCharacter(
  14289. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14290. {
  14291. front: {
  14292. height: math.unit(5 + 6 / 12, "feet"),
  14293. weight: math.unit(125, "lb"),
  14294. name: "Front",
  14295. image: {
  14296. source: "./media/characters/roy/front.svg",
  14297. extra: 1,
  14298. bottom: 0.11
  14299. }
  14300. },
  14301. },
  14302. [
  14303. {
  14304. name: "Micro",
  14305. height: math.unit(3, "inches"),
  14306. default: true
  14307. },
  14308. {
  14309. name: "Normal",
  14310. height: math.unit(5 + 6 / 12, "feet")
  14311. },
  14312. {
  14313. name: "Lesser Macro",
  14314. height: math.unit(60, "feet")
  14315. },
  14316. {
  14317. name: "Greater Macro",
  14318. height: math.unit(120, "feet")
  14319. },
  14320. ]
  14321. ))
  14322. characterMakers.push(() => makeCharacter(
  14323. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14324. {
  14325. front: {
  14326. height: math.unit(6, "feet"),
  14327. weight: math.unit(100, "lb"),
  14328. name: "Front",
  14329. image: {
  14330. source: "./media/characters/aevsivs/front.svg",
  14331. extra: 1,
  14332. bottom: 0.03
  14333. }
  14334. },
  14335. back: {
  14336. height: math.unit(6, "feet"),
  14337. weight: math.unit(100, "lb"),
  14338. name: "Back",
  14339. image: {
  14340. source: "./media/characters/aevsivs/back.svg"
  14341. }
  14342. },
  14343. },
  14344. [
  14345. {
  14346. name: "Micro",
  14347. height: math.unit(2, "inches"),
  14348. default: true
  14349. },
  14350. {
  14351. name: "Normal",
  14352. height: math.unit(5, "feet")
  14353. },
  14354. ]
  14355. ))
  14356. characterMakers.push(() => makeCharacter(
  14357. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14358. {
  14359. front: {
  14360. height: math.unit(5 + 7 / 12, "feet"),
  14361. weight: math.unit(159, "lb"),
  14362. name: "Front",
  14363. image: {
  14364. source: "./media/characters/hildegard/front.svg",
  14365. extra: 289 / 269,
  14366. bottom: 7.63 / 297.8
  14367. }
  14368. },
  14369. back: {
  14370. height: math.unit(5 + 7 / 12, "feet"),
  14371. weight: math.unit(159, "lb"),
  14372. name: "Back",
  14373. image: {
  14374. source: "./media/characters/hildegard/back.svg",
  14375. extra: 280 / 260,
  14376. bottom: 2.3 / 282
  14377. }
  14378. },
  14379. },
  14380. [
  14381. {
  14382. name: "Normal",
  14383. height: math.unit(5 + 7 / 12, "feet"),
  14384. default: true
  14385. },
  14386. ]
  14387. ))
  14388. characterMakers.push(() => makeCharacter(
  14389. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14390. {
  14391. bernard: {
  14392. height: math.unit(2 + 7 / 12, "feet"),
  14393. weight: math.unit(66, "lb"),
  14394. name: "Bernard",
  14395. rename: true,
  14396. image: {
  14397. source: "./media/characters/bernard-wilder/bernard.svg",
  14398. extra: 192 / 128,
  14399. bottom: 0.05
  14400. }
  14401. },
  14402. wilder: {
  14403. height: math.unit(5 + 8 / 12, "feet"),
  14404. weight: math.unit(143, "lb"),
  14405. name: "Wilder",
  14406. rename: true,
  14407. image: {
  14408. source: "./media/characters/bernard-wilder/wilder.svg",
  14409. extra: 361 / 312,
  14410. bottom: 0.02
  14411. }
  14412. },
  14413. },
  14414. [
  14415. {
  14416. name: "Normal",
  14417. height: math.unit(2 + 7 / 12, "feet"),
  14418. default: true
  14419. },
  14420. ]
  14421. ))
  14422. characterMakers.push(() => makeCharacter(
  14423. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14424. {
  14425. anthro: {
  14426. height: math.unit(6 + 1 / 12, "feet"),
  14427. weight: math.unit(155, "lb"),
  14428. name: "Anthro",
  14429. image: {
  14430. source: "./media/characters/hearth/anthro.svg",
  14431. extra: 260 / 250,
  14432. bottom: 0.02
  14433. }
  14434. },
  14435. feral: {
  14436. height: math.unit(3.78, "feet"),
  14437. weight: math.unit(35, "kg"),
  14438. name: "Feral",
  14439. image: {
  14440. source: "./media/characters/hearth/feral.svg",
  14441. extra: 153 / 135,
  14442. bottom: 0.03
  14443. }
  14444. },
  14445. },
  14446. [
  14447. {
  14448. name: "Normal",
  14449. height: math.unit(6 + 1 / 12, "feet"),
  14450. default: true
  14451. },
  14452. ]
  14453. ))
  14454. characterMakers.push(() => makeCharacter(
  14455. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14456. {
  14457. front: {
  14458. height: math.unit(6, "feet"),
  14459. weight: math.unit(182, "lb"),
  14460. name: "Front",
  14461. image: {
  14462. source: "./media/characters/ingrid/front.svg",
  14463. extra: 294 / 268,
  14464. bottom: 0.027
  14465. }
  14466. },
  14467. },
  14468. [
  14469. {
  14470. name: "Normal",
  14471. height: math.unit(6, "feet"),
  14472. default: true
  14473. },
  14474. ]
  14475. ))
  14476. characterMakers.push(() => makeCharacter(
  14477. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14478. {
  14479. eevee: {
  14480. height: math.unit(2 + 10 / 12, "feet"),
  14481. weight: math.unit(86, "lb"),
  14482. name: "Malgam",
  14483. image: {
  14484. source: "./media/characters/malgam/eevee.svg",
  14485. extra: 218 / 180,
  14486. bottom: 0.2
  14487. }
  14488. },
  14489. sylveon: {
  14490. height: math.unit(4, "feet"),
  14491. weight: math.unit(101, "lb"),
  14492. name: "Future Malgam",
  14493. rename: true,
  14494. image: {
  14495. source: "./media/characters/malgam/sylveon.svg",
  14496. extra: 371 / 325,
  14497. bottom: 0.015
  14498. }
  14499. },
  14500. gigantamax: {
  14501. height: math.unit(50, "feet"),
  14502. name: "Gigantamax Malgam",
  14503. rename: true,
  14504. image: {
  14505. source: "./media/characters/malgam/gigantamax.svg"
  14506. }
  14507. },
  14508. },
  14509. [
  14510. {
  14511. name: "Normal",
  14512. height: math.unit(2 + 10 / 12, "feet"),
  14513. default: true
  14514. },
  14515. ]
  14516. ))
  14517. characterMakers.push(() => makeCharacter(
  14518. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14519. {
  14520. front: {
  14521. height: math.unit(5 + 11 / 12, "feet"),
  14522. weight: math.unit(188, "lb"),
  14523. name: "Front",
  14524. image: {
  14525. source: "./media/characters/fleur/front.svg",
  14526. extra: 309 / 283,
  14527. bottom: 0.007
  14528. }
  14529. },
  14530. },
  14531. [
  14532. {
  14533. name: "Normal",
  14534. height: math.unit(5 + 11 / 12, "feet"),
  14535. default: true
  14536. },
  14537. ]
  14538. ))
  14539. characterMakers.push(() => makeCharacter(
  14540. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14541. {
  14542. front: {
  14543. height: math.unit(5 + 4 / 12, "feet"),
  14544. weight: math.unit(122, "lb"),
  14545. name: "Front",
  14546. image: {
  14547. source: "./media/characters/jude/front.svg",
  14548. extra: 288 / 273,
  14549. bottom: 0.03
  14550. }
  14551. },
  14552. },
  14553. [
  14554. {
  14555. name: "Normal",
  14556. height: math.unit(5 + 4 / 12, "feet"),
  14557. default: true
  14558. },
  14559. ]
  14560. ))
  14561. characterMakers.push(() => makeCharacter(
  14562. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14563. {
  14564. front: {
  14565. height: math.unit(5 + 11 / 12, "feet"),
  14566. weight: math.unit(190, "lb"),
  14567. name: "Front",
  14568. image: {
  14569. source: "./media/characters/seara/front.svg",
  14570. extra: 1,
  14571. bottom: 0.05
  14572. }
  14573. },
  14574. },
  14575. [
  14576. {
  14577. name: "Normal",
  14578. height: math.unit(5 + 11 / 12, "feet"),
  14579. default: true
  14580. },
  14581. ]
  14582. ))
  14583. characterMakers.push(() => makeCharacter(
  14584. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14585. {
  14586. front: {
  14587. height: math.unit(16 + 5 / 12, "feet"),
  14588. weight: math.unit(524, "lb"),
  14589. name: "Front",
  14590. image: {
  14591. source: "./media/characters/caspian/front.svg",
  14592. extra: 1,
  14593. bottom: 0.04
  14594. }
  14595. },
  14596. },
  14597. [
  14598. {
  14599. name: "Normal",
  14600. height: math.unit(16 + 5 / 12, "feet"),
  14601. default: true
  14602. },
  14603. ]
  14604. ))
  14605. characterMakers.push(() => makeCharacter(
  14606. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14607. {
  14608. front: {
  14609. height: math.unit(5 + 7 / 12, "feet"),
  14610. weight: math.unit(170, "lb"),
  14611. name: "Front",
  14612. image: {
  14613. source: "./media/characters/mika/front.svg",
  14614. extra: 1,
  14615. bottom: 0.016
  14616. }
  14617. },
  14618. },
  14619. [
  14620. {
  14621. name: "Normal",
  14622. height: math.unit(5 + 7 / 12, "feet"),
  14623. default: true
  14624. },
  14625. ]
  14626. ))
  14627. characterMakers.push(() => makeCharacter(
  14628. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14629. {
  14630. front: {
  14631. height: math.unit(6 + 2 / 12, "feet"),
  14632. weight: math.unit(268, "lb"),
  14633. name: "Front",
  14634. image: {
  14635. source: "./media/characters/sol/front.svg",
  14636. extra: 247 / 231,
  14637. bottom: 0.05
  14638. }
  14639. },
  14640. },
  14641. [
  14642. {
  14643. name: "Normal",
  14644. height: math.unit(6 + 2 / 12, "feet"),
  14645. default: true
  14646. },
  14647. ]
  14648. ))
  14649. characterMakers.push(() => makeCharacter(
  14650. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14651. {
  14652. buizel: {
  14653. height: math.unit(2 + 5 / 12, "feet"),
  14654. weight: math.unit(87, "lb"),
  14655. name: "Buizel",
  14656. image: {
  14657. source: "./media/characters/umiko/buizel.svg",
  14658. extra: 172 / 157,
  14659. bottom: 0.01
  14660. }
  14661. },
  14662. floatzel: {
  14663. height: math.unit(5 + 9 / 12, "feet"),
  14664. weight: math.unit(250, "lb"),
  14665. name: "Floatzel",
  14666. image: {
  14667. source: "./media/characters/umiko/floatzel.svg",
  14668. extra: 262 / 248
  14669. }
  14670. },
  14671. },
  14672. [
  14673. {
  14674. name: "Normal",
  14675. height: math.unit(2 + 5 / 12, "feet"),
  14676. default: true
  14677. },
  14678. ]
  14679. ))
  14680. characterMakers.push(() => makeCharacter(
  14681. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14682. {
  14683. front: {
  14684. height: math.unit(6 + 2 / 12, "feet"),
  14685. weight: math.unit(146, "lb"),
  14686. name: "Front",
  14687. image: {
  14688. source: "./media/characters/iliac/front.svg",
  14689. extra: 389 / 365,
  14690. bottom: 0.035
  14691. }
  14692. },
  14693. },
  14694. [
  14695. {
  14696. name: "Normal",
  14697. height: math.unit(6 + 2 / 12, "feet"),
  14698. default: true
  14699. },
  14700. ]
  14701. ))
  14702. characterMakers.push(() => makeCharacter(
  14703. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14704. {
  14705. front: {
  14706. height: math.unit(6, "feet"),
  14707. weight: math.unit(170, "lb"),
  14708. name: "Front",
  14709. image: {
  14710. source: "./media/characters/topaz/front.svg",
  14711. extra: 317 / 303,
  14712. bottom: 0.055
  14713. }
  14714. },
  14715. },
  14716. [
  14717. {
  14718. name: "Normal",
  14719. height: math.unit(6, "feet"),
  14720. default: true
  14721. },
  14722. ]
  14723. ))
  14724. characterMakers.push(() => makeCharacter(
  14725. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14726. {
  14727. front: {
  14728. height: math.unit(5 + 11 / 12, "feet"),
  14729. weight: math.unit(144, "lb"),
  14730. name: "Front",
  14731. image: {
  14732. source: "./media/characters/gabriel/front.svg",
  14733. extra: 285 / 262,
  14734. bottom: 0.004
  14735. }
  14736. },
  14737. },
  14738. [
  14739. {
  14740. name: "Normal",
  14741. height: math.unit(5 + 11 / 12, "feet"),
  14742. default: true
  14743. },
  14744. ]
  14745. ))
  14746. characterMakers.push(() => makeCharacter(
  14747. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14748. {
  14749. side: {
  14750. height: math.unit(6 + 5 / 12, "feet"),
  14751. weight: math.unit(300, "lb"),
  14752. name: "Side",
  14753. image: {
  14754. source: "./media/characters/tempest-suicune/side.svg",
  14755. extra: 195 / 154,
  14756. bottom: 0.04
  14757. }
  14758. },
  14759. },
  14760. [
  14761. {
  14762. name: "Normal",
  14763. height: math.unit(6 + 5 / 12, "feet"),
  14764. default: true
  14765. },
  14766. ]
  14767. ))
  14768. characterMakers.push(() => makeCharacter(
  14769. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14770. {
  14771. front: {
  14772. height: math.unit(7 + 2 / 12, "feet"),
  14773. weight: math.unit(322, "lb"),
  14774. name: "Front",
  14775. image: {
  14776. source: "./media/characters/vulcan/front.svg",
  14777. extra: 154 / 147,
  14778. bottom: 0.04
  14779. }
  14780. },
  14781. },
  14782. [
  14783. {
  14784. name: "Normal",
  14785. height: math.unit(7 + 2 / 12, "feet"),
  14786. default: true
  14787. },
  14788. ]
  14789. ))
  14790. characterMakers.push(() => makeCharacter(
  14791. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14792. {
  14793. front: {
  14794. height: math.unit(5 + 10 / 12, "feet"),
  14795. weight: math.unit(264, "lb"),
  14796. name: "Front",
  14797. image: {
  14798. source: "./media/characters/gault/front.svg",
  14799. extra: 161 / 140,
  14800. bottom: 0.028
  14801. }
  14802. },
  14803. },
  14804. [
  14805. {
  14806. name: "Normal",
  14807. height: math.unit(5 + 10 / 12, "feet"),
  14808. default: true
  14809. },
  14810. ]
  14811. ))
  14812. characterMakers.push(() => makeCharacter(
  14813. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14814. {
  14815. front: {
  14816. height: math.unit(6, "feet"),
  14817. weight: math.unit(150, "lb"),
  14818. name: "Front",
  14819. image: {
  14820. source: "./media/characters/shard/front.svg",
  14821. extra: 273 / 238,
  14822. bottom: 0.02
  14823. }
  14824. },
  14825. },
  14826. [
  14827. {
  14828. name: "Normal",
  14829. height: math.unit(3 + 6 / 12, "feet"),
  14830. default: true
  14831. },
  14832. ]
  14833. ))
  14834. characterMakers.push(() => makeCharacter(
  14835. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14836. {
  14837. front: {
  14838. height: math.unit(5 + 11 / 12, "feet"),
  14839. weight: math.unit(146, "lb"),
  14840. name: "Front",
  14841. image: {
  14842. source: "./media/characters/ashe/front.svg",
  14843. extra: 400 / 373,
  14844. bottom: 0.01
  14845. }
  14846. },
  14847. },
  14848. [
  14849. {
  14850. name: "Normal",
  14851. height: math.unit(5 + 11 / 12, "feet"),
  14852. default: true
  14853. },
  14854. ]
  14855. ))
  14856. characterMakers.push(() => makeCharacter(
  14857. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14858. {
  14859. front: {
  14860. height: math.unit(5 + 5 / 12, "feet"),
  14861. weight: math.unit(135, "lb"),
  14862. name: "Front",
  14863. image: {
  14864. source: "./media/characters/beatrix/front.svg",
  14865. extra: 392 / 379,
  14866. bottom: 0.01
  14867. }
  14868. },
  14869. },
  14870. [
  14871. {
  14872. name: "Normal",
  14873. height: math.unit(6, "feet"),
  14874. default: true
  14875. },
  14876. ]
  14877. ))
  14878. characterMakers.push(() => makeCharacter(
  14879. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14880. {
  14881. front: {
  14882. height: math.unit(6, "feet"),
  14883. weight: math.unit(150, "lb"),
  14884. name: "Front",
  14885. image: {
  14886. source: "./media/characters/ignatius/front.svg",
  14887. extra: 245 / 222,
  14888. bottom: 0.01
  14889. }
  14890. },
  14891. },
  14892. [
  14893. {
  14894. name: "Normal",
  14895. height: math.unit(5 + 5 / 12, "feet"),
  14896. default: true
  14897. },
  14898. ]
  14899. ))
  14900. characterMakers.push(() => makeCharacter(
  14901. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14902. {
  14903. front: {
  14904. height: math.unit(6 + 2 / 12, "feet"),
  14905. weight: math.unit(138, "lb"),
  14906. name: "Front",
  14907. image: {
  14908. source: "./media/characters/mei-li/front.svg",
  14909. extra: 237 / 229,
  14910. bottom: 0.03
  14911. }
  14912. },
  14913. },
  14914. [
  14915. {
  14916. name: "Normal",
  14917. height: math.unit(6 + 2 / 12, "feet"),
  14918. default: true
  14919. },
  14920. ]
  14921. ))
  14922. characterMakers.push(() => makeCharacter(
  14923. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14924. {
  14925. front: {
  14926. height: math.unit(2 + 4 / 12, "feet"),
  14927. weight: math.unit(62, "lb"),
  14928. name: "Front",
  14929. image: {
  14930. source: "./media/characters/puru/front.svg",
  14931. extra: 206 / 149,
  14932. bottom: 0.06
  14933. }
  14934. },
  14935. },
  14936. [
  14937. {
  14938. name: "Normal",
  14939. height: math.unit(2 + 4 / 12, "feet"),
  14940. default: true
  14941. },
  14942. ]
  14943. ))
  14944. characterMakers.push(() => makeCharacter(
  14945. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14946. {
  14947. taur: {
  14948. height: math.unit(11, "feet"),
  14949. weight: math.unit(500, "lb"),
  14950. name: "Taur",
  14951. image: {
  14952. source: "./media/characters/kee/taur.svg",
  14953. extra: 1,
  14954. bottom: 0.04
  14955. }
  14956. },
  14957. },
  14958. [
  14959. {
  14960. name: "Normal",
  14961. height: math.unit(11, "feet"),
  14962. default: true
  14963. },
  14964. ]
  14965. ))
  14966. characterMakers.push(() => makeCharacter(
  14967. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14968. {
  14969. anthro: {
  14970. height: math.unit(7, "feet"),
  14971. weight: math.unit(190, "lb"),
  14972. name: "Anthro",
  14973. image: {
  14974. source: "./media/characters/cobalt-dracha/anthro.svg",
  14975. extra: 231 / 225,
  14976. bottom: 0.04
  14977. }
  14978. },
  14979. feral: {
  14980. height: math.unit(9 + 7 / 12, "feet"),
  14981. weight: math.unit(294, "lb"),
  14982. name: "Feral",
  14983. image: {
  14984. source: "./media/characters/cobalt-dracha/feral.svg",
  14985. extra: 692 / 633,
  14986. bottom: 0.05
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Normal",
  14993. height: math.unit(7, "feet"),
  14994. default: true
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15000. {
  15001. fallen: {
  15002. height: math.unit(11 + 8 / 12, "feet"),
  15003. weight: math.unit(485, "lb"),
  15004. name: "Java (Fallen)",
  15005. rename: true,
  15006. image: {
  15007. source: "./media/characters/java/fallen.svg",
  15008. extra: 226 / 208,
  15009. bottom: 0.005
  15010. }
  15011. },
  15012. godkin: {
  15013. height: math.unit(10 + 6 / 12, "feet"),
  15014. weight: math.unit(328, "lb"),
  15015. name: "Java (Godkin)",
  15016. rename: true,
  15017. image: {
  15018. source: "./media/characters/java/godkin.svg",
  15019. extra: 270 / 262,
  15020. bottom: 0.02
  15021. }
  15022. },
  15023. },
  15024. [
  15025. {
  15026. name: "Normal",
  15027. height: math.unit(11 + 8 / 12, "feet"),
  15028. default: true
  15029. },
  15030. ]
  15031. ))
  15032. characterMakers.push(() => makeCharacter(
  15033. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15034. {
  15035. front: {
  15036. height: math.unit(7 + 8 / 12, "feet"),
  15037. weight: math.unit(320, "lb"),
  15038. name: "Front",
  15039. image: {
  15040. source: "./media/characters/skoll/front.svg",
  15041. extra: 232 / 220,
  15042. bottom: 0.02
  15043. }
  15044. },
  15045. },
  15046. [
  15047. {
  15048. name: "Normal",
  15049. height: math.unit(7 + 8 / 12, "feet"),
  15050. default: true
  15051. },
  15052. ]
  15053. ))
  15054. characterMakers.push(() => makeCharacter(
  15055. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15056. {
  15057. front: {
  15058. height: math.unit(5 + 9 / 12, "feet"),
  15059. weight: math.unit(170, "lb"),
  15060. name: "Front",
  15061. image: {
  15062. source: "./media/characters/purna/front.svg",
  15063. extra: 239 / 229,
  15064. bottom: 0.01
  15065. }
  15066. },
  15067. },
  15068. [
  15069. {
  15070. name: "Normal",
  15071. height: math.unit(5 + 9 / 12, "feet"),
  15072. default: true
  15073. },
  15074. ]
  15075. ))
  15076. characterMakers.push(() => makeCharacter(
  15077. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15078. {
  15079. front: {
  15080. height: math.unit(5 + 9 / 12, "feet"),
  15081. weight: math.unit(142, "lb"),
  15082. name: "Front",
  15083. image: {
  15084. source: "./media/characters/kuva/front.svg",
  15085. extra: 281 / 271,
  15086. bottom: 0.006
  15087. }
  15088. },
  15089. },
  15090. [
  15091. {
  15092. name: "Normal",
  15093. height: math.unit(5 + 9 / 12, "feet"),
  15094. default: true
  15095. },
  15096. ]
  15097. ))
  15098. characterMakers.push(() => makeCharacter(
  15099. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15100. {
  15101. anthro: {
  15102. height: math.unit(9 + 2 / 12, "feet"),
  15103. weight: math.unit(270, "lb"),
  15104. name: "Anthro",
  15105. image: {
  15106. source: "./media/characters/embra/anthro.svg",
  15107. extra: 200 / 187,
  15108. bottom: 0.02
  15109. }
  15110. },
  15111. feral: {
  15112. height: math.unit(18 + 8 / 12, "feet"),
  15113. weight: math.unit(576, "lb"),
  15114. name: "Feral",
  15115. image: {
  15116. source: "./media/characters/embra/feral.svg",
  15117. extra: 152 / 137,
  15118. bottom: 0.037
  15119. }
  15120. },
  15121. },
  15122. [
  15123. {
  15124. name: "Normal",
  15125. height: math.unit(9 + 2 / 12, "feet"),
  15126. default: true
  15127. },
  15128. ]
  15129. ))
  15130. characterMakers.push(() => makeCharacter(
  15131. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15132. {
  15133. anthro: {
  15134. height: math.unit(10 + 9 / 12, "feet"),
  15135. weight: math.unit(224, "lb"),
  15136. name: "Anthro",
  15137. image: {
  15138. source: "./media/characters/grottos/anthro.svg",
  15139. extra: 350 / 332,
  15140. bottom: 0.045
  15141. }
  15142. },
  15143. feral: {
  15144. height: math.unit(20 + 7 / 12, "feet"),
  15145. weight: math.unit(629, "lb"),
  15146. name: "Feral",
  15147. image: {
  15148. source: "./media/characters/grottos/feral.svg",
  15149. extra: 207 / 190,
  15150. bottom: 0.05
  15151. }
  15152. },
  15153. },
  15154. [
  15155. {
  15156. name: "Normal",
  15157. height: math.unit(10 + 9 / 12, "feet"),
  15158. default: true
  15159. },
  15160. ]
  15161. ))
  15162. characterMakers.push(() => makeCharacter(
  15163. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15164. {
  15165. anthro: {
  15166. height: math.unit(9 + 6 / 12, "feet"),
  15167. weight: math.unit(298, "lb"),
  15168. name: "Anthro",
  15169. image: {
  15170. source: "./media/characters/frifna/anthro.svg",
  15171. extra: 282 / 269,
  15172. bottom: 0.015
  15173. }
  15174. },
  15175. feral: {
  15176. height: math.unit(16 + 2 / 12, "feet"),
  15177. weight: math.unit(624, "lb"),
  15178. name: "Feral",
  15179. image: {
  15180. source: "./media/characters/frifna/feral.svg"
  15181. }
  15182. },
  15183. },
  15184. [
  15185. {
  15186. name: "Normal",
  15187. height: math.unit(9 + 6 / 12, "feet"),
  15188. default: true
  15189. },
  15190. ]
  15191. ))
  15192. characterMakers.push(() => makeCharacter(
  15193. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15194. {
  15195. front: {
  15196. height: math.unit(6 + 2 / 12, "feet"),
  15197. weight: math.unit(168, "lb"),
  15198. name: "Front",
  15199. image: {
  15200. source: "./media/characters/elise/front.svg",
  15201. extra: 276 / 271
  15202. }
  15203. },
  15204. },
  15205. [
  15206. {
  15207. name: "Normal",
  15208. height: math.unit(6 + 2 / 12, "feet"),
  15209. default: true
  15210. },
  15211. ]
  15212. ))
  15213. characterMakers.push(() => makeCharacter(
  15214. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15215. {
  15216. front: {
  15217. height: math.unit(5 + 10 / 12, "feet"),
  15218. weight: math.unit(210, "lb"),
  15219. name: "Front",
  15220. image: {
  15221. source: "./media/characters/glade/front.svg",
  15222. extra: 258 / 247,
  15223. bottom: 0.008
  15224. }
  15225. },
  15226. },
  15227. [
  15228. {
  15229. name: "Normal",
  15230. height: math.unit(5 + 10 / 12, "feet"),
  15231. default: true
  15232. },
  15233. ]
  15234. ))
  15235. characterMakers.push(() => makeCharacter(
  15236. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15237. {
  15238. front: {
  15239. height: math.unit(5 + 10 / 12, "feet"),
  15240. weight: math.unit(129, "lb"),
  15241. name: "Front",
  15242. image: {
  15243. source: "./media/characters/rina/front.svg",
  15244. extra: 266 / 255,
  15245. bottom: 0.005
  15246. }
  15247. },
  15248. },
  15249. [
  15250. {
  15251. name: "Normal",
  15252. height: math.unit(5 + 10 / 12, "feet"),
  15253. default: true
  15254. },
  15255. ]
  15256. ))
  15257. characterMakers.push(() => makeCharacter(
  15258. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15259. {
  15260. front: {
  15261. height: math.unit(6 + 1 / 12, "feet"),
  15262. weight: math.unit(192, "lb"),
  15263. name: "Front",
  15264. image: {
  15265. source: "./media/characters/veronica/front.svg",
  15266. extra: 319 / 309,
  15267. bottom: 0.005
  15268. }
  15269. },
  15270. },
  15271. [
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(6 + 1 / 12, "feet"),
  15275. default: true
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15281. {
  15282. front: {
  15283. height: math.unit(9 + 3 / 12, "feet"),
  15284. weight: math.unit(1100, "lb"),
  15285. name: "Front",
  15286. image: {
  15287. source: "./media/characters/braxton/front.svg",
  15288. extra: 1057 / 984,
  15289. bottom: 0.05
  15290. }
  15291. },
  15292. },
  15293. [
  15294. {
  15295. name: "Normal",
  15296. height: math.unit(9 + 3 / 12, "feet")
  15297. },
  15298. {
  15299. name: "Giant",
  15300. height: math.unit(300, "feet"),
  15301. default: true
  15302. },
  15303. {
  15304. name: "Macro",
  15305. height: math.unit(700, "feet")
  15306. },
  15307. {
  15308. name: "Megamacro",
  15309. height: math.unit(6000, "feet")
  15310. },
  15311. ]
  15312. ))
  15313. characterMakers.push(() => makeCharacter(
  15314. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15315. {
  15316. front: {
  15317. height: math.unit(6 + 7 / 12, "feet"),
  15318. weight: math.unit(150, "lb"),
  15319. name: "Front",
  15320. image: {
  15321. source: "./media/characters/blue-feyonics/front.svg",
  15322. extra: 1403 / 1306,
  15323. bottom: 0.047
  15324. }
  15325. },
  15326. },
  15327. [
  15328. {
  15329. name: "Normal",
  15330. height: math.unit(6 + 7 / 12, "feet"),
  15331. default: true
  15332. },
  15333. ]
  15334. ))
  15335. characterMakers.push(() => makeCharacter(
  15336. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15337. {
  15338. front: {
  15339. height: math.unit(1.8, "meters"),
  15340. weight: math.unit(60, "kg"),
  15341. name: "Front",
  15342. image: {
  15343. source: "./media/characters/maxwell/front.svg",
  15344. extra: 2060 / 1873
  15345. }
  15346. },
  15347. },
  15348. [
  15349. {
  15350. name: "Micro",
  15351. height: math.unit(1, "mm")
  15352. },
  15353. {
  15354. name: "Normal",
  15355. height: math.unit(1.8, "meter"),
  15356. default: true
  15357. },
  15358. {
  15359. name: "Macro",
  15360. height: math.unit(30, "meters")
  15361. },
  15362. {
  15363. name: "Megamacro",
  15364. height: math.unit(10, "km")
  15365. },
  15366. ]
  15367. ))
  15368. characterMakers.push(() => makeCharacter(
  15369. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15370. {
  15371. front: {
  15372. height: math.unit(6, "feet"),
  15373. weight: math.unit(150, "lb"),
  15374. name: "Front",
  15375. image: {
  15376. source: "./media/characters/jack/front.svg",
  15377. extra: 1754 / 1640,
  15378. bottom: 0.01
  15379. }
  15380. },
  15381. },
  15382. [
  15383. {
  15384. name: "Normal",
  15385. height: math.unit(80000, "feet"),
  15386. default: true
  15387. },
  15388. {
  15389. name: "Max size",
  15390. height: math.unit(10, "lightyears")
  15391. },
  15392. ]
  15393. ))
  15394. characterMakers.push(() => makeCharacter(
  15395. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15396. {
  15397. upright: {
  15398. height: math.unit(7, "feet"),
  15399. weight: math.unit(170, "lb"),
  15400. name: "Upright",
  15401. image: {
  15402. source: "./media/characters/cafat/upright.svg",
  15403. bottom: 0.01
  15404. }
  15405. },
  15406. uprightFull: {
  15407. height: math.unit(7, "feet"),
  15408. weight: math.unit(170, "lb"),
  15409. name: "Upright (Full)",
  15410. image: {
  15411. source: "./media/characters/cafat/upright-full.svg",
  15412. bottom: 0.01
  15413. }
  15414. },
  15415. side: {
  15416. height: math.unit(5, "feet"),
  15417. weight: math.unit(150, "lb"),
  15418. name: "Side",
  15419. image: {
  15420. source: "./media/characters/cafat/side.svg"
  15421. }
  15422. },
  15423. },
  15424. [
  15425. {
  15426. name: "Small",
  15427. height: math.unit(7, "feet"),
  15428. default: true
  15429. },
  15430. {
  15431. name: "Large",
  15432. height: math.unit(15.5, "feet")
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15438. {
  15439. front: {
  15440. height: math.unit(6, "feet"),
  15441. weight: math.unit(150, "lb"),
  15442. name: "Front",
  15443. image: {
  15444. source: "./media/characters/verin-raharra/front.svg",
  15445. extra: 5019 / 4835,
  15446. bottom: 0.023
  15447. }
  15448. },
  15449. },
  15450. [
  15451. {
  15452. name: "Normal",
  15453. height: math.unit(7 + 5 / 12, "feet"),
  15454. default: true
  15455. },
  15456. {
  15457. name: "Upsized",
  15458. height: math.unit(20, "feet")
  15459. },
  15460. ]
  15461. ))
  15462. characterMakers.push(() => makeCharacter(
  15463. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15464. {
  15465. front: {
  15466. height: math.unit(7, "feet"),
  15467. weight: math.unit(230, "lb"),
  15468. name: "Front",
  15469. image: {
  15470. source: "./media/characters/nakata/front.svg",
  15471. extra: 1.005,
  15472. bottom: 0.01
  15473. }
  15474. },
  15475. },
  15476. [
  15477. {
  15478. name: "Normal",
  15479. height: math.unit(7, "feet"),
  15480. default: true
  15481. },
  15482. {
  15483. name: "Big",
  15484. height: math.unit(14, "feet")
  15485. },
  15486. {
  15487. name: "Macro",
  15488. height: math.unit(400, "feet")
  15489. },
  15490. ]
  15491. ))
  15492. characterMakers.push(() => makeCharacter(
  15493. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15494. {
  15495. front: {
  15496. height: math.unit(4.91, "feet"),
  15497. weight: math.unit(100, "lb"),
  15498. name: "Front",
  15499. image: {
  15500. source: "./media/characters/lily/front.svg",
  15501. extra: 1585 / 1415,
  15502. bottom: 0.02
  15503. }
  15504. },
  15505. },
  15506. [
  15507. {
  15508. name: "Normal",
  15509. height: math.unit(4.91, "feet"),
  15510. default: true
  15511. },
  15512. ]
  15513. ))
  15514. characterMakers.push(() => makeCharacter(
  15515. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15516. {
  15517. laying: {
  15518. height: math.unit(4 + 4 / 12, "feet"),
  15519. weight: math.unit(600, "lb"),
  15520. name: "Laying",
  15521. image: {
  15522. source: "./media/characters/sheila/laying.svg",
  15523. extra: 1333 / 1265,
  15524. bottom: 0.16
  15525. }
  15526. },
  15527. },
  15528. [
  15529. {
  15530. name: "Normal",
  15531. height: math.unit(4 + 4 / 12, "feet"),
  15532. default: true
  15533. },
  15534. ]
  15535. ))
  15536. characterMakers.push(() => makeCharacter(
  15537. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15538. {
  15539. front: {
  15540. height: math.unit(6, "feet"),
  15541. weight: math.unit(190, "lb"),
  15542. name: "Front",
  15543. image: {
  15544. source: "./media/characters/sax/front.svg",
  15545. extra: 1187 / 973,
  15546. bottom: 0.042
  15547. }
  15548. },
  15549. },
  15550. [
  15551. {
  15552. name: "Micro",
  15553. height: math.unit(4, "inches"),
  15554. default: true
  15555. },
  15556. ]
  15557. ))
  15558. characterMakers.push(() => makeCharacter(
  15559. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15560. {
  15561. front: {
  15562. height: math.unit(6, "feet"),
  15563. weight: math.unit(150, "lb"),
  15564. name: "Front",
  15565. image: {
  15566. source: "./media/characters/pandora/front.svg",
  15567. extra: 2720 / 2556,
  15568. bottom: 0.015
  15569. }
  15570. },
  15571. back: {
  15572. height: math.unit(6, "feet"),
  15573. weight: math.unit(150, "lb"),
  15574. name: "Back",
  15575. image: {
  15576. source: "./media/characters/pandora/back.svg",
  15577. extra: 2720 / 2556,
  15578. bottom: 0.01
  15579. }
  15580. },
  15581. beans: {
  15582. height: math.unit(6 / 8, "feet"),
  15583. name: "Beans",
  15584. image: {
  15585. source: "./media/characters/pandora/beans.svg"
  15586. }
  15587. },
  15588. skirt: {
  15589. height: math.unit(6, "feet"),
  15590. weight: math.unit(150, "lb"),
  15591. name: "Skirt",
  15592. image: {
  15593. source: "./media/characters/pandora/skirt.svg",
  15594. extra: 1622 / 1525,
  15595. bottom: 0.015
  15596. }
  15597. },
  15598. hoodie: {
  15599. height: math.unit(6, "feet"),
  15600. weight: math.unit(150, "lb"),
  15601. name: "Hoodie",
  15602. image: {
  15603. source: "./media/characters/pandora/hoodie.svg",
  15604. extra: 1622 / 1525,
  15605. bottom: 0.015
  15606. }
  15607. },
  15608. casual: {
  15609. height: math.unit(6, "feet"),
  15610. weight: math.unit(150, "lb"),
  15611. name: "Casual",
  15612. image: {
  15613. source: "./media/characters/pandora/casual.svg",
  15614. extra: 1622 / 1525,
  15615. bottom: 0.015
  15616. }
  15617. },
  15618. },
  15619. [
  15620. {
  15621. name: "Normal",
  15622. height: math.unit(6, "feet")
  15623. },
  15624. {
  15625. name: "Big Steppy",
  15626. height: math.unit(1, "km"),
  15627. default: true
  15628. },
  15629. ]
  15630. ))
  15631. characterMakers.push(() => makeCharacter(
  15632. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15633. {
  15634. side: {
  15635. height: math.unit(10, "feet"),
  15636. weight: math.unit(800, "kg"),
  15637. name: "Side",
  15638. image: {
  15639. source: "./media/characters/venio-darcony/side.svg",
  15640. extra: 1373 / 1003,
  15641. bottom: 0.037
  15642. }
  15643. },
  15644. front: {
  15645. height: math.unit(19, "feet"),
  15646. weight: math.unit(800, "kg"),
  15647. name: "Front",
  15648. image: {
  15649. source: "./media/characters/venio-darcony/front.svg"
  15650. }
  15651. },
  15652. back: {
  15653. height: math.unit(19, "feet"),
  15654. weight: math.unit(800, "kg"),
  15655. name: "Back",
  15656. image: {
  15657. source: "./media/characters/venio-darcony/back.svg"
  15658. }
  15659. },
  15660. sideNsfw: {
  15661. height: math.unit(10, "feet"),
  15662. weight: math.unit(800, "kg"),
  15663. name: "Side (NSFW)",
  15664. image: {
  15665. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15666. extra: 1373 / 1003,
  15667. bottom: 0.037
  15668. }
  15669. },
  15670. frontNsfw: {
  15671. height: math.unit(19, "feet"),
  15672. weight: math.unit(800, "kg"),
  15673. name: "Front (NSFW)",
  15674. image: {
  15675. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15676. }
  15677. },
  15678. backNsfw: {
  15679. height: math.unit(19, "feet"),
  15680. weight: math.unit(800, "kg"),
  15681. name: "Back (NSFW)",
  15682. image: {
  15683. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15684. }
  15685. },
  15686. sideArmored: {
  15687. height: math.unit(10, "feet"),
  15688. weight: math.unit(800, "kg"),
  15689. name: "Side (Armored)",
  15690. image: {
  15691. source: "./media/characters/venio-darcony/side-armored.svg",
  15692. extra: 1373 / 1003,
  15693. bottom: 0.037
  15694. }
  15695. },
  15696. frontArmored: {
  15697. height: math.unit(19, "feet"),
  15698. weight: math.unit(900, "kg"),
  15699. name: "Front (Armored)",
  15700. image: {
  15701. source: "./media/characters/venio-darcony/front-armored.svg"
  15702. }
  15703. },
  15704. backArmored: {
  15705. height: math.unit(19, "feet"),
  15706. weight: math.unit(900, "kg"),
  15707. name: "Back (Armored)",
  15708. image: {
  15709. source: "./media/characters/venio-darcony/back-armored.svg"
  15710. }
  15711. },
  15712. sword: {
  15713. height: math.unit(10, "feet"),
  15714. weight: math.unit(50, "lb"),
  15715. name: "Sword",
  15716. image: {
  15717. source: "./media/characters/venio-darcony/sword.svg"
  15718. }
  15719. },
  15720. },
  15721. [
  15722. {
  15723. name: "Normal",
  15724. height: math.unit(10, "feet")
  15725. },
  15726. {
  15727. name: "Macro",
  15728. height: math.unit(130, "feet"),
  15729. default: true
  15730. },
  15731. {
  15732. name: "Macro+",
  15733. height: math.unit(240, "feet")
  15734. },
  15735. ]
  15736. ))
  15737. characterMakers.push(() => makeCharacter(
  15738. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15739. {
  15740. front: {
  15741. height: math.unit(6, "feet"),
  15742. weight: math.unit(150, "lb"),
  15743. name: "Front",
  15744. image: {
  15745. source: "./media/characters/veski/front.svg",
  15746. extra: 1299 / 1225,
  15747. bottom: 0.04
  15748. }
  15749. },
  15750. back: {
  15751. height: math.unit(6, "feet"),
  15752. weight: math.unit(150, "lb"),
  15753. name: "Back",
  15754. image: {
  15755. source: "./media/characters/veski/back.svg",
  15756. extra: 1299 / 1225,
  15757. bottom: 0.008
  15758. }
  15759. },
  15760. maw: {
  15761. height: math.unit(1.5 * 1.21, "feet"),
  15762. name: "Maw",
  15763. image: {
  15764. source: "./media/characters/veski/maw.svg"
  15765. }
  15766. },
  15767. },
  15768. [
  15769. {
  15770. name: "Macro",
  15771. height: math.unit(2, "km"),
  15772. default: true
  15773. },
  15774. ]
  15775. ))
  15776. characterMakers.push(() => makeCharacter(
  15777. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15778. {
  15779. front: {
  15780. height: math.unit(5 + 7 / 12, "feet"),
  15781. name: "Front",
  15782. image: {
  15783. source: "./media/characters/isabelle/front.svg",
  15784. extra: 2130 / 1976,
  15785. bottom: 0.05
  15786. }
  15787. },
  15788. },
  15789. [
  15790. {
  15791. name: "Supermicro",
  15792. height: math.unit(10, "micrometers")
  15793. },
  15794. {
  15795. name: "Micro",
  15796. height: math.unit(1, "inch")
  15797. },
  15798. {
  15799. name: "Tiny",
  15800. height: math.unit(5, "inches")
  15801. },
  15802. {
  15803. name: "Standard",
  15804. height: math.unit(5 + 7 / 12, "inches")
  15805. },
  15806. {
  15807. name: "Macro",
  15808. height: math.unit(80, "meters"),
  15809. default: true
  15810. },
  15811. {
  15812. name: "Megamacro",
  15813. height: math.unit(250, "meters")
  15814. },
  15815. {
  15816. name: "Gigamacro",
  15817. height: math.unit(5, "km")
  15818. },
  15819. {
  15820. name: "Cosmic",
  15821. height: math.unit(2.5e6, "miles")
  15822. },
  15823. ]
  15824. ))
  15825. characterMakers.push(() => makeCharacter(
  15826. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15827. {
  15828. front: {
  15829. height: math.unit(6, "feet"),
  15830. weight: math.unit(150, "lb"),
  15831. name: "Front",
  15832. image: {
  15833. source: "./media/characters/hanzo/front.svg",
  15834. extra: 374 / 344,
  15835. bottom: 0.02
  15836. }
  15837. },
  15838. },
  15839. [
  15840. {
  15841. name: "Normal",
  15842. height: math.unit(8, "feet"),
  15843. default: true
  15844. },
  15845. ]
  15846. ))
  15847. characterMakers.push(() => makeCharacter(
  15848. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15849. {
  15850. front: {
  15851. height: math.unit(7, "feet"),
  15852. weight: math.unit(130, "lb"),
  15853. name: "Front",
  15854. image: {
  15855. source: "./media/characters/anna/front.svg",
  15856. extra: 169 / 145,
  15857. bottom: 0.06
  15858. }
  15859. },
  15860. full: {
  15861. height: math.unit(4.96, "feet"),
  15862. weight: math.unit(220, "lb"),
  15863. name: "Full",
  15864. image: {
  15865. source: "./media/characters/anna/full.svg",
  15866. extra: 138 / 114,
  15867. bottom: 0.15
  15868. }
  15869. },
  15870. tongue: {
  15871. height: math.unit(2.53, "feet"),
  15872. name: "Tongue",
  15873. image: {
  15874. source: "./media/characters/anna/tongue.svg"
  15875. }
  15876. },
  15877. },
  15878. [
  15879. {
  15880. name: "Normal",
  15881. height: math.unit(7, "feet"),
  15882. default: true
  15883. },
  15884. ]
  15885. ))
  15886. characterMakers.push(() => makeCharacter(
  15887. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15888. {
  15889. front: {
  15890. height: math.unit(7, "feet"),
  15891. weight: math.unit(150, "lb"),
  15892. name: "Front",
  15893. image: {
  15894. source: "./media/characters/ian-corvid/front.svg",
  15895. extra: 150 / 142,
  15896. bottom: 0.02
  15897. }
  15898. },
  15899. back: {
  15900. height: math.unit(7, "feet"),
  15901. weight: math.unit(150, "lb"),
  15902. name: "Back",
  15903. image: {
  15904. source: "./media/characters/ian-corvid/back.svg",
  15905. extra: 150 / 143,
  15906. bottom: 0.01
  15907. }
  15908. },
  15909. stomping: {
  15910. height: math.unit(7, "feet"),
  15911. weight: math.unit(150, "lb"),
  15912. name: "Stomping",
  15913. image: {
  15914. source: "./media/characters/ian-corvid/stomping.svg",
  15915. extra: 76 / 72
  15916. }
  15917. },
  15918. sitting: {
  15919. height: math.unit(7 / 1.8, "feet"),
  15920. weight: math.unit(150, "lb"),
  15921. name: "Sitting",
  15922. image: {
  15923. source: "./media/characters/ian-corvid/sitting.svg",
  15924. extra: 1400 / 1269,
  15925. bottom: 0.15
  15926. }
  15927. },
  15928. },
  15929. [
  15930. {
  15931. name: "Tiny Microw",
  15932. height: math.unit(1, "inch")
  15933. },
  15934. {
  15935. name: "Microw",
  15936. height: math.unit(6, "inches")
  15937. },
  15938. {
  15939. name: "Crow",
  15940. height: math.unit(7 + 1 / 12, "feet"),
  15941. default: true
  15942. },
  15943. {
  15944. name: "Macrow",
  15945. height: math.unit(176, "feet")
  15946. },
  15947. ]
  15948. ))
  15949. characterMakers.push(() => makeCharacter(
  15950. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15951. {
  15952. front: {
  15953. height: math.unit(5 + 7 / 12, "feet"),
  15954. weight: math.unit(147, "lb"),
  15955. name: "Front",
  15956. image: {
  15957. source: "./media/characters/natalie-kellon/front.svg",
  15958. extra: 1214 / 1141,
  15959. bottom: 0.02
  15960. }
  15961. },
  15962. },
  15963. [
  15964. {
  15965. name: "Micro",
  15966. height: math.unit(1 / 16, "inch")
  15967. },
  15968. {
  15969. name: "Tiny",
  15970. height: math.unit(4, "inches")
  15971. },
  15972. {
  15973. name: "Normal",
  15974. height: math.unit(5 + 7 / 12, "feet"),
  15975. default: true
  15976. },
  15977. {
  15978. name: "Amazon",
  15979. height: math.unit(12, "feet")
  15980. },
  15981. {
  15982. name: "Giantess",
  15983. height: math.unit(160, "meters")
  15984. },
  15985. {
  15986. name: "Titaness",
  15987. height: math.unit(800, "meters")
  15988. },
  15989. ]
  15990. ))
  15991. characterMakers.push(() => makeCharacter(
  15992. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15993. {
  15994. front: {
  15995. height: math.unit(6, "feet"),
  15996. weight: math.unit(150, "lb"),
  15997. name: "Front",
  15998. image: {
  15999. source: "./media/characters/alluria/front.svg",
  16000. extra: 806 / 738,
  16001. bottom: 0.01
  16002. }
  16003. },
  16004. side: {
  16005. height: math.unit(6, "feet"),
  16006. weight: math.unit(150, "lb"),
  16007. name: "Side",
  16008. image: {
  16009. source: "./media/characters/alluria/side.svg",
  16010. extra: 800 / 750,
  16011. }
  16012. },
  16013. back: {
  16014. height: math.unit(6, "feet"),
  16015. weight: math.unit(150, "lb"),
  16016. name: "Back",
  16017. image: {
  16018. source: "./media/characters/alluria/back.svg",
  16019. extra: 806 / 738,
  16020. }
  16021. },
  16022. frontMaid: {
  16023. height: math.unit(6, "feet"),
  16024. weight: math.unit(150, "lb"),
  16025. name: "Front (Maid)",
  16026. image: {
  16027. source: "./media/characters/alluria/front-maid.svg",
  16028. extra: 806 / 738,
  16029. bottom: 0.01
  16030. }
  16031. },
  16032. sideMaid: {
  16033. height: math.unit(6, "feet"),
  16034. weight: math.unit(150, "lb"),
  16035. name: "Side (Maid)",
  16036. image: {
  16037. source: "./media/characters/alluria/side-maid.svg",
  16038. extra: 800 / 750,
  16039. bottom: 0.005
  16040. }
  16041. },
  16042. backMaid: {
  16043. height: math.unit(6, "feet"),
  16044. weight: math.unit(150, "lb"),
  16045. name: "Back (Maid)",
  16046. image: {
  16047. source: "./media/characters/alluria/back-maid.svg",
  16048. extra: 806 / 738,
  16049. }
  16050. },
  16051. },
  16052. [
  16053. {
  16054. name: "Micro",
  16055. height: math.unit(6, "inches"),
  16056. default: true
  16057. },
  16058. ]
  16059. ))
  16060. characterMakers.push(() => makeCharacter(
  16061. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16062. {
  16063. front: {
  16064. height: math.unit(6, "feet"),
  16065. weight: math.unit(150, "lb"),
  16066. name: "Front",
  16067. image: {
  16068. source: "./media/characters/kyle/front.svg",
  16069. extra: 1069 / 962,
  16070. bottom: 77.228 / 1727.45
  16071. }
  16072. },
  16073. },
  16074. [
  16075. {
  16076. name: "Macro",
  16077. height: math.unit(150, "feet"),
  16078. default: true
  16079. },
  16080. ]
  16081. ))
  16082. characterMakers.push(() => makeCharacter(
  16083. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16084. {
  16085. front: {
  16086. height: math.unit(6, "feet"),
  16087. weight: math.unit(300, "lb"),
  16088. name: "Front",
  16089. image: {
  16090. source: "./media/characters/duncan/front.svg",
  16091. extra: 1650 / 1482,
  16092. bottom: 0.05
  16093. }
  16094. },
  16095. },
  16096. [
  16097. {
  16098. name: "Macro",
  16099. height: math.unit(100, "feet"),
  16100. default: true
  16101. },
  16102. ]
  16103. ))
  16104. characterMakers.push(() => makeCharacter(
  16105. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16106. {
  16107. front: {
  16108. height: math.unit(5 + 4 / 12, "feet"),
  16109. weight: math.unit(220, "lb"),
  16110. name: "Front",
  16111. image: {
  16112. source: "./media/characters/memory/front.svg",
  16113. extra: 3641 / 3545,
  16114. bottom: 0.03
  16115. }
  16116. },
  16117. back: {
  16118. height: math.unit(5 + 4 / 12, "feet"),
  16119. weight: math.unit(220, "lb"),
  16120. name: "Back",
  16121. image: {
  16122. source: "./media/characters/memory/back.svg",
  16123. extra: 3641 / 3545,
  16124. bottom: 0.025
  16125. }
  16126. },
  16127. frontSkirt: {
  16128. height: math.unit(5 + 4 / 12, "feet"),
  16129. weight: math.unit(220, "lb"),
  16130. name: "Front (Skirt)",
  16131. image: {
  16132. source: "./media/characters/memory/front-skirt.svg",
  16133. extra: 3641 / 3545,
  16134. bottom: 0.03
  16135. }
  16136. },
  16137. frontDress: {
  16138. height: math.unit(5 + 4 / 12, "feet"),
  16139. weight: math.unit(220, "lb"),
  16140. name: "Front (Dress)",
  16141. image: {
  16142. source: "./media/characters/memory/front-dress.svg",
  16143. extra: 3641 / 3545,
  16144. bottom: 0.03
  16145. }
  16146. },
  16147. },
  16148. [
  16149. {
  16150. name: "Micro",
  16151. height: math.unit(6, "inches"),
  16152. default: true
  16153. },
  16154. {
  16155. name: "Normal",
  16156. height: math.unit(5 + 4 / 12, "feet")
  16157. },
  16158. ]
  16159. ))
  16160. characterMakers.push(() => makeCharacter(
  16161. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16162. {
  16163. front: {
  16164. height: math.unit(4 + 11 / 12, "feet"),
  16165. weight: math.unit(100, "lb"),
  16166. name: "Front",
  16167. image: {
  16168. source: "./media/characters/luno/front.svg",
  16169. extra: 1535 / 1487,
  16170. bottom: 0.03
  16171. }
  16172. },
  16173. },
  16174. [
  16175. {
  16176. name: "Micro",
  16177. height: math.unit(3, "inches")
  16178. },
  16179. {
  16180. name: "Normal",
  16181. height: math.unit(4 + 11 / 12, "feet"),
  16182. default: true
  16183. },
  16184. {
  16185. name: "Macro",
  16186. height: math.unit(300, "feet")
  16187. },
  16188. {
  16189. name: "Megamacro",
  16190. height: math.unit(700, "miles")
  16191. },
  16192. ]
  16193. ))
  16194. characterMakers.push(() => makeCharacter(
  16195. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16196. {
  16197. front: {
  16198. height: math.unit(6 + 2 / 12, "feet"),
  16199. weight: math.unit(170, "lb"),
  16200. name: "Front",
  16201. image: {
  16202. source: "./media/characters/jamesy/front.svg",
  16203. extra: 440 / 382,
  16204. bottom: 0.005
  16205. }
  16206. },
  16207. },
  16208. [
  16209. {
  16210. name: "Micro",
  16211. height: math.unit(3, "inches")
  16212. },
  16213. {
  16214. name: "Normal",
  16215. height: math.unit(6 + 2 / 12, "feet"),
  16216. default: true
  16217. },
  16218. {
  16219. name: "Macro",
  16220. height: math.unit(300, "feet")
  16221. },
  16222. {
  16223. name: "Megamacro",
  16224. height: math.unit(700, "miles")
  16225. },
  16226. ]
  16227. ))
  16228. characterMakers.push(() => makeCharacter(
  16229. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16230. {
  16231. front: {
  16232. height: math.unit(6, "feet"),
  16233. weight: math.unit(160, "lb"),
  16234. name: "Front",
  16235. image: {
  16236. source: "./media/characters/mark/front.svg",
  16237. extra: 3300 / 3100,
  16238. bottom: 136.42 / 3440.47
  16239. }
  16240. },
  16241. },
  16242. [
  16243. {
  16244. name: "Macro",
  16245. height: math.unit(120, "meters")
  16246. },
  16247. {
  16248. name: "Bigger Macro",
  16249. height: math.unit(350, "meters")
  16250. },
  16251. {
  16252. name: "Megamacro",
  16253. height: math.unit(8, "km"),
  16254. default: true
  16255. },
  16256. {
  16257. name: "Continental",
  16258. height: math.unit(4550, "km")
  16259. },
  16260. {
  16261. name: "Planetary",
  16262. height: math.unit(65000, "km")
  16263. },
  16264. ]
  16265. ))
  16266. characterMakers.push(() => makeCharacter(
  16267. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16268. {
  16269. front: {
  16270. height: math.unit(6, "feet"),
  16271. weight: math.unit(400, "lb"),
  16272. name: "Front",
  16273. image: {
  16274. source: "./media/characters/mac/front.svg",
  16275. extra: 1048 / 987.7,
  16276. bottom: 60 / 1107.6,
  16277. }
  16278. },
  16279. },
  16280. [
  16281. {
  16282. name: "Macro",
  16283. height: math.unit(500, "feet"),
  16284. default: true
  16285. },
  16286. ]
  16287. ))
  16288. characterMakers.push(() => makeCharacter(
  16289. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16290. {
  16291. front: {
  16292. height: math.unit(5 + 2 / 12, "feet"),
  16293. weight: math.unit(190, "lb"),
  16294. name: "Front",
  16295. image: {
  16296. source: "./media/characters/bari/front.svg",
  16297. extra: 3156 / 2880,
  16298. bottom: 0.03
  16299. }
  16300. },
  16301. back: {
  16302. height: math.unit(5 + 2 / 12, "feet"),
  16303. weight: math.unit(190, "lb"),
  16304. name: "Back",
  16305. image: {
  16306. source: "./media/characters/bari/back.svg",
  16307. extra: 3260 / 2834,
  16308. bottom: 0.025
  16309. }
  16310. },
  16311. frontPlush: {
  16312. height: math.unit(5 + 2 / 12, "feet"),
  16313. weight: math.unit(190, "lb"),
  16314. name: "Front (Plush)",
  16315. image: {
  16316. source: "./media/characters/bari/front-plush.svg",
  16317. extra: 1112 / 1061,
  16318. bottom: 0.002
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Micro",
  16325. height: math.unit(3, "inches")
  16326. },
  16327. {
  16328. name: "Normal",
  16329. height: math.unit(5 + 2 / 12, "feet"),
  16330. default: true
  16331. },
  16332. {
  16333. name: "Macro",
  16334. height: math.unit(20, "feet")
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16340. {
  16341. front: {
  16342. height: math.unit(6 + 1 / 12, "feet"),
  16343. weight: math.unit(275, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/hunter-misha-raven/front.svg"
  16347. }
  16348. },
  16349. },
  16350. [
  16351. {
  16352. name: "Mortal",
  16353. height: math.unit(6 + 1 / 12, "feet")
  16354. },
  16355. {
  16356. name: "Divine",
  16357. height: math.unit(1.12134e34, "parsecs"),
  16358. default: true
  16359. },
  16360. ]
  16361. ))
  16362. characterMakers.push(() => makeCharacter(
  16363. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16364. {
  16365. front: {
  16366. height: math.unit(6 + 3 / 12, "feet"),
  16367. weight: math.unit(220, "lb"),
  16368. name: "Front",
  16369. image: {
  16370. source: "./media/characters/max-calore/front.svg",
  16371. extra: 1700 / 1648,
  16372. bottom: 0.01
  16373. }
  16374. },
  16375. back: {
  16376. height: math.unit(6 + 3 / 12, "feet"),
  16377. weight: math.unit(220, "lb"),
  16378. name: "Back",
  16379. image: {
  16380. source: "./media/characters/max-calore/back.svg",
  16381. extra: 1700 / 1648,
  16382. bottom: 0.01
  16383. }
  16384. },
  16385. },
  16386. [
  16387. {
  16388. name: "Normal",
  16389. height: math.unit(6 + 3 / 12, "feet"),
  16390. default: true
  16391. },
  16392. ]
  16393. ))
  16394. characterMakers.push(() => makeCharacter(
  16395. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16396. {
  16397. side: {
  16398. height: math.unit(2 + 8 / 12, "feet"),
  16399. weight: math.unit(99, "lb"),
  16400. name: "Side",
  16401. image: {
  16402. source: "./media/characters/aspen/side.svg",
  16403. extra: 152 / 138,
  16404. bottom: 0.032
  16405. }
  16406. },
  16407. },
  16408. [
  16409. {
  16410. name: "Normal",
  16411. height: math.unit(2 + 8 / 12, "feet"),
  16412. default: true
  16413. },
  16414. ]
  16415. ))
  16416. characterMakers.push(() => makeCharacter(
  16417. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16418. {
  16419. side: {
  16420. height: math.unit(3 + 2 / 12, "feet"),
  16421. weight: math.unit(224, "lb"),
  16422. name: "Side",
  16423. image: {
  16424. source: "./media/characters/sheila-feral-wolf/side.svg",
  16425. extra: 179 / 166,
  16426. bottom: 0.03
  16427. }
  16428. },
  16429. },
  16430. [
  16431. {
  16432. name: "Normal",
  16433. height: math.unit(3 + 2 / 12, "feet"),
  16434. default: true
  16435. },
  16436. ]
  16437. ))
  16438. characterMakers.push(() => makeCharacter(
  16439. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16440. {
  16441. side: {
  16442. height: math.unit(1 + 9 / 12, "feet"),
  16443. weight: math.unit(38, "lb"),
  16444. name: "Side",
  16445. image: {
  16446. source: "./media/characters/michelle/side.svg",
  16447. extra: 147 / 136.7,
  16448. bottom: 0.03
  16449. }
  16450. },
  16451. },
  16452. [
  16453. {
  16454. name: "Normal",
  16455. height: math.unit(1 + 9 / 12, "feet"),
  16456. default: true
  16457. },
  16458. ]
  16459. ))
  16460. characterMakers.push(() => makeCharacter(
  16461. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16462. {
  16463. front: {
  16464. height: math.unit(1 + 1 / 12, "feet"),
  16465. weight: math.unit(18, "lb"),
  16466. name: "Front",
  16467. image: {
  16468. source: "./media/characters/nino/front.svg"
  16469. }
  16470. },
  16471. },
  16472. [
  16473. {
  16474. name: "Normal",
  16475. height: math.unit(1 + 1 / 12, "feet"),
  16476. default: true
  16477. },
  16478. ]
  16479. ))
  16480. characterMakers.push(() => makeCharacter(
  16481. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16482. {
  16483. front: {
  16484. height: math.unit(1, "feet"),
  16485. weight: math.unit(16, "lb"),
  16486. name: "Front",
  16487. image: {
  16488. source: "./media/characters/viola/front.svg"
  16489. }
  16490. },
  16491. },
  16492. [
  16493. {
  16494. name: "Normal",
  16495. height: math.unit(1, "feet"),
  16496. default: true
  16497. },
  16498. ]
  16499. ))
  16500. characterMakers.push(() => makeCharacter(
  16501. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16502. {
  16503. front: {
  16504. height: math.unit(6 + 5 / 12, "feet"),
  16505. weight: math.unit(580, "lb"),
  16506. name: "Front",
  16507. image: {
  16508. source: "./media/characters/atlas/front.svg",
  16509. extra: 298.5 / 290,
  16510. bottom: 0.015
  16511. }
  16512. },
  16513. },
  16514. [
  16515. {
  16516. name: "Normal",
  16517. height: math.unit(6 + 5 / 12, "feet"),
  16518. default: true
  16519. },
  16520. ]
  16521. ))
  16522. characterMakers.push(() => makeCharacter(
  16523. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16524. {
  16525. side: {
  16526. height: math.unit(1 + 10 / 12, "feet"),
  16527. weight: math.unit(25, "lb"),
  16528. name: "Side",
  16529. image: {
  16530. source: "./media/characters/davy/side.svg",
  16531. extra: 200 / 170,
  16532. bottom: 0.01
  16533. }
  16534. },
  16535. },
  16536. [
  16537. {
  16538. name: "Normal",
  16539. height: math.unit(1 + 10 / 12, "feet"),
  16540. default: true
  16541. },
  16542. ]
  16543. ))
  16544. characterMakers.push(() => makeCharacter(
  16545. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16546. {
  16547. side: {
  16548. height: math.unit(4 + 8 / 12, "feet"),
  16549. weight: math.unit(166, "lb"),
  16550. name: "Side",
  16551. image: {
  16552. source: "./media/characters/fiona/side.svg",
  16553. extra: 232 / 220,
  16554. bottom: 0.03
  16555. }
  16556. },
  16557. },
  16558. [
  16559. {
  16560. name: "Normal",
  16561. height: math.unit(4 + 8 / 12, "feet"),
  16562. default: true
  16563. },
  16564. ]
  16565. ))
  16566. characterMakers.push(() => makeCharacter(
  16567. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16568. {
  16569. front: {
  16570. height: math.unit(2, "feet"),
  16571. weight: math.unit(62, "lb"),
  16572. name: "Front",
  16573. image: {
  16574. source: "./media/characters/lyla/front.svg",
  16575. bottom: 0.1
  16576. }
  16577. },
  16578. },
  16579. [
  16580. {
  16581. name: "Normal",
  16582. height: math.unit(2, "feet"),
  16583. default: true
  16584. },
  16585. ]
  16586. ))
  16587. characterMakers.push(() => makeCharacter(
  16588. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16589. {
  16590. side: {
  16591. height: math.unit(1.8, "feet"),
  16592. weight: math.unit(44, "lb"),
  16593. name: "Side",
  16594. image: {
  16595. source: "./media/characters/perseus/side.svg",
  16596. bottom: 0.21
  16597. }
  16598. },
  16599. },
  16600. [
  16601. {
  16602. name: "Normal",
  16603. height: math.unit(1.8, "feet"),
  16604. default: true
  16605. },
  16606. ]
  16607. ))
  16608. characterMakers.push(() => makeCharacter(
  16609. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16610. {
  16611. side: {
  16612. height: math.unit(4 + 2 / 12, "feet"),
  16613. weight: math.unit(20, "lb"),
  16614. name: "Side",
  16615. image: {
  16616. source: "./media/characters/remus/side.svg"
  16617. }
  16618. },
  16619. },
  16620. [
  16621. {
  16622. name: "Normal",
  16623. height: math.unit(4 + 2 / 12, "feet"),
  16624. default: true
  16625. },
  16626. ]
  16627. ))
  16628. characterMakers.push(() => makeCharacter(
  16629. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16630. {
  16631. front: {
  16632. height: math.unit(4 + 11 / 12, "feet"),
  16633. weight: math.unit(114, "lb"),
  16634. name: "Front",
  16635. image: {
  16636. source: "./media/characters/raf/front.svg",
  16637. bottom: 20.5 / 1863
  16638. }
  16639. },
  16640. side: {
  16641. height: math.unit(4 + 11 / 12, "feet"),
  16642. weight: math.unit(114, "lb"),
  16643. name: "Side",
  16644. image: {
  16645. source: "./media/characters/raf/side.svg",
  16646. bottom: 22 / 1822
  16647. }
  16648. },
  16649. },
  16650. [
  16651. {
  16652. name: "Micro",
  16653. height: math.unit(2, "inches")
  16654. },
  16655. {
  16656. name: "Normal",
  16657. height: math.unit(4 + 11 / 12, "feet"),
  16658. default: true
  16659. },
  16660. {
  16661. name: "Macro",
  16662. height: math.unit(70, "feet")
  16663. },
  16664. ]
  16665. ))
  16666. characterMakers.push(() => makeCharacter(
  16667. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16668. {
  16669. front: {
  16670. height: math.unit(1.5, "meters"),
  16671. weight: math.unit(68, "kg"),
  16672. name: "Front",
  16673. image: {
  16674. source: "./media/characters/liam-einarr/front.svg",
  16675. extra: 2822 / 2666
  16676. }
  16677. },
  16678. back: {
  16679. height: math.unit(1.5, "meters"),
  16680. weight: math.unit(68, "kg"),
  16681. name: "Back",
  16682. image: {
  16683. source: "./media/characters/liam-einarr/back.svg",
  16684. extra: 2822 / 2666,
  16685. bottom: 0.015
  16686. }
  16687. },
  16688. },
  16689. [
  16690. {
  16691. name: "Normal",
  16692. height: math.unit(1.5, "meters"),
  16693. default: true
  16694. },
  16695. {
  16696. name: "Macro",
  16697. height: math.unit(150, "meters")
  16698. },
  16699. {
  16700. name: "Megamacro",
  16701. height: math.unit(35, "km")
  16702. },
  16703. ]
  16704. ))
  16705. characterMakers.push(() => makeCharacter(
  16706. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16707. {
  16708. front: {
  16709. height: math.unit(6, "feet"),
  16710. weight: math.unit(75, "kg"),
  16711. name: "Front",
  16712. image: {
  16713. source: "./media/characters/linda/front.svg",
  16714. extra: 930 / 874,
  16715. bottom: 0.004
  16716. }
  16717. },
  16718. },
  16719. [
  16720. {
  16721. name: "Normal",
  16722. height: math.unit(6, "feet"),
  16723. default: true
  16724. },
  16725. ]
  16726. ))
  16727. characterMakers.push(() => makeCharacter(
  16728. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16729. {
  16730. front: {
  16731. height: math.unit(6 + 8 / 12, "feet"),
  16732. weight: math.unit(220, "lb"),
  16733. name: "Front",
  16734. image: {
  16735. source: "./media/characters/caylex/front.svg",
  16736. extra: 821 / 772,
  16737. bottom: 0.07
  16738. }
  16739. },
  16740. back: {
  16741. height: math.unit(6 + 8 / 12, "feet"),
  16742. weight: math.unit(220, "lb"),
  16743. name: "Back",
  16744. image: {
  16745. source: "./media/characters/caylex/back.svg",
  16746. extra: 821 / 772,
  16747. bottom: 0.022
  16748. }
  16749. },
  16750. hand: {
  16751. height: math.unit(1.25, "feet"),
  16752. name: "Hand",
  16753. image: {
  16754. source: "./media/characters/caylex/hand.svg"
  16755. }
  16756. },
  16757. foot: {
  16758. height: math.unit(1.6, "feet"),
  16759. name: "Foot",
  16760. image: {
  16761. source: "./media/characters/caylex/foot.svg"
  16762. }
  16763. },
  16764. armored: {
  16765. height: math.unit(6 + 8 / 12, "feet"),
  16766. weight: math.unit(250, "lb"),
  16767. name: "Armored",
  16768. image: {
  16769. source: "./media/characters/caylex/armored.svg",
  16770. extra: 1420 / 1310,
  16771. bottom: 0.045
  16772. }
  16773. },
  16774. },
  16775. [
  16776. {
  16777. name: "Normal",
  16778. height: math.unit(6 + 8 / 12, "feet"),
  16779. default: true
  16780. },
  16781. {
  16782. name: "Normal+",
  16783. height: math.unit(12, "feet")
  16784. },
  16785. ]
  16786. ))
  16787. characterMakers.push(() => makeCharacter(
  16788. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16789. {
  16790. front: {
  16791. height: math.unit(7 + 6 / 12, "feet"),
  16792. weight: math.unit(288, "lb"),
  16793. name: "Front",
  16794. image: {
  16795. source: "./media/characters/alana/front.svg",
  16796. extra: 679 / 653,
  16797. bottom: 22.5 / 701
  16798. }
  16799. },
  16800. },
  16801. [
  16802. {
  16803. name: "Normal",
  16804. height: math.unit(7 + 6 / 12, "feet")
  16805. },
  16806. {
  16807. name: "Large",
  16808. height: math.unit(50, "feet")
  16809. },
  16810. {
  16811. name: "Macro",
  16812. height: math.unit(100, "feet"),
  16813. default: true
  16814. },
  16815. {
  16816. name: "Macro+",
  16817. height: math.unit(200, "feet")
  16818. },
  16819. ]
  16820. ))
  16821. characterMakers.push(() => makeCharacter(
  16822. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16823. {
  16824. front: {
  16825. height: math.unit(6 + 1 / 12, "feet"),
  16826. weight: math.unit(210, "lb"),
  16827. name: "Front",
  16828. image: {
  16829. source: "./media/characters/hasani/front.svg",
  16830. extra: 244 / 232,
  16831. bottom: 0.01
  16832. }
  16833. },
  16834. back: {
  16835. height: math.unit(6 + 1 / 12, "feet"),
  16836. weight: math.unit(210, "lb"),
  16837. name: "Back",
  16838. image: {
  16839. source: "./media/characters/hasani/back.svg",
  16840. extra: 244 / 232,
  16841. bottom: 0.01
  16842. }
  16843. },
  16844. },
  16845. [
  16846. {
  16847. name: "Normal",
  16848. height: math.unit(6 + 1 / 12, "feet")
  16849. },
  16850. {
  16851. name: "Macro",
  16852. height: math.unit(175, "feet"),
  16853. default: true
  16854. },
  16855. ]
  16856. ))
  16857. characterMakers.push(() => makeCharacter(
  16858. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16859. {
  16860. front: {
  16861. height: math.unit(1.82, "meters"),
  16862. weight: math.unit(140, "lb"),
  16863. name: "Front",
  16864. image: {
  16865. source: "./media/characters/nita/front.svg",
  16866. extra: 2473 / 2363,
  16867. bottom: 0.01
  16868. }
  16869. },
  16870. },
  16871. [
  16872. {
  16873. name: "Normal",
  16874. height: math.unit(1.82, "m")
  16875. },
  16876. {
  16877. name: "Macro",
  16878. height: math.unit(300, "m")
  16879. },
  16880. {
  16881. name: "Mistake Canon",
  16882. height: math.unit(0.5, "miles"),
  16883. default: true
  16884. },
  16885. {
  16886. name: "Big Mistake",
  16887. height: math.unit(13, "miles")
  16888. },
  16889. {
  16890. name: "Playing God",
  16891. height: math.unit(2450, "miles")
  16892. },
  16893. ]
  16894. ))
  16895. characterMakers.push(() => makeCharacter(
  16896. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16897. {
  16898. front: {
  16899. height: math.unit(4, "feet"),
  16900. weight: math.unit(120, "lb"),
  16901. name: "Front",
  16902. image: {
  16903. source: "./media/characters/shiriko/front.svg",
  16904. extra: 195 / 188
  16905. }
  16906. },
  16907. },
  16908. [
  16909. {
  16910. name: "Normal",
  16911. height: math.unit(4, "feet"),
  16912. default: true
  16913. },
  16914. ]
  16915. ))
  16916. characterMakers.push(() => makeCharacter(
  16917. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16918. {
  16919. front: {
  16920. height: math.unit(6, "feet"),
  16921. name: "front",
  16922. image: {
  16923. source: "./media/characters/deja/front.svg",
  16924. extra: 926 / 840,
  16925. bottom: 0.07
  16926. }
  16927. },
  16928. },
  16929. [
  16930. {
  16931. name: "Planck Length",
  16932. height: math.unit(1.6e-35, "meters")
  16933. },
  16934. {
  16935. name: "Normal",
  16936. height: math.unit(30.48, "meters"),
  16937. default: true
  16938. },
  16939. {
  16940. name: "Universal",
  16941. height: math.unit(8.8e26, "meters")
  16942. },
  16943. ]
  16944. ))
  16945. characterMakers.push(() => makeCharacter(
  16946. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16947. {
  16948. side: {
  16949. height: math.unit(8, "feet"),
  16950. weight: math.unit(6300, "lb"),
  16951. name: "Side",
  16952. image: {
  16953. source: "./media/characters/anima/side.svg",
  16954. bottom: 0.035
  16955. }
  16956. },
  16957. },
  16958. [
  16959. {
  16960. name: "Normal",
  16961. height: math.unit(8, "feet"),
  16962. default: true
  16963. },
  16964. ]
  16965. ))
  16966. characterMakers.push(() => makeCharacter(
  16967. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16968. {
  16969. front: {
  16970. height: math.unit(8, "feet"),
  16971. weight: math.unit(350, "lb"),
  16972. name: "Front",
  16973. image: {
  16974. source: "./media/characters/bianca/front.svg",
  16975. extra: 234 / 225,
  16976. bottom: 0.03
  16977. }
  16978. },
  16979. },
  16980. [
  16981. {
  16982. name: "Normal",
  16983. height: math.unit(8, "feet"),
  16984. default: true
  16985. },
  16986. ]
  16987. ))
  16988. characterMakers.push(() => makeCharacter(
  16989. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16990. {
  16991. front: {
  16992. height: math.unit(6, "feet"),
  16993. weight: math.unit(150, "lb"),
  16994. name: "Front",
  16995. image: {
  16996. source: "./media/characters/adinia/front.svg",
  16997. extra: 1845 / 1672,
  16998. bottom: 0.02
  16999. }
  17000. },
  17001. back: {
  17002. height: math.unit(6, "feet"),
  17003. weight: math.unit(150, "lb"),
  17004. name: "Back",
  17005. image: {
  17006. source: "./media/characters/adinia/back.svg",
  17007. extra: 1845 / 1672,
  17008. bottom: 0.002
  17009. }
  17010. },
  17011. },
  17012. [
  17013. {
  17014. name: "Normal",
  17015. height: math.unit(11 + 5 / 12, "feet"),
  17016. default: true
  17017. },
  17018. ]
  17019. ))
  17020. characterMakers.push(() => makeCharacter(
  17021. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17022. {
  17023. front: {
  17024. height: math.unit(3, "meters"),
  17025. weight: math.unit(200, "kg"),
  17026. name: "Front",
  17027. image: {
  17028. source: "./media/characters/lykasa/front.svg",
  17029. extra: 1076 / 976,
  17030. bottom: 0.06
  17031. }
  17032. },
  17033. },
  17034. [
  17035. {
  17036. name: "Normal",
  17037. height: math.unit(3, "meters")
  17038. },
  17039. {
  17040. name: "Kaiju",
  17041. height: math.unit(120, "meters"),
  17042. default: true
  17043. },
  17044. {
  17045. name: "Mega Kaiju",
  17046. height: math.unit(240, "km")
  17047. },
  17048. {
  17049. name: "Giga Kaiju",
  17050. height: math.unit(400, "megameters")
  17051. },
  17052. {
  17053. name: "Tera Kaiju",
  17054. height: math.unit(800, "gigameters")
  17055. },
  17056. {
  17057. name: "Kaiju Dragon Goddess",
  17058. height: math.unit(26, "zettaparsecs")
  17059. },
  17060. ]
  17061. ))
  17062. characterMakers.push(() => makeCharacter(
  17063. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17064. {
  17065. side: {
  17066. height: math.unit(283 / 124 * 6, "feet"),
  17067. weight: math.unit(35000, "lb"),
  17068. name: "Side",
  17069. image: {
  17070. source: "./media/characters/malfaren/side.svg",
  17071. extra: 2500 / 1010,
  17072. bottom: 0.01
  17073. }
  17074. },
  17075. front: {
  17076. height: math.unit(22.36, "feet"),
  17077. weight: math.unit(35000, "lb"),
  17078. name: "Front",
  17079. image: {
  17080. source: "./media/characters/malfaren/front.svg",
  17081. extra: 1631 / 1476,
  17082. bottom: 0.01
  17083. }
  17084. },
  17085. maw: {
  17086. height: math.unit(6.9, "feet"),
  17087. name: "Maw",
  17088. image: {
  17089. source: "./media/characters/malfaren/maw.svg"
  17090. }
  17091. },
  17092. },
  17093. [
  17094. {
  17095. name: "Big",
  17096. height: math.unit(283 / 162 * 6, "feet"),
  17097. },
  17098. {
  17099. name: "Bigger",
  17100. height: math.unit(283 / 124 * 6, "feet")
  17101. },
  17102. {
  17103. name: "Massive",
  17104. height: math.unit(283 / 92 * 6, "feet"),
  17105. default: true
  17106. },
  17107. {
  17108. name: "👀💦",
  17109. height: math.unit(283 / 73 * 6, "feet"),
  17110. },
  17111. ]
  17112. ))
  17113. characterMakers.push(() => makeCharacter(
  17114. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17115. {
  17116. front: {
  17117. height: math.unit(1.7, "m"),
  17118. weight: math.unit(70, "kg"),
  17119. name: "Front",
  17120. image: {
  17121. source: "./media/characters/kernel/front.svg",
  17122. extra: 222 / 210,
  17123. bottom: 0.007
  17124. }
  17125. },
  17126. },
  17127. [
  17128. {
  17129. name: "Nano",
  17130. height: math.unit(17, "micrometers")
  17131. },
  17132. {
  17133. name: "Micro",
  17134. height: math.unit(1.7, "mm")
  17135. },
  17136. {
  17137. name: "Small",
  17138. height: math.unit(1.7, "cm")
  17139. },
  17140. {
  17141. name: "Normal",
  17142. height: math.unit(1.7, "m"),
  17143. default: true
  17144. },
  17145. ]
  17146. ))
  17147. characterMakers.push(() => makeCharacter(
  17148. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17149. {
  17150. front: {
  17151. height: math.unit(1.75, "meters"),
  17152. weight: math.unit(65, "kg"),
  17153. name: "Front",
  17154. image: {
  17155. source: "./media/characters/jayne-folest/front.svg",
  17156. extra: 2115 / 2007,
  17157. bottom: 0.02
  17158. }
  17159. },
  17160. back: {
  17161. height: math.unit(1.75, "meters"),
  17162. weight: math.unit(65, "kg"),
  17163. name: "Back",
  17164. image: {
  17165. source: "./media/characters/jayne-folest/back.svg",
  17166. extra: 2115 / 2007,
  17167. bottom: 0.005
  17168. }
  17169. },
  17170. frontClothed: {
  17171. height: math.unit(1.75, "meters"),
  17172. weight: math.unit(65, "kg"),
  17173. name: "Front (Clothed)",
  17174. image: {
  17175. source: "./media/characters/jayne-folest/front-clothed.svg",
  17176. extra: 2115 / 2007,
  17177. bottom: 0.035
  17178. }
  17179. },
  17180. hand: {
  17181. height: math.unit(1 / 1.260, "feet"),
  17182. name: "Hand",
  17183. image: {
  17184. source: "./media/characters/jayne-folest/hand.svg"
  17185. }
  17186. },
  17187. foot: {
  17188. height: math.unit(1 / 0.918, "feet"),
  17189. name: "Foot",
  17190. image: {
  17191. source: "./media/characters/jayne-folest/foot.svg"
  17192. }
  17193. },
  17194. },
  17195. [
  17196. {
  17197. name: "Micro",
  17198. height: math.unit(4, "cm")
  17199. },
  17200. {
  17201. name: "Normal",
  17202. height: math.unit(1.75, "meters")
  17203. },
  17204. {
  17205. name: "Macro",
  17206. height: math.unit(47.5, "meters"),
  17207. default: true
  17208. },
  17209. ]
  17210. ))
  17211. characterMakers.push(() => makeCharacter(
  17212. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17213. {
  17214. front: {
  17215. height: math.unit(180, "cm"),
  17216. weight: math.unit(70, "kg"),
  17217. name: "Front",
  17218. image: {
  17219. source: "./media/characters/algier/front.svg",
  17220. extra: 596 / 572,
  17221. bottom: 0.04
  17222. }
  17223. },
  17224. back: {
  17225. height: math.unit(180, "cm"),
  17226. weight: math.unit(70, "kg"),
  17227. name: "Back",
  17228. image: {
  17229. source: "./media/characters/algier/back.svg",
  17230. extra: 596 / 572,
  17231. bottom: 0.025
  17232. }
  17233. },
  17234. frontdressed: {
  17235. height: math.unit(180, "cm"),
  17236. weight: math.unit(150, "kg"),
  17237. name: "Front-dressed",
  17238. image: {
  17239. source: "./media/characters/algier/front-dressed.svg",
  17240. extra: 596 / 572,
  17241. bottom: 0.038
  17242. }
  17243. },
  17244. },
  17245. [
  17246. {
  17247. name: "Micro",
  17248. height: math.unit(5, "cm")
  17249. },
  17250. {
  17251. name: "Normal",
  17252. height: math.unit(180, "cm"),
  17253. default: true
  17254. },
  17255. {
  17256. name: "Macro",
  17257. height: math.unit(64, "m")
  17258. },
  17259. ]
  17260. ))
  17261. characterMakers.push(() => makeCharacter(
  17262. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17263. {
  17264. upright: {
  17265. height: math.unit(7, "feet"),
  17266. weight: math.unit(300, "lb"),
  17267. name: "Upright",
  17268. image: {
  17269. source: "./media/characters/pretzel/upright.svg",
  17270. extra: 534 / 522,
  17271. bottom: 0.065
  17272. }
  17273. },
  17274. sprawling: {
  17275. height: math.unit(3.75, "feet"),
  17276. weight: math.unit(300, "lb"),
  17277. name: "Sprawling",
  17278. image: {
  17279. source: "./media/characters/pretzel/sprawling.svg",
  17280. extra: 314 / 281,
  17281. bottom: 0.1
  17282. }
  17283. },
  17284. tongue: {
  17285. height: math.unit(2, "feet"),
  17286. name: "Tongue",
  17287. image: {
  17288. source: "./media/characters/pretzel/tongue.svg"
  17289. }
  17290. },
  17291. },
  17292. [
  17293. {
  17294. name: "Normal",
  17295. height: math.unit(7, "feet"),
  17296. default: true
  17297. },
  17298. {
  17299. name: "Oversized",
  17300. height: math.unit(15, "feet")
  17301. },
  17302. {
  17303. name: "Huge",
  17304. height: math.unit(30, "feet")
  17305. },
  17306. {
  17307. name: "Macro",
  17308. height: math.unit(250, "feet")
  17309. },
  17310. ]
  17311. ))
  17312. characterMakers.push(() => makeCharacter(
  17313. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17314. {
  17315. sideFront: {
  17316. height: math.unit(5 + 2 / 12, "feet"),
  17317. weight: math.unit(120, "lb"),
  17318. name: "Front Side",
  17319. image: {
  17320. source: "./media/characters/roxi/side-front.svg",
  17321. extra: 2924 / 2717,
  17322. bottom: 0.08
  17323. }
  17324. },
  17325. sideBack: {
  17326. height: math.unit(5 + 2 / 12, "feet"),
  17327. weight: math.unit(120, "lb"),
  17328. name: "Back Side",
  17329. image: {
  17330. source: "./media/characters/roxi/side-back.svg",
  17331. extra: 2904 / 2693,
  17332. bottom: 0.06
  17333. }
  17334. },
  17335. front: {
  17336. height: math.unit(5 + 2 / 12, "feet"),
  17337. weight: math.unit(120, "lb"),
  17338. name: "Front",
  17339. image: {
  17340. source: "./media/characters/roxi/front.svg",
  17341. extra: 2028 / 1907,
  17342. bottom: 0.01
  17343. }
  17344. },
  17345. frontAlt: {
  17346. height: math.unit(5 + 2 / 12, "feet"),
  17347. weight: math.unit(120, "lb"),
  17348. name: "Front (Alt)",
  17349. image: {
  17350. source: "./media/characters/roxi/front-alt.svg",
  17351. extra: 1828 / 1798,
  17352. bottom: 0.01
  17353. }
  17354. },
  17355. sitting: {
  17356. height: math.unit(2.8, "feet"),
  17357. weight: math.unit(120, "lb"),
  17358. name: "Sitting",
  17359. image: {
  17360. source: "./media/characters/roxi/sitting.svg",
  17361. extra: 2660 / 2462,
  17362. bottom: 0.1
  17363. }
  17364. },
  17365. },
  17366. [
  17367. {
  17368. name: "Normal",
  17369. height: math.unit(5 + 2 / 12, "feet"),
  17370. default: true
  17371. },
  17372. ]
  17373. ))
  17374. characterMakers.push(() => makeCharacter(
  17375. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17376. {
  17377. side: {
  17378. height: math.unit(55, "feet"),
  17379. weight: math.unit(153, "tons"),
  17380. name: "Side",
  17381. image: {
  17382. source: "./media/characters/shadow/side.svg",
  17383. extra: 701 / 628,
  17384. bottom: 0.02
  17385. }
  17386. },
  17387. flying: {
  17388. height: math.unit(145, "feet"),
  17389. weight: math.unit(153, "tons"),
  17390. name: "Flying",
  17391. image: {
  17392. source: "./media/characters/shadow/flying.svg"
  17393. }
  17394. },
  17395. },
  17396. [
  17397. {
  17398. name: "Normal",
  17399. height: math.unit(55, "feet"),
  17400. default: true
  17401. },
  17402. ]
  17403. ))
  17404. characterMakers.push(() => makeCharacter(
  17405. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17406. {
  17407. front: {
  17408. height: math.unit(6, "feet"),
  17409. weight: math.unit(200, "lb"),
  17410. name: "Front",
  17411. image: {
  17412. source: "./media/characters/marcie/front.svg",
  17413. extra: 960 / 876,
  17414. bottom: 58 / 1017.87
  17415. }
  17416. },
  17417. },
  17418. [
  17419. {
  17420. name: "Macro",
  17421. height: math.unit(1, "mile"),
  17422. default: true
  17423. },
  17424. ]
  17425. ))
  17426. characterMakers.push(() => makeCharacter(
  17427. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17428. {
  17429. front: {
  17430. height: math.unit(7, "feet"),
  17431. weight: math.unit(200, "lb"),
  17432. name: "Front",
  17433. image: {
  17434. source: "./media/characters/kachina/front.svg",
  17435. extra: 1290.68 / 1119,
  17436. bottom: 36.5 / 1327.18
  17437. }
  17438. },
  17439. },
  17440. [
  17441. {
  17442. name: "Normal",
  17443. height: math.unit(7, "feet"),
  17444. default: true
  17445. },
  17446. ]
  17447. ))
  17448. characterMakers.push(() => makeCharacter(
  17449. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17450. {
  17451. looking: {
  17452. height: math.unit(2, "meters"),
  17453. weight: math.unit(300, "kg"),
  17454. name: "Looking",
  17455. image: {
  17456. source: "./media/characters/kash/looking.svg",
  17457. extra: 474 / 344,
  17458. bottom: 0.03
  17459. }
  17460. },
  17461. side: {
  17462. height: math.unit(2, "meters"),
  17463. weight: math.unit(300, "kg"),
  17464. name: "Side",
  17465. image: {
  17466. source: "./media/characters/kash/side.svg",
  17467. extra: 302 / 251,
  17468. bottom: 0.03
  17469. }
  17470. },
  17471. front: {
  17472. height: math.unit(2, "meters"),
  17473. weight: math.unit(300, "kg"),
  17474. name: "Front",
  17475. image: {
  17476. source: "./media/characters/kash/front.svg",
  17477. extra: 495 / 360,
  17478. bottom: 0.015
  17479. }
  17480. },
  17481. },
  17482. [
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(2, "meters"),
  17486. default: true
  17487. },
  17488. {
  17489. name: "Big",
  17490. height: math.unit(3, "meters")
  17491. },
  17492. {
  17493. name: "Large",
  17494. height: math.unit(5, "meters")
  17495. },
  17496. ]
  17497. ))
  17498. characterMakers.push(() => makeCharacter(
  17499. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17500. {
  17501. feeding: {
  17502. height: math.unit(6.7, "feet"),
  17503. weight: math.unit(350, "lb"),
  17504. name: "Feeding",
  17505. image: {
  17506. source: "./media/characters/lalim/feeding.svg",
  17507. }
  17508. },
  17509. },
  17510. [
  17511. {
  17512. name: "Normal",
  17513. height: math.unit(6.7, "feet"),
  17514. default: true
  17515. },
  17516. ]
  17517. ))
  17518. characterMakers.push(() => makeCharacter(
  17519. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17520. {
  17521. front: {
  17522. height: math.unit(9.5, "feet"),
  17523. weight: math.unit(600, "lb"),
  17524. name: "Front",
  17525. image: {
  17526. source: "./media/characters/de'vout/front.svg",
  17527. extra: 1443 / 1328,
  17528. bottom: 0.025
  17529. }
  17530. },
  17531. back: {
  17532. height: math.unit(9.5, "feet"),
  17533. weight: math.unit(600, "lb"),
  17534. name: "Back",
  17535. image: {
  17536. source: "./media/characters/de'vout/back.svg",
  17537. extra: 1443 / 1328
  17538. }
  17539. },
  17540. frontDressed: {
  17541. height: math.unit(9.5, "feet"),
  17542. weight: math.unit(600, "lb"),
  17543. name: "Front (Dressed",
  17544. image: {
  17545. source: "./media/characters/de'vout/front-dressed.svg",
  17546. extra: 1443 / 1328,
  17547. bottom: 0.025
  17548. }
  17549. },
  17550. backDressed: {
  17551. height: math.unit(9.5, "feet"),
  17552. weight: math.unit(600, "lb"),
  17553. name: "Back (Dressed",
  17554. image: {
  17555. source: "./media/characters/de'vout/back-dressed.svg",
  17556. extra: 1443 / 1328
  17557. }
  17558. },
  17559. },
  17560. [
  17561. {
  17562. name: "Normal",
  17563. height: math.unit(9.5, "feet"),
  17564. default: true
  17565. },
  17566. ]
  17567. ))
  17568. characterMakers.push(() => makeCharacter(
  17569. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17570. {
  17571. front: {
  17572. height: math.unit(8, "feet"),
  17573. weight: math.unit(225, "lb"),
  17574. name: "Front",
  17575. image: {
  17576. source: "./media/characters/talana/front.svg",
  17577. extra: 1410 / 1300,
  17578. bottom: 0.015
  17579. }
  17580. },
  17581. frontDressed: {
  17582. height: math.unit(8, "feet"),
  17583. weight: math.unit(225, "lb"),
  17584. name: "Front (Dressed",
  17585. image: {
  17586. source: "./media/characters/talana/front-dressed.svg",
  17587. extra: 1410 / 1300,
  17588. bottom: 0.015
  17589. }
  17590. },
  17591. },
  17592. [
  17593. {
  17594. name: "Normal",
  17595. height: math.unit(8, "feet"),
  17596. default: true
  17597. },
  17598. ]
  17599. ))
  17600. characterMakers.push(() => makeCharacter(
  17601. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17602. {
  17603. side: {
  17604. height: math.unit(7.2, "feet"),
  17605. weight: math.unit(150, "lb"),
  17606. name: "Side",
  17607. image: {
  17608. source: "./media/characters/xeauvok/side.svg",
  17609. extra: 1975 / 1523,
  17610. bottom: 0.07
  17611. }
  17612. },
  17613. },
  17614. [
  17615. {
  17616. name: "Normal",
  17617. height: math.unit(7.2, "feet"),
  17618. default: true
  17619. },
  17620. ]
  17621. ))
  17622. characterMakers.push(() => makeCharacter(
  17623. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17624. {
  17625. side: {
  17626. height: math.unit(10, "feet"),
  17627. weight: math.unit(900, "kg"),
  17628. name: "Side",
  17629. image: {
  17630. source: "./media/characters/zara/side.svg",
  17631. extra: 504 / 498
  17632. }
  17633. },
  17634. },
  17635. [
  17636. {
  17637. name: "Normal",
  17638. height: math.unit(10, "feet"),
  17639. default: true
  17640. },
  17641. ]
  17642. ))
  17643. characterMakers.push(() => makeCharacter(
  17644. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17645. {
  17646. side: {
  17647. height: math.unit(6, "feet"),
  17648. weight: math.unit(150, "lb"),
  17649. name: "Side",
  17650. image: {
  17651. source: "./media/characters/richard-dragon/side.svg",
  17652. extra: 845 / 340,
  17653. bottom: 0.017
  17654. }
  17655. },
  17656. maw: {
  17657. height: math.unit(2.97, "feet"),
  17658. name: "Maw",
  17659. image: {
  17660. source: "./media/characters/richard-dragon/maw.svg"
  17661. }
  17662. },
  17663. },
  17664. [
  17665. ]
  17666. ))
  17667. characterMakers.push(() => makeCharacter(
  17668. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17669. {
  17670. front: {
  17671. height: math.unit(4, "feet"),
  17672. weight: math.unit(100, "lb"),
  17673. name: "Front",
  17674. image: {
  17675. source: "./media/characters/richard-smeargle/front.svg",
  17676. extra: 2952 / 2820,
  17677. bottom: 0.028
  17678. }
  17679. },
  17680. },
  17681. [
  17682. {
  17683. name: "Normal",
  17684. height: math.unit(4, "feet"),
  17685. default: true
  17686. },
  17687. {
  17688. name: "Dynamax",
  17689. height: math.unit(20, "meters")
  17690. },
  17691. ]
  17692. ))
  17693. characterMakers.push(() => makeCharacter(
  17694. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17695. {
  17696. front: {
  17697. height: math.unit(6, "feet"),
  17698. weight: math.unit(110, "lb"),
  17699. name: "Front",
  17700. image: {
  17701. source: "./media/characters/klay/front.svg",
  17702. extra: 962 / 883,
  17703. bottom: 0.04
  17704. }
  17705. },
  17706. back: {
  17707. height: math.unit(6, "feet"),
  17708. weight: math.unit(110, "lb"),
  17709. name: "Back",
  17710. image: {
  17711. source: "./media/characters/klay/back.svg",
  17712. extra: 962 / 883
  17713. }
  17714. },
  17715. beans: {
  17716. height: math.unit(1.15, "feet"),
  17717. name: "Beans",
  17718. image: {
  17719. source: "./media/characters/klay/beans.svg"
  17720. }
  17721. },
  17722. },
  17723. [
  17724. {
  17725. name: "Micro",
  17726. height: math.unit(6, "inches")
  17727. },
  17728. {
  17729. name: "Mini",
  17730. height: math.unit(3, "feet")
  17731. },
  17732. {
  17733. name: "Normal",
  17734. height: math.unit(6, "feet"),
  17735. default: true
  17736. },
  17737. {
  17738. name: "Big",
  17739. height: math.unit(25, "feet")
  17740. },
  17741. {
  17742. name: "Macro",
  17743. height: math.unit(100, "feet")
  17744. },
  17745. {
  17746. name: "Megamacro",
  17747. height: math.unit(400, "feet")
  17748. },
  17749. ]
  17750. ))
  17751. characterMakers.push(() => makeCharacter(
  17752. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17753. {
  17754. front: {
  17755. height: math.unit(6, "feet"),
  17756. weight: math.unit(160, "lb"),
  17757. name: "Front",
  17758. image: {
  17759. source: "./media/characters/marcus/front.svg",
  17760. extra: 734 / 676,
  17761. bottom: 0.03
  17762. }
  17763. },
  17764. },
  17765. [
  17766. {
  17767. name: "Little",
  17768. height: math.unit(6, "feet")
  17769. },
  17770. {
  17771. name: "Normal",
  17772. height: math.unit(110, "feet"),
  17773. default: true
  17774. },
  17775. {
  17776. name: "Macro",
  17777. height: math.unit(250, "feet")
  17778. },
  17779. {
  17780. name: "Megamacro",
  17781. height: math.unit(1000, "feet")
  17782. },
  17783. ]
  17784. ))
  17785. characterMakers.push(() => makeCharacter(
  17786. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17787. {
  17788. front: {
  17789. height: math.unit(7, "feet"),
  17790. weight: math.unit(275, "lb"),
  17791. name: "Front",
  17792. image: {
  17793. source: "./media/characters/claude-delroute/front.svg",
  17794. extra: 230 / 214,
  17795. bottom: 0.007
  17796. }
  17797. },
  17798. side: {
  17799. height: math.unit(7, "feet"),
  17800. weight: math.unit(275, "lb"),
  17801. name: "Side",
  17802. image: {
  17803. source: "./media/characters/claude-delroute/side.svg",
  17804. extra: 222 / 214,
  17805. bottom: 0.01
  17806. }
  17807. },
  17808. back: {
  17809. height: math.unit(7, "feet"),
  17810. weight: math.unit(275, "lb"),
  17811. name: "Back",
  17812. image: {
  17813. source: "./media/characters/claude-delroute/back.svg",
  17814. extra: 230 / 214,
  17815. bottom: 0.015
  17816. }
  17817. },
  17818. maw: {
  17819. height: math.unit(0.6407, "meters"),
  17820. name: "Maw",
  17821. image: {
  17822. source: "./media/characters/claude-delroute/maw.svg"
  17823. }
  17824. },
  17825. },
  17826. [
  17827. {
  17828. name: "Normal",
  17829. height: math.unit(7, "feet"),
  17830. default: true
  17831. },
  17832. {
  17833. name: "Lorge",
  17834. height: math.unit(20, "feet")
  17835. },
  17836. ]
  17837. ))
  17838. characterMakers.push(() => makeCharacter(
  17839. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17840. {
  17841. front: {
  17842. height: math.unit(8 + 4 / 12, "feet"),
  17843. weight: math.unit(600, "lb"),
  17844. name: "Front",
  17845. image: {
  17846. source: "./media/characters/dragonien/front.svg",
  17847. extra: 100 / 94,
  17848. bottom: 3.3 / 103.3445
  17849. }
  17850. },
  17851. back: {
  17852. height: math.unit(8 + 4 / 12, "feet"),
  17853. weight: math.unit(600, "lb"),
  17854. name: "Back",
  17855. image: {
  17856. source: "./media/characters/dragonien/back.svg",
  17857. extra: 776 / 746,
  17858. bottom: 6.4 / 782.0616
  17859. }
  17860. },
  17861. foot: {
  17862. height: math.unit(1.54, "feet"),
  17863. name: "Foot",
  17864. image: {
  17865. source: "./media/characters/dragonien/foot.svg",
  17866. }
  17867. },
  17868. },
  17869. [
  17870. {
  17871. name: "Normal",
  17872. height: math.unit(8 + 4 / 12, "feet"),
  17873. default: true
  17874. },
  17875. {
  17876. name: "Macro",
  17877. height: math.unit(200, "feet")
  17878. },
  17879. {
  17880. name: "Megamacro",
  17881. height: math.unit(1, "mile")
  17882. },
  17883. {
  17884. name: "Gigamacro",
  17885. height: math.unit(1000, "miles")
  17886. },
  17887. ]
  17888. ))
  17889. characterMakers.push(() => makeCharacter(
  17890. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17891. {
  17892. front: {
  17893. height: math.unit(5 + 2 / 12, "feet"),
  17894. weight: math.unit(110, "lb"),
  17895. name: "Front",
  17896. image: {
  17897. source: "./media/characters/desta/front.svg",
  17898. extra: 767 / 726,
  17899. bottom: 11.7 / 779
  17900. }
  17901. },
  17902. back: {
  17903. height: math.unit(5 + 2 / 12, "feet"),
  17904. weight: math.unit(110, "lb"),
  17905. name: "Back",
  17906. image: {
  17907. source: "./media/characters/desta/back.svg",
  17908. extra: 777 / 728,
  17909. bottom: 6 / 784
  17910. }
  17911. },
  17912. frontAlt: {
  17913. height: math.unit(5 + 2 / 12, "feet"),
  17914. weight: math.unit(110, "lb"),
  17915. name: "Front",
  17916. image: {
  17917. source: "./media/characters/desta/front-alt.svg",
  17918. extra: 1482 / 1417
  17919. }
  17920. },
  17921. side: {
  17922. height: math.unit(5 + 2 / 12, "feet"),
  17923. weight: math.unit(110, "lb"),
  17924. name: "Side",
  17925. image: {
  17926. source: "./media/characters/desta/side.svg",
  17927. extra: 2579 / 2491,
  17928. bottom: 0.053
  17929. }
  17930. },
  17931. },
  17932. [
  17933. {
  17934. name: "Micro",
  17935. height: math.unit(6, "inches")
  17936. },
  17937. {
  17938. name: "Normal",
  17939. height: math.unit(5 + 2 / 12, "feet"),
  17940. default: true
  17941. },
  17942. {
  17943. name: "Macro",
  17944. height: math.unit(62, "feet")
  17945. },
  17946. {
  17947. name: "Megamacro",
  17948. height: math.unit(1800, "feet")
  17949. },
  17950. ]
  17951. ))
  17952. characterMakers.push(() => makeCharacter(
  17953. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17954. {
  17955. front: {
  17956. height: math.unit(10, "feet"),
  17957. weight: math.unit(700, "lb"),
  17958. name: "Front",
  17959. image: {
  17960. source: "./media/characters/storm-alystar/front.svg",
  17961. extra: 2112 / 1898,
  17962. bottom: 0.034
  17963. }
  17964. },
  17965. },
  17966. [
  17967. {
  17968. name: "Micro",
  17969. height: math.unit(3.5, "inches")
  17970. },
  17971. {
  17972. name: "Normal",
  17973. height: math.unit(10, "feet"),
  17974. default: true
  17975. },
  17976. {
  17977. name: "Macro",
  17978. height: math.unit(400, "feet")
  17979. },
  17980. {
  17981. name: "Deific",
  17982. height: math.unit(60, "miles")
  17983. },
  17984. ]
  17985. ))
  17986. characterMakers.push(() => makeCharacter(
  17987. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17988. {
  17989. front: {
  17990. height: math.unit(2.35, "meters"),
  17991. weight: math.unit(119, "kg"),
  17992. name: "Front",
  17993. image: {
  17994. source: "./media/characters/ilia/front.svg",
  17995. extra: 1285 / 1255,
  17996. bottom: 0.06
  17997. }
  17998. },
  17999. },
  18000. [
  18001. {
  18002. name: "Normal",
  18003. height: math.unit(2.35, "meters")
  18004. },
  18005. {
  18006. name: "Macro",
  18007. height: math.unit(140, "meters"),
  18008. default: true
  18009. },
  18010. {
  18011. name: "Megamacro",
  18012. height: math.unit(100, "miles")
  18013. },
  18014. ]
  18015. ))
  18016. characterMakers.push(() => makeCharacter(
  18017. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18018. {
  18019. front: {
  18020. height: math.unit(6 + 5 / 12, "feet"),
  18021. weight: math.unit(190, "lb"),
  18022. name: "Front",
  18023. image: {
  18024. source: "./media/characters/kingdead/front.svg",
  18025. extra: 1228 / 1177
  18026. }
  18027. },
  18028. },
  18029. [
  18030. {
  18031. name: "Micro",
  18032. height: math.unit(7, "inches")
  18033. },
  18034. {
  18035. name: "Normal",
  18036. height: math.unit(6 + 5 / 12, "feet")
  18037. },
  18038. {
  18039. name: "Macro",
  18040. height: math.unit(150, "feet"),
  18041. default: true
  18042. },
  18043. {
  18044. name: "Megamacro",
  18045. height: math.unit(200, "miles")
  18046. },
  18047. ]
  18048. ))
  18049. characterMakers.push(() => makeCharacter(
  18050. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18051. {
  18052. front: {
  18053. height: math.unit(8, "feet"),
  18054. weight: math.unit(600, "lb"),
  18055. name: "Front",
  18056. image: {
  18057. source: "./media/characters/kyrehx/front.svg",
  18058. extra: 1195 / 1095,
  18059. bottom: 0.034
  18060. }
  18061. },
  18062. },
  18063. [
  18064. {
  18065. name: "Micro",
  18066. height: math.unit(2, "inches")
  18067. },
  18068. {
  18069. name: "Normal",
  18070. height: math.unit(8, "feet"),
  18071. default: true
  18072. },
  18073. {
  18074. name: "Macro",
  18075. height: math.unit(255, "feet")
  18076. },
  18077. ]
  18078. ))
  18079. characterMakers.push(() => makeCharacter(
  18080. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18081. {
  18082. front: {
  18083. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18084. weight: math.unit(184, "lb"),
  18085. name: "Front",
  18086. image: {
  18087. source: "./media/characters/xang/front.svg",
  18088. extra: 845 / 755
  18089. }
  18090. },
  18091. },
  18092. [
  18093. {
  18094. name: "Normal",
  18095. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18096. default: true
  18097. },
  18098. {
  18099. name: "Macro",
  18100. height: math.unit(0.935 * 146, "feet")
  18101. },
  18102. {
  18103. name: "Megamacro",
  18104. height: math.unit(0.935 * 3, "miles")
  18105. },
  18106. ]
  18107. ))
  18108. characterMakers.push(() => makeCharacter(
  18109. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18110. {
  18111. frontDressed: {
  18112. height: math.unit(5 + 7 / 12, "feet"),
  18113. weight: math.unit(140, "lb"),
  18114. name: "Front (Dressed)",
  18115. image: {
  18116. source: "./media/characters/doc-weardno/front-dressed.svg",
  18117. extra: 263 / 234
  18118. }
  18119. },
  18120. backDressed: {
  18121. height: math.unit(5 + 7 / 12, "feet"),
  18122. weight: math.unit(140, "lb"),
  18123. name: "Back (Dressed)",
  18124. image: {
  18125. source: "./media/characters/doc-weardno/back-dressed.svg",
  18126. extra: 266 / 238
  18127. }
  18128. },
  18129. front: {
  18130. height: math.unit(5 + 7 / 12, "feet"),
  18131. weight: math.unit(140, "lb"),
  18132. name: "Front",
  18133. image: {
  18134. source: "./media/characters/doc-weardno/front.svg",
  18135. extra: 254 / 233
  18136. }
  18137. },
  18138. },
  18139. [
  18140. {
  18141. name: "Micro",
  18142. height: math.unit(3, "inches")
  18143. },
  18144. {
  18145. name: "Normal",
  18146. height: math.unit(5 + 7 / 12, "feet"),
  18147. default: true
  18148. },
  18149. {
  18150. name: "Macro",
  18151. height: math.unit(25, "feet")
  18152. },
  18153. {
  18154. name: "Megamacro",
  18155. height: math.unit(2, "miles")
  18156. },
  18157. ]
  18158. ))
  18159. characterMakers.push(() => makeCharacter(
  18160. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18161. {
  18162. front: {
  18163. height: math.unit(6 + 2 / 12, "feet"),
  18164. weight: math.unit(153, "lb"),
  18165. name: "Front",
  18166. image: {
  18167. source: "./media/characters/seth-whilst/front.svg",
  18168. bottom: 0.07
  18169. }
  18170. },
  18171. },
  18172. [
  18173. {
  18174. name: "Micro",
  18175. height: math.unit(5, "inches")
  18176. },
  18177. {
  18178. name: "Normal",
  18179. height: math.unit(6 + 2 / 12, "feet"),
  18180. default: true
  18181. },
  18182. ]
  18183. ))
  18184. characterMakers.push(() => makeCharacter(
  18185. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18186. {
  18187. front: {
  18188. height: math.unit(3, "inches"),
  18189. weight: math.unit(8, "grams"),
  18190. name: "Front",
  18191. image: {
  18192. source: "./media/characters/pocket-jabari/front.svg",
  18193. extra: 1024 / 974,
  18194. bottom: 0.039
  18195. }
  18196. },
  18197. },
  18198. [
  18199. {
  18200. name: "Minimicro",
  18201. height: math.unit(8, "mm")
  18202. },
  18203. {
  18204. name: "Micro",
  18205. height: math.unit(3, "inches"),
  18206. default: true
  18207. },
  18208. {
  18209. name: "Normal",
  18210. height: math.unit(3, "feet")
  18211. },
  18212. ]
  18213. ))
  18214. characterMakers.push(() => makeCharacter(
  18215. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18216. {
  18217. front: {
  18218. height: math.unit(15, "feet"),
  18219. weight: math.unit(3280, "lb"),
  18220. name: "Front",
  18221. image: {
  18222. source: "./media/characters/sapphy/front.svg",
  18223. extra: 671 / 577,
  18224. bottom: 0.085
  18225. }
  18226. },
  18227. back: {
  18228. height: math.unit(15, "feet"),
  18229. weight: math.unit(3280, "lb"),
  18230. name: "Back",
  18231. image: {
  18232. source: "./media/characters/sapphy/back.svg",
  18233. extra: 631 / 607,
  18234. bottom: 0.045
  18235. }
  18236. },
  18237. },
  18238. [
  18239. {
  18240. name: "Normal",
  18241. height: math.unit(15, "feet")
  18242. },
  18243. {
  18244. name: "Casual Macro",
  18245. height: math.unit(120, "feet")
  18246. },
  18247. {
  18248. name: "Macro",
  18249. height: math.unit(2150, "feet"),
  18250. default: true
  18251. },
  18252. {
  18253. name: "Megamacro",
  18254. height: math.unit(8, "miles")
  18255. },
  18256. {
  18257. name: "Galaxy Mom",
  18258. height: math.unit(6, "megalightyears")
  18259. },
  18260. ]
  18261. ))
  18262. characterMakers.push(() => makeCharacter(
  18263. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18264. {
  18265. front: {
  18266. height: math.unit(6, "feet"),
  18267. weight: math.unit(170, "lb"),
  18268. name: "Front",
  18269. image: {
  18270. source: "./media/characters/kiro/front.svg",
  18271. extra: 1064 / 1012,
  18272. bottom: 0.052
  18273. }
  18274. },
  18275. },
  18276. [
  18277. {
  18278. name: "Micro",
  18279. height: math.unit(6, "inches")
  18280. },
  18281. {
  18282. name: "Normal",
  18283. height: math.unit(6, "feet"),
  18284. default: true
  18285. },
  18286. {
  18287. name: "Macro",
  18288. height: math.unit(72, "feet")
  18289. },
  18290. ]
  18291. ))
  18292. characterMakers.push(() => makeCharacter(
  18293. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18294. {
  18295. front: {
  18296. height: math.unit(5 + 9 / 12, "feet"),
  18297. weight: math.unit(175, "lb"),
  18298. name: "Front",
  18299. image: {
  18300. source: "./media/characters/irishfox/front.svg",
  18301. extra: 1912 / 1680,
  18302. bottom: 0.02
  18303. }
  18304. },
  18305. },
  18306. [
  18307. {
  18308. name: "Nano",
  18309. height: math.unit(1, "mm")
  18310. },
  18311. {
  18312. name: "Micro",
  18313. height: math.unit(2, "inches")
  18314. },
  18315. {
  18316. name: "Normal",
  18317. height: math.unit(5 + 9 / 12, "feet"),
  18318. default: true
  18319. },
  18320. {
  18321. name: "Macro",
  18322. height: math.unit(45, "feet")
  18323. },
  18324. ]
  18325. ))
  18326. characterMakers.push(() => makeCharacter(
  18327. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18328. {
  18329. front: {
  18330. height: math.unit(6 + 1 / 12, "feet"),
  18331. weight: math.unit(75, "lb"),
  18332. name: "Front",
  18333. image: {
  18334. source: "./media/characters/aronai-sieyes/front.svg",
  18335. extra: 1556 / 1480,
  18336. bottom: 0.015
  18337. }
  18338. },
  18339. side: {
  18340. height: math.unit(6 + 1 / 12, "feet"),
  18341. weight: math.unit(75, "lb"),
  18342. name: "Side",
  18343. image: {
  18344. source: "./media/characters/aronai-sieyes/side.svg",
  18345. extra: 1433 / 1390,
  18346. bottom: 0.0393
  18347. }
  18348. },
  18349. back: {
  18350. height: math.unit(6 + 1 / 12, "feet"),
  18351. weight: math.unit(75, "lb"),
  18352. name: "Back",
  18353. image: {
  18354. source: "./media/characters/aronai-sieyes/back.svg",
  18355. extra: 1544 / 1494,
  18356. bottom: 0.02
  18357. }
  18358. },
  18359. frontClothed: {
  18360. height: math.unit(6 + 1 / 12, "feet"),
  18361. weight: math.unit(75, "lb"),
  18362. name: "Front (Clothed)",
  18363. image: {
  18364. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18365. extra: 1582 / 1527
  18366. }
  18367. },
  18368. feral: {
  18369. height: math.unit(18, "feet"),
  18370. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18371. name: "Feral",
  18372. image: {
  18373. source: "./media/characters/aronai-sieyes/feral.svg",
  18374. extra: 1530 / 1240,
  18375. bottom: 0.035
  18376. }
  18377. },
  18378. },
  18379. [
  18380. {
  18381. name: "Micro",
  18382. height: math.unit(2, "inches")
  18383. },
  18384. {
  18385. name: "Normal",
  18386. height: math.unit(6 + 1 / 12, "feet"),
  18387. default: true
  18388. }
  18389. ]
  18390. ))
  18391. characterMakers.push(() => makeCharacter(
  18392. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18393. {
  18394. front: {
  18395. height: math.unit(12, "feet"),
  18396. weight: math.unit(410, "kg"),
  18397. name: "Front",
  18398. image: {
  18399. source: "./media/characters/xuna/front.svg",
  18400. extra: 2184 / 1980
  18401. }
  18402. },
  18403. side: {
  18404. height: math.unit(12, "feet"),
  18405. weight: math.unit(410, "kg"),
  18406. name: "Side",
  18407. image: {
  18408. source: "./media/characters/xuna/side.svg",
  18409. extra: 2184 / 1980
  18410. }
  18411. },
  18412. back: {
  18413. height: math.unit(12, "feet"),
  18414. weight: math.unit(410, "kg"),
  18415. name: "Back",
  18416. image: {
  18417. source: "./media/characters/xuna/back.svg",
  18418. extra: 2184 / 1980
  18419. }
  18420. },
  18421. },
  18422. [
  18423. {
  18424. name: "Nano glow",
  18425. height: math.unit(10, "nm")
  18426. },
  18427. {
  18428. name: "Micro floof",
  18429. height: math.unit(0.3, "m")
  18430. },
  18431. {
  18432. name: "Huggable softy boi",
  18433. height: math.unit(3.6576, "m"),
  18434. default: true
  18435. },
  18436. {
  18437. name: "Admirable floof",
  18438. height: math.unit(80, "meters")
  18439. },
  18440. {
  18441. name: "Gentle macro",
  18442. height: math.unit(300, "meters")
  18443. },
  18444. {
  18445. name: "Very careful floof",
  18446. height: math.unit(3200, "meters")
  18447. },
  18448. {
  18449. name: "The mega floof",
  18450. height: math.unit(36000, "meters")
  18451. },
  18452. {
  18453. name: "Giga-fur-Wicker",
  18454. height: math.unit(4800000, "meters")
  18455. },
  18456. {
  18457. name: "Licky world",
  18458. height: math.unit(20000000, "meters")
  18459. },
  18460. {
  18461. name: "Floofy cyan sun",
  18462. height: math.unit(1500000000, "meters")
  18463. },
  18464. {
  18465. name: "Milky Wicker",
  18466. height: math.unit(1000000000000000000000, "meters")
  18467. },
  18468. {
  18469. name: "The observing Wicker",
  18470. height: math.unit(999999999999999999999999999, "meters")
  18471. },
  18472. ]
  18473. ))
  18474. characterMakers.push(() => makeCharacter(
  18475. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18476. {
  18477. front: {
  18478. height: math.unit(5 + 9 / 12, "feet"),
  18479. weight: math.unit(150, "lb"),
  18480. name: "Front",
  18481. image: {
  18482. source: "./media/characters/arokha-sieyes/front.svg",
  18483. extra: 1425 / 1284,
  18484. bottom: 0.05
  18485. }
  18486. },
  18487. },
  18488. [
  18489. {
  18490. name: "Normal",
  18491. height: math.unit(5 + 9 / 12, "feet")
  18492. },
  18493. {
  18494. name: "Macro",
  18495. height: math.unit(30, "meters"),
  18496. default: true
  18497. },
  18498. ]
  18499. ))
  18500. characterMakers.push(() => makeCharacter(
  18501. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18502. {
  18503. front: {
  18504. height: math.unit(6, "feet"),
  18505. weight: math.unit(180, "lb"),
  18506. name: "Front",
  18507. image: {
  18508. source: "./media/characters/arokh-sieyes/front.svg",
  18509. extra: 1830 / 1769,
  18510. bottom: 0.01
  18511. }
  18512. },
  18513. },
  18514. [
  18515. {
  18516. name: "Normal",
  18517. height: math.unit(6, "feet")
  18518. },
  18519. {
  18520. name: "Macro",
  18521. height: math.unit(30, "meters"),
  18522. default: true
  18523. },
  18524. ]
  18525. ))
  18526. characterMakers.push(() => makeCharacter(
  18527. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18528. {
  18529. side: {
  18530. height: math.unit(13 + 1 / 12, "feet"),
  18531. weight: math.unit(8.5, "tonnes"),
  18532. name: "Side",
  18533. image: {
  18534. source: "./media/characters/goldeneye/side.svg",
  18535. extra: 1182 / 778,
  18536. bottom: 0.067
  18537. }
  18538. },
  18539. paw: {
  18540. height: math.unit(3.4, "feet"),
  18541. name: "Paw",
  18542. image: {
  18543. source: "./media/characters/goldeneye/paw.svg"
  18544. }
  18545. },
  18546. },
  18547. [
  18548. {
  18549. name: "Normal",
  18550. height: math.unit(13 + 1 / 12, "feet"),
  18551. default: true
  18552. },
  18553. ]
  18554. ))
  18555. characterMakers.push(() => makeCharacter(
  18556. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18557. {
  18558. front: {
  18559. height: math.unit(6 + 1 / 12, "feet"),
  18560. weight: math.unit(210, "lb"),
  18561. name: "Front",
  18562. image: {
  18563. source: "./media/characters/leonardo-lycheborne/front.svg",
  18564. extra: 390 / 365,
  18565. bottom: 0.032
  18566. }
  18567. },
  18568. side: {
  18569. height: math.unit(6 + 1 / 12, "feet"),
  18570. weight: math.unit(210, "lb"),
  18571. name: "Side",
  18572. image: {
  18573. source: "./media/characters/leonardo-lycheborne/side.svg",
  18574. extra: 390 / 365,
  18575. bottom: 0.005
  18576. }
  18577. },
  18578. back: {
  18579. height: math.unit(6 + 1 / 12, "feet"),
  18580. weight: math.unit(210, "lb"),
  18581. name: "Back",
  18582. image: {
  18583. source: "./media/characters/leonardo-lycheborne/back.svg",
  18584. extra: 392 / 366,
  18585. bottom: 0.01
  18586. }
  18587. },
  18588. hand: {
  18589. height: math.unit(1.08, "feet"),
  18590. name: "Hand",
  18591. image: {
  18592. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18593. }
  18594. },
  18595. foot: {
  18596. height: math.unit(1.32, "feet"),
  18597. name: "Foot",
  18598. image: {
  18599. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18600. }
  18601. },
  18602. were: {
  18603. height: math.unit(20, "feet"),
  18604. weight: math.unit(7800, "lb"),
  18605. name: "Were",
  18606. image: {
  18607. source: "./media/characters/leonardo-lycheborne/were.svg",
  18608. extra: 308 / 294,
  18609. bottom: 0.048
  18610. }
  18611. },
  18612. feral: {
  18613. height: math.unit(7.5, "feet"),
  18614. weight: math.unit(600, "lb"),
  18615. name: "Feral",
  18616. image: {
  18617. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18618. extra: 210 / 186,
  18619. bottom: 0.108
  18620. }
  18621. },
  18622. taur: {
  18623. height: math.unit(11, "feet"),
  18624. weight: math.unit(3300, "lb"),
  18625. name: "Taur",
  18626. image: {
  18627. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18628. extra: 320 / 303,
  18629. bottom: 0.025
  18630. }
  18631. },
  18632. barghest: {
  18633. height: math.unit(11, "feet"),
  18634. weight: math.unit(1300, "lb"),
  18635. name: "Barghest",
  18636. image: {
  18637. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18638. extra: 323 / 302,
  18639. bottom: 0.027
  18640. }
  18641. },
  18642. dick: {
  18643. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18644. name: "Dick",
  18645. image: {
  18646. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18647. }
  18648. },
  18649. dickWere: {
  18650. height: math.unit((20) / 3.8, "feet"),
  18651. name: "Dick (Were)",
  18652. image: {
  18653. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18654. }
  18655. },
  18656. },
  18657. [
  18658. {
  18659. name: "Normal",
  18660. height: math.unit(6 + 1 / 12, "feet"),
  18661. default: true
  18662. },
  18663. ]
  18664. ))
  18665. characterMakers.push(() => makeCharacter(
  18666. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18667. {
  18668. front: {
  18669. height: math.unit(10, "feet"),
  18670. weight: math.unit(350, "lb"),
  18671. name: "Front",
  18672. image: {
  18673. source: "./media/characters/jet/front.svg",
  18674. extra: 2050 / 1980,
  18675. bottom: 0.013
  18676. }
  18677. },
  18678. back: {
  18679. height: math.unit(10, "feet"),
  18680. weight: math.unit(350, "lb"),
  18681. name: "Back",
  18682. image: {
  18683. source: "./media/characters/jet/back.svg",
  18684. extra: 2050 / 1980,
  18685. bottom: 0.013
  18686. }
  18687. },
  18688. },
  18689. [
  18690. {
  18691. name: "Micro",
  18692. height: math.unit(6, "inches")
  18693. },
  18694. {
  18695. name: "Normal",
  18696. height: math.unit(10, "feet"),
  18697. default: true
  18698. },
  18699. {
  18700. name: "Macro",
  18701. height: math.unit(100, "feet")
  18702. },
  18703. ]
  18704. ))
  18705. characterMakers.push(() => makeCharacter(
  18706. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18707. {
  18708. front: {
  18709. height: math.unit(15, "feet"),
  18710. weight: math.unit(2800, "lb"),
  18711. name: "Front",
  18712. image: {
  18713. source: "./media/characters/tanarath/front.svg",
  18714. extra: 2392 / 2220,
  18715. bottom: 0.03
  18716. }
  18717. },
  18718. back: {
  18719. height: math.unit(15, "feet"),
  18720. weight: math.unit(2800, "lb"),
  18721. name: "Back",
  18722. image: {
  18723. source: "./media/characters/tanarath/back.svg",
  18724. extra: 2392 / 2220,
  18725. bottom: 0.03
  18726. }
  18727. },
  18728. },
  18729. [
  18730. {
  18731. name: "Normal",
  18732. height: math.unit(15, "feet"),
  18733. default: true
  18734. },
  18735. ]
  18736. ))
  18737. characterMakers.push(() => makeCharacter(
  18738. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18739. {
  18740. front: {
  18741. height: math.unit(7 + 1 / 12, "feet"),
  18742. weight: math.unit(175, "lb"),
  18743. name: "Front",
  18744. image: {
  18745. source: "./media/characters/patty-cattybatty/front.svg",
  18746. extra: 908 / 874,
  18747. bottom: 0.025
  18748. }
  18749. },
  18750. },
  18751. [
  18752. {
  18753. name: "Micro",
  18754. height: math.unit(1, "inch")
  18755. },
  18756. {
  18757. name: "Normal",
  18758. height: math.unit(7 + 1 / 12, "feet")
  18759. },
  18760. {
  18761. name: "Mini Macro",
  18762. height: math.unit(155, "feet")
  18763. },
  18764. {
  18765. name: "Macro",
  18766. height: math.unit(1077, "feet")
  18767. },
  18768. {
  18769. name: "Mega Macro",
  18770. height: math.unit(47650, "feet"),
  18771. default: true
  18772. },
  18773. {
  18774. name: "Giga Macro",
  18775. height: math.unit(440, "miles")
  18776. },
  18777. {
  18778. name: "Tera Macro",
  18779. height: math.unit(8700, "miles")
  18780. },
  18781. {
  18782. name: "Planetary Macro",
  18783. height: math.unit(32700, "miles")
  18784. },
  18785. {
  18786. name: "Solar Macro",
  18787. height: math.unit(550000, "miles")
  18788. },
  18789. {
  18790. name: "Celestial Macro",
  18791. height: math.unit(2.5, "AU")
  18792. },
  18793. ]
  18794. ))
  18795. characterMakers.push(() => makeCharacter(
  18796. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18797. {
  18798. front: {
  18799. height: math.unit(4 + 5 / 12, "feet"),
  18800. weight: math.unit(90, "lb"),
  18801. name: "Front",
  18802. image: {
  18803. source: "./media/characters/cappu/front.svg",
  18804. extra: 1247 / 1152,
  18805. bottom: 0.012
  18806. }
  18807. },
  18808. },
  18809. [
  18810. {
  18811. name: "Normal",
  18812. height: math.unit(4 + 5 / 12, "feet"),
  18813. default: true
  18814. },
  18815. ]
  18816. ))
  18817. characterMakers.push(() => makeCharacter(
  18818. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18819. {
  18820. frontDressed: {
  18821. height: math.unit(70, "cm"),
  18822. weight: math.unit(6, "kg"),
  18823. name: "Front (Dressed)",
  18824. image: {
  18825. source: "./media/characters/sebi/front-dressed.svg",
  18826. extra: 713.5 / 686.5,
  18827. bottom: 0.003
  18828. }
  18829. },
  18830. front: {
  18831. height: math.unit(70, "cm"),
  18832. weight: math.unit(5, "kg"),
  18833. name: "Front",
  18834. image: {
  18835. source: "./media/characters/sebi/front.svg",
  18836. extra: 713.5 / 686.5,
  18837. bottom: 0.003
  18838. }
  18839. }
  18840. },
  18841. [
  18842. {
  18843. name: "Normal",
  18844. height: math.unit(70, "cm"),
  18845. default: true
  18846. },
  18847. {
  18848. name: "Macro",
  18849. height: math.unit(8, "meters")
  18850. },
  18851. ]
  18852. ))
  18853. characterMakers.push(() => makeCharacter(
  18854. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18855. {
  18856. front: {
  18857. height: math.unit(6, "feet"),
  18858. weight: math.unit(150, "lb"),
  18859. name: "Front",
  18860. image: {
  18861. source: "./media/characters/typhek/front.svg",
  18862. extra: 1948 / 1929,
  18863. bottom: 0.025
  18864. }
  18865. },
  18866. side: {
  18867. height: math.unit(6, "feet"),
  18868. weight: math.unit(150, "lb"),
  18869. name: "Side",
  18870. image: {
  18871. source: "./media/characters/typhek/side.svg",
  18872. extra: 2034 / 2010,
  18873. bottom: 0.003
  18874. }
  18875. },
  18876. back: {
  18877. height: math.unit(6, "feet"),
  18878. weight: math.unit(150, "lb"),
  18879. name: "Back",
  18880. image: {
  18881. source: "./media/characters/typhek/back.svg",
  18882. extra: 2005 / 1978,
  18883. bottom: 0.004
  18884. }
  18885. },
  18886. palm: {
  18887. height: math.unit(1.2, "feet"),
  18888. name: "Palm",
  18889. image: {
  18890. source: "./media/characters/typhek/palm.svg"
  18891. }
  18892. },
  18893. fist: {
  18894. height: math.unit(1.1, "feet"),
  18895. name: "Fist",
  18896. image: {
  18897. source: "./media/characters/typhek/fist.svg"
  18898. }
  18899. },
  18900. foot: {
  18901. height: math.unit(1.57, "feet"),
  18902. name: "Foot",
  18903. image: {
  18904. source: "./media/characters/typhek/foot.svg"
  18905. }
  18906. },
  18907. sole: {
  18908. height: math.unit(2.05, "feet"),
  18909. name: "Sole",
  18910. image: {
  18911. source: "./media/characters/typhek/sole.svg"
  18912. }
  18913. },
  18914. },
  18915. [
  18916. {
  18917. name: "Macro",
  18918. height: math.unit(40, "stories"),
  18919. default: true
  18920. },
  18921. {
  18922. name: "Megamacro",
  18923. height: math.unit(1, "mile")
  18924. },
  18925. {
  18926. name: "Gigamacro",
  18927. height: math.unit(4000, "solarradii")
  18928. },
  18929. {
  18930. name: "Universal",
  18931. height: math.unit(1.1, "universes")
  18932. }
  18933. ]
  18934. ))
  18935. characterMakers.push(() => makeCharacter(
  18936. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18937. {
  18938. side: {
  18939. height: math.unit(5 + 7 / 12, "feet"),
  18940. weight: math.unit(150, "lb"),
  18941. name: "Side",
  18942. image: {
  18943. source: "./media/characters/kassy/side.svg",
  18944. extra: 1280 / 1225,
  18945. bottom: 0.002
  18946. }
  18947. },
  18948. front: {
  18949. height: math.unit(5 + 7 / 12, "feet"),
  18950. weight: math.unit(150, "lb"),
  18951. name: "Front",
  18952. image: {
  18953. source: "./media/characters/kassy/front.svg",
  18954. extra: 1280 / 1225,
  18955. bottom: 0.025
  18956. }
  18957. },
  18958. back: {
  18959. height: math.unit(5 + 7 / 12, "feet"),
  18960. weight: math.unit(150, "lb"),
  18961. name: "Back",
  18962. image: {
  18963. source: "./media/characters/kassy/back.svg",
  18964. extra: 1280 / 1225,
  18965. bottom: 0.002
  18966. }
  18967. },
  18968. foot: {
  18969. height: math.unit(1.266, "feet"),
  18970. name: "Foot",
  18971. image: {
  18972. source: "./media/characters/kassy/foot.svg"
  18973. }
  18974. },
  18975. },
  18976. [
  18977. {
  18978. name: "Normal",
  18979. height: math.unit(5 + 7 / 12, "feet")
  18980. },
  18981. {
  18982. name: "Macro",
  18983. height: math.unit(137, "feet"),
  18984. default: true
  18985. },
  18986. {
  18987. name: "Megamacro",
  18988. height: math.unit(1, "mile")
  18989. },
  18990. ]
  18991. ))
  18992. characterMakers.push(() => makeCharacter(
  18993. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18994. {
  18995. front: {
  18996. height: math.unit(6 + 1 / 12, "feet"),
  18997. weight: math.unit(200, "lb"),
  18998. name: "Front",
  18999. image: {
  19000. source: "./media/characters/neil/front.svg",
  19001. extra: 1326 / 1250,
  19002. bottom: 0.023
  19003. }
  19004. },
  19005. },
  19006. [
  19007. {
  19008. name: "Normal",
  19009. height: math.unit(6 + 1 / 12, "feet"),
  19010. default: true
  19011. },
  19012. {
  19013. name: "Macro",
  19014. height: math.unit(200, "feet")
  19015. },
  19016. ]
  19017. ))
  19018. characterMakers.push(() => makeCharacter(
  19019. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19020. {
  19021. front: {
  19022. height: math.unit(5 + 9 / 12, "feet"),
  19023. weight: math.unit(190, "lb"),
  19024. name: "Front",
  19025. image: {
  19026. source: "./media/characters/atticus/front.svg",
  19027. extra: 2934 / 2785,
  19028. bottom: 0.025
  19029. }
  19030. },
  19031. },
  19032. [
  19033. {
  19034. name: "Normal",
  19035. height: math.unit(5 + 9 / 12, "feet"),
  19036. default: true
  19037. },
  19038. {
  19039. name: "Macro",
  19040. height: math.unit(180, "feet")
  19041. },
  19042. ]
  19043. ))
  19044. characterMakers.push(() => makeCharacter(
  19045. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19046. {
  19047. side: {
  19048. height: math.unit(9, "feet"),
  19049. weight: math.unit(650, "lb"),
  19050. name: "Side",
  19051. image: {
  19052. source: "./media/characters/milo/side.svg",
  19053. extra: 2644 / 2310,
  19054. bottom: 0.032
  19055. }
  19056. },
  19057. },
  19058. [
  19059. {
  19060. name: "Normal",
  19061. height: math.unit(9, "feet"),
  19062. default: true
  19063. },
  19064. {
  19065. name: "Macro",
  19066. height: math.unit(300, "feet")
  19067. },
  19068. ]
  19069. ))
  19070. characterMakers.push(() => makeCharacter(
  19071. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19072. {
  19073. side: {
  19074. height: math.unit(8, "meters"),
  19075. weight: math.unit(90000, "kg"),
  19076. name: "Side",
  19077. image: {
  19078. source: "./media/characters/ijzer/side.svg",
  19079. extra: 2756 / 1600,
  19080. bottom: 0.01
  19081. }
  19082. },
  19083. },
  19084. [
  19085. {
  19086. name: "Small",
  19087. height: math.unit(3, "meters")
  19088. },
  19089. {
  19090. name: "Normal",
  19091. height: math.unit(8, "meters"),
  19092. default: true
  19093. },
  19094. {
  19095. name: "Normal+",
  19096. height: math.unit(10, "meters")
  19097. },
  19098. {
  19099. name: "Bigger",
  19100. height: math.unit(24, "meters")
  19101. },
  19102. {
  19103. name: "Huge",
  19104. height: math.unit(80, "meters")
  19105. },
  19106. ]
  19107. ))
  19108. characterMakers.push(() => makeCharacter(
  19109. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19110. {
  19111. front: {
  19112. height: math.unit(6 + 2 / 12, "feet"),
  19113. weight: math.unit(153, "lb"),
  19114. name: "Front",
  19115. image: {
  19116. source: "./media/characters/luca-cervicum/front.svg",
  19117. extra: 370 / 327,
  19118. bottom: 0.015
  19119. }
  19120. },
  19121. back: {
  19122. height: math.unit(6 + 2 / 12, "feet"),
  19123. weight: math.unit(153, "lb"),
  19124. name: "Back",
  19125. image: {
  19126. source: "./media/characters/luca-cervicum/back.svg",
  19127. extra: 367 / 333,
  19128. bottom: 0.005
  19129. }
  19130. },
  19131. frontGear: {
  19132. height: math.unit(6 + 2 / 12, "feet"),
  19133. weight: math.unit(173, "lb"),
  19134. name: "Front (Gear)",
  19135. image: {
  19136. source: "./media/characters/luca-cervicum/front-gear.svg",
  19137. extra: 377 / 333,
  19138. bottom: 0.006
  19139. }
  19140. },
  19141. },
  19142. [
  19143. {
  19144. name: "Normal",
  19145. height: math.unit(6 + 2 / 12, "feet"),
  19146. default: true
  19147. },
  19148. ]
  19149. ))
  19150. characterMakers.push(() => makeCharacter(
  19151. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19152. {
  19153. front: {
  19154. height: math.unit(6 + 1 / 12, "feet"),
  19155. weight: math.unit(304, "lb"),
  19156. name: "Front",
  19157. image: {
  19158. source: "./media/characters/oliver/front.svg",
  19159. extra: 157 / 143,
  19160. bottom: 0.08
  19161. }
  19162. },
  19163. },
  19164. [
  19165. {
  19166. name: "Normal",
  19167. height: math.unit(6 + 1 / 12, "feet"),
  19168. default: true
  19169. },
  19170. ]
  19171. ))
  19172. characterMakers.push(() => makeCharacter(
  19173. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19174. {
  19175. front: {
  19176. height: math.unit(5 + 7 / 12, "feet"),
  19177. weight: math.unit(140, "lb"),
  19178. name: "Front",
  19179. image: {
  19180. source: "./media/characters/shane/front.svg",
  19181. extra: 304 / 289,
  19182. bottom: 0.005
  19183. }
  19184. },
  19185. },
  19186. [
  19187. {
  19188. name: "Normal",
  19189. height: math.unit(5 + 7 / 12, "feet"),
  19190. default: true
  19191. },
  19192. ]
  19193. ))
  19194. characterMakers.push(() => makeCharacter(
  19195. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19196. {
  19197. front: {
  19198. height: math.unit(5 + 9 / 12, "feet"),
  19199. weight: math.unit(178, "lb"),
  19200. name: "Front",
  19201. image: {
  19202. source: "./media/characters/shin/front.svg",
  19203. extra: 159 / 151,
  19204. bottom: 0.015
  19205. }
  19206. },
  19207. },
  19208. [
  19209. {
  19210. name: "Normal",
  19211. height: math.unit(5 + 9 / 12, "feet"),
  19212. default: true
  19213. },
  19214. ]
  19215. ))
  19216. characterMakers.push(() => makeCharacter(
  19217. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19218. {
  19219. front: {
  19220. height: math.unit(5 + 10 / 12, "feet"),
  19221. weight: math.unit(168, "lb"),
  19222. name: "Front",
  19223. image: {
  19224. source: "./media/characters/xerxes/front.svg",
  19225. extra: 282 / 260,
  19226. bottom: 0.045
  19227. }
  19228. },
  19229. },
  19230. [
  19231. {
  19232. name: "Normal",
  19233. height: math.unit(5 + 10 / 12, "feet"),
  19234. default: true
  19235. },
  19236. ]
  19237. ))
  19238. characterMakers.push(() => makeCharacter(
  19239. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19240. {
  19241. front: {
  19242. height: math.unit(6 + 7 / 12, "feet"),
  19243. weight: math.unit(208, "lb"),
  19244. name: "Front",
  19245. image: {
  19246. source: "./media/characters/chaska/front.svg",
  19247. extra: 332 / 319,
  19248. bottom: 0.015
  19249. }
  19250. },
  19251. },
  19252. [
  19253. {
  19254. name: "Normal",
  19255. height: math.unit(6 + 7 / 12, "feet"),
  19256. default: true
  19257. },
  19258. ]
  19259. ))
  19260. characterMakers.push(() => makeCharacter(
  19261. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19262. {
  19263. front: {
  19264. height: math.unit(5 + 8 / 12, "feet"),
  19265. weight: math.unit(208, "lb"),
  19266. name: "Front",
  19267. image: {
  19268. source: "./media/characters/enuk/front.svg",
  19269. extra: 437 / 406,
  19270. bottom: 0.02
  19271. }
  19272. },
  19273. },
  19274. [
  19275. {
  19276. name: "Normal",
  19277. height: math.unit(5 + 8 / 12, "feet"),
  19278. default: true
  19279. },
  19280. ]
  19281. ))
  19282. characterMakers.push(() => makeCharacter(
  19283. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19284. {
  19285. front: {
  19286. height: math.unit(5 + 10 / 12, "feet"),
  19287. weight: math.unit(252, "lb"),
  19288. name: "Front",
  19289. image: {
  19290. source: "./media/characters/bruun/front.svg",
  19291. extra: 197 / 187,
  19292. bottom: 0.012
  19293. }
  19294. },
  19295. },
  19296. [
  19297. {
  19298. name: "Normal",
  19299. height: math.unit(5 + 10 / 12, "feet"),
  19300. default: true
  19301. },
  19302. ]
  19303. ))
  19304. characterMakers.push(() => makeCharacter(
  19305. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19306. {
  19307. front: {
  19308. height: math.unit(6 + 10 / 12, "feet"),
  19309. weight: math.unit(255, "lb"),
  19310. name: "Front",
  19311. image: {
  19312. source: "./media/characters/alexeev/front.svg",
  19313. extra: 213 / 200,
  19314. bottom: 0.05
  19315. }
  19316. },
  19317. },
  19318. [
  19319. {
  19320. name: "Normal",
  19321. height: math.unit(6 + 10 / 12, "feet"),
  19322. default: true
  19323. },
  19324. ]
  19325. ))
  19326. characterMakers.push(() => makeCharacter(
  19327. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19328. {
  19329. front: {
  19330. height: math.unit(2 + 8 / 12, "feet"),
  19331. weight: math.unit(22, "lb"),
  19332. name: "Front",
  19333. image: {
  19334. source: "./media/characters/evelyn/front.svg",
  19335. extra: 208 / 180
  19336. }
  19337. },
  19338. },
  19339. [
  19340. {
  19341. name: "Normal",
  19342. height: math.unit(2 + 8 / 12, "feet"),
  19343. default: true
  19344. },
  19345. ]
  19346. ))
  19347. characterMakers.push(() => makeCharacter(
  19348. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19349. {
  19350. front: {
  19351. height: math.unit(5 + 9 / 12, "feet"),
  19352. weight: math.unit(139, "lb"),
  19353. name: "Front",
  19354. image: {
  19355. source: "./media/characters/inca/front.svg",
  19356. extra: 294 / 291,
  19357. bottom: 0.03
  19358. }
  19359. },
  19360. },
  19361. [
  19362. {
  19363. name: "Normal",
  19364. height: math.unit(5 + 9 / 12, "feet"),
  19365. default: true
  19366. },
  19367. ]
  19368. ))
  19369. characterMakers.push(() => makeCharacter(
  19370. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19371. {
  19372. front: {
  19373. height: math.unit(5 + 1 / 12, "feet"),
  19374. weight: math.unit(84, "lb"),
  19375. name: "Front",
  19376. image: {
  19377. source: "./media/characters/magdalene/front.svg",
  19378. extra: 293 / 273
  19379. }
  19380. },
  19381. },
  19382. [
  19383. {
  19384. name: "Normal",
  19385. height: math.unit(5 + 1 / 12, "feet"),
  19386. default: true
  19387. },
  19388. ]
  19389. ))
  19390. characterMakers.push(() => makeCharacter(
  19391. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19392. {
  19393. front: {
  19394. height: math.unit(6 + 3 / 12, "feet"),
  19395. weight: math.unit(185, "lb"),
  19396. name: "Front",
  19397. image: {
  19398. source: "./media/characters/mera/front.svg",
  19399. extra: 291 / 277,
  19400. bottom: 0.03
  19401. }
  19402. },
  19403. },
  19404. [
  19405. {
  19406. name: "Normal",
  19407. height: math.unit(6 + 3 / 12, "feet"),
  19408. default: true
  19409. },
  19410. ]
  19411. ))
  19412. characterMakers.push(() => makeCharacter(
  19413. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19414. {
  19415. front: {
  19416. height: math.unit(6 + 7 / 12, "feet"),
  19417. weight: math.unit(160, "lb"),
  19418. name: "Front",
  19419. image: {
  19420. source: "./media/characters/ceres/front.svg",
  19421. extra: 1023 / 950,
  19422. bottom: 0.027
  19423. }
  19424. },
  19425. back: {
  19426. height: math.unit(6 + 7 / 12, "feet"),
  19427. weight: math.unit(160, "lb"),
  19428. name: "Back",
  19429. image: {
  19430. source: "./media/characters/ceres/back.svg",
  19431. extra: 1023 / 950
  19432. }
  19433. },
  19434. },
  19435. [
  19436. {
  19437. name: "Normal",
  19438. height: math.unit(6 + 7 / 12, "feet"),
  19439. default: true
  19440. },
  19441. ]
  19442. ))
  19443. characterMakers.push(() => makeCharacter(
  19444. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19445. {
  19446. front: {
  19447. height: math.unit(5 + 10 / 12, "feet"),
  19448. weight: math.unit(150, "lb"),
  19449. name: "Front",
  19450. image: {
  19451. source: "./media/characters/kris/front.svg",
  19452. extra: 885 / 803,
  19453. bottom: 0.03
  19454. }
  19455. },
  19456. },
  19457. [
  19458. {
  19459. name: "Normal",
  19460. height: math.unit(5 + 10 / 12, "feet"),
  19461. default: true
  19462. },
  19463. ]
  19464. ))
  19465. characterMakers.push(() => makeCharacter(
  19466. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19467. {
  19468. front: {
  19469. height: math.unit(7, "feet"),
  19470. weight: math.unit(120, "kg"),
  19471. name: "Front",
  19472. image: {
  19473. source: "./media/characters/taluthus/front.svg",
  19474. extra: 903 / 833,
  19475. bottom: 0.015
  19476. }
  19477. },
  19478. },
  19479. [
  19480. {
  19481. name: "Normal",
  19482. height: math.unit(7, "feet"),
  19483. default: true
  19484. },
  19485. {
  19486. name: "Macro",
  19487. height: math.unit(300, "feet")
  19488. },
  19489. ]
  19490. ))
  19491. characterMakers.push(() => makeCharacter(
  19492. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19493. {
  19494. front: {
  19495. height: math.unit(5 + 9 / 12, "feet"),
  19496. weight: math.unit(145, "lb"),
  19497. name: "Front",
  19498. image: {
  19499. source: "./media/characters/dawn/front.svg",
  19500. extra: 2094 / 2016,
  19501. bottom: 0.025
  19502. }
  19503. },
  19504. back: {
  19505. height: math.unit(5 + 9 / 12, "feet"),
  19506. weight: math.unit(160, "lb"),
  19507. name: "Back",
  19508. image: {
  19509. source: "./media/characters/dawn/back.svg",
  19510. extra: 2112 / 2080,
  19511. bottom: 0.005
  19512. }
  19513. },
  19514. },
  19515. [
  19516. {
  19517. name: "Normal",
  19518. height: math.unit(6 + 7 / 12, "feet"),
  19519. default: true
  19520. },
  19521. ]
  19522. ))
  19523. characterMakers.push(() => makeCharacter(
  19524. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19525. {
  19526. anthro: {
  19527. height: math.unit(8 + 3 / 12, "feet"),
  19528. weight: math.unit(450, "lb"),
  19529. name: "Anthro",
  19530. image: {
  19531. source: "./media/characters/arador/anthro.svg",
  19532. extra: 1835 / 1718,
  19533. bottom: 0.025
  19534. }
  19535. },
  19536. feral: {
  19537. height: math.unit(4, "feet"),
  19538. weight: math.unit(200, "lb"),
  19539. name: "Feral",
  19540. image: {
  19541. source: "./media/characters/arador/feral.svg",
  19542. extra: 1683 / 1514,
  19543. bottom: 0.07
  19544. }
  19545. },
  19546. },
  19547. [
  19548. {
  19549. name: "Normal",
  19550. height: math.unit(8 + 3 / 12, "feet")
  19551. },
  19552. {
  19553. name: "Macro",
  19554. height: math.unit(82.5, "feet"),
  19555. default: true
  19556. },
  19557. ]
  19558. ))
  19559. characterMakers.push(() => makeCharacter(
  19560. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19561. {
  19562. front: {
  19563. height: math.unit(5 + 10 / 12, "feet"),
  19564. weight: math.unit(125, "lb"),
  19565. name: "Front",
  19566. image: {
  19567. source: "./media/characters/dharsi/front.svg",
  19568. extra: 716 / 630,
  19569. bottom: 0.035
  19570. }
  19571. },
  19572. },
  19573. [
  19574. {
  19575. name: "Nano",
  19576. height: math.unit(100, "nm")
  19577. },
  19578. {
  19579. name: "Micro",
  19580. height: math.unit(2, "inches")
  19581. },
  19582. {
  19583. name: "Normal",
  19584. height: math.unit(5 + 10 / 12, "feet"),
  19585. default: true
  19586. },
  19587. {
  19588. name: "Macro",
  19589. height: math.unit(1000, "feet")
  19590. },
  19591. {
  19592. name: "Megamacro",
  19593. height: math.unit(10, "miles")
  19594. },
  19595. {
  19596. name: "Gigamacro",
  19597. height: math.unit(3000, "miles")
  19598. },
  19599. {
  19600. name: "Teramacro",
  19601. height: math.unit(500000, "miles")
  19602. },
  19603. {
  19604. name: "Teramacro+",
  19605. height: math.unit(30, "galaxies")
  19606. },
  19607. ]
  19608. ))
  19609. characterMakers.push(() => makeCharacter(
  19610. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19611. {
  19612. front: {
  19613. height: math.unit(6, "feet"),
  19614. weight: math.unit(150, "lb"),
  19615. name: "Front",
  19616. image: {
  19617. source: "./media/characters/deathy/front.svg",
  19618. extra: 1552 / 1463,
  19619. bottom: 0.025
  19620. }
  19621. },
  19622. side: {
  19623. height: math.unit(6, "feet"),
  19624. weight: math.unit(150, "lb"),
  19625. name: "Side",
  19626. image: {
  19627. source: "./media/characters/deathy/side.svg",
  19628. extra: 1604 / 1455,
  19629. bottom: 0.025
  19630. }
  19631. },
  19632. back: {
  19633. height: math.unit(6, "feet"),
  19634. weight: math.unit(150, "lb"),
  19635. name: "Back",
  19636. image: {
  19637. source: "./media/characters/deathy/back.svg",
  19638. extra: 1580 / 1463,
  19639. bottom: 0.005
  19640. }
  19641. },
  19642. },
  19643. [
  19644. {
  19645. name: "Micro",
  19646. height: math.unit(5, "millimeters")
  19647. },
  19648. {
  19649. name: "Normal",
  19650. height: math.unit(6 + 5 / 12, "feet"),
  19651. default: true
  19652. },
  19653. ]
  19654. ))
  19655. characterMakers.push(() => makeCharacter(
  19656. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19657. {
  19658. front: {
  19659. height: math.unit(16, "feet"),
  19660. weight: math.unit(4000, "lb"),
  19661. name: "Front",
  19662. image: {
  19663. source: "./media/characters/juniper/front.svg",
  19664. bottom: 0.04
  19665. }
  19666. },
  19667. },
  19668. [
  19669. {
  19670. name: "Normal",
  19671. height: math.unit(16, "feet"),
  19672. default: true
  19673. },
  19674. ]
  19675. ))
  19676. characterMakers.push(() => makeCharacter(
  19677. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19678. {
  19679. front: {
  19680. height: math.unit(6, "feet"),
  19681. weight: math.unit(150, "lb"),
  19682. name: "Front",
  19683. image: {
  19684. source: "./media/characters/hipster/front.svg",
  19685. extra: 1312 / 1209,
  19686. bottom: 0.025
  19687. }
  19688. },
  19689. back: {
  19690. height: math.unit(6, "feet"),
  19691. weight: math.unit(150, "lb"),
  19692. name: "Back",
  19693. image: {
  19694. source: "./media/characters/hipster/back.svg",
  19695. extra: 1281 / 1196,
  19696. bottom: 0.01
  19697. }
  19698. },
  19699. },
  19700. [
  19701. {
  19702. name: "Micro",
  19703. height: math.unit(1, "mm")
  19704. },
  19705. {
  19706. name: "Normal",
  19707. height: math.unit(4, "inches"),
  19708. default: true
  19709. },
  19710. {
  19711. name: "Macro",
  19712. height: math.unit(500, "feet")
  19713. },
  19714. {
  19715. name: "Megamacro",
  19716. height: math.unit(1000, "miles")
  19717. },
  19718. ]
  19719. ))
  19720. characterMakers.push(() => makeCharacter(
  19721. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19722. {
  19723. front: {
  19724. height: math.unit(6, "feet"),
  19725. weight: math.unit(150, "lb"),
  19726. name: "Front",
  19727. image: {
  19728. source: "./media/characters/tendirmuldr/front.svg",
  19729. extra: 1878 / 1772,
  19730. bottom: 0.015
  19731. }
  19732. },
  19733. },
  19734. [
  19735. {
  19736. name: "Megamacro",
  19737. height: math.unit(1500, "miles"),
  19738. default: true
  19739. },
  19740. ]
  19741. ))
  19742. characterMakers.push(() => makeCharacter(
  19743. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19744. {
  19745. front: {
  19746. height: math.unit(14, "feet"),
  19747. weight: math.unit(12000, "lb"),
  19748. name: "Front",
  19749. image: {
  19750. source: "./media/characters/mort/front.svg",
  19751. extra: 365 / 318,
  19752. bottom: 0.01
  19753. }
  19754. },
  19755. side: {
  19756. height: math.unit(14, "feet"),
  19757. weight: math.unit(12000, "lb"),
  19758. name: "Side",
  19759. image: {
  19760. source: "./media/characters/mort/side.svg",
  19761. extra: 365 / 318,
  19762. bottom: 0.052
  19763. },
  19764. default: true
  19765. },
  19766. back: {
  19767. height: math.unit(14, "feet"),
  19768. weight: math.unit(12000, "lb"),
  19769. name: "Back",
  19770. image: {
  19771. source: "./media/characters/mort/back.svg",
  19772. extra: 371 / 332,
  19773. bottom: 0.18
  19774. }
  19775. },
  19776. },
  19777. [
  19778. {
  19779. name: "Normal",
  19780. height: math.unit(14, "feet"),
  19781. default: true
  19782. },
  19783. ]
  19784. ))
  19785. characterMakers.push(() => makeCharacter(
  19786. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19787. {
  19788. front: {
  19789. height: math.unit(8, "feet"),
  19790. weight: math.unit(1, "ton"),
  19791. name: "Front",
  19792. image: {
  19793. source: "./media/characters/lycoa/front.svg",
  19794. extra: 1875 / 1789,
  19795. bottom: 0.022
  19796. }
  19797. },
  19798. back: {
  19799. height: math.unit(8, "feet"),
  19800. weight: math.unit(1, "ton"),
  19801. name: "Back",
  19802. image: {
  19803. source: "./media/characters/lycoa/back.svg",
  19804. extra: 1835 / 1781,
  19805. bottom: 0.03
  19806. }
  19807. },
  19808. head: {
  19809. height: math.unit(2.1, "feet"),
  19810. name: "Head",
  19811. image: {
  19812. source: "./media/characters/lycoa/head.svg"
  19813. }
  19814. },
  19815. tailmaw: {
  19816. height: math.unit(1.9, "feet"),
  19817. name: "Tailmaw",
  19818. image: {
  19819. source: "./media/characters/lycoa/tailmaw.svg"
  19820. }
  19821. },
  19822. tentacles: {
  19823. height: math.unit(2.1, "feet"),
  19824. name: "Tentacles",
  19825. image: {
  19826. source: "./media/characters/lycoa/tentacles.svg"
  19827. }
  19828. },
  19829. dick: {
  19830. height: math.unit(1.73, "feet"),
  19831. name: "Dick",
  19832. image: {
  19833. source: "./media/characters/lycoa/dick.svg"
  19834. }
  19835. },
  19836. },
  19837. [
  19838. {
  19839. name: "Normal",
  19840. height: math.unit(8, "feet"),
  19841. default: true
  19842. },
  19843. {
  19844. name: "Macro",
  19845. height: math.unit(30, "feet")
  19846. },
  19847. ]
  19848. ))
  19849. characterMakers.push(() => makeCharacter(
  19850. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19851. {
  19852. front: {
  19853. height: math.unit(4 + 2 / 12, "feet"),
  19854. weight: math.unit(70, "lb"),
  19855. name: "Front",
  19856. image: {
  19857. source: "./media/characters/naldara/front.svg",
  19858. extra: 841 / 720,
  19859. bottom: 0.04
  19860. }
  19861. },
  19862. naga: {
  19863. height: math.unit(23, "feet"),
  19864. weight: math.unit(15000, "kg"),
  19865. name: "Naga",
  19866. image: {
  19867. source: "./media/characters/naldara/naga.svg",
  19868. extra: 3290 / 2959,
  19869. bottom: 124 / 3432
  19870. }
  19871. },
  19872. },
  19873. [
  19874. {
  19875. name: "Normal",
  19876. height: math.unit(4 + 2 / 12, "feet"),
  19877. default: true
  19878. },
  19879. ]
  19880. ))
  19881. characterMakers.push(() => makeCharacter(
  19882. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19883. {
  19884. front: {
  19885. height: math.unit(13 + 7 / 12, "feet"),
  19886. weight: math.unit(1500, "lb"),
  19887. name: "Front",
  19888. image: {
  19889. source: "./media/characters/briar/front.svg",
  19890. extra: 626 / 596,
  19891. bottom: 0.08
  19892. }
  19893. },
  19894. },
  19895. [
  19896. {
  19897. name: "Normal",
  19898. height: math.unit(13 + 7 / 12, "feet"),
  19899. default: true
  19900. },
  19901. ]
  19902. ))
  19903. characterMakers.push(() => makeCharacter(
  19904. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19905. {
  19906. side: {
  19907. height: math.unit(10, "feet"),
  19908. weight: math.unit(500, "lb"),
  19909. name: "Side",
  19910. image: {
  19911. source: "./media/characters/vanguard/side.svg",
  19912. extra: 502 / 425,
  19913. bottom: 0.087
  19914. }
  19915. },
  19916. },
  19917. [
  19918. {
  19919. name: "Normal",
  19920. height: math.unit(10, "feet"),
  19921. default: true
  19922. },
  19923. ]
  19924. ))
  19925. characterMakers.push(() => makeCharacter(
  19926. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19927. {
  19928. front: {
  19929. height: math.unit(7.5, "feet"),
  19930. weight: math.unit(2, "lb"),
  19931. name: "Front",
  19932. image: {
  19933. source: "./media/characters/artemis/front.svg",
  19934. extra: 1192 / 1075,
  19935. bottom: 0.07
  19936. }
  19937. },
  19938. frontNsfw: {
  19939. height: math.unit(7.5, "feet"),
  19940. weight: math.unit(2, "lb"),
  19941. name: "Front (NSFW)",
  19942. image: {
  19943. source: "./media/characters/artemis/front-nsfw.svg",
  19944. extra: 1192 / 1075,
  19945. bottom: 0.07
  19946. }
  19947. },
  19948. frontNsfwer: {
  19949. height: math.unit(7.5, "feet"),
  19950. weight: math.unit(2, "lb"),
  19951. name: "Front (NSFW-er)",
  19952. image: {
  19953. source: "./media/characters/artemis/front-nsfwer.svg",
  19954. extra: 1192 / 1075,
  19955. bottom: 0.07
  19956. }
  19957. },
  19958. side: {
  19959. height: math.unit(7.5, "feet"),
  19960. weight: math.unit(2, "lb"),
  19961. name: "Side",
  19962. image: {
  19963. source: "./media/characters/artemis/side.svg",
  19964. extra: 1192 / 1075,
  19965. bottom: 0.07
  19966. }
  19967. },
  19968. sideNsfw: {
  19969. height: math.unit(7.5, "feet"),
  19970. weight: math.unit(2, "lb"),
  19971. name: "Side (NSFW)",
  19972. image: {
  19973. source: "./media/characters/artemis/side-nsfw.svg",
  19974. extra: 1192 / 1075,
  19975. bottom: 0.07
  19976. }
  19977. },
  19978. sideNsfwer: {
  19979. height: math.unit(7.5, "feet"),
  19980. weight: math.unit(2, "lb"),
  19981. name: "Side (NSFW-er)",
  19982. image: {
  19983. source: "./media/characters/artemis/side-nsfwer.svg",
  19984. extra: 1192 / 1075,
  19985. bottom: 0.07
  19986. }
  19987. },
  19988. maw: {
  19989. height: math.unit(1.1, "feet"),
  19990. name: "Maw",
  19991. image: {
  19992. source: "./media/characters/artemis/maw.svg"
  19993. }
  19994. },
  19995. stomach: {
  19996. height: math.unit(0.95, "feet"),
  19997. name: "Stomach",
  19998. image: {
  19999. source: "./media/characters/artemis/stomach.svg"
  20000. }
  20001. },
  20002. dickCanine: {
  20003. height: math.unit(1, "feet"),
  20004. name: "Dick (Canine)",
  20005. image: {
  20006. source: "./media/characters/artemis/dick-canine.svg"
  20007. }
  20008. },
  20009. dickEquine: {
  20010. height: math.unit(0.85, "feet"),
  20011. name: "Dick (Equine)",
  20012. image: {
  20013. source: "./media/characters/artemis/dick-equine.svg"
  20014. }
  20015. },
  20016. dickExotic: {
  20017. height: math.unit(0.85, "feet"),
  20018. name: "Dick (Exotic)",
  20019. image: {
  20020. source: "./media/characters/artemis/dick-exotic.svg"
  20021. }
  20022. },
  20023. },
  20024. [
  20025. {
  20026. name: "Normal",
  20027. height: math.unit(7.5, "feet"),
  20028. default: true
  20029. },
  20030. {
  20031. name: "Enlarged",
  20032. height: math.unit(12, "feet")
  20033. },
  20034. ]
  20035. ))
  20036. characterMakers.push(() => makeCharacter(
  20037. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20038. {
  20039. front: {
  20040. height: math.unit(5 + 3 / 12, "feet"),
  20041. weight: math.unit(160, "lb"),
  20042. name: "Front",
  20043. image: {
  20044. source: "./media/characters/kira/front.svg",
  20045. extra: 906 / 786,
  20046. bottom: 0.01
  20047. }
  20048. },
  20049. back: {
  20050. height: math.unit(5 + 3 / 12, "feet"),
  20051. weight: math.unit(160, "lb"),
  20052. name: "Back",
  20053. image: {
  20054. source: "./media/characters/kira/back.svg",
  20055. extra: 882 / 757,
  20056. bottom: 0.005
  20057. }
  20058. },
  20059. frontDressed: {
  20060. height: math.unit(5 + 3 / 12, "feet"),
  20061. weight: math.unit(160, "lb"),
  20062. name: "Front (Dressed)",
  20063. image: {
  20064. source: "./media/characters/kira/front-dressed.svg",
  20065. extra: 906 / 786,
  20066. bottom: 0.01
  20067. }
  20068. },
  20069. beans: {
  20070. height: math.unit(0.92, "feet"),
  20071. name: "Beans",
  20072. image: {
  20073. source: "./media/characters/kira/beans.svg"
  20074. }
  20075. },
  20076. },
  20077. [
  20078. {
  20079. name: "Normal",
  20080. height: math.unit(5 + 3 / 12, "feet"),
  20081. default: true
  20082. },
  20083. ]
  20084. ))
  20085. characterMakers.push(() => makeCharacter(
  20086. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20087. {
  20088. front: {
  20089. height: math.unit(5 + 4 / 12, "feet"),
  20090. weight: math.unit(145, "lb"),
  20091. name: "Front",
  20092. image: {
  20093. source: "./media/characters/scramble/front.svg",
  20094. extra: 763 / 727,
  20095. bottom: 0.05
  20096. }
  20097. },
  20098. back: {
  20099. height: math.unit(5 + 4 / 12, "feet"),
  20100. weight: math.unit(145, "lb"),
  20101. name: "Back",
  20102. image: {
  20103. source: "./media/characters/scramble/back.svg",
  20104. extra: 826 / 737,
  20105. bottom: 0.002
  20106. }
  20107. },
  20108. },
  20109. [
  20110. {
  20111. name: "Normal",
  20112. height: math.unit(5 + 4 / 12, "feet"),
  20113. default: true
  20114. },
  20115. ]
  20116. ))
  20117. characterMakers.push(() => makeCharacter(
  20118. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20119. {
  20120. side: {
  20121. height: math.unit(6 + 2 / 12, "feet"),
  20122. weight: math.unit(190, "lb"),
  20123. name: "Side",
  20124. image: {
  20125. source: "./media/characters/biscuit/side.svg",
  20126. extra: 858 / 791,
  20127. bottom: 0.044
  20128. }
  20129. },
  20130. },
  20131. [
  20132. {
  20133. name: "Normal",
  20134. height: math.unit(6 + 2 / 12, "feet"),
  20135. default: true
  20136. },
  20137. ]
  20138. ))
  20139. characterMakers.push(() => makeCharacter(
  20140. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20141. {
  20142. front: {
  20143. height: math.unit(5 + 2 / 12, "feet"),
  20144. weight: math.unit(120, "lb"),
  20145. name: "Front",
  20146. image: {
  20147. source: "./media/characters/poffin/front.svg",
  20148. extra: 786 / 680,
  20149. bottom: 0.005
  20150. }
  20151. },
  20152. },
  20153. [
  20154. {
  20155. name: "Normal",
  20156. height: math.unit(5 + 2 / 12, "feet"),
  20157. default: true
  20158. },
  20159. ]
  20160. ))
  20161. characterMakers.push(() => makeCharacter(
  20162. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20163. {
  20164. front: {
  20165. height: math.unit(6 + 3 / 12, "feet"),
  20166. weight: math.unit(519, "lb"),
  20167. name: "Front",
  20168. image: {
  20169. source: "./media/characters/dhari/front.svg",
  20170. extra: 1048 / 946,
  20171. bottom: 0.015
  20172. }
  20173. },
  20174. back: {
  20175. height: math.unit(6 + 3 / 12, "feet"),
  20176. weight: math.unit(519, "lb"),
  20177. name: "Back",
  20178. image: {
  20179. source: "./media/characters/dhari/back.svg",
  20180. extra: 1048 / 931,
  20181. bottom: 0.005
  20182. }
  20183. },
  20184. frontDressed: {
  20185. height: math.unit(6 + 3 / 12, "feet"),
  20186. weight: math.unit(519, "lb"),
  20187. name: "Front (Dressed)",
  20188. image: {
  20189. source: "./media/characters/dhari/front-dressed.svg",
  20190. extra: 1713 / 1546,
  20191. bottom: 0.02
  20192. }
  20193. },
  20194. backDressed: {
  20195. height: math.unit(6 + 3 / 12, "feet"),
  20196. weight: math.unit(519, "lb"),
  20197. name: "Back (Dressed)",
  20198. image: {
  20199. source: "./media/characters/dhari/back-dressed.svg",
  20200. extra: 1699 / 1537,
  20201. bottom: 0.01
  20202. }
  20203. },
  20204. maw: {
  20205. height: math.unit(0.95, "feet"),
  20206. name: "Maw",
  20207. image: {
  20208. source: "./media/characters/dhari/maw.svg"
  20209. }
  20210. },
  20211. wereFront: {
  20212. height: math.unit(12 + 8 / 12, "feet"),
  20213. weight: math.unit(4000, "lb"),
  20214. name: "Front (Were)",
  20215. image: {
  20216. source: "./media/characters/dhari/were-front.svg",
  20217. extra: 1065 / 969,
  20218. bottom: 0.015
  20219. }
  20220. },
  20221. wereBack: {
  20222. height: math.unit(12 + 8 / 12, "feet"),
  20223. weight: math.unit(4000, "lb"),
  20224. name: "Back (Were)",
  20225. image: {
  20226. source: "./media/characters/dhari/were-back.svg",
  20227. extra: 1065 / 969,
  20228. bottom: 0.012
  20229. }
  20230. },
  20231. wereMaw: {
  20232. height: math.unit(0.625, "meters"),
  20233. name: "Maw (Were)",
  20234. image: {
  20235. source: "./media/characters/dhari/were-maw.svg"
  20236. }
  20237. },
  20238. },
  20239. [
  20240. {
  20241. name: "Normal",
  20242. height: math.unit(6 + 3 / 12, "feet"),
  20243. default: true
  20244. },
  20245. ]
  20246. ))
  20247. characterMakers.push(() => makeCharacter(
  20248. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20249. {
  20250. anthro: {
  20251. height: math.unit(5 + 7 / 12, "feet"),
  20252. weight: math.unit(175, "lb"),
  20253. name: "Anthro",
  20254. image: {
  20255. source: "./media/characters/rena-dyne/anthro.svg",
  20256. extra: 1849 / 1785,
  20257. bottom: 0.005
  20258. }
  20259. },
  20260. taur: {
  20261. height: math.unit(15 + 6 / 12, "feet"),
  20262. weight: math.unit(8000, "lb"),
  20263. name: "Taur",
  20264. image: {
  20265. source: "./media/characters/rena-dyne/taur.svg",
  20266. extra: 2315 / 2234,
  20267. bottom: 0.033
  20268. }
  20269. },
  20270. },
  20271. [
  20272. {
  20273. name: "Normal",
  20274. height: math.unit(5 + 7 / 12, "feet"),
  20275. default: true
  20276. },
  20277. ]
  20278. ))
  20279. characterMakers.push(() => makeCharacter(
  20280. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20281. {
  20282. front: {
  20283. height: math.unit(8, "feet"),
  20284. weight: math.unit(600, "lb"),
  20285. name: "Front",
  20286. image: {
  20287. source: "./media/characters/weremeep/front.svg",
  20288. extra: 967 / 862,
  20289. bottom: 0.01
  20290. }
  20291. },
  20292. },
  20293. [
  20294. {
  20295. name: "Normal",
  20296. height: math.unit(8, "feet"),
  20297. default: true
  20298. },
  20299. {
  20300. name: "Lorg",
  20301. height: math.unit(12, "feet")
  20302. },
  20303. {
  20304. name: "Oh Lawd She Comin'",
  20305. height: math.unit(20, "feet")
  20306. },
  20307. ]
  20308. ))
  20309. characterMakers.push(() => makeCharacter(
  20310. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20311. {
  20312. front: {
  20313. height: math.unit(4, "feet"),
  20314. weight: math.unit(90, "lb"),
  20315. name: "Front",
  20316. image: {
  20317. source: "./media/characters/reza/front.svg",
  20318. extra: 1183 / 1111,
  20319. bottom: 0.017
  20320. }
  20321. },
  20322. back: {
  20323. height: math.unit(4, "feet"),
  20324. weight: math.unit(90, "lb"),
  20325. name: "Back",
  20326. image: {
  20327. source: "./media/characters/reza/back.svg",
  20328. extra: 1183 / 1111,
  20329. bottom: 0.01
  20330. }
  20331. },
  20332. drake: {
  20333. height: math.unit(30, "feet"),
  20334. weight: math.unit(246960, "lb"),
  20335. name: "Drake",
  20336. image: {
  20337. source: "./media/characters/reza/drake.svg",
  20338. extra: 2350 / 2024,
  20339. bottom: 60.7 / 2403
  20340. }
  20341. },
  20342. },
  20343. [
  20344. {
  20345. name: "Normal",
  20346. height: math.unit(4, "feet"),
  20347. default: true
  20348. },
  20349. ]
  20350. ))
  20351. characterMakers.push(() => makeCharacter(
  20352. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20353. {
  20354. side: {
  20355. height: math.unit(15, "feet"),
  20356. weight: math.unit(14, "tons"),
  20357. name: "Side",
  20358. image: {
  20359. source: "./media/characters/athea/side.svg",
  20360. extra: 960 / 540,
  20361. bottom: 0.003
  20362. }
  20363. },
  20364. sitting: {
  20365. height: math.unit(6 * 2.85, "feet"),
  20366. weight: math.unit(14, "tons"),
  20367. name: "Sitting",
  20368. image: {
  20369. source: "./media/characters/athea/sitting.svg",
  20370. extra: 621 / 581,
  20371. bottom: 0.075
  20372. }
  20373. },
  20374. maw: {
  20375. height: math.unit(7.59498031496063, "feet"),
  20376. name: "Maw",
  20377. image: {
  20378. source: "./media/characters/athea/maw.svg"
  20379. }
  20380. },
  20381. },
  20382. [
  20383. {
  20384. name: "Lap Cat",
  20385. height: math.unit(2.5, "feet")
  20386. },
  20387. {
  20388. name: "Minimacro",
  20389. height: math.unit(15, "feet"),
  20390. default: true
  20391. },
  20392. {
  20393. name: "Macro",
  20394. height: math.unit(120, "feet")
  20395. },
  20396. {
  20397. name: "Macro+",
  20398. height: math.unit(640, "feet")
  20399. },
  20400. {
  20401. name: "Colossus",
  20402. height: math.unit(2.2, "miles")
  20403. },
  20404. ]
  20405. ))
  20406. characterMakers.push(() => makeCharacter(
  20407. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20408. {
  20409. front: {
  20410. height: math.unit(8 + 8 / 12, "feet"),
  20411. weight: math.unit(130, "kg"),
  20412. name: "Front",
  20413. image: {
  20414. source: "./media/characters/seroko/front.svg",
  20415. extra: 1385 / 1280,
  20416. bottom: 0.025
  20417. }
  20418. },
  20419. back: {
  20420. height: math.unit(8 + 8 / 12, "feet"),
  20421. weight: math.unit(130, "kg"),
  20422. name: "Back",
  20423. image: {
  20424. source: "./media/characters/seroko/back.svg",
  20425. extra: 1369 / 1238,
  20426. bottom: 0.018
  20427. }
  20428. },
  20429. frontDressed: {
  20430. height: math.unit(8 + 8 / 12, "feet"),
  20431. weight: math.unit(130, "kg"),
  20432. name: "Front (Dressed)",
  20433. image: {
  20434. source: "./media/characters/seroko/front-dressed.svg",
  20435. extra: 1366 / 1275,
  20436. bottom: 0.03
  20437. }
  20438. },
  20439. },
  20440. [
  20441. {
  20442. name: "Normal",
  20443. height: math.unit(8 + 8 / 12, "feet"),
  20444. default: true
  20445. },
  20446. ]
  20447. ))
  20448. characterMakers.push(() => makeCharacter(
  20449. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20450. {
  20451. front: {
  20452. height: math.unit(5.5, "feet"),
  20453. weight: math.unit(160, "lb"),
  20454. name: "Front",
  20455. image: {
  20456. source: "./media/characters/quatzi/front.svg",
  20457. extra: 2346 / 2242,
  20458. bottom: 0.015
  20459. }
  20460. },
  20461. },
  20462. [
  20463. {
  20464. name: "Normal",
  20465. height: math.unit(5.5, "feet"),
  20466. default: true
  20467. },
  20468. {
  20469. name: "Big",
  20470. height: math.unit(7.7, "feet")
  20471. },
  20472. ]
  20473. ))
  20474. characterMakers.push(() => makeCharacter(
  20475. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20476. {
  20477. front: {
  20478. height: math.unit(5 + 11 / 12, "feet"),
  20479. weight: math.unit(180, "lb"),
  20480. name: "Front",
  20481. image: {
  20482. source: "./media/characters/sen/front.svg",
  20483. extra: 1321 / 1254,
  20484. bottom: 0.015
  20485. }
  20486. },
  20487. side: {
  20488. height: math.unit(5 + 11 / 12, "feet"),
  20489. weight: math.unit(180, "lb"),
  20490. name: "Side",
  20491. image: {
  20492. source: "./media/characters/sen/side.svg",
  20493. extra: 1321 / 1254,
  20494. bottom: 0.007
  20495. }
  20496. },
  20497. back: {
  20498. height: math.unit(5 + 11 / 12, "feet"),
  20499. weight: math.unit(180, "lb"),
  20500. name: "Back",
  20501. image: {
  20502. source: "./media/characters/sen/back.svg",
  20503. extra: 1321 / 1254
  20504. }
  20505. },
  20506. },
  20507. [
  20508. {
  20509. name: "Normal",
  20510. height: math.unit(5 + 11 / 12, "feet"),
  20511. default: true
  20512. },
  20513. ]
  20514. ))
  20515. characterMakers.push(() => makeCharacter(
  20516. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20517. {
  20518. front: {
  20519. height: math.unit(166.6, "cm"),
  20520. weight: math.unit(66.6, "kg"),
  20521. name: "Front",
  20522. image: {
  20523. source: "./media/characters/fruity/front.svg",
  20524. extra: 1510 / 1386,
  20525. bottom: 0.04
  20526. }
  20527. },
  20528. back: {
  20529. height: math.unit(166.6, "cm"),
  20530. weight: math.unit(66.6, "lb"),
  20531. name: "Back",
  20532. image: {
  20533. source: "./media/characters/fruity/back.svg",
  20534. extra: 1563 / 1435,
  20535. bottom: 0.005
  20536. }
  20537. },
  20538. },
  20539. [
  20540. {
  20541. name: "Normal",
  20542. height: math.unit(166.6, "cm"),
  20543. default: true
  20544. },
  20545. {
  20546. name: "Demonic",
  20547. height: math.unit(166.6, "feet")
  20548. },
  20549. ]
  20550. ))
  20551. characterMakers.push(() => makeCharacter(
  20552. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20553. {
  20554. side: {
  20555. height: math.unit(10, "feet"),
  20556. weight: math.unit(500, "lb"),
  20557. name: "Side",
  20558. image: {
  20559. source: "./media/characters/zost/side.svg",
  20560. extra: 966 / 880,
  20561. bottom: 0.075
  20562. }
  20563. },
  20564. mawFront: {
  20565. height: math.unit(1.08, "meters"),
  20566. name: "Maw (Front)",
  20567. image: {
  20568. source: "./media/characters/zost/maw-front.svg"
  20569. }
  20570. },
  20571. mawSide: {
  20572. height: math.unit(2.66, "feet"),
  20573. name: "Maw (Side)",
  20574. image: {
  20575. source: "./media/characters/zost/maw-side.svg"
  20576. }
  20577. },
  20578. },
  20579. [
  20580. {
  20581. name: "Normal",
  20582. height: math.unit(10, "feet"),
  20583. default: true
  20584. },
  20585. ]
  20586. ))
  20587. characterMakers.push(() => makeCharacter(
  20588. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20589. {
  20590. front: {
  20591. height: math.unit(5 + 4 / 12, "feet"),
  20592. weight: math.unit(120, "lb"),
  20593. name: "Front",
  20594. image: {
  20595. source: "./media/characters/luci/front.svg",
  20596. extra: 1985 / 1884,
  20597. bottom: 0.04
  20598. }
  20599. },
  20600. back: {
  20601. height: math.unit(5 + 4 / 12, "feet"),
  20602. weight: math.unit(120, "lb"),
  20603. name: "Back",
  20604. image: {
  20605. source: "./media/characters/luci/back.svg",
  20606. extra: 1892 / 1791,
  20607. bottom: 0.002
  20608. }
  20609. },
  20610. },
  20611. [
  20612. {
  20613. name: "Normal",
  20614. height: math.unit(5 + 4 / 12, "feet"),
  20615. default: true
  20616. },
  20617. ]
  20618. ))
  20619. characterMakers.push(() => makeCharacter(
  20620. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20621. {
  20622. front: {
  20623. height: math.unit(1500, "feet"),
  20624. weight: math.unit(3.8e6, "tons"),
  20625. name: "Front",
  20626. image: {
  20627. source: "./media/characters/2th/front.svg",
  20628. extra: 3489 / 3350,
  20629. bottom: 0.1
  20630. }
  20631. },
  20632. foot: {
  20633. height: math.unit(461, "feet"),
  20634. name: "Foot",
  20635. image: {
  20636. source: "./media/characters/2th/foot.svg"
  20637. }
  20638. },
  20639. },
  20640. [
  20641. {
  20642. name: "\"Micro\"",
  20643. height: math.unit(15 + 7 / 12, "feet")
  20644. },
  20645. {
  20646. name: "Normal",
  20647. height: math.unit(1500, "feet"),
  20648. default: true
  20649. },
  20650. {
  20651. name: "Macro",
  20652. height: math.unit(5000, "feet")
  20653. },
  20654. {
  20655. name: "Megamacro",
  20656. height: math.unit(15, "miles")
  20657. },
  20658. {
  20659. name: "Gigamacro",
  20660. height: math.unit(4000, "miles")
  20661. },
  20662. {
  20663. name: "Galactic",
  20664. height: math.unit(50, "AU")
  20665. },
  20666. ]
  20667. ))
  20668. characterMakers.push(() => makeCharacter(
  20669. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20670. {
  20671. front: {
  20672. height: math.unit(5 + 6 / 12, "feet"),
  20673. weight: math.unit(220, "lb"),
  20674. name: "Front",
  20675. image: {
  20676. source: "./media/characters/amethyst/front.svg",
  20677. extra: 2078 / 2040,
  20678. bottom: 0.045
  20679. }
  20680. },
  20681. back: {
  20682. height: math.unit(5 + 6 / 12, "feet"),
  20683. weight: math.unit(220, "lb"),
  20684. name: "Back",
  20685. image: {
  20686. source: "./media/characters/amethyst/back.svg",
  20687. extra: 2021 / 1989,
  20688. bottom: 0.02
  20689. }
  20690. },
  20691. },
  20692. [
  20693. {
  20694. name: "Normal",
  20695. height: math.unit(5 + 6 / 12, "feet"),
  20696. default: true
  20697. },
  20698. ]
  20699. ))
  20700. characterMakers.push(() => makeCharacter(
  20701. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20702. {
  20703. front: {
  20704. height: math.unit(4 + 11 / 12, "feet"),
  20705. weight: math.unit(120, "lb"),
  20706. name: "Front",
  20707. image: {
  20708. source: "./media/characters/yumi-akiyama/front.svg",
  20709. extra: 1327 / 1235,
  20710. bottom: 0.02
  20711. }
  20712. },
  20713. back: {
  20714. height: math.unit(4 + 11 / 12, "feet"),
  20715. weight: math.unit(120, "lb"),
  20716. name: "Back",
  20717. image: {
  20718. source: "./media/characters/yumi-akiyama/back.svg",
  20719. extra: 1287 / 1245,
  20720. bottom: 0.002
  20721. }
  20722. },
  20723. },
  20724. [
  20725. {
  20726. name: "Galactic",
  20727. height: math.unit(50, "galaxies"),
  20728. default: true
  20729. },
  20730. {
  20731. name: "Universal",
  20732. height: math.unit(100, "universes")
  20733. },
  20734. ]
  20735. ))
  20736. characterMakers.push(() => makeCharacter(
  20737. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20738. {
  20739. front: {
  20740. height: math.unit(8, "feet"),
  20741. weight: math.unit(500, "lb"),
  20742. name: "Front",
  20743. image: {
  20744. source: "./media/characters/rifter-yrmori/front.svg",
  20745. extra: 1180 / 1125,
  20746. bottom: 0.02
  20747. }
  20748. },
  20749. back: {
  20750. height: math.unit(8, "feet"),
  20751. weight: math.unit(500, "lb"),
  20752. name: "Back",
  20753. image: {
  20754. source: "./media/characters/rifter-yrmori/back.svg",
  20755. extra: 1190 / 1145,
  20756. bottom: 0.001
  20757. }
  20758. },
  20759. wings: {
  20760. height: math.unit(7.75, "feet"),
  20761. weight: math.unit(500, "lb"),
  20762. name: "Wings",
  20763. image: {
  20764. source: "./media/characters/rifter-yrmori/wings.svg",
  20765. extra: 1357 / 1285
  20766. }
  20767. },
  20768. maw: {
  20769. height: math.unit(0.8, "feet"),
  20770. name: "Maw",
  20771. image: {
  20772. source: "./media/characters/rifter-yrmori/maw.svg"
  20773. }
  20774. },
  20775. mawfront: {
  20776. height: math.unit(1.45, "feet"),
  20777. name: "Maw (Front)",
  20778. image: {
  20779. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20780. }
  20781. },
  20782. },
  20783. [
  20784. {
  20785. name: "Normal",
  20786. height: math.unit(8, "feet"),
  20787. default: true
  20788. },
  20789. {
  20790. name: "Macro",
  20791. height: math.unit(42, "meters")
  20792. },
  20793. ]
  20794. ))
  20795. characterMakers.push(() => makeCharacter(
  20796. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20797. {
  20798. were: {
  20799. height: math.unit(25 + 6 / 12, "feet"),
  20800. weight: math.unit(10000, "lb"),
  20801. name: "Were",
  20802. image: {
  20803. source: "./media/characters/tahajin/were.svg",
  20804. extra: 801 / 770,
  20805. bottom: 0.042
  20806. }
  20807. },
  20808. aquatic: {
  20809. height: math.unit(6 + 4 / 12, "feet"),
  20810. weight: math.unit(160, "lb"),
  20811. name: "Aquatic",
  20812. image: {
  20813. source: "./media/characters/tahajin/aquatic.svg",
  20814. extra: 572 / 542,
  20815. bottom: 0.04
  20816. }
  20817. },
  20818. chow: {
  20819. height: math.unit(8 + 11 / 12, "feet"),
  20820. weight: math.unit(450, "lb"),
  20821. name: "Chow",
  20822. image: {
  20823. source: "./media/characters/tahajin/chow.svg",
  20824. extra: 660 / 640,
  20825. bottom: 0.015
  20826. }
  20827. },
  20828. demiNaga: {
  20829. height: math.unit(6 + 8 / 12, "feet"),
  20830. weight: math.unit(300, "lb"),
  20831. name: "Demi Naga",
  20832. image: {
  20833. source: "./media/characters/tahajin/demi-naga.svg",
  20834. extra: 643 / 615,
  20835. bottom: 0.1
  20836. }
  20837. },
  20838. data: {
  20839. height: math.unit(5, "inches"),
  20840. weight: math.unit(0.1, "lb"),
  20841. name: "Data",
  20842. image: {
  20843. source: "./media/characters/tahajin/data.svg"
  20844. }
  20845. },
  20846. fluu: {
  20847. height: math.unit(5 + 7 / 12, "feet"),
  20848. weight: math.unit(140, "lb"),
  20849. name: "Fluu",
  20850. image: {
  20851. source: "./media/characters/tahajin/fluu.svg",
  20852. extra: 628 / 592,
  20853. bottom: 0.02
  20854. }
  20855. },
  20856. starWarrior: {
  20857. height: math.unit(4 + 5 / 12, "feet"),
  20858. weight: math.unit(50, "lb"),
  20859. name: "Star Warrior",
  20860. image: {
  20861. source: "./media/characters/tahajin/star-warrior.svg"
  20862. }
  20863. },
  20864. },
  20865. [
  20866. {
  20867. name: "Normal",
  20868. height: math.unit(25 + 6 / 12, "feet"),
  20869. default: true
  20870. },
  20871. ]
  20872. ))
  20873. characterMakers.push(() => makeCharacter(
  20874. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20875. {
  20876. front: {
  20877. height: math.unit(8, "feet"),
  20878. weight: math.unit(350, "lb"),
  20879. name: "Front",
  20880. image: {
  20881. source: "./media/characters/gabira/front.svg",
  20882. extra: 608 / 580,
  20883. bottom: 0.03
  20884. }
  20885. },
  20886. back: {
  20887. height: math.unit(8, "feet"),
  20888. weight: math.unit(350, "lb"),
  20889. name: "Back",
  20890. image: {
  20891. source: "./media/characters/gabira/back.svg",
  20892. extra: 608 / 580,
  20893. bottom: 0.03
  20894. }
  20895. },
  20896. },
  20897. [
  20898. {
  20899. name: "Normal",
  20900. height: math.unit(8, "feet"),
  20901. default: true
  20902. },
  20903. ]
  20904. ))
  20905. characterMakers.push(() => makeCharacter(
  20906. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20907. {
  20908. front: {
  20909. height: math.unit(5 + 3 / 12, "feet"),
  20910. weight: math.unit(137, "lb"),
  20911. name: "Front",
  20912. image: {
  20913. source: "./media/characters/sasha-katraine/front.svg",
  20914. bottom: 0.045
  20915. }
  20916. },
  20917. },
  20918. [
  20919. {
  20920. name: "Micro",
  20921. height: math.unit(5, "inches")
  20922. },
  20923. {
  20924. name: "Normal",
  20925. height: math.unit(5 + 3 / 12, "feet"),
  20926. default: true
  20927. },
  20928. ]
  20929. ))
  20930. characterMakers.push(() => makeCharacter(
  20931. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20932. {
  20933. side: {
  20934. height: math.unit(4, "inches"),
  20935. weight: math.unit(200, "grams"),
  20936. name: "Side",
  20937. image: {
  20938. source: "./media/characters/der/side.svg",
  20939. extra: 719 / 400,
  20940. bottom: 30.6 / 749.9187
  20941. }
  20942. },
  20943. },
  20944. [
  20945. {
  20946. name: "Micro",
  20947. height: math.unit(4, "inches"),
  20948. default: true
  20949. },
  20950. ]
  20951. ))
  20952. characterMakers.push(() => makeCharacter(
  20953. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20954. {
  20955. side: {
  20956. height: math.unit(30, "meters"),
  20957. weight: math.unit(700, "tonnes"),
  20958. name: "Side",
  20959. image: {
  20960. source: "./media/characters/fixerdragon/side.svg",
  20961. extra: (1293.0514 - 116.03) / 1106.86,
  20962. bottom: 116.03 / 1293.0514
  20963. }
  20964. },
  20965. },
  20966. [
  20967. {
  20968. name: "Planck",
  20969. height: math.unit(1.6e-35, "meters")
  20970. },
  20971. {
  20972. name: "Micro",
  20973. height: math.unit(0.4, "meters")
  20974. },
  20975. {
  20976. name: "Normal",
  20977. height: math.unit(30, "meters"),
  20978. default: true
  20979. },
  20980. {
  20981. name: "Megamacro",
  20982. height: math.unit(1.2, "megameters")
  20983. },
  20984. {
  20985. name: "Teramacro",
  20986. height: math.unit(130, "terameters")
  20987. },
  20988. {
  20989. name: "Yottamacro",
  20990. height: math.unit(6200, "yottameters")
  20991. },
  20992. ]
  20993. ));
  20994. characterMakers.push(() => makeCharacter(
  20995. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20996. {
  20997. front: {
  20998. height: math.unit(8, "feet"),
  20999. weight: math.unit(250, "lb"),
  21000. name: "Front",
  21001. image: {
  21002. source: "./media/characters/kite/front.svg",
  21003. extra: 2796 / 2659,
  21004. bottom: 0.002
  21005. }
  21006. },
  21007. },
  21008. [
  21009. {
  21010. name: "Normal",
  21011. height: math.unit(8, "feet"),
  21012. default: true
  21013. },
  21014. {
  21015. name: "Macro",
  21016. height: math.unit(360, "feet")
  21017. },
  21018. {
  21019. name: "Megamacro",
  21020. height: math.unit(1500, "feet")
  21021. },
  21022. ]
  21023. ))
  21024. characterMakers.push(() => makeCharacter(
  21025. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21026. {
  21027. front: {
  21028. height: math.unit(5 + 10 / 12, "feet"),
  21029. weight: math.unit(150, "lb"),
  21030. name: "Front",
  21031. image: {
  21032. source: "./media/characters/poojawa-vynar/front.svg",
  21033. extra: (1506.1547 - 55) / 1356.6,
  21034. bottom: 55 / 1506.1547
  21035. }
  21036. },
  21037. frontTailless: {
  21038. height: math.unit(5 + 10 / 12, "feet"),
  21039. weight: math.unit(150, "lb"),
  21040. name: "Front (Tailless)",
  21041. image: {
  21042. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21043. extra: (1506.1547 - 55) / 1356.6,
  21044. bottom: 55 / 1506.1547
  21045. }
  21046. },
  21047. },
  21048. [
  21049. {
  21050. name: "Normal",
  21051. height: math.unit(5 + 10 / 12, "feet"),
  21052. default: true
  21053. },
  21054. ]
  21055. ))
  21056. characterMakers.push(() => makeCharacter(
  21057. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21058. {
  21059. front: {
  21060. height: math.unit(293, "meters"),
  21061. weight: math.unit(70400, "tons"),
  21062. name: "Front",
  21063. image: {
  21064. source: "./media/characters/violette/front.svg",
  21065. extra: 1227 / 1180,
  21066. bottom: 0.005
  21067. }
  21068. },
  21069. back: {
  21070. height: math.unit(293, "meters"),
  21071. weight: math.unit(70400, "tons"),
  21072. name: "Back",
  21073. image: {
  21074. source: "./media/characters/violette/back.svg",
  21075. extra: 1227 / 1180,
  21076. bottom: 0.005
  21077. }
  21078. },
  21079. },
  21080. [
  21081. {
  21082. name: "Macro",
  21083. height: math.unit(293, "meters"),
  21084. default: true
  21085. },
  21086. ]
  21087. ))
  21088. characterMakers.push(() => makeCharacter(
  21089. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21090. {
  21091. front: {
  21092. height: math.unit(1050, "feet"),
  21093. weight: math.unit(200000, "tons"),
  21094. name: "Front",
  21095. image: {
  21096. source: "./media/characters/alessandra/front.svg",
  21097. extra: 960 / 912,
  21098. bottom: 0.06
  21099. }
  21100. },
  21101. },
  21102. [
  21103. {
  21104. name: "Macro",
  21105. height: math.unit(1050, "feet")
  21106. },
  21107. {
  21108. name: "Macro+",
  21109. height: math.unit(900, "meters"),
  21110. default: true
  21111. },
  21112. ]
  21113. ))
  21114. characterMakers.push(() => makeCharacter(
  21115. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21116. {
  21117. front: {
  21118. height: math.unit(5, "feet"),
  21119. weight: math.unit(187, "lb"),
  21120. name: "Front",
  21121. image: {
  21122. source: "./media/characters/person/front.svg",
  21123. extra: 3087 / 2945,
  21124. bottom: 91 / 3181
  21125. }
  21126. },
  21127. },
  21128. [
  21129. {
  21130. name: "Micro",
  21131. height: math.unit(3, "inches")
  21132. },
  21133. {
  21134. name: "Normal",
  21135. height: math.unit(5, "feet"),
  21136. default: true
  21137. },
  21138. {
  21139. name: "Macro",
  21140. height: math.unit(90, "feet")
  21141. },
  21142. {
  21143. name: "Max Size",
  21144. height: math.unit(280, "feet")
  21145. },
  21146. ]
  21147. ))
  21148. characterMakers.push(() => makeCharacter(
  21149. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21150. {
  21151. front: {
  21152. height: math.unit(4.5, "meters"),
  21153. weight: math.unit(3200, "lb"),
  21154. name: "Front",
  21155. image: {
  21156. source: "./media/characters/ty/front.svg",
  21157. extra: 1038 / 960,
  21158. bottom: 31.156 / 1068
  21159. }
  21160. },
  21161. back: {
  21162. height: math.unit(4.5, "meters"),
  21163. weight: math.unit(3200, "lb"),
  21164. name: "Back",
  21165. image: {
  21166. source: "./media/characters/ty/back.svg",
  21167. extra: 1044 / 966,
  21168. bottom: 7.48 / 1049
  21169. }
  21170. },
  21171. },
  21172. [
  21173. {
  21174. name: "Normal",
  21175. height: math.unit(4.5, "meters"),
  21176. default: true
  21177. },
  21178. ]
  21179. ))
  21180. characterMakers.push(() => makeCharacter(
  21181. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21182. {
  21183. front: {
  21184. height: math.unit(5 + 4 / 12, "feet"),
  21185. weight: math.unit(115, "lb"),
  21186. name: "Front",
  21187. image: {
  21188. source: "./media/characters/rocky/front.svg",
  21189. extra: 1012 / 975,
  21190. bottom: 54 / 1066
  21191. }
  21192. },
  21193. },
  21194. [
  21195. {
  21196. name: "Normal",
  21197. height: math.unit(5 + 4 / 12, "feet"),
  21198. default: true
  21199. },
  21200. ]
  21201. ))
  21202. characterMakers.push(() => makeCharacter(
  21203. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21204. {
  21205. upright: {
  21206. height: math.unit(6, "meters"),
  21207. weight: math.unit(4000, "kg"),
  21208. name: "Upright",
  21209. image: {
  21210. source: "./media/characters/ruin/upright.svg",
  21211. extra: 668 / 661,
  21212. bottom: 42 / 799.8396
  21213. }
  21214. },
  21215. },
  21216. [
  21217. {
  21218. name: "Normal",
  21219. height: math.unit(6, "meters"),
  21220. default: true
  21221. },
  21222. ]
  21223. ))
  21224. characterMakers.push(() => makeCharacter(
  21225. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21226. {
  21227. front: {
  21228. height: math.unit(5, "feet"),
  21229. weight: math.unit(106, "lb"),
  21230. name: "Front",
  21231. image: {
  21232. source: "./media/characters/robin/front.svg",
  21233. extra: 862 / 799,
  21234. bottom: 42.4 / 914.8856
  21235. }
  21236. },
  21237. },
  21238. [
  21239. {
  21240. name: "Normal",
  21241. height: math.unit(5, "feet"),
  21242. default: true
  21243. },
  21244. ]
  21245. ))
  21246. characterMakers.push(() => makeCharacter(
  21247. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21248. {
  21249. side: {
  21250. height: math.unit(3, "feet"),
  21251. weight: math.unit(225, "lb"),
  21252. name: "Side",
  21253. image: {
  21254. source: "./media/characters/saian/side.svg",
  21255. extra: 566 / 356,
  21256. bottom: 79.7 / 643
  21257. }
  21258. },
  21259. maw: {
  21260. height: math.unit(2.85, "feet"),
  21261. name: "Maw",
  21262. image: {
  21263. source: "./media/characters/saian/maw.svg"
  21264. }
  21265. },
  21266. },
  21267. [
  21268. {
  21269. name: "Normal",
  21270. height: math.unit(3, "feet"),
  21271. default: true
  21272. },
  21273. ]
  21274. ))
  21275. characterMakers.push(() => makeCharacter(
  21276. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21277. {
  21278. side: {
  21279. height: math.unit(8, "feet"),
  21280. weight: math.unit(300, "lb"),
  21281. name: "Side",
  21282. image: {
  21283. source: "./media/characters/equus-silvermane/side.svg",
  21284. extra: 2176 / 2050,
  21285. bottom: 65.7 / 2245
  21286. }
  21287. },
  21288. front: {
  21289. height: math.unit(8, "feet"),
  21290. weight: math.unit(300, "lb"),
  21291. name: "Front",
  21292. image: {
  21293. source: "./media/characters/equus-silvermane/front.svg",
  21294. extra: 4633 / 4400,
  21295. bottom: 71.3 / 4706.915
  21296. }
  21297. },
  21298. sideStepping: {
  21299. height: math.unit(8, "feet"),
  21300. weight: math.unit(300, "lb"),
  21301. name: "Side (Stepping)",
  21302. image: {
  21303. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21304. extra: 1968 / 1860,
  21305. bottom: 16.4 / 1989
  21306. }
  21307. },
  21308. },
  21309. [
  21310. {
  21311. name: "Normal",
  21312. height: math.unit(8, "feet")
  21313. },
  21314. {
  21315. name: "Minimacro",
  21316. height: math.unit(75, "feet"),
  21317. default: true
  21318. },
  21319. {
  21320. name: "Macro",
  21321. height: math.unit(150, "feet")
  21322. },
  21323. {
  21324. name: "Macro+",
  21325. height: math.unit(1000, "feet")
  21326. },
  21327. {
  21328. name: "Megamacro",
  21329. height: math.unit(1, "mile")
  21330. },
  21331. ]
  21332. ))
  21333. characterMakers.push(() => makeCharacter(
  21334. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21335. {
  21336. side: {
  21337. height: math.unit(20, "feet"),
  21338. weight: math.unit(30000, "kg"),
  21339. name: "Side",
  21340. image: {
  21341. source: "./media/characters/windar/side.svg",
  21342. extra: 1491 / 1248,
  21343. bottom: 82.56 / 1568
  21344. }
  21345. },
  21346. },
  21347. [
  21348. {
  21349. name: "Normal",
  21350. height: math.unit(20, "feet"),
  21351. default: true
  21352. },
  21353. ]
  21354. ))
  21355. characterMakers.push(() => makeCharacter(
  21356. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21357. {
  21358. side: {
  21359. height: math.unit(15.66, "feet"),
  21360. weight: math.unit(150, "lb"),
  21361. name: "Side",
  21362. image: {
  21363. source: "./media/characters/melody/side.svg",
  21364. extra: 1097 / 944,
  21365. bottom: 11.8 / 1109
  21366. }
  21367. },
  21368. sideOutfit: {
  21369. height: math.unit(15.66, "feet"),
  21370. weight: math.unit(150, "lb"),
  21371. name: "Side (Outfit)",
  21372. image: {
  21373. source: "./media/characters/melody/side-outfit.svg",
  21374. extra: 1097 / 944,
  21375. bottom: 11.8 / 1109
  21376. }
  21377. },
  21378. },
  21379. [
  21380. {
  21381. name: "Normal",
  21382. height: math.unit(15.66, "feet"),
  21383. default: true
  21384. },
  21385. ]
  21386. ))
  21387. characterMakers.push(() => makeCharacter(
  21388. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21389. {
  21390. front: {
  21391. height: math.unit(8, "feet"),
  21392. weight: math.unit(325, "lb"),
  21393. name: "Front",
  21394. image: {
  21395. source: "./media/characters/windera/front.svg",
  21396. extra: 3180 / 2845,
  21397. bottom: 178 / 3365
  21398. }
  21399. },
  21400. },
  21401. [
  21402. {
  21403. name: "Normal",
  21404. height: math.unit(8, "feet"),
  21405. default: true
  21406. },
  21407. ]
  21408. ))
  21409. characterMakers.push(() => makeCharacter(
  21410. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21411. {
  21412. front: {
  21413. height: math.unit(28.75, "feet"),
  21414. weight: math.unit(2000, "kg"),
  21415. name: "Front",
  21416. image: {
  21417. source: "./media/characters/sonear/front.svg",
  21418. extra: 1041.1 / 964.9,
  21419. bottom: 53.7 / 1096.6
  21420. }
  21421. },
  21422. },
  21423. [
  21424. {
  21425. name: "Normal",
  21426. height: math.unit(28.75, "feet"),
  21427. default: true
  21428. },
  21429. ]
  21430. ))
  21431. characterMakers.push(() => makeCharacter(
  21432. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21433. {
  21434. side: {
  21435. height: math.unit(25.5, "feet"),
  21436. weight: math.unit(23000, "kg"),
  21437. name: "Side",
  21438. image: {
  21439. source: "./media/characters/kanara/side.svg"
  21440. }
  21441. },
  21442. },
  21443. [
  21444. {
  21445. name: "Normal",
  21446. height: math.unit(25.5, "feet"),
  21447. default: true
  21448. },
  21449. ]
  21450. ))
  21451. characterMakers.push(() => makeCharacter(
  21452. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21453. {
  21454. side: {
  21455. height: math.unit(10, "feet"),
  21456. weight: math.unit(1000, "kg"),
  21457. name: "Side",
  21458. image: {
  21459. source: "./media/characters/ereus/side.svg",
  21460. extra: 1157 / 959,
  21461. bottom: 153 / 1312.5
  21462. }
  21463. },
  21464. },
  21465. [
  21466. {
  21467. name: "Normal",
  21468. height: math.unit(10, "feet"),
  21469. default: true
  21470. },
  21471. ]
  21472. ))
  21473. characterMakers.push(() => makeCharacter(
  21474. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21475. {
  21476. side: {
  21477. height: math.unit(4.5, "feet"),
  21478. weight: math.unit(500, "lb"),
  21479. name: "Side",
  21480. image: {
  21481. source: "./media/characters/e-ter/side.svg",
  21482. extra: 1550 / 1248,
  21483. bottom: 146 / 1694
  21484. }
  21485. },
  21486. },
  21487. [
  21488. {
  21489. name: "Normal",
  21490. height: math.unit(4.5, "feet"),
  21491. default: true
  21492. },
  21493. ]
  21494. ))
  21495. characterMakers.push(() => makeCharacter(
  21496. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21497. {
  21498. side: {
  21499. height: math.unit(9.7, "feet"),
  21500. weight: math.unit(4000, "kg"),
  21501. name: "Side",
  21502. image: {
  21503. source: "./media/characters/yamie/side.svg"
  21504. }
  21505. },
  21506. },
  21507. [
  21508. {
  21509. name: "Normal",
  21510. height: math.unit(9.7, "feet"),
  21511. default: true
  21512. },
  21513. ]
  21514. ))
  21515. characterMakers.push(() => makeCharacter(
  21516. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21517. {
  21518. front: {
  21519. height: math.unit(50, "feet"),
  21520. weight: math.unit(50000, "kg"),
  21521. name: "Front",
  21522. image: {
  21523. source: "./media/characters/anders/front.svg",
  21524. extra: 570 / 539,
  21525. bottom: 14.7 / 586.7
  21526. }
  21527. },
  21528. },
  21529. [
  21530. {
  21531. name: "Large",
  21532. height: math.unit(50, "feet")
  21533. },
  21534. {
  21535. name: "Macro",
  21536. height: math.unit(2000, "feet"),
  21537. default: true
  21538. },
  21539. {
  21540. name: "Megamacro",
  21541. height: math.unit(12, "miles")
  21542. },
  21543. ]
  21544. ))
  21545. characterMakers.push(() => makeCharacter(
  21546. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21547. {
  21548. front: {
  21549. height: math.unit(7 + 2 / 12, "feet"),
  21550. weight: math.unit(300, "lb"),
  21551. name: "Front",
  21552. image: {
  21553. source: "./media/characters/reban/front.svg",
  21554. extra: 516 / 487,
  21555. bottom: 42.82 / 558.356
  21556. }
  21557. },
  21558. dick: {
  21559. height: math.unit(7 / 5, "feet"),
  21560. name: "Dick",
  21561. image: {
  21562. source: "./media/characters/reban/dick.svg"
  21563. }
  21564. },
  21565. },
  21566. [
  21567. {
  21568. name: "Natural Height",
  21569. height: math.unit(7 + 2 / 12, "feet")
  21570. },
  21571. {
  21572. name: "Macro",
  21573. height: math.unit(500, "feet"),
  21574. default: true
  21575. },
  21576. {
  21577. name: "Canon Height",
  21578. height: math.unit(50, "AU")
  21579. },
  21580. ]
  21581. ))
  21582. characterMakers.push(() => makeCharacter(
  21583. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21584. {
  21585. front: {
  21586. height: math.unit(6, "feet"),
  21587. weight: math.unit(150, "lb"),
  21588. name: "Front",
  21589. image: {
  21590. source: "./media/characters/terrance-keayes/front.svg",
  21591. extra: 1.005,
  21592. bottom: 151 / 1615
  21593. }
  21594. },
  21595. side: {
  21596. height: math.unit(6, "feet"),
  21597. weight: math.unit(150, "lb"),
  21598. name: "Side",
  21599. image: {
  21600. source: "./media/characters/terrance-keayes/side.svg",
  21601. extra: 1.005,
  21602. bottom: 129.4 / 1544
  21603. }
  21604. },
  21605. back: {
  21606. height: math.unit(6, "feet"),
  21607. weight: math.unit(150, "lb"),
  21608. name: "Back",
  21609. image: {
  21610. source: "./media/characters/terrance-keayes/back.svg",
  21611. extra: 1.005,
  21612. bottom: 58.4 / 1557.3
  21613. }
  21614. },
  21615. dick: {
  21616. height: math.unit(6 * 0.208, "feet"),
  21617. name: "Dick",
  21618. image: {
  21619. source: "./media/characters/terrance-keayes/dick.svg"
  21620. }
  21621. },
  21622. },
  21623. [
  21624. {
  21625. name: "Canon Height",
  21626. height: math.unit(35, "miles"),
  21627. default: true
  21628. },
  21629. ]
  21630. ))
  21631. characterMakers.push(() => makeCharacter(
  21632. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21633. {
  21634. front: {
  21635. height: math.unit(6, "feet"),
  21636. weight: math.unit(150, "lb"),
  21637. name: "Front",
  21638. image: {
  21639. source: "./media/characters/ofelia/front.svg",
  21640. extra: 546 / 541,
  21641. bottom: 39 / 583
  21642. }
  21643. },
  21644. back: {
  21645. height: math.unit(6, "feet"),
  21646. weight: math.unit(150, "lb"),
  21647. name: "Back",
  21648. image: {
  21649. source: "./media/characters/ofelia/back.svg",
  21650. extra: 564 / 559.5,
  21651. bottom: 8.69 / 573.02
  21652. }
  21653. },
  21654. maw: {
  21655. height: math.unit(1, "feet"),
  21656. name: "Maw",
  21657. image: {
  21658. source: "./media/characters/ofelia/maw.svg"
  21659. }
  21660. },
  21661. foot: {
  21662. height: math.unit(1.949, "feet"),
  21663. name: "Foot",
  21664. image: {
  21665. source: "./media/characters/ofelia/foot.svg"
  21666. }
  21667. },
  21668. },
  21669. [
  21670. {
  21671. name: "Canon Height",
  21672. height: math.unit(2000, "miles"),
  21673. default: true
  21674. },
  21675. ]
  21676. ))
  21677. characterMakers.push(() => makeCharacter(
  21678. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21679. {
  21680. front: {
  21681. height: math.unit(6, "feet"),
  21682. weight: math.unit(150, "lb"),
  21683. name: "Front",
  21684. image: {
  21685. source: "./media/characters/samuel/front.svg",
  21686. extra: 265 / 258,
  21687. bottom: 2 / 266.1566
  21688. }
  21689. },
  21690. },
  21691. [
  21692. {
  21693. name: "Macro",
  21694. height: math.unit(100, "feet"),
  21695. default: true
  21696. },
  21697. {
  21698. name: "Full Size",
  21699. height: math.unit(1000, "miles")
  21700. },
  21701. ]
  21702. ))
  21703. characterMakers.push(() => makeCharacter(
  21704. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21705. {
  21706. front: {
  21707. height: math.unit(6, "feet"),
  21708. weight: math.unit(300, "lb"),
  21709. name: "Front",
  21710. image: {
  21711. source: "./media/characters/beishir-kiel/front.svg",
  21712. extra: 569 / 547,
  21713. bottom: 41.9 / 609
  21714. }
  21715. },
  21716. maw: {
  21717. height: math.unit(6 * 0.202, "feet"),
  21718. name: "Maw",
  21719. image: {
  21720. source: "./media/characters/beishir-kiel/maw.svg"
  21721. }
  21722. },
  21723. },
  21724. [
  21725. {
  21726. name: "Macro",
  21727. height: math.unit(300, "feet"),
  21728. default: true
  21729. },
  21730. ]
  21731. ))
  21732. characterMakers.push(() => makeCharacter(
  21733. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21734. {
  21735. front: {
  21736. height: math.unit(5 + 8 / 12, "feet"),
  21737. weight: math.unit(120, "lb"),
  21738. name: "Front",
  21739. image: {
  21740. source: "./media/characters/logan-grey/front.svg",
  21741. extra: 2539 / 2393,
  21742. bottom: 97.6 / 2636.37
  21743. }
  21744. },
  21745. frontAlt: {
  21746. height: math.unit(5 + 8 / 12, "feet"),
  21747. weight: math.unit(120, "lb"),
  21748. name: "Front (Alt)",
  21749. image: {
  21750. source: "./media/characters/logan-grey/front-alt.svg",
  21751. extra: 958 / 893,
  21752. bottom: 15 / 970.768
  21753. }
  21754. },
  21755. back: {
  21756. height: math.unit(5 + 8 / 12, "feet"),
  21757. weight: math.unit(120, "lb"),
  21758. name: "Back",
  21759. image: {
  21760. source: "./media/characters/logan-grey/back.svg",
  21761. extra: 958 / 893,
  21762. bottom: 2.1881 / 970.9788
  21763. }
  21764. },
  21765. dick: {
  21766. height: math.unit(1.437, "feet"),
  21767. name: "Dick",
  21768. image: {
  21769. source: "./media/characters/logan-grey/dick.svg"
  21770. }
  21771. },
  21772. },
  21773. [
  21774. {
  21775. name: "Normal",
  21776. height: math.unit(5 + 8 / 12, "feet")
  21777. },
  21778. {
  21779. name: "The 500 Foot Femboy",
  21780. height: math.unit(500, "feet"),
  21781. default: true
  21782. },
  21783. {
  21784. name: "Megmacro",
  21785. height: math.unit(20, "miles")
  21786. },
  21787. ]
  21788. ))
  21789. characterMakers.push(() => makeCharacter(
  21790. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21791. {
  21792. front: {
  21793. height: math.unit(8 + 2 / 12, "feet"),
  21794. weight: math.unit(275, "lb"),
  21795. name: "Front",
  21796. image: {
  21797. source: "./media/characters/draganta/front.svg",
  21798. extra: 1177 / 1135,
  21799. bottom: 33.46 / 1212.1
  21800. }
  21801. },
  21802. },
  21803. [
  21804. {
  21805. name: "Normal",
  21806. height: math.unit(8 + 6 / 12, "feet"),
  21807. default: true
  21808. },
  21809. {
  21810. name: "Macro",
  21811. height: math.unit(150, "feet")
  21812. },
  21813. {
  21814. name: "Megamacro",
  21815. height: math.unit(1000, "miles")
  21816. },
  21817. ]
  21818. ))
  21819. characterMakers.push(() => makeCharacter(
  21820. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21821. {
  21822. front: {
  21823. height: math.unit(1.72, "m"),
  21824. weight: math.unit(80, "lb"),
  21825. name: "Front",
  21826. image: {
  21827. source: "./media/characters/voski/front.svg",
  21828. extra: 2076.22 / 2022.4,
  21829. bottom: 102.7 / 2177.3866
  21830. }
  21831. },
  21832. frontNsfw: {
  21833. height: math.unit(1.72, "m"),
  21834. weight: math.unit(80, "lb"),
  21835. name: "Front (NSFW)",
  21836. image: {
  21837. source: "./media/characters/voski/front-nsfw.svg",
  21838. extra: 2076.22 / 2022.4,
  21839. bottom: 102.7 / 2177.3866
  21840. }
  21841. },
  21842. back: {
  21843. height: math.unit(1.72, "m"),
  21844. weight: math.unit(80, "lb"),
  21845. name: "Back",
  21846. image: {
  21847. source: "./media/characters/voski/back.svg",
  21848. extra: 2104 / 2051,
  21849. bottom: 10.45 / 2113.63
  21850. }
  21851. },
  21852. },
  21853. [
  21854. {
  21855. name: "Normal",
  21856. height: math.unit(1.72, "m")
  21857. },
  21858. {
  21859. name: "Macro",
  21860. height: math.unit(55, "m"),
  21861. default: true
  21862. },
  21863. {
  21864. name: "Macro+",
  21865. height: math.unit(300, "m")
  21866. },
  21867. {
  21868. name: "Macro++",
  21869. height: math.unit(700, "m")
  21870. },
  21871. {
  21872. name: "Macro+++",
  21873. height: math.unit(4500, "m")
  21874. },
  21875. {
  21876. name: "Macro++++",
  21877. height: math.unit(45, "km")
  21878. },
  21879. {
  21880. name: "Macro+++++",
  21881. height: math.unit(1220, "km")
  21882. },
  21883. ]
  21884. ))
  21885. characterMakers.push(() => makeCharacter(
  21886. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21887. {
  21888. front: {
  21889. height: math.unit(2.3, "m"),
  21890. weight: math.unit(304, "kg"),
  21891. name: "Front",
  21892. image: {
  21893. source: "./media/characters/icowom-lee/front.svg",
  21894. extra: 985 / 955,
  21895. bottom: 25.4 / 1012
  21896. }
  21897. },
  21898. fronttentacles: {
  21899. height: math.unit(2.3, "m"),
  21900. weight: math.unit(304, "kg"),
  21901. name: "Front-tentacles",
  21902. image: {
  21903. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21904. extra: 985 / 955,
  21905. bottom: 25.4 / 1012
  21906. }
  21907. },
  21908. back: {
  21909. height: math.unit(2.3, "m"),
  21910. weight: math.unit(304, "kg"),
  21911. name: "Back",
  21912. image: {
  21913. source: "./media/characters/icowom-lee/back.svg",
  21914. extra: 975 / 954,
  21915. bottom: 9.5 / 985
  21916. }
  21917. },
  21918. backtentacles: {
  21919. height: math.unit(2.3, "m"),
  21920. weight: math.unit(304, "kg"),
  21921. name: "Back-tentacles",
  21922. image: {
  21923. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21924. extra: 975 / 954,
  21925. bottom: 9.5 / 985
  21926. }
  21927. },
  21928. frontDressed: {
  21929. height: math.unit(2.3, "m"),
  21930. weight: math.unit(304, "kg"),
  21931. name: "Front (Dressed)",
  21932. image: {
  21933. source: "./media/characters/icowom-lee/front-dressed.svg",
  21934. extra: 3076 / 2933,
  21935. bottom: 51.4 / 3125.1889
  21936. }
  21937. },
  21938. rump: {
  21939. height: math.unit(0.776, "meters"),
  21940. name: "Rump",
  21941. image: {
  21942. source: "./media/characters/icowom-lee/rump.svg"
  21943. }
  21944. },
  21945. genitals: {
  21946. height: math.unit(0.78, "meters"),
  21947. name: "Genitals",
  21948. image: {
  21949. source: "./media/characters/icowom-lee/genitals.svg"
  21950. }
  21951. },
  21952. },
  21953. [
  21954. {
  21955. name: "Normal",
  21956. height: math.unit(2.3, "meters"),
  21957. default: true
  21958. },
  21959. {
  21960. name: "Macro",
  21961. height: math.unit(94, "meters"),
  21962. default: true
  21963. },
  21964. ]
  21965. ))
  21966. characterMakers.push(() => makeCharacter(
  21967. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21968. {
  21969. front: {
  21970. height: math.unit(22, "meters"),
  21971. weight: math.unit(21000, "kg"),
  21972. name: "Front",
  21973. image: {
  21974. source: "./media/characters/shock-diamond/front.svg",
  21975. extra: 2204 / 2053,
  21976. bottom: 65 / 2239.47
  21977. }
  21978. },
  21979. frontNude: {
  21980. height: math.unit(22, "meters"),
  21981. weight: math.unit(21000, "kg"),
  21982. name: "Front (Nude)",
  21983. image: {
  21984. source: "./media/characters/shock-diamond/front-nude.svg",
  21985. extra: 2514 / 2285,
  21986. bottom: 13 / 2527.56
  21987. }
  21988. },
  21989. },
  21990. [
  21991. {
  21992. name: "Normal",
  21993. height: math.unit(3, "meters")
  21994. },
  21995. {
  21996. name: "Macro",
  21997. height: math.unit(22, "meters"),
  21998. default: true
  21999. },
  22000. ]
  22001. ))
  22002. characterMakers.push(() => makeCharacter(
  22003. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22004. {
  22005. front: {
  22006. height: math.unit(5 + 4 / 12, "feet"),
  22007. weight: math.unit(120, "lb"),
  22008. name: "Front",
  22009. image: {
  22010. source: "./media/characters/rory/front.svg",
  22011. extra: 589 / 556,
  22012. bottom: 45.7 / 635.76
  22013. }
  22014. },
  22015. frontNude: {
  22016. height: math.unit(5 + 4 / 12, "feet"),
  22017. weight: math.unit(120, "lb"),
  22018. name: "Front (Nude)",
  22019. image: {
  22020. source: "./media/characters/rory/front-nude.svg",
  22021. extra: 589 / 556,
  22022. bottom: 45.7 / 635.76
  22023. }
  22024. },
  22025. side: {
  22026. height: math.unit(5 + 4 / 12, "feet"),
  22027. weight: math.unit(120, "lb"),
  22028. name: "Side",
  22029. image: {
  22030. source: "./media/characters/rory/side.svg",
  22031. extra: 597 / 564,
  22032. bottom: 55 / 653
  22033. }
  22034. },
  22035. back: {
  22036. height: math.unit(5 + 4 / 12, "feet"),
  22037. weight: math.unit(120, "lb"),
  22038. name: "Back",
  22039. image: {
  22040. source: "./media/characters/rory/back.svg",
  22041. extra: 620 / 585,
  22042. bottom: 8.86 / 630.43
  22043. }
  22044. },
  22045. dick: {
  22046. height: math.unit(0.86, "feet"),
  22047. name: "Dick",
  22048. image: {
  22049. source: "./media/characters/rory/dick.svg"
  22050. }
  22051. },
  22052. },
  22053. [
  22054. {
  22055. name: "Normal",
  22056. height: math.unit(5 + 4 / 12, "feet"),
  22057. default: true
  22058. },
  22059. {
  22060. name: "Macro",
  22061. height: math.unit(100, "feet")
  22062. },
  22063. {
  22064. name: "Macro+",
  22065. height: math.unit(140, "feet")
  22066. },
  22067. {
  22068. name: "Macro++",
  22069. height: math.unit(300, "feet")
  22070. },
  22071. ]
  22072. ))
  22073. characterMakers.push(() => makeCharacter(
  22074. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22075. {
  22076. front: {
  22077. height: math.unit(5 + 9 / 12, "feet"),
  22078. weight: math.unit(190, "lb"),
  22079. name: "Front",
  22080. image: {
  22081. source: "./media/characters/sprisk/front.svg",
  22082. extra: 1225 / 1180,
  22083. bottom: 42.7 / 1266.4
  22084. }
  22085. },
  22086. frontNsfw: {
  22087. height: math.unit(5 + 9 / 12, "feet"),
  22088. weight: math.unit(190, "lb"),
  22089. name: "Front (NSFW)",
  22090. image: {
  22091. source: "./media/characters/sprisk/front-nsfw.svg",
  22092. extra: 1225 / 1180,
  22093. bottom: 42.7 / 1266.4
  22094. }
  22095. },
  22096. back: {
  22097. height: math.unit(5 + 9 / 12, "feet"),
  22098. weight: math.unit(190, "lb"),
  22099. name: "Back",
  22100. image: {
  22101. source: "./media/characters/sprisk/back.svg",
  22102. extra: 1247 / 1200,
  22103. bottom: 5.6 / 1253.04
  22104. }
  22105. },
  22106. },
  22107. [
  22108. {
  22109. name: "Tiny",
  22110. height: math.unit(2, "inches")
  22111. },
  22112. {
  22113. name: "Normal",
  22114. height: math.unit(5 + 9 / 12, "feet"),
  22115. default: true
  22116. },
  22117. {
  22118. name: "Mini Macro",
  22119. height: math.unit(18, "feet")
  22120. },
  22121. {
  22122. name: "Macro",
  22123. height: math.unit(100, "feet")
  22124. },
  22125. {
  22126. name: "MACRO",
  22127. height: math.unit(50, "miles")
  22128. },
  22129. {
  22130. name: "M A C R O",
  22131. height: math.unit(300, "miles")
  22132. },
  22133. ]
  22134. ))
  22135. characterMakers.push(() => makeCharacter(
  22136. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22137. {
  22138. side: {
  22139. height: math.unit(15.6, "meters"),
  22140. weight: math.unit(700000, "kg"),
  22141. name: "Side",
  22142. image: {
  22143. source: "./media/characters/bunsen/side.svg",
  22144. extra: 1644 / 358
  22145. }
  22146. },
  22147. foot: {
  22148. height: math.unit(1.611 * 1644 / 358, "meter"),
  22149. name: "Foot",
  22150. image: {
  22151. source: "./media/characters/bunsen/foot.svg"
  22152. }
  22153. },
  22154. },
  22155. [
  22156. {
  22157. name: "Small",
  22158. height: math.unit(10, "feet")
  22159. },
  22160. {
  22161. name: "Normal",
  22162. height: math.unit(15.6, "meters"),
  22163. default: true
  22164. },
  22165. ]
  22166. ))
  22167. characterMakers.push(() => makeCharacter(
  22168. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22169. {
  22170. front: {
  22171. height: math.unit(4 + 11 / 12, "feet"),
  22172. weight: math.unit(140, "lb"),
  22173. name: "Front",
  22174. image: {
  22175. source: "./media/characters/sesh/front.svg",
  22176. extra: 3420 / 3231,
  22177. bottom: 72 / 3949.5
  22178. }
  22179. },
  22180. },
  22181. [
  22182. {
  22183. name: "Normal",
  22184. height: math.unit(4 + 11 / 12, "feet")
  22185. },
  22186. {
  22187. name: "Grown",
  22188. height: math.unit(15, "feet"),
  22189. default: true
  22190. },
  22191. {
  22192. name: "Macro",
  22193. height: math.unit(1500, "feet")
  22194. },
  22195. {
  22196. name: "Megamacro",
  22197. height: math.unit(30, "miles")
  22198. },
  22199. {
  22200. name: "Continental",
  22201. height: math.unit(3000, "miles")
  22202. },
  22203. {
  22204. name: "Gravity Mass",
  22205. height: math.unit(300000, "miles")
  22206. },
  22207. {
  22208. name: "Planet Buster",
  22209. height: math.unit(30000000, "miles")
  22210. },
  22211. {
  22212. name: "Big",
  22213. height: math.unit(3000000000, "miles")
  22214. },
  22215. ]
  22216. ))
  22217. characterMakers.push(() => makeCharacter(
  22218. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22219. {
  22220. front: {
  22221. height: math.unit(9, "feet"),
  22222. weight: math.unit(350, "lb"),
  22223. name: "Front",
  22224. image: {
  22225. source: "./media/characters/pepper/front.svg",
  22226. extra: 1448 / 1312,
  22227. bottom: 9.4 / 1457.88
  22228. }
  22229. },
  22230. back: {
  22231. height: math.unit(9, "feet"),
  22232. weight: math.unit(350, "lb"),
  22233. name: "Back",
  22234. image: {
  22235. source: "./media/characters/pepper/back.svg",
  22236. extra: 1423 / 1300,
  22237. bottom: 4.6 / 1429
  22238. }
  22239. },
  22240. maw: {
  22241. height: math.unit(0.932, "feet"),
  22242. name: "Maw",
  22243. image: {
  22244. source: "./media/characters/pepper/maw.svg"
  22245. }
  22246. },
  22247. },
  22248. [
  22249. {
  22250. name: "Normal",
  22251. height: math.unit(9, "feet"),
  22252. default: true
  22253. },
  22254. ]
  22255. ))
  22256. characterMakers.push(() => makeCharacter(
  22257. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22258. {
  22259. front: {
  22260. height: math.unit(6, "feet"),
  22261. weight: math.unit(150, "lb"),
  22262. name: "Front",
  22263. image: {
  22264. source: "./media/characters/maelstrom/front.svg",
  22265. extra: 2100 / 1883,
  22266. bottom: 94 / 2196.7
  22267. }
  22268. },
  22269. },
  22270. [
  22271. {
  22272. name: "Less Kaiju",
  22273. height: math.unit(200, "feet")
  22274. },
  22275. {
  22276. name: "Kaiju",
  22277. height: math.unit(400, "feet"),
  22278. default: true
  22279. },
  22280. {
  22281. name: "Kaiju-er",
  22282. height: math.unit(600, "feet")
  22283. },
  22284. ]
  22285. ))
  22286. characterMakers.push(() => makeCharacter(
  22287. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22288. {
  22289. front: {
  22290. height: math.unit(6 + 5 / 12, "feet"),
  22291. weight: math.unit(180, "lb"),
  22292. name: "Front",
  22293. image: {
  22294. source: "./media/characters/lexir/front.svg",
  22295. extra: 180 / 172,
  22296. bottom: 12 / 192
  22297. }
  22298. },
  22299. back: {
  22300. height: math.unit(6 + 5 / 12, "feet"),
  22301. weight: math.unit(180, "lb"),
  22302. name: "Back",
  22303. image: {
  22304. source: "./media/characters/lexir/back.svg",
  22305. extra: 183.84 / 175.5,
  22306. bottom: 3.1 / 187
  22307. }
  22308. },
  22309. },
  22310. [
  22311. {
  22312. name: "Very Smal",
  22313. height: math.unit(1, "nm")
  22314. },
  22315. {
  22316. name: "Normal",
  22317. height: math.unit(6 + 5 / 12, "feet"),
  22318. default: true
  22319. },
  22320. {
  22321. name: "Macro",
  22322. height: math.unit(1, "mile")
  22323. },
  22324. {
  22325. name: "Megamacro",
  22326. height: math.unit(50, "miles")
  22327. },
  22328. ]
  22329. ))
  22330. characterMakers.push(() => makeCharacter(
  22331. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22332. {
  22333. front: {
  22334. height: math.unit(1.5, "meters"),
  22335. weight: math.unit(100, "lb"),
  22336. name: "Front",
  22337. image: {
  22338. source: "./media/characters/maksio/front.svg",
  22339. extra: 1549 / 1531,
  22340. bottom: 123.7 / 1674.5429
  22341. }
  22342. },
  22343. back: {
  22344. height: math.unit(1.5, "meters"),
  22345. weight: math.unit(100, "lb"),
  22346. name: "Back",
  22347. image: {
  22348. source: "./media/characters/maksio/back.svg",
  22349. extra: 1541 / 1509,
  22350. bottom: 97 / 1639
  22351. }
  22352. },
  22353. hand: {
  22354. height: math.unit(0.621, "feet"),
  22355. name: "Hand",
  22356. image: {
  22357. source: "./media/characters/maksio/hand.svg"
  22358. }
  22359. },
  22360. foot: {
  22361. height: math.unit(1.611, "feet"),
  22362. name: "Foot",
  22363. image: {
  22364. source: "./media/characters/maksio/foot.svg"
  22365. }
  22366. },
  22367. },
  22368. [
  22369. {
  22370. name: "Shrunken",
  22371. height: math.unit(10, "cm")
  22372. },
  22373. {
  22374. name: "Normal",
  22375. height: math.unit(150, "cm"),
  22376. default: true
  22377. },
  22378. ]
  22379. ))
  22380. characterMakers.push(() => makeCharacter(
  22381. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22382. {
  22383. front: {
  22384. height: math.unit(100, "feet"),
  22385. name: "Front",
  22386. image: {
  22387. source: "./media/characters/erza-bear/front.svg",
  22388. extra: 2449 / 2390,
  22389. bottom: 46 / 2494
  22390. }
  22391. },
  22392. back: {
  22393. height: math.unit(100, "feet"),
  22394. name: "Back",
  22395. image: {
  22396. source: "./media/characters/erza-bear/back.svg",
  22397. extra: 2489 / 2430,
  22398. bottom: 85.4 / 2480
  22399. }
  22400. },
  22401. tail: {
  22402. height: math.unit(42, "feet"),
  22403. name: "Tail",
  22404. image: {
  22405. source: "./media/characters/erza-bear/tail.svg"
  22406. }
  22407. },
  22408. tongue: {
  22409. height: math.unit(8, "feet"),
  22410. name: "Tongue",
  22411. image: {
  22412. source: "./media/characters/erza-bear/tongue.svg"
  22413. }
  22414. },
  22415. dick: {
  22416. height: math.unit(10.5, "feet"),
  22417. name: "Dick",
  22418. image: {
  22419. source: "./media/characters/erza-bear/dick.svg"
  22420. }
  22421. },
  22422. dickVertical: {
  22423. height: math.unit(16.9, "feet"),
  22424. name: "Dick (Vertical)",
  22425. image: {
  22426. source: "./media/characters/erza-bear/dick-vertical.svg"
  22427. }
  22428. },
  22429. },
  22430. [
  22431. {
  22432. name: "Macro",
  22433. height: math.unit(100, "feet"),
  22434. default: true
  22435. },
  22436. ]
  22437. ))
  22438. characterMakers.push(() => makeCharacter(
  22439. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22440. {
  22441. front: {
  22442. height: math.unit(172, "cm"),
  22443. weight: math.unit(73, "kg"),
  22444. name: "Front",
  22445. image: {
  22446. source: "./media/characters/violet-flor/front.svg",
  22447. extra: 1530 / 1442,
  22448. bottom: 61.9 / 1588.8
  22449. }
  22450. },
  22451. back: {
  22452. height: math.unit(180, "cm"),
  22453. weight: math.unit(73, "kg"),
  22454. name: "Back",
  22455. image: {
  22456. source: "./media/characters/violet-flor/back.svg",
  22457. extra: 1692 / 1630,
  22458. bottom: 20 / 1712
  22459. }
  22460. },
  22461. },
  22462. [
  22463. {
  22464. name: "Normal",
  22465. height: math.unit(172, "cm"),
  22466. default: true
  22467. },
  22468. ]
  22469. ))
  22470. characterMakers.push(() => makeCharacter(
  22471. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22472. {
  22473. front: {
  22474. height: math.unit(6, "feet"),
  22475. weight: math.unit(220, "lb"),
  22476. name: "Front",
  22477. image: {
  22478. source: "./media/characters/lynn-rhea/front.svg",
  22479. extra: 310 / 273
  22480. }
  22481. },
  22482. back: {
  22483. height: math.unit(6, "feet"),
  22484. weight: math.unit(220, "lb"),
  22485. name: "Back",
  22486. image: {
  22487. source: "./media/characters/lynn-rhea/back.svg",
  22488. extra: 310 / 273
  22489. }
  22490. },
  22491. dicks: {
  22492. height: math.unit(0.9, "feet"),
  22493. name: "Dicks",
  22494. image: {
  22495. source: "./media/characters/lynn-rhea/dicks.svg"
  22496. }
  22497. },
  22498. slit: {
  22499. height: math.unit(0.4, "feet"),
  22500. name: "Slit",
  22501. image: {
  22502. source: "./media/characters/lynn-rhea/slit.svg"
  22503. }
  22504. },
  22505. },
  22506. [
  22507. {
  22508. name: "Micro",
  22509. height: math.unit(1, "inch")
  22510. },
  22511. {
  22512. name: "Macro",
  22513. height: math.unit(60, "feet"),
  22514. default: true
  22515. },
  22516. {
  22517. name: "Megamacro",
  22518. height: math.unit(2, "miles")
  22519. },
  22520. {
  22521. name: "Gigamacro",
  22522. height: math.unit(3, "earths")
  22523. },
  22524. {
  22525. name: "Galactic",
  22526. height: math.unit(0.8, "galaxies")
  22527. },
  22528. ]
  22529. ))
  22530. characterMakers.push(() => makeCharacter(
  22531. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22532. {
  22533. front: {
  22534. height: math.unit(1600, "feet"),
  22535. weight: math.unit(85758785169, "kg"),
  22536. name: "Front",
  22537. image: {
  22538. source: "./media/characters/valathos/front.svg",
  22539. extra: 1451 / 1339
  22540. }
  22541. },
  22542. },
  22543. [
  22544. {
  22545. name: "Macro",
  22546. height: math.unit(1600, "feet"),
  22547. default: true
  22548. },
  22549. ]
  22550. ))
  22551. characterMakers.push(() => makeCharacter(
  22552. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22553. {
  22554. front: {
  22555. height: math.unit(7 + 5 / 12, "feet"),
  22556. weight: math.unit(300, "lb"),
  22557. name: "Front",
  22558. image: {
  22559. source: "./media/characters/azula/front.svg",
  22560. extra: 3208 / 2880,
  22561. bottom: 80.2 / 3277
  22562. }
  22563. },
  22564. back: {
  22565. height: math.unit(7 + 5 / 12, "feet"),
  22566. weight: math.unit(300, "lb"),
  22567. name: "Back",
  22568. image: {
  22569. source: "./media/characters/azula/back.svg",
  22570. extra: 3169 / 2822,
  22571. bottom: 150.6 / 3321
  22572. }
  22573. },
  22574. },
  22575. [
  22576. {
  22577. name: "Normal",
  22578. height: math.unit(7 + 5 / 12, "feet"),
  22579. default: true
  22580. },
  22581. {
  22582. name: "Big",
  22583. height: math.unit(20, "feet")
  22584. },
  22585. ]
  22586. ))
  22587. characterMakers.push(() => makeCharacter(
  22588. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22589. {
  22590. front: {
  22591. height: math.unit(5 + 1 / 12, "feet"),
  22592. weight: math.unit(110, "lb"),
  22593. name: "Front",
  22594. image: {
  22595. source: "./media/characters/rupert/front.svg",
  22596. extra: 1549 / 1495,
  22597. bottom: 54.2 / 1604.4
  22598. }
  22599. },
  22600. },
  22601. [
  22602. {
  22603. name: "Normal",
  22604. height: math.unit(5 + 1 / 12, "feet"),
  22605. default: true
  22606. },
  22607. ]
  22608. ))
  22609. characterMakers.push(() => makeCharacter(
  22610. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22611. {
  22612. front: {
  22613. height: math.unit(8 + 4 / 12, "feet"),
  22614. weight: math.unit(350, "lb"),
  22615. name: "Front",
  22616. image: {
  22617. source: "./media/characters/sheera-castellar/front.svg",
  22618. extra: 1957 / 1894,
  22619. bottom: 26.97 / 1975.017
  22620. }
  22621. },
  22622. side: {
  22623. height: math.unit(8 + 4 / 12, "feet"),
  22624. weight: math.unit(350, "lb"),
  22625. name: "Side",
  22626. image: {
  22627. source: "./media/characters/sheera-castellar/side.svg",
  22628. extra: 1957 / 1894
  22629. }
  22630. },
  22631. back: {
  22632. height: math.unit(8 + 4 / 12, "feet"),
  22633. weight: math.unit(350, "lb"),
  22634. name: "Back",
  22635. image: {
  22636. source: "./media/characters/sheera-castellar/back.svg",
  22637. extra: 1957 / 1894
  22638. }
  22639. },
  22640. angled: {
  22641. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22642. weight: math.unit(350, "lb"),
  22643. name: "Angled",
  22644. image: {
  22645. source: "./media/characters/sheera-castellar/angled.svg",
  22646. extra: 1807 / 1707,
  22647. bottom: 68 / 1875
  22648. }
  22649. },
  22650. genitals: {
  22651. height: math.unit(2.2, "feet"),
  22652. name: "Genitals",
  22653. image: {
  22654. source: "./media/characters/sheera-castellar/genitals.svg"
  22655. }
  22656. },
  22657. taur: {
  22658. height: math.unit(10 + 6/12, "feet"),
  22659. name: "Taur",
  22660. image: {
  22661. source: "./media/characters/sheera-castellar/taur.svg",
  22662. extra: 2017/1909,
  22663. bottom: 185/2202
  22664. }
  22665. },
  22666. },
  22667. [
  22668. {
  22669. name: "Normal",
  22670. height: math.unit(8 + 4 / 12, "feet")
  22671. },
  22672. {
  22673. name: "Macro",
  22674. height: math.unit(150, "feet"),
  22675. default: true
  22676. },
  22677. {
  22678. name: "Macro+",
  22679. height: math.unit(800, "feet")
  22680. },
  22681. ]
  22682. ))
  22683. characterMakers.push(() => makeCharacter(
  22684. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22685. {
  22686. front: {
  22687. height: math.unit(6, "feet"),
  22688. weight: math.unit(150, "lb"),
  22689. name: "Front",
  22690. image: {
  22691. source: "./media/characters/jaipur/front.svg",
  22692. extra: 3860 / 3731,
  22693. bottom: 287 / 4140
  22694. }
  22695. },
  22696. back: {
  22697. height: math.unit(6, "feet"),
  22698. weight: math.unit(150, "lb"),
  22699. name: "Back",
  22700. image: {
  22701. source: "./media/characters/jaipur/back.svg",
  22702. extra: 4060 / 3930,
  22703. bottom: 151 / 4200
  22704. }
  22705. },
  22706. },
  22707. [
  22708. {
  22709. name: "Normal",
  22710. height: math.unit(1.85, "meters"),
  22711. default: true
  22712. },
  22713. {
  22714. name: "Macro",
  22715. height: math.unit(150, "meters")
  22716. },
  22717. {
  22718. name: "Macro+",
  22719. height: math.unit(0.5, "miles")
  22720. },
  22721. {
  22722. name: "Macro++",
  22723. height: math.unit(2.5, "miles")
  22724. },
  22725. {
  22726. name: "Macro+++",
  22727. height: math.unit(12, "miles")
  22728. },
  22729. {
  22730. name: "Macro++++",
  22731. height: math.unit(120, "miles")
  22732. },
  22733. {
  22734. name: "Macro+++++",
  22735. height: math.unit(1200, "miles")
  22736. },
  22737. ]
  22738. ))
  22739. characterMakers.push(() => makeCharacter(
  22740. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22741. {
  22742. front: {
  22743. height: math.unit(6, "feet"),
  22744. weight: math.unit(150, "lb"),
  22745. name: "Front",
  22746. image: {
  22747. source: "./media/characters/sheila-wolf/front.svg",
  22748. extra: 1931 / 1808,
  22749. bottom: 29.5 / 1960
  22750. }
  22751. },
  22752. dick: {
  22753. height: math.unit(1.464, "feet"),
  22754. name: "Dick",
  22755. image: {
  22756. source: "./media/characters/sheila-wolf/dick.svg"
  22757. }
  22758. },
  22759. muzzle: {
  22760. height: math.unit(0.513, "feet"),
  22761. name: "Muzzle",
  22762. image: {
  22763. source: "./media/characters/sheila-wolf/muzzle.svg"
  22764. }
  22765. },
  22766. },
  22767. [
  22768. {
  22769. name: "Macro",
  22770. height: math.unit(70, "feet"),
  22771. default: true
  22772. },
  22773. ]
  22774. ))
  22775. characterMakers.push(() => makeCharacter(
  22776. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22777. {
  22778. front: {
  22779. height: math.unit(32, "meters"),
  22780. weight: math.unit(300000, "kg"),
  22781. name: "Front",
  22782. image: {
  22783. source: "./media/characters/almor/front.svg",
  22784. extra: 1408 / 1322,
  22785. bottom: 94.6 / 1506.5
  22786. }
  22787. },
  22788. },
  22789. [
  22790. {
  22791. name: "Macro",
  22792. height: math.unit(32, "meters"),
  22793. default: true
  22794. },
  22795. ]
  22796. ))
  22797. characterMakers.push(() => makeCharacter(
  22798. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22799. {
  22800. front: {
  22801. height: math.unit(7, "feet"),
  22802. weight: math.unit(200, "lb"),
  22803. name: "Front",
  22804. image: {
  22805. source: "./media/characters/silver/front.svg",
  22806. extra: 472.1 / 450.5,
  22807. bottom: 26.5 / 499.424
  22808. }
  22809. },
  22810. },
  22811. [
  22812. {
  22813. name: "Normal",
  22814. height: math.unit(7, "feet"),
  22815. default: true
  22816. },
  22817. {
  22818. name: "Macro",
  22819. height: math.unit(800, "feet")
  22820. },
  22821. {
  22822. name: "Megamacro",
  22823. height: math.unit(250, "miles")
  22824. },
  22825. ]
  22826. ))
  22827. characterMakers.push(() => makeCharacter(
  22828. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22829. {
  22830. front: {
  22831. height: math.unit(6, "feet"),
  22832. weight: math.unit(150, "lb"),
  22833. name: "Front",
  22834. image: {
  22835. source: "./media/characters/pliskin/front.svg",
  22836. extra: 1469 / 1359,
  22837. bottom: 70 / 1540
  22838. }
  22839. },
  22840. },
  22841. [
  22842. {
  22843. name: "Micro",
  22844. height: math.unit(3, "inches")
  22845. },
  22846. {
  22847. name: "Normal",
  22848. height: math.unit(5 + 11 / 12, "feet"),
  22849. default: true
  22850. },
  22851. {
  22852. name: "Macro",
  22853. height: math.unit(120, "feet")
  22854. },
  22855. ]
  22856. ))
  22857. characterMakers.push(() => makeCharacter(
  22858. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22859. {
  22860. front: {
  22861. height: math.unit(6, "feet"),
  22862. weight: math.unit(150, "lb"),
  22863. name: "Front",
  22864. image: {
  22865. source: "./media/characters/sammy/front.svg",
  22866. extra: 1193 / 1089,
  22867. bottom: 30.5 / 1226
  22868. }
  22869. },
  22870. },
  22871. [
  22872. {
  22873. name: "Macro",
  22874. height: math.unit(1700, "feet"),
  22875. default: true
  22876. },
  22877. {
  22878. name: "Examacro",
  22879. height: math.unit(2.5e9, "lightyears")
  22880. },
  22881. ]
  22882. ))
  22883. characterMakers.push(() => makeCharacter(
  22884. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22885. {
  22886. front: {
  22887. height: math.unit(21, "meters"),
  22888. weight: math.unit(12, "tonnes"),
  22889. name: "Front",
  22890. image: {
  22891. source: "./media/characters/kuru/front.svg",
  22892. extra: 4301 / 3785,
  22893. bottom: 371.3 / 4691
  22894. }
  22895. },
  22896. },
  22897. [
  22898. {
  22899. name: "Macro",
  22900. height: math.unit(21, "meters"),
  22901. default: true
  22902. },
  22903. ]
  22904. ))
  22905. characterMakers.push(() => makeCharacter(
  22906. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22907. {
  22908. front: {
  22909. height: math.unit(23, "meters"),
  22910. weight: math.unit(12.2, "tonnes"),
  22911. name: "Front",
  22912. image: {
  22913. source: "./media/characters/rakka/front.svg",
  22914. extra: 4670 / 4169,
  22915. bottom: 301 / 4968.7
  22916. }
  22917. },
  22918. },
  22919. [
  22920. {
  22921. name: "Macro",
  22922. height: math.unit(23, "meters"),
  22923. default: true
  22924. },
  22925. ]
  22926. ))
  22927. characterMakers.push(() => makeCharacter(
  22928. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22929. {
  22930. front: {
  22931. height: math.unit(6, "feet"),
  22932. weight: math.unit(150, "lb"),
  22933. name: "Front",
  22934. image: {
  22935. source: "./media/characters/rhys-feline/front.svg",
  22936. extra: 2488 / 2308,
  22937. bottom: 35.67 / 2519.19
  22938. }
  22939. },
  22940. },
  22941. [
  22942. {
  22943. name: "Really Small",
  22944. height: math.unit(1, "nm")
  22945. },
  22946. {
  22947. name: "Micro",
  22948. height: math.unit(4, "inches")
  22949. },
  22950. {
  22951. name: "Normal",
  22952. height: math.unit(4 + 10 / 12, "feet"),
  22953. default: true
  22954. },
  22955. {
  22956. name: "Macro",
  22957. height: math.unit(100, "feet")
  22958. },
  22959. {
  22960. name: "Megamacto",
  22961. height: math.unit(50, "miles")
  22962. },
  22963. ]
  22964. ))
  22965. characterMakers.push(() => makeCharacter(
  22966. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22967. {
  22968. side: {
  22969. height: math.unit(30, "feet"),
  22970. weight: math.unit(35000, "kg"),
  22971. name: "Side",
  22972. image: {
  22973. source: "./media/characters/alydar/side.svg",
  22974. extra: 234 / 222,
  22975. bottom: 6.5 / 241
  22976. }
  22977. },
  22978. front: {
  22979. height: math.unit(30, "feet"),
  22980. weight: math.unit(35000, "kg"),
  22981. name: "Front",
  22982. image: {
  22983. source: "./media/characters/alydar/front.svg",
  22984. extra: 223.37 / 210.2,
  22985. bottom: 22.3 / 246.76
  22986. }
  22987. },
  22988. top: {
  22989. height: math.unit(64.54, "feet"),
  22990. weight: math.unit(35000, "kg"),
  22991. name: "Top",
  22992. image: {
  22993. source: "./media/characters/alydar/top.svg"
  22994. }
  22995. },
  22996. anthro: {
  22997. height: math.unit(30, "feet"),
  22998. weight: math.unit(9000, "kg"),
  22999. name: "Anthro",
  23000. image: {
  23001. source: "./media/characters/alydar/anthro.svg",
  23002. extra: 432 / 421,
  23003. bottom: 7.18 / 440
  23004. }
  23005. },
  23006. maw: {
  23007. height: math.unit(11.693, "feet"),
  23008. name: "Maw",
  23009. image: {
  23010. source: "./media/characters/alydar/maw.svg"
  23011. }
  23012. },
  23013. head: {
  23014. height: math.unit(11.693, "feet"),
  23015. name: "Head",
  23016. image: {
  23017. source: "./media/characters/alydar/head.svg"
  23018. }
  23019. },
  23020. headAlt: {
  23021. height: math.unit(12.861, "feet"),
  23022. name: "Head (Alt)",
  23023. image: {
  23024. source: "./media/characters/alydar/head-alt.svg"
  23025. }
  23026. },
  23027. wing: {
  23028. height: math.unit(20.712, "feet"),
  23029. name: "Wing",
  23030. image: {
  23031. source: "./media/characters/alydar/wing.svg"
  23032. }
  23033. },
  23034. wingFeather: {
  23035. height: math.unit(9.662, "feet"),
  23036. name: "Wing Feather",
  23037. image: {
  23038. source: "./media/characters/alydar/wing-feather.svg"
  23039. }
  23040. },
  23041. countourFeather: {
  23042. height: math.unit(4.154, "feet"),
  23043. name: "Contour Feather",
  23044. image: {
  23045. source: "./media/characters/alydar/contour-feather.svg"
  23046. }
  23047. },
  23048. },
  23049. [
  23050. {
  23051. name: "Diplomatic",
  23052. height: math.unit(13, "feet"),
  23053. default: true
  23054. },
  23055. {
  23056. name: "Small",
  23057. height: math.unit(30, "feet")
  23058. },
  23059. {
  23060. name: "Normal",
  23061. height: math.unit(95, "feet"),
  23062. default: true
  23063. },
  23064. {
  23065. name: "Large",
  23066. height: math.unit(285, "feet")
  23067. },
  23068. {
  23069. name: "Incomprehensible",
  23070. height: math.unit(450, "megameters")
  23071. },
  23072. ]
  23073. ))
  23074. characterMakers.push(() => makeCharacter(
  23075. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23076. {
  23077. side: {
  23078. height: math.unit(11, "feet"),
  23079. weight: math.unit(1750, "kg"),
  23080. name: "Side",
  23081. image: {
  23082. source: "./media/characters/selicia/side.svg",
  23083. extra: 440 / 396,
  23084. bottom: 24.8 / 465.979
  23085. }
  23086. },
  23087. maw: {
  23088. height: math.unit(4.665, "feet"),
  23089. name: "Maw",
  23090. image: {
  23091. source: "./media/characters/selicia/maw.svg"
  23092. }
  23093. },
  23094. },
  23095. [
  23096. {
  23097. name: "Normal",
  23098. height: math.unit(11, "feet"),
  23099. default: true
  23100. },
  23101. ]
  23102. ))
  23103. characterMakers.push(() => makeCharacter(
  23104. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23105. {
  23106. side: {
  23107. height: math.unit(2 + 6 / 12, "feet"),
  23108. weight: math.unit(30, "lb"),
  23109. name: "Side",
  23110. image: {
  23111. source: "./media/characters/layla/side.svg",
  23112. extra: 244 / 188,
  23113. bottom: 18.2 / 262.1
  23114. }
  23115. },
  23116. back: {
  23117. height: math.unit(2 + 6 / 12, "feet"),
  23118. weight: math.unit(30, "lb"),
  23119. name: "Back",
  23120. image: {
  23121. source: "./media/characters/layla/back.svg",
  23122. extra: 308 / 241.5,
  23123. bottom: 8.9 / 316.8
  23124. }
  23125. },
  23126. cumming: {
  23127. height: math.unit(2 + 6 / 12, "feet"),
  23128. weight: math.unit(30, "lb"),
  23129. name: "Cumming",
  23130. image: {
  23131. source: "./media/characters/layla/cumming.svg",
  23132. extra: 342 / 279,
  23133. bottom: 595 / 938
  23134. }
  23135. },
  23136. dickFlaccid: {
  23137. height: math.unit(2.595, "feet"),
  23138. name: "Flaccid Genitals",
  23139. image: {
  23140. source: "./media/characters/layla/dick-flaccid.svg"
  23141. }
  23142. },
  23143. dickErect: {
  23144. height: math.unit(2.359, "feet"),
  23145. name: "Erect Genitals",
  23146. image: {
  23147. source: "./media/characters/layla/dick-erect.svg"
  23148. }
  23149. },
  23150. },
  23151. [
  23152. {
  23153. name: "Micro",
  23154. height: math.unit(1, "inch")
  23155. },
  23156. {
  23157. name: "Small",
  23158. height: math.unit(1, "foot")
  23159. },
  23160. {
  23161. name: "Normal",
  23162. height: math.unit(2 + 6 / 12, "feet"),
  23163. default: true
  23164. },
  23165. {
  23166. name: "Macro",
  23167. height: math.unit(200, "feet")
  23168. },
  23169. {
  23170. name: "Megamacro",
  23171. height: math.unit(1000, "miles")
  23172. },
  23173. {
  23174. name: "Planetary",
  23175. height: math.unit(8000, "miles")
  23176. },
  23177. {
  23178. name: "True Layla",
  23179. height: math.unit(200000 * 7, "multiverses")
  23180. },
  23181. ]
  23182. ))
  23183. characterMakers.push(() => makeCharacter(
  23184. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23185. {
  23186. back: {
  23187. height: math.unit(10.5, "feet"),
  23188. weight: math.unit(800, "lb"),
  23189. name: "Back",
  23190. image: {
  23191. source: "./media/characters/knox/back.svg",
  23192. extra: 1486 / 1089,
  23193. bottom: 107 / 1601.4
  23194. }
  23195. },
  23196. side: {
  23197. height: math.unit(10.5, "feet"),
  23198. weight: math.unit(800, "lb"),
  23199. name: "Side",
  23200. image: {
  23201. source: "./media/characters/knox/side.svg",
  23202. extra: 244 / 218,
  23203. bottom: 14 / 260
  23204. }
  23205. },
  23206. },
  23207. [
  23208. {
  23209. name: "Compact",
  23210. height: math.unit(10.5, "feet"),
  23211. default: true
  23212. },
  23213. {
  23214. name: "Dynamax",
  23215. height: math.unit(210, "feet")
  23216. },
  23217. {
  23218. name: "Full Macro",
  23219. height: math.unit(850, "feet")
  23220. },
  23221. ]
  23222. ))
  23223. characterMakers.push(() => makeCharacter(
  23224. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23225. {
  23226. front: {
  23227. height: math.unit(6, "feet"),
  23228. weight: math.unit(152, "lb"),
  23229. name: "Front",
  23230. image: {
  23231. source: "./media/characters/shin-pikachu/front.svg",
  23232. extra: 1574 / 1480,
  23233. bottom: 53.3 / 1626
  23234. }
  23235. },
  23236. hand: {
  23237. height: math.unit(1.055, "feet"),
  23238. name: "Hand",
  23239. image: {
  23240. source: "./media/characters/shin-pikachu/hand.svg"
  23241. }
  23242. },
  23243. foot: {
  23244. height: math.unit(1.1, "feet"),
  23245. name: "Foot",
  23246. image: {
  23247. source: "./media/characters/shin-pikachu/foot.svg"
  23248. }
  23249. },
  23250. collar: {
  23251. height: math.unit(0.386, "feet"),
  23252. name: "Collar",
  23253. image: {
  23254. source: "./media/characters/shin-pikachu/collar.svg"
  23255. }
  23256. },
  23257. },
  23258. [
  23259. {
  23260. name: "Smallest",
  23261. height: math.unit(0.5, "inches")
  23262. },
  23263. {
  23264. name: "Micro",
  23265. height: math.unit(6, "inches")
  23266. },
  23267. {
  23268. name: "Normal",
  23269. height: math.unit(6, "feet"),
  23270. default: true
  23271. },
  23272. {
  23273. name: "Macro",
  23274. height: math.unit(150, "feet")
  23275. },
  23276. ]
  23277. ))
  23278. characterMakers.push(() => makeCharacter(
  23279. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23280. {
  23281. front: {
  23282. height: math.unit(28, "feet"),
  23283. weight: math.unit(10500, "lb"),
  23284. name: "Front",
  23285. image: {
  23286. source: "./media/characters/kayda/front.svg",
  23287. extra: 1536 / 1428,
  23288. bottom: 68.7 / 1603
  23289. }
  23290. },
  23291. back: {
  23292. height: math.unit(28, "feet"),
  23293. weight: math.unit(10500, "lb"),
  23294. name: "Back",
  23295. image: {
  23296. source: "./media/characters/kayda/back.svg",
  23297. extra: 1557 / 1464,
  23298. bottom: 39.5 / 1597.49
  23299. }
  23300. },
  23301. dick: {
  23302. height: math.unit(3.858, "feet"),
  23303. name: "Dick",
  23304. image: {
  23305. source: "./media/characters/kayda/dick.svg"
  23306. }
  23307. },
  23308. },
  23309. [
  23310. {
  23311. name: "Macro",
  23312. height: math.unit(28, "feet"),
  23313. default: true
  23314. },
  23315. ]
  23316. ))
  23317. characterMakers.push(() => makeCharacter(
  23318. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23319. {
  23320. front: {
  23321. height: math.unit(10 + 11 / 12, "feet"),
  23322. weight: math.unit(1400, "lb"),
  23323. name: "Front",
  23324. image: {
  23325. source: "./media/characters/brian/front.svg",
  23326. extra: 737 / 692,
  23327. bottom: 55.4 / 785
  23328. }
  23329. },
  23330. },
  23331. [
  23332. {
  23333. name: "Normal",
  23334. height: math.unit(10 + 11 / 12, "feet"),
  23335. default: true
  23336. },
  23337. ]
  23338. ))
  23339. characterMakers.push(() => makeCharacter(
  23340. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23341. {
  23342. front: {
  23343. height: math.unit(5 + 8 / 12, "feet"),
  23344. weight: math.unit(140, "lb"),
  23345. name: "Front",
  23346. image: {
  23347. source: "./media/characters/khemri/front.svg",
  23348. extra: 4780 / 4059,
  23349. bottom: 80.1 / 4859.25
  23350. }
  23351. },
  23352. },
  23353. [
  23354. {
  23355. name: "Micro",
  23356. height: math.unit(6, "inches")
  23357. },
  23358. {
  23359. name: "Normal",
  23360. height: math.unit(5 + 8 / 12, "feet"),
  23361. default: true
  23362. },
  23363. ]
  23364. ))
  23365. characterMakers.push(() => makeCharacter(
  23366. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23367. {
  23368. front: {
  23369. height: math.unit(13, "feet"),
  23370. weight: math.unit(1700, "lb"),
  23371. name: "Front",
  23372. image: {
  23373. source: "./media/characters/felix-braveheart/front.svg",
  23374. extra: 1222 / 1157,
  23375. bottom: 53.2 / 1280
  23376. }
  23377. },
  23378. back: {
  23379. height: math.unit(13, "feet"),
  23380. weight: math.unit(1700, "lb"),
  23381. name: "Back",
  23382. image: {
  23383. source: "./media/characters/felix-braveheart/back.svg",
  23384. extra: 1277 / 1203,
  23385. bottom: 50.2 / 1327
  23386. }
  23387. },
  23388. feral: {
  23389. height: math.unit(6, "feet"),
  23390. weight: math.unit(400, "lb"),
  23391. name: "Feral",
  23392. image: {
  23393. source: "./media/characters/felix-braveheart/feral.svg",
  23394. extra: 682 / 625,
  23395. bottom: 6.9 / 688
  23396. }
  23397. },
  23398. },
  23399. [
  23400. {
  23401. name: "Normal",
  23402. height: math.unit(13, "feet"),
  23403. default: true
  23404. },
  23405. ]
  23406. ))
  23407. characterMakers.push(() => makeCharacter(
  23408. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23409. {
  23410. side: {
  23411. height: math.unit(5 + 11 / 12, "feet"),
  23412. weight: math.unit(1400, "lb"),
  23413. name: "Side",
  23414. image: {
  23415. source: "./media/characters/shadow-blade/side.svg",
  23416. extra: 1726 / 1267,
  23417. bottom: 58.4 / 1785
  23418. }
  23419. },
  23420. },
  23421. [
  23422. {
  23423. name: "Normal",
  23424. height: math.unit(5 + 11 / 12, "feet"),
  23425. default: true
  23426. },
  23427. ]
  23428. ))
  23429. characterMakers.push(() => makeCharacter(
  23430. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23431. {
  23432. front: {
  23433. height: math.unit(1 + 6 / 12, "feet"),
  23434. weight: math.unit(25, "lb"),
  23435. name: "Front",
  23436. image: {
  23437. source: "./media/characters/karla-halldor/front.svg",
  23438. extra: 1459 / 1383,
  23439. bottom: 12 / 1472
  23440. }
  23441. },
  23442. },
  23443. [
  23444. {
  23445. name: "Normal",
  23446. height: math.unit(1 + 6 / 12, "feet"),
  23447. default: true
  23448. },
  23449. ]
  23450. ))
  23451. characterMakers.push(() => makeCharacter(
  23452. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23453. {
  23454. front: {
  23455. height: math.unit(6 + 2 / 12, "feet"),
  23456. weight: math.unit(160, "lb"),
  23457. name: "Front",
  23458. image: {
  23459. source: "./media/characters/ariam/front.svg",
  23460. extra: 714 / 617,
  23461. bottom: 23.4 / 737,
  23462. }
  23463. },
  23464. squatting: {
  23465. height: math.unit(4.1, "feet"),
  23466. weight: math.unit(160, "lb"),
  23467. name: "Squatting",
  23468. image: {
  23469. source: "./media/characters/ariam/squatting.svg",
  23470. extra: 2617 / 2112,
  23471. bottom: 61.2 / 2681,
  23472. }
  23473. },
  23474. },
  23475. [
  23476. {
  23477. name: "Normal",
  23478. height: math.unit(6 + 2 / 12, "feet"),
  23479. default: true
  23480. },
  23481. {
  23482. name: "Normal+",
  23483. height: math.unit(4, "meters")
  23484. },
  23485. {
  23486. name: "Macro",
  23487. height: math.unit(50, "meters")
  23488. },
  23489. {
  23490. name: "Macro+",
  23491. height: math.unit(100, "meters")
  23492. },
  23493. {
  23494. name: "Megamacro",
  23495. height: math.unit(20, "km")
  23496. },
  23497. ]
  23498. ))
  23499. characterMakers.push(() => makeCharacter(
  23500. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23501. {
  23502. front: {
  23503. height: math.unit(1.67, "meters"),
  23504. weight: math.unit(140, "lb"),
  23505. name: "Front",
  23506. image: {
  23507. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23508. extra: 438 / 410,
  23509. bottom: 0.75 / 439
  23510. }
  23511. },
  23512. },
  23513. [
  23514. {
  23515. name: "Shrunken",
  23516. height: math.unit(7.6, "cm")
  23517. },
  23518. {
  23519. name: "Human Scale",
  23520. height: math.unit(1.67, "meters")
  23521. },
  23522. {
  23523. name: "Wolxi Scale",
  23524. height: math.unit(36.7, "meters"),
  23525. default: true
  23526. },
  23527. ]
  23528. ))
  23529. characterMakers.push(() => makeCharacter(
  23530. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23531. {
  23532. front: {
  23533. height: math.unit(1.73, "meters"),
  23534. weight: math.unit(240, "lb"),
  23535. name: "Front",
  23536. image: {
  23537. source: "./media/characters/izue-two-mothers/front.svg",
  23538. extra: 469 / 437,
  23539. bottom: 1.24 / 470.6
  23540. }
  23541. },
  23542. },
  23543. [
  23544. {
  23545. name: "Shrunken",
  23546. height: math.unit(7.86, "cm")
  23547. },
  23548. {
  23549. name: "Human Scale",
  23550. height: math.unit(1.73, "meters")
  23551. },
  23552. {
  23553. name: "Wolxi Scale",
  23554. height: math.unit(38, "meters"),
  23555. default: true
  23556. },
  23557. ]
  23558. ))
  23559. characterMakers.push(() => makeCharacter(
  23560. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23561. {
  23562. front: {
  23563. height: math.unit(1.55, "meters"),
  23564. weight: math.unit(120, "lb"),
  23565. name: "Front",
  23566. image: {
  23567. source: "./media/characters/teeku-love-shack/front.svg",
  23568. extra: 387 / 362,
  23569. bottom: 1.51 / 388
  23570. }
  23571. },
  23572. },
  23573. [
  23574. {
  23575. name: "Shrunken",
  23576. height: math.unit(7, "cm")
  23577. },
  23578. {
  23579. name: "Human Scale",
  23580. height: math.unit(1.55, "meters")
  23581. },
  23582. {
  23583. name: "Wolxi Scale",
  23584. height: math.unit(34.1, "meters"),
  23585. default: true
  23586. },
  23587. ]
  23588. ))
  23589. characterMakers.push(() => makeCharacter(
  23590. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23591. {
  23592. front: {
  23593. height: math.unit(1.83, "meters"),
  23594. weight: math.unit(135, "lb"),
  23595. name: "Front",
  23596. image: {
  23597. source: "./media/characters/dejma-the-red/front.svg",
  23598. extra: 480 / 458,
  23599. bottom: 1.8 / 482
  23600. }
  23601. },
  23602. },
  23603. [
  23604. {
  23605. name: "Shrunken",
  23606. height: math.unit(8.3, "cm")
  23607. },
  23608. {
  23609. name: "Human Scale",
  23610. height: math.unit(1.83, "meters")
  23611. },
  23612. {
  23613. name: "Wolxi Scale",
  23614. height: math.unit(40, "meters"),
  23615. default: true
  23616. },
  23617. ]
  23618. ))
  23619. characterMakers.push(() => makeCharacter(
  23620. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23621. {
  23622. front: {
  23623. height: math.unit(1.78, "meters"),
  23624. weight: math.unit(65, "kg"),
  23625. name: "Front",
  23626. image: {
  23627. source: "./media/characters/aki/front.svg",
  23628. extra: 452 / 415
  23629. }
  23630. },
  23631. frontNsfw: {
  23632. height: math.unit(1.78, "meters"),
  23633. weight: math.unit(65, "kg"),
  23634. name: "Front (NSFW)",
  23635. image: {
  23636. source: "./media/characters/aki/front-nsfw.svg",
  23637. extra: 452 / 415
  23638. }
  23639. },
  23640. back: {
  23641. height: math.unit(1.78, "meters"),
  23642. weight: math.unit(65, "kg"),
  23643. name: "Back",
  23644. image: {
  23645. source: "./media/characters/aki/back.svg",
  23646. extra: 452 / 415
  23647. }
  23648. },
  23649. rump: {
  23650. height: math.unit(2.05, "feet"),
  23651. name: "Rump",
  23652. image: {
  23653. source: "./media/characters/aki/rump.svg"
  23654. }
  23655. },
  23656. dick: {
  23657. height: math.unit(0.95, "feet"),
  23658. name: "Dick",
  23659. image: {
  23660. source: "./media/characters/aki/dick.svg"
  23661. }
  23662. },
  23663. },
  23664. [
  23665. {
  23666. name: "Micro",
  23667. height: math.unit(15, "cm")
  23668. },
  23669. {
  23670. name: "Normal",
  23671. height: math.unit(178, "cm"),
  23672. default: true
  23673. },
  23674. {
  23675. name: "Macro",
  23676. height: math.unit(214, "m")
  23677. },
  23678. {
  23679. name: "Macro+",
  23680. height: math.unit(534, "m")
  23681. },
  23682. ]
  23683. ))
  23684. characterMakers.push(() => makeCharacter(
  23685. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23686. {
  23687. front: {
  23688. height: math.unit(5 + 5 / 12, "feet"),
  23689. weight: math.unit(120, "lb"),
  23690. name: "Front",
  23691. image: {
  23692. source: "./media/characters/ari/front.svg",
  23693. extra: 714.5 / 682,
  23694. bottom: 8 / 722.5
  23695. }
  23696. },
  23697. },
  23698. [
  23699. {
  23700. name: "Normal",
  23701. height: math.unit(5 + 5 / 12, "feet")
  23702. },
  23703. {
  23704. name: "Macro",
  23705. height: math.unit(100, "feet"),
  23706. default: true
  23707. },
  23708. {
  23709. name: "Megamacro",
  23710. height: math.unit(100, "miles")
  23711. },
  23712. {
  23713. name: "Gigamacro",
  23714. height: math.unit(80000, "miles")
  23715. },
  23716. ]
  23717. ))
  23718. characterMakers.push(() => makeCharacter(
  23719. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23720. {
  23721. side: {
  23722. height: math.unit(9, "feet"),
  23723. weight: math.unit(400, "kg"),
  23724. name: "Side",
  23725. image: {
  23726. source: "./media/characters/bolt/side.svg",
  23727. extra: 1126 / 896,
  23728. bottom: 60 / 1187.3,
  23729. }
  23730. },
  23731. },
  23732. [
  23733. {
  23734. name: "Micro",
  23735. height: math.unit(5, "inches")
  23736. },
  23737. {
  23738. name: "Normal",
  23739. height: math.unit(9, "feet"),
  23740. default: true
  23741. },
  23742. {
  23743. name: "Macro",
  23744. height: math.unit(700, "feet")
  23745. },
  23746. {
  23747. name: "Max Size",
  23748. height: math.unit(1.52e22, "yottameters")
  23749. },
  23750. ]
  23751. ))
  23752. characterMakers.push(() => makeCharacter(
  23753. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23754. {
  23755. front: {
  23756. height: math.unit(4.53, "meters"),
  23757. weight: math.unit(3, "tons"),
  23758. name: "Front",
  23759. image: {
  23760. source: "./media/characters/draekon-sylviar/front.svg",
  23761. extra: 1228 / 1068,
  23762. bottom: 41 / 1270
  23763. }
  23764. },
  23765. tail: {
  23766. height: math.unit(1.772, "meter"),
  23767. name: "Tail",
  23768. image: {
  23769. source: "./media/characters/draekon-sylviar/tail.svg"
  23770. }
  23771. },
  23772. head: {
  23773. height: math.unit(1.331, "meter"),
  23774. name: "Head",
  23775. image: {
  23776. source: "./media/characters/draekon-sylviar/head.svg"
  23777. }
  23778. },
  23779. hand: {
  23780. height: math.unit(0.564, "meter"),
  23781. name: "Hand",
  23782. image: {
  23783. source: "./media/characters/draekon-sylviar/hand.svg"
  23784. }
  23785. },
  23786. foot: {
  23787. height: math.unit(0.621, "meter"),
  23788. name: "Foot",
  23789. image: {
  23790. source: "./media/characters/draekon-sylviar/foot.svg",
  23791. bottom: 32 / 324
  23792. }
  23793. },
  23794. dick: {
  23795. height: math.unit(61, "cm"),
  23796. name: "Dick",
  23797. image: {
  23798. source: "./media/characters/draekon-sylviar/dick.svg"
  23799. }
  23800. },
  23801. dickseparated: {
  23802. height: math.unit(61, "cm"),
  23803. name: "Dick-separated",
  23804. image: {
  23805. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23806. }
  23807. },
  23808. },
  23809. [
  23810. {
  23811. name: "Small",
  23812. height: math.unit(4.53 / 2, "meters"),
  23813. default: true
  23814. },
  23815. {
  23816. name: "Normal",
  23817. height: math.unit(4.53, "meters"),
  23818. default: true
  23819. },
  23820. {
  23821. name: "Large",
  23822. height: math.unit(4.53 * 2, "meters"),
  23823. },
  23824. ]
  23825. ))
  23826. characterMakers.push(() => makeCharacter(
  23827. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23828. {
  23829. front: {
  23830. height: math.unit(6 + 2 / 12, "feet"),
  23831. weight: math.unit(180, "lb"),
  23832. name: "Front",
  23833. image: {
  23834. source: "./media/characters/brawler/front.svg",
  23835. extra: 3301 / 3027,
  23836. bottom: 138 / 3439
  23837. }
  23838. },
  23839. },
  23840. [
  23841. {
  23842. name: "Normal",
  23843. height: math.unit(6 + 2 / 12, "feet"),
  23844. default: true
  23845. },
  23846. ]
  23847. ))
  23848. characterMakers.push(() => makeCharacter(
  23849. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23850. {
  23851. front: {
  23852. height: math.unit(11, "feet"),
  23853. weight: math.unit(1000, "lb"),
  23854. name: "Front",
  23855. image: {
  23856. source: "./media/characters/alex/front.svg",
  23857. bottom: 44.5 / 620
  23858. }
  23859. },
  23860. },
  23861. [
  23862. {
  23863. name: "Micro",
  23864. height: math.unit(5, "inches")
  23865. },
  23866. {
  23867. name: "Normal",
  23868. height: math.unit(11, "feet"),
  23869. default: true
  23870. },
  23871. {
  23872. name: "Macro",
  23873. height: math.unit(9.5e9, "feet")
  23874. },
  23875. {
  23876. name: "Max Size",
  23877. height: math.unit(1.4e283, "yottameters")
  23878. },
  23879. ]
  23880. ))
  23881. characterMakers.push(() => makeCharacter(
  23882. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23883. {
  23884. female: {
  23885. height: math.unit(29.9, "m"),
  23886. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23887. name: "Female",
  23888. image: {
  23889. source: "./media/characters/zenari/female.svg",
  23890. extra: 3281.6 / 3217,
  23891. bottom: 72.2 / 3353
  23892. }
  23893. },
  23894. male: {
  23895. height: math.unit(27.7, "m"),
  23896. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23897. name: "Male",
  23898. image: {
  23899. source: "./media/characters/zenari/male.svg",
  23900. extra: 3008 / 2991,
  23901. bottom: 54.6 / 3069
  23902. }
  23903. },
  23904. },
  23905. [
  23906. {
  23907. name: "Macro",
  23908. height: math.unit(29.7, "meters"),
  23909. default: true
  23910. },
  23911. ]
  23912. ))
  23913. characterMakers.push(() => makeCharacter(
  23914. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23915. {
  23916. female: {
  23917. height: math.unit(23.8, "m"),
  23918. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23919. name: "Female",
  23920. image: {
  23921. source: "./media/characters/mactarian/female.svg",
  23922. extra: 2662 / 2569,
  23923. bottom: 73 / 2736
  23924. }
  23925. },
  23926. male: {
  23927. height: math.unit(23.8, "m"),
  23928. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23929. name: "Male",
  23930. image: {
  23931. source: "./media/characters/mactarian/male.svg",
  23932. extra: 2673 / 2600,
  23933. bottom: 76 / 2750
  23934. }
  23935. },
  23936. },
  23937. [
  23938. {
  23939. name: "Macro",
  23940. height: math.unit(23.8, "meters"),
  23941. default: true
  23942. },
  23943. ]
  23944. ))
  23945. characterMakers.push(() => makeCharacter(
  23946. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23947. {
  23948. female: {
  23949. height: math.unit(19.3, "m"),
  23950. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23951. name: "Female",
  23952. image: {
  23953. source: "./media/characters/umok/female.svg",
  23954. extra: 2186 / 2078,
  23955. bottom: 87 / 2277
  23956. }
  23957. },
  23958. male: {
  23959. height: math.unit(19.5, "m"),
  23960. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23961. name: "Male",
  23962. image: {
  23963. source: "./media/characters/umok/male.svg",
  23964. extra: 2233 / 2140,
  23965. bottom: 24.4 / 2258
  23966. }
  23967. },
  23968. },
  23969. [
  23970. {
  23971. name: "Macro",
  23972. height: math.unit(19.3, "meters"),
  23973. default: true
  23974. },
  23975. ]
  23976. ))
  23977. characterMakers.push(() => makeCharacter(
  23978. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23979. {
  23980. female: {
  23981. height: math.unit(26.15, "m"),
  23982. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23983. name: "Female",
  23984. image: {
  23985. source: "./media/characters/joraxian/female.svg",
  23986. extra: 2912 / 2824,
  23987. bottom: 36 / 2956
  23988. }
  23989. },
  23990. male: {
  23991. height: math.unit(25.4, "m"),
  23992. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23993. name: "Male",
  23994. image: {
  23995. source: "./media/characters/joraxian/male.svg",
  23996. extra: 2877 / 2721,
  23997. bottom: 82 / 2967
  23998. }
  23999. },
  24000. },
  24001. [
  24002. {
  24003. name: "Macro",
  24004. height: math.unit(26.15, "meters"),
  24005. default: true
  24006. },
  24007. ]
  24008. ))
  24009. characterMakers.push(() => makeCharacter(
  24010. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24011. {
  24012. female: {
  24013. height: math.unit(21.6, "m"),
  24014. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24015. name: "Female",
  24016. image: {
  24017. source: "./media/characters/sthara/female.svg",
  24018. extra: 2516 / 2347,
  24019. bottom: 21.5 / 2537
  24020. }
  24021. },
  24022. male: {
  24023. height: math.unit(24, "m"),
  24024. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24025. name: "Male",
  24026. image: {
  24027. source: "./media/characters/sthara/male.svg",
  24028. extra: 2732 / 2607,
  24029. bottom: 23 / 2732
  24030. }
  24031. },
  24032. },
  24033. [
  24034. {
  24035. name: "Macro",
  24036. height: math.unit(21.6, "meters"),
  24037. default: true
  24038. },
  24039. ]
  24040. ))
  24041. characterMakers.push(() => makeCharacter(
  24042. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24043. {
  24044. front: {
  24045. height: math.unit(6 + 4 / 12, "feet"),
  24046. weight: math.unit(175, "lb"),
  24047. name: "Front",
  24048. image: {
  24049. source: "./media/characters/luka-bryzant/front.svg",
  24050. extra: 311 / 289,
  24051. bottom: 4 / 315
  24052. }
  24053. },
  24054. back: {
  24055. height: math.unit(6 + 4 / 12, "feet"),
  24056. weight: math.unit(175, "lb"),
  24057. name: "Back",
  24058. image: {
  24059. source: "./media/characters/luka-bryzant/back.svg",
  24060. extra: 311 / 289,
  24061. bottom: 3.8 / 313.7
  24062. }
  24063. },
  24064. },
  24065. [
  24066. {
  24067. name: "Micro",
  24068. height: math.unit(10, "inches")
  24069. },
  24070. {
  24071. name: "Normal",
  24072. height: math.unit(6 + 4 / 12, "feet"),
  24073. default: true
  24074. },
  24075. {
  24076. name: "Large",
  24077. height: math.unit(12, "feet")
  24078. },
  24079. ]
  24080. ))
  24081. characterMakers.push(() => makeCharacter(
  24082. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24083. {
  24084. front: {
  24085. height: math.unit(5 + 7 / 12, "feet"),
  24086. weight: math.unit(185, "lb"),
  24087. name: "Front",
  24088. image: {
  24089. source: "./media/characters/aman-aquila/front.svg",
  24090. extra: 1013 / 976,
  24091. bottom: 45.6 / 1057
  24092. }
  24093. },
  24094. side: {
  24095. height: math.unit(5 + 7 / 12, "feet"),
  24096. weight: math.unit(185, "lb"),
  24097. name: "Side",
  24098. image: {
  24099. source: "./media/characters/aman-aquila/side.svg",
  24100. extra: 1054 / 1011,
  24101. bottom: 15 / 1070
  24102. }
  24103. },
  24104. back: {
  24105. height: math.unit(5 + 7 / 12, "feet"),
  24106. weight: math.unit(185, "lb"),
  24107. name: "Back",
  24108. image: {
  24109. source: "./media/characters/aman-aquila/back.svg",
  24110. extra: 1026 / 970,
  24111. bottom: 12 / 1039
  24112. }
  24113. },
  24114. head: {
  24115. height: math.unit(1.211, "feet"),
  24116. name: "Head",
  24117. image: {
  24118. source: "./media/characters/aman-aquila/head.svg",
  24119. }
  24120. },
  24121. },
  24122. [
  24123. {
  24124. name: "Minimicro",
  24125. height: math.unit(0.057, "inches")
  24126. },
  24127. {
  24128. name: "Micro",
  24129. height: math.unit(7, "inches")
  24130. },
  24131. {
  24132. name: "Mini",
  24133. height: math.unit(3 + 7 / 12, "feet")
  24134. },
  24135. {
  24136. name: "Normal",
  24137. height: math.unit(5 + 7 / 12, "feet"),
  24138. default: true
  24139. },
  24140. {
  24141. name: "Macro",
  24142. height: math.unit(157 + 7 / 12, "feet")
  24143. },
  24144. {
  24145. name: "Megamacro",
  24146. height: math.unit(1557 + 7 / 12, "feet")
  24147. },
  24148. {
  24149. name: "Gigamacro",
  24150. height: math.unit(15557 + 7 / 12, "feet")
  24151. },
  24152. ]
  24153. ))
  24154. characterMakers.push(() => makeCharacter(
  24155. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24156. {
  24157. front: {
  24158. height: math.unit(3 + 2 / 12, "inches"),
  24159. weight: math.unit(0.3, "ounces"),
  24160. name: "Front",
  24161. image: {
  24162. source: "./media/characters/hiphae/front.svg",
  24163. extra: 1931 / 1683,
  24164. bottom: 24 / 1955
  24165. }
  24166. },
  24167. },
  24168. [
  24169. {
  24170. name: "Normal",
  24171. height: math.unit(3 + 1 / 2, "inches"),
  24172. default: true
  24173. },
  24174. ]
  24175. ))
  24176. characterMakers.push(() => makeCharacter(
  24177. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24178. {
  24179. front: {
  24180. height: math.unit(5 + 10 / 12, "feet"),
  24181. weight: math.unit(165, "lb"),
  24182. name: "Front",
  24183. image: {
  24184. source: "./media/characters/nicky/front.svg",
  24185. extra: 3144 / 2886,
  24186. bottom: 45.6 / 3192
  24187. }
  24188. },
  24189. back: {
  24190. height: math.unit(5 + 10 / 12, "feet"),
  24191. weight: math.unit(165, "lb"),
  24192. name: "Back",
  24193. image: {
  24194. source: "./media/characters/nicky/back.svg",
  24195. extra: 3055 / 2804,
  24196. bottom: 28.4 / 3087
  24197. }
  24198. },
  24199. frontclothed: {
  24200. height: math.unit(5 + 10 / 12, "feet"),
  24201. weight: math.unit(165, "lb"),
  24202. name: "Front-clothed",
  24203. image: {
  24204. source: "./media/characters/nicky/front-clothed.svg",
  24205. extra: 3184.9 / 2926.9,
  24206. bottom: 86.5 / 3239.9
  24207. }
  24208. },
  24209. foot: {
  24210. height: math.unit(1.16, "feet"),
  24211. name: "Foot",
  24212. image: {
  24213. source: "./media/characters/nicky/foot.svg"
  24214. }
  24215. },
  24216. feet: {
  24217. height: math.unit(1.34, "feet"),
  24218. name: "Feet",
  24219. image: {
  24220. source: "./media/characters/nicky/feet.svg"
  24221. }
  24222. },
  24223. maw: {
  24224. height: math.unit(0.9, "feet"),
  24225. name: "Maw",
  24226. image: {
  24227. source: "./media/characters/nicky/maw.svg"
  24228. }
  24229. },
  24230. },
  24231. [
  24232. {
  24233. name: "Normal",
  24234. height: math.unit(5 + 10 / 12, "feet"),
  24235. default: true
  24236. },
  24237. {
  24238. name: "Macro",
  24239. height: math.unit(60, "feet")
  24240. },
  24241. {
  24242. name: "Megamacro",
  24243. height: math.unit(1, "mile")
  24244. },
  24245. ]
  24246. ))
  24247. characterMakers.push(() => makeCharacter(
  24248. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24249. {
  24250. side: {
  24251. height: math.unit(10, "feet"),
  24252. weight: math.unit(600, "lb"),
  24253. name: "Side",
  24254. image: {
  24255. source: "./media/characters/blair/side.svg",
  24256. bottom: 16.6 / 475,
  24257. extra: 458 / 431
  24258. }
  24259. },
  24260. },
  24261. [
  24262. {
  24263. name: "Micro",
  24264. height: math.unit(8, "inches")
  24265. },
  24266. {
  24267. name: "Normal",
  24268. height: math.unit(10, "feet"),
  24269. default: true
  24270. },
  24271. {
  24272. name: "Macro",
  24273. height: math.unit(180, "feet")
  24274. },
  24275. ]
  24276. ))
  24277. characterMakers.push(() => makeCharacter(
  24278. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24279. {
  24280. front: {
  24281. height: math.unit(5 + 4 / 12, "feet"),
  24282. weight: math.unit(125, "lb"),
  24283. name: "Front",
  24284. image: {
  24285. source: "./media/characters/fisher/front.svg",
  24286. extra: 444 / 390,
  24287. bottom: 2 / 444.8
  24288. }
  24289. },
  24290. },
  24291. [
  24292. {
  24293. name: "Micro",
  24294. height: math.unit(4, "inches")
  24295. },
  24296. {
  24297. name: "Normal",
  24298. height: math.unit(5 + 4 / 12, "feet"),
  24299. default: true
  24300. },
  24301. {
  24302. name: "Macro",
  24303. height: math.unit(100, "feet")
  24304. },
  24305. ]
  24306. ))
  24307. characterMakers.push(() => makeCharacter(
  24308. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24309. {
  24310. front: {
  24311. height: math.unit(6.71, "feet"),
  24312. weight: math.unit(200, "lb"),
  24313. capacity: math.unit(1000000, "people"),
  24314. name: "Front",
  24315. image: {
  24316. source: "./media/characters/gliss/front.svg",
  24317. extra: 2347 / 2231,
  24318. bottom: 113 / 2462
  24319. }
  24320. },
  24321. hammerspaceSize: {
  24322. height: math.unit(6.71 * 717, "feet"),
  24323. weight: math.unit(200, "lb"),
  24324. capacity: math.unit(1000000, "people"),
  24325. name: "Hammerspace Size",
  24326. image: {
  24327. source: "./media/characters/gliss/front.svg",
  24328. extra: 2347 / 2231,
  24329. bottom: 113 / 2462
  24330. }
  24331. },
  24332. },
  24333. [
  24334. {
  24335. name: "Normal",
  24336. height: math.unit(6.71, "feet"),
  24337. default: true
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24343. {
  24344. side: {
  24345. height: math.unit(1.44, "m"),
  24346. weight: math.unit(80, "kg"),
  24347. name: "Side",
  24348. image: {
  24349. source: "./media/characters/dune-anderson/side.svg",
  24350. bottom: 49 / 1426
  24351. }
  24352. },
  24353. },
  24354. [
  24355. {
  24356. name: "Wolf-sized",
  24357. height: math.unit(1.44, "meters")
  24358. },
  24359. {
  24360. name: "Normal",
  24361. height: math.unit(5.05, "meters"),
  24362. default: true
  24363. },
  24364. {
  24365. name: "Big",
  24366. height: math.unit(14.4, "meters")
  24367. },
  24368. {
  24369. name: "Huge",
  24370. height: math.unit(144, "meters")
  24371. },
  24372. ]
  24373. ))
  24374. characterMakers.push(() => makeCharacter(
  24375. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24376. {
  24377. front: {
  24378. height: math.unit(7, "feet"),
  24379. weight: math.unit(425, "lb"),
  24380. name: "Front",
  24381. image: {
  24382. source: "./media/characters/hind/front.svg",
  24383. extra: 2091 / 1860,
  24384. bottom: 129 / 2220
  24385. }
  24386. },
  24387. back: {
  24388. height: math.unit(7, "feet"),
  24389. weight: math.unit(425, "lb"),
  24390. name: "Back",
  24391. image: {
  24392. source: "./media/characters/hind/back.svg",
  24393. extra: 2091 / 1860,
  24394. bottom: 24.6 / 2309
  24395. }
  24396. },
  24397. tail: {
  24398. height: math.unit(2.8, "feet"),
  24399. name: "Tail",
  24400. image: {
  24401. source: "./media/characters/hind/tail.svg"
  24402. }
  24403. },
  24404. head: {
  24405. height: math.unit(2.55, "feet"),
  24406. name: "Head",
  24407. image: {
  24408. source: "./media/characters/hind/head.svg"
  24409. }
  24410. },
  24411. },
  24412. [
  24413. {
  24414. name: "XS",
  24415. height: math.unit(0.7, "feet")
  24416. },
  24417. {
  24418. name: "Normal",
  24419. height: math.unit(7, "feet"),
  24420. default: true
  24421. },
  24422. {
  24423. name: "XL",
  24424. height: math.unit(70, "feet")
  24425. },
  24426. ]
  24427. ))
  24428. characterMakers.push(() => makeCharacter(
  24429. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24430. {
  24431. front: {
  24432. height: math.unit(6, "feet"),
  24433. weight: math.unit(150, "lb"),
  24434. name: "Front",
  24435. image: {
  24436. source: "./media/characters/dylan-skaven/front.svg",
  24437. extra: 2318 / 2063,
  24438. bottom: 93.4 / 2410
  24439. }
  24440. },
  24441. },
  24442. [
  24443. {
  24444. name: "Nano",
  24445. height: math.unit(1, "mm")
  24446. },
  24447. {
  24448. name: "Micro",
  24449. height: math.unit(1, "cm")
  24450. },
  24451. {
  24452. name: "Normal",
  24453. height: math.unit(2.1, "meters"),
  24454. default: true
  24455. },
  24456. ]
  24457. ))
  24458. characterMakers.push(() => makeCharacter(
  24459. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24460. {
  24461. front: {
  24462. height: math.unit(7 + 5 / 12, "feet"),
  24463. weight: math.unit(357, "lb"),
  24464. name: "Front",
  24465. image: {
  24466. source: "./media/characters/solex-draconov/front.svg",
  24467. extra: 1993 / 1865,
  24468. bottom: 117 / 2111
  24469. }
  24470. },
  24471. },
  24472. [
  24473. {
  24474. name: "Natural Height",
  24475. height: math.unit(7 + 5 / 12, "feet"),
  24476. default: true
  24477. },
  24478. {
  24479. name: "Macro",
  24480. height: math.unit(350, "feet")
  24481. },
  24482. {
  24483. name: "Macro+",
  24484. height: math.unit(1000, "feet")
  24485. },
  24486. {
  24487. name: "Megamacro",
  24488. height: math.unit(20, "km")
  24489. },
  24490. {
  24491. name: "Megamacro+",
  24492. height: math.unit(1000, "km")
  24493. },
  24494. {
  24495. name: "Gigamacro",
  24496. height: math.unit(2.5, "Gm")
  24497. },
  24498. {
  24499. name: "Teramacro",
  24500. height: math.unit(15, "Tm")
  24501. },
  24502. {
  24503. name: "Galactic",
  24504. height: math.unit(30, "Zm")
  24505. },
  24506. {
  24507. name: "Universal",
  24508. height: math.unit(21000, "Ym")
  24509. },
  24510. {
  24511. name: "Omniversal",
  24512. height: math.unit(9.861e50, "Ym")
  24513. },
  24514. {
  24515. name: "Existential",
  24516. height: math.unit(1e300, "meters")
  24517. },
  24518. ]
  24519. ))
  24520. characterMakers.push(() => makeCharacter(
  24521. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24522. {
  24523. side: {
  24524. height: math.unit(25, "feet"),
  24525. weight: math.unit(90000, "lb"),
  24526. name: "Side",
  24527. image: {
  24528. source: "./media/characters/mandarax/side.svg",
  24529. extra: 614 / 332,
  24530. bottom: 55 / 630
  24531. }
  24532. },
  24533. head: {
  24534. height: math.unit(11.4, "feet"),
  24535. name: "Head",
  24536. image: {
  24537. source: "./media/characters/mandarax/head.svg"
  24538. }
  24539. },
  24540. belly: {
  24541. height: math.unit(33, "feet"),
  24542. name: "Belly",
  24543. capacity: math.unit(500, "people"),
  24544. image: {
  24545. source: "./media/characters/mandarax/belly.svg"
  24546. }
  24547. },
  24548. dick: {
  24549. height: math.unit(8.46, "feet"),
  24550. name: "Dick",
  24551. image: {
  24552. source: "./media/characters/mandarax/dick.svg"
  24553. }
  24554. },
  24555. top: {
  24556. height: math.unit(28, "meters"),
  24557. name: "Top",
  24558. image: {
  24559. source: "./media/characters/mandarax/top.svg"
  24560. }
  24561. },
  24562. },
  24563. [
  24564. {
  24565. name: "Normal",
  24566. height: math.unit(25, "feet"),
  24567. default: true
  24568. },
  24569. ]
  24570. ))
  24571. characterMakers.push(() => makeCharacter(
  24572. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24573. {
  24574. front: {
  24575. height: math.unit(5, "feet"),
  24576. weight: math.unit(90, "lb"),
  24577. name: "Front",
  24578. image: {
  24579. source: "./media/characters/pixil/front.svg",
  24580. extra: 2000 / 1618,
  24581. bottom: 12.3 / 2011
  24582. }
  24583. },
  24584. },
  24585. [
  24586. {
  24587. name: "Normal",
  24588. height: math.unit(5, "feet"),
  24589. default: true
  24590. },
  24591. {
  24592. name: "Megamacro",
  24593. height: math.unit(10, "miles"),
  24594. },
  24595. ]
  24596. ))
  24597. characterMakers.push(() => makeCharacter(
  24598. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24599. {
  24600. front: {
  24601. height: math.unit(7 + 2 / 12, "feet"),
  24602. weight: math.unit(200, "lb"),
  24603. name: "Front",
  24604. image: {
  24605. source: "./media/characters/angel/front.svg",
  24606. extra: 1830 / 1737,
  24607. bottom: 22.6 / 1854,
  24608. }
  24609. },
  24610. },
  24611. [
  24612. {
  24613. name: "Normal",
  24614. height: math.unit(7 + 2 / 12, "feet"),
  24615. default: true
  24616. },
  24617. {
  24618. name: "Macro",
  24619. height: math.unit(1000, "feet")
  24620. },
  24621. {
  24622. name: "Megamacro",
  24623. height: math.unit(2, "miles")
  24624. },
  24625. {
  24626. name: "Gigamacro",
  24627. height: math.unit(20, "earths")
  24628. },
  24629. ]
  24630. ))
  24631. characterMakers.push(() => makeCharacter(
  24632. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24633. {
  24634. front: {
  24635. height: math.unit(5, "feet"),
  24636. weight: math.unit(180, "lb"),
  24637. name: "Front",
  24638. image: {
  24639. source: "./media/characters/mekana/front.svg",
  24640. extra: 1671 / 1605,
  24641. bottom: 3.5 / 1691
  24642. }
  24643. },
  24644. side: {
  24645. height: math.unit(5, "feet"),
  24646. weight: math.unit(180, "lb"),
  24647. name: "Side",
  24648. image: {
  24649. source: "./media/characters/mekana/side.svg",
  24650. extra: 1671 / 1605,
  24651. bottom: 3.5 / 1691
  24652. }
  24653. },
  24654. back: {
  24655. height: math.unit(5, "feet"),
  24656. weight: math.unit(180, "lb"),
  24657. name: "Back",
  24658. image: {
  24659. source: "./media/characters/mekana/back.svg",
  24660. extra: 1671 / 1605,
  24661. bottom: 3.5 / 1691
  24662. }
  24663. },
  24664. },
  24665. [
  24666. {
  24667. name: "Normal",
  24668. height: math.unit(5, "feet"),
  24669. default: true
  24670. },
  24671. ]
  24672. ))
  24673. characterMakers.push(() => makeCharacter(
  24674. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24675. {
  24676. front: {
  24677. height: math.unit(4 + 6 / 12, "feet"),
  24678. weight: math.unit(80, "lb"),
  24679. name: "Front",
  24680. image: {
  24681. source: "./media/characters/pixie/front.svg",
  24682. extra: 1924 / 1825,
  24683. bottom: 22.4 / 1946
  24684. }
  24685. },
  24686. },
  24687. [
  24688. {
  24689. name: "Normal",
  24690. height: math.unit(4 + 6 / 12, "feet"),
  24691. default: true
  24692. },
  24693. {
  24694. name: "Macro",
  24695. height: math.unit(40, "feet")
  24696. },
  24697. ]
  24698. ))
  24699. characterMakers.push(() => makeCharacter(
  24700. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24701. {
  24702. front: {
  24703. height: math.unit(2.1, "meters"),
  24704. weight: math.unit(200, "lb"),
  24705. name: "Front",
  24706. image: {
  24707. source: "./media/characters/the-lascivious/front.svg",
  24708. extra: 1 / 0.893,
  24709. bottom: 3.5 / 573.7
  24710. }
  24711. },
  24712. },
  24713. [
  24714. {
  24715. name: "Human Scale",
  24716. height: math.unit(2.1, "meters")
  24717. },
  24718. {
  24719. name: "Wolxi Scale",
  24720. height: math.unit(46.2, "m"),
  24721. default: true
  24722. },
  24723. {
  24724. name: "Boinker of Buildings",
  24725. height: math.unit(10, "km")
  24726. },
  24727. {
  24728. name: "Shagger of Skyscrapers",
  24729. height: math.unit(40, "km")
  24730. },
  24731. {
  24732. name: "Banger of Boroughs",
  24733. height: math.unit(4000, "km")
  24734. },
  24735. {
  24736. name: "Screwer of States",
  24737. height: math.unit(100000, "km")
  24738. },
  24739. {
  24740. name: "Pounder of Planets",
  24741. height: math.unit(2000000, "km")
  24742. },
  24743. ]
  24744. ))
  24745. characterMakers.push(() => makeCharacter(
  24746. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24747. {
  24748. front: {
  24749. height: math.unit(6, "feet"),
  24750. weight: math.unit(150, "lb"),
  24751. name: "Front",
  24752. image: {
  24753. source: "./media/characters/aj/front.svg",
  24754. extra: 2039 / 1562,
  24755. bottom: 40 / 2079
  24756. }
  24757. },
  24758. },
  24759. [
  24760. {
  24761. name: "Normal",
  24762. height: math.unit(11 + 6 / 12, "feet"),
  24763. default: true
  24764. },
  24765. {
  24766. name: "Megamacro",
  24767. height: math.unit(60, "megameters")
  24768. },
  24769. ]
  24770. ))
  24771. characterMakers.push(() => makeCharacter(
  24772. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24773. {
  24774. side: {
  24775. height: math.unit(31 + 8 / 12, "feet"),
  24776. weight: math.unit(75000, "kg"),
  24777. name: "Side",
  24778. image: {
  24779. source: "./media/characters/koros/side.svg",
  24780. extra: 1442 / 1297,
  24781. bottom: 122.7 / 1562
  24782. }
  24783. },
  24784. dicksKingsCrown: {
  24785. height: math.unit(6, "feet"),
  24786. name: "Dicks (King's Crown)",
  24787. image: {
  24788. source: "./media/characters/koros/dicks-kings-crown.svg"
  24789. }
  24790. },
  24791. dicksTailSet: {
  24792. height: math.unit(3, "feet"),
  24793. name: "Dicks (Tail Set)",
  24794. image: {
  24795. source: "./media/characters/koros/dicks-tail-set.svg"
  24796. }
  24797. },
  24798. dickCumming: {
  24799. height: math.unit(7.98, "feet"),
  24800. name: "Dick (Cumming)",
  24801. image: {
  24802. source: "./media/characters/koros/dick-cumming.svg"
  24803. }
  24804. },
  24805. dicksBack: {
  24806. height: math.unit(5.9, "feet"),
  24807. name: "Dicks (Back)",
  24808. image: {
  24809. source: "./media/characters/koros/dicks-back.svg"
  24810. }
  24811. },
  24812. dicksFront: {
  24813. height: math.unit(3.72, "feet"),
  24814. name: "Dicks (Front)",
  24815. image: {
  24816. source: "./media/characters/koros/dicks-front.svg"
  24817. }
  24818. },
  24819. dicksPeeking: {
  24820. height: math.unit(3.0, "feet"),
  24821. name: "Dicks (Peeking)",
  24822. image: {
  24823. source: "./media/characters/koros/dicks-peeking.svg"
  24824. }
  24825. },
  24826. eye: {
  24827. height: math.unit(1.7, "feet"),
  24828. name: "Eye",
  24829. image: {
  24830. source: "./media/characters/koros/eye.svg"
  24831. }
  24832. },
  24833. headFront: {
  24834. height: math.unit(11.69, "feet"),
  24835. name: "Head (Front)",
  24836. image: {
  24837. source: "./media/characters/koros/head-front.svg"
  24838. }
  24839. },
  24840. headSide: {
  24841. height: math.unit(14, "feet"),
  24842. name: "Head (Side)",
  24843. image: {
  24844. source: "./media/characters/koros/head-side.svg"
  24845. }
  24846. },
  24847. leg: {
  24848. height: math.unit(17, "feet"),
  24849. name: "Leg",
  24850. image: {
  24851. source: "./media/characters/koros/leg.svg"
  24852. }
  24853. },
  24854. mawSide: {
  24855. height: math.unit(12.8, "feet"),
  24856. name: "Maw (Side)",
  24857. image: {
  24858. source: "./media/characters/koros/maw-side.svg"
  24859. }
  24860. },
  24861. mawSpitting: {
  24862. height: math.unit(17, "feet"),
  24863. name: "Maw (Spitting)",
  24864. image: {
  24865. source: "./media/characters/koros/maw-spitting.svg"
  24866. }
  24867. },
  24868. slit: {
  24869. height: math.unit(2.8, "feet"),
  24870. name: "Slit",
  24871. image: {
  24872. source: "./media/characters/koros/slit.svg"
  24873. }
  24874. },
  24875. stomach: {
  24876. height: math.unit(6.8, "feet"),
  24877. capacity: math.unit(20, "people"),
  24878. name: "Stomach",
  24879. image: {
  24880. source: "./media/characters/koros/stomach.svg"
  24881. }
  24882. },
  24883. wingspanBottom: {
  24884. height: math.unit(114, "feet"),
  24885. name: "Wingspan (Bottom)",
  24886. image: {
  24887. source: "./media/characters/koros/wingspan-bottom.svg"
  24888. }
  24889. },
  24890. wingspanTop: {
  24891. height: math.unit(104, "feet"),
  24892. name: "Wingspan (Top)",
  24893. image: {
  24894. source: "./media/characters/koros/wingspan-top.svg"
  24895. }
  24896. },
  24897. },
  24898. [
  24899. {
  24900. name: "Normal",
  24901. height: math.unit(31 + 8 / 12, "feet"),
  24902. default: true
  24903. },
  24904. ]
  24905. ))
  24906. characterMakers.push(() => makeCharacter(
  24907. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24908. {
  24909. front: {
  24910. height: math.unit(18 + 5 / 12, "feet"),
  24911. weight: math.unit(3750, "kg"),
  24912. name: "Front",
  24913. image: {
  24914. source: "./media/characters/vexx/front.svg",
  24915. extra: 426 / 396,
  24916. bottom: 31.5 / 458
  24917. }
  24918. },
  24919. maw: {
  24920. height: math.unit(6, "feet"),
  24921. name: "Maw",
  24922. image: {
  24923. source: "./media/characters/vexx/maw.svg"
  24924. }
  24925. },
  24926. },
  24927. [
  24928. {
  24929. name: "Normal",
  24930. height: math.unit(18 + 5 / 12, "feet"),
  24931. default: true
  24932. },
  24933. ]
  24934. ))
  24935. characterMakers.push(() => makeCharacter(
  24936. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24937. {
  24938. front: {
  24939. height: math.unit(17 + 6 / 12, "feet"),
  24940. weight: math.unit(150, "lb"),
  24941. name: "Front",
  24942. image: {
  24943. source: "./media/characters/baadra/front.svg",
  24944. extra: 3137 / 2890,
  24945. bottom: 168.4 / 3305
  24946. }
  24947. },
  24948. back: {
  24949. height: math.unit(17 + 6 / 12, "feet"),
  24950. weight: math.unit(150, "lb"),
  24951. name: "Back",
  24952. image: {
  24953. source: "./media/characters/baadra/back.svg",
  24954. extra: 3142 / 2890,
  24955. bottom: 220 / 3371
  24956. }
  24957. },
  24958. head: {
  24959. height: math.unit(5.45, "feet"),
  24960. name: "Head",
  24961. image: {
  24962. source: "./media/characters/baadra/head.svg"
  24963. }
  24964. },
  24965. headAngry: {
  24966. height: math.unit(4.95, "feet"),
  24967. name: "Head (Angry)",
  24968. image: {
  24969. source: "./media/characters/baadra/head-angry.svg"
  24970. }
  24971. },
  24972. headOpen: {
  24973. height: math.unit(6, "feet"),
  24974. name: "Head (Open)",
  24975. image: {
  24976. source: "./media/characters/baadra/head-open.svg"
  24977. }
  24978. },
  24979. },
  24980. [
  24981. {
  24982. name: "Normal",
  24983. height: math.unit(17 + 6 / 12, "feet"),
  24984. default: true
  24985. },
  24986. ]
  24987. ))
  24988. characterMakers.push(() => makeCharacter(
  24989. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24990. {
  24991. front: {
  24992. height: math.unit(7 + 3 / 12, "feet"),
  24993. weight: math.unit(180, "lb"),
  24994. name: "Front",
  24995. image: {
  24996. source: "./media/characters/juri/front.svg",
  24997. extra: 1401 / 1237,
  24998. bottom: 18.5 / 1418
  24999. }
  25000. },
  25001. side: {
  25002. height: math.unit(7 + 3 / 12, "feet"),
  25003. weight: math.unit(180, "lb"),
  25004. name: "Side",
  25005. image: {
  25006. source: "./media/characters/juri/side.svg",
  25007. extra: 1424 / 1242,
  25008. bottom: 18.5 / 1447
  25009. }
  25010. },
  25011. sitting: {
  25012. height: math.unit(6, "feet"),
  25013. weight: math.unit(180, "lb"),
  25014. name: "Sitting",
  25015. image: {
  25016. source: "./media/characters/juri/sitting.svg",
  25017. extra: 1270 / 1143,
  25018. bottom: 100 / 1343
  25019. }
  25020. },
  25021. back: {
  25022. height: math.unit(7 + 3 / 12, "feet"),
  25023. weight: math.unit(180, "lb"),
  25024. name: "Back",
  25025. image: {
  25026. source: "./media/characters/juri/back.svg",
  25027. extra: 1377 / 1240,
  25028. bottom: 23.7 / 1405
  25029. }
  25030. },
  25031. maw: {
  25032. height: math.unit(2.8, "feet"),
  25033. name: "Maw",
  25034. image: {
  25035. source: "./media/characters/juri/maw.svg"
  25036. }
  25037. },
  25038. stomach: {
  25039. height: math.unit(0.89, "feet"),
  25040. capacity: math.unit(4, "liters"),
  25041. name: "Stomach",
  25042. image: {
  25043. source: "./media/characters/juri/stomach.svg"
  25044. }
  25045. },
  25046. },
  25047. [
  25048. {
  25049. name: "Normal",
  25050. height: math.unit(7 + 3 / 12, "feet"),
  25051. default: true
  25052. },
  25053. ]
  25054. ))
  25055. characterMakers.push(() => makeCharacter(
  25056. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25057. {
  25058. fox: {
  25059. height: math.unit(5 + 6 / 12, "feet"),
  25060. weight: math.unit(140, "lb"),
  25061. name: "Fox",
  25062. image: {
  25063. source: "./media/characters/maxene-sita/fox.svg",
  25064. extra: 146 / 138,
  25065. bottom: 2.1 / 148.19
  25066. }
  25067. },
  25068. foxLaying: {
  25069. height: math.unit(1.70, "feet"),
  25070. weight: math.unit(140, "lb"),
  25071. name: "Fox (Laying)",
  25072. image: {
  25073. source: "./media/characters/maxene-sita/fox-laying.svg",
  25074. extra: 910 / 572,
  25075. bottom: 71 / 981
  25076. }
  25077. },
  25078. kitsune: {
  25079. height: math.unit(10, "feet"),
  25080. weight: math.unit(800, "lb"),
  25081. name: "Kitsune",
  25082. image: {
  25083. source: "./media/characters/maxene-sita/kitsune.svg",
  25084. extra: 185 / 176,
  25085. bottom: 4.7 / 189.9
  25086. }
  25087. },
  25088. hellhound: {
  25089. height: math.unit(10, "feet"),
  25090. weight: math.unit(700, "lb"),
  25091. name: "Hellhound",
  25092. image: {
  25093. source: "./media/characters/maxene-sita/hellhound.svg",
  25094. extra: 1600 / 1545,
  25095. bottom: 81 / 1681
  25096. }
  25097. },
  25098. },
  25099. [
  25100. {
  25101. name: "Normal",
  25102. height: math.unit(5 + 6 / 12, "feet"),
  25103. default: true
  25104. },
  25105. ]
  25106. ))
  25107. characterMakers.push(() => makeCharacter(
  25108. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25109. {
  25110. front: {
  25111. height: math.unit(3 + 4 / 12, "feet"),
  25112. weight: math.unit(70, "lb"),
  25113. name: "Front",
  25114. image: {
  25115. source: "./media/characters/maia/front.svg",
  25116. extra: 227 / 219.5,
  25117. bottom: 40 / 267
  25118. }
  25119. },
  25120. back: {
  25121. height: math.unit(3 + 4 / 12, "feet"),
  25122. weight: math.unit(70, "lb"),
  25123. name: "Back",
  25124. image: {
  25125. source: "./media/characters/maia/back.svg",
  25126. extra: 237 / 225
  25127. }
  25128. },
  25129. },
  25130. [
  25131. {
  25132. name: "Normal",
  25133. height: math.unit(3 + 4 / 12, "feet"),
  25134. default: true
  25135. },
  25136. ]
  25137. ))
  25138. characterMakers.push(() => makeCharacter(
  25139. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25140. {
  25141. front: {
  25142. height: math.unit(5 + 10 / 12, "feet"),
  25143. weight: math.unit(197, "lb"),
  25144. name: "Front",
  25145. image: {
  25146. source: "./media/characters/jabaro/front.svg",
  25147. extra: 225 / 216,
  25148. bottom: 5.06 / 230
  25149. }
  25150. },
  25151. back: {
  25152. height: math.unit(5 + 10 / 12, "feet"),
  25153. weight: math.unit(197, "lb"),
  25154. name: "Back",
  25155. image: {
  25156. source: "./media/characters/jabaro/back.svg",
  25157. extra: 225 / 219,
  25158. bottom: 1.9 / 227
  25159. }
  25160. },
  25161. },
  25162. [
  25163. {
  25164. name: "Normal",
  25165. height: math.unit(5 + 10 / 12, "feet"),
  25166. default: true
  25167. },
  25168. ]
  25169. ))
  25170. characterMakers.push(() => makeCharacter(
  25171. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25172. {
  25173. front: {
  25174. height: math.unit(5 + 8 / 12, "feet"),
  25175. weight: math.unit(139, "lb"),
  25176. name: "Front",
  25177. image: {
  25178. source: "./media/characters/risa/front.svg",
  25179. extra: 270 / 260,
  25180. bottom: 11.2 / 282
  25181. }
  25182. },
  25183. back: {
  25184. height: math.unit(5 + 8 / 12, "feet"),
  25185. weight: math.unit(139, "lb"),
  25186. name: "Back",
  25187. image: {
  25188. source: "./media/characters/risa/back.svg",
  25189. extra: 264 / 255,
  25190. bottom: 4 / 268
  25191. }
  25192. },
  25193. },
  25194. [
  25195. {
  25196. name: "Normal",
  25197. height: math.unit(5 + 8 / 12, "feet"),
  25198. default: true
  25199. },
  25200. ]
  25201. ))
  25202. characterMakers.push(() => makeCharacter(
  25203. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25204. {
  25205. front: {
  25206. height: math.unit(2 + 11 / 12, "feet"),
  25207. weight: math.unit(30, "lb"),
  25208. name: "Front",
  25209. image: {
  25210. source: "./media/characters/weatley/front.svg",
  25211. bottom: 10.7 / 414,
  25212. extra: 403.5 / 362
  25213. }
  25214. },
  25215. back: {
  25216. height: math.unit(2 + 11 / 12, "feet"),
  25217. weight: math.unit(30, "lb"),
  25218. name: "Back",
  25219. image: {
  25220. source: "./media/characters/weatley/back.svg",
  25221. bottom: 10.7 / 414,
  25222. extra: 403.5 / 362
  25223. }
  25224. },
  25225. },
  25226. [
  25227. {
  25228. name: "Normal",
  25229. height: math.unit(2 + 11 / 12, "feet"),
  25230. default: true
  25231. },
  25232. ]
  25233. ))
  25234. characterMakers.push(() => makeCharacter(
  25235. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25236. {
  25237. front: {
  25238. height: math.unit(5 + 2 / 12, "feet"),
  25239. weight: math.unit(50, "kg"),
  25240. name: "Front",
  25241. image: {
  25242. source: "./media/characters/mercury-crescent/front.svg",
  25243. extra: 1088 / 1033,
  25244. bottom: 18.9 / 1109
  25245. }
  25246. },
  25247. },
  25248. [
  25249. {
  25250. name: "Normal",
  25251. height: math.unit(5 + 2 / 12, "feet"),
  25252. default: true
  25253. },
  25254. ]
  25255. ))
  25256. characterMakers.push(() => makeCharacter(
  25257. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25258. {
  25259. front: {
  25260. height: math.unit(2, "feet"),
  25261. weight: math.unit(15, "kg"),
  25262. name: "Front",
  25263. image: {
  25264. source: "./media/characters/diamond-jones/front.svg",
  25265. bottom: 16 / 568
  25266. }
  25267. },
  25268. },
  25269. [
  25270. {
  25271. name: "Normal",
  25272. height: math.unit(2, "feet"),
  25273. default: true
  25274. },
  25275. ]
  25276. ))
  25277. characterMakers.push(() => makeCharacter(
  25278. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25279. {
  25280. front: {
  25281. height: math.unit(3, "feet"),
  25282. weight: math.unit(30, "kg"),
  25283. name: "Front",
  25284. image: {
  25285. source: "./media/characters/sweet-bit/front.svg",
  25286. extra: 675 / 567,
  25287. bottom: 27.7 / 703
  25288. }
  25289. },
  25290. },
  25291. [
  25292. {
  25293. name: "Normal",
  25294. height: math.unit(3, "feet"),
  25295. default: true
  25296. },
  25297. ]
  25298. ))
  25299. characterMakers.push(() => makeCharacter(
  25300. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25301. {
  25302. side: {
  25303. height: math.unit(9.178, "feet"),
  25304. weight: math.unit(500, "lb"),
  25305. name: "Side",
  25306. image: {
  25307. source: "./media/characters/umbrazen/side.svg",
  25308. extra: 1730 / 1473,
  25309. bottom: 34.6 / 1765
  25310. }
  25311. },
  25312. },
  25313. [
  25314. {
  25315. name: "Normal",
  25316. height: math.unit(9.178, "feet"),
  25317. default: true
  25318. },
  25319. ]
  25320. ))
  25321. characterMakers.push(() => makeCharacter(
  25322. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25323. {
  25324. front: {
  25325. height: math.unit(10, "feet"),
  25326. weight: math.unit(750, "lb"),
  25327. name: "Front",
  25328. image: {
  25329. source: "./media/characters/arlist/front.svg",
  25330. extra: 961 / 778,
  25331. bottom: 6.2 / 986
  25332. }
  25333. },
  25334. },
  25335. [
  25336. {
  25337. name: "Normal",
  25338. height: math.unit(10, "feet"),
  25339. default: true
  25340. },
  25341. ]
  25342. ))
  25343. characterMakers.push(() => makeCharacter(
  25344. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25345. {
  25346. front: {
  25347. height: math.unit(5 + 1 / 12, "feet"),
  25348. weight: math.unit(110, "lb"),
  25349. name: "Front",
  25350. image: {
  25351. source: "./media/characters/aradel/front.svg",
  25352. extra: 324 / 303,
  25353. bottom: 3.6 / 329.4
  25354. }
  25355. },
  25356. },
  25357. [
  25358. {
  25359. name: "Normal",
  25360. height: math.unit(5 + 1 / 12, "feet"),
  25361. default: true
  25362. },
  25363. ]
  25364. ))
  25365. characterMakers.push(() => makeCharacter(
  25366. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25367. {
  25368. front: {
  25369. height: math.unit(3 + 8 / 12, "feet"),
  25370. weight: math.unit(50, "lb"),
  25371. name: "Front",
  25372. image: {
  25373. source: "./media/characters/serryn/front.svg",
  25374. extra: 1792 / 1656,
  25375. bottom: 43.5 / 1840
  25376. }
  25377. },
  25378. },
  25379. [
  25380. {
  25381. name: "Normal",
  25382. height: math.unit(3 + 8 / 12, "feet"),
  25383. default: true
  25384. },
  25385. ]
  25386. ))
  25387. characterMakers.push(() => makeCharacter(
  25388. { name: "Xavier Thyme" },
  25389. {
  25390. front: {
  25391. height: math.unit(7 + 10 / 12, "feet"),
  25392. weight: math.unit(255, "lb"),
  25393. name: "Front",
  25394. image: {
  25395. source: "./media/characters/xavier-thyme/front.svg",
  25396. extra: 3733 / 3642,
  25397. bottom: 131 / 3869
  25398. }
  25399. },
  25400. frontRaven: {
  25401. height: math.unit(7 + 10 / 12, "feet"),
  25402. weight: math.unit(255, "lb"),
  25403. name: "Front (Raven)",
  25404. image: {
  25405. source: "./media/characters/xavier-thyme/front-raven.svg",
  25406. extra: 4385 / 3642,
  25407. bottom: 131 / 4517
  25408. }
  25409. },
  25410. },
  25411. [
  25412. {
  25413. name: "Normal",
  25414. height: math.unit(7 + 10 / 12, "feet"),
  25415. default: true
  25416. },
  25417. ]
  25418. ))
  25419. characterMakers.push(() => makeCharacter(
  25420. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25421. {
  25422. front: {
  25423. height: math.unit(1.6, "m"),
  25424. weight: math.unit(50, "kg"),
  25425. name: "Front",
  25426. image: {
  25427. source: "./media/characters/kiki/front.svg",
  25428. extra: 4682 / 3610,
  25429. bottom: 115 / 4777
  25430. }
  25431. },
  25432. },
  25433. [
  25434. {
  25435. name: "Normal",
  25436. height: math.unit(1.6, "meters"),
  25437. default: true
  25438. },
  25439. ]
  25440. ))
  25441. characterMakers.push(() => makeCharacter(
  25442. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25443. {
  25444. front: {
  25445. height: math.unit(50, "m"),
  25446. weight: math.unit(500, "tonnes"),
  25447. name: "Front",
  25448. image: {
  25449. source: "./media/characters/ryoko/front.svg",
  25450. extra: 4632 / 3926,
  25451. bottom: 193 / 4823
  25452. }
  25453. },
  25454. },
  25455. [
  25456. {
  25457. name: "Normal",
  25458. height: math.unit(50, "meters"),
  25459. default: true
  25460. },
  25461. ]
  25462. ))
  25463. characterMakers.push(() => makeCharacter(
  25464. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25465. {
  25466. front: {
  25467. height: math.unit(30, "m"),
  25468. weight: math.unit(22, "tonnes"),
  25469. name: "Front",
  25470. image: {
  25471. source: "./media/characters/elio/front.svg",
  25472. extra: 4582 / 3720,
  25473. bottom: 236 / 4828
  25474. }
  25475. },
  25476. },
  25477. [
  25478. {
  25479. name: "Normal",
  25480. height: math.unit(30, "meters"),
  25481. default: true
  25482. },
  25483. ]
  25484. ))
  25485. characterMakers.push(() => makeCharacter(
  25486. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25487. {
  25488. front: {
  25489. height: math.unit(6 + 3 / 12, "feet"),
  25490. weight: math.unit(120, "lb"),
  25491. name: "Front",
  25492. image: {
  25493. source: "./media/characters/azura/front.svg",
  25494. extra: 1149 / 1135,
  25495. bottom: 45 / 1194
  25496. }
  25497. },
  25498. frontClothed: {
  25499. height: math.unit(6 + 3 / 12, "feet"),
  25500. weight: math.unit(120, "lb"),
  25501. name: "Front (Clothed)",
  25502. image: {
  25503. source: "./media/characters/azura/front-clothed.svg",
  25504. extra: 1149 / 1135,
  25505. bottom: 45 / 1194
  25506. }
  25507. },
  25508. },
  25509. [
  25510. {
  25511. name: "Normal",
  25512. height: math.unit(6 + 3 / 12, "feet"),
  25513. default: true
  25514. },
  25515. {
  25516. name: "Macro",
  25517. height: math.unit(20 + 6 / 12, "feet")
  25518. },
  25519. {
  25520. name: "Megamacro",
  25521. height: math.unit(12, "miles")
  25522. },
  25523. {
  25524. name: "Gigamacro",
  25525. height: math.unit(10000, "miles")
  25526. },
  25527. {
  25528. name: "Teramacro",
  25529. height: math.unit(900000, "miles")
  25530. },
  25531. ]
  25532. ))
  25533. characterMakers.push(() => makeCharacter(
  25534. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25535. {
  25536. front: {
  25537. height: math.unit(12, "feet"),
  25538. weight: math.unit(1, "ton"),
  25539. capacity: math.unit(660000, "gallons"),
  25540. name: "Front",
  25541. image: {
  25542. source: "./media/characters/zeus/front.svg",
  25543. extra: 5005 / 4717,
  25544. bottom: 363 / 5388
  25545. }
  25546. },
  25547. },
  25548. [
  25549. {
  25550. name: "Normal",
  25551. height: math.unit(12, "feet")
  25552. },
  25553. {
  25554. name: "Preferred Size",
  25555. height: math.unit(0.5, "miles"),
  25556. default: true
  25557. },
  25558. {
  25559. name: "Giga Horse",
  25560. height: math.unit(300, "miles")
  25561. },
  25562. {
  25563. name: "Riding Planets",
  25564. height: math.unit(30, "megameters")
  25565. },
  25566. {
  25567. name: "Cosmic Giant",
  25568. height: math.unit(3, "zettameters")
  25569. },
  25570. {
  25571. name: "Breeding God",
  25572. height: math.unit(9.92e22, "yottameters")
  25573. },
  25574. ]
  25575. ))
  25576. characterMakers.push(() => makeCharacter(
  25577. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25578. {
  25579. side: {
  25580. height: math.unit(9, "feet"),
  25581. weight: math.unit(1500, "kg"),
  25582. name: "Side",
  25583. image: {
  25584. source: "./media/characters/fang/side.svg",
  25585. extra: 924 / 866,
  25586. bottom: 47.5 / 972.3
  25587. }
  25588. },
  25589. },
  25590. [
  25591. {
  25592. name: "Normal",
  25593. height: math.unit(9, "feet"),
  25594. default: true
  25595. },
  25596. {
  25597. name: "Macro",
  25598. height: math.unit(75 + 6 / 12, "feet")
  25599. },
  25600. {
  25601. name: "Teramacro",
  25602. height: math.unit(50000, "miles")
  25603. },
  25604. ]
  25605. ))
  25606. characterMakers.push(() => makeCharacter(
  25607. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25608. {
  25609. front: {
  25610. height: math.unit(10, "feet"),
  25611. weight: math.unit(2, "tons"),
  25612. name: "Front",
  25613. image: {
  25614. source: "./media/characters/rekhit/front.svg",
  25615. extra: 2796 / 2590,
  25616. bottom: 225 / 3022
  25617. }
  25618. },
  25619. },
  25620. [
  25621. {
  25622. name: "Normal",
  25623. height: math.unit(10, "feet"),
  25624. default: true
  25625. },
  25626. {
  25627. name: "Macro",
  25628. height: math.unit(500, "feet")
  25629. },
  25630. ]
  25631. ))
  25632. characterMakers.push(() => makeCharacter(
  25633. { name: "Dahlia Verrick" },
  25634. {
  25635. front: {
  25636. height: math.unit(7 + 6.451 / 12, "feet"),
  25637. weight: math.unit(310, "lb"),
  25638. name: "Front",
  25639. image: {
  25640. source: "./media/characters/dahlia-verrick/front.svg",
  25641. extra: 1488 / 1365,
  25642. bottom: 6.2 / 1495
  25643. }
  25644. },
  25645. back: {
  25646. height: math.unit(7 + 6.451 / 12, "feet"),
  25647. weight: math.unit(310, "lb"),
  25648. name: "Back",
  25649. image: {
  25650. source: "./media/characters/dahlia-verrick/back.svg",
  25651. extra: 1472 / 1351,
  25652. bottom: 5.28 / 1477
  25653. }
  25654. },
  25655. frontBusiness: {
  25656. height: math.unit(7 + 6.451 / 12, "feet"),
  25657. weight: math.unit(200, "lb"),
  25658. name: "Front (Business)",
  25659. image: {
  25660. source: "./media/characters/dahlia-verrick/front-business.svg",
  25661. extra: 1478 / 1381,
  25662. bottom: 5.5 / 1484
  25663. }
  25664. },
  25665. frontCasual: {
  25666. height: math.unit(7 + 6.451 / 12, "feet"),
  25667. weight: math.unit(200, "lb"),
  25668. name: "Front (Casual)",
  25669. image: {
  25670. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25671. extra: 1478 / 1381,
  25672. bottom: 5.5 / 1484
  25673. }
  25674. },
  25675. },
  25676. [
  25677. {
  25678. name: "Travel-Sized",
  25679. height: math.unit(7.45, "inches")
  25680. },
  25681. {
  25682. name: "Normal",
  25683. height: math.unit(7 + 6.451 / 12, "feet"),
  25684. default: true
  25685. },
  25686. {
  25687. name: "Hitting the Town",
  25688. height: math.unit(37 + 8 / 12, "feet")
  25689. },
  25690. {
  25691. name: "Stomp in the Suburbs",
  25692. height: math.unit(964 + 9.728 / 12, "feet")
  25693. },
  25694. {
  25695. name: "Sit on the City",
  25696. height: math.unit(61747 + 10.592 / 12, "feet")
  25697. },
  25698. {
  25699. name: "Glomp the Globe",
  25700. height: math.unit(252919327 + 4.832 / 12, "feet")
  25701. },
  25702. ]
  25703. ))
  25704. characterMakers.push(() => makeCharacter(
  25705. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25706. {
  25707. front: {
  25708. height: math.unit(6 + 4 / 12, "feet"),
  25709. weight: math.unit(320, "lb"),
  25710. name: "Front",
  25711. image: {
  25712. source: "./media/characters/balina-mahigan/front.svg",
  25713. extra: 447 / 428,
  25714. bottom: 18 / 466
  25715. }
  25716. },
  25717. back: {
  25718. height: math.unit(6 + 4 / 12, "feet"),
  25719. weight: math.unit(320, "lb"),
  25720. name: "Back",
  25721. image: {
  25722. source: "./media/characters/balina-mahigan/back.svg",
  25723. extra: 445 / 428,
  25724. bottom: 4.07 / 448
  25725. }
  25726. },
  25727. arm: {
  25728. height: math.unit(1.88, "feet"),
  25729. name: "Arm",
  25730. image: {
  25731. source: "./media/characters/balina-mahigan/arm.svg"
  25732. }
  25733. },
  25734. backPort: {
  25735. height: math.unit(0.685, "feet"),
  25736. name: "Back Port",
  25737. image: {
  25738. source: "./media/characters/balina-mahigan/back-port.svg"
  25739. }
  25740. },
  25741. hoofpaw: {
  25742. height: math.unit(1.41, "feet"),
  25743. name: "Hoofpaw",
  25744. image: {
  25745. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25746. }
  25747. },
  25748. leftHandBack: {
  25749. height: math.unit(0.938, "feet"),
  25750. name: "Left Hand (Back)",
  25751. image: {
  25752. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25753. }
  25754. },
  25755. leftHandFront: {
  25756. height: math.unit(0.938, "feet"),
  25757. name: "Left Hand (Front)",
  25758. image: {
  25759. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25760. }
  25761. },
  25762. rightHandBack: {
  25763. height: math.unit(0.95, "feet"),
  25764. name: "Right Hand (Back)",
  25765. image: {
  25766. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25767. }
  25768. },
  25769. rightHandFront: {
  25770. height: math.unit(0.95, "feet"),
  25771. name: "Right Hand (Front)",
  25772. image: {
  25773. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25774. }
  25775. },
  25776. },
  25777. [
  25778. {
  25779. name: "Normal",
  25780. height: math.unit(6 + 4 / 12, "feet"),
  25781. default: true
  25782. },
  25783. ]
  25784. ))
  25785. characterMakers.push(() => makeCharacter(
  25786. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25787. {
  25788. front: {
  25789. height: math.unit(6, "feet"),
  25790. weight: math.unit(320, "lb"),
  25791. name: "Front",
  25792. image: {
  25793. source: "./media/characters/balina-mejeri/front.svg",
  25794. extra: 517 / 488,
  25795. bottom: 44.2 / 561
  25796. }
  25797. },
  25798. },
  25799. [
  25800. {
  25801. name: "Normal",
  25802. height: math.unit(6 + 4 / 12, "feet")
  25803. },
  25804. {
  25805. name: "Business",
  25806. height: math.unit(155, "feet"),
  25807. default: true
  25808. },
  25809. ]
  25810. ))
  25811. characterMakers.push(() => makeCharacter(
  25812. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25813. {
  25814. kneeling: {
  25815. height: math.unit(6 + 4 / 12, "feet"),
  25816. weight: math.unit(300 * 20, "lb"),
  25817. name: "Kneeling",
  25818. image: {
  25819. source: "./media/characters/balbarian/kneeling.svg",
  25820. extra: 922 / 862,
  25821. bottom: 42.4 / 965
  25822. }
  25823. },
  25824. },
  25825. [
  25826. {
  25827. name: "Normal",
  25828. height: math.unit(6 + 4 / 12, "feet")
  25829. },
  25830. {
  25831. name: "Treasured",
  25832. height: math.unit(18 + 9 / 12, "feet"),
  25833. default: true
  25834. },
  25835. {
  25836. name: "Macro",
  25837. height: math.unit(900, "feet")
  25838. },
  25839. ]
  25840. ))
  25841. characterMakers.push(() => makeCharacter(
  25842. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25843. {
  25844. front: {
  25845. height: math.unit(6 + 4 / 12, "feet"),
  25846. weight: math.unit(325, "lb"),
  25847. name: "Front",
  25848. image: {
  25849. source: "./media/characters/balina-amarini/front.svg",
  25850. extra: 415 / 403,
  25851. bottom: 19 / 433.4
  25852. }
  25853. },
  25854. back: {
  25855. height: math.unit(6 + 4 / 12, "feet"),
  25856. weight: math.unit(325, "lb"),
  25857. name: "Back",
  25858. image: {
  25859. source: "./media/characters/balina-amarini/back.svg",
  25860. extra: 415 / 403,
  25861. bottom: 13.5 / 432
  25862. }
  25863. },
  25864. overdrive: {
  25865. height: math.unit(6 + 4 / 12, "feet"),
  25866. weight: math.unit(400, "lb"),
  25867. name: "Overdrive",
  25868. image: {
  25869. source: "./media/characters/balina-amarini/overdrive.svg",
  25870. extra: 269 / 259,
  25871. bottom: 12 / 282
  25872. }
  25873. },
  25874. },
  25875. [
  25876. {
  25877. name: "Boom",
  25878. height: math.unit(9 + 10 / 12, "feet"),
  25879. default: true
  25880. },
  25881. {
  25882. name: "Macro",
  25883. height: math.unit(280, "feet")
  25884. },
  25885. ]
  25886. ))
  25887. characterMakers.push(() => makeCharacter(
  25888. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25889. {
  25890. goddess: {
  25891. height: math.unit(600, "feet"),
  25892. weight: math.unit(2000000, "tons"),
  25893. name: "Goddess",
  25894. image: {
  25895. source: "./media/characters/lady-kubwa/goddess.svg",
  25896. extra: 1240.5 / 1223,
  25897. bottom: 22 / 1263
  25898. }
  25899. },
  25900. goddesser: {
  25901. height: math.unit(900, "feet"),
  25902. weight: math.unit(20000000, "lb"),
  25903. name: "Goddess-er",
  25904. image: {
  25905. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25906. extra: 899 / 888,
  25907. bottom: 12.6 / 912
  25908. }
  25909. },
  25910. },
  25911. [
  25912. {
  25913. name: "Macro",
  25914. height: math.unit(600, "feet"),
  25915. default: true
  25916. },
  25917. {
  25918. name: "Megamacro",
  25919. height: math.unit(250, "miles")
  25920. },
  25921. ]
  25922. ))
  25923. characterMakers.push(() => makeCharacter(
  25924. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25925. {
  25926. front: {
  25927. height: math.unit(7 + 7 / 12, "feet"),
  25928. weight: math.unit(250, "lb"),
  25929. name: "Front",
  25930. image: {
  25931. source: "./media/characters/tala-grovehorn/front.svg",
  25932. extra: 2636 / 2525,
  25933. bottom: 147 / 2781
  25934. }
  25935. },
  25936. back: {
  25937. height: math.unit(7 + 7 / 12, "feet"),
  25938. weight: math.unit(250, "lb"),
  25939. name: "Back",
  25940. image: {
  25941. source: "./media/characters/tala-grovehorn/back.svg",
  25942. extra: 2635 / 2539,
  25943. bottom: 100 / 2732.8
  25944. }
  25945. },
  25946. mouth: {
  25947. height: math.unit(1.15, "feet"),
  25948. name: "Mouth",
  25949. image: {
  25950. source: "./media/characters/tala-grovehorn/mouth.svg"
  25951. }
  25952. },
  25953. dick: {
  25954. height: math.unit(2.36, "feet"),
  25955. name: "Dick",
  25956. image: {
  25957. source: "./media/characters/tala-grovehorn/dick.svg"
  25958. }
  25959. },
  25960. slit: {
  25961. height: math.unit(0.61, "feet"),
  25962. name: "Slit",
  25963. image: {
  25964. source: "./media/characters/tala-grovehorn/slit.svg"
  25965. }
  25966. },
  25967. },
  25968. [
  25969. ]
  25970. ))
  25971. characterMakers.push(() => makeCharacter(
  25972. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25973. {
  25974. front: {
  25975. height: math.unit(7 + 7 / 12, "feet"),
  25976. weight: math.unit(225, "lb"),
  25977. name: "Front",
  25978. image: {
  25979. source: "./media/characters/epona/front.svg",
  25980. extra: 2445 / 2290,
  25981. bottom: 251 / 2696
  25982. }
  25983. },
  25984. back: {
  25985. height: math.unit(7 + 7 / 12, "feet"),
  25986. weight: math.unit(225, "lb"),
  25987. name: "Back",
  25988. image: {
  25989. source: "./media/characters/epona/back.svg",
  25990. extra: 2546 / 2408,
  25991. bottom: 44 / 2589
  25992. }
  25993. },
  25994. genitals: {
  25995. height: math.unit(1.5, "feet"),
  25996. name: "Genitals",
  25997. image: {
  25998. source: "./media/characters/epona/genitals.svg"
  25999. }
  26000. },
  26001. },
  26002. [
  26003. {
  26004. name: "Normal",
  26005. height: math.unit(7 + 7 / 12, "feet"),
  26006. default: true
  26007. },
  26008. ]
  26009. ))
  26010. characterMakers.push(() => makeCharacter(
  26011. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26012. {
  26013. front: {
  26014. height: math.unit(7, "feet"),
  26015. weight: math.unit(518, "lb"),
  26016. name: "Front",
  26017. image: {
  26018. source: "./media/characters/avia-bloodbourn/front.svg",
  26019. extra: 1466 / 1350,
  26020. bottom: 65 / 1527
  26021. }
  26022. },
  26023. },
  26024. [
  26025. ]
  26026. ))
  26027. characterMakers.push(() => makeCharacter(
  26028. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26029. {
  26030. front: {
  26031. height: math.unit(9.35, "feet"),
  26032. weight: math.unit(600, "lb"),
  26033. name: "Front",
  26034. image: {
  26035. source: "./media/characters/amera/front.svg",
  26036. extra: 891 / 818,
  26037. bottom: 30 / 922.7
  26038. }
  26039. },
  26040. back: {
  26041. height: math.unit(9.35, "feet"),
  26042. weight: math.unit(600, "lb"),
  26043. name: "Back",
  26044. image: {
  26045. source: "./media/characters/amera/back.svg",
  26046. extra: 876 / 824,
  26047. bottom: 6.8 / 884
  26048. }
  26049. },
  26050. dick: {
  26051. height: math.unit(2.14, "feet"),
  26052. name: "Dick",
  26053. image: {
  26054. source: "./media/characters/amera/dick.svg"
  26055. }
  26056. },
  26057. },
  26058. [
  26059. {
  26060. name: "Normal",
  26061. height: math.unit(9.35, "feet"),
  26062. default: true
  26063. },
  26064. ]
  26065. ))
  26066. characterMakers.push(() => makeCharacter(
  26067. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26068. {
  26069. kneeling: {
  26070. height: math.unit(3 + 4 / 12, "feet"),
  26071. weight: math.unit(90, "lb"),
  26072. name: "Kneeling",
  26073. image: {
  26074. source: "./media/characters/rosewen/kneeling.svg",
  26075. extra: 1835 / 1571,
  26076. bottom: 27.7 / 1862
  26077. }
  26078. },
  26079. },
  26080. [
  26081. {
  26082. name: "Normal",
  26083. height: math.unit(3 + 4 / 12, "feet"),
  26084. default: true
  26085. },
  26086. ]
  26087. ))
  26088. characterMakers.push(() => makeCharacter(
  26089. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26090. {
  26091. front: {
  26092. height: math.unit(5 + 10 / 12, "feet"),
  26093. weight: math.unit(200, "lb"),
  26094. name: "Front",
  26095. image: {
  26096. source: "./media/characters/sabah/front.svg",
  26097. extra: 849 / 763,
  26098. bottom: 33.9 / 881
  26099. }
  26100. },
  26101. },
  26102. [
  26103. {
  26104. name: "Normal",
  26105. height: math.unit(5 + 10 / 12, "feet"),
  26106. default: true
  26107. },
  26108. ]
  26109. ))
  26110. characterMakers.push(() => makeCharacter(
  26111. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26112. {
  26113. front: {
  26114. height: math.unit(3 + 5 / 12, "feet"),
  26115. weight: math.unit(40, "kg"),
  26116. name: "Front",
  26117. image: {
  26118. source: "./media/characters/purple-flame/front.svg",
  26119. extra: 1577 / 1412,
  26120. bottom: 97 / 1694
  26121. }
  26122. },
  26123. frontDressed: {
  26124. height: math.unit(3 + 5 / 12, "feet"),
  26125. weight: math.unit(40, "kg"),
  26126. name: "Front (Dressed)",
  26127. image: {
  26128. source: "./media/characters/purple-flame/front-dressed.svg",
  26129. extra: 1577 / 1412,
  26130. bottom: 97 / 1694
  26131. }
  26132. },
  26133. headphones: {
  26134. height: math.unit(0.85, "feet"),
  26135. name: "Headphones",
  26136. image: {
  26137. source: "./media/characters/purple-flame/headphones.svg"
  26138. }
  26139. },
  26140. },
  26141. [
  26142. {
  26143. name: "Really Small",
  26144. height: math.unit(5, "cm")
  26145. },
  26146. {
  26147. name: "Micro",
  26148. height: math.unit(1 + 5 / 12, "feet")
  26149. },
  26150. {
  26151. name: "Normal",
  26152. height: math.unit(3 + 5 / 12, "feet"),
  26153. default: true
  26154. },
  26155. {
  26156. name: "Minimacro",
  26157. height: math.unit(125, "feet")
  26158. },
  26159. {
  26160. name: "Macro",
  26161. height: math.unit(0.5, "miles")
  26162. },
  26163. {
  26164. name: "Megamacro",
  26165. height: math.unit(50, "miles")
  26166. },
  26167. {
  26168. name: "Gigantic",
  26169. height: math.unit(750, "miles")
  26170. },
  26171. {
  26172. name: "Planetary",
  26173. height: math.unit(15000, "miles")
  26174. },
  26175. ]
  26176. ))
  26177. characterMakers.push(() => makeCharacter(
  26178. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26179. {
  26180. front: {
  26181. height: math.unit(14, "feet"),
  26182. weight: math.unit(959, "lb"),
  26183. name: "Front",
  26184. image: {
  26185. source: "./media/characters/arsenal/front.svg",
  26186. extra: 2357 / 2157,
  26187. bottom: 93 / 2458
  26188. }
  26189. },
  26190. },
  26191. [
  26192. {
  26193. name: "Normal",
  26194. height: math.unit(14, "feet"),
  26195. default: true
  26196. },
  26197. ]
  26198. ))
  26199. characterMakers.push(() => makeCharacter(
  26200. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26201. {
  26202. front: {
  26203. height: math.unit(6, "feet"),
  26204. weight: math.unit(150, "lb"),
  26205. name: "Front",
  26206. image: {
  26207. source: "./media/characters/adira/front.svg",
  26208. extra: 1078 / 1029,
  26209. bottom: 87 / 1166
  26210. }
  26211. },
  26212. },
  26213. [
  26214. {
  26215. name: "Micro",
  26216. height: math.unit(4, "inches"),
  26217. default: true
  26218. },
  26219. {
  26220. name: "Macro",
  26221. height: math.unit(50, "feet")
  26222. },
  26223. ]
  26224. ))
  26225. characterMakers.push(() => makeCharacter(
  26226. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26227. {
  26228. front: {
  26229. height: math.unit(16, "feet"),
  26230. weight: math.unit(1000, "lb"),
  26231. name: "Front",
  26232. image: {
  26233. source: "./media/characters/grim/front.svg",
  26234. extra: 622 / 614,
  26235. bottom: 18.1 / 642
  26236. }
  26237. },
  26238. back: {
  26239. height: math.unit(16, "feet"),
  26240. weight: math.unit(1000, "lb"),
  26241. name: "Back",
  26242. image: {
  26243. source: "./media/characters/grim/back.svg",
  26244. extra: 610.6 / 602,
  26245. bottom: 40.8 / 652
  26246. }
  26247. },
  26248. hunched: {
  26249. height: math.unit(9.75, "feet"),
  26250. weight: math.unit(1000, "lb"),
  26251. name: "Hunched",
  26252. image: {
  26253. source: "./media/characters/grim/hunched.svg",
  26254. extra: 304 / 297,
  26255. bottom: 35.4 / 394
  26256. }
  26257. },
  26258. },
  26259. [
  26260. {
  26261. name: "Normal",
  26262. height: math.unit(16, "feet"),
  26263. default: true
  26264. },
  26265. ]
  26266. ))
  26267. characterMakers.push(() => makeCharacter(
  26268. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26269. {
  26270. front: {
  26271. height: math.unit(2.3, "meters"),
  26272. weight: math.unit(300, "lb"),
  26273. name: "Front",
  26274. image: {
  26275. source: "./media/characters/sinja/front-sfw.svg",
  26276. extra: 1393 / 1294,
  26277. bottom: 70 / 1463
  26278. }
  26279. },
  26280. frontNsfw: {
  26281. height: math.unit(2.3, "meters"),
  26282. weight: math.unit(300, "lb"),
  26283. name: "Front (NSFW)",
  26284. image: {
  26285. source: "./media/characters/sinja/front-nsfw.svg",
  26286. extra: 1393 / 1294,
  26287. bottom: 70 / 1463
  26288. }
  26289. },
  26290. back: {
  26291. height: math.unit(2.3, "meters"),
  26292. weight: math.unit(300, "lb"),
  26293. name: "Back",
  26294. image: {
  26295. source: "./media/characters/sinja/back.svg",
  26296. extra: 1393 / 1294,
  26297. bottom: 70 / 1463
  26298. }
  26299. },
  26300. head: {
  26301. height: math.unit(1.771, "feet"),
  26302. name: "Head",
  26303. image: {
  26304. source: "./media/characters/sinja/head.svg"
  26305. }
  26306. },
  26307. slit: {
  26308. height: math.unit(0.8, "feet"),
  26309. name: "Slit",
  26310. image: {
  26311. source: "./media/characters/sinja/slit.svg"
  26312. }
  26313. },
  26314. },
  26315. [
  26316. {
  26317. name: "Normal",
  26318. height: math.unit(2.3, "meters")
  26319. },
  26320. {
  26321. name: "Macro",
  26322. height: math.unit(91, "meters"),
  26323. default: true
  26324. },
  26325. {
  26326. name: "Megamacro",
  26327. height: math.unit(91440, "meters")
  26328. },
  26329. {
  26330. name: "Gigamacro",
  26331. height: math.unit(60960000, "meters")
  26332. },
  26333. {
  26334. name: "Teramacro",
  26335. height: math.unit(9144000000, "meters")
  26336. },
  26337. ]
  26338. ))
  26339. characterMakers.push(() => makeCharacter(
  26340. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26341. {
  26342. front: {
  26343. height: math.unit(1.7, "meters"),
  26344. weight: math.unit(130, "lb"),
  26345. name: "Front",
  26346. image: {
  26347. source: "./media/characters/kyu/front.svg",
  26348. extra: 415 / 395,
  26349. bottom: 5 / 420
  26350. }
  26351. },
  26352. head: {
  26353. height: math.unit(1.75, "feet"),
  26354. name: "Head",
  26355. image: {
  26356. source: "./media/characters/kyu/head.svg"
  26357. }
  26358. },
  26359. foot: {
  26360. height: math.unit(0.81, "feet"),
  26361. name: "Foot",
  26362. image: {
  26363. source: "./media/characters/kyu/foot.svg"
  26364. }
  26365. },
  26366. },
  26367. [
  26368. {
  26369. name: "Normal",
  26370. height: math.unit(1.7, "meters")
  26371. },
  26372. {
  26373. name: "Macro",
  26374. height: math.unit(131, "feet"),
  26375. default: true
  26376. },
  26377. {
  26378. name: "Megamacro",
  26379. height: math.unit(91440, "meters")
  26380. },
  26381. {
  26382. name: "Gigamacro",
  26383. height: math.unit(60960000, "meters")
  26384. },
  26385. {
  26386. name: "Teramacro",
  26387. height: math.unit(9144000000, "meters")
  26388. },
  26389. ]
  26390. ))
  26391. characterMakers.push(() => makeCharacter(
  26392. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26393. {
  26394. front: {
  26395. height: math.unit(7 + 1 / 12, "feet"),
  26396. weight: math.unit(250, "lb"),
  26397. name: "Front",
  26398. image: {
  26399. source: "./media/characters/joey/front.svg",
  26400. extra: 1791 / 1537,
  26401. bottom: 28 / 1816
  26402. }
  26403. },
  26404. },
  26405. [
  26406. {
  26407. name: "Micro",
  26408. height: math.unit(3, "inches")
  26409. },
  26410. {
  26411. name: "Normal",
  26412. height: math.unit(7 + 1 / 12, "feet"),
  26413. default: true
  26414. },
  26415. ]
  26416. ))
  26417. characterMakers.push(() => makeCharacter(
  26418. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26419. {
  26420. front: {
  26421. height: math.unit(165, "cm"),
  26422. weight: math.unit(140, "lb"),
  26423. name: "Front",
  26424. image: {
  26425. source: "./media/characters/sam-evans/front.svg",
  26426. extra: 3417 / 3230,
  26427. bottom: 41.3 / 3417
  26428. }
  26429. },
  26430. frontSixTails: {
  26431. height: math.unit(165, "cm"),
  26432. weight: math.unit(140, "lb"),
  26433. name: "Front-six-tails",
  26434. image: {
  26435. source: "./media/characters/sam-evans/front-six-tails.svg",
  26436. extra: 3417 / 3230,
  26437. bottom: 41.3 / 3417
  26438. }
  26439. },
  26440. back: {
  26441. height: math.unit(165, "cm"),
  26442. weight: math.unit(140, "lb"),
  26443. name: "Back",
  26444. image: {
  26445. source: "./media/characters/sam-evans/back.svg",
  26446. extra: 3227 / 3032,
  26447. bottom: 6.8 / 3234
  26448. }
  26449. },
  26450. face: {
  26451. height: math.unit(0.68, "feet"),
  26452. name: "Face",
  26453. image: {
  26454. source: "./media/characters/sam-evans/face.svg"
  26455. }
  26456. },
  26457. },
  26458. [
  26459. {
  26460. name: "Normal",
  26461. height: math.unit(165, "cm"),
  26462. default: true
  26463. },
  26464. {
  26465. name: "Macro",
  26466. height: math.unit(100, "meters")
  26467. },
  26468. {
  26469. name: "Macro+",
  26470. height: math.unit(800, "meters")
  26471. },
  26472. {
  26473. name: "Macro++",
  26474. height: math.unit(3, "km")
  26475. },
  26476. {
  26477. name: "Macro+++",
  26478. height: math.unit(30, "km")
  26479. },
  26480. ]
  26481. ))
  26482. characterMakers.push(() => makeCharacter(
  26483. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26484. {
  26485. front: {
  26486. height: math.unit(10, "feet"),
  26487. weight: math.unit(750, "lb"),
  26488. name: "Front",
  26489. image: {
  26490. source: "./media/characters/juliet-a/front.svg",
  26491. extra: 1766 / 1720,
  26492. bottom: 43 / 1809
  26493. }
  26494. },
  26495. back: {
  26496. height: math.unit(10, "feet"),
  26497. weight: math.unit(750, "lb"),
  26498. name: "Back",
  26499. image: {
  26500. source: "./media/characters/juliet-a/back.svg",
  26501. extra: 1781 / 1734,
  26502. bottom: 35 / 1810,
  26503. }
  26504. },
  26505. },
  26506. [
  26507. {
  26508. name: "Normal",
  26509. height: math.unit(10, "feet"),
  26510. default: true
  26511. },
  26512. {
  26513. name: "Dragon Form",
  26514. height: math.unit(250, "feet")
  26515. },
  26516. {
  26517. name: "Macro",
  26518. height: math.unit(1000, "feet")
  26519. },
  26520. {
  26521. name: "Megamacro",
  26522. height: math.unit(10000, "feet")
  26523. }
  26524. ]
  26525. ))
  26526. characterMakers.push(() => makeCharacter(
  26527. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26528. {
  26529. regular: {
  26530. height: math.unit(7 + 3 / 12, "feet"),
  26531. weight: math.unit(260, "lb"),
  26532. name: "Regular",
  26533. image: {
  26534. source: "./media/characters/wild/regular.svg",
  26535. extra: 97.45 / 92,
  26536. bottom: 6.8 / 104.3
  26537. }
  26538. },
  26539. biggums: {
  26540. height: math.unit(8 + 6 / 12, "feet"),
  26541. weight: math.unit(425, "lb"),
  26542. name: "Biggums",
  26543. image: {
  26544. source: "./media/characters/wild/biggums.svg",
  26545. extra: 97.45 / 92,
  26546. bottom: 7.5 / 132.34
  26547. }
  26548. },
  26549. mawRegular: {
  26550. height: math.unit(1.24, "feet"),
  26551. name: "Maw (Regular)",
  26552. image: {
  26553. source: "./media/characters/wild/maw.svg"
  26554. }
  26555. },
  26556. mawBiggums: {
  26557. height: math.unit(1.47, "feet"),
  26558. name: "Maw (Biggums)",
  26559. image: {
  26560. source: "./media/characters/wild/maw.svg"
  26561. }
  26562. },
  26563. },
  26564. [
  26565. {
  26566. name: "Normal",
  26567. height: math.unit(7 + 3 / 12, "feet"),
  26568. default: true
  26569. },
  26570. ]
  26571. ))
  26572. characterMakers.push(() => makeCharacter(
  26573. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26574. {
  26575. front: {
  26576. height: math.unit(2.5, "meters"),
  26577. weight: math.unit(200, "kg"),
  26578. name: "Front",
  26579. image: {
  26580. source: "./media/characters/vidar/front.svg",
  26581. extra: 2994 / 2795,
  26582. bottom: 56 / 3061
  26583. }
  26584. },
  26585. back: {
  26586. height: math.unit(2.5, "meters"),
  26587. weight: math.unit(200, "kg"),
  26588. name: "Back",
  26589. image: {
  26590. source: "./media/characters/vidar/back.svg",
  26591. extra: 3131 / 2928,
  26592. bottom: 13.5 / 3141.5
  26593. }
  26594. },
  26595. feral: {
  26596. height: math.unit(2.5, "meters"),
  26597. weight: math.unit(2000, "kg"),
  26598. name: "Feral",
  26599. image: {
  26600. source: "./media/characters/vidar/feral.svg",
  26601. extra: 2790 / 1765,
  26602. bottom: 6 / 2796
  26603. }
  26604. },
  26605. },
  26606. [
  26607. {
  26608. name: "Normal",
  26609. height: math.unit(2.5, "meters"),
  26610. default: true
  26611. },
  26612. {
  26613. name: "Macro",
  26614. height: math.unit(100, "meters")
  26615. },
  26616. ]
  26617. ))
  26618. characterMakers.push(() => makeCharacter(
  26619. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26620. {
  26621. front: {
  26622. height: math.unit(5 + 9 / 12, "feet"),
  26623. weight: math.unit(120, "lb"),
  26624. name: "Front",
  26625. image: {
  26626. source: "./media/characters/ash/front.svg",
  26627. extra: 2189 / 1961,
  26628. bottom: 5.2 / 2194
  26629. }
  26630. },
  26631. },
  26632. [
  26633. {
  26634. name: "Normal",
  26635. height: math.unit(5 + 9 / 12, "feet"),
  26636. default: true
  26637. },
  26638. ]
  26639. ))
  26640. characterMakers.push(() => makeCharacter(
  26641. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26642. {
  26643. front: {
  26644. height: math.unit(9, "feet"),
  26645. weight: math.unit(10000, "lb"),
  26646. name: "Front",
  26647. image: {
  26648. source: "./media/characters/gygabite/front.svg",
  26649. bottom: 31.7 / 537.8,
  26650. extra: 505 / 370
  26651. }
  26652. },
  26653. },
  26654. [
  26655. {
  26656. name: "Normal",
  26657. height: math.unit(9, "feet"),
  26658. default: true
  26659. },
  26660. ]
  26661. ))
  26662. characterMakers.push(() => makeCharacter(
  26663. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26664. {
  26665. front: {
  26666. height: math.unit(12, "feet"),
  26667. weight: math.unit(35000, "lb"),
  26668. name: "Front",
  26669. image: {
  26670. source: "./media/characters/p0tat0/front.svg",
  26671. extra: 1065 / 921,
  26672. bottom: 55.7 / 1121.25
  26673. }
  26674. },
  26675. },
  26676. [
  26677. {
  26678. name: "Normal",
  26679. height: math.unit(12, "feet"),
  26680. default: true
  26681. },
  26682. ]
  26683. ))
  26684. characterMakers.push(() => makeCharacter(
  26685. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26686. {
  26687. side: {
  26688. height: math.unit(6.5, "feet"),
  26689. weight: math.unit(800, "lb"),
  26690. name: "Side",
  26691. image: {
  26692. source: "./media/characters/dusk/side.svg",
  26693. extra: 615 / 373,
  26694. bottom: 53 / 664
  26695. }
  26696. },
  26697. sitting: {
  26698. height: math.unit(7, "feet"),
  26699. weight: math.unit(800, "lb"),
  26700. name: "Sitting",
  26701. image: {
  26702. source: "./media/characters/dusk/sitting.svg",
  26703. extra: 753 / 425,
  26704. bottom: 33 / 774
  26705. }
  26706. },
  26707. head: {
  26708. height: math.unit(6.1, "feet"),
  26709. name: "Head",
  26710. image: {
  26711. source: "./media/characters/dusk/head.svg"
  26712. }
  26713. },
  26714. },
  26715. [
  26716. {
  26717. name: "Normal",
  26718. height: math.unit(7, "feet"),
  26719. default: true
  26720. },
  26721. ]
  26722. ))
  26723. characterMakers.push(() => makeCharacter(
  26724. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26725. {
  26726. front: {
  26727. height: math.unit(15, "feet"),
  26728. weight: math.unit(7000, "lb"),
  26729. name: "Front",
  26730. image: {
  26731. source: "./media/characters/jay-direwolf/front.svg",
  26732. extra: 1810 / 1732,
  26733. bottom: 66 / 1892
  26734. }
  26735. },
  26736. },
  26737. [
  26738. {
  26739. name: "Normal",
  26740. height: math.unit(15, "feet"),
  26741. default: true
  26742. },
  26743. ]
  26744. ))
  26745. characterMakers.push(() => makeCharacter(
  26746. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26747. {
  26748. front: {
  26749. height: math.unit(4 + 9 / 12, "feet"),
  26750. weight: math.unit(130, "lb"),
  26751. name: "Front",
  26752. image: {
  26753. source: "./media/characters/anchovie/front.svg",
  26754. extra: 382 / 350,
  26755. bottom: 25 / 409
  26756. }
  26757. },
  26758. back: {
  26759. height: math.unit(4 + 9 / 12, "feet"),
  26760. weight: math.unit(130, "lb"),
  26761. name: "Back",
  26762. image: {
  26763. source: "./media/characters/anchovie/back.svg",
  26764. extra: 385 / 352,
  26765. bottom: 16.6 / 402
  26766. }
  26767. },
  26768. frontDressed: {
  26769. height: math.unit(4 + 9 / 12, "feet"),
  26770. weight: math.unit(130, "lb"),
  26771. name: "Front (Dressed)",
  26772. image: {
  26773. source: "./media/characters/anchovie/front-dressed.svg",
  26774. extra: 382 / 350,
  26775. bottom: 25 / 409
  26776. }
  26777. },
  26778. backDressed: {
  26779. height: math.unit(4 + 9 / 12, "feet"),
  26780. weight: math.unit(130, "lb"),
  26781. name: "Back (Dressed)",
  26782. image: {
  26783. source: "./media/characters/anchovie/back-dressed.svg",
  26784. extra: 385 / 352,
  26785. bottom: 16.6 / 402
  26786. }
  26787. },
  26788. },
  26789. [
  26790. {
  26791. name: "Micro",
  26792. height: math.unit(6.4, "inches")
  26793. },
  26794. {
  26795. name: "Normal",
  26796. height: math.unit(4 + 9 / 12, "feet"),
  26797. default: true
  26798. },
  26799. ]
  26800. ))
  26801. characterMakers.push(() => makeCharacter(
  26802. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26803. {
  26804. front: {
  26805. height: math.unit(2, "meters"),
  26806. weight: math.unit(180, "lb"),
  26807. name: "Front",
  26808. image: {
  26809. source: "./media/characters/acidrenamon/front.svg",
  26810. extra: 987 / 890,
  26811. bottom: 22.8 / 1009
  26812. }
  26813. },
  26814. back: {
  26815. height: math.unit(2, "meters"),
  26816. weight: math.unit(180, "lb"),
  26817. name: "Back",
  26818. image: {
  26819. source: "./media/characters/acidrenamon/back.svg",
  26820. extra: 983 / 891,
  26821. bottom: 8.4 / 992
  26822. }
  26823. },
  26824. head: {
  26825. height: math.unit(1.92, "feet"),
  26826. name: "Head",
  26827. image: {
  26828. source: "./media/characters/acidrenamon/head.svg"
  26829. }
  26830. },
  26831. rump: {
  26832. height: math.unit(1.72, "feet"),
  26833. name: "Rump",
  26834. image: {
  26835. source: "./media/characters/acidrenamon/rump.svg"
  26836. }
  26837. },
  26838. tail: {
  26839. height: math.unit(4.2, "feet"),
  26840. name: "Tail",
  26841. image: {
  26842. source: "./media/characters/acidrenamon/tail.svg"
  26843. }
  26844. },
  26845. },
  26846. [
  26847. {
  26848. name: "Normal",
  26849. height: math.unit(2, "meters"),
  26850. default: true
  26851. },
  26852. {
  26853. name: "Minimacro",
  26854. height: math.unit(7, "meters")
  26855. },
  26856. {
  26857. name: "Macro",
  26858. height: math.unit(200, "meters")
  26859. },
  26860. {
  26861. name: "Gigamacro",
  26862. height: math.unit(0.2, "earths")
  26863. },
  26864. ]
  26865. ))
  26866. characterMakers.push(() => makeCharacter(
  26867. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26868. {
  26869. front: {
  26870. height: math.unit(6, "feet"),
  26871. weight: math.unit(150, "lb"),
  26872. name: "Front",
  26873. image: {
  26874. source: "./media/characters/kenzie-lee/front.svg",
  26875. extra: 1525 / 1465,
  26876. bottom: 45 / 1570
  26877. }
  26878. },
  26879. side: {
  26880. height: math.unit(6, "feet"),
  26881. weight: math.unit(150, "lb"),
  26882. name: "Side",
  26883. image: {
  26884. source: "./media/characters/kenzie-lee/side.svg",
  26885. extra: 5505 / 5383,
  26886. bottom: 60 / 5573
  26887. }
  26888. },
  26889. paw: {
  26890. height: math.unit(0.57, "feet"),
  26891. name: "Paw",
  26892. image: {
  26893. source: "./media/characters/kenzie-lee/paw.svg"
  26894. }
  26895. },
  26896. },
  26897. [
  26898. {
  26899. name: "Normal",
  26900. height: math.unit(152, "feet"),
  26901. default: true
  26902. },
  26903. {
  26904. name: "Megamacro",
  26905. height: math.unit(7, "miles")
  26906. },
  26907. {
  26908. name: "Gigamacro",
  26909. height: math.unit(8000, "miles")
  26910. },
  26911. ]
  26912. ))
  26913. characterMakers.push(() => makeCharacter(
  26914. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26915. {
  26916. side: {
  26917. height: math.unit(6, "feet"),
  26918. weight: math.unit(150, "lb"),
  26919. name: "Side",
  26920. image: {
  26921. source: "./media/characters/withers/side.svg",
  26922. extra: 1830 / 1728,
  26923. bottom: 96 / 1927
  26924. }
  26925. },
  26926. front: {
  26927. height: math.unit(6, "feet"),
  26928. weight: math.unit(150, "lb"),
  26929. name: "Front",
  26930. image: {
  26931. source: "./media/characters/withers/front.svg",
  26932. extra: 1514 / 1438,
  26933. bottom: 118 / 1632
  26934. }
  26935. },
  26936. },
  26937. [
  26938. {
  26939. name: "Macro",
  26940. height: math.unit(168, "feet"),
  26941. default: true
  26942. },
  26943. {
  26944. name: "Megamacro",
  26945. height: math.unit(15, "miles")
  26946. }
  26947. ]
  26948. ))
  26949. characterMakers.push(() => makeCharacter(
  26950. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26951. {
  26952. front: {
  26953. height: math.unit(6 + 7 / 12, "feet"),
  26954. weight: math.unit(250, "lb"),
  26955. name: "Front",
  26956. image: {
  26957. source: "./media/characters/nemoskii/front.svg",
  26958. extra: 2270 / 1734,
  26959. bottom: 86 / 2354
  26960. }
  26961. },
  26962. back: {
  26963. height: math.unit(6 + 7 / 12, "feet"),
  26964. weight: math.unit(250, "lb"),
  26965. name: "Back",
  26966. image: {
  26967. source: "./media/characters/nemoskii/back.svg",
  26968. extra: 1845 / 1788,
  26969. bottom: 10.5 / 1852
  26970. }
  26971. },
  26972. head: {
  26973. height: math.unit(1.31, "feet"),
  26974. name: "Head",
  26975. image: {
  26976. source: "./media/characters/nemoskii/head.svg"
  26977. }
  26978. },
  26979. },
  26980. [
  26981. {
  26982. name: "Micro",
  26983. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26984. },
  26985. {
  26986. name: "Normal",
  26987. height: math.unit(6 + 7 / 12, "feet"),
  26988. default: true
  26989. },
  26990. {
  26991. name: "Macro",
  26992. height: math.unit((6 + 7 / 12) * 150, "feet")
  26993. },
  26994. {
  26995. name: "Macro+",
  26996. height: math.unit((6 + 7 / 12) * 500, "feet")
  26997. },
  26998. {
  26999. name: "Megamacro",
  27000. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27001. },
  27002. ]
  27003. ))
  27004. characterMakers.push(() => makeCharacter(
  27005. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27006. {
  27007. front: {
  27008. height: math.unit(1, "mile"),
  27009. weight: math.unit(265261.9, "lb"),
  27010. name: "Front",
  27011. image: {
  27012. source: "./media/characters/shui/front.svg",
  27013. extra: 1633 / 1564,
  27014. bottom: 91.5 / 1726
  27015. }
  27016. },
  27017. },
  27018. [
  27019. {
  27020. name: "Macro",
  27021. height: math.unit(1, "mile"),
  27022. default: true
  27023. },
  27024. ]
  27025. ))
  27026. characterMakers.push(() => makeCharacter(
  27027. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27028. {
  27029. front: {
  27030. height: math.unit(12 + 6 / 12, "feet"),
  27031. weight: math.unit(1342, "lb"),
  27032. name: "Front",
  27033. image: {
  27034. source: "./media/characters/arokh-takakura/front.svg",
  27035. extra: 1089 / 1043,
  27036. bottom: 77.4 / 1176.7
  27037. }
  27038. },
  27039. back: {
  27040. height: math.unit(12 + 6 / 12, "feet"),
  27041. weight: math.unit(1342, "lb"),
  27042. name: "Back",
  27043. image: {
  27044. source: "./media/characters/arokh-takakura/back.svg",
  27045. extra: 1046 / 1019,
  27046. bottom: 102 / 1150
  27047. }
  27048. },
  27049. },
  27050. [
  27051. {
  27052. name: "Big",
  27053. height: math.unit(12 + 6 / 12, "feet"),
  27054. default: true
  27055. },
  27056. ]
  27057. ))
  27058. characterMakers.push(() => makeCharacter(
  27059. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27060. {
  27061. front: {
  27062. height: math.unit(5 + 6 / 12, "feet"),
  27063. weight: math.unit(150, "lb"),
  27064. name: "Front",
  27065. image: {
  27066. source: "./media/characters/theo/front.svg",
  27067. extra: 1184 / 1131,
  27068. bottom: 7.4 / 1191
  27069. }
  27070. },
  27071. },
  27072. [
  27073. {
  27074. name: "Micro",
  27075. height: math.unit(5, "inches")
  27076. },
  27077. {
  27078. name: "Normal",
  27079. height: math.unit(5 + 6 / 12, "feet"),
  27080. default: true
  27081. },
  27082. ]
  27083. ))
  27084. characterMakers.push(() => makeCharacter(
  27085. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27086. {
  27087. front: {
  27088. height: math.unit(5 + 9 / 12, "feet"),
  27089. weight: math.unit(130, "lb"),
  27090. name: "Front",
  27091. image: {
  27092. source: "./media/characters/cecelia-swift/front.svg",
  27093. extra: 502 / 484,
  27094. bottom: 23 / 523
  27095. }
  27096. },
  27097. back: {
  27098. height: math.unit(5 + 9 / 12, "feet"),
  27099. weight: math.unit(130, "lb"),
  27100. name: "Back",
  27101. image: {
  27102. source: "./media/characters/cecelia-swift/back.svg",
  27103. extra: 499 / 485,
  27104. bottom: 12 / 511
  27105. }
  27106. },
  27107. head: {
  27108. height: math.unit(0.90, "feet"),
  27109. name: "Head",
  27110. image: {
  27111. source: "./media/characters/cecelia-swift/head.svg"
  27112. }
  27113. },
  27114. rump: {
  27115. height: math.unit(1.75, "feet"),
  27116. name: "Rump",
  27117. image: {
  27118. source: "./media/characters/cecelia-swift/rump.svg"
  27119. }
  27120. },
  27121. },
  27122. [
  27123. {
  27124. name: "Normal",
  27125. height: math.unit(5 + 9 / 12, "feet"),
  27126. default: true
  27127. },
  27128. {
  27129. name: "Big",
  27130. height: math.unit(50, "feet")
  27131. },
  27132. {
  27133. name: "Macro",
  27134. height: math.unit(100, "feet")
  27135. },
  27136. {
  27137. name: "Macro+",
  27138. height: math.unit(500, "feet")
  27139. },
  27140. {
  27141. name: "Macro++",
  27142. height: math.unit(1000, "feet")
  27143. },
  27144. ]
  27145. ))
  27146. characterMakers.push(() => makeCharacter(
  27147. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27148. {
  27149. front: {
  27150. height: math.unit(6, "feet"),
  27151. weight: math.unit(150, "lb"),
  27152. name: "Front",
  27153. image: {
  27154. source: "./media/characters/kaunan/front.svg",
  27155. extra: 2890 / 2523,
  27156. bottom: 49 / 2939
  27157. }
  27158. },
  27159. },
  27160. [
  27161. {
  27162. name: "Macro",
  27163. height: math.unit(150, "feet"),
  27164. default: true
  27165. },
  27166. ]
  27167. ))
  27168. characterMakers.push(() => makeCharacter(
  27169. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27170. {
  27171. front: {
  27172. height: math.unit(175, "cm"),
  27173. weight: math.unit(60, "kg"),
  27174. name: "Front",
  27175. image: {
  27176. source: "./media/characters/fei/front.svg",
  27177. extra: 2581 / 2400,
  27178. bottom: 82.2 / 2663
  27179. }
  27180. },
  27181. },
  27182. [
  27183. {
  27184. name: "Mortal",
  27185. height: math.unit(175, "cm")
  27186. },
  27187. {
  27188. name: "Normal",
  27189. height: math.unit(3500, "m"),
  27190. default: true
  27191. },
  27192. {
  27193. name: "Stroll",
  27194. height: math.unit(17.5, "km")
  27195. },
  27196. {
  27197. name: "Showoff",
  27198. height: math.unit(175, "km")
  27199. },
  27200. ]
  27201. ))
  27202. characterMakers.push(() => makeCharacter(
  27203. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27204. {
  27205. front: {
  27206. height: math.unit(7, "feet"),
  27207. weight: math.unit(1000, "kg"),
  27208. name: "Front",
  27209. image: {
  27210. source: "./media/characters/edrax/front.svg",
  27211. extra: 2838 / 2550,
  27212. bottom: 130 / 2968
  27213. }
  27214. },
  27215. },
  27216. [
  27217. {
  27218. name: "Small",
  27219. height: math.unit(7, "feet")
  27220. },
  27221. {
  27222. name: "Normal",
  27223. height: math.unit(1500, "meters")
  27224. },
  27225. {
  27226. name: "Mega",
  27227. height: math.unit(12000000, "km"),
  27228. default: true
  27229. },
  27230. {
  27231. name: "Megamacro",
  27232. height: math.unit(10600000, "lightyears")
  27233. },
  27234. {
  27235. name: "Hypermacro",
  27236. height: math.unit(256, "yottameters")
  27237. },
  27238. ]
  27239. ))
  27240. characterMakers.push(() => makeCharacter(
  27241. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27242. {
  27243. front: {
  27244. height: math.unit(10, "feet"),
  27245. weight: math.unit(750, "lb"),
  27246. name: "Front",
  27247. image: {
  27248. source: "./media/characters/clove/front.svg",
  27249. extra: 2031 / 1860,
  27250. bottom: 47.8 / 2080
  27251. }
  27252. },
  27253. back: {
  27254. height: math.unit(10, "feet"),
  27255. weight: math.unit(750, "lb"),
  27256. name: "Back",
  27257. image: {
  27258. source: "./media/characters/clove/back.svg",
  27259. extra: 2025 / 1859,
  27260. bottom: 46 / 2071
  27261. }
  27262. },
  27263. },
  27264. [
  27265. {
  27266. name: "Normal",
  27267. height: math.unit(10, "feet"),
  27268. default: true
  27269. },
  27270. ]
  27271. ))
  27272. characterMakers.push(() => makeCharacter(
  27273. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27274. {
  27275. front: {
  27276. height: math.unit(4, "feet"),
  27277. weight: math.unit(50, "lb"),
  27278. name: "Front",
  27279. image: {
  27280. source: "./media/characters/alex-rabbit/front.svg",
  27281. extra: 507 / 458,
  27282. bottom: 18.5 / 527
  27283. }
  27284. },
  27285. back: {
  27286. height: math.unit(4, "feet"),
  27287. weight: math.unit(50, "lb"),
  27288. name: "Back",
  27289. image: {
  27290. source: "./media/characters/alex-rabbit/back.svg",
  27291. extra: 502 / 460,
  27292. bottom: 18.9 / 521
  27293. }
  27294. },
  27295. },
  27296. [
  27297. {
  27298. name: "Normal",
  27299. height: math.unit(4, "feet"),
  27300. default: true
  27301. },
  27302. ]
  27303. ))
  27304. characterMakers.push(() => makeCharacter(
  27305. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27306. {
  27307. front: {
  27308. height: math.unit(1 + 3 / 12, "feet"),
  27309. weight: math.unit(80, "lb"),
  27310. name: "Front",
  27311. image: {
  27312. source: "./media/characters/zander-rose/front.svg",
  27313. extra: 916 / 797,
  27314. bottom: 17 / 933
  27315. }
  27316. },
  27317. back: {
  27318. height: math.unit(1 + 3 / 12, "feet"),
  27319. weight: math.unit(80, "lb"),
  27320. name: "Back",
  27321. image: {
  27322. source: "./media/characters/zander-rose/back.svg",
  27323. extra: 903 / 779,
  27324. bottom: 31 / 934
  27325. }
  27326. },
  27327. },
  27328. [
  27329. {
  27330. name: "Normal",
  27331. height: math.unit(1 + 3 / 12, "feet"),
  27332. default: true
  27333. },
  27334. ]
  27335. ))
  27336. characterMakers.push(() => makeCharacter(
  27337. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27338. {
  27339. anthro: {
  27340. height: math.unit(6, "feet"),
  27341. weight: math.unit(150, "lb"),
  27342. name: "Anthro",
  27343. image: {
  27344. source: "./media/characters/razz/anthro.svg",
  27345. extra: 1437 / 1343,
  27346. bottom: 48 / 1485
  27347. }
  27348. },
  27349. feral: {
  27350. height: math.unit(6, "feet"),
  27351. weight: math.unit(150, "lb"),
  27352. name: "Feral",
  27353. image: {
  27354. source: "./media/characters/razz/feral.svg",
  27355. extra: 2569 / 1385,
  27356. bottom: 95 / 2664
  27357. }
  27358. },
  27359. },
  27360. [
  27361. {
  27362. name: "Normal",
  27363. height: math.unit(6, "feet"),
  27364. default: true
  27365. },
  27366. ]
  27367. ))
  27368. characterMakers.push(() => makeCharacter(
  27369. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27370. {
  27371. front: {
  27372. height: math.unit(9 + 4 / 12, "feet"),
  27373. weight: math.unit(500, "lb"),
  27374. name: "Front",
  27375. image: {
  27376. source: "./media/characters/morrigan/front.svg",
  27377. extra: 2707 / 2579,
  27378. bottom: 156 / 2863
  27379. }
  27380. },
  27381. },
  27382. [
  27383. {
  27384. name: "Normal",
  27385. height: math.unit(9 + 4 / 12, "feet"),
  27386. default: true
  27387. },
  27388. ]
  27389. ))
  27390. characterMakers.push(() => makeCharacter(
  27391. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27392. {
  27393. front: {
  27394. height: math.unit(5, "stories"),
  27395. weight: math.unit(4000, "lb"),
  27396. name: "Front",
  27397. image: {
  27398. source: "./media/characters/jenene/front.svg",
  27399. extra: 1780 / 1710,
  27400. bottom: 57 / 1837
  27401. }
  27402. },
  27403. },
  27404. [
  27405. {
  27406. name: "Normal",
  27407. height: math.unit(5, "stories"),
  27408. default: true
  27409. },
  27410. ]
  27411. ))
  27412. characterMakers.push(() => makeCharacter(
  27413. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27414. {
  27415. front: {
  27416. height: math.unit(6, "feet"),
  27417. weight: math.unit(150, "lb"),
  27418. name: "Front",
  27419. image: {
  27420. source: "./media/characters/vix-archaser/front.svg",
  27421. extra: 2767 / 2562,
  27422. bottom: 36 / 2803
  27423. }
  27424. },
  27425. },
  27426. [
  27427. {
  27428. name: "Micro",
  27429. height: math.unit(1, "foot")
  27430. },
  27431. {
  27432. name: "Normal",
  27433. height: math.unit(6 + 5 / 12, "feet")
  27434. },
  27435. {
  27436. name: "Minimacro",
  27437. height: math.unit(500, "feet")
  27438. },
  27439. {
  27440. name: "Macro",
  27441. height: math.unit(4, "miles")
  27442. },
  27443. {
  27444. name: "Megamacro",
  27445. height: math.unit(250, "miles"),
  27446. default: true
  27447. },
  27448. {
  27449. name: "Gigamacro",
  27450. height: math.unit(1, "universe")
  27451. },
  27452. {
  27453. name: "Endgame",
  27454. height: math.unit(100, "multiverses")
  27455. }
  27456. ]
  27457. ))
  27458. characterMakers.push(() => makeCharacter(
  27459. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27460. {
  27461. taurSfw: {
  27462. height: math.unit(10, "meters"),
  27463. weight: math.unit(17500, "kg"),
  27464. name: "Taur",
  27465. image: {
  27466. source: "./media/characters/faey/taur-sfw.svg",
  27467. extra: 1200 / 968,
  27468. bottom: 41 / 1241
  27469. }
  27470. },
  27471. chestmaw: {
  27472. height: math.unit(2.01, "meters"),
  27473. name: "Chestmaw",
  27474. image: {
  27475. source: "./media/characters/faey/chestmaw.svg"
  27476. }
  27477. },
  27478. foot: {
  27479. height: math.unit(2.43, "meters"),
  27480. name: "Foot",
  27481. image: {
  27482. source: "./media/characters/faey/foot.svg"
  27483. }
  27484. },
  27485. jaws: {
  27486. height: math.unit(1.66, "meters"),
  27487. name: "Jaws",
  27488. image: {
  27489. source: "./media/characters/faey/jaws.svg"
  27490. }
  27491. },
  27492. tongues: {
  27493. height: math.unit(2.01, "meters"),
  27494. name: "Tongues",
  27495. image: {
  27496. source: "./media/characters/faey/tongues.svg"
  27497. }
  27498. },
  27499. },
  27500. [
  27501. {
  27502. name: "Small",
  27503. height: math.unit(10, "meters"),
  27504. default: true
  27505. },
  27506. {
  27507. name: "Big",
  27508. height: math.unit(500000, "km")
  27509. },
  27510. ]
  27511. ))
  27512. characterMakers.push(() => makeCharacter(
  27513. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27514. {
  27515. front: {
  27516. height: math.unit(7, "feet"),
  27517. weight: math.unit(275, "lb"),
  27518. name: "Front",
  27519. image: {
  27520. source: "./media/characters/roku/front.svg",
  27521. extra: 903 / 878,
  27522. bottom: 37 / 940
  27523. }
  27524. },
  27525. },
  27526. [
  27527. {
  27528. name: "Normal",
  27529. height: math.unit(7, "feet"),
  27530. default: true
  27531. },
  27532. {
  27533. name: "Macro",
  27534. height: math.unit(500, "feet")
  27535. },
  27536. {
  27537. name: "Megamacro",
  27538. height: math.unit(200, "miles")
  27539. },
  27540. ]
  27541. ))
  27542. characterMakers.push(() => makeCharacter(
  27543. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27544. {
  27545. front: {
  27546. height: math.unit(6 + 2 / 12, "feet"),
  27547. weight: math.unit(150, "lb"),
  27548. name: "Front",
  27549. image: {
  27550. source: "./media/characters/lira/front.svg",
  27551. extra: 1727 / 1605,
  27552. bottom: 26 / 1753
  27553. }
  27554. },
  27555. back: {
  27556. height: math.unit(6 + 2 / 12, "feet"),
  27557. weight: math.unit(150, "lb"),
  27558. name: "Back",
  27559. image: {
  27560. source: "./media/characters/lira/back.svg",
  27561. extra: 1713 / 159,
  27562. bottom: 20 / 1733
  27563. }
  27564. },
  27565. hand: {
  27566. height: math.unit(0.75, "feet"),
  27567. name: "Hand",
  27568. image: {
  27569. source: "./media/characters/lira/hand.svg"
  27570. }
  27571. },
  27572. maw: {
  27573. height: math.unit(0.65, "feet"),
  27574. name: "Maw",
  27575. image: {
  27576. source: "./media/characters/lira/maw.svg"
  27577. }
  27578. },
  27579. pawDigi: {
  27580. height: math.unit(1.6, "feet"),
  27581. name: "Paw Digi",
  27582. image: {
  27583. source: "./media/characters/lira/paw-digi.svg"
  27584. }
  27585. },
  27586. pawPlanti: {
  27587. height: math.unit(1.4, "feet"),
  27588. name: "Paw Planti",
  27589. image: {
  27590. source: "./media/characters/lira/paw-planti.svg"
  27591. }
  27592. },
  27593. },
  27594. [
  27595. {
  27596. name: "Normal",
  27597. height: math.unit(6 + 2 / 12, "feet"),
  27598. default: true
  27599. },
  27600. {
  27601. name: "Macro",
  27602. height: math.unit(100, "feet")
  27603. },
  27604. {
  27605. name: "Macro²",
  27606. height: math.unit(1600, "feet")
  27607. },
  27608. {
  27609. name: "Planetary",
  27610. height: math.unit(20, "earths")
  27611. },
  27612. ]
  27613. ))
  27614. characterMakers.push(() => makeCharacter(
  27615. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27616. {
  27617. front: {
  27618. height: math.unit(6, "feet"),
  27619. weight: math.unit(150, "lb"),
  27620. name: "Front",
  27621. image: {
  27622. source: "./media/characters/hadjet/front.svg",
  27623. extra: 1480 / 1346,
  27624. bottom: 26 / 1506
  27625. }
  27626. },
  27627. frontNsfw: {
  27628. height: math.unit(6, "feet"),
  27629. weight: math.unit(150, "lb"),
  27630. name: "Front (NSFW)",
  27631. image: {
  27632. source: "./media/characters/hadjet/front-nsfw.svg",
  27633. extra: 1440 / 1358,
  27634. bottom: 52 / 1492
  27635. }
  27636. },
  27637. },
  27638. [
  27639. {
  27640. name: "Macro",
  27641. height: math.unit(10, "stories"),
  27642. default: true
  27643. },
  27644. {
  27645. name: "Megamacro",
  27646. height: math.unit(1.5, "miles")
  27647. },
  27648. {
  27649. name: "Megamacro+",
  27650. height: math.unit(5, "miles")
  27651. },
  27652. ]
  27653. ))
  27654. characterMakers.push(() => makeCharacter(
  27655. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27656. {
  27657. side: {
  27658. height: math.unit(106, "feet"),
  27659. weight: math.unit(500, "tonnes"),
  27660. name: "Side",
  27661. image: {
  27662. source: "./media/characters/kodran/side.svg",
  27663. extra: 553 / 480,
  27664. bottom: 33 / 586
  27665. }
  27666. },
  27667. front: {
  27668. height: math.unit(132, "feet"),
  27669. weight: math.unit(500, "tonnes"),
  27670. name: "Front",
  27671. image: {
  27672. source: "./media/characters/kodran/front.svg",
  27673. extra: 667 / 643,
  27674. bottom: 42 / 709
  27675. }
  27676. },
  27677. flying: {
  27678. height: math.unit(350, "feet"),
  27679. weight: math.unit(500, "tonnes"),
  27680. name: "Flying",
  27681. image: {
  27682. source: "./media/characters/kodran/flying.svg"
  27683. }
  27684. },
  27685. foot: {
  27686. height: math.unit(33, "feet"),
  27687. name: "Foot",
  27688. image: {
  27689. source: "./media/characters/kodran/foot.svg"
  27690. }
  27691. },
  27692. footFront: {
  27693. height: math.unit(19, "feet"),
  27694. name: "Foot (Front)",
  27695. image: {
  27696. source: "./media/characters/kodran/foot-front.svg",
  27697. extra: 261 / 261,
  27698. bottom: 91 / 352
  27699. }
  27700. },
  27701. headFront: {
  27702. height: math.unit(53, "feet"),
  27703. name: "Head (Front)",
  27704. image: {
  27705. source: "./media/characters/kodran/head-front.svg"
  27706. }
  27707. },
  27708. headSide: {
  27709. height: math.unit(65, "feet"),
  27710. name: "Head (Side)",
  27711. image: {
  27712. source: "./media/characters/kodran/head-side.svg"
  27713. }
  27714. },
  27715. throat: {
  27716. height: math.unit(79, "feet"),
  27717. name: "Throat",
  27718. image: {
  27719. source: "./media/characters/kodran/throat.svg"
  27720. }
  27721. },
  27722. },
  27723. [
  27724. {
  27725. name: "Large",
  27726. height: math.unit(106, "feet"),
  27727. default: true
  27728. },
  27729. ]
  27730. ))
  27731. characterMakers.push(() => makeCharacter(
  27732. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27733. {
  27734. side: {
  27735. height: math.unit(11, "feet"),
  27736. weight: math.unit(150, "lb"),
  27737. name: "Side",
  27738. image: {
  27739. source: "./media/characters/pyxaron/side.svg",
  27740. extra: 305 / 195,
  27741. bottom: 17 / 322
  27742. }
  27743. },
  27744. },
  27745. [
  27746. {
  27747. name: "Normal",
  27748. height: math.unit(11, "feet"),
  27749. default: true
  27750. },
  27751. ]
  27752. ))
  27753. characterMakers.push(() => makeCharacter(
  27754. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27755. {
  27756. front: {
  27757. height: math.unit(6, "feet"),
  27758. weight: math.unit(150, "lb"),
  27759. name: "Front",
  27760. image: {
  27761. source: "./media/characters/meep/front.svg",
  27762. extra: 88 / 80,
  27763. bottom: 6 / 94
  27764. }
  27765. },
  27766. },
  27767. [
  27768. {
  27769. name: "Fun Sized",
  27770. height: math.unit(2, "inches"),
  27771. default: true
  27772. },
  27773. {
  27774. name: "Friend Sized",
  27775. height: math.unit(8, "inches")
  27776. },
  27777. ]
  27778. ))
  27779. characterMakers.push(() => makeCharacter(
  27780. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27781. {
  27782. front: {
  27783. height: math.unit(15, "feet"),
  27784. weight: math.unit(2500, "lb"),
  27785. name: "Front",
  27786. image: {
  27787. source: "./media/characters/holly-rabbit/front.svg",
  27788. extra: 1433 / 1233,
  27789. bottom: 125 / 1558
  27790. }
  27791. },
  27792. dick: {
  27793. height: math.unit(4.6, "feet"),
  27794. name: "Dick",
  27795. image: {
  27796. source: "./media/characters/holly-rabbit/dick.svg"
  27797. }
  27798. },
  27799. },
  27800. [
  27801. {
  27802. name: "Normal",
  27803. height: math.unit(15, "feet"),
  27804. default: true
  27805. },
  27806. {
  27807. name: "Macro",
  27808. height: math.unit(250, "feet")
  27809. },
  27810. {
  27811. name: "Macro+",
  27812. height: math.unit(2500, "feet")
  27813. },
  27814. ]
  27815. ))
  27816. characterMakers.push(() => makeCharacter(
  27817. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27818. {
  27819. front: {
  27820. height: math.unit(3.02, "meters"),
  27821. weight: math.unit(500, "kg"),
  27822. name: "Front",
  27823. image: {
  27824. source: "./media/characters/drena/front.svg",
  27825. extra: 282 / 243,
  27826. bottom: 8 / 290
  27827. }
  27828. },
  27829. side: {
  27830. height: math.unit(3.02, "meters"),
  27831. weight: math.unit(500, "kg"),
  27832. name: "Side",
  27833. image: {
  27834. source: "./media/characters/drena/side.svg",
  27835. extra: 280 / 245,
  27836. bottom: 10 / 290
  27837. }
  27838. },
  27839. back: {
  27840. height: math.unit(3.02, "meters"),
  27841. weight: math.unit(500, "kg"),
  27842. name: "Back",
  27843. image: {
  27844. source: "./media/characters/drena/back.svg",
  27845. extra: 278 / 243,
  27846. bottom: 2 / 280
  27847. }
  27848. },
  27849. foot: {
  27850. height: math.unit(0.75, "meters"),
  27851. name: "Foot",
  27852. image: {
  27853. source: "./media/characters/drena/foot.svg"
  27854. }
  27855. },
  27856. maw: {
  27857. height: math.unit(0.82, "meters"),
  27858. name: "Maw",
  27859. image: {
  27860. source: "./media/characters/drena/maw.svg"
  27861. }
  27862. },
  27863. rump: {
  27864. height: math.unit(0.93, "meters"),
  27865. name: "Rump",
  27866. image: {
  27867. source: "./media/characters/drena/rump.svg"
  27868. }
  27869. },
  27870. },
  27871. [
  27872. {
  27873. name: "Normal",
  27874. height: math.unit(3.02, "meters"),
  27875. default: true
  27876. },
  27877. ]
  27878. ))
  27879. characterMakers.push(() => makeCharacter(
  27880. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27881. {
  27882. front: {
  27883. height: math.unit(6 + 4 / 12, "feet"),
  27884. weight: math.unit(250, "lb"),
  27885. name: "Front",
  27886. image: {
  27887. source: "./media/characters/remmyzilla/front.svg",
  27888. extra: 4033 / 3588,
  27889. bottom: 123 / 4156
  27890. }
  27891. },
  27892. back: {
  27893. height: math.unit(6 + 4 / 12, "feet"),
  27894. weight: math.unit(250, "lb"),
  27895. name: "Back",
  27896. image: {
  27897. source: "./media/characters/remmyzilla/back.svg",
  27898. extra: 2687 / 2555,
  27899. bottom: 48 / 2735
  27900. }
  27901. },
  27902. frontFancy: {
  27903. height: math.unit(6 + 4 / 12, "feet"),
  27904. weight: math.unit(250, "lb"),
  27905. name: "Front (Fancy)",
  27906. image: {
  27907. source: "./media/characters/remmyzilla/front-fancy.svg",
  27908. extra: 4119 / 3419,
  27909. bottom: 237 / 4356
  27910. }
  27911. },
  27912. paw: {
  27913. height: math.unit(1.73, "feet"),
  27914. name: "Paw",
  27915. image: {
  27916. source: "./media/characters/remmyzilla/paw.svg"
  27917. }
  27918. },
  27919. maw: {
  27920. height: math.unit(1.73, "feet"),
  27921. name: "Maw",
  27922. image: {
  27923. source: "./media/characters/remmyzilla/maw.svg"
  27924. }
  27925. },
  27926. },
  27927. [
  27928. {
  27929. name: "Normal",
  27930. height: math.unit(6 + 4 / 12, "feet")
  27931. },
  27932. {
  27933. name: "Minimacro",
  27934. height: math.unit(12 + 8 / 12, "feet")
  27935. },
  27936. {
  27937. name: "Normal",
  27938. height: math.unit(640, "feet"),
  27939. default: true
  27940. },
  27941. {
  27942. name: "Megamacro",
  27943. height: math.unit(6400, "feet")
  27944. },
  27945. {
  27946. name: "Gigamacro",
  27947. height: math.unit(64000, "miles")
  27948. },
  27949. ]
  27950. ))
  27951. characterMakers.push(() => makeCharacter(
  27952. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27953. {
  27954. front: {
  27955. height: math.unit(2.5, "meters"),
  27956. weight: math.unit(300, "lb"),
  27957. name: "Front",
  27958. image: {
  27959. source: "./media/characters/lawrence/front.svg",
  27960. extra: 357 / 335,
  27961. bottom: 30 / 387
  27962. }
  27963. },
  27964. back: {
  27965. height: math.unit(2.5, "meters"),
  27966. weight: math.unit(300, "lb"),
  27967. name: "Back",
  27968. image: {
  27969. source: "./media/characters/lawrence/back.svg",
  27970. extra: 357 / 338,
  27971. bottom: 16 / 373
  27972. }
  27973. },
  27974. head: {
  27975. height: math.unit(0.9, "meter"),
  27976. name: "Head",
  27977. image: {
  27978. source: "./media/characters/lawrence/head.svg"
  27979. }
  27980. },
  27981. maw: {
  27982. height: math.unit(0.7, "meter"),
  27983. name: "Maw",
  27984. image: {
  27985. source: "./media/characters/lawrence/maw.svg"
  27986. }
  27987. },
  27988. footBottom: {
  27989. height: math.unit(0.5, "meter"),
  27990. name: "Foot (Bottom)",
  27991. image: {
  27992. source: "./media/characters/lawrence/foot-bottom.svg"
  27993. }
  27994. },
  27995. footTop: {
  27996. height: math.unit(0.5, "meter"),
  27997. name: "Foot (Top)",
  27998. image: {
  27999. source: "./media/characters/lawrence/foot-top.svg"
  28000. }
  28001. },
  28002. },
  28003. [
  28004. {
  28005. name: "Normal",
  28006. height: math.unit(2.5, "meters"),
  28007. default: true
  28008. },
  28009. {
  28010. name: "Macro",
  28011. height: math.unit(95, "meters")
  28012. },
  28013. {
  28014. name: "Megamacro",
  28015. height: math.unit(150, "km")
  28016. },
  28017. ]
  28018. ))
  28019. characterMakers.push(() => makeCharacter(
  28020. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28021. {
  28022. front: {
  28023. height: math.unit(4.2, "meters"),
  28024. name: "Front",
  28025. image: {
  28026. source: "./media/characters/sydney/front.svg",
  28027. extra: 1323 / 1277,
  28028. bottom: 111 / 1434
  28029. }
  28030. },
  28031. },
  28032. [
  28033. {
  28034. name: "Normal",
  28035. height: math.unit(4.2, "meters"),
  28036. default: true
  28037. },
  28038. ]
  28039. ))
  28040. characterMakers.push(() => makeCharacter(
  28041. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28042. {
  28043. back: {
  28044. height: math.unit(201, "feet"),
  28045. name: "Back",
  28046. image: {
  28047. source: "./media/characters/jessica/back.svg",
  28048. extra: 273 / 259,
  28049. bottom: 7 / 280
  28050. }
  28051. },
  28052. },
  28053. [
  28054. {
  28055. name: "Normal",
  28056. height: math.unit(201, "feet"),
  28057. default: true
  28058. },
  28059. {
  28060. name: "Megamacro",
  28061. height: math.unit(8, "miles")
  28062. },
  28063. ]
  28064. ))
  28065. characterMakers.push(() => makeCharacter(
  28066. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28067. {
  28068. side: {
  28069. height: math.unit(320, "cm"),
  28070. name: "Side",
  28071. image: {
  28072. source: "./media/characters/victoria/side.svg",
  28073. extra: 778 / 346,
  28074. bottom: 56 / 834
  28075. }
  28076. },
  28077. maw: {
  28078. height: math.unit(5.9, "feet"),
  28079. name: "Maw",
  28080. image: {
  28081. source: "./media/characters/victoria/maw.svg"
  28082. }
  28083. },
  28084. },
  28085. [
  28086. {
  28087. name: "Normal",
  28088. height: math.unit(320, "cm"),
  28089. default: true
  28090. },
  28091. ]
  28092. ))
  28093. characterMakers.push(() => makeCharacter(
  28094. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28095. {
  28096. front: {
  28097. height: math.unit(5 + 6 / 12, "feet"),
  28098. name: "Front",
  28099. image: {
  28100. source: "./media/characters/cat/front.svg",
  28101. extra: 1374 / 1257,
  28102. bottom: 59 / 1433
  28103. }
  28104. },
  28105. back: {
  28106. height: math.unit(5 + 6 / 12, "feet"),
  28107. name: "Back",
  28108. image: {
  28109. source: "./media/characters/cat/back.svg",
  28110. extra: 1337 / 1226,
  28111. bottom: 34 / 1371
  28112. }
  28113. },
  28114. taur: {
  28115. height: math.unit(7, "feet"),
  28116. name: "Taur",
  28117. image: {
  28118. source: "./media/characters/cat/taur.svg",
  28119. extra: 1345 / 1231,
  28120. bottom: 66 / 1411
  28121. }
  28122. },
  28123. lucario: {
  28124. height: math.unit(4, "feet"),
  28125. name: "Lucario",
  28126. image: {
  28127. source: "./media/characters/cat/lucario.svg",
  28128. extra: 1470 / 1318,
  28129. bottom: 65 / 1535
  28130. }
  28131. },
  28132. megaLucario: {
  28133. height: math.unit(4, "feet"),
  28134. name: "Mega Lucario",
  28135. image: {
  28136. source: "./media/characters/cat/mega-lucario.svg",
  28137. extra: 1515 / 1319,
  28138. bottom: 63 / 1578
  28139. }
  28140. },
  28141. nickit: {
  28142. height: math.unit(2, "feet"),
  28143. name: "Nickit",
  28144. image: {
  28145. source: "./media/characters/cat/nickit.svg",
  28146. extra: 1980 / 1585,
  28147. bottom: 102 / 2082
  28148. }
  28149. },
  28150. lopunnyFront: {
  28151. height: math.unit(5, "feet"),
  28152. name: "Lopunny (Front)",
  28153. image: {
  28154. source: "./media/characters/cat/lopunny-front.svg",
  28155. extra: 1782 / 1469,
  28156. bottom: 38 / 1820
  28157. }
  28158. },
  28159. lopunnyBack: {
  28160. height: math.unit(5, "feet"),
  28161. name: "Lopunny (Back)",
  28162. image: {
  28163. source: "./media/characters/cat/lopunny-back.svg",
  28164. extra: 1660 / 1490,
  28165. bottom: 25 / 1685
  28166. }
  28167. },
  28168. },
  28169. [
  28170. {
  28171. name: "Really small",
  28172. height: math.unit(1, "nm")
  28173. },
  28174. {
  28175. name: "Micro",
  28176. height: math.unit(5, "inches")
  28177. },
  28178. {
  28179. name: "Normal",
  28180. height: math.unit(5 + 6 / 12, "feet"),
  28181. default: true
  28182. },
  28183. {
  28184. name: "Macro",
  28185. height: math.unit(50, "feet")
  28186. },
  28187. {
  28188. name: "Macro+",
  28189. height: math.unit(150, "feet")
  28190. },
  28191. {
  28192. name: "Megamacro",
  28193. height: math.unit(100, "miles")
  28194. },
  28195. ]
  28196. ))
  28197. characterMakers.push(() => makeCharacter(
  28198. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28199. {
  28200. front: {
  28201. height: math.unit(63.4, "meters"),
  28202. weight: math.unit(3.28349e+6, "kilograms"),
  28203. name: "Front",
  28204. image: {
  28205. source: "./media/characters/kirina-violet/front.svg",
  28206. extra: 2812 / 2725,
  28207. bottom: 0 / 2812
  28208. }
  28209. },
  28210. back: {
  28211. height: math.unit(63.4, "meters"),
  28212. weight: math.unit(3.28349e+6, "kilograms"),
  28213. name: "Back",
  28214. image: {
  28215. source: "./media/characters/kirina-violet/back.svg",
  28216. extra: 2812 / 2725,
  28217. bottom: 0 / 2812
  28218. }
  28219. },
  28220. mouth: {
  28221. height: math.unit(4.35, "meters"),
  28222. name: "Mouth",
  28223. image: {
  28224. source: "./media/characters/kirina-violet/mouth.svg"
  28225. }
  28226. },
  28227. paw: {
  28228. height: math.unit(5.6, "meters"),
  28229. name: "Paw",
  28230. image: {
  28231. source: "./media/characters/kirina-violet/paw.svg"
  28232. }
  28233. },
  28234. tail: {
  28235. height: math.unit(18, "meters"),
  28236. name: "Tail",
  28237. image: {
  28238. source: "./media/characters/kirina-violet/tail.svg"
  28239. }
  28240. },
  28241. },
  28242. [
  28243. {
  28244. name: "Macro",
  28245. height: math.unit(63.4, "meters"),
  28246. default: true
  28247. },
  28248. ]
  28249. ))
  28250. characterMakers.push(() => makeCharacter(
  28251. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28252. {
  28253. front: {
  28254. height: math.unit(60, "feet"),
  28255. name: "Front",
  28256. image: {
  28257. source: "./media/characters/cat-gigachu/front.svg",
  28258. extra: 1024 / 780,
  28259. bottom: 23 / 1047
  28260. }
  28261. },
  28262. back: {
  28263. height: math.unit(60, "feet"),
  28264. name: "Back",
  28265. image: {
  28266. source: "./media/characters/cat-gigachu/back.svg",
  28267. extra: 1024 / 780,
  28268. bottom: 23 / 1047
  28269. }
  28270. },
  28271. },
  28272. [
  28273. {
  28274. name: "Dynamax",
  28275. height: math.unit(60, "feet"),
  28276. default: true
  28277. },
  28278. ]
  28279. ))
  28280. characterMakers.push(() => makeCharacter(
  28281. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28282. {
  28283. front: {
  28284. height: math.unit(6, "feet"),
  28285. weight: math.unit(150, "lb"),
  28286. name: "Front",
  28287. image: {
  28288. source: "./media/characters/sfaiyan/front.svg",
  28289. extra: 999 / 978,
  28290. bottom: 5 / 1004
  28291. }
  28292. },
  28293. },
  28294. [
  28295. {
  28296. name: "Normal",
  28297. height: math.unit(1.82, "meters")
  28298. },
  28299. {
  28300. name: "Giant",
  28301. height: math.unit(2.27, "km"),
  28302. default: true
  28303. },
  28304. ]
  28305. ))
  28306. characterMakers.push(() => makeCharacter(
  28307. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28308. {
  28309. front: {
  28310. height: math.unit(179, "cm"),
  28311. weight: math.unit(100, "kg"),
  28312. name: "Front",
  28313. image: {
  28314. source: "./media/characters/raunehkeli/front.svg",
  28315. extra: 1934 / 1926,
  28316. bottom: 0 / 1934
  28317. }
  28318. },
  28319. },
  28320. [
  28321. {
  28322. name: "Normal",
  28323. height: math.unit(179, "cm")
  28324. },
  28325. {
  28326. name: "Maximum",
  28327. height: math.unit(575, "meters"),
  28328. default: true
  28329. },
  28330. ]
  28331. ))
  28332. characterMakers.push(() => makeCharacter(
  28333. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28334. {
  28335. front: {
  28336. height: math.unit(6, "feet"),
  28337. weight: math.unit(150, "lb"),
  28338. name: "Front",
  28339. image: {
  28340. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28341. extra: 2625 / 2518,
  28342. bottom: 60 / 2685
  28343. }
  28344. },
  28345. },
  28346. [
  28347. {
  28348. name: "Normal",
  28349. height: math.unit(6 + 2 / 12, "feet")
  28350. },
  28351. {
  28352. name: "Macro",
  28353. height: math.unit(1180, "feet"),
  28354. default: true
  28355. },
  28356. ]
  28357. ))
  28358. characterMakers.push(() => makeCharacter(
  28359. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28360. {
  28361. front: {
  28362. height: math.unit(5 + 6 / 12, "feet"),
  28363. weight: math.unit(108, "lb"),
  28364. name: "Front",
  28365. image: {
  28366. source: "./media/characters/lilith-zott/front.svg",
  28367. extra: 2510 / 2238,
  28368. bottom: 100 / 2610
  28369. }
  28370. },
  28371. frontDressed: {
  28372. height: math.unit(5 + 6 / 12, "feet"),
  28373. weight: math.unit(108, "lb"),
  28374. name: "Front (Dressed)",
  28375. image: {
  28376. source: "./media/characters/lilith-zott/front-dressed.svg",
  28377. extra: 2510 / 2238,
  28378. bottom: 100 / 2610
  28379. }
  28380. },
  28381. },
  28382. [
  28383. {
  28384. name: "Normal",
  28385. height: math.unit(5 + 6 / 12, "feet")
  28386. },
  28387. {
  28388. name: "Macro",
  28389. height: math.unit(1030, "feet"),
  28390. default: true
  28391. },
  28392. ]
  28393. ))
  28394. characterMakers.push(() => makeCharacter(
  28395. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28396. {
  28397. front: {
  28398. height: math.unit(6, "feet"),
  28399. weight: math.unit(150, "lb"),
  28400. name: "Front",
  28401. image: {
  28402. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28403. extra: 2567 / 2435,
  28404. bottom: 39 / 2606
  28405. }
  28406. },
  28407. frontSuper: {
  28408. height: math.unit(6, "feet"),
  28409. name: "Front (Super)",
  28410. image: {
  28411. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28412. extra: 2567 / 2435,
  28413. bottom: 39 / 2606
  28414. }
  28415. },
  28416. },
  28417. [
  28418. {
  28419. name: "Normal",
  28420. height: math.unit(5 + 10 / 12, "feet")
  28421. },
  28422. {
  28423. name: "Macro",
  28424. height: math.unit(1100, "feet"),
  28425. default: true
  28426. },
  28427. ]
  28428. ))
  28429. characterMakers.push(() => makeCharacter(
  28430. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28431. {
  28432. front: {
  28433. height: math.unit(100, "miles"),
  28434. name: "Front",
  28435. image: {
  28436. source: "./media/characters/sona/front.svg",
  28437. extra: 2433 / 2201,
  28438. bottom: 53 / 2486
  28439. }
  28440. },
  28441. foot: {
  28442. height: math.unit(16.1, "miles"),
  28443. name: "Foot",
  28444. image: {
  28445. source: "./media/characters/sona/foot.svg"
  28446. }
  28447. },
  28448. },
  28449. [
  28450. {
  28451. name: "Macro",
  28452. height: math.unit(100, "miles"),
  28453. default: true
  28454. },
  28455. ]
  28456. ))
  28457. characterMakers.push(() => makeCharacter(
  28458. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28459. {
  28460. front: {
  28461. height: math.unit(6, "feet"),
  28462. weight: math.unit(150, "lb"),
  28463. name: "Front",
  28464. image: {
  28465. source: "./media/characters/bailey/front.svg",
  28466. extra: 1778 / 1724,
  28467. bottom: 30 / 1808
  28468. }
  28469. },
  28470. },
  28471. [
  28472. {
  28473. name: "Micro",
  28474. height: math.unit(4, "inches")
  28475. },
  28476. {
  28477. name: "Normal",
  28478. height: math.unit(5 + 5 / 12, "feet"),
  28479. default: true
  28480. },
  28481. {
  28482. name: "Macro",
  28483. height: math.unit(250, "feet")
  28484. },
  28485. {
  28486. name: "Megamacro",
  28487. height: math.unit(100, "miles")
  28488. },
  28489. ]
  28490. ))
  28491. characterMakers.push(() => makeCharacter(
  28492. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28493. {
  28494. front: {
  28495. height: math.unit(5 + 2 / 12, "feet"),
  28496. weight: math.unit(120, "lb"),
  28497. name: "Front",
  28498. image: {
  28499. source: "./media/characters/snaps/front.svg",
  28500. extra: 2370 / 2177,
  28501. bottom: 48 / 2418
  28502. }
  28503. },
  28504. back: {
  28505. height: math.unit(5 + 2 / 12, "feet"),
  28506. weight: math.unit(120, "lb"),
  28507. name: "Back",
  28508. image: {
  28509. source: "./media/characters/snaps/back.svg",
  28510. extra: 2408 / 2258,
  28511. bottom: 15 / 2423
  28512. }
  28513. },
  28514. },
  28515. [
  28516. {
  28517. name: "Micro",
  28518. height: math.unit(9, "inches")
  28519. },
  28520. {
  28521. name: "Normal",
  28522. height: math.unit(5 + 2 / 12, "feet"),
  28523. default: true
  28524. },
  28525. {
  28526. name: "Mini Macro",
  28527. height: math.unit(10, "feet")
  28528. },
  28529. ]
  28530. ))
  28531. characterMakers.push(() => makeCharacter(
  28532. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28533. {
  28534. front: {
  28535. height: math.unit(1.8, "meters"),
  28536. weight: math.unit(85, "kg"),
  28537. name: "Front",
  28538. image: {
  28539. source: "./media/characters/azteck/front.svg",
  28540. extra: 2815 / 2625,
  28541. bottom: 89 / 2904
  28542. }
  28543. },
  28544. back: {
  28545. height: math.unit(1.8, "meters"),
  28546. weight: math.unit(85, "kg"),
  28547. name: "Back",
  28548. image: {
  28549. source: "./media/characters/azteck/back.svg",
  28550. extra: 2856 / 2648,
  28551. bottom: 85 / 2941
  28552. }
  28553. },
  28554. frontDressed: {
  28555. height: math.unit(1.8, "meters"),
  28556. weight: math.unit(85, "kg"),
  28557. name: "Front (Dressed)",
  28558. image: {
  28559. source: "./media/characters/azteck/front-dressed.svg",
  28560. extra: 2147 / 2003,
  28561. bottom: 68 / 2215
  28562. }
  28563. },
  28564. head: {
  28565. height: math.unit(0.47, "meters"),
  28566. weight: math.unit(85, "kg"),
  28567. name: "Head",
  28568. image: {
  28569. source: "./media/characters/azteck/head.svg"
  28570. }
  28571. },
  28572. },
  28573. [
  28574. {
  28575. name: "Bite sized",
  28576. height: math.unit(16, "cm")
  28577. },
  28578. {
  28579. name: "Normal",
  28580. height: math.unit(1.8, "meters"),
  28581. default: true
  28582. },
  28583. ]
  28584. ))
  28585. characterMakers.push(() => makeCharacter(
  28586. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28587. {
  28588. front: {
  28589. height: math.unit(6, "feet"),
  28590. weight: math.unit(150, "lb"),
  28591. name: "Front",
  28592. image: {
  28593. source: "./media/characters/pidge/front.svg",
  28594. extra: 620 / 588,
  28595. bottom: 9 / 629
  28596. }
  28597. },
  28598. back: {
  28599. height: math.unit(6, "feet"),
  28600. weight: math.unit(150, "lb"),
  28601. name: "Back",
  28602. image: {
  28603. source: "./media/characters/pidge/back.svg",
  28604. extra: 620 / 588,
  28605. bottom: 9 / 629
  28606. }
  28607. },
  28608. },
  28609. [
  28610. {
  28611. name: "Macro",
  28612. height: math.unit(1, "mile"),
  28613. default: true
  28614. },
  28615. ]
  28616. ))
  28617. characterMakers.push(() => makeCharacter(
  28618. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28619. {
  28620. front: {
  28621. height: math.unit(6, "feet"),
  28622. weight: math.unit(150, "lb"),
  28623. name: "Front",
  28624. image: {
  28625. source: "./media/characters/en/front.svg",
  28626. extra: 1697 / 1563,
  28627. bottom: 103 / 1800
  28628. }
  28629. },
  28630. back: {
  28631. height: math.unit(6, "feet"),
  28632. weight: math.unit(150, "lb"),
  28633. name: "Back",
  28634. image: {
  28635. source: "./media/characters/en/back.svg",
  28636. extra: 1700 / 1570,
  28637. bottom: 51 / 1751
  28638. }
  28639. },
  28640. frontDressed: {
  28641. height: math.unit(6, "feet"),
  28642. weight: math.unit(150, "lb"),
  28643. name: "Front (Dressed)",
  28644. image: {
  28645. source: "./media/characters/en/front-dressed.svg",
  28646. extra: 1697 / 1563,
  28647. bottom: 103 / 1800
  28648. }
  28649. },
  28650. backDressed: {
  28651. height: math.unit(6, "feet"),
  28652. weight: math.unit(150, "lb"),
  28653. name: "Back (Dressed)",
  28654. image: {
  28655. source: "./media/characters/en/back-dressed.svg",
  28656. extra: 1700 / 1570,
  28657. bottom: 51 / 1751
  28658. }
  28659. },
  28660. },
  28661. [
  28662. {
  28663. name: "Macro",
  28664. height: math.unit(210, "feet"),
  28665. default: true
  28666. },
  28667. ]
  28668. ))
  28669. characterMakers.push(() => makeCharacter(
  28670. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28671. {
  28672. front: {
  28673. height: math.unit(6, "feet"),
  28674. weight: math.unit(150, "lb"),
  28675. name: "Front",
  28676. image: {
  28677. source: "./media/characters/haze-orris/front.svg",
  28678. extra: 3975 / 3525,
  28679. bottom: 137 / 4112
  28680. }
  28681. },
  28682. },
  28683. [
  28684. {
  28685. name: "Micro",
  28686. height: math.unit(150, "mm"),
  28687. default: true
  28688. },
  28689. ]
  28690. ))
  28691. characterMakers.push(() => makeCharacter(
  28692. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28693. {
  28694. front: {
  28695. height: math.unit(6, "feet"),
  28696. weight: math.unit(150, "lb"),
  28697. name: "Front",
  28698. image: {
  28699. source: "./media/characters/casselene-yaro/front.svg",
  28700. extra: 4721 / 4541,
  28701. bottom: 82 / 4803
  28702. }
  28703. },
  28704. back: {
  28705. height: math.unit(6, "feet"),
  28706. weight: math.unit(150, "lb"),
  28707. name: "Back",
  28708. image: {
  28709. source: "./media/characters/casselene-yaro/back.svg",
  28710. extra: 4569 / 4377,
  28711. bottom: 69 / 4638
  28712. }
  28713. },
  28714. frontDressed: {
  28715. height: math.unit(6, "feet"),
  28716. weight: math.unit(150, "lb"),
  28717. name: "Front-dressed",
  28718. image: {
  28719. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28720. extra: 4721 / 4541,
  28721. bottom: 82 / 4803
  28722. }
  28723. },
  28724. },
  28725. [
  28726. {
  28727. name: "Macro",
  28728. height: math.unit(190, "feet"),
  28729. default: true
  28730. },
  28731. ]
  28732. ))
  28733. characterMakers.push(() => makeCharacter(
  28734. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28735. {
  28736. front: {
  28737. height: math.unit(6, "feet"),
  28738. weight: math.unit(150, "lb"),
  28739. name: "Front",
  28740. image: {
  28741. source: "./media/characters/myra-rue-delore/front.svg",
  28742. extra: 1340 / 1308,
  28743. bottom: 67 / 1407
  28744. }
  28745. },
  28746. back: {
  28747. height: math.unit(6, "feet"),
  28748. weight: math.unit(150, "lb"),
  28749. name: "Back",
  28750. image: {
  28751. source: "./media/characters/myra-rue-delore/back.svg",
  28752. extra: 1341 / 1310,
  28753. bottom: 40 / 1381
  28754. }
  28755. },
  28756. frontDressed: {
  28757. height: math.unit(6, "feet"),
  28758. weight: math.unit(150, "lb"),
  28759. name: "Front (Dressed)",
  28760. image: {
  28761. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28762. extra: 1340 / 1308,
  28763. bottom: 67 / 1407
  28764. }
  28765. },
  28766. },
  28767. [
  28768. {
  28769. name: "Macro",
  28770. height: math.unit(150, "feet"),
  28771. default: true
  28772. },
  28773. ]
  28774. ))
  28775. characterMakers.push(() => makeCharacter(
  28776. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28777. {
  28778. front: {
  28779. height: math.unit(10, "feet"),
  28780. weight: math.unit(15015, "lb"),
  28781. name: "Front",
  28782. image: {
  28783. source: "./media/characters/fem!plat/front.svg",
  28784. extra: 2799 / 2604,
  28785. bottom: 149 / 2948
  28786. }
  28787. },
  28788. },
  28789. [
  28790. {
  28791. name: "Normal",
  28792. height: math.unit(10, "feet"),
  28793. default: true
  28794. },
  28795. {
  28796. name: "Macro",
  28797. height: math.unit(100, "feet")
  28798. },
  28799. {
  28800. name: "Megamacro",
  28801. height: math.unit(1000, "feet")
  28802. },
  28803. ]
  28804. ))
  28805. characterMakers.push(() => makeCharacter(
  28806. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28807. {
  28808. front: {
  28809. height: math.unit(15 + 5 / 12, "feet"),
  28810. weight: math.unit(4600, "lb"),
  28811. name: "Front",
  28812. image: {
  28813. source: "./media/characters/neapolitan-ananassa/front.svg",
  28814. extra: 2903 / 2736,
  28815. bottom: 0 / 2903
  28816. }
  28817. },
  28818. side: {
  28819. height: math.unit(15 + 5 / 12, "feet"),
  28820. weight: math.unit(4600, "lb"),
  28821. name: "Side",
  28822. image: {
  28823. source: "./media/characters/neapolitan-ananassa/side.svg",
  28824. extra: 2925 / 2719,
  28825. bottom: 0 / 2925
  28826. }
  28827. },
  28828. back: {
  28829. height: math.unit(15 + 5 / 12, "feet"),
  28830. weight: math.unit(4600, "lb"),
  28831. name: "Back",
  28832. image: {
  28833. source: "./media/characters/neapolitan-ananassa/back.svg",
  28834. extra: 2903 / 2736,
  28835. bottom: 0 / 2903
  28836. }
  28837. },
  28838. },
  28839. [
  28840. {
  28841. name: "Normal",
  28842. height: math.unit(15 + 5 / 12, "feet"),
  28843. default: true
  28844. },
  28845. {
  28846. name: "Post-Millenium",
  28847. height: math.unit(35 + 5 / 12, "feet")
  28848. },
  28849. {
  28850. name: "Post-Era",
  28851. height: math.unit(450 + 5 / 12, "feet")
  28852. },
  28853. ]
  28854. ))
  28855. characterMakers.push(() => makeCharacter(
  28856. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28857. {
  28858. front: {
  28859. height: math.unit(300, "meters"),
  28860. weight: math.unit(125000, "tonnes"),
  28861. name: "Front",
  28862. image: {
  28863. source: "./media/characters/pazuzu/front.svg",
  28864. extra: 877 / 794,
  28865. bottom: 47 / 924
  28866. }
  28867. },
  28868. },
  28869. [
  28870. {
  28871. name: "Macro",
  28872. height: math.unit(300, "meters"),
  28873. default: true
  28874. },
  28875. ]
  28876. ))
  28877. characterMakers.push(() => makeCharacter(
  28878. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28879. {
  28880. side: {
  28881. height: math.unit(10 + 7 / 12, "feet"),
  28882. weight: math.unit(2.5, "tons"),
  28883. name: "Side",
  28884. image: {
  28885. source: "./media/characters/aasha/side.svg",
  28886. extra: 1345 / 1245,
  28887. bottom: 111 / 1456
  28888. }
  28889. },
  28890. back: {
  28891. height: math.unit(10 + 7 / 12, "feet"),
  28892. weight: math.unit(2.5, "tons"),
  28893. name: "Back",
  28894. image: {
  28895. source: "./media/characters/aasha/back.svg",
  28896. extra: 1133 / 1057,
  28897. bottom: 257 / 1390
  28898. }
  28899. },
  28900. },
  28901. [
  28902. {
  28903. name: "Normal",
  28904. height: math.unit(10 + 7 / 12, "feet"),
  28905. default: true
  28906. },
  28907. ]
  28908. ))
  28909. characterMakers.push(() => makeCharacter(
  28910. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28911. {
  28912. front: {
  28913. height: math.unit(6 + 3 / 12, "feet"),
  28914. name: "Front",
  28915. image: {
  28916. source: "./media/characters/nevan/front.svg",
  28917. extra: 704 / 704,
  28918. bottom: 28 / 732
  28919. }
  28920. },
  28921. back: {
  28922. height: math.unit(6 + 3 / 12, "feet"),
  28923. name: "Back",
  28924. image: {
  28925. source: "./media/characters/nevan/back.svg",
  28926. extra: 714 / 714,
  28927. bottom: 21 / 735
  28928. }
  28929. },
  28930. frontFlaccid: {
  28931. height: math.unit(6 + 3 / 12, "feet"),
  28932. name: "Front (Flaccid)",
  28933. image: {
  28934. source: "./media/characters/nevan/front-flaccid.svg",
  28935. extra: 704 / 704,
  28936. bottom: 28 / 732
  28937. }
  28938. },
  28939. frontErect: {
  28940. height: math.unit(6 + 3 / 12, "feet"),
  28941. name: "Front (Erect)",
  28942. image: {
  28943. source: "./media/characters/nevan/front-erect.svg",
  28944. extra: 704 / 704,
  28945. bottom: 28 / 732
  28946. }
  28947. },
  28948. backFlaccid: {
  28949. height: math.unit(6 + 3 / 12, "feet"),
  28950. name: "Back (Flaccid)",
  28951. image: {
  28952. source: "./media/characters/nevan/back-flaccid.svg",
  28953. extra: 714 / 714,
  28954. bottom: 21 / 735
  28955. }
  28956. },
  28957. },
  28958. [
  28959. {
  28960. name: "Normal",
  28961. height: math.unit(6 + 3 / 12, "feet"),
  28962. default: true
  28963. },
  28964. ]
  28965. ))
  28966. characterMakers.push(() => makeCharacter(
  28967. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28968. {
  28969. front: {
  28970. height: math.unit(4, "feet"),
  28971. name: "Front",
  28972. image: {
  28973. source: "./media/characters/arhan/front.svg",
  28974. extra: 3368 / 3133,
  28975. bottom: 0 / 3368
  28976. }
  28977. },
  28978. side: {
  28979. height: math.unit(4, "feet"),
  28980. name: "Side",
  28981. image: {
  28982. source: "./media/characters/arhan/side.svg",
  28983. extra: 3347 / 3105,
  28984. bottom: 0 / 3347
  28985. }
  28986. },
  28987. tongue: {
  28988. height: math.unit(1.42, "feet"),
  28989. name: "Tongue",
  28990. image: {
  28991. source: "./media/characters/arhan/tongue.svg"
  28992. }
  28993. },
  28994. head: {
  28995. height: math.unit(0.85, "feet"),
  28996. name: "Head",
  28997. image: {
  28998. source: "./media/characters/arhan/head.svg"
  28999. }
  29000. },
  29001. },
  29002. [
  29003. {
  29004. name: "Normal",
  29005. height: math.unit(4, "feet"),
  29006. default: true
  29007. },
  29008. ]
  29009. ))
  29010. characterMakers.push(() => makeCharacter(
  29011. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29012. {
  29013. front: {
  29014. height: math.unit(5 + 7.5 / 12, "feet"),
  29015. weight: math.unit(120, "lb"),
  29016. name: "Front",
  29017. image: {
  29018. source: "./media/characters/digi-duncan/front.svg",
  29019. extra: 330 / 326,
  29020. bottom: 16 / 346
  29021. }
  29022. },
  29023. side: {
  29024. height: math.unit(5 + 7.5 / 12, "feet"),
  29025. weight: math.unit(120, "lb"),
  29026. name: "Side",
  29027. image: {
  29028. source: "./media/characters/digi-duncan/side.svg",
  29029. extra: 341 / 337,
  29030. bottom: 1 / 342
  29031. }
  29032. },
  29033. back: {
  29034. height: math.unit(5 + 7.5 / 12, "feet"),
  29035. weight: math.unit(120, "lb"),
  29036. name: "Back",
  29037. image: {
  29038. source: "./media/characters/digi-duncan/back.svg",
  29039. extra: 330 / 326,
  29040. bottom: 12 / 342
  29041. }
  29042. },
  29043. },
  29044. [
  29045. {
  29046. name: "Speck",
  29047. height: math.unit(0.25, "mm")
  29048. },
  29049. {
  29050. name: "Micro",
  29051. height: math.unit(5, "mm")
  29052. },
  29053. {
  29054. name: "Tiny",
  29055. height: math.unit(0.5, "inches"),
  29056. default: true
  29057. },
  29058. {
  29059. name: "Human",
  29060. height: math.unit(5 + 7.5 / 12, "feet")
  29061. },
  29062. {
  29063. name: "Minigiant",
  29064. height: math.unit(8 + 5.25, "feet")
  29065. },
  29066. {
  29067. name: "Giant",
  29068. height: math.unit(2000, "feet")
  29069. },
  29070. {
  29071. name: "Mega",
  29072. height: math.unit(371.1, "miles")
  29073. },
  29074. ]
  29075. ))
  29076. characterMakers.push(() => makeCharacter(
  29077. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29078. {
  29079. front: {
  29080. height: math.unit(2, "meters"),
  29081. weight: math.unit(350, "kg"),
  29082. name: "Front",
  29083. image: {
  29084. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29085. extra: 898 / 838,
  29086. bottom: 9 / 907
  29087. }
  29088. },
  29089. },
  29090. [
  29091. {
  29092. name: "Micro",
  29093. height: math.unit(8, "meters")
  29094. },
  29095. {
  29096. name: "Normal",
  29097. height: math.unit(50, "meters"),
  29098. default: true
  29099. },
  29100. {
  29101. name: "Macro",
  29102. height: math.unit(500, "meters")
  29103. },
  29104. ]
  29105. ))
  29106. characterMakers.push(() => makeCharacter(
  29107. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29108. {
  29109. front: {
  29110. height: math.unit(6 + 6 / 12, "feet"),
  29111. name: "Front",
  29112. image: {
  29113. source: "./media/characters/khardesh/front.svg",
  29114. extra: 888 / 797,
  29115. bottom: 25 / 913
  29116. }
  29117. },
  29118. },
  29119. [
  29120. {
  29121. name: "Normal",
  29122. height: math.unit(6 + 6 / 12, "feet"),
  29123. default: true
  29124. },
  29125. {
  29126. name: "Normal+",
  29127. height: math.unit(4, "meters")
  29128. },
  29129. {
  29130. name: "Macro",
  29131. height: math.unit(50, "meters")
  29132. },
  29133. {
  29134. name: "Macro+",
  29135. height: math.unit(100, "meters")
  29136. },
  29137. {
  29138. name: "Megamacro",
  29139. height: math.unit(20, "km")
  29140. },
  29141. ]
  29142. ))
  29143. characterMakers.push(() => makeCharacter(
  29144. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29145. {
  29146. front: {
  29147. height: math.unit(6, "feet"),
  29148. weight: math.unit(150, "lb"),
  29149. name: "Front",
  29150. image: {
  29151. source: "./media/characters/kosho/front.svg",
  29152. extra: 1847 / 1847,
  29153. bottom: 86 / 1933
  29154. }
  29155. },
  29156. },
  29157. [
  29158. {
  29159. name: "Second-stage micro",
  29160. height: math.unit(0.5, "inches")
  29161. },
  29162. {
  29163. name: "First-stage micro",
  29164. height: math.unit(6, "inches")
  29165. },
  29166. {
  29167. name: "Normal",
  29168. height: math.unit(6, "feet"),
  29169. default: true
  29170. },
  29171. {
  29172. name: "First-stage macro",
  29173. height: math.unit(72, "feet")
  29174. },
  29175. {
  29176. name: "Second-stage macro",
  29177. height: math.unit(864, "feet")
  29178. },
  29179. ]
  29180. ))
  29181. characterMakers.push(() => makeCharacter(
  29182. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29183. {
  29184. normal: {
  29185. height: math.unit(4 + 6 / 12, "feet"),
  29186. name: "Normal",
  29187. image: {
  29188. source: "./media/characters/hydra/normal.svg",
  29189. extra: 2833 / 2634,
  29190. bottom: 68 / 2901
  29191. }
  29192. },
  29193. smol: {
  29194. height: math.unit(0.705, "inches"),
  29195. name: "Smol",
  29196. image: {
  29197. source: "./media/characters/hydra/smol.svg",
  29198. extra: 2715 / 2540,
  29199. bottom: 0 / 2715
  29200. }
  29201. },
  29202. },
  29203. [
  29204. {
  29205. name: "Normal",
  29206. height: math.unit(4 + 6 / 12, "feet"),
  29207. default: true
  29208. }
  29209. ]
  29210. ))
  29211. characterMakers.push(() => makeCharacter(
  29212. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29213. {
  29214. front: {
  29215. height: math.unit(0.6, "cm"),
  29216. name: "Front",
  29217. image: {
  29218. source: "./media/characters/daz/front.svg",
  29219. extra: 1682 / 1164,
  29220. bottom: 42 / 1724
  29221. }
  29222. },
  29223. },
  29224. [
  29225. {
  29226. name: "Normal",
  29227. height: math.unit(0.6, "cm"),
  29228. default: true
  29229. },
  29230. ]
  29231. ))
  29232. characterMakers.push(() => makeCharacter(
  29233. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29234. {
  29235. front: {
  29236. height: math.unit(6, "feet"),
  29237. weight: math.unit(235, "lb"),
  29238. name: "Front",
  29239. image: {
  29240. source: "./media/characters/theo-pangolin/front.svg",
  29241. extra: 1996 / 1969,
  29242. bottom: 115 / 2111
  29243. }
  29244. },
  29245. back: {
  29246. height: math.unit(6, "feet"),
  29247. weight: math.unit(235, "lb"),
  29248. name: "Back",
  29249. image: {
  29250. source: "./media/characters/theo-pangolin/back.svg",
  29251. extra: 1979 / 1979,
  29252. bottom: 40 / 2019
  29253. }
  29254. },
  29255. feral: {
  29256. height: math.unit(2, "feet"),
  29257. weight: math.unit(30, "lb"),
  29258. name: "Feral",
  29259. image: {
  29260. source: "./media/characters/theo-pangolin/feral.svg",
  29261. extra: 803 / 791,
  29262. bottom: 181 / 984
  29263. }
  29264. },
  29265. footFive: {
  29266. height: math.unit(1.43, "feet"),
  29267. name: "Foot (Five Toes)",
  29268. image: {
  29269. source: "./media/characters/theo-pangolin/foot-five.svg"
  29270. }
  29271. },
  29272. footFour: {
  29273. height: math.unit(1.43, "feet"),
  29274. name: "Foot (Four Toes)",
  29275. image: {
  29276. source: "./media/characters/theo-pangolin/foot-four.svg"
  29277. }
  29278. },
  29279. handFour: {
  29280. height: math.unit(0.81, "feet"),
  29281. name: "Hand (Four Fingers)",
  29282. image: {
  29283. source: "./media/characters/theo-pangolin/hand-four.svg"
  29284. }
  29285. },
  29286. handThree: {
  29287. height: math.unit(0.81, "feet"),
  29288. name: "Hand (Three Fingers)",
  29289. image: {
  29290. source: "./media/characters/theo-pangolin/hand-three.svg"
  29291. }
  29292. },
  29293. headFront: {
  29294. height: math.unit(1.37, "feet"),
  29295. name: "Head (Front)",
  29296. image: {
  29297. source: "./media/characters/theo-pangolin/head-front.svg"
  29298. }
  29299. },
  29300. headSide: {
  29301. height: math.unit(1.43, "feet"),
  29302. name: "Head (Side)",
  29303. image: {
  29304. source: "./media/characters/theo-pangolin/head-side.svg"
  29305. }
  29306. },
  29307. tongue: {
  29308. height: math.unit(2.29, "feet"),
  29309. name: "Tongue",
  29310. image: {
  29311. source: "./media/characters/theo-pangolin/tongue.svg"
  29312. }
  29313. },
  29314. },
  29315. [
  29316. {
  29317. name: "Normal",
  29318. height: math.unit(6, "feet")
  29319. },
  29320. {
  29321. name: "Macro",
  29322. height: math.unit(400, "feet"),
  29323. default: true
  29324. },
  29325. ]
  29326. ))
  29327. characterMakers.push(() => makeCharacter(
  29328. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29329. {
  29330. front: {
  29331. height: math.unit(6, "inches"),
  29332. weight: math.unit(0.036, "kg"),
  29333. name: "Front",
  29334. image: {
  29335. source: "./media/characters/renée/front.svg",
  29336. extra: 900 / 886,
  29337. bottom: 8 / 908
  29338. }
  29339. },
  29340. },
  29341. [
  29342. {
  29343. name: "Nano",
  29344. height: math.unit(1, "nm")
  29345. },
  29346. {
  29347. name: "Micro",
  29348. height: math.unit(1, "mm")
  29349. },
  29350. {
  29351. name: "Normal",
  29352. height: math.unit(6, "inches")
  29353. },
  29354. {
  29355. name: "Macro",
  29356. height: math.unit(2000, "feet"),
  29357. default: true
  29358. },
  29359. {
  29360. name: "Megamacro",
  29361. height: math.unit(2, "km")
  29362. },
  29363. {
  29364. name: "Gigamacro",
  29365. height: math.unit(2000, "km")
  29366. },
  29367. {
  29368. name: "Teramacro",
  29369. height: math.unit(250000, "km")
  29370. },
  29371. ]
  29372. ))
  29373. characterMakers.push(() => makeCharacter(
  29374. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29375. {
  29376. front: {
  29377. height: math.unit(4, "meters"),
  29378. weight: math.unit(150, "kg"),
  29379. name: "Front",
  29380. image: {
  29381. source: "./media/characters/caledvwlch/front.svg",
  29382. extra: 1760 / 1551,
  29383. bottom: 28 / 1788
  29384. }
  29385. },
  29386. side: {
  29387. height: math.unit(4, "meters"),
  29388. weight: math.unit(150, "kg"),
  29389. name: "Side",
  29390. image: {
  29391. source: "./media/characters/caledvwlch/side.svg",
  29392. extra: 1605 / 1536,
  29393. bottom: 31 / 1636
  29394. }
  29395. },
  29396. back: {
  29397. height: math.unit(4, "meters"),
  29398. weight: math.unit(150, "kg"),
  29399. name: "Back",
  29400. image: {
  29401. source: "./media/characters/caledvwlch/back.svg",
  29402. extra: 1635 / 1565,
  29403. bottom: 27 / 1662
  29404. }
  29405. },
  29406. },
  29407. [
  29408. {
  29409. name: "\"Incognito\"",
  29410. height: math.unit(4, "meters")
  29411. },
  29412. {
  29413. name: "Small rampage",
  29414. height: math.unit(600, "meters")
  29415. },
  29416. {
  29417. name: "Mega",
  29418. height: math.unit(30, "km")
  29419. },
  29420. {
  29421. name: "Home-size",
  29422. height: math.unit(50, "km"),
  29423. default: true
  29424. },
  29425. {
  29426. name: "Giga",
  29427. height: math.unit(300, "km")
  29428. },
  29429. {
  29430. name: "Lounging",
  29431. height: math.unit(11000, "km")
  29432. },
  29433. {
  29434. name: "Planet snacking",
  29435. height: math.unit(2000000, "km")
  29436. },
  29437. ]
  29438. ))
  29439. characterMakers.push(() => makeCharacter(
  29440. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29441. {
  29442. front: {
  29443. height: math.unit(6, "feet"),
  29444. weight: math.unit(215, "lb"),
  29445. name: "Front",
  29446. image: {
  29447. source: "./media/characters/sapphire-svell/front.svg",
  29448. extra: 495 / 455,
  29449. bottom: 20 / 515
  29450. }
  29451. },
  29452. back: {
  29453. height: math.unit(6, "feet"),
  29454. weight: math.unit(216, "lb"),
  29455. name: "Back",
  29456. image: {
  29457. source: "./media/characters/sapphire-svell/back.svg",
  29458. extra: 497 / 477,
  29459. bottom: 7 / 504
  29460. }
  29461. },
  29462. maw: {
  29463. height: math.unit(1.57, "feet"),
  29464. name: "Maw",
  29465. image: {
  29466. source: "./media/characters/sapphire-svell/maw.svg"
  29467. }
  29468. },
  29469. foot: {
  29470. height: math.unit(1.07, "feet"),
  29471. name: "Foot",
  29472. image: {
  29473. source: "./media/characters/sapphire-svell/foot.svg"
  29474. }
  29475. },
  29476. toering: {
  29477. height: math.unit(1.7, "inch"),
  29478. name: "Toering",
  29479. image: {
  29480. source: "./media/characters/sapphire-svell/toering.svg"
  29481. }
  29482. },
  29483. },
  29484. [
  29485. {
  29486. name: "Normal",
  29487. height: math.unit(300, "feet"),
  29488. default: true
  29489. },
  29490. {
  29491. name: "Augmented",
  29492. height: math.unit(1250, "feet")
  29493. },
  29494. {
  29495. name: "Unleashed",
  29496. height: math.unit(3000, "feet")
  29497. },
  29498. ]
  29499. ))
  29500. characterMakers.push(() => makeCharacter(
  29501. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29502. {
  29503. side: {
  29504. height: math.unit(2 + 3 / 12, "feet"),
  29505. weight: math.unit(110, "lb"),
  29506. name: "Side",
  29507. image: {
  29508. source: "./media/characters/glitch-flux/side.svg",
  29509. extra: 997 / 805,
  29510. bottom: 20 / 1017
  29511. }
  29512. },
  29513. },
  29514. [
  29515. {
  29516. name: "Normal",
  29517. height: math.unit(2 + 3 / 12, "feet"),
  29518. default: true
  29519. },
  29520. ]
  29521. ))
  29522. characterMakers.push(() => makeCharacter(
  29523. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29524. {
  29525. front: {
  29526. height: math.unit(4, "meters"),
  29527. name: "Front",
  29528. image: {
  29529. source: "./media/characters/mid/front.svg",
  29530. extra: 507 / 476,
  29531. bottom: 17 / 524
  29532. }
  29533. },
  29534. back: {
  29535. height: math.unit(4, "meters"),
  29536. name: "Back",
  29537. image: {
  29538. source: "./media/characters/mid/back.svg",
  29539. extra: 519 / 487,
  29540. bottom: 7 / 526
  29541. }
  29542. },
  29543. stuck: {
  29544. height: math.unit(2.2, "meters"),
  29545. name: "Stuck",
  29546. image: {
  29547. source: "./media/characters/mid/stuck.svg",
  29548. extra: 1951 / 1869,
  29549. bottom: 88 / 2039
  29550. }
  29551. }
  29552. },
  29553. [
  29554. {
  29555. name: "Normal",
  29556. height: math.unit(4, "meters"),
  29557. default: true
  29558. },
  29559. {
  29560. name: "Big",
  29561. height: math.unit(10, "meters")
  29562. },
  29563. {
  29564. name: "Macro",
  29565. height: math.unit(800, "meters")
  29566. },
  29567. {
  29568. name: "Megamacro",
  29569. height: math.unit(100, "km")
  29570. },
  29571. {
  29572. name: "Overgrown",
  29573. height: math.unit(1, "parsec")
  29574. },
  29575. ]
  29576. ))
  29577. characterMakers.push(() => makeCharacter(
  29578. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29579. {
  29580. front: {
  29581. height: math.unit(2.5, "meters"),
  29582. weight: math.unit(225, "kg"),
  29583. name: "Front",
  29584. image: {
  29585. source: "./media/characters/iris/front.svg",
  29586. extra: 3348 / 3251,
  29587. bottom: 205 / 3553
  29588. }
  29589. },
  29590. maw: {
  29591. height: math.unit(0.56, "meter"),
  29592. name: "Maw",
  29593. image: {
  29594. source: "./media/characters/iris/maw.svg"
  29595. }
  29596. },
  29597. },
  29598. [
  29599. {
  29600. name: "Mewter cat",
  29601. height: math.unit(1.2, "meters")
  29602. },
  29603. {
  29604. name: "Minimacro",
  29605. height: math.unit(2.5, "meters"),
  29606. default: true
  29607. },
  29608. {
  29609. name: "Macro",
  29610. height: math.unit(180, "meters")
  29611. },
  29612. {
  29613. name: "Megamacro",
  29614. height: math.unit(2746, "meters")
  29615. },
  29616. ]
  29617. ))
  29618. characterMakers.push(() => makeCharacter(
  29619. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29620. {
  29621. front: {
  29622. height: math.unit(6, "feet"),
  29623. weight: math.unit(135, "lb"),
  29624. name: "Front",
  29625. image: {
  29626. source: "./media/characters/axel/front.svg",
  29627. extra: 908 / 908,
  29628. bottom: 58 / 966
  29629. }
  29630. },
  29631. side: {
  29632. height: math.unit(6, "feet"),
  29633. weight: math.unit(135, "lb"),
  29634. name: "Side",
  29635. image: {
  29636. source: "./media/characters/axel/side.svg",
  29637. extra: 958 / 958,
  29638. bottom: 11 / 969
  29639. }
  29640. },
  29641. back: {
  29642. height: math.unit(6, "feet"),
  29643. weight: math.unit(135, "lb"),
  29644. name: "Back",
  29645. image: {
  29646. source: "./media/characters/axel/back.svg",
  29647. extra: 887 / 887,
  29648. bottom: 34 / 921
  29649. }
  29650. },
  29651. head: {
  29652. height: math.unit(1.07, "feet"),
  29653. name: "Head",
  29654. image: {
  29655. source: "./media/characters/axel/head.svg"
  29656. }
  29657. },
  29658. beak: {
  29659. height: math.unit(1.4, "feet"),
  29660. name: "Beak",
  29661. image: {
  29662. source: "./media/characters/axel/beak.svg"
  29663. }
  29664. },
  29665. beakSide: {
  29666. height: math.unit(1.4, "feet"),
  29667. name: "Beak Side",
  29668. image: {
  29669. source: "./media/characters/axel/beak-side.svg"
  29670. }
  29671. },
  29672. sheath: {
  29673. height: math.unit(0.5, "feet"),
  29674. name: "Sheath",
  29675. image: {
  29676. source: "./media/characters/axel/sheath.svg"
  29677. }
  29678. },
  29679. dick: {
  29680. height: math.unit(0.98, "feet"),
  29681. name: "Dick",
  29682. image: {
  29683. source: "./media/characters/axel/dick.svg"
  29684. }
  29685. },
  29686. },
  29687. [
  29688. {
  29689. name: "Macro",
  29690. height: math.unit(68, "meters"),
  29691. default: true
  29692. },
  29693. ]
  29694. ))
  29695. characterMakers.push(() => makeCharacter(
  29696. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29697. {
  29698. front: {
  29699. height: math.unit(3.5, "meters"),
  29700. weight: math.unit(1200, "kg"),
  29701. name: "Front",
  29702. image: {
  29703. source: "./media/characters/joanna/front.svg",
  29704. extra: 1596 / 1488,
  29705. bottom: 29 / 1625
  29706. }
  29707. },
  29708. back: {
  29709. height: math.unit(3.5, "meters"),
  29710. weight: math.unit(1200, "kg"),
  29711. name: "Back",
  29712. image: {
  29713. source: "./media/characters/joanna/back.svg",
  29714. extra: 1594 / 1495,
  29715. bottom: 26 / 1620
  29716. }
  29717. },
  29718. frontShorts: {
  29719. height: math.unit(3.5, "meters"),
  29720. weight: math.unit(1200, "kg"),
  29721. name: "Front (Shorts)",
  29722. image: {
  29723. source: "./media/characters/joanna/front-shorts.svg",
  29724. extra: 1596 / 1488,
  29725. bottom: 29 / 1625
  29726. }
  29727. },
  29728. frontBiker: {
  29729. height: math.unit(3.5, "meters"),
  29730. weight: math.unit(1200, "kg"),
  29731. name: "Front (Biker)",
  29732. image: {
  29733. source: "./media/characters/joanna/front-biker.svg",
  29734. extra: 1596 / 1488,
  29735. bottom: 29 / 1625
  29736. }
  29737. },
  29738. backBiker: {
  29739. height: math.unit(3.5, "meters"),
  29740. weight: math.unit(1200, "kg"),
  29741. name: "Back (Biker)",
  29742. image: {
  29743. source: "./media/characters/joanna/back-biker.svg",
  29744. extra: 1594 / 1495,
  29745. bottom: 88 / 1682
  29746. }
  29747. },
  29748. bikeLeft: {
  29749. height: math.unit(2.4, "meters"),
  29750. weight: math.unit(1600, "kg"),
  29751. name: "Bike (Left)",
  29752. image: {
  29753. source: "./media/characters/joanna/bike-left.svg",
  29754. extra: 720 / 720,
  29755. bottom: 8 / 728
  29756. }
  29757. },
  29758. bikeRight: {
  29759. height: math.unit(2.4, "meters"),
  29760. weight: math.unit(1600, "kg"),
  29761. name: "Bike (Right)",
  29762. image: {
  29763. source: "./media/characters/joanna/bike-right.svg",
  29764. extra: 720 / 720,
  29765. bottom: 8 / 728
  29766. }
  29767. },
  29768. },
  29769. [
  29770. {
  29771. name: "Incognito",
  29772. height: math.unit(3.5, "meters")
  29773. },
  29774. {
  29775. name: "Casual Big",
  29776. height: math.unit(200, "meters")
  29777. },
  29778. {
  29779. name: "Macro",
  29780. height: math.unit(600, "meters")
  29781. },
  29782. {
  29783. name: "Original",
  29784. height: math.unit(20, "km"),
  29785. default: true
  29786. },
  29787. {
  29788. name: "Giga",
  29789. height: math.unit(400, "km")
  29790. },
  29791. {
  29792. name: "Lounging",
  29793. height: math.unit(1500, "km")
  29794. },
  29795. {
  29796. name: "Planetary",
  29797. height: math.unit(200000, "km")
  29798. },
  29799. ]
  29800. ))
  29801. characterMakers.push(() => makeCharacter(
  29802. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29803. {
  29804. front: {
  29805. height: math.unit(6, "feet"),
  29806. weight: math.unit(150, "lb"),
  29807. name: "Front",
  29808. image: {
  29809. source: "./media/characters/hugo-sigil/front.svg",
  29810. extra: 522 / 500,
  29811. bottom: 2 / 524
  29812. }
  29813. },
  29814. back: {
  29815. height: math.unit(6, "feet"),
  29816. weight: math.unit(150, "lb"),
  29817. name: "Back",
  29818. image: {
  29819. source: "./media/characters/hugo-sigil/back.svg",
  29820. extra: 519 / 495,
  29821. bottom: 5 / 524
  29822. }
  29823. },
  29824. maw: {
  29825. height: math.unit(1.4, "feet"),
  29826. weight: math.unit(150, "lb"),
  29827. name: "Maw",
  29828. image: {
  29829. source: "./media/characters/hugo-sigil/maw.svg"
  29830. }
  29831. },
  29832. feet: {
  29833. height: math.unit(1.56, "feet"),
  29834. weight: math.unit(150, "lb"),
  29835. name: "Feet",
  29836. image: {
  29837. source: "./media/characters/hugo-sigil/feet.svg",
  29838. extra: 177 / 177,
  29839. bottom: 12 / 189
  29840. }
  29841. },
  29842. },
  29843. [
  29844. {
  29845. name: "Normal",
  29846. height: math.unit(6, "feet")
  29847. },
  29848. {
  29849. name: "Macro",
  29850. height: math.unit(200, "feet"),
  29851. default: true
  29852. },
  29853. ]
  29854. ))
  29855. characterMakers.push(() => makeCharacter(
  29856. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29857. {
  29858. front: {
  29859. height: math.unit(6, "feet"),
  29860. weight: math.unit(150, "lb"),
  29861. name: "Front",
  29862. image: {
  29863. source: "./media/characters/peri/front.svg",
  29864. extra: 2354 / 2233,
  29865. bottom: 49 / 2403
  29866. }
  29867. },
  29868. },
  29869. [
  29870. {
  29871. name: "Really Small",
  29872. height: math.unit(1, "nm")
  29873. },
  29874. {
  29875. name: "Micro",
  29876. height: math.unit(4, "inches")
  29877. },
  29878. {
  29879. name: "Normal",
  29880. height: math.unit(7, "inches"),
  29881. default: true
  29882. },
  29883. {
  29884. name: "Macro",
  29885. height: math.unit(400, "feet")
  29886. },
  29887. {
  29888. name: "Megamacro",
  29889. height: math.unit(100, "miles")
  29890. },
  29891. ]
  29892. ))
  29893. characterMakers.push(() => makeCharacter(
  29894. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29895. {
  29896. frontSlim: {
  29897. height: math.unit(7, "feet"),
  29898. name: "Front (Slim)",
  29899. image: {
  29900. source: "./media/characters/issilora/front-slim.svg",
  29901. extra: 529 / 449,
  29902. bottom: 53 / 582
  29903. }
  29904. },
  29905. sideSlim: {
  29906. height: math.unit(7, "feet"),
  29907. name: "Side (Slim)",
  29908. image: {
  29909. source: "./media/characters/issilora/side-slim.svg",
  29910. extra: 570 / 480,
  29911. bottom: 30 / 600
  29912. }
  29913. },
  29914. backSlim: {
  29915. height: math.unit(7, "feet"),
  29916. name: "Back (Slim)",
  29917. image: {
  29918. source: "./media/characters/issilora/back-slim.svg",
  29919. extra: 537 / 455,
  29920. bottom: 46 / 583
  29921. }
  29922. },
  29923. frontBuff: {
  29924. height: math.unit(7, "feet"),
  29925. name: "Front (Buff)",
  29926. image: {
  29927. source: "./media/characters/issilora/front-buff.svg",
  29928. extra: 2310 / 2035,
  29929. bottom: 335 / 2645
  29930. }
  29931. },
  29932. head: {
  29933. height: math.unit(1.94, "feet"),
  29934. name: "Head",
  29935. image: {
  29936. source: "./media/characters/issilora/head.svg"
  29937. }
  29938. },
  29939. },
  29940. [
  29941. {
  29942. name: "Minimum",
  29943. height: math.unit(7, "feet")
  29944. },
  29945. {
  29946. name: "Comfortable",
  29947. height: math.unit(17, "feet")
  29948. },
  29949. {
  29950. name: "Fun Size",
  29951. height: math.unit(47, "feet")
  29952. },
  29953. {
  29954. name: "Natural Macro",
  29955. height: math.unit(137, "feet"),
  29956. default: true
  29957. },
  29958. {
  29959. name: "Maximum Kaiju",
  29960. height: math.unit(397, "feet")
  29961. },
  29962. ]
  29963. ))
  29964. characterMakers.push(() => makeCharacter(
  29965. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29966. {
  29967. front: {
  29968. height: math.unit(50 + 9/12, "feet"),
  29969. weight: math.unit(32.8, "tons"),
  29970. name: "Front",
  29971. image: {
  29972. source: "./media/characters/irb'iiritaahn/front.svg",
  29973. extra: 1878/1826,
  29974. bottom: 326/2204
  29975. }
  29976. },
  29977. back: {
  29978. height: math.unit(50 + 9/12, "feet"),
  29979. weight: math.unit(32.8, "tons"),
  29980. name: "Back",
  29981. image: {
  29982. source: "./media/characters/irb'iiritaahn/back.svg",
  29983. extra: 2052/2018,
  29984. bottom: 152/2204
  29985. }
  29986. },
  29987. head: {
  29988. height: math.unit(12.86, "feet"),
  29989. name: "Head",
  29990. image: {
  29991. source: "./media/characters/irb'iiritaahn/head.svg"
  29992. }
  29993. },
  29994. maw: {
  29995. height: math.unit(9.66, "feet"),
  29996. name: "Maw",
  29997. image: {
  29998. source: "./media/characters/irb'iiritaahn/maw.svg"
  29999. }
  30000. },
  30001. frontDick: {
  30002. height: math.unit(8.78461, "feet"),
  30003. name: "Front Dick",
  30004. image: {
  30005. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30006. }
  30007. },
  30008. rearDick: {
  30009. height: math.unit(8.78461, "feet"),
  30010. name: "Rear Dick",
  30011. image: {
  30012. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30013. }
  30014. },
  30015. rearDickUnfolded: {
  30016. height: math.unit(8.78, "feet"),
  30017. name: "Rear Dick (Unfolded)",
  30018. image: {
  30019. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30020. }
  30021. },
  30022. wings: {
  30023. height: math.unit(43, "feet"),
  30024. name: "Wings",
  30025. image: {
  30026. source: "./media/characters/irb'iiritaahn/wings.svg"
  30027. }
  30028. },
  30029. },
  30030. [
  30031. {
  30032. name: "Macro",
  30033. height: math.unit(50 + 9/12, "feet"),
  30034. default: true
  30035. },
  30036. ]
  30037. ))
  30038. characterMakers.push(() => makeCharacter(
  30039. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30040. {
  30041. front: {
  30042. height: math.unit(205, "cm"),
  30043. weight: math.unit(102, "kg"),
  30044. name: "Front",
  30045. image: {
  30046. source: "./media/characters/irbisgreif/front.svg",
  30047. extra: 785/706,
  30048. bottom: 13/798
  30049. }
  30050. },
  30051. back: {
  30052. height: math.unit(205, "cm"),
  30053. weight: math.unit(102, "kg"),
  30054. name: "Back",
  30055. image: {
  30056. source: "./media/characters/irbisgreif/back.svg",
  30057. extra: 713/701,
  30058. bottom: 26/739
  30059. }
  30060. },
  30061. frontDressed: {
  30062. height: math.unit(216, "cm"),
  30063. weight: math.unit(102, "kg"),
  30064. name: "Front-dressed",
  30065. image: {
  30066. source: "./media/characters/irbisgreif/front-dressed.svg",
  30067. extra: 902/776,
  30068. bottom: 14/916
  30069. }
  30070. },
  30071. sideDressed: {
  30072. height: math.unit(195, "cm"),
  30073. weight: math.unit(102, "kg"),
  30074. name: "Side-dressed",
  30075. image: {
  30076. source: "./media/characters/irbisgreif/side-dressed.svg",
  30077. extra: 788/688,
  30078. bottom: 21/809
  30079. }
  30080. },
  30081. backDressed: {
  30082. height: math.unit(216, "cm"),
  30083. weight: math.unit(102, "kg"),
  30084. name: "Back-dressed",
  30085. image: {
  30086. source: "./media/characters/irbisgreif/back-dressed.svg",
  30087. extra: 901/783,
  30088. bottom: 10/911
  30089. }
  30090. },
  30091. dick: {
  30092. height: math.unit(0.49, "feet"),
  30093. name: "Dick",
  30094. image: {
  30095. source: "./media/characters/irbisgreif/dick.svg"
  30096. }
  30097. },
  30098. wingTop: {
  30099. height: math.unit(1.93 , "feet"),
  30100. name: "Wing-top",
  30101. image: {
  30102. source: "./media/characters/irbisgreif/wing-top.svg"
  30103. }
  30104. },
  30105. wingBottom: {
  30106. height: math.unit(1.93 , "feet"),
  30107. name: "Wing-bottom",
  30108. image: {
  30109. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30110. }
  30111. },
  30112. },
  30113. [
  30114. {
  30115. name: "Normal",
  30116. height: math.unit(216, "cm"),
  30117. default: true
  30118. },
  30119. ]
  30120. ))
  30121. characterMakers.push(() => makeCharacter(
  30122. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30123. {
  30124. front: {
  30125. height: math.unit(6, "feet"),
  30126. weight: math.unit(150, "lb"),
  30127. name: "Front",
  30128. image: {
  30129. source: "./media/characters/pride/front.svg",
  30130. extra: 1299/1230,
  30131. bottom: 18/1317
  30132. }
  30133. },
  30134. },
  30135. [
  30136. {
  30137. name: "Normal",
  30138. height: math.unit(7, "feet")
  30139. },
  30140. {
  30141. name: "Mini-macro",
  30142. height: math.unit(11, "feet")
  30143. },
  30144. {
  30145. name: "Macro",
  30146. height: math.unit(15, "meters"),
  30147. default: true
  30148. },
  30149. {
  30150. name: "Macro+",
  30151. height: math.unit(40, "meters")
  30152. },
  30153. ]
  30154. ))
  30155. characterMakers.push(() => makeCharacter(
  30156. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30157. {
  30158. front: {
  30159. height: math.unit(4 + 2 / 12, "feet"),
  30160. weight: math.unit(95, "lb"),
  30161. name: "Front",
  30162. image: {
  30163. source: "./media/characters/vaelophis-nyx/front.svg",
  30164. extra: 2532/2330,
  30165. bottom: 0/2532
  30166. }
  30167. },
  30168. back: {
  30169. height: math.unit(4 + 2 / 12, "feet"),
  30170. weight: math.unit(95, "lb"),
  30171. name: "Back",
  30172. image: {
  30173. source: "./media/characters/vaelophis-nyx/back.svg",
  30174. extra: 2484/2361,
  30175. bottom: 0/2484
  30176. }
  30177. },
  30178. feralSide: {
  30179. height: math.unit(2 + 1/12, "feet"),
  30180. weight: math.unit(20, "lb"),
  30181. name: "Feral (Side)",
  30182. image: {
  30183. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30184. extra: 1721/1581,
  30185. bottom: 70/1791
  30186. }
  30187. },
  30188. feralLazing: {
  30189. height: math.unit(1.08, "feet"),
  30190. weight: math.unit(20, "lb"),
  30191. name: "Feral (Lazing)",
  30192. image: {
  30193. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30194. extra: 822/822,
  30195. bottom: 248/1070
  30196. }
  30197. },
  30198. ear: {
  30199. height: math.unit(0.416, "feet"),
  30200. name: "Ear",
  30201. image: {
  30202. source: "./media/characters/vaelophis-nyx/ear.svg"
  30203. }
  30204. },
  30205. eye: {
  30206. height: math.unit(0.0748, "feet"),
  30207. name: "Eye",
  30208. image: {
  30209. source: "./media/characters/vaelophis-nyx/eye.svg"
  30210. }
  30211. },
  30212. mouth: {
  30213. height: math.unit(0.378, "feet"),
  30214. name: "Mouth",
  30215. image: {
  30216. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30217. }
  30218. },
  30219. spade: {
  30220. height: math.unit(0.55, "feet"),
  30221. name: "Spade",
  30222. image: {
  30223. source: "./media/characters/vaelophis-nyx/spade.svg"
  30224. }
  30225. },
  30226. },
  30227. [
  30228. {
  30229. name: "Normal",
  30230. height: math.unit(4 + 2/12, "feet"),
  30231. default: true
  30232. },
  30233. ]
  30234. ))
  30235. characterMakers.push(() => makeCharacter(
  30236. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30237. {
  30238. front: {
  30239. height: math.unit(7, "feet"),
  30240. weight: math.unit(231, "lb"),
  30241. name: "Front",
  30242. image: {
  30243. source: "./media/characters/flux/front.svg",
  30244. extra: 919/871,
  30245. bottom: 0/919
  30246. }
  30247. },
  30248. back: {
  30249. height: math.unit(7, "feet"),
  30250. weight: math.unit(231, "lb"),
  30251. name: "Back",
  30252. image: {
  30253. source: "./media/characters/flux/back.svg",
  30254. extra: 1040/992,
  30255. bottom: 0/1040
  30256. }
  30257. },
  30258. frontDressed: {
  30259. height: math.unit(7, "feet"),
  30260. weight: math.unit(231, "lb"),
  30261. name: "Front (Dressed)",
  30262. image: {
  30263. source: "./media/characters/flux/front-dressed.svg",
  30264. extra: 919/871,
  30265. bottom: 0/919
  30266. }
  30267. },
  30268. feralSide: {
  30269. height: math.unit(5, "feet"),
  30270. weight: math.unit(150, "lb"),
  30271. name: "Feral (Side)",
  30272. image: {
  30273. source: "./media/characters/flux/feral-side.svg",
  30274. extra: 598/528,
  30275. bottom: 28/626
  30276. }
  30277. },
  30278. head: {
  30279. height: math.unit(1.585, "feet"),
  30280. name: "Head",
  30281. image: {
  30282. source: "./media/characters/flux/head.svg"
  30283. }
  30284. },
  30285. headSide: {
  30286. height: math.unit(1.74, "feet"),
  30287. name: "Head (Side)",
  30288. image: {
  30289. source: "./media/characters/flux/head-side.svg"
  30290. }
  30291. },
  30292. headSideFire: {
  30293. height: math.unit(1.76, "feet"),
  30294. name: "Head (Side, Fire)",
  30295. image: {
  30296. source: "./media/characters/flux/head-side-fire.svg"
  30297. }
  30298. },
  30299. },
  30300. [
  30301. {
  30302. name: "Normal",
  30303. height: math.unit(7, "feet"),
  30304. default: true
  30305. },
  30306. ]
  30307. ))
  30308. characterMakers.push(() => makeCharacter(
  30309. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30310. {
  30311. front: {
  30312. height: math.unit(9, "feet"),
  30313. weight: math.unit(1012, "lb"),
  30314. name: "Front",
  30315. image: {
  30316. source: "./media/characters/ulfra-lupae/front.svg",
  30317. extra: 1083/1011,
  30318. bottom: 67/1150
  30319. }
  30320. },
  30321. },
  30322. [
  30323. {
  30324. name: "Micro",
  30325. height: math.unit(6, "inches")
  30326. },
  30327. {
  30328. name: "Socializing",
  30329. height: math.unit(6 + 5/12, "feet")
  30330. },
  30331. {
  30332. name: "Normal",
  30333. height: math.unit(9, "feet"),
  30334. default: true
  30335. },
  30336. {
  30337. name: "Macro",
  30338. height: math.unit(150, "feet")
  30339. },
  30340. ]
  30341. ))
  30342. characterMakers.push(() => makeCharacter(
  30343. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30344. {
  30345. front: {
  30346. height: math.unit(5 + 2/12, "feet"),
  30347. weight: math.unit(120, "lb"),
  30348. name: "Front",
  30349. image: {
  30350. source: "./media/characters/timber/front.svg",
  30351. extra: 2814/2705,
  30352. bottom: 181/2995
  30353. }
  30354. },
  30355. },
  30356. [
  30357. {
  30358. name: "Normal",
  30359. height: math.unit(5 + 2/12, "feet"),
  30360. default: true
  30361. },
  30362. ]
  30363. ))
  30364. characterMakers.push(() => makeCharacter(
  30365. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30366. {
  30367. front: {
  30368. height: math.unit(5 + 7/12, "feet"),
  30369. weight: math.unit(220, "lb"),
  30370. name: "Front",
  30371. image: {
  30372. source: "./media/characters/nicki/front.svg",
  30373. extra: 453/419,
  30374. bottom: 7/460
  30375. }
  30376. },
  30377. frontAlt: {
  30378. height: math.unit(5 + 7/12, "feet"),
  30379. weight: math.unit(220, "lb"),
  30380. name: "Front-alt",
  30381. image: {
  30382. source: "./media/characters/nicki/front-alt.svg",
  30383. extra: 435/411,
  30384. bottom: 12/447
  30385. }
  30386. },
  30387. back: {
  30388. height: math.unit(5 + 7/12, "feet"),
  30389. weight: math.unit(220, "lb"),
  30390. name: "Back",
  30391. image: {
  30392. source: "./media/characters/nicki/back.svg",
  30393. extra: 440/413,
  30394. bottom: 19/459
  30395. }
  30396. },
  30397. taur: {
  30398. height: math.unit(7 + 6/12, "feet"),
  30399. weight: math.unit(700, "lb"),
  30400. name: "Taur",
  30401. image: {
  30402. source: "./media/characters/nicki/taur.svg",
  30403. extra: 975/773,
  30404. bottom: 0/975
  30405. }
  30406. },
  30407. frontNsfw: {
  30408. height: math.unit(5 + 7/12, "feet"),
  30409. weight: math.unit(220, "lb"),
  30410. name: "Front (NSFW)",
  30411. image: {
  30412. source: "./media/characters/nicki/front-nsfw.svg",
  30413. extra: 453/419,
  30414. bottom: 7/460
  30415. }
  30416. },
  30417. frontNsfwAlt: {
  30418. height: math.unit(5 + 7/12, "feet"),
  30419. weight: math.unit(220, "lb"),
  30420. name: "Front (Alt, NSFW)",
  30421. image: {
  30422. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30423. extra: 435/411,
  30424. bottom: 12/447
  30425. }
  30426. },
  30427. backNsfw: {
  30428. height: math.unit(5 + 7/12, "feet"),
  30429. weight: math.unit(220, "lb"),
  30430. name: "Back (NSFW)",
  30431. image: {
  30432. source: "./media/characters/nicki/back-nsfw.svg",
  30433. extra: 440/413,
  30434. bottom: 19/459
  30435. }
  30436. },
  30437. head: {
  30438. height: math.unit(2.1, "feet"),
  30439. name: "Head",
  30440. image: {
  30441. source: "./media/characters/nicki/head.svg"
  30442. }
  30443. },
  30444. paw: {
  30445. height: math.unit(1.88, "feet"),
  30446. name: "Paw",
  30447. image: {
  30448. source: "./media/characters/nicki/paw.svg"
  30449. }
  30450. },
  30451. },
  30452. [
  30453. {
  30454. name: "Normal",
  30455. height: math.unit(5 + 7/12, "feet"),
  30456. default: true
  30457. },
  30458. ]
  30459. ))
  30460. characterMakers.push(() => makeCharacter(
  30461. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30462. {
  30463. front: {
  30464. height: math.unit(7 + 10/12, "feet"),
  30465. weight: math.unit(3.5, "tons"),
  30466. name: "Front",
  30467. image: {
  30468. source: "./media/characters/lee/front.svg",
  30469. extra: 1773/1615,
  30470. bottom: 86/1859
  30471. }
  30472. },
  30473. hand: {
  30474. height: math.unit(1.78, "feet"),
  30475. name: "Hand",
  30476. image: {
  30477. source: "./media/characters/lee/hand.svg"
  30478. }
  30479. },
  30480. maw: {
  30481. height: math.unit(1.18, "feet"),
  30482. name: "Maw",
  30483. image: {
  30484. source: "./media/characters/lee/maw.svg"
  30485. }
  30486. },
  30487. },
  30488. [
  30489. {
  30490. name: "Normal",
  30491. height: math.unit(7 + 10/12, "feet"),
  30492. default: true
  30493. },
  30494. ]
  30495. ))
  30496. characterMakers.push(() => makeCharacter(
  30497. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30498. {
  30499. front: {
  30500. height: math.unit(9, "feet"),
  30501. name: "Front",
  30502. image: {
  30503. source: "./media/characters/guti/front.svg",
  30504. extra: 4551/4355,
  30505. bottom: 123/4674
  30506. }
  30507. },
  30508. tongue: {
  30509. height: math.unit(1, "feet"),
  30510. name: "Tongue",
  30511. image: {
  30512. source: "./media/characters/guti/tongue.svg"
  30513. }
  30514. },
  30515. paw: {
  30516. height: math.unit(1.18, "feet"),
  30517. name: "Paw",
  30518. image: {
  30519. source: "./media/characters/guti/paw.svg"
  30520. }
  30521. },
  30522. },
  30523. [
  30524. {
  30525. name: "Normal",
  30526. height: math.unit(9, "feet"),
  30527. default: true
  30528. },
  30529. ]
  30530. ))
  30531. characterMakers.push(() => makeCharacter(
  30532. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30533. {
  30534. side: {
  30535. height: math.unit(5, "meters"),
  30536. name: "Side",
  30537. image: {
  30538. source: "./media/characters/vesper/side.svg",
  30539. extra: 1605/1518,
  30540. bottom: 0/1605
  30541. }
  30542. },
  30543. },
  30544. [
  30545. {
  30546. name: "Small",
  30547. height: math.unit(5, "meters")
  30548. },
  30549. {
  30550. name: "Sage",
  30551. height: math.unit(100, "meters"),
  30552. default: true
  30553. },
  30554. {
  30555. name: "Fun Size",
  30556. height: math.unit(600, "meters")
  30557. },
  30558. {
  30559. name: "Goddess",
  30560. height: math.unit(20000, "km")
  30561. },
  30562. {
  30563. name: "Maximum",
  30564. height: math.unit(5, "galaxies")
  30565. },
  30566. ]
  30567. ))
  30568. characterMakers.push(() => makeCharacter(
  30569. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30570. {
  30571. front: {
  30572. height: math.unit(6 + 3/12, "feet"),
  30573. weight: math.unit(190, "lb"),
  30574. name: "Front",
  30575. image: {
  30576. source: "./media/characters/gawain/front.svg",
  30577. extra: 2222/2139,
  30578. bottom: 90/2312
  30579. }
  30580. },
  30581. back: {
  30582. height: math.unit(6 + 3/12, "feet"),
  30583. weight: math.unit(190, "lb"),
  30584. name: "Back",
  30585. image: {
  30586. source: "./media/characters/gawain/back.svg",
  30587. extra: 2199/2111,
  30588. bottom: 73/2272
  30589. }
  30590. },
  30591. },
  30592. [
  30593. {
  30594. name: "Normal",
  30595. height: math.unit(6 + 3/12, "feet"),
  30596. default: true
  30597. },
  30598. ]
  30599. ))
  30600. characterMakers.push(() => makeCharacter(
  30601. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30602. {
  30603. side: {
  30604. height: math.unit(3.5, "meters"),
  30605. weight: math.unit(16000, "lb"),
  30606. name: "Side",
  30607. image: {
  30608. source: "./media/characters/dascalti/side.svg",
  30609. extra: 392/273,
  30610. bottom: 47/439
  30611. }
  30612. },
  30613. breath: {
  30614. height: math.unit(7.4, "feet"),
  30615. name: "Breath",
  30616. image: {
  30617. source: "./media/characters/dascalti/breath.svg"
  30618. }
  30619. },
  30620. fed: {
  30621. height: math.unit(3.6, "meters"),
  30622. weight: math.unit(16000, "lb"),
  30623. name: "Fed",
  30624. image: {
  30625. source: "./media/characters/dascalti/fed.svg",
  30626. extra: 1419/820,
  30627. bottom: 95/1514
  30628. }
  30629. },
  30630. },
  30631. [
  30632. {
  30633. name: "Normal",
  30634. height: math.unit(3.5, "meters"),
  30635. default: true
  30636. },
  30637. ]
  30638. ))
  30639. characterMakers.push(() => makeCharacter(
  30640. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30641. {
  30642. front: {
  30643. height: math.unit(3 + 5/12, "feet"),
  30644. name: "Front",
  30645. image: {
  30646. source: "./media/characters/mauve/front.svg",
  30647. extra: 1126/1033,
  30648. bottom: 65/1191
  30649. }
  30650. },
  30651. side: {
  30652. height: math.unit(3 + 5/12, "feet"),
  30653. name: "Side",
  30654. image: {
  30655. source: "./media/characters/mauve/side.svg",
  30656. extra: 1089/1001,
  30657. bottom: 29/1118
  30658. }
  30659. },
  30660. back: {
  30661. height: math.unit(3 + 5/12, "feet"),
  30662. name: "Back",
  30663. image: {
  30664. source: "./media/characters/mauve/back.svg",
  30665. extra: 1173/1053,
  30666. bottom: 109/1282
  30667. }
  30668. },
  30669. },
  30670. [
  30671. {
  30672. name: "Normal",
  30673. height: math.unit(3 + 5/12, "feet"),
  30674. default: true
  30675. },
  30676. ]
  30677. ))
  30678. characterMakers.push(() => makeCharacter(
  30679. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30680. {
  30681. front: {
  30682. height: math.unit(6 + 3/12, "feet"),
  30683. weight: math.unit(430, "lb"),
  30684. name: "Front",
  30685. image: {
  30686. source: "./media/characters/carlos/front.svg",
  30687. extra: 1964/1913,
  30688. bottom: 70/2034
  30689. }
  30690. },
  30691. },
  30692. [
  30693. {
  30694. name: "Normal",
  30695. height: math.unit(6 + 3/12, "feet"),
  30696. default: true
  30697. },
  30698. ]
  30699. ))
  30700. characterMakers.push(() => makeCharacter(
  30701. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30702. {
  30703. back: {
  30704. height: math.unit(5 + 10/12, "feet"),
  30705. weight: math.unit(200, "lb"),
  30706. name: "Back",
  30707. image: {
  30708. source: "./media/characters/jax/back.svg",
  30709. extra: 764/739,
  30710. bottom: 25/789
  30711. }
  30712. },
  30713. },
  30714. [
  30715. {
  30716. name: "Normal",
  30717. height: math.unit(5 + 10/12, "feet"),
  30718. default: true
  30719. },
  30720. ]
  30721. ))
  30722. characterMakers.push(() => makeCharacter(
  30723. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30724. {
  30725. front: {
  30726. height: math.unit(8, "feet"),
  30727. weight: math.unit(250, "lb"),
  30728. name: "Front",
  30729. image: {
  30730. source: "./media/characters/eikthynir/front.svg",
  30731. extra: 1332/1166,
  30732. bottom: 82/1414
  30733. }
  30734. },
  30735. back: {
  30736. height: math.unit(8, "feet"),
  30737. weight: math.unit(250, "lb"),
  30738. name: "Back",
  30739. image: {
  30740. source: "./media/characters/eikthynir/back.svg",
  30741. extra: 1342/1190,
  30742. bottom: 19/1361
  30743. }
  30744. },
  30745. dick: {
  30746. height: math.unit(2.35, "feet"),
  30747. name: "Dick",
  30748. image: {
  30749. source: "./media/characters/eikthynir/dick.svg"
  30750. }
  30751. },
  30752. },
  30753. [
  30754. {
  30755. name: "Normal",
  30756. height: math.unit(8, "feet"),
  30757. default: true
  30758. },
  30759. ]
  30760. ))
  30761. characterMakers.push(() => makeCharacter(
  30762. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30763. {
  30764. front: {
  30765. height: math.unit(99, "meters"),
  30766. weight: math.unit(13000, "tons"),
  30767. name: "Front",
  30768. image: {
  30769. source: "./media/characters/zlmos/front.svg",
  30770. extra: 2202/1992,
  30771. bottom: 315/2517
  30772. }
  30773. },
  30774. },
  30775. [
  30776. {
  30777. name: "Macro",
  30778. height: math.unit(99, "meters"),
  30779. default: true
  30780. },
  30781. ]
  30782. ))
  30783. characterMakers.push(() => makeCharacter(
  30784. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30785. {
  30786. front: {
  30787. height: math.unit(6 + 5/12, "feet"),
  30788. name: "Front",
  30789. image: {
  30790. source: "./media/characters/purri/front.svg",
  30791. extra: 1698/1610,
  30792. bottom: 32/1730
  30793. }
  30794. },
  30795. frontAlt: {
  30796. height: math.unit(6 + 5/12, "feet"),
  30797. name: "Front (Alt)",
  30798. image: {
  30799. source: "./media/characters/purri/front-alt.svg",
  30800. extra: 450/420,
  30801. bottom: 26/476
  30802. }
  30803. },
  30804. boots: {
  30805. height: math.unit(5.5, "feet"),
  30806. name: "Boots",
  30807. image: {
  30808. source: "./media/characters/purri/boots.svg",
  30809. extra: 905/853,
  30810. bottom: 18/923
  30811. }
  30812. },
  30813. lying: {
  30814. height: math.unit(2, "feet"),
  30815. name: "Lying",
  30816. image: {
  30817. source: "./media/characters/purri/lying.svg",
  30818. extra: 940/843,
  30819. bottom: 146/1086
  30820. }
  30821. },
  30822. devious: {
  30823. height: math.unit(1.77, "feet"),
  30824. name: "Devious",
  30825. image: {
  30826. source: "./media/characters/purri/devious.svg",
  30827. extra: 1440/1155,
  30828. bottom: 147/1587
  30829. }
  30830. },
  30831. bean: {
  30832. height: math.unit(1.94, "feet"),
  30833. name: "Bean",
  30834. image: {
  30835. source: "./media/characters/purri/bean.svg"
  30836. }
  30837. },
  30838. },
  30839. [
  30840. {
  30841. name: "Micro",
  30842. height: math.unit(1, "mm")
  30843. },
  30844. {
  30845. name: "Normal",
  30846. height: math.unit(6 + 5/12, "feet"),
  30847. default: true
  30848. },
  30849. {
  30850. name: "Macro :3c",
  30851. height: math.unit(2, "miles")
  30852. },
  30853. ]
  30854. ))
  30855. characterMakers.push(() => makeCharacter(
  30856. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30857. {
  30858. front: {
  30859. height: math.unit(6 + 2/12, "feet"),
  30860. weight: math.unit(250, "lb"),
  30861. name: "Front",
  30862. image: {
  30863. source: "./media/characters/moonlight/front.svg",
  30864. extra: 1044/908,
  30865. bottom: 56/1100
  30866. }
  30867. },
  30868. feral: {
  30869. height: math.unit(3 + 1/12, "feet"),
  30870. weight: math.unit(50, "kg"),
  30871. name: "Feral",
  30872. image: {
  30873. source: "./media/characters/moonlight/feral.svg",
  30874. extra: 3705/2791,
  30875. bottom: 145/3850
  30876. }
  30877. },
  30878. paw: {
  30879. height: math.unit(1, "feet"),
  30880. name: "Paw",
  30881. image: {
  30882. source: "./media/characters/moonlight/paw.svg"
  30883. }
  30884. },
  30885. paws: {
  30886. height: math.unit(0.98, "feet"),
  30887. name: "Paws",
  30888. image: {
  30889. source: "./media/characters/moonlight/paws.svg",
  30890. extra: 939/939,
  30891. bottom: 50/989
  30892. }
  30893. },
  30894. mouth: {
  30895. height: math.unit(0.48, "feet"),
  30896. name: "Mouth",
  30897. image: {
  30898. source: "./media/characters/moonlight/mouth.svg"
  30899. }
  30900. },
  30901. dick: {
  30902. height: math.unit(1.46, "feet"),
  30903. name: "Dick",
  30904. image: {
  30905. source: "./media/characters/moonlight/dick.svg"
  30906. }
  30907. },
  30908. },
  30909. [
  30910. {
  30911. name: "Normal",
  30912. height: math.unit(6 + 2/12, "feet"),
  30913. default: true
  30914. },
  30915. {
  30916. name: "Macro",
  30917. height: math.unit(300, "feet")
  30918. },
  30919. {
  30920. name: "Macro+",
  30921. height: math.unit(1, "mile")
  30922. },
  30923. {
  30924. name: "Mt. Moon",
  30925. height: math.unit(5, "miles")
  30926. },
  30927. {
  30928. name: "Megamacro",
  30929. height: math.unit(15, "miles")
  30930. },
  30931. ]
  30932. ))
  30933. characterMakers.push(() => makeCharacter(
  30934. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30935. {
  30936. back: {
  30937. height: math.unit(6, "feet"),
  30938. weight: math.unit(150, "lb"),
  30939. name: "Back",
  30940. image: {
  30941. source: "./media/characters/sylen/back.svg",
  30942. extra: 1335/1273,
  30943. bottom: 107/1442
  30944. }
  30945. },
  30946. },
  30947. [
  30948. {
  30949. name: "Normal",
  30950. height: math.unit(5 + 5/12, "feet")
  30951. },
  30952. {
  30953. name: "Megamacro",
  30954. height: math.unit(3, "miles"),
  30955. default: true
  30956. },
  30957. ]
  30958. ))
  30959. characterMakers.push(() => makeCharacter(
  30960. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30961. {
  30962. front: {
  30963. height: math.unit(6, "feet"),
  30964. weight: math.unit(190, "lb"),
  30965. name: "Front",
  30966. image: {
  30967. source: "./media/characters/huttser/front.svg",
  30968. extra: 1152/1058,
  30969. bottom: 23/1175
  30970. }
  30971. },
  30972. side: {
  30973. height: math.unit(6, "feet"),
  30974. weight: math.unit(190, "lb"),
  30975. name: "Side",
  30976. image: {
  30977. source: "./media/characters/huttser/side.svg",
  30978. extra: 1174/1065,
  30979. bottom: 18/1192
  30980. }
  30981. },
  30982. back: {
  30983. height: math.unit(6, "feet"),
  30984. weight: math.unit(190, "lb"),
  30985. name: "Back",
  30986. image: {
  30987. source: "./media/characters/huttser/back.svg",
  30988. extra: 1158/1056,
  30989. bottom: 12/1170
  30990. }
  30991. },
  30992. },
  30993. [
  30994. ]
  30995. ))
  30996. characterMakers.push(() => makeCharacter(
  30997. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30998. {
  30999. side: {
  31000. height: math.unit(12 + 9/12, "feet"),
  31001. weight: math.unit(15000, "lb"),
  31002. name: "Side",
  31003. image: {
  31004. source: "./media/characters/faan/side.svg",
  31005. extra: 2747/2697,
  31006. bottom: 0/2747
  31007. }
  31008. },
  31009. front: {
  31010. height: math.unit(12 + 9/12, "feet"),
  31011. weight: math.unit(15000, "lb"),
  31012. name: "Front",
  31013. image: {
  31014. source: "./media/characters/faan/front.svg",
  31015. extra: 607/571,
  31016. bottom: 24/631
  31017. }
  31018. },
  31019. head: {
  31020. height: math.unit(2.85, "feet"),
  31021. name: "Head",
  31022. image: {
  31023. source: "./media/characters/faan/head.svg"
  31024. }
  31025. },
  31026. headAlt: {
  31027. height: math.unit(3.13, "feet"),
  31028. name: "Head-alt",
  31029. image: {
  31030. source: "./media/characters/faan/head-alt.svg"
  31031. }
  31032. },
  31033. },
  31034. [
  31035. {
  31036. name: "Normal",
  31037. height: math.unit(12 + 9/12, "feet"),
  31038. default: true
  31039. },
  31040. ]
  31041. ))
  31042. characterMakers.push(() => makeCharacter(
  31043. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31044. {
  31045. front: {
  31046. height: math.unit(6, "feet"),
  31047. weight: math.unit(300, "lb"),
  31048. name: "Front",
  31049. image: {
  31050. source: "./media/characters/tanio/front.svg",
  31051. extra: 711/673,
  31052. bottom: 25/736
  31053. }
  31054. },
  31055. },
  31056. [
  31057. {
  31058. name: "Normal",
  31059. height: math.unit(6, "feet"),
  31060. default: true
  31061. },
  31062. ]
  31063. ))
  31064. characterMakers.push(() => makeCharacter(
  31065. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31066. {
  31067. front: {
  31068. height: math.unit(3, "inches"),
  31069. name: "Front",
  31070. image: {
  31071. source: "./media/characters/noboru/front.svg",
  31072. extra: 1039/932,
  31073. bottom: 18/1057
  31074. }
  31075. },
  31076. },
  31077. [
  31078. {
  31079. name: "Micro",
  31080. height: math.unit(3, "inches"),
  31081. default: true
  31082. },
  31083. ]
  31084. ))
  31085. characterMakers.push(() => makeCharacter(
  31086. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31087. {
  31088. front: {
  31089. height: math.unit(1.85, "meters"),
  31090. weight: math.unit(80, "kg"),
  31091. name: "Front",
  31092. image: {
  31093. source: "./media/characters/daniel-barrett/front.svg",
  31094. extra: 355/337,
  31095. bottom: 9/364
  31096. }
  31097. },
  31098. },
  31099. [
  31100. {
  31101. name: "Pico",
  31102. height: math.unit(0.0433, "mm")
  31103. },
  31104. {
  31105. name: "Nano",
  31106. height: math.unit(1.5, "mm")
  31107. },
  31108. {
  31109. name: "Micro",
  31110. height: math.unit(5.3, "cm"),
  31111. default: true
  31112. },
  31113. {
  31114. name: "Normal",
  31115. height: math.unit(1.85, "meters")
  31116. },
  31117. {
  31118. name: "Macro",
  31119. height: math.unit(64.7, "meters")
  31120. },
  31121. {
  31122. name: "Megamacro",
  31123. height: math.unit(2.26, "km")
  31124. },
  31125. {
  31126. name: "Gigamacro",
  31127. height: math.unit(79, "km")
  31128. },
  31129. {
  31130. name: "Teramacro",
  31131. height: math.unit(2765, "km")
  31132. },
  31133. {
  31134. name: "Petamacro",
  31135. height: math.unit(96678, "km")
  31136. },
  31137. ]
  31138. ))
  31139. characterMakers.push(() => makeCharacter(
  31140. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31141. {
  31142. front: {
  31143. height: math.unit(30, "meters"),
  31144. weight: math.unit(400, "tons"),
  31145. name: "Front",
  31146. image: {
  31147. source: "./media/characters/zeel/front.svg",
  31148. extra: 2599/2599,
  31149. bottom: 226/2825
  31150. }
  31151. },
  31152. },
  31153. [
  31154. {
  31155. name: "Macro",
  31156. height: math.unit(30, "meters"),
  31157. default: true
  31158. },
  31159. ]
  31160. ))
  31161. characterMakers.push(() => makeCharacter(
  31162. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31163. {
  31164. front: {
  31165. height: math.unit(6 + 7/12, "feet"),
  31166. weight: math.unit(210, "lb"),
  31167. name: "Front",
  31168. image: {
  31169. source: "./media/characters/tarn/front.svg",
  31170. extra: 3517/3220,
  31171. bottom: 91/3608
  31172. }
  31173. },
  31174. back: {
  31175. height: math.unit(6 + 7/12, "feet"),
  31176. weight: math.unit(210, "lb"),
  31177. name: "Back",
  31178. image: {
  31179. source: "./media/characters/tarn/back.svg",
  31180. extra: 3566/3241,
  31181. bottom: 34/3600
  31182. }
  31183. },
  31184. dick: {
  31185. height: math.unit(1.65, "feet"),
  31186. name: "Dick",
  31187. image: {
  31188. source: "./media/characters/tarn/dick.svg"
  31189. }
  31190. },
  31191. paw: {
  31192. height: math.unit(1.80, "feet"),
  31193. name: "Paw",
  31194. image: {
  31195. source: "./media/characters/tarn/paw.svg"
  31196. }
  31197. },
  31198. tongue: {
  31199. height: math.unit(0.97, "feet"),
  31200. name: "Tongue",
  31201. image: {
  31202. source: "./media/characters/tarn/tongue.svg"
  31203. }
  31204. },
  31205. },
  31206. [
  31207. {
  31208. name: "Micro",
  31209. height: math.unit(4, "inches")
  31210. },
  31211. {
  31212. name: "Normal",
  31213. height: math.unit(6 + 7/12, "feet"),
  31214. default: true
  31215. },
  31216. {
  31217. name: "Macro",
  31218. height: math.unit(300, "feet")
  31219. },
  31220. ]
  31221. ))
  31222. characterMakers.push(() => makeCharacter(
  31223. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31224. {
  31225. front: {
  31226. height: math.unit(5 + 7/12, "feet"),
  31227. weight: math.unit(80, "kg"),
  31228. name: "Front",
  31229. image: {
  31230. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31231. extra: 3023/2865,
  31232. bottom: 33/3056
  31233. }
  31234. },
  31235. back: {
  31236. height: math.unit(5 + 7/12, "feet"),
  31237. weight: math.unit(80, "kg"),
  31238. name: "Back",
  31239. image: {
  31240. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31241. extra: 3020/2886,
  31242. bottom: 30/3050
  31243. }
  31244. },
  31245. dick: {
  31246. height: math.unit(0.98, "feet"),
  31247. name: "Dick",
  31248. image: {
  31249. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31250. }
  31251. },
  31252. anatomy: {
  31253. height: math.unit(2.86, "feet"),
  31254. name: "Anatomy",
  31255. image: {
  31256. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31257. }
  31258. },
  31259. },
  31260. [
  31261. {
  31262. name: "Really Small",
  31263. height: math.unit(2, "inches")
  31264. },
  31265. {
  31266. name: "Micro",
  31267. height: math.unit(5.583, "inches")
  31268. },
  31269. {
  31270. name: "Normal",
  31271. height: math.unit(5 + 7/12, "feet"),
  31272. default: true
  31273. },
  31274. {
  31275. name: "Macro",
  31276. height: math.unit(67, "feet")
  31277. },
  31278. {
  31279. name: "Megamacro",
  31280. height: math.unit(134, "feet")
  31281. },
  31282. ]
  31283. ))
  31284. characterMakers.push(() => makeCharacter(
  31285. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31286. {
  31287. front: {
  31288. height: math.unit(9, "feet"),
  31289. weight: math.unit(120, "lb"),
  31290. name: "Front",
  31291. image: {
  31292. source: "./media/characters/sally/front.svg",
  31293. extra: 1506/1349,
  31294. bottom: 66/1572
  31295. }
  31296. },
  31297. },
  31298. [
  31299. {
  31300. name: "Normal",
  31301. height: math.unit(9, "feet"),
  31302. default: true
  31303. },
  31304. ]
  31305. ))
  31306. characterMakers.push(() => makeCharacter(
  31307. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31308. {
  31309. front: {
  31310. height: math.unit(8, "feet"),
  31311. weight: math.unit(900, "lb"),
  31312. name: "Front",
  31313. image: {
  31314. source: "./media/characters/owen/front.svg",
  31315. extra: 1761/1657,
  31316. bottom: 74/1835
  31317. }
  31318. },
  31319. side: {
  31320. height: math.unit(8, "feet"),
  31321. weight: math.unit(900, "lb"),
  31322. name: "Side",
  31323. image: {
  31324. source: "./media/characters/owen/side.svg",
  31325. extra: 1797/1734,
  31326. bottom: 30/1827
  31327. }
  31328. },
  31329. back: {
  31330. height: math.unit(8, "feet"),
  31331. weight: math.unit(900, "lb"),
  31332. name: "Back",
  31333. image: {
  31334. source: "./media/characters/owen/back.svg",
  31335. extra: 1796/1706,
  31336. bottom: 59/1855
  31337. }
  31338. },
  31339. maw: {
  31340. height: math.unit(1.76, "feet"),
  31341. name: "Maw",
  31342. image: {
  31343. source: "./media/characters/owen/maw.svg"
  31344. }
  31345. },
  31346. },
  31347. [
  31348. {
  31349. name: "Normal",
  31350. height: math.unit(8, "feet"),
  31351. default: true
  31352. },
  31353. ]
  31354. ))
  31355. characterMakers.push(() => makeCharacter(
  31356. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31357. {
  31358. front: {
  31359. height: math.unit(4, "feet"),
  31360. weight: math.unit(400, "lb"),
  31361. name: "Front",
  31362. image: {
  31363. source: "./media/characters/ryth/front.svg",
  31364. extra: 876/691,
  31365. bottom: 25/901
  31366. }
  31367. },
  31368. goia: {
  31369. height: math.unit(12, "feet"),
  31370. weight: math.unit(10800, "lb"),
  31371. name: "Goia",
  31372. image: {
  31373. source: "./media/characters/ryth/goia.svg",
  31374. extra: 3450/3198,
  31375. bottom: 61/3511
  31376. }
  31377. },
  31378. },
  31379. [
  31380. {
  31381. name: "Normal",
  31382. height: math.unit(4, "feet"),
  31383. default: true
  31384. },
  31385. ]
  31386. ))
  31387. characterMakers.push(() => makeCharacter(
  31388. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31389. {
  31390. front: {
  31391. height: math.unit(7, "feet"),
  31392. weight: math.unit(180, "lb"),
  31393. name: "Front",
  31394. image: {
  31395. source: "./media/characters/necrolance/front.svg",
  31396. extra: 1062/947,
  31397. bottom: 41/1103
  31398. }
  31399. },
  31400. back: {
  31401. height: math.unit(7, "feet"),
  31402. weight: math.unit(180, "lb"),
  31403. name: "Back",
  31404. image: {
  31405. source: "./media/characters/necrolance/back.svg",
  31406. extra: 1045/984,
  31407. bottom: 14/1059
  31408. }
  31409. },
  31410. wing: {
  31411. height: math.unit(2.67, "feet"),
  31412. name: "Wing",
  31413. image: {
  31414. source: "./media/characters/necrolance/wing.svg"
  31415. }
  31416. },
  31417. },
  31418. [
  31419. {
  31420. name: "Normal",
  31421. height: math.unit(7, "feet"),
  31422. default: true
  31423. },
  31424. ]
  31425. ))
  31426. characterMakers.push(() => makeCharacter(
  31427. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31428. {
  31429. front: {
  31430. height: math.unit(76, "meters"),
  31431. weight: math.unit(30000, "tons"),
  31432. name: "Front",
  31433. image: {
  31434. source: "./media/characters/tyler/front.svg",
  31435. extra: 1640/1640,
  31436. bottom: 114/1754
  31437. }
  31438. },
  31439. },
  31440. [
  31441. {
  31442. name: "Macro",
  31443. height: math.unit(76, "meters"),
  31444. default: true
  31445. },
  31446. ]
  31447. ))
  31448. characterMakers.push(() => makeCharacter(
  31449. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31450. {
  31451. front: {
  31452. height: math.unit(4 + 11/12, "feet"),
  31453. weight: math.unit(132, "lb"),
  31454. name: "Front",
  31455. image: {
  31456. source: "./media/characters/icey/front.svg",
  31457. extra: 2750/2550,
  31458. bottom: 33/2783
  31459. }
  31460. },
  31461. back: {
  31462. height: math.unit(4 + 11/12, "feet"),
  31463. weight: math.unit(132, "lb"),
  31464. name: "Back",
  31465. image: {
  31466. source: "./media/characters/icey/back.svg",
  31467. extra: 2624/2481,
  31468. bottom: 35/2659
  31469. }
  31470. },
  31471. },
  31472. [
  31473. {
  31474. name: "Normal",
  31475. height: math.unit(4 + 11/12, "feet"),
  31476. default: true
  31477. },
  31478. ]
  31479. ))
  31480. characterMakers.push(() => makeCharacter(
  31481. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31482. {
  31483. front: {
  31484. height: math.unit(100, "feet"),
  31485. weight: math.unit(0, "lb"),
  31486. name: "Front",
  31487. image: {
  31488. source: "./media/characters/smile/front.svg",
  31489. extra: 2983/2912,
  31490. bottom: 162/3145
  31491. }
  31492. },
  31493. back: {
  31494. height: math.unit(100, "feet"),
  31495. weight: math.unit(0, "lb"),
  31496. name: "Back",
  31497. image: {
  31498. source: "./media/characters/smile/back.svg",
  31499. extra: 3143/3031,
  31500. bottom: 91/3234
  31501. }
  31502. },
  31503. head: {
  31504. height: math.unit(26.3, "feet"),
  31505. weight: math.unit(0, "lb"),
  31506. name: "Head",
  31507. image: {
  31508. source: "./media/characters/smile/head.svg"
  31509. }
  31510. },
  31511. collar: {
  31512. height: math.unit(5.3, "feet"),
  31513. weight: math.unit(0, "lb"),
  31514. name: "Collar",
  31515. image: {
  31516. source: "./media/characters/smile/collar.svg"
  31517. }
  31518. },
  31519. },
  31520. [
  31521. {
  31522. name: "Macro",
  31523. height: math.unit(100, "feet"),
  31524. default: true
  31525. },
  31526. ]
  31527. ))
  31528. characterMakers.push(() => makeCharacter(
  31529. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31530. {
  31531. dragon: {
  31532. height: math.unit(26, "feet"),
  31533. weight: math.unit(36, "tons"),
  31534. name: "Dragon",
  31535. image: {
  31536. source: "./media/characters/arimphae/dragon.svg",
  31537. extra: 1574/983,
  31538. bottom: 357/1931
  31539. }
  31540. },
  31541. drake: {
  31542. height: math.unit(9, "feet"),
  31543. weight: math.unit(1.5, "tons"),
  31544. name: "Drake",
  31545. image: {
  31546. source: "./media/characters/arimphae/drake.svg",
  31547. extra: 1120/925,
  31548. bottom: 435/1555
  31549. }
  31550. },
  31551. },
  31552. [
  31553. {
  31554. name: "Small",
  31555. height: math.unit(26*5/9, "feet")
  31556. },
  31557. {
  31558. name: "Normal",
  31559. height: math.unit(26, "feet"),
  31560. default: true
  31561. },
  31562. ]
  31563. ))
  31564. characterMakers.push(() => makeCharacter(
  31565. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31566. {
  31567. front: {
  31568. height: math.unit(8 + 9/12, "feet"),
  31569. name: "Front",
  31570. image: {
  31571. source: "./media/characters/xander/front.svg",
  31572. extra: 848/673,
  31573. bottom: 62/910
  31574. }
  31575. },
  31576. },
  31577. [
  31578. {
  31579. name: "Normal",
  31580. height: math.unit(8 + 9/12, "feet"),
  31581. default: true
  31582. },
  31583. {
  31584. name: "Gaze Grabber",
  31585. height: math.unit(13 + 8/12, "feet")
  31586. },
  31587. {
  31588. name: "Jaw Dropper",
  31589. height: math.unit(27, "feet")
  31590. },
  31591. {
  31592. name: "Show Stopper",
  31593. height: math.unit(136, "feet")
  31594. },
  31595. {
  31596. name: "Superstar",
  31597. height: math.unit(1.9e6, "miles")
  31598. },
  31599. ]
  31600. ))
  31601. characterMakers.push(() => makeCharacter(
  31602. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31603. {
  31604. side: {
  31605. height: math.unit(2100, "feet"),
  31606. name: "Side",
  31607. image: {
  31608. source: "./media/characters/osiris/side.svg",
  31609. extra: 1105/939,
  31610. bottom: 167/1272
  31611. }
  31612. },
  31613. },
  31614. [
  31615. {
  31616. name: "Macro",
  31617. height: math.unit(2100, "feet"),
  31618. default: true
  31619. },
  31620. ]
  31621. ))
  31622. characterMakers.push(() => makeCharacter(
  31623. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31624. {
  31625. front: {
  31626. height: math.unit(6 + 8/12, "feet"),
  31627. weight: math.unit(225, "lb"),
  31628. name: "Front",
  31629. image: {
  31630. source: "./media/characters/rhys-londe/front.svg",
  31631. extra: 2258/2141,
  31632. bottom: 188/2446
  31633. }
  31634. },
  31635. back: {
  31636. height: math.unit(6 + 8/12, "feet"),
  31637. weight: math.unit(225, "lb"),
  31638. name: "Back",
  31639. image: {
  31640. source: "./media/characters/rhys-londe/back.svg",
  31641. extra: 2237/2137,
  31642. bottom: 63/2300
  31643. }
  31644. },
  31645. frontNsfw: {
  31646. height: math.unit(6 + 8/12, "feet"),
  31647. weight: math.unit(225, "lb"),
  31648. name: "Front (NSFW)",
  31649. image: {
  31650. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31651. extra: 2258/2141,
  31652. bottom: 188/2446
  31653. }
  31654. },
  31655. backNsfw: {
  31656. height: math.unit(6 + 8/12, "feet"),
  31657. weight: math.unit(225, "lb"),
  31658. name: "Back (NSFW)",
  31659. image: {
  31660. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31661. extra: 2237/2137,
  31662. bottom: 63/2300
  31663. }
  31664. },
  31665. dick: {
  31666. height: math.unit(30, "inches"),
  31667. name: "Dick",
  31668. image: {
  31669. source: "./media/characters/rhys-londe/dick.svg"
  31670. }
  31671. },
  31672. maw: {
  31673. height: math.unit(1.6, "feet"),
  31674. name: "Maw",
  31675. image: {
  31676. source: "./media/characters/rhys-londe/maw.svg"
  31677. }
  31678. },
  31679. },
  31680. [
  31681. {
  31682. name: "Normal",
  31683. height: math.unit(6 + 8/12, "feet"),
  31684. default: true
  31685. },
  31686. ]
  31687. ))
  31688. characterMakers.push(() => makeCharacter(
  31689. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31690. {
  31691. front: {
  31692. height: math.unit(3 + 10/12, "feet"),
  31693. weight: math.unit(90, "lb"),
  31694. name: "Front",
  31695. image: {
  31696. source: "./media/characters/taivas-ensim/front.svg",
  31697. extra: 1327/1216,
  31698. bottom: 96/1423
  31699. }
  31700. },
  31701. back: {
  31702. height: math.unit(3 + 10/12, "feet"),
  31703. weight: math.unit(90, "lb"),
  31704. name: "Back",
  31705. image: {
  31706. source: "./media/characters/taivas-ensim/back.svg",
  31707. extra: 1355/1247,
  31708. bottom: 11/1366
  31709. }
  31710. },
  31711. frontNsfw: {
  31712. height: math.unit(3 + 10/12, "feet"),
  31713. weight: math.unit(90, "lb"),
  31714. name: "Front (NSFW)",
  31715. image: {
  31716. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31717. extra: 1327/1216,
  31718. bottom: 96/1423
  31719. }
  31720. },
  31721. backNsfw: {
  31722. height: math.unit(3 + 10/12, "feet"),
  31723. weight: math.unit(90, "lb"),
  31724. name: "Back (NSFW)",
  31725. image: {
  31726. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31727. extra: 1355/1247,
  31728. bottom: 11/1366
  31729. }
  31730. },
  31731. },
  31732. [
  31733. {
  31734. name: "Normal",
  31735. height: math.unit(3 + 10/12, "feet"),
  31736. default: true
  31737. },
  31738. ]
  31739. ))
  31740. characterMakers.push(() => makeCharacter(
  31741. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31742. {
  31743. front: {
  31744. height: math.unit(9 + 6/12, "feet"),
  31745. weight: math.unit(940, "lb"),
  31746. name: "Front",
  31747. image: {
  31748. source: "./media/characters/byliss/front.svg",
  31749. extra: 1327/1290,
  31750. bottom: 82/1409
  31751. }
  31752. },
  31753. back: {
  31754. height: math.unit(9 + 6/12, "feet"),
  31755. weight: math.unit(940, "lb"),
  31756. name: "Back",
  31757. image: {
  31758. source: "./media/characters/byliss/back.svg",
  31759. extra: 1376/1349,
  31760. bottom: 9/1385
  31761. }
  31762. },
  31763. frontNsfw: {
  31764. height: math.unit(9 + 6/12, "feet"),
  31765. weight: math.unit(940, "lb"),
  31766. name: "Front (NSFW)",
  31767. image: {
  31768. source: "./media/characters/byliss/front-nsfw.svg",
  31769. extra: 1327/1290,
  31770. bottom: 82/1409
  31771. }
  31772. },
  31773. backNsfw: {
  31774. height: math.unit(9 + 6/12, "feet"),
  31775. weight: math.unit(940, "lb"),
  31776. name: "Back (NSFW)",
  31777. image: {
  31778. source: "./media/characters/byliss/back-nsfw.svg",
  31779. extra: 1376/1349,
  31780. bottom: 9/1385
  31781. }
  31782. },
  31783. },
  31784. [
  31785. {
  31786. name: "Normal",
  31787. height: math.unit(9 + 6/12, "feet"),
  31788. default: true
  31789. },
  31790. ]
  31791. ))
  31792. characterMakers.push(() => makeCharacter(
  31793. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31794. {
  31795. front: {
  31796. height: math.unit(5 + 2/12, "feet"),
  31797. weight: math.unit(200, "lb"),
  31798. name: "Front",
  31799. image: {
  31800. source: "./media/characters/noraly/front.svg",
  31801. extra: 4985/4773,
  31802. bottom: 150/5135
  31803. }
  31804. },
  31805. full: {
  31806. height: math.unit(5 + 2/12, "feet"),
  31807. weight: math.unit(164, "lb"),
  31808. name: "Full",
  31809. image: {
  31810. source: "./media/characters/noraly/full.svg",
  31811. extra: 1114/1059,
  31812. bottom: 35/1149
  31813. }
  31814. },
  31815. fuller: {
  31816. height: math.unit(5 + 2/12, "feet"),
  31817. weight: math.unit(230, "lb"),
  31818. name: "Fuller",
  31819. image: {
  31820. source: "./media/characters/noraly/fuller.svg",
  31821. extra: 1114/1059,
  31822. bottom: 35/1149
  31823. }
  31824. },
  31825. fullest: {
  31826. height: math.unit(5 + 2/12, "feet"),
  31827. weight: math.unit(300, "lb"),
  31828. name: "Fullest",
  31829. image: {
  31830. source: "./media/characters/noraly/fullest.svg",
  31831. extra: 1114/1059,
  31832. bottom: 35/1149
  31833. }
  31834. },
  31835. },
  31836. [
  31837. {
  31838. name: "Normal",
  31839. height: math.unit(5 + 2/12, "feet"),
  31840. default: true
  31841. },
  31842. ]
  31843. ))
  31844. characterMakers.push(() => makeCharacter(
  31845. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31846. {
  31847. front: {
  31848. height: math.unit(5 + 2/12, "feet"),
  31849. weight: math.unit(210, "lb"),
  31850. name: "Front",
  31851. image: {
  31852. source: "./media/characters/pera/front.svg",
  31853. extra: 1560/1531,
  31854. bottom: 165/1725
  31855. }
  31856. },
  31857. back: {
  31858. height: math.unit(5 + 2/12, "feet"),
  31859. weight: math.unit(210, "lb"),
  31860. name: "Back",
  31861. image: {
  31862. source: "./media/characters/pera/back.svg",
  31863. extra: 1523/1493,
  31864. bottom: 152/1675
  31865. }
  31866. },
  31867. dick: {
  31868. height: math.unit(2.4, "feet"),
  31869. name: "Dick",
  31870. image: {
  31871. source: "./media/characters/pera/dick.svg"
  31872. }
  31873. },
  31874. },
  31875. [
  31876. {
  31877. name: "Normal",
  31878. height: math.unit(5 + 2/12, "feet"),
  31879. default: true
  31880. },
  31881. ]
  31882. ))
  31883. characterMakers.push(() => makeCharacter(
  31884. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31885. {
  31886. front: {
  31887. height: math.unit(12, "feet"),
  31888. weight: math.unit(3200, "lb"),
  31889. name: "Front",
  31890. image: {
  31891. source: "./media/characters/julian/front.svg",
  31892. extra: 2962/2701,
  31893. bottom: 184/3146
  31894. }
  31895. },
  31896. maw: {
  31897. height: math.unit(5.35, "feet"),
  31898. name: "Maw",
  31899. image: {
  31900. source: "./media/characters/julian/maw.svg"
  31901. }
  31902. },
  31903. paw: {
  31904. height: math.unit(3.07, "feet"),
  31905. name: "Paw",
  31906. image: {
  31907. source: "./media/characters/julian/paw.svg"
  31908. }
  31909. },
  31910. },
  31911. [
  31912. {
  31913. name: "Default",
  31914. height: math.unit(12, "feet"),
  31915. default: true
  31916. },
  31917. {
  31918. name: "Big",
  31919. height: math.unit(50, "feet")
  31920. },
  31921. {
  31922. name: "Really Big",
  31923. height: math.unit(1, "mile")
  31924. },
  31925. {
  31926. name: "Extremely Big",
  31927. height: math.unit(100, "miles")
  31928. },
  31929. {
  31930. name: "Planet Hugger",
  31931. height: math.unit(200, "megameters")
  31932. },
  31933. {
  31934. name: "Unreasonably Big",
  31935. height: math.unit(1e300, "meters")
  31936. },
  31937. ]
  31938. ))
  31939. characterMakers.push(() => makeCharacter(
  31940. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31941. {
  31942. solgooleo: {
  31943. height: math.unit(4, "meters"),
  31944. weight: math.unit(6000*1.5, "kg"),
  31945. volume: math.unit(6000, "liters"),
  31946. name: "Solgooleo",
  31947. image: {
  31948. source: "./media/characters/pi/solgooleo.svg",
  31949. extra: 388/331,
  31950. bottom: 29/417
  31951. }
  31952. },
  31953. },
  31954. [
  31955. {
  31956. name: "Normal",
  31957. height: math.unit(4, "meters"),
  31958. default: true
  31959. },
  31960. ]
  31961. ))
  31962. characterMakers.push(() => makeCharacter(
  31963. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31964. {
  31965. front: {
  31966. height: math.unit(8 + 2/12, "feet"),
  31967. weight: math.unit(4, "tons"),
  31968. name: "Front",
  31969. image: {
  31970. source: "./media/characters/shaun/front.svg",
  31971. extra: 1550/1505,
  31972. bottom: 353/1903
  31973. }
  31974. },
  31975. },
  31976. [
  31977. {
  31978. name: "Lorg",
  31979. height: math.unit(8 + 2/12, "feet"),
  31980. default: true
  31981. },
  31982. ]
  31983. ))
  31984. characterMakers.push(() => makeCharacter(
  31985. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31986. {
  31987. front: {
  31988. height: math.unit(7, "feet"),
  31989. name: "Front",
  31990. image: {
  31991. source: "./media/characters/sini/front.svg",
  31992. extra: 726/678,
  31993. bottom: 35/761
  31994. }
  31995. },
  31996. back: {
  31997. height: math.unit(7, "feet"),
  31998. name: "Back",
  31999. image: {
  32000. source: "./media/characters/sini/back.svg",
  32001. extra: 743/701,
  32002. bottom: 12/755
  32003. }
  32004. },
  32005. mawAnthro: {
  32006. height: math.unit(2.14, "feet"),
  32007. name: "Maw (Anthro)",
  32008. image: {
  32009. source: "./media/characters/sini/maw-anthro.svg"
  32010. }
  32011. },
  32012. dick: {
  32013. height: math.unit(1.45, "feet"),
  32014. name: "Dick (Anthro)",
  32015. image: {
  32016. source: "./media/characters/sini/dick-anthro.svg"
  32017. }
  32018. },
  32019. feral: {
  32020. height: math.unit(13, "feet"),
  32021. name: "Feral",
  32022. image: {
  32023. source: "./media/characters/sini/feral.svg",
  32024. extra: 814/605,
  32025. bottom: 11/825
  32026. }
  32027. },
  32028. mawFeral: {
  32029. height: math.unit(4.6, "feet"),
  32030. name: "Maw-feral",
  32031. image: {
  32032. source: "./media/characters/sini/maw-feral.svg"
  32033. }
  32034. },
  32035. footFeral: {
  32036. height: math.unit(4.2, "feet"),
  32037. name: "Foot-feral",
  32038. image: {
  32039. source: "./media/characters/sini/foot-feral.svg"
  32040. }
  32041. },
  32042. },
  32043. [
  32044. {
  32045. name: "Normal",
  32046. height: math.unit(7, "feet"),
  32047. default: true
  32048. },
  32049. ]
  32050. ))
  32051. characterMakers.push(() => makeCharacter(
  32052. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32053. {
  32054. side: {
  32055. height: math.unit(13, "meters"),
  32056. weight: math.unit(9072, "kg"),
  32057. name: "Side",
  32058. image: {
  32059. source: "./media/characters/raylldo/side.svg",
  32060. extra: 403/344,
  32061. bottom: 42/445
  32062. }
  32063. },
  32064. leaping: {
  32065. height: math.unit(12.3, "meters"),
  32066. weight: math.unit(9072, "kg"),
  32067. name: "Leaping",
  32068. image: {
  32069. source: "./media/characters/raylldo/leaping.svg",
  32070. extra: 470/249,
  32071. bottom: 13/483
  32072. }
  32073. },
  32074. flying: {
  32075. height: math.unit(18, "meters"),
  32076. weight: math.unit(9072, "kg"),
  32077. name: "Flying",
  32078. image: {
  32079. source: "./media/characters/raylldo/flying.svg"
  32080. }
  32081. },
  32082. head: {
  32083. height: math.unit(5.85, "meters"),
  32084. name: "Head",
  32085. image: {
  32086. source: "./media/characters/raylldo/head.svg"
  32087. }
  32088. },
  32089. maw: {
  32090. height: math.unit(5.32, "meters"),
  32091. name: "Maw",
  32092. image: {
  32093. source: "./media/characters/raylldo/maw.svg"
  32094. }
  32095. },
  32096. eye: {
  32097. height: math.unit(0.54, "meters"),
  32098. name: "Eye",
  32099. image: {
  32100. source: "./media/characters/raylldo/eye.svg"
  32101. }
  32102. },
  32103. },
  32104. [
  32105. {
  32106. name: "Normal",
  32107. height: math.unit(13, "meters"),
  32108. default: true
  32109. },
  32110. ]
  32111. ))
  32112. characterMakers.push(() => makeCharacter(
  32113. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32114. {
  32115. anthroFront: {
  32116. height: math.unit(9, "feet"),
  32117. weight: math.unit(600, "lb"),
  32118. name: "Anthro (Front)",
  32119. image: {
  32120. source: "./media/characters/glint/anthro-front.svg",
  32121. extra: 1097/1018,
  32122. bottom: 28/1125
  32123. }
  32124. },
  32125. anthroBack: {
  32126. height: math.unit(9, "feet"),
  32127. weight: math.unit(600, "lb"),
  32128. name: "Anthro (Back)",
  32129. image: {
  32130. source: "./media/characters/glint/anthro-back.svg",
  32131. extra: 1154/997,
  32132. bottom: 36/1190
  32133. }
  32134. },
  32135. feral: {
  32136. height: math.unit(11, "feet"),
  32137. weight: math.unit(50000, "lb"),
  32138. name: "Feral",
  32139. image: {
  32140. source: "./media/characters/glint/feral.svg",
  32141. extra: 3035/1585,
  32142. bottom: 1169/4204
  32143. }
  32144. },
  32145. dickAnthro: {
  32146. height: math.unit(0.7, "meters"),
  32147. name: "Dick (Anthro)",
  32148. image: {
  32149. source: "./media/characters/glint/dick-anthro.svg"
  32150. }
  32151. },
  32152. dickFeral: {
  32153. height: math.unit(2.65, "meters"),
  32154. name: "Dick (Feral)",
  32155. image: {
  32156. source: "./media/characters/glint/dick-feral.svg"
  32157. }
  32158. },
  32159. slitHidden: {
  32160. height: math.unit(5.85, "meters"),
  32161. name: "Slit (Hidden)",
  32162. image: {
  32163. source: "./media/characters/glint/slit-hidden.svg"
  32164. }
  32165. },
  32166. slitErect: {
  32167. height: math.unit(5.85, "meters"),
  32168. name: "Slit (Erect)",
  32169. image: {
  32170. source: "./media/characters/glint/slit-erect.svg"
  32171. }
  32172. },
  32173. mawAnthro: {
  32174. height: math.unit(0.63, "meters"),
  32175. name: "Maw (Anthro)",
  32176. image: {
  32177. source: "./media/characters/glint/maw.svg"
  32178. }
  32179. },
  32180. mawFeral: {
  32181. height: math.unit(2.89, "meters"),
  32182. name: "Maw (Feral)",
  32183. image: {
  32184. source: "./media/characters/glint/maw.svg"
  32185. }
  32186. },
  32187. },
  32188. [
  32189. {
  32190. name: "Normal",
  32191. height: math.unit(9, "feet"),
  32192. default: true
  32193. },
  32194. ]
  32195. ))
  32196. characterMakers.push(() => makeCharacter(
  32197. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32198. {
  32199. side: {
  32200. height: math.unit(15, "feet"),
  32201. weight: math.unit(5000, "kg"),
  32202. name: "Side",
  32203. image: {
  32204. source: "./media/characters/kairne/side.svg",
  32205. extra: 979/811,
  32206. bottom: 13/992
  32207. }
  32208. },
  32209. front: {
  32210. height: math.unit(15, "feet"),
  32211. weight: math.unit(5000, "kg"),
  32212. name: "Front",
  32213. image: {
  32214. source: "./media/characters/kairne/front.svg",
  32215. extra: 908/814,
  32216. bottom: 26/934
  32217. }
  32218. },
  32219. sideNsfw: {
  32220. height: math.unit(15, "feet"),
  32221. weight: math.unit(5000, "kg"),
  32222. name: "Side (NSFW)",
  32223. image: {
  32224. source: "./media/characters/kairne/side-nsfw.svg",
  32225. extra: 979/811,
  32226. bottom: 13/992
  32227. }
  32228. },
  32229. frontNsfw: {
  32230. height: math.unit(15, "feet"),
  32231. weight: math.unit(5000, "kg"),
  32232. name: "Front (NSFW)",
  32233. image: {
  32234. source: "./media/characters/kairne/front-nsfw.svg",
  32235. extra: 908/814,
  32236. bottom: 26/934
  32237. }
  32238. },
  32239. dickCaged: {
  32240. height: math.unit(0.65, "meters"),
  32241. name: "Dick-caged",
  32242. image: {
  32243. source: "./media/characters/kairne/dick-caged.svg"
  32244. }
  32245. },
  32246. dick: {
  32247. height: math.unit(0.79, "meters"),
  32248. name: "Dick",
  32249. image: {
  32250. source: "./media/characters/kairne/dick.svg"
  32251. }
  32252. },
  32253. genitals: {
  32254. height: math.unit(1.29, "meters"),
  32255. name: "Genitals",
  32256. image: {
  32257. source: "./media/characters/kairne/genitals.svg"
  32258. }
  32259. },
  32260. maw: {
  32261. height: math.unit(1.73, "meters"),
  32262. name: "Maw",
  32263. image: {
  32264. source: "./media/characters/kairne/maw.svg"
  32265. }
  32266. },
  32267. },
  32268. [
  32269. {
  32270. name: "Normal",
  32271. height: math.unit(15, "feet"),
  32272. default: true
  32273. },
  32274. ]
  32275. ))
  32276. characterMakers.push(() => makeCharacter(
  32277. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32278. {
  32279. front: {
  32280. height: math.unit(5 + 8/12, "feet"),
  32281. weight: math.unit(139, "lb"),
  32282. name: "Front",
  32283. image: {
  32284. source: "./media/characters/biscuit-jackal/front.svg",
  32285. extra: 2106/1961,
  32286. bottom: 58/2164
  32287. }
  32288. },
  32289. back: {
  32290. height: math.unit(5 + 8/12, "feet"),
  32291. weight: math.unit(139, "lb"),
  32292. name: "Back",
  32293. image: {
  32294. source: "./media/characters/biscuit-jackal/back.svg",
  32295. extra: 2132/1976,
  32296. bottom: 57/2189
  32297. }
  32298. },
  32299. werejackal: {
  32300. height: math.unit(6 + 3/12, "feet"),
  32301. weight: math.unit(188, "lb"),
  32302. name: "Werejackal",
  32303. image: {
  32304. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32305. extra: 2373/2178,
  32306. bottom: 53/2426
  32307. }
  32308. },
  32309. },
  32310. [
  32311. {
  32312. name: "Normal",
  32313. height: math.unit(5 + 8/12, "feet"),
  32314. default: true
  32315. },
  32316. ]
  32317. ))
  32318. characterMakers.push(() => makeCharacter(
  32319. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32320. {
  32321. front: {
  32322. height: math.unit(140, "cm"),
  32323. weight: math.unit(45, "kg"),
  32324. name: "Front",
  32325. image: {
  32326. source: "./media/characters/tayra-white/front.svg",
  32327. extra: 2229/2192,
  32328. bottom: 75/2304
  32329. }
  32330. },
  32331. },
  32332. [
  32333. {
  32334. name: "Normal",
  32335. height: math.unit(140, "cm"),
  32336. default: true
  32337. },
  32338. ]
  32339. ))
  32340. characterMakers.push(() => makeCharacter(
  32341. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32342. {
  32343. front: {
  32344. height: math.unit(4 + 5/12, "feet"),
  32345. name: "Front",
  32346. image: {
  32347. source: "./media/characters/scoop/front.svg",
  32348. extra: 1257/1136,
  32349. bottom: 69/1326
  32350. }
  32351. },
  32352. back: {
  32353. height: math.unit(4 + 5/12, "feet"),
  32354. name: "Back",
  32355. image: {
  32356. source: "./media/characters/scoop/back.svg",
  32357. extra: 1321/1152,
  32358. bottom: 32/1353
  32359. }
  32360. },
  32361. maw: {
  32362. height: math.unit(0.68, "feet"),
  32363. name: "Maw",
  32364. image: {
  32365. source: "./media/characters/scoop/maw.svg"
  32366. }
  32367. },
  32368. },
  32369. [
  32370. {
  32371. name: "Really Small",
  32372. height: math.unit(1, "mm")
  32373. },
  32374. {
  32375. name: "Micro",
  32376. height: math.unit(1, "inch")
  32377. },
  32378. {
  32379. name: "Normal",
  32380. height: math.unit(4 + 5/12, "feet"),
  32381. default: true
  32382. },
  32383. {
  32384. name: "Macro",
  32385. height: math.unit(200, "feet")
  32386. },
  32387. {
  32388. name: "Megamacro",
  32389. height: math.unit(3240, "feet")
  32390. },
  32391. {
  32392. name: "Teramacro",
  32393. height: math.unit(2500, "miles")
  32394. },
  32395. ]
  32396. ))
  32397. characterMakers.push(() => makeCharacter(
  32398. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32399. {
  32400. front: {
  32401. height: math.unit(15 + 7/12, "feet"),
  32402. name: "Front",
  32403. image: {
  32404. source: "./media/characters/saphinara/front.svg",
  32405. extra: 604/546,
  32406. bottom: 19/623
  32407. }
  32408. },
  32409. side: {
  32410. height: math.unit(15 + 7/12, "feet"),
  32411. name: "Side",
  32412. image: {
  32413. source: "./media/characters/saphinara/side.svg",
  32414. extra: 605/547,
  32415. bottom: 6/611
  32416. }
  32417. },
  32418. back: {
  32419. height: math.unit(15 + 7/12, "feet"),
  32420. name: "Back",
  32421. image: {
  32422. source: "./media/characters/saphinara/back.svg",
  32423. extra: 591/531,
  32424. bottom: 13/604
  32425. }
  32426. },
  32427. frontTail: {
  32428. height: math.unit(15 + 7/12, "feet"),
  32429. name: "Front (Full Tail)",
  32430. image: {
  32431. source: "./media/characters/saphinara/front-tail.svg",
  32432. extra: 748/547,
  32433. bottom: 66/814
  32434. }
  32435. },
  32436. },
  32437. [
  32438. {
  32439. name: "Normal",
  32440. height: math.unit(15 + 7/12, "feet"),
  32441. default: true
  32442. },
  32443. {
  32444. name: "Angry",
  32445. height: math.unit(30 + 6/12, "feet")
  32446. },
  32447. {
  32448. name: "Enraged",
  32449. height: math.unit(102 + 1/12, "feet")
  32450. },
  32451. ]
  32452. ))
  32453. characterMakers.push(() => makeCharacter(
  32454. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32455. {
  32456. front: {
  32457. height: math.unit(6 + 8/12, "feet"),
  32458. weight: math.unit(300, "lb"),
  32459. name: "Front",
  32460. image: {
  32461. source: "./media/characters/jrain/front.svg",
  32462. extra: 3039/2865,
  32463. bottom: 399/3438
  32464. }
  32465. },
  32466. back: {
  32467. height: math.unit(6 + 8/12, "feet"),
  32468. weight: math.unit(300, "lb"),
  32469. name: "Back",
  32470. image: {
  32471. source: "./media/characters/jrain/back.svg",
  32472. extra: 3089/2938,
  32473. bottom: 172/3261
  32474. }
  32475. },
  32476. head: {
  32477. height: math.unit(2.14, "feet"),
  32478. name: "Head",
  32479. image: {
  32480. source: "./media/characters/jrain/head.svg"
  32481. }
  32482. },
  32483. maw: {
  32484. height: math.unit(1.77, "feet"),
  32485. name: "Maw",
  32486. image: {
  32487. source: "./media/characters/jrain/maw.svg"
  32488. }
  32489. },
  32490. leftHand: {
  32491. height: math.unit(1.1, "feet"),
  32492. name: "Left Hand",
  32493. image: {
  32494. source: "./media/characters/jrain/left-hand.svg"
  32495. }
  32496. },
  32497. rightHand: {
  32498. height: math.unit(1.1, "feet"),
  32499. name: "Right Hand",
  32500. image: {
  32501. source: "./media/characters/jrain/right-hand.svg"
  32502. }
  32503. },
  32504. eye: {
  32505. height: math.unit(0.35, "feet"),
  32506. name: "Eye",
  32507. image: {
  32508. source: "./media/characters/jrain/eye.svg"
  32509. }
  32510. },
  32511. },
  32512. [
  32513. {
  32514. name: "Normal",
  32515. height: math.unit(6 + 8/12, "feet"),
  32516. default: true
  32517. },
  32518. {
  32519. name: "Casually Large",
  32520. height: math.unit(25, "feet")
  32521. },
  32522. {
  32523. name: "Giant",
  32524. height: math.unit(100, "feet")
  32525. },
  32526. {
  32527. name: "Kaiju",
  32528. height: math.unit(300, "feet")
  32529. },
  32530. ]
  32531. ))
  32532. characterMakers.push(() => makeCharacter(
  32533. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32534. {
  32535. dragon: {
  32536. height: math.unit(5, "meters"),
  32537. name: "Dragon",
  32538. image: {
  32539. source: "./media/characters/sabrina/dragon.svg",
  32540. extra: 3670 / 2365,
  32541. bottom: 333 / 4003
  32542. }
  32543. },
  32544. gryphon: {
  32545. height: math.unit(3, "meters"),
  32546. name: "Gryphon",
  32547. image: {
  32548. source: "./media/characters/sabrina/gryphon.svg",
  32549. extra: 1576 / 945,
  32550. bottom: 71 / 1647
  32551. }
  32552. },
  32553. snake: {
  32554. height: math.unit(12, "meters"),
  32555. name: "Snake",
  32556. image: {
  32557. source: "./media/characters/sabrina/snake.svg",
  32558. extra: 1758 / 1320,
  32559. bottom: 186 / 1944
  32560. }
  32561. },
  32562. collar: {
  32563. height: math.unit(1.86, "meters"),
  32564. name: "Collar",
  32565. image: {
  32566. source: "./media/characters/sabrina/collar.svg"
  32567. }
  32568. },
  32569. eye: {
  32570. height: math.unit(0.53, "meters"),
  32571. name: "Eye",
  32572. image: {
  32573. source: "./media/characters/sabrina/eye.svg"
  32574. }
  32575. },
  32576. foot: {
  32577. height: math.unit(1.86, "meters"),
  32578. name: "Foot",
  32579. image: {
  32580. source: "./media/characters/sabrina/foot.svg"
  32581. }
  32582. },
  32583. hand: {
  32584. height: math.unit(1.32, "meters"),
  32585. name: "Hand",
  32586. image: {
  32587. source: "./media/characters/sabrina/hand.svg"
  32588. }
  32589. },
  32590. head: {
  32591. height: math.unit(2.44, "meters"),
  32592. name: "Head",
  32593. image: {
  32594. source: "./media/characters/sabrina/head.svg"
  32595. }
  32596. },
  32597. headAngry: {
  32598. height: math.unit(2.44, "meters"),
  32599. name: "Head (Angry))",
  32600. image: {
  32601. source: "./media/characters/sabrina/head-angry.svg"
  32602. }
  32603. },
  32604. maw: {
  32605. height: math.unit(1.65, "meters"),
  32606. name: "Maw",
  32607. image: {
  32608. source: "./media/characters/sabrina/maw.svg"
  32609. }
  32610. },
  32611. spikes: {
  32612. height: math.unit(1.69, "meters"),
  32613. name: "Spikes",
  32614. image: {
  32615. source: "./media/characters/sabrina/spikes.svg"
  32616. }
  32617. },
  32618. stomach: {
  32619. height: math.unit(1.15, "meters"),
  32620. name: "Stomach",
  32621. image: {
  32622. source: "./media/characters/sabrina/stomach.svg"
  32623. }
  32624. },
  32625. tongue: {
  32626. height: math.unit(1.27, "meters"),
  32627. name: "Tongue",
  32628. image: {
  32629. source: "./media/characters/sabrina/tongue.svg"
  32630. }
  32631. },
  32632. wingDorsal: {
  32633. height: math.unit(4.85, "meters"),
  32634. name: "Wing (Dorsal)",
  32635. image: {
  32636. source: "./media/characters/sabrina/wing-dorsal.svg"
  32637. }
  32638. },
  32639. wingVentral: {
  32640. height: math.unit(4.85, "meters"),
  32641. name: "Wing (Ventral)",
  32642. image: {
  32643. source: "./media/characters/sabrina/wing-ventral.svg"
  32644. }
  32645. },
  32646. },
  32647. [
  32648. {
  32649. name: "Normal",
  32650. height: math.unit(5, "meters"),
  32651. default: true
  32652. },
  32653. ]
  32654. ))
  32655. characterMakers.push(() => makeCharacter(
  32656. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32657. {
  32658. frontMaid: {
  32659. height: math.unit(5 + 5/12, "feet"),
  32660. weight: math.unit(130, "lb"),
  32661. name: "Front (Maid)",
  32662. image: {
  32663. source: "./media/characters/midnight-tales/front-maid.svg",
  32664. extra: 489/454,
  32665. bottom: 61/550
  32666. }
  32667. },
  32668. frontFormal: {
  32669. height: math.unit(5 + 5/12, "feet"),
  32670. weight: math.unit(130, "lb"),
  32671. name: "Front (Formal)",
  32672. image: {
  32673. source: "./media/characters/midnight-tales/front-formal.svg",
  32674. extra: 489/454,
  32675. bottom: 61/550
  32676. }
  32677. },
  32678. back: {
  32679. height: math.unit(5 + 5/12, "feet"),
  32680. weight: math.unit(130, "lb"),
  32681. name: "Back",
  32682. image: {
  32683. source: "./media/characters/midnight-tales/back.svg",
  32684. extra: 498/456,
  32685. bottom: 33/531
  32686. }
  32687. },
  32688. frontBeast: {
  32689. height: math.unit(40, "feet"),
  32690. weight: math.unit(64000, "lb"),
  32691. name: "Front (Beast)",
  32692. image: {
  32693. source: "./media/characters/midnight-tales/front-beast.svg",
  32694. extra: 927/860,
  32695. bottom: 53/980
  32696. }
  32697. },
  32698. backBeast: {
  32699. height: math.unit(40, "feet"),
  32700. weight: math.unit(64000, "lb"),
  32701. name: "Back (Beast)",
  32702. image: {
  32703. source: "./media/characters/midnight-tales/back-beast.svg",
  32704. extra: 929/855,
  32705. bottom: 16/945
  32706. }
  32707. },
  32708. footBeast: {
  32709. height: math.unit(6.7, "feet"),
  32710. name: "Foot (Beast)",
  32711. image: {
  32712. source: "./media/characters/midnight-tales/foot-beast.svg"
  32713. }
  32714. },
  32715. headBeast: {
  32716. height: math.unit(8, "feet"),
  32717. name: "Head (Beast)",
  32718. image: {
  32719. source: "./media/characters/midnight-tales/head-beast.svg"
  32720. }
  32721. },
  32722. },
  32723. [
  32724. {
  32725. name: "Normal",
  32726. height: math.unit(5 + 5 / 12, "feet"),
  32727. default: true
  32728. },
  32729. {
  32730. name: "Macro",
  32731. height: math.unit(25, "feet")
  32732. },
  32733. ]
  32734. ))
  32735. characterMakers.push(() => makeCharacter(
  32736. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32737. {
  32738. front: {
  32739. height: math.unit(5 + 10/12, "feet"),
  32740. name: "Front",
  32741. image: {
  32742. source: "./media/characters/argon/front.svg",
  32743. extra: 2009/1935,
  32744. bottom: 118/2127
  32745. }
  32746. },
  32747. back: {
  32748. height: math.unit(5 + 10/12, "feet"),
  32749. name: "Back",
  32750. image: {
  32751. source: "./media/characters/argon/back.svg",
  32752. extra: 2047/1992,
  32753. bottom: 20/2067
  32754. }
  32755. },
  32756. frontDressed: {
  32757. height: math.unit(5 + 10/12, "feet"),
  32758. name: "Front (Dressed)",
  32759. image: {
  32760. source: "./media/characters/argon/front-dressed.svg",
  32761. extra: 2009/1935,
  32762. bottom: 118/2127
  32763. }
  32764. },
  32765. },
  32766. [
  32767. {
  32768. name: "Normal",
  32769. height: math.unit(5 + 10/12, "feet"),
  32770. default: true
  32771. },
  32772. ]
  32773. ))
  32774. characterMakers.push(() => makeCharacter(
  32775. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32776. {
  32777. front: {
  32778. height: math.unit(8 + 6/12, "feet"),
  32779. weight: math.unit(1150, "lb"),
  32780. name: "Front",
  32781. image: {
  32782. source: "./media/characters/kichi/front.svg",
  32783. extra: 1267/1164,
  32784. bottom: 61/1328
  32785. }
  32786. },
  32787. back: {
  32788. height: math.unit(8 + 6/12, "feet"),
  32789. weight: math.unit(1150, "lb"),
  32790. name: "Back",
  32791. image: {
  32792. source: "./media/characters/kichi/back.svg",
  32793. extra: 1273/1166,
  32794. bottom: 33/1306
  32795. }
  32796. },
  32797. },
  32798. [
  32799. {
  32800. name: "Normal",
  32801. height: math.unit(8 + 6/12, "feet"),
  32802. default: true
  32803. },
  32804. ]
  32805. ))
  32806. characterMakers.push(() => makeCharacter(
  32807. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32808. {
  32809. front: {
  32810. height: math.unit(6, "feet"),
  32811. weight: math.unit(210, "lb"),
  32812. name: "Front",
  32813. image: {
  32814. source: "./media/characters/manetel-greyscale/front.svg",
  32815. extra: 350/312,
  32816. bottom: 8/358
  32817. }
  32818. },
  32819. },
  32820. [
  32821. {
  32822. name: "Micro",
  32823. height: math.unit(2, "inches")
  32824. },
  32825. {
  32826. name: "Normal",
  32827. height: math.unit(6, "feet"),
  32828. default: true
  32829. },
  32830. {
  32831. name: "Minimacro",
  32832. height: math.unit(17, "feet")
  32833. },
  32834. {
  32835. name: "Macro",
  32836. height: math.unit(117, "feet")
  32837. },
  32838. ]
  32839. ))
  32840. characterMakers.push(() => makeCharacter(
  32841. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32842. {
  32843. side: {
  32844. height: math.unit(5 + 1/12, "feet"),
  32845. weight: math.unit(418, "lb"),
  32846. name: "Side",
  32847. image: {
  32848. source: "./media/characters/softpurr/side.svg",
  32849. extra: 1993/1945,
  32850. bottom: 134/2127
  32851. }
  32852. },
  32853. front: {
  32854. height: math.unit(5 + 1/12, "feet"),
  32855. weight: math.unit(418, "lb"),
  32856. name: "Front",
  32857. image: {
  32858. source: "./media/characters/softpurr/front.svg",
  32859. extra: 1950/1856,
  32860. bottom: 174/2124
  32861. }
  32862. },
  32863. paw: {
  32864. height: math.unit(1, "feet"),
  32865. name: "Paw",
  32866. image: {
  32867. source: "./media/characters/softpurr/paw.svg"
  32868. }
  32869. },
  32870. },
  32871. [
  32872. {
  32873. name: "Normal",
  32874. height: math.unit(5 + 1/12, "feet"),
  32875. default: true
  32876. },
  32877. ]
  32878. ))
  32879. characterMakers.push(() => makeCharacter(
  32880. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32881. {
  32882. front: {
  32883. height: math.unit(260, "meters"),
  32884. name: "Front",
  32885. image: {
  32886. source: "./media/characters/anahita/front.svg",
  32887. extra: 665/635,
  32888. bottom: 89/754
  32889. }
  32890. },
  32891. },
  32892. [
  32893. {
  32894. name: "Macro",
  32895. height: math.unit(260, "meters"),
  32896. default: true
  32897. },
  32898. ]
  32899. ))
  32900. characterMakers.push(() => makeCharacter(
  32901. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32902. {
  32903. front: {
  32904. height: math.unit(4 + 10/12, "feet"),
  32905. weight: math.unit(160, "lb"),
  32906. name: "Front",
  32907. image: {
  32908. source: "./media/characters/chip-mouse/front.svg",
  32909. extra: 3528/3408,
  32910. bottom: 0/3528
  32911. }
  32912. },
  32913. frontNsfw: {
  32914. height: math.unit(4 + 10/12, "feet"),
  32915. weight: math.unit(160, "lb"),
  32916. name: "Front (NSFW)",
  32917. image: {
  32918. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32919. extra: 3528/3408,
  32920. bottom: 0/3528
  32921. }
  32922. },
  32923. },
  32924. [
  32925. {
  32926. name: "Normal",
  32927. height: math.unit(4 + 10/12, "feet"),
  32928. default: true
  32929. },
  32930. ]
  32931. ))
  32932. characterMakers.push(() => makeCharacter(
  32933. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32934. {
  32935. side: {
  32936. height: math.unit(10, "feet"),
  32937. weight: math.unit(14000, "lb"),
  32938. name: "Side",
  32939. image: {
  32940. source: "./media/characters/kremm/side.svg",
  32941. extra: 1390/1053,
  32942. bottom: 90/1480
  32943. }
  32944. },
  32945. gut: {
  32946. height: math.unit(5.8, "feet"),
  32947. name: "Gut",
  32948. image: {
  32949. source: "./media/characters/kremm/gut.svg"
  32950. }
  32951. },
  32952. ass: {
  32953. height: math.unit(6.1, "feet"),
  32954. name: "Ass",
  32955. image: {
  32956. source: "./media/characters/kremm/ass.svg"
  32957. }
  32958. },
  32959. jaws: {
  32960. height: math.unit(2.2, "feet"),
  32961. name: "Jaws",
  32962. image: {
  32963. source: "./media/characters/kremm/jaws.svg"
  32964. }
  32965. },
  32966. dick: {
  32967. height: math.unit(4.26, "feet"),
  32968. name: "Dick",
  32969. image: {
  32970. source: "./media/characters/kremm/dick.svg"
  32971. }
  32972. },
  32973. },
  32974. [
  32975. {
  32976. name: "Normal",
  32977. height: math.unit(10, "feet"),
  32978. default: true
  32979. },
  32980. ]
  32981. ))
  32982. characterMakers.push(() => makeCharacter(
  32983. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  32984. {
  32985. front: {
  32986. height: math.unit(30, "stories"),
  32987. name: "Front",
  32988. image: {
  32989. source: "./media/characters/kai/front.svg",
  32990. extra: 1892/1718,
  32991. bottom: 162/2054
  32992. }
  32993. },
  32994. },
  32995. [
  32996. {
  32997. name: "Macro",
  32998. height: math.unit(30, "stories"),
  32999. default: true
  33000. },
  33001. ]
  33002. ))
  33003. characterMakers.push(() => makeCharacter(
  33004. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33005. {
  33006. front: {
  33007. height: math.unit(6 + 4/12, "feet"),
  33008. weight: math.unit(145, "lb"),
  33009. name: "Front",
  33010. image: {
  33011. source: "./media/characters/sykes/front.svg",
  33012. extra: 1321 / 1187,
  33013. bottom: 66 / 1387
  33014. }
  33015. },
  33016. back: {
  33017. height: math.unit(6 + 4/12, "feet"),
  33018. weight: math.unit(145, "lb"),
  33019. name: "Back",
  33020. image: {
  33021. source: "./media/characters/sykes/back.svg",
  33022. extra: 1326/1181,
  33023. bottom: 31/1357
  33024. }
  33025. },
  33026. handBack: {
  33027. height: math.unit(0.9, "feet"),
  33028. name: "Hand (Back)",
  33029. image: {
  33030. source: "./media/characters/sykes/hand-back.svg"
  33031. }
  33032. },
  33033. handFront: {
  33034. height: math.unit(0.839, "feet"),
  33035. name: "Hand (Front)",
  33036. image: {
  33037. source: "./media/characters/sykes/hand-front.svg"
  33038. }
  33039. },
  33040. leftFoot: {
  33041. height: math.unit(1.2, "feet"),
  33042. name: "Foot (Left)",
  33043. image: {
  33044. source: "./media/characters/sykes/foot-left.svg"
  33045. }
  33046. },
  33047. rightFoot: {
  33048. height: math.unit(1.2, "feet"),
  33049. name: "Foot (Right)",
  33050. image: {
  33051. source: "./media/characters/sykes/foot-right.svg"
  33052. }
  33053. },
  33054. maw: {
  33055. height: math.unit(1.93, "feet"),
  33056. name: "Maw",
  33057. image: {
  33058. source: "./media/characters/sykes/maw.svg"
  33059. }
  33060. },
  33061. teeth: {
  33062. height: math.unit(0.51, "feet"),
  33063. name: "Teeth",
  33064. image: {
  33065. source: "./media/characters/sykes/teeth.svg"
  33066. }
  33067. },
  33068. tongue: {
  33069. height: math.unit(2.13, "feet"),
  33070. name: "Tongue",
  33071. image: {
  33072. source: "./media/characters/sykes/tongue.svg"
  33073. }
  33074. },
  33075. uvula: {
  33076. height: math.unit(0.16, "feet"),
  33077. name: "Uvula",
  33078. image: {
  33079. source: "./media/characters/sykes/uvula.svg"
  33080. }
  33081. },
  33082. collar: {
  33083. height: math.unit(0.287, "feet"),
  33084. name: "Collar",
  33085. image: {
  33086. source: "./media/characters/sykes/collar.svg"
  33087. }
  33088. },
  33089. },
  33090. [
  33091. {
  33092. name: "Shrunken",
  33093. height: math.unit(5, "inches")
  33094. },
  33095. {
  33096. name: "Normal",
  33097. height: math.unit(6 + 4 / 12, "feet"),
  33098. default: true
  33099. },
  33100. {
  33101. name: "Big",
  33102. height: math.unit(15, "feet")
  33103. },
  33104. ]
  33105. ))
  33106. characterMakers.push(() => makeCharacter(
  33107. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33108. {
  33109. front: {
  33110. height: math.unit(5 + 8/12, "feet"),
  33111. weight: math.unit(190, "lb"),
  33112. name: "Front",
  33113. image: {
  33114. source: "./media/characters/oven-otter/front.svg",
  33115. extra: 1809/1740,
  33116. bottom: 181/1990
  33117. }
  33118. },
  33119. back: {
  33120. height: math.unit(5 + 8/12, "feet"),
  33121. weight: math.unit(190, "lb"),
  33122. name: "Back",
  33123. image: {
  33124. source: "./media/characters/oven-otter/back.svg",
  33125. extra: 1709/1635,
  33126. bottom: 118/1827
  33127. }
  33128. },
  33129. hand: {
  33130. height: math.unit(1.07, "feet"),
  33131. name: "Hand",
  33132. image: {
  33133. source: "./media/characters/oven-otter/hand.svg"
  33134. }
  33135. },
  33136. beans: {
  33137. height: math.unit(1.74, "feet"),
  33138. name: "Beans",
  33139. image: {
  33140. source: "./media/characters/oven-otter/beans.svg"
  33141. }
  33142. },
  33143. },
  33144. [
  33145. {
  33146. name: "Micro",
  33147. height: math.unit(0.5, "inches")
  33148. },
  33149. {
  33150. name: "Normal",
  33151. height: math.unit(5 + 8/12, "feet"),
  33152. default: true
  33153. },
  33154. {
  33155. name: "Macro",
  33156. height: math.unit(250, "feet")
  33157. },
  33158. {
  33159. name: "Really High",
  33160. height: math.unit(420, "feet")
  33161. },
  33162. ]
  33163. ))
  33164. characterMakers.push(() => makeCharacter(
  33165. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33166. {
  33167. front: {
  33168. height: math.unit(5, "meters"),
  33169. weight: math.unit(292000000000000, "kg"),
  33170. name: "Front",
  33171. image: {
  33172. source: "./media/characters/devourer/front.svg",
  33173. extra: 1800/1733,
  33174. bottom: 211/2011
  33175. }
  33176. },
  33177. maw: {
  33178. height: math.unit(1.1, "meter"),
  33179. name: "Maw",
  33180. image: {
  33181. source: "./media/characters/devourer/maw.svg"
  33182. }
  33183. },
  33184. },
  33185. [
  33186. {
  33187. name: "Small",
  33188. height: math.unit(3, "meters")
  33189. },
  33190. {
  33191. name: "Large",
  33192. height: math.unit(5, "meters"),
  33193. default: true
  33194. },
  33195. ]
  33196. ))
  33197. characterMakers.push(() => makeCharacter(
  33198. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33199. {
  33200. front: {
  33201. height: math.unit(6, "feet"),
  33202. weight: math.unit(400, "lb"),
  33203. name: "Front",
  33204. image: {
  33205. source: "./media/characters/ellarby/front.svg",
  33206. extra: 1909/1763,
  33207. bottom: 80/1989
  33208. }
  33209. },
  33210. back: {
  33211. height: math.unit(6, "feet"),
  33212. weight: math.unit(400, "lb"),
  33213. name: "Back",
  33214. image: {
  33215. source: "./media/characters/ellarby/back.svg",
  33216. extra: 1914/1784,
  33217. bottom: 172/2086
  33218. }
  33219. },
  33220. },
  33221. [
  33222. {
  33223. name: "Mischief",
  33224. height: math.unit(18, "inches")
  33225. },
  33226. {
  33227. name: "Trouble",
  33228. height: math.unit(12, "feet")
  33229. },
  33230. {
  33231. name: "Havoc",
  33232. height: math.unit(200, "feet"),
  33233. default: true
  33234. },
  33235. {
  33236. name: "Pandemonium",
  33237. height: math.unit(1, "mile")
  33238. },
  33239. {
  33240. name: "Catastrophe",
  33241. height: math.unit(100, "miles")
  33242. },
  33243. ]
  33244. ))
  33245. characterMakers.push(() => makeCharacter(
  33246. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33247. {
  33248. front: {
  33249. height: math.unit(4.7, "meters"),
  33250. weight: math.unit(6500, "kg"),
  33251. name: "Front",
  33252. image: {
  33253. source: "./media/characters/vex/front.svg",
  33254. extra: 1288/1140,
  33255. bottom: 100/1388
  33256. }
  33257. },
  33258. },
  33259. [
  33260. {
  33261. name: "Normal",
  33262. height: math.unit(4.7, "meters"),
  33263. default: true
  33264. },
  33265. ]
  33266. ))
  33267. characterMakers.push(() => makeCharacter(
  33268. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33269. {
  33270. normal: {
  33271. height: math.unit(6, "feet"),
  33272. weight: math.unit(350, "lb"),
  33273. name: "Normal",
  33274. image: {
  33275. source: "./media/characters/teshy/normal.svg",
  33276. extra: 1795/1735,
  33277. bottom: 16/1811
  33278. }
  33279. },
  33280. monsterFront: {
  33281. height: math.unit(12, "feet"),
  33282. weight: math.unit(4700, "lb"),
  33283. name: "Monster (Front)",
  33284. image: {
  33285. source: "./media/characters/teshy/monster-front.svg",
  33286. extra: 2042/2034,
  33287. bottom: 128/2170
  33288. }
  33289. },
  33290. monsterSide: {
  33291. height: math.unit(12, "feet"),
  33292. weight: math.unit(4700, "lb"),
  33293. name: "Monster (Side)",
  33294. image: {
  33295. source: "./media/characters/teshy/monster-side.svg",
  33296. extra: 2067/2056,
  33297. bottom: 70/2137
  33298. }
  33299. },
  33300. monsterBack: {
  33301. height: math.unit(12, "feet"),
  33302. weight: math.unit(4700, "lb"),
  33303. name: "Monster (Back)",
  33304. image: {
  33305. source: "./media/characters/teshy/monster-back.svg",
  33306. extra: 1921/1914,
  33307. bottom: 171/2092
  33308. }
  33309. },
  33310. },
  33311. [
  33312. {
  33313. name: "Normal",
  33314. height: math.unit(6, "feet"),
  33315. default: true
  33316. },
  33317. ]
  33318. ))
  33319. characterMakers.push(() => makeCharacter(
  33320. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33321. {
  33322. front: {
  33323. height: math.unit(6, "feet"),
  33324. name: "Front",
  33325. image: {
  33326. source: "./media/characters/ramey/front.svg",
  33327. extra: 790/787,
  33328. bottom: 27/817
  33329. }
  33330. },
  33331. },
  33332. [
  33333. {
  33334. name: "Normal",
  33335. height: math.unit(6, "feet"),
  33336. default: true
  33337. },
  33338. ]
  33339. ))
  33340. characterMakers.push(() => makeCharacter(
  33341. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33342. {
  33343. front: {
  33344. height: math.unit(5 + 5/12, "feet"),
  33345. weight: math.unit(120, "lb"),
  33346. name: "Front",
  33347. image: {
  33348. source: "./media/characters/phirae/front.svg",
  33349. extra: 2491/2436,
  33350. bottom: 38/2529
  33351. }
  33352. },
  33353. },
  33354. [
  33355. {
  33356. name: "Normal",
  33357. height: math.unit(5 + 5/12, "feet"),
  33358. default: true
  33359. },
  33360. ]
  33361. ))
  33362. characterMakers.push(() => makeCharacter(
  33363. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33364. {
  33365. front: {
  33366. height: math.unit(6, "feet"),
  33367. weight: math.unit(150, "lb"),
  33368. name: "Front",
  33369. image: {
  33370. source: "./media/characters/stagglas/front.svg",
  33371. extra: 962/882,
  33372. bottom: 53/1015
  33373. }
  33374. },
  33375. },
  33376. [
  33377. {
  33378. name: "Normal",
  33379. height: math.unit(5 + 3/12, "feet"),
  33380. default: true
  33381. },
  33382. ]
  33383. ))
  33384. characterMakers.push(() => makeCharacter(
  33385. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33386. {
  33387. front: {
  33388. height: math.unit(5 + 4/12, "feet"),
  33389. weight: math.unit(145, "lb"),
  33390. name: "Front",
  33391. image: {
  33392. source: "./media/characters/starra/front.svg",
  33393. extra: 1790/1691,
  33394. bottom: 91/1881
  33395. }
  33396. },
  33397. },
  33398. [
  33399. {
  33400. name: "Normal",
  33401. height: math.unit(5 + 4/12, "feet"),
  33402. default: true
  33403. },
  33404. ]
  33405. ))
  33406. characterMakers.push(() => makeCharacter(
  33407. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33408. {
  33409. front: {
  33410. height: math.unit(2.2, "meters"),
  33411. name: "Front",
  33412. image: {
  33413. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33414. extra: 1194/1005,
  33415. bottom: 25/1219
  33416. }
  33417. },
  33418. },
  33419. [
  33420. {
  33421. name: "Normal",
  33422. height: math.unit(2.2, "meters"),
  33423. default: true
  33424. },
  33425. ]
  33426. ))
  33427. characterMakers.push(() => makeCharacter(
  33428. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33429. {
  33430. side: {
  33431. height: math.unit(8 + 2/12, "feet"),
  33432. weight: math.unit(1240, "lb"),
  33433. name: "Side",
  33434. image: {
  33435. source: "./media/characters/mika-valentine/side.svg",
  33436. extra: 2670/2501,
  33437. bottom: 250/2920
  33438. }
  33439. },
  33440. },
  33441. [
  33442. {
  33443. name: "Normal",
  33444. height: math.unit(8 + 2/12, "feet"),
  33445. default: true
  33446. },
  33447. ]
  33448. ))
  33449. characterMakers.push(() => makeCharacter(
  33450. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33451. {
  33452. front: {
  33453. height: math.unit(7 + 2/12, "feet"),
  33454. name: "Front",
  33455. image: {
  33456. source: "./media/characters/xoltol/front.svg",
  33457. extra: 2212/2124,
  33458. bottom: 84/2296
  33459. }
  33460. },
  33461. side: {
  33462. height: math.unit(7 + 2/12, "feet"),
  33463. name: "Side",
  33464. image: {
  33465. source: "./media/characters/xoltol/side.svg",
  33466. extra: 2273/2197,
  33467. bottom: 26/2299
  33468. }
  33469. },
  33470. hand: {
  33471. height: math.unit(2.5, "feet"),
  33472. name: "Hand",
  33473. image: {
  33474. source: "./media/characters/xoltol/hand.svg"
  33475. }
  33476. },
  33477. },
  33478. [
  33479. {
  33480. name: "Small-ish",
  33481. height: math.unit(5 + 11/12, "feet")
  33482. },
  33483. {
  33484. name: "Normal",
  33485. height: math.unit(7 + 2/12, "feet")
  33486. },
  33487. {
  33488. name: "\"Macro\"",
  33489. height: math.unit(14 + 9/12, "feet"),
  33490. default: true
  33491. },
  33492. {
  33493. name: "Alternate Height",
  33494. height: math.unit(20, "feet")
  33495. },
  33496. {
  33497. name: "Actually Macro",
  33498. height: math.unit(100, "feet")
  33499. },
  33500. ]
  33501. ))
  33502. characterMakers.push(() => makeCharacter(
  33503. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33504. {
  33505. front: {
  33506. height: math.unit(5 + 2/12, "feet"),
  33507. name: "Front",
  33508. image: {
  33509. source: "./media/characters/kotetsu-redwood/front.svg",
  33510. extra: 1053/942,
  33511. bottom: 60/1113
  33512. }
  33513. },
  33514. },
  33515. [
  33516. {
  33517. name: "Normal",
  33518. height: math.unit(5 + 2/12, "feet"),
  33519. default: true
  33520. },
  33521. ]
  33522. ))
  33523. characterMakers.push(() => makeCharacter(
  33524. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33525. {
  33526. front: {
  33527. height: math.unit(2.4, "meters"),
  33528. weight: math.unit(125, "kg"),
  33529. name: "Front",
  33530. image: {
  33531. source: "./media/characters/lilith/front.svg",
  33532. extra: 1590/1513,
  33533. bottom: 203/1793
  33534. }
  33535. },
  33536. },
  33537. [
  33538. {
  33539. name: "Humanoid",
  33540. height: math.unit(2.4, "meters")
  33541. },
  33542. {
  33543. name: "Normal",
  33544. height: math.unit(6, "meters"),
  33545. default: true
  33546. },
  33547. {
  33548. name: "Largest",
  33549. height: math.unit(55, "meters")
  33550. },
  33551. ]
  33552. ))
  33553. characterMakers.push(() => makeCharacter(
  33554. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33555. {
  33556. front: {
  33557. height: math.unit(8 + 4/12, "feet"),
  33558. weight: math.unit(535, "lb"),
  33559. name: "Front",
  33560. image: {
  33561. source: "./media/characters/beh'kah-bolger/front.svg",
  33562. extra: 1660/1603,
  33563. bottom: 37/1697
  33564. }
  33565. },
  33566. },
  33567. [
  33568. {
  33569. name: "Normal",
  33570. height: math.unit(8 + 4/12, "feet"),
  33571. default: true
  33572. },
  33573. {
  33574. name: "Kaiju",
  33575. height: math.unit(250, "feet")
  33576. },
  33577. {
  33578. name: "Still Growing",
  33579. height: math.unit(10, "miles")
  33580. },
  33581. {
  33582. name: "Continental",
  33583. height: math.unit(5000, "miles")
  33584. },
  33585. {
  33586. name: "Final Form",
  33587. height: math.unit(2500000, "miles")
  33588. },
  33589. ]
  33590. ))
  33591. characterMakers.push(() => makeCharacter(
  33592. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33593. {
  33594. front: {
  33595. height: math.unit(7 + 2/12, "feet"),
  33596. weight: math.unit(230, "kg"),
  33597. name: "Front",
  33598. image: {
  33599. source: "./media/characters/tatyana-milewska/front.svg",
  33600. extra: 1199/1150,
  33601. bottom: 86/1285
  33602. }
  33603. },
  33604. },
  33605. [
  33606. {
  33607. name: "Normal",
  33608. height: math.unit(7 + 2/12, "feet"),
  33609. default: true
  33610. },
  33611. {
  33612. name: "Big",
  33613. height: math.unit(12, "feet")
  33614. },
  33615. {
  33616. name: "Minimacro",
  33617. height: math.unit(20, "feet")
  33618. },
  33619. {
  33620. name: "Macro",
  33621. height: math.unit(120, "feet")
  33622. },
  33623. ]
  33624. ))
  33625. characterMakers.push(() => makeCharacter(
  33626. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33627. {
  33628. front: {
  33629. height: math.unit(7 + 8/12, "feet"),
  33630. weight: math.unit(152, "kg"),
  33631. name: "Front",
  33632. image: {
  33633. source: "./media/characters/helen-arri/front.svg",
  33634. extra: 440/423,
  33635. bottom: 14/454
  33636. }
  33637. },
  33638. back: {
  33639. height: math.unit(7 + 8/12, "feet"),
  33640. weight: math.unit(152, "kg"),
  33641. name: "Back",
  33642. image: {
  33643. source: "./media/characters/helen-arri/back.svg",
  33644. extra: 443/426,
  33645. bottom: 8/451
  33646. }
  33647. },
  33648. },
  33649. [
  33650. {
  33651. name: "Normal",
  33652. height: math.unit(7 + 8/12, "feet"),
  33653. default: true
  33654. },
  33655. {
  33656. name: "Big",
  33657. height: math.unit(14, "feet")
  33658. },
  33659. {
  33660. name: "Minimacro",
  33661. height: math.unit(24, "feet")
  33662. },
  33663. {
  33664. name: "Macro",
  33665. height: math.unit(140, "feet")
  33666. },
  33667. ]
  33668. ))
  33669. characterMakers.push(() => makeCharacter(
  33670. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33671. {
  33672. front: {
  33673. height: math.unit(6, "meters"),
  33674. name: "Front",
  33675. image: {
  33676. source: "./media/characters/ehanu-rehu/front.svg",
  33677. extra: 1800/1800,
  33678. bottom: 59/1859
  33679. }
  33680. },
  33681. },
  33682. [
  33683. {
  33684. name: "Normal",
  33685. height: math.unit(6, "meters"),
  33686. default: true
  33687. },
  33688. ]
  33689. ))
  33690. characterMakers.push(() => makeCharacter(
  33691. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33692. {
  33693. front: {
  33694. height: math.unit(7 + 3/12, "feet"),
  33695. name: "Front",
  33696. image: {
  33697. source: "./media/characters/renholder/front.svg",
  33698. extra: 3096/2960,
  33699. bottom: 250/3346
  33700. }
  33701. },
  33702. },
  33703. [
  33704. {
  33705. name: "Normal Bat",
  33706. height: math.unit(7 + 3/12, "feet"),
  33707. default: true
  33708. },
  33709. {
  33710. name: "Slightly Tall Bat",
  33711. height: math.unit(100, "feet")
  33712. },
  33713. {
  33714. name: "Big Bat",
  33715. height: math.unit(1000, "feet")
  33716. },
  33717. {
  33718. name: "City-Sized Bat",
  33719. height: math.unit(200000, "feet")
  33720. },
  33721. {
  33722. name: "Bigger Bat",
  33723. height: math.unit(10000, "miles")
  33724. },
  33725. {
  33726. name: "Solar Sized Bat",
  33727. height: math.unit(100, "AU")
  33728. },
  33729. {
  33730. name: "Galactic Bat",
  33731. height: math.unit(200000, "lightyears")
  33732. },
  33733. {
  33734. name: "Universally Known Bat",
  33735. height: math.unit(1, "universe")
  33736. },
  33737. ]
  33738. ))
  33739. characterMakers.push(() => makeCharacter(
  33740. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33741. {
  33742. front: {
  33743. height: math.unit(6 + 11/12, "feet"),
  33744. weight: math.unit(250, "lb"),
  33745. name: "Front",
  33746. image: {
  33747. source: "./media/characters/cookiecat/front.svg",
  33748. extra: 893/827,
  33749. bottom: 14/907
  33750. }
  33751. },
  33752. },
  33753. [
  33754. {
  33755. name: "Micro",
  33756. height: math.unit(3, "inches")
  33757. },
  33758. {
  33759. name: "Normal",
  33760. height: math.unit(6 + 11/12, "feet"),
  33761. default: true
  33762. },
  33763. {
  33764. name: "Macro",
  33765. height: math.unit(100, "feet")
  33766. },
  33767. {
  33768. name: "Macro+",
  33769. height: math.unit(404, "feet")
  33770. },
  33771. {
  33772. name: "Megamacro",
  33773. height: math.unit(165, "miles")
  33774. },
  33775. {
  33776. name: "Planetary",
  33777. height: math.unit(4600, "miles")
  33778. },
  33779. ]
  33780. ))
  33781. characterMakers.push(() => makeCharacter(
  33782. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33783. {
  33784. front: {
  33785. height: math.unit(10 + 3/12, "feet"),
  33786. weight: math.unit(1500, "lb"),
  33787. name: "Front",
  33788. image: {
  33789. source: "./media/characters/tux-kusanagi/front.svg",
  33790. extra: 944/840,
  33791. bottom: 39/983
  33792. }
  33793. },
  33794. back: {
  33795. height: math.unit(10 + 3/12, "feet"),
  33796. weight: math.unit(1500, "lb"),
  33797. name: "Back",
  33798. image: {
  33799. source: "./media/characters/tux-kusanagi/back.svg",
  33800. extra: 941/842,
  33801. bottom: 28/969
  33802. }
  33803. },
  33804. rump: {
  33805. height: math.unit(5.25, "feet"),
  33806. name: "Rump",
  33807. image: {
  33808. source: "./media/characters/tux-kusanagi/rump.svg"
  33809. }
  33810. },
  33811. beak: {
  33812. height: math.unit(1.54, "feet"),
  33813. name: "Beak",
  33814. image: {
  33815. source: "./media/characters/tux-kusanagi/beak.svg"
  33816. }
  33817. },
  33818. },
  33819. [
  33820. {
  33821. name: "Normal",
  33822. height: math.unit(10 + 3/12, "feet"),
  33823. default: true
  33824. },
  33825. ]
  33826. ))
  33827. characterMakers.push(() => makeCharacter(
  33828. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33829. {
  33830. front: {
  33831. height: math.unit(58, "feet"),
  33832. weight: math.unit(200, "tons"),
  33833. name: "Front",
  33834. image: {
  33835. source: "./media/characters/uzarmazari/front.svg",
  33836. extra: 1575/1455,
  33837. bottom: 152/1727
  33838. }
  33839. },
  33840. back: {
  33841. height: math.unit(58, "feet"),
  33842. weight: math.unit(200, "tons"),
  33843. name: "Back",
  33844. image: {
  33845. source: "./media/characters/uzarmazari/back.svg",
  33846. extra: 1585/1510,
  33847. bottom: 157/1742
  33848. }
  33849. },
  33850. head: {
  33851. height: math.unit(26, "feet"),
  33852. name: "Head",
  33853. image: {
  33854. source: "./media/characters/uzarmazari/head.svg"
  33855. }
  33856. },
  33857. },
  33858. [
  33859. {
  33860. name: "Normal",
  33861. height: math.unit(58, "feet"),
  33862. default: true
  33863. },
  33864. ]
  33865. ))
  33866. characterMakers.push(() => makeCharacter(
  33867. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33868. {
  33869. side: {
  33870. height: math.unit(15, "feet"),
  33871. name: "Side",
  33872. image: {
  33873. source: "./media/characters/akitu/side.svg",
  33874. extra: 1421/1321,
  33875. bottom: 157/1578
  33876. }
  33877. },
  33878. front: {
  33879. height: math.unit(15, "feet"),
  33880. name: "Front",
  33881. image: {
  33882. source: "./media/characters/akitu/front.svg",
  33883. extra: 1435/1326,
  33884. bottom: 232/1667
  33885. }
  33886. },
  33887. },
  33888. [
  33889. {
  33890. name: "Normal",
  33891. height: math.unit(15, "feet"),
  33892. default: true
  33893. },
  33894. ]
  33895. ))
  33896. characterMakers.push(() => makeCharacter(
  33897. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33898. {
  33899. front: {
  33900. height: math.unit(10 + 8/12, "feet"),
  33901. name: "Front",
  33902. image: {
  33903. source: "./media/characters/azalie-croixland/front.svg",
  33904. extra: 1972/1856,
  33905. bottom: 31/2003
  33906. }
  33907. },
  33908. },
  33909. [
  33910. {
  33911. name: "Original Height",
  33912. height: math.unit(5 + 4/12, "feet")
  33913. },
  33914. {
  33915. name: "Normal Height",
  33916. height: math.unit(10 + 8/12, "feet"),
  33917. default: true
  33918. },
  33919. ]
  33920. ))
  33921. characterMakers.push(() => makeCharacter(
  33922. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33923. {
  33924. side: {
  33925. height: math.unit(7 + 1/12, "feet"),
  33926. weight: math.unit(245, "lb"),
  33927. name: "Side",
  33928. image: {
  33929. source: "./media/characters/kavus-kazian/side.svg",
  33930. extra: 349/342,
  33931. bottom: 15/364
  33932. }
  33933. },
  33934. },
  33935. [
  33936. {
  33937. name: "Normal",
  33938. height: math.unit(7 + 1/12, "feet"),
  33939. default: true
  33940. },
  33941. ]
  33942. ))
  33943. characterMakers.push(() => makeCharacter(
  33944. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  33945. {
  33946. normal: {
  33947. height: math.unit(5 + 11/12, "feet"),
  33948. name: "Normal",
  33949. image: {
  33950. source: "./media/characters/moonlight-rose/normal.svg",
  33951. extra: 1979/1835,
  33952. bottom: 14/1993
  33953. }
  33954. },
  33955. demon: {
  33956. height: math.unit(5, "km"),
  33957. name: "Demon",
  33958. image: {
  33959. source: "./media/characters/moonlight-rose/demon.svg",
  33960. extra: 986/916,
  33961. bottom: 28/1014
  33962. }
  33963. },
  33964. },
  33965. [
  33966. {
  33967. name: "\"Natural\" height",
  33968. height: math.unit(5 + 11/12, "feet")
  33969. },
  33970. {
  33971. name: "Comfortable Size",
  33972. height: math.unit(40, "meters")
  33973. },
  33974. {
  33975. name: "Common Size",
  33976. height: math.unit(50, "km"),
  33977. default: true
  33978. },
  33979. {
  33980. name: "Demonic",
  33981. height: math.unit(1.24415e+21, "meters")
  33982. },
  33983. ]
  33984. ))
  33985. characterMakers.push(() => makeCharacter(
  33986. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  33987. {
  33988. front: {
  33989. height: math.unit(16, "feet"),
  33990. weight: math.unit(610, "kg"),
  33991. name: "Front",
  33992. image: {
  33993. source: "./media/characters/huckle/front.svg",
  33994. extra: 1731/1625,
  33995. bottom: 33/1764
  33996. }
  33997. },
  33998. back: {
  33999. height: math.unit(16, "feet"),
  34000. weight: math.unit(610, "kg"),
  34001. name: "Back",
  34002. image: {
  34003. source: "./media/characters/huckle/back.svg",
  34004. extra: 1738/1651,
  34005. bottom: 37/1775
  34006. }
  34007. },
  34008. laughing: {
  34009. height: math.unit(3.75, "feet"),
  34010. name: "Laughing",
  34011. image: {
  34012. source: "./media/characters/huckle/laughing.svg"
  34013. }
  34014. },
  34015. angry: {
  34016. height: math.unit(4.15, "feet"),
  34017. name: "Angry",
  34018. image: {
  34019. source: "./media/characters/huckle/angry.svg"
  34020. }
  34021. },
  34022. },
  34023. [
  34024. {
  34025. name: "Normal",
  34026. height: math.unit(16, "feet"),
  34027. default: true
  34028. },
  34029. {
  34030. name: "Mini Macro",
  34031. height: math.unit(463, "feet")
  34032. },
  34033. {
  34034. name: "Macro",
  34035. height: math.unit(1680, "meters")
  34036. },
  34037. {
  34038. name: "Mega Macro",
  34039. height: math.unit(175, "km")
  34040. },
  34041. {
  34042. name: "Terra Macro",
  34043. height: math.unit(32, "gigameters")
  34044. },
  34045. {
  34046. name: "Multiverse+",
  34047. height: math.unit(2.56e23, "yottameters")
  34048. },
  34049. ]
  34050. ))
  34051. characterMakers.push(() => makeCharacter(
  34052. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34053. {
  34054. front: {
  34055. height: math.unit(6 + 9/12, "feet"),
  34056. weight: math.unit(280, "lb"),
  34057. name: "Front",
  34058. image: {
  34059. source: "./media/characters/candy/front.svg",
  34060. extra: 234/217,
  34061. bottom: 11/245
  34062. }
  34063. },
  34064. },
  34065. [
  34066. {
  34067. name: "Really Small",
  34068. height: math.unit(0.1, "nm")
  34069. },
  34070. {
  34071. name: "Micro",
  34072. height: math.unit(2, "inches")
  34073. },
  34074. {
  34075. name: "Normal",
  34076. height: math.unit(6 + 9/12, "feet"),
  34077. default: true
  34078. },
  34079. {
  34080. name: "Small Macro",
  34081. height: math.unit(69, "feet")
  34082. },
  34083. {
  34084. name: "Macro",
  34085. height: math.unit(160, "feet")
  34086. },
  34087. {
  34088. name: "Megamacro",
  34089. height: math.unit(22000, "miles")
  34090. },
  34091. {
  34092. name: "Gigamacro",
  34093. height: math.unit(50000, "miles")
  34094. },
  34095. ]
  34096. ))
  34097. characterMakers.push(() => makeCharacter(
  34098. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34099. {
  34100. front: {
  34101. height: math.unit(4, "feet"),
  34102. weight: math.unit(90, "lb"),
  34103. name: "Front",
  34104. image: {
  34105. source: "./media/characters/joey-mcdonald/front.svg",
  34106. extra: 1059/852,
  34107. bottom: 33/1092
  34108. }
  34109. },
  34110. back: {
  34111. height: math.unit(4, "feet"),
  34112. weight: math.unit(90, "lb"),
  34113. name: "Back",
  34114. image: {
  34115. source: "./media/characters/joey-mcdonald/back.svg",
  34116. extra: 1077/879,
  34117. bottom: 5/1082
  34118. }
  34119. },
  34120. },
  34121. [
  34122. {
  34123. name: "Normal",
  34124. height: math.unit(4, "feet"),
  34125. default: true
  34126. },
  34127. ]
  34128. ))
  34129. characterMakers.push(() => makeCharacter(
  34130. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34131. {
  34132. front: {
  34133. height: math.unit(12 + 6/12, "feet"),
  34134. name: "Front",
  34135. image: {
  34136. source: "./media/characters/kass-lockheed/front.svg",
  34137. extra: 354/343,
  34138. bottom: 9/363
  34139. }
  34140. },
  34141. back: {
  34142. height: math.unit(12 + 6/12, "feet"),
  34143. name: "Back",
  34144. image: {
  34145. source: "./media/characters/kass-lockheed/back.svg",
  34146. extra: 364/352,
  34147. bottom: 3/367
  34148. }
  34149. },
  34150. dick: {
  34151. height: math.unit(3.12, "feet"),
  34152. name: "Dick",
  34153. image: {
  34154. source: "./media/characters/kass-lockheed/dick.svg"
  34155. }
  34156. },
  34157. head: {
  34158. height: math.unit(2.6, "feet"),
  34159. name: "Head",
  34160. image: {
  34161. source: "./media/characters/kass-lockheed/head.svg"
  34162. }
  34163. },
  34164. bleh: {
  34165. height: math.unit(2.85, "feet"),
  34166. name: "Bleh",
  34167. image: {
  34168. source: "./media/characters/kass-lockheed/bleh.svg"
  34169. }
  34170. },
  34171. smug: {
  34172. height: math.unit(2.85, "feet"),
  34173. name: "Smug",
  34174. image: {
  34175. source: "./media/characters/kass-lockheed/smug.svg"
  34176. }
  34177. },
  34178. },
  34179. [
  34180. {
  34181. name: "Normal",
  34182. height: math.unit(12 + 6/12, "feet"),
  34183. default: true
  34184. },
  34185. ]
  34186. ))
  34187. characterMakers.push(() => makeCharacter(
  34188. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34189. {
  34190. front: {
  34191. height: math.unit(6 + 2/12, "feet"),
  34192. name: "Front",
  34193. image: {
  34194. source: "./media/characters/taylor/front.svg",
  34195. extra: 639/495,
  34196. bottom: 12/651
  34197. }
  34198. },
  34199. },
  34200. [
  34201. {
  34202. name: "Normal",
  34203. height: math.unit(6 + 2/12, "feet"),
  34204. default: true
  34205. },
  34206. {
  34207. name: "Big",
  34208. height: math.unit(15, "feet")
  34209. },
  34210. {
  34211. name: "Lorg",
  34212. height: math.unit(80, "feet")
  34213. },
  34214. {
  34215. name: "Too Lorg",
  34216. height: math.unit(120, "feet")
  34217. },
  34218. ]
  34219. ))
  34220. characterMakers.push(() => makeCharacter(
  34221. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34222. {
  34223. front: {
  34224. height: math.unit(15, "feet"),
  34225. name: "Front",
  34226. image: {
  34227. source: "./media/characters/kaizer/front.svg",
  34228. extra: 1612/1436,
  34229. bottom: 43/1655
  34230. }
  34231. },
  34232. },
  34233. [
  34234. {
  34235. name: "Normal",
  34236. height: math.unit(15, "feet"),
  34237. default: true
  34238. },
  34239. ]
  34240. ))
  34241. characterMakers.push(() => makeCharacter(
  34242. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34243. {
  34244. front: {
  34245. height: math.unit(2, "feet"),
  34246. weight: math.unit(30, "lb"),
  34247. name: "Front",
  34248. image: {
  34249. source: "./media/characters/sandy/front.svg",
  34250. extra: 1439/1307,
  34251. bottom: 194/1633
  34252. }
  34253. },
  34254. },
  34255. [
  34256. {
  34257. name: "Normal",
  34258. height: math.unit(2, "feet"),
  34259. default: true
  34260. },
  34261. ]
  34262. ))
  34263. characterMakers.push(() => makeCharacter(
  34264. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34265. {
  34266. front: {
  34267. height: math.unit(3, "feet"),
  34268. name: "Front",
  34269. image: {
  34270. source: "./media/characters/mellvi/front.svg",
  34271. extra: 1831/1630,
  34272. bottom: 58/1889
  34273. }
  34274. },
  34275. },
  34276. [
  34277. {
  34278. name: "Normal",
  34279. height: math.unit(3, "feet"),
  34280. default: true
  34281. },
  34282. ]
  34283. ))
  34284. characterMakers.push(() => makeCharacter(
  34285. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34286. {
  34287. front: {
  34288. height: math.unit(5 + 11/12, "feet"),
  34289. weight: math.unit(200, "lb"),
  34290. name: "Front",
  34291. image: {
  34292. source: "./media/characters/shirou/front.svg",
  34293. extra: 2491/2383,
  34294. bottom: 189/2680
  34295. }
  34296. },
  34297. back: {
  34298. height: math.unit(5 + 11/12, "feet"),
  34299. weight: math.unit(200, "lb"),
  34300. name: "Back",
  34301. image: {
  34302. source: "./media/characters/shirou/back.svg",
  34303. extra: 2554/2450,
  34304. bottom: 76/2630
  34305. }
  34306. },
  34307. },
  34308. [
  34309. {
  34310. name: "Normal",
  34311. height: math.unit(5 + 11/12, "feet"),
  34312. default: true
  34313. },
  34314. ]
  34315. ))
  34316. characterMakers.push(() => makeCharacter(
  34317. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34318. {
  34319. front: {
  34320. height: math.unit(6 + 3/12, "feet"),
  34321. weight: math.unit(177, "lb"),
  34322. name: "Front",
  34323. image: {
  34324. source: "./media/characters/noryu/front.svg",
  34325. extra: 973/885,
  34326. bottom: 10/983
  34327. }
  34328. },
  34329. },
  34330. [
  34331. {
  34332. name: "Normal",
  34333. height: math.unit(6 + 3/12, "feet"),
  34334. default: true
  34335. },
  34336. ]
  34337. ))
  34338. characterMakers.push(() => makeCharacter(
  34339. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34340. {
  34341. front: {
  34342. height: math.unit(5 + 6/12, "feet"),
  34343. weight: math.unit(170, "lb"),
  34344. name: "Front",
  34345. image: {
  34346. source: "./media/characters/mevolas-rubenido/front.svg",
  34347. extra: 2109/1901,
  34348. bottom: 96/2205
  34349. }
  34350. },
  34351. },
  34352. [
  34353. {
  34354. name: "Normal",
  34355. height: math.unit(5 + 6/12, "feet"),
  34356. default: true
  34357. },
  34358. ]
  34359. ))
  34360. characterMakers.push(() => makeCharacter(
  34361. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34362. {
  34363. front: {
  34364. height: math.unit(100, "feet"),
  34365. name: "Front",
  34366. image: {
  34367. source: "./media/characters/dee/front.svg",
  34368. extra: 2153/2036,
  34369. bottom: 59/2212
  34370. }
  34371. },
  34372. back: {
  34373. height: math.unit(100, "feet"),
  34374. name: "Back",
  34375. image: {
  34376. source: "./media/characters/dee/back.svg",
  34377. extra: 2183/2058,
  34378. bottom: 75/2258
  34379. }
  34380. },
  34381. foot: {
  34382. height: math.unit(19.43, "feet"),
  34383. name: "Foot",
  34384. image: {
  34385. source: "./media/characters/dee/foot.svg"
  34386. }
  34387. },
  34388. hoof: {
  34389. height: math.unit(20.6, "feet"),
  34390. name: "Hoof",
  34391. image: {
  34392. source: "./media/characters/dee/hoof.svg"
  34393. }
  34394. },
  34395. },
  34396. [
  34397. {
  34398. name: "Macro",
  34399. height: math.unit(100, "feet"),
  34400. default: true
  34401. },
  34402. ]
  34403. ))
  34404. characterMakers.push(() => makeCharacter(
  34405. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34406. {
  34407. front: {
  34408. height: math.unit(5 + 6/12, "feet"),
  34409. name: "Front",
  34410. image: {
  34411. source: "./media/characters/teh/front.svg",
  34412. extra: 1002/847,
  34413. bottom: 62/1064
  34414. }
  34415. },
  34416. },
  34417. [
  34418. {
  34419. name: "Normal",
  34420. height: math.unit(5 + 6/12, "feet"),
  34421. default: true
  34422. },
  34423. ]
  34424. ))
  34425. //characters
  34426. function makeCharacters() {
  34427. const results = [];
  34428. characterMakers.forEach(character => {
  34429. results.push(character());
  34430. });
  34431. return results;
  34432. }