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

35909 строки
902 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. });
  45. return createEntityMaker(info, views, defaultSizes);
  46. }
  47. const speciesData = {
  48. animal: {
  49. name: "Animal"
  50. },
  51. dog: {
  52. name: "Dog",
  53. parents: [
  54. "canine"
  55. ]
  56. },
  57. canine: {
  58. name: "Canine",
  59. parents: [
  60. "mammal"
  61. ]
  62. },
  63. crux: {
  64. name: "Crux",
  65. parents: [
  66. "mammal"
  67. ]
  68. },
  69. mammal: {
  70. name: "Mammal",
  71. parents: [
  72. "animal"
  73. ]
  74. },
  75. "rough-collie": {
  76. name: "Rough Collie",
  77. parents: [
  78. "dog"
  79. ]
  80. },
  81. dragon: {
  82. name: "Dragon",
  83. parents: [
  84. "reptile"
  85. ]
  86. },
  87. reptile: {
  88. name: "Reptile",
  89. parents: [
  90. "animal"
  91. ]
  92. },
  93. woodpecker: {
  94. name: "Woodpecker",
  95. parents: [
  96. "avian"
  97. ]
  98. },
  99. avian: {
  100. name: "Avian",
  101. parents: [
  102. "animal"
  103. ]
  104. },
  105. kitsune: {
  106. name: "Kitsune",
  107. parents: [
  108. "fox"
  109. ]
  110. },
  111. fox: {
  112. name: "Fox",
  113. parents: [
  114. "mammal"
  115. ]
  116. },
  117. pokemon: {
  118. name: "Pokemon"
  119. },
  120. tiger: {
  121. name: "Tiger",
  122. parents: [
  123. "cat"
  124. ]
  125. },
  126. cat: {
  127. name: "Cat",
  128. parents: [
  129. "mammal"
  130. ]
  131. },
  132. "blue-jay": {
  133. name: "Blue Jay",
  134. parents: [
  135. "avian"
  136. ]
  137. },
  138. wolf: {
  139. name: "Wolf",
  140. parents: [
  141. "mammal"
  142. ]
  143. },
  144. coyote: {
  145. name: "Coyote",
  146. parents: [
  147. "mammal"
  148. ]
  149. },
  150. raccoon: {
  151. name: "Raccoon",
  152. parents: [
  153. "mammal"
  154. ]
  155. },
  156. weasel: {
  157. name: "Weasel",
  158. parents: [
  159. "mammal"
  160. ]
  161. },
  162. "red-panda": {
  163. name: "Red Panda",
  164. parents: [
  165. "mammal"
  166. ]
  167. },
  168. dolphin: {
  169. name: "Dolphin",
  170. parents: [
  171. "mammal"
  172. ]
  173. },
  174. "african-wild-dog": {
  175. name: "African Wild Dog",
  176. parents: [
  177. "canine"
  178. ]
  179. },
  180. "hyena": {
  181. name: "Hyena",
  182. parents: [
  183. "canine"
  184. ]
  185. },
  186. "carbuncle": {
  187. name: "Carbuncle",
  188. parents: [
  189. "animal"
  190. ]
  191. },
  192. bat: {
  193. name: "Bat",
  194. parents: [
  195. "mammal"
  196. ]
  197. },
  198. "leaf-nosed-bat": {
  199. name: "Leaf-Nosed Bat",
  200. parents: [
  201. "bat"
  202. ]
  203. },
  204. "fish": {
  205. name: "Fish",
  206. parents: [
  207. "animal"
  208. ]
  209. },
  210. "ram": {
  211. name: "Ram",
  212. parents: [
  213. "mammal"
  214. ]
  215. },
  216. "demon": {
  217. name: "Demon"
  218. },
  219. "cougar": {
  220. name: "Cougar",
  221. parents: [
  222. "cat"
  223. ]
  224. },
  225. "goat": {
  226. name: "Goat",
  227. parents: [
  228. "mammal"
  229. ]
  230. },
  231. "lion": {
  232. name: "Lion",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "harpy-eager": {
  238. name: "Harpy Eagle",
  239. parents: [
  240. "avian"
  241. ]
  242. },
  243. "deer": {
  244. name: "Deer",
  245. parents: [
  246. "mammal"
  247. ]
  248. },
  249. "phoenix": {
  250. name: "Phoenix",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "aeromorph": {
  256. name: "Aeromorph",
  257. parents: [
  258. "machine"
  259. ]
  260. },
  261. "machine": {
  262. name: "Machine",
  263. },
  264. "android": {
  265. name: "Android",
  266. parents: [
  267. "machine"
  268. ]
  269. },
  270. "jackal": {
  271. name: "Jackal",
  272. parents: [
  273. "canine"
  274. ]
  275. },
  276. "corvid": {
  277. name: "Corvid",
  278. parents: [
  279. "avian"
  280. ]
  281. },
  282. "pharaoh-hound": {
  283. name: "Pharaoh Hound",
  284. parents: [
  285. "dog"
  286. ]
  287. },
  288. "skunk": {
  289. name: "Skunk",
  290. parents: [
  291. "mammal"
  292. ]
  293. },
  294. "shark": {
  295. name: "Shark",
  296. parents: [
  297. "fish"
  298. ]
  299. },
  300. "black-panther": {
  301. name: "Black Panther",
  302. parents: [
  303. "cat"
  304. ]
  305. },
  306. "umbra": {
  307. name: "Umbra",
  308. parents: [
  309. "animal"
  310. ]
  311. },
  312. "raven": {
  313. name: "Raven",
  314. parents: [
  315. "corvid"
  316. ]
  317. },
  318. "snow-leopard": {
  319. name: "Snow Leopard",
  320. parents: [
  321. "cat"
  322. ]
  323. },
  324. "barbary-lion": {
  325. name: "Barbary Lion",
  326. parents: [
  327. "lion"
  328. ]
  329. },
  330. "dra'gal": {
  331. name: "Dra'Gal",
  332. parents: [
  333. "mammal"
  334. ]
  335. },
  336. "german-shepherd": {
  337. name: "German Shepherd",
  338. parents: [
  339. "dog"
  340. ]
  341. },
  342. "bayleef": {
  343. name: "Bayleef",
  344. parents: [
  345. "pokemon"
  346. ]
  347. },
  348. "mouse": {
  349. name: "Mouse",
  350. parents: [
  351. "rodent"
  352. ]
  353. },
  354. "rat": {
  355. name: "Rat",
  356. parents: [
  357. "mammal"
  358. ]
  359. },
  360. "hoshiko-beast": {
  361. name: "Hoshiko Beast",
  362. parents: ["animal"]
  363. },
  364. "snow-jugani": {
  365. name: "Snow Jugani",
  366. parents: ["cat"]
  367. },
  368. "patamon": {
  369. name: "Patamon",
  370. parents: ["digimon"]
  371. },
  372. "digimon": {
  373. name: "Digimon",
  374. },
  375. "jugani": {
  376. name: "Jugani",
  377. parents: ["cat"]
  378. },
  379. "luxray": {
  380. name: "Luxray",
  381. parents: ["pokemon"]
  382. },
  383. "mech": {
  384. name: "Mech",
  385. parents: ["machine"]
  386. },
  387. "zoid": {
  388. name: "Zoid",
  389. parents: ["mech"]
  390. },
  391. "monster": {
  392. name: "Monster",
  393. parents: ["animal"]
  394. },
  395. "foo-dog": {
  396. name: "Foo Dog",
  397. parents: ["mammal"]
  398. },
  399. "elephant": {
  400. name: "Elephant",
  401. parents: ["mammal"]
  402. },
  403. "eagle": {
  404. name: "Eagle",
  405. parents: ["avian"]
  406. },
  407. "cow": {
  408. name: "Cow",
  409. parents: ["mammal"]
  410. },
  411. "crocodile": {
  412. name: "Crocodile",
  413. parents: ["reptile"]
  414. },
  415. "borzoi": {
  416. name: "Borzoi",
  417. parents: ["dog"]
  418. },
  419. "snake": {
  420. name: "Snake",
  421. parents: ["reptile"]
  422. },
  423. "horned-bush-viper": {
  424. name: "Horned Bush Viper",
  425. parents: ["snake"]
  426. },
  427. "cobra": {
  428. name: "Cobra",
  429. parents: ["snake"]
  430. },
  431. "harpy-eagle": {
  432. name: "Harpy Eagle",
  433. parents: ["eagle"]
  434. },
  435. "raptor": {
  436. name: "Raptor",
  437. parents: ["dinosaur"]
  438. },
  439. "dinosaur": {
  440. name: "Dinosaur",
  441. parents: ["reptile"]
  442. },
  443. "veilhound": {
  444. name: "Veilhound",
  445. parents: ["hellhound", "demon"]
  446. },
  447. "hellhound": {
  448. name: "Hellhound",
  449. parents: ["canine"]
  450. },
  451. "insect": {
  452. name: "Insect",
  453. parents: ["animal"]
  454. },
  455. "beetle": {
  456. name: "Beetle",
  457. parents: ["insect"]
  458. },
  459. "moth": {
  460. name: "Moth",
  461. parents: ["insect"]
  462. },
  463. "eastern-dragon": {
  464. name: "Eastern Dragon",
  465. parents: ["dragon"]
  466. },
  467. "jaguar": {
  468. name: "Jaguar",
  469. parents: ["cat"]
  470. },
  471. "horse": {
  472. name: "Horse",
  473. parents: ["mammal"]
  474. },
  475. "sergal": {
  476. name: "Sergal",
  477. parents: ["mammal"]
  478. },
  479. "gryphon": {
  480. name: "Gryphon",
  481. parents: ["lion", "eagle"]
  482. },
  483. "robot": {
  484. name: "Robot",
  485. parents: ["machine"]
  486. },
  487. "medihound": {
  488. name: "Medihound",
  489. parents: ["robot", "dog"]
  490. },
  491. "sylveon": {
  492. name: "Sylveon",
  493. parents: ["pokemon"]
  494. },
  495. "catgirl": {
  496. name: "Catgirl",
  497. parents: ["mammal"]
  498. },
  499. "cowgirl": {
  500. name: "Cowgirl",
  501. parents: ["mammal"]
  502. },
  503. "pony": {
  504. name: "Pony",
  505. parents: ["horse"]
  506. },
  507. "rabbit": {
  508. name: "Rabbit",
  509. parents: ["mammal"]
  510. },
  511. "fennec-fox": {
  512. name: "Fennec Fox",
  513. parents: ["fox"]
  514. },
  515. "azodian": {
  516. name: "Azodian",
  517. parents: ["mouse"]
  518. },
  519. "shiba-inu": {
  520. name: "Shiba Inu",
  521. parents: ["dog"]
  522. },
  523. "changeling": {
  524. name: "Changeling",
  525. parents: ["insect"]
  526. },
  527. "cheetah": {
  528. name: "Cheetah",
  529. parents: ["cat"]
  530. },
  531. "golden-jackal": {
  532. name: "Golden Jackal",
  533. parents: ["jackal"]
  534. },
  535. "manectric": {
  536. name: "Manectric",
  537. parents: ["pokemon"]
  538. },
  539. "rat": {
  540. name: "Rat",
  541. parents: ["rodent"]
  542. },
  543. "rodent": {
  544. name: "Rodent",
  545. parents: ["mammal"]
  546. },
  547. "octocoon": {
  548. name: "Octocoon",
  549. parents: ["raccoon", "octopus"]
  550. },
  551. "octopus": {
  552. name: "Octopus",
  553. parents: ["fish"]
  554. },
  555. "werewolf": {
  556. name: "Werewolf",
  557. parents: ["wolf"]
  558. },
  559. "meerkat": {
  560. name: "Meerkat",
  561. parents: ["mammal"]
  562. },
  563. "human": {
  564. name: "Human",
  565. parents: ["mammal"]
  566. },
  567. "geth": {
  568. name: "Geth",
  569. parents: ["android"]
  570. },
  571. "husky": {
  572. name: "Husky",
  573. parents: ["dog"]
  574. },
  575. "long-eared-bat": {
  576. name: "Long Eared Bat",
  577. parents: ["bat"]
  578. },
  579. "lizard": {
  580. name: "Lizard",
  581. parents: ["reptile"]
  582. },
  583. "salamander": {
  584. name: "Salamander",
  585. parents: ["lizard"]
  586. },
  587. "chameleon": {
  588. name: "Chameleon",
  589. parents: ["lizard"]
  590. },
  591. "gecko": {
  592. name: "Gecko",
  593. parents: ["lizard"]
  594. },
  595. "kobold": {
  596. name: "Kobold",
  597. parents: ["reptile"]
  598. },
  599. "charizard": {
  600. name: "Charizard",
  601. parents: ["pokemon"]
  602. },
  603. "lugia": {
  604. name: "Lugia",
  605. parents: ["pokemon"]
  606. },
  607. "cerberus": {
  608. name: "Cerberus",
  609. parents: ["dog"]
  610. },
  611. "tyrantrum": {
  612. name: "Tyrantrum",
  613. parents: ["pokemon"]
  614. },
  615. "lemur": {
  616. name: "Lemur",
  617. parents: ["mammal"]
  618. },
  619. "kelpie": {
  620. name: "Kelpie",
  621. parents: ["horse", "monster"]
  622. },
  623. "labrador": {
  624. name: "Labrador",
  625. parents: ["dog"]
  626. },
  627. "sylveon": {
  628. name: "Sylveon",
  629. parents: ["eeveelution"]
  630. },
  631. "eeveelution": {
  632. name: "Eeveelution",
  633. parents: ["pokemon"]
  634. },
  635. "polar-bear": {
  636. name: "Polar Bear",
  637. parents: ["bear"]
  638. },
  639. "bear": {
  640. name: "Bear",
  641. parents: ["mammal"]
  642. },
  643. "absol": {
  644. name: "Absol",
  645. parents: ["pokemon"]
  646. },
  647. "wolver": {
  648. name: "Wolver",
  649. parents: ["mammal"]
  650. },
  651. "rottweiler": {
  652. name: "Rottweiler",
  653. parents: ["dog"]
  654. },
  655. "zebra": {
  656. name: "Zebra",
  657. parents: ["horse"]
  658. },
  659. "yoshi": {
  660. name: "Yoshi",
  661. parents: ["lizard"]
  662. },
  663. "lynx": {
  664. name: "Lynx",
  665. parents: ["cat"]
  666. },
  667. "unknown": {
  668. name: "Unknown",
  669. parents: []
  670. },
  671. "thylacine": {
  672. name: "Thylacine",
  673. parents: ["mammal"]
  674. },
  675. "gabumon": {
  676. name: "Gabumon",
  677. parents: ["digimon"]
  678. },
  679. "border-collie": {
  680. name: "Border Collie",
  681. parents: ["dog"]
  682. },
  683. "imp": {
  684. name: "Imp",
  685. parents: ["demon"]
  686. },
  687. "kangaroo": {
  688. name: "Kangaroo",
  689. parents: ["mammal"]
  690. },
  691. "renamon": {
  692. name: "Renamon",
  693. parents: ["digimon"]
  694. },
  695. "candy-orca-dragon": {
  696. name: "Candy Orca Dragon",
  697. parents: ["fish", "dragon", "candy"]
  698. },
  699. "sabertooth-tiger": {
  700. name: "Sabertooth Tiger",
  701. parents: ["cat"]
  702. },
  703. "espurr": {
  704. name: "Espurr",
  705. parents: ["pokemon"]
  706. },
  707. "otter": {
  708. name: "Otter",
  709. parents: ["mammal"]
  710. },
  711. "elemental": {
  712. name: "Elemental",
  713. parents: ["mammal"]
  714. },
  715. "mew": {
  716. name: "Mew",
  717. parents: ["pokemon"]
  718. },
  719. "goodra": {
  720. name: "Goodra",
  721. parents: ["pokemon"]
  722. },
  723. "fairy": {
  724. name: "Fairy",
  725. parents: ["magical"]
  726. },
  727. "typhlosion": {
  728. name: "Typhlosion",
  729. parents: ["pokemon"]
  730. },
  731. "magical": {
  732. name: "Magical",
  733. parents: []
  734. },
  735. "xenomorph": {
  736. name: "Xenomorph",
  737. parents: ["monster", "alien"]
  738. },
  739. "charr": {
  740. name: "Charr",
  741. parents: ["cat"]
  742. },
  743. "siberian-husky": {
  744. name: "Siberian Husky",
  745. parents: ["husky"]
  746. },
  747. "alligator": {
  748. name: "Alligator",
  749. parents: ["reptile"]
  750. },
  751. "bernese-mountain-dog": {
  752. name: "Bernese Mountain Dog",
  753. parents: ["dog"]
  754. },
  755. "reshiram": {
  756. name: "Reshiram",
  757. parents: ["pokemon"]
  758. },
  759. "grizzly-bear": {
  760. name: "Grizzly Bear",
  761. parents: ["bear"]
  762. },
  763. "water-monitor": {
  764. name: "Water Monitor",
  765. parents: ["lizard"]
  766. },
  767. "banchofossa": {
  768. name: "Banchofossa",
  769. parents: ["mammal"]
  770. },
  771. "kirin": {
  772. name: "Kirin",
  773. parents: ["monster"]
  774. },
  775. "quilava": {
  776. name: "Quilava",
  777. parents: ["pokemon"]
  778. },
  779. "seviper": {
  780. name: "Seviper",
  781. parents: ["pokemon"]
  782. },
  783. "flying-fox": {
  784. name: "Flying Fox",
  785. parents: ["bat"]
  786. },
  787. "keynain": {
  788. name: "Keynain",
  789. parents: ["avian"]
  790. },
  791. "lucario": {
  792. name: "Lucario",
  793. parents: ["pokemon"]
  794. },
  795. "siamese-cat": {
  796. name: "Siamese Cat",
  797. parents: ["cat"]
  798. },
  799. "spider": {
  800. name: "Spider",
  801. parents: ["insect"]
  802. },
  803. "samurott": {
  804. name: "Samurott",
  805. parents: ["pokemon"]
  806. },
  807. "megalodon": {
  808. name: "Megalodon",
  809. parents: ["shark"]
  810. },
  811. "unicorn": {
  812. name: "Unicorn",
  813. parents: ["horse"]
  814. },
  815. "greninja": {
  816. name: "Greninja",
  817. parents: ["pokemon"]
  818. },
  819. "water-dragon": {
  820. name: "Water Dragon",
  821. parents: ["dragon"]
  822. },
  823. "cross-fox": {
  824. name: "Cross Fox",
  825. parents: ["fox"]
  826. },
  827. "synth": {
  828. name: "Synth",
  829. parents: ["machine"]
  830. },
  831. "construct": {
  832. name: "Construct",
  833. parents: []
  834. },
  835. "mexican-wolf": {
  836. name: "Mexican Wolf",
  837. parents: ["wolf"]
  838. },
  839. "leopard": {
  840. name: "Leopard",
  841. parents: ["cat"]
  842. },
  843. "pig": {
  844. name: "Pig",
  845. parents: ["mammal"]
  846. },
  847. "ampharos": {
  848. name: "Ampharos",
  849. parents: ["pokemon"]
  850. },
  851. "orca": {
  852. name: "Orca",
  853. parents: ["fish"]
  854. },
  855. "lycanroc": {
  856. name: "Lycanroc",
  857. parents: ["pokemon"]
  858. },
  859. "surkanu": {
  860. name: "Surkanu",
  861. parents: ["monster"]
  862. },
  863. "seal": {
  864. name: "Seal",
  865. parents: ["mammal"]
  866. },
  867. "keldeo": {
  868. name: "Keldeo",
  869. parents: ["pokemon"]
  870. },
  871. "great-dane": {
  872. name: "Great Dane",
  873. parents: ["dog"]
  874. },
  875. "black-backed-jackal": {
  876. name: "Black Backed Jackal",
  877. parents: ["jackal"]
  878. },
  879. "sheep": {
  880. name: "Sheep",
  881. parents: ["mammal"]
  882. },
  883. "leopard-seal": {
  884. name: "Leopard Seal",
  885. parents: ["seal"]
  886. },
  887. "zoroark": {
  888. name: "Zoroark",
  889. parents: ["pokemon"]
  890. },
  891. "maned-wolf": {
  892. name: "Maned Wolf",
  893. parents: ["canine"]
  894. },
  895. "dracha": {
  896. name: "Dracha",
  897. parents: ["dragon"]
  898. },
  899. "wolxi": {
  900. name: "Wolxi",
  901. parents: ["mammal", "alien"]
  902. },
  903. "dratini": {
  904. name: "Dratini",
  905. parents: ["pokemon", "dragon"]
  906. },
  907. "skaven": {
  908. name: "Skaven",
  909. parents: ["rat"]
  910. },
  911. "mongoose": {
  912. name: "Mongoose",
  913. parents: ["mammal"]
  914. },
  915. "lopunny": {
  916. name: "Lopunny",
  917. parents: ["pokemon", "rabbit"]
  918. },
  919. "feraligatr": {
  920. name: "Feraligatr",
  921. parents: ["pokemon", "alligator"]
  922. },
  923. "houndoom": {
  924. name: "Houndoom",
  925. parents: ["pokemon", "dog"]
  926. },
  927. "protogen": {
  928. name: "Protogen",
  929. parents: ["machine"]
  930. },
  931. "saint-bernard": {
  932. name: "Saint Bernard",
  933. parents: ["dog"]
  934. },
  935. "crow": {
  936. name: "Crow",
  937. parents: ["corvid"]
  938. },
  939. "delphox": {
  940. name: "Delphox",
  941. parents: ["pokemon", "fox"]
  942. },
  943. "moose": {
  944. name: "Moose",
  945. parents: ["mammal"]
  946. },
  947. "joraxian": {
  948. name: "Joraxian",
  949. parents: ["monster", "canine", "demon"]
  950. },
  951. "nimbat": {
  952. name: "Nimbat",
  953. parents: ["mammal"]
  954. },
  955. "aardwolf": {
  956. name: "Aardwolf",
  957. parents: ["canine"]
  958. },
  959. "fluudrani": {
  960. name: "Fluudrani",
  961. parents: ["animal"]
  962. },
  963. "arcanine": {
  964. name: "Arcanine",
  965. parents: ["pokemon", "dog"]
  966. },
  967. "inteleon": {
  968. name: "Inteleon",
  969. parents: ["pokemon", "fish"]
  970. },
  971. "ninetales": {
  972. name: "Ninetales",
  973. parents: ["pokemon", "kitsune"]
  974. },
  975. "tigrex": {
  976. name: "Tigrex",
  977. parents: ["tiger"]
  978. },
  979. "zorua": {
  980. name: "Zorua",
  981. parents: ["pokemon", "fox"]
  982. },
  983. "vulpix": {
  984. name: "Vulpix",
  985. parents: ["pokemon", "fox"]
  986. },
  987. "barghest": {
  988. name: "Barghest",
  989. parents: ["monster"]
  990. },
  991. "gray-wolf": {
  992. name: "Gray Wolf",
  993. parents: ["wolf"]
  994. },
  995. "ruppells-fox": {
  996. name: "Rüppell's Fox",
  997. parents: ["fox"]
  998. },
  999. "bull-terrier": {
  1000. name: "Bull Terrier",
  1001. parents: ["dog"]
  1002. },
  1003. "european-honey-buzzard": {
  1004. name: "European Honey Buzzard",
  1005. parents: ["avian"]
  1006. },
  1007. "t-rex": {
  1008. name: "T Rex",
  1009. parents: ["dinosaur"]
  1010. },
  1011. "mactarian": {
  1012. name: "Mactarian",
  1013. parents: ["shark", "monster"]
  1014. },
  1015. "mewtwo-y": {
  1016. name: "Mewtwo Y",
  1017. parents: ["mewtwo"]
  1018. },
  1019. "mewtwo": {
  1020. name: "Mewtwo",
  1021. parents: ["pokemon"]
  1022. },
  1023. "mew": {
  1024. name: "Mew",
  1025. parents: ["pokemon"]
  1026. },
  1027. "eevee": {
  1028. name: "Eevee",
  1029. parents: ["eeveelution"]
  1030. },
  1031. "mienshao": {
  1032. name: "Mienshao",
  1033. parents: ["pokemon"]
  1034. },
  1035. "sugar-glider": {
  1036. name: "Sugar Glider",
  1037. parents: ["opossum"]
  1038. },
  1039. "spectral-bat": {
  1040. name: "Spectral Bat",
  1041. parents: ["bat"]
  1042. },
  1043. "scolipede": {
  1044. name: "Scolipede",
  1045. parents: ["pokemon", "insect"]
  1046. },
  1047. "jackalope": {
  1048. name: "Jackalope",
  1049. parents: ["rabbit", "antelope"]
  1050. },
  1051. "caracal": {
  1052. name: "Caracal",
  1053. parents: ["cat"]
  1054. },
  1055. "stoat": {
  1056. name: "Stoat",
  1057. parents: ["mammal"]
  1058. },
  1059. "african-golden-cat": {
  1060. name: "African Golden Cat",
  1061. parents: ["cat"]
  1062. },
  1063. "gigantosaurus": {
  1064. name: "Gigantosaurus",
  1065. parents: ["dinosaur"]
  1066. },
  1067. "zorgoia": {
  1068. name: "Zorgoia",
  1069. parents: ["mammal"]
  1070. },
  1071. "monitor-lizard": {
  1072. name: "Monitor Lizard",
  1073. parents: ["lizard"]
  1074. },
  1075. "ziralkia": {
  1076. name: "Ziralkia",
  1077. parents: ["mammal"]
  1078. },
  1079. "kiiasi": {
  1080. name: "Kiiasi",
  1081. parents: ["animal"]
  1082. },
  1083. "synx": {
  1084. name: "Synx",
  1085. parents: ["monster"]
  1086. },
  1087. "panther": {
  1088. name: "Panther",
  1089. parents: ["cat"]
  1090. },
  1091. "azumarill": {
  1092. name: "Azumarill",
  1093. parents: ["pokemon"]
  1094. },
  1095. "river-snaptail": {
  1096. name: "River Snaptail",
  1097. parents: ["otter", "crocodile"]
  1098. },
  1099. "great-blue-heron": {
  1100. name: "Great Blue Heron",
  1101. parents: ["avian"]
  1102. },
  1103. "smeargle": {
  1104. name: "Smeargle",
  1105. parents: ["pokemon"]
  1106. },
  1107. "vendeilen": {
  1108. name: "Vendeilen",
  1109. parents: ["monster"]
  1110. },
  1111. "ventura": {
  1112. name: "Ventura",
  1113. parents: ["canine"]
  1114. },
  1115. "clouded-leopard": {
  1116. name: "Clouded Leopard",
  1117. parents: ["leopard"]
  1118. },
  1119. "argonian": {
  1120. name: "Argonian",
  1121. parents: ["lizard"]
  1122. },
  1123. "salazzle": {
  1124. name: "Salazzle",
  1125. parents: ["pokemon", "lizard"]
  1126. },
  1127. "je-stoff-drachen": {
  1128. name: "Je-Stoff Drachen",
  1129. parents: ["dragon"]
  1130. },
  1131. "finnish-spitz-dog": {
  1132. name: "Finnish Spitz Dog",
  1133. parents: ["dog"]
  1134. },
  1135. "gray-fox": {
  1136. name: "Gray Fox",
  1137. parents: ["fox"]
  1138. },
  1139. "opossum": {
  1140. name: "opossum",
  1141. parents: ["mammal"]
  1142. },
  1143. "antelope": {
  1144. name: "Antelope",
  1145. parents: ["mammal"]
  1146. },
  1147. "weavile": {
  1148. name: "Weavile",
  1149. parents: ["pokemon"]
  1150. },
  1151. "pikachu": {
  1152. name: "Pikachu",
  1153. parents: ["pokemon", "mouse"]
  1154. },
  1155. "grovyle": {
  1156. name: "Grovyle",
  1157. parents: ["pokemon", "plant"]
  1158. },
  1159. "sthara": {
  1160. name: "Sthara",
  1161. parents: ["snow-leopard", "reptile"]
  1162. },
  1163. "star-warrior": {
  1164. name: "Star Warrior",
  1165. parents: ["magical"]
  1166. },
  1167. "dragonoid": {
  1168. name: "Dragonoid",
  1169. parents: ["dragon"]
  1170. },
  1171. "suicune": {
  1172. name: "Suicune",
  1173. parents: ["pokemon"]
  1174. },
  1175. "vole": {
  1176. name: "Vole",
  1177. parents: ["mammal"]
  1178. },
  1179. "blaziken": {
  1180. name: "Blaziken",
  1181. parents: ["pokemon", "avian"]
  1182. },
  1183. "buizel": {
  1184. name: "Buizel",
  1185. parents: ["pokemon", "fish"]
  1186. },
  1187. "floatzel": {
  1188. name: "Floatzel",
  1189. parents: ["pokemon", "fish"]
  1190. },
  1191. "umok": {
  1192. name: "Umok",
  1193. parents: ["avian"]
  1194. },
  1195. "sea-monster": {
  1196. name: "Sea Monster",
  1197. parents: ["monster", "fish"]
  1198. },
  1199. "egyptian-vulture": {
  1200. name: "Egyptian Vulture",
  1201. parents: ["avian"]
  1202. },
  1203. "doberman": {
  1204. name: "Doberman",
  1205. parents: ["dog"]
  1206. },
  1207. "zangoose": {
  1208. name: "Zangoose",
  1209. parents: ["pokemon", "mongoose"]
  1210. },
  1211. "mongoose": {
  1212. name: "Mongoose",
  1213. parents: ["mammal"]
  1214. },
  1215. "wickerbeast": {
  1216. name: "Wickerbeast",
  1217. parents: ["monster"]
  1218. },
  1219. "zenari": {
  1220. name: "Zenari",
  1221. parents: ["lizard"]
  1222. },
  1223. "plant": {
  1224. name: "Plant",
  1225. parents: []
  1226. },
  1227. "raskatox": {
  1228. name: "Raskatox",
  1229. parents: ["raccoon", "skunk", "cat", "fox"]
  1230. },
  1231. "mikromare": {
  1232. name: "mikromare",
  1233. parents: ["alien"]
  1234. },
  1235. "alien": {
  1236. name: "Alien",
  1237. parents: ["animal"]
  1238. },
  1239. "deity": {
  1240. name: "Deity",
  1241. parents: []
  1242. },
  1243. "skarlan": {
  1244. name: "Skarlan",
  1245. parents: ["slug", "dragon"]
  1246. },
  1247. "slug": {
  1248. name: "Slug",
  1249. parents: ["mollusk"]
  1250. },
  1251. "mollusk": {
  1252. name: "Mollusk",
  1253. parents: ["animal"]
  1254. },
  1255. "chimera": {
  1256. name: "Chimera",
  1257. parents: ["monster"]
  1258. },
  1259. "gestalt": {
  1260. name: "Gestalt",
  1261. parents: ["construct"]
  1262. },
  1263. "mimic": {
  1264. name: "Mimic",
  1265. parents: ["monster"]
  1266. },
  1267. "calico-rat": {
  1268. name: "Calico Rat",
  1269. parents: ["rat"]
  1270. },
  1271. "panda": {
  1272. name: "Panda",
  1273. parents: ["mammal"]
  1274. },
  1275. "oni": {
  1276. name: "Oni",
  1277. parents: ["monster"]
  1278. },
  1279. "pegasus": {
  1280. name: "Pegasus",
  1281. parents: ["horse"]
  1282. },
  1283. "vulpera": {
  1284. name: "Vulpera",
  1285. parents: ["fennec-fox"]
  1286. },
  1287. "ceratosaurus": {
  1288. name: "Ceratosaurus",
  1289. parents: ["dinosaur"]
  1290. },
  1291. "nykur": {
  1292. name: "Nykur",
  1293. parents: ["horse", "monster"]
  1294. },
  1295. "giraffe": {
  1296. name: "Giraffe",
  1297. parents: ["mammal"]
  1298. },
  1299. "tauren": {
  1300. name: "Tauren",
  1301. parents: ["cow"]
  1302. },
  1303. "draconi": {
  1304. name: "Draconi",
  1305. parents: ["alien", "cat", "cyborg"]
  1306. },
  1307. "dire-wolf": {
  1308. name: "Dire Wolf",
  1309. parents: ["wolf"]
  1310. },
  1311. "ferromorph": {
  1312. name: "Ferromorph",
  1313. parents: ["construct"]
  1314. },
  1315. "meowth": {
  1316. name: "Meowth",
  1317. parents: ["cat", "pokemon"]
  1318. },
  1319. "pavodragon": {
  1320. name: "Pavodragon",
  1321. parents: ["dragon"]
  1322. },
  1323. "aaltranae": {
  1324. name: "Aaltranae",
  1325. parents: ["dragon"]
  1326. },
  1327. "cyborg": {
  1328. name: "Cyborg",
  1329. parents: ["machine"]
  1330. },
  1331. "draptor": {
  1332. name: "Draptor",
  1333. parents: ["dragon"]
  1334. },
  1335. "candy": {
  1336. name: "Candy",
  1337. parents: []
  1338. },
  1339. "drenath": {
  1340. name: "Drenath",
  1341. parents: ["dragon", "snake", "rabbit"]
  1342. },
  1343. "coyju": {
  1344. name: "Coyju",
  1345. parents: ["coyote", "kaiju"]
  1346. },
  1347. "kaiju": {
  1348. name: "Kaiju",
  1349. parents: ["monster"]
  1350. },
  1351. "nickit": {
  1352. name: "Nickit",
  1353. parents: ["pokemon", "cat"]
  1354. },
  1355. "lopunny": {
  1356. name: "Lopunny",
  1357. parents: ["pokemon", "rabbit"]
  1358. },
  1359. "korean-jindo-dog": {
  1360. name: "Korean Jindo Dog",
  1361. parents: ["dog"]
  1362. },
  1363. "naga": {
  1364. name: "Naga",
  1365. parents: ["snake", "monster"]
  1366. },
  1367. "undead": {
  1368. name: "Undead",
  1369. parents: ["monster"]
  1370. },
  1371. "whale": {
  1372. name: "Whale",
  1373. parents: ["fish"]
  1374. },
  1375. "gelato-bee": {
  1376. name: "Gelato Bee",
  1377. parents: ["bee"]
  1378. },
  1379. "bee": {
  1380. name: "Bee",
  1381. parents: ["insect"]
  1382. },
  1383. "gardevoir": {
  1384. name: "Gardevoir",
  1385. parents: ["pokemon"]
  1386. },
  1387. "ant": {
  1388. name: "Ant",
  1389. parents: ["insect"]
  1390. },
  1391. "frog": {
  1392. name: "Frog",
  1393. parents: ["amphibian"]
  1394. },
  1395. "amphibian": {
  1396. name: "Amphibian",
  1397. parents: ["animal"]
  1398. },
  1399. "pangolin": {
  1400. name: "Pangolin",
  1401. parents: ["mammal"]
  1402. },
  1403. "uragi'viidorn": {
  1404. name: "Uragi'viidorn",
  1405. parents: ["avian", "bear"]
  1406. },
  1407. "gryphdelphais": {
  1408. name: "Gryphdelphais",
  1409. parents: ["dolphin", "gryphon"]
  1410. },
  1411. "plush": {
  1412. name: "Plush",
  1413. parents: ["construct"]
  1414. },
  1415. "draiger": {
  1416. name: "Draiger",
  1417. parents: ["dragon","tiger"]
  1418. },
  1419. "foxsky": {
  1420. name: "Foxsky",
  1421. parents: ["fox", "husky"]
  1422. },
  1423. "umbreon": {
  1424. name: "Umbreon",
  1425. parents: ["eeveelution"]
  1426. },
  1427. "slime-dragon": {
  1428. name: "Slime Dragon",
  1429. parents: ["dragon"]
  1430. },
  1431. "enderman": {
  1432. name: "Enderman",
  1433. parents: ["monster"]
  1434. },
  1435. "gremlin": {
  1436. name: "Gremlin",
  1437. parents: ["monster"]
  1438. },
  1439. "dragonsune": {
  1440. name: "Dragonsune",
  1441. parents: ["dragon", "kitsune"]
  1442. },
  1443. "ghost": {
  1444. name: "Ghost",
  1445. parents: ["monster"]
  1446. },
  1447. "false-vampire-bat": {
  1448. name: "False Vampire Bat",
  1449. parents: ["bat"]
  1450. },
  1451. "succubus": {
  1452. name: "Succubus",
  1453. parents: ["demon"]
  1454. },
  1455. "mia": {
  1456. name: "Mia",
  1457. parents: ["canine"]
  1458. },
  1459. "rainbow": {
  1460. name: "Rainbow",
  1461. parents: ["monster"]
  1462. },
  1463. "solgaleo": {
  1464. name: "Solgaleo",
  1465. parents: ["pokemon"]
  1466. },
  1467. "lucent-nargacuga": {
  1468. name: "Lucent Nargacuga",
  1469. parents: ["monster-hunter"]
  1470. },
  1471. "monster-hunter": {
  1472. name: "Monster Hunter",
  1473. parents: ["monster"]
  1474. },
  1475. "leviathan": {
  1476. "name": "Leviathan",
  1477. "url": "sea-monster"
  1478. },
  1479. "bull": {
  1480. name: "Bull",
  1481. parents: ["mammal"]
  1482. },
  1483. "tanuki": {
  1484. name: "Tanuki",
  1485. parents: ["monster"]
  1486. },
  1487. "chakat": {
  1488. name: "Chakat",
  1489. parents: ["cat"]
  1490. },
  1491. "hydra": {
  1492. name: "Hydra",
  1493. parents: ["monster"]
  1494. },
  1495. "zigzagoon": {
  1496. name: "Zigzagoon",
  1497. parents: ["raccoon", "pokemon"]
  1498. },
  1499. "vulture": {
  1500. name: "Vulture",
  1501. parents: ["avian"]
  1502. },
  1503. "eastern-dragon": {
  1504. name: "Eastern Dragon",
  1505. parents: ["dragon"]
  1506. },
  1507. "gryffon": {
  1508. name: "Gryffon",
  1509. parents: ["phoenix", "red-panda"]
  1510. },
  1511. "amtsvane": {
  1512. name: "Amtsvane",
  1513. parents: ["reptile"]
  1514. },
  1515. "kigavi": {
  1516. name: "Kigavi",
  1517. parents: ["avian"]
  1518. },
  1519. "turian": {
  1520. name: "Turian",
  1521. parents: ["avian"]
  1522. },
  1523. "zeraora": {
  1524. name: "Zeraora",
  1525. parents: ["pokemon"]
  1526. },
  1527. "sandshrew": {
  1528. name: "Sandshrew",
  1529. parents: ["pokemon", "pangolin"]
  1530. },
  1531. "valais-blacknose-sheep": {
  1532. name: "Valais Blacknose Sheep",
  1533. parents: ["sheep"]
  1534. },
  1535. "novaleit": {
  1536. name: "Novaleit",
  1537. parents: ["mammal"]
  1538. },
  1539. "dunnoh": {
  1540. name: "Dunnoh",
  1541. parents: ["mammal"]
  1542. },
  1543. "lunaral-dragon": {
  1544. name: "Lunaral Dragon",
  1545. parents: ["dragon"]
  1546. },
  1547. "arctic-wolf": {
  1548. name: "Arctic Wolf",
  1549. parents: ["wolf"]
  1550. },
  1551. }
  1552. //species
  1553. function getSpeciesInfo(speciesList) {
  1554. let result = new Set();
  1555. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1556. result.add(entry)
  1557. });
  1558. return Array.from(result);
  1559. };
  1560. function getSpeciesInfoHelper(species) {
  1561. if (!speciesData[species]) {
  1562. console.warn(species + " doesn't exist");
  1563. return [];
  1564. }
  1565. if (speciesData[species].parents) {
  1566. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1567. } else {
  1568. return [species];
  1569. }
  1570. }
  1571. characterMakers.push(() => makeCharacter(
  1572. {
  1573. name: "Fen",
  1574. species: ["crux"],
  1575. description: {
  1576. title: "Bio",
  1577. text: "Very furry. Sheds on everything."
  1578. },
  1579. tags: [
  1580. "anthro",
  1581. "goo"
  1582. ]
  1583. },
  1584. {
  1585. back: {
  1586. height: math.unit(2.2428, "meter"),
  1587. weight: math.unit(124.738, "kg"),
  1588. name: "Back",
  1589. image: {
  1590. source: "./media/characters/fen/back.svg",
  1591. extra: 2024 / 1867,
  1592. bottom: 13 / 2037
  1593. },
  1594. info: {
  1595. description: {
  1596. mode: "append",
  1597. text: "\n\nHe is not currently looking at you."
  1598. }
  1599. }
  1600. },
  1601. full: {
  1602. height: math.unit(1.34, "meter"),
  1603. weight: math.unit(225, "kg"),
  1604. name: "Full",
  1605. image: {
  1606. source: "./media/characters/fen/full.svg"
  1607. },
  1608. info: {
  1609. description: {
  1610. mode: "append",
  1611. text: "\n\nMunch."
  1612. }
  1613. }
  1614. },
  1615. kneeling: {
  1616. height: math.unit(5.4, "feet"),
  1617. weight: math.unit(124.738, "kg"),
  1618. name: "Kneeling",
  1619. image: {
  1620. source: "./media/characters/fen/kneeling.svg",
  1621. extra: 563 / 507
  1622. }
  1623. },
  1624. goo: {
  1625. height: math.unit(2.8, "feet"),
  1626. weight: math.unit(125, "kg"),
  1627. capacity: math.unit(1, "people"),
  1628. name: "Goo",
  1629. image: {
  1630. source: "./media/characters/fen/goo.svg",
  1631. bottom: 116 / 613
  1632. }
  1633. },
  1634. lounging: {
  1635. height: math.unit(6.5, "feet"),
  1636. weight: math.unit(125, "kg"),
  1637. name: "Lounging",
  1638. image: {
  1639. source: "./media/characters/fen/lounging.svg"
  1640. }
  1641. },
  1642. },
  1643. [
  1644. {
  1645. name: "Normal",
  1646. height: math.unit(2.2428, "meter")
  1647. },
  1648. {
  1649. name: "Big",
  1650. height: math.unit(12, "feet")
  1651. },
  1652. {
  1653. name: "Minimacro",
  1654. height: math.unit(40, "feet"),
  1655. default: true,
  1656. info: {
  1657. description: {
  1658. mode: "append",
  1659. text: "\n\nTOO DAMN BIG"
  1660. }
  1661. }
  1662. },
  1663. {
  1664. name: "Macro",
  1665. height: math.unit(100, "feet"),
  1666. info: {
  1667. description: {
  1668. mode: "append",
  1669. text: "\n\nTOO DAMN BIG"
  1670. }
  1671. }
  1672. },
  1673. {
  1674. name: "Macro+",
  1675. height: math.unit(300, "feet")
  1676. },
  1677. {
  1678. name: "Megamacro",
  1679. height: math.unit(2, "miles")
  1680. }
  1681. ]
  1682. ))
  1683. characterMakers.push(() => makeCharacter(
  1684. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1685. {
  1686. front: {
  1687. height: math.unit(183, "cm"),
  1688. weight: math.unit(80, "kg"),
  1689. name: "Front",
  1690. image: {
  1691. source: "./media/characters/sofia-fluttertail/front.svg",
  1692. bottom: 0.01,
  1693. extra: 2154 / 2081
  1694. }
  1695. },
  1696. frontAlt: {
  1697. height: math.unit(183, "cm"),
  1698. weight: math.unit(80, "kg"),
  1699. name: "Front (alt)",
  1700. image: {
  1701. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1702. }
  1703. },
  1704. back: {
  1705. height: math.unit(183, "cm"),
  1706. weight: math.unit(80, "kg"),
  1707. name: "Back",
  1708. image: {
  1709. source: "./media/characters/sofia-fluttertail/back.svg"
  1710. }
  1711. },
  1712. kneeling: {
  1713. height: math.unit(125, "cm"),
  1714. weight: math.unit(80, "kg"),
  1715. name: "Kneeling",
  1716. image: {
  1717. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1718. extra: 1033 / 977,
  1719. bottom: 23.7 / 1057
  1720. }
  1721. },
  1722. maw: {
  1723. height: math.unit(183 / 5, "cm"),
  1724. name: "Maw",
  1725. image: {
  1726. source: "./media/characters/sofia-fluttertail/maw.svg"
  1727. }
  1728. },
  1729. mawcloseup: {
  1730. height: math.unit(183 / 5 * 0.41, "cm"),
  1731. name: "Maw (Closeup)",
  1732. image: {
  1733. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1734. }
  1735. },
  1736. paws: {
  1737. height: math.unit(1.17, "feet"),
  1738. name: "Paws",
  1739. image: {
  1740. source: "./media/characters/sofia-fluttertail/paws.svg",
  1741. extra: 851 / 851,
  1742. bottom: 17 / 868
  1743. }
  1744. },
  1745. },
  1746. [
  1747. {
  1748. name: "Normal",
  1749. height: math.unit(1.83, "meter")
  1750. },
  1751. {
  1752. name: "Size Thief",
  1753. height: math.unit(18, "feet")
  1754. },
  1755. {
  1756. name: "50 Foot Collie",
  1757. height: math.unit(50, "feet")
  1758. },
  1759. {
  1760. name: "Macro",
  1761. height: math.unit(96, "feet"),
  1762. default: true
  1763. },
  1764. {
  1765. name: "Megamerger",
  1766. height: math.unit(650, "feet")
  1767. },
  1768. ]
  1769. ))
  1770. characterMakers.push(() => makeCharacter(
  1771. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1772. {
  1773. front: {
  1774. height: math.unit(7, "feet"),
  1775. weight: math.unit(100, "kg"),
  1776. name: "Front",
  1777. image: {
  1778. source: "./media/characters/march/front.svg",
  1779. extra: 1,
  1780. bottom: 0.015
  1781. }
  1782. },
  1783. foot: {
  1784. height: math.unit(0.9, "feet"),
  1785. name: "Foot",
  1786. image: {
  1787. source: "./media/characters/march/foot.svg"
  1788. }
  1789. },
  1790. },
  1791. [
  1792. {
  1793. name: "Normal",
  1794. height: math.unit(7.9, "feet")
  1795. },
  1796. {
  1797. name: "Macro",
  1798. height: math.unit(220, "meters")
  1799. },
  1800. {
  1801. name: "Megamacro",
  1802. height: math.unit(2.98, "km"),
  1803. default: true
  1804. },
  1805. {
  1806. name: "Gigamacro",
  1807. height: math.unit(15963, "km")
  1808. },
  1809. {
  1810. name: "Teramacro",
  1811. height: math.unit(2980000000, "km")
  1812. },
  1813. {
  1814. name: "Examacro",
  1815. height: math.unit(250, "parsecs")
  1816. },
  1817. ]
  1818. ))
  1819. characterMakers.push(() => makeCharacter(
  1820. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1821. {
  1822. front: {
  1823. height: math.unit(6, "feet"),
  1824. weight: math.unit(60, "kg"),
  1825. name: "Front",
  1826. image: {
  1827. source: "./media/characters/noir/front.svg",
  1828. extra: 1,
  1829. bottom: 0.032
  1830. }
  1831. },
  1832. },
  1833. [
  1834. {
  1835. name: "Normal",
  1836. height: math.unit(6.6, "feet")
  1837. },
  1838. {
  1839. name: "Macro",
  1840. height: math.unit(500, "feet")
  1841. },
  1842. {
  1843. name: "Megamacro",
  1844. height: math.unit(2.5, "km"),
  1845. default: true
  1846. },
  1847. {
  1848. name: "Gigamacro",
  1849. height: math.unit(22500, "km")
  1850. },
  1851. {
  1852. name: "Teramacro",
  1853. height: math.unit(2500000000, "km")
  1854. },
  1855. {
  1856. name: "Examacro",
  1857. height: math.unit(200, "parsecs")
  1858. },
  1859. ]
  1860. ))
  1861. characterMakers.push(() => makeCharacter(
  1862. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1863. {
  1864. front: {
  1865. height: math.unit(7, "feet"),
  1866. weight: math.unit(100, "kg"),
  1867. name: "Front",
  1868. image: {
  1869. source: "./media/characters/okuri/front.svg",
  1870. extra: 1,
  1871. bottom: 0.037
  1872. }
  1873. },
  1874. back: {
  1875. height: math.unit(7, "feet"),
  1876. weight: math.unit(100, "kg"),
  1877. name: "Back",
  1878. image: {
  1879. source: "./media/characters/okuri/back.svg",
  1880. extra: 1,
  1881. bottom: 0.007
  1882. }
  1883. },
  1884. },
  1885. [
  1886. {
  1887. name: "Megamacro",
  1888. height: math.unit(100, "miles"),
  1889. default: true
  1890. },
  1891. ]
  1892. ))
  1893. characterMakers.push(() => makeCharacter(
  1894. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1895. {
  1896. front: {
  1897. height: math.unit(7, "feet"),
  1898. weight: math.unit(100, "kg"),
  1899. name: "Front",
  1900. image: {
  1901. source: "./media/characters/manny/front.svg",
  1902. extra: 1,
  1903. bottom: 0.06
  1904. }
  1905. },
  1906. back: {
  1907. height: math.unit(7, "feet"),
  1908. weight: math.unit(100, "kg"),
  1909. name: "Back",
  1910. image: {
  1911. source: "./media/characters/manny/back.svg",
  1912. extra: 1,
  1913. bottom: 0.014
  1914. }
  1915. },
  1916. },
  1917. [
  1918. {
  1919. name: "Normal",
  1920. height: math.unit(7, "feet"),
  1921. },
  1922. {
  1923. name: "Macro",
  1924. height: math.unit(78, "feet"),
  1925. default: true
  1926. },
  1927. {
  1928. name: "Macro+",
  1929. height: math.unit(300, "meters")
  1930. },
  1931. {
  1932. name: "Macro++",
  1933. height: math.unit(2400, "meters")
  1934. },
  1935. {
  1936. name: "Megamacro",
  1937. height: math.unit(5167, "meters")
  1938. },
  1939. {
  1940. name: "Gigamacro",
  1941. height: math.unit(41769, "miles")
  1942. },
  1943. ]
  1944. ))
  1945. characterMakers.push(() => makeCharacter(
  1946. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1947. {
  1948. front: {
  1949. height: math.unit(7, "feet"),
  1950. weight: math.unit(100, "kg"),
  1951. name: "Front",
  1952. image: {
  1953. source: "./media/characters/adake/front-1.svg"
  1954. }
  1955. },
  1956. frontAlt: {
  1957. height: math.unit(7, "feet"),
  1958. weight: math.unit(100, "kg"),
  1959. name: "Front (Alt)",
  1960. image: {
  1961. source: "./media/characters/adake/front-2.svg",
  1962. extra: 1,
  1963. bottom: 0.01
  1964. }
  1965. },
  1966. back: {
  1967. height: math.unit(7, "feet"),
  1968. weight: math.unit(100, "kg"),
  1969. name: "Back",
  1970. image: {
  1971. source: "./media/characters/adake/back.svg",
  1972. }
  1973. },
  1974. kneel: {
  1975. height: math.unit(5.385, "feet"),
  1976. weight: math.unit(100, "kg"),
  1977. name: "Kneeling",
  1978. image: {
  1979. source: "./media/characters/adake/kneel.svg",
  1980. bottom: 0.052
  1981. }
  1982. },
  1983. },
  1984. [
  1985. {
  1986. name: "Normal",
  1987. height: math.unit(7, "feet"),
  1988. },
  1989. {
  1990. name: "Macro",
  1991. height: math.unit(78, "feet"),
  1992. default: true
  1993. },
  1994. {
  1995. name: "Macro+",
  1996. height: math.unit(300, "meters")
  1997. },
  1998. {
  1999. name: "Macro++",
  2000. height: math.unit(2400, "meters")
  2001. },
  2002. {
  2003. name: "Megamacro",
  2004. height: math.unit(5167, "meters")
  2005. },
  2006. {
  2007. name: "Gigamacro",
  2008. height: math.unit(41769, "miles")
  2009. },
  2010. ]
  2011. ))
  2012. characterMakers.push(() => makeCharacter(
  2013. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2014. {
  2015. front: {
  2016. height: math.unit(1.65, "meters"),
  2017. weight: math.unit(50, "kg"),
  2018. name: "Front",
  2019. image: {
  2020. source: "./media/characters/elijah/front.svg",
  2021. extra: 858 / 830,
  2022. bottom: 95.5 / 953.8559
  2023. }
  2024. },
  2025. back: {
  2026. height: math.unit(1.65, "meters"),
  2027. weight: math.unit(50, "kg"),
  2028. name: "Back",
  2029. image: {
  2030. source: "./media/characters/elijah/back.svg",
  2031. extra: 895 / 850,
  2032. bottom: 5.3 / 897.956
  2033. }
  2034. },
  2035. frontNsfw: {
  2036. height: math.unit(1.65, "meters"),
  2037. weight: math.unit(50, "kg"),
  2038. name: "Front (NSFW)",
  2039. image: {
  2040. source: "./media/characters/elijah/front-nsfw.svg",
  2041. extra: 858 / 830,
  2042. bottom: 95.5 / 953.8559
  2043. }
  2044. },
  2045. backNsfw: {
  2046. height: math.unit(1.65, "meters"),
  2047. weight: math.unit(50, "kg"),
  2048. name: "Back (NSFW)",
  2049. image: {
  2050. source: "./media/characters/elijah/back-nsfw.svg",
  2051. extra: 895 / 850,
  2052. bottom: 5.3 / 897.956
  2053. }
  2054. },
  2055. dick: {
  2056. height: math.unit(1, "feet"),
  2057. name: "Dick",
  2058. image: {
  2059. source: "./media/characters/elijah/dick.svg"
  2060. }
  2061. },
  2062. beakOpen: {
  2063. height: math.unit(1.25, "feet"),
  2064. name: "Beak (Open)",
  2065. image: {
  2066. source: "./media/characters/elijah/beak-open.svg"
  2067. }
  2068. },
  2069. beakShut: {
  2070. height: math.unit(1.25, "feet"),
  2071. name: "Beak (Shut)",
  2072. image: {
  2073. source: "./media/characters/elijah/beak-shut.svg"
  2074. }
  2075. },
  2076. footFlexing: {
  2077. height: math.unit(1.61, "feet"),
  2078. name: "Foot (Flexing)",
  2079. image: {
  2080. source: "./media/characters/elijah/foot-flexing.svg"
  2081. }
  2082. },
  2083. footStepping: {
  2084. height: math.unit(1.44, "feet"),
  2085. name: "Foot (Stepping)",
  2086. image: {
  2087. source: "./media/characters/elijah/foot-stepping.svg"
  2088. }
  2089. },
  2090. plantigradeLeg: {
  2091. height: math.unit(2.34, "feet"),
  2092. name: "Plantigrade Leg",
  2093. image: {
  2094. source: "./media/characters/elijah/plantigrade-leg.svg"
  2095. }
  2096. },
  2097. plantigradeFootLeft: {
  2098. height: math.unit(0.9, "feet"),
  2099. name: "Plantigrade Foot (Left)",
  2100. image: {
  2101. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2102. }
  2103. },
  2104. plantigradeFootRight: {
  2105. height: math.unit(0.9, "feet"),
  2106. name: "Plantigrade Foot (Right)",
  2107. image: {
  2108. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2109. }
  2110. },
  2111. },
  2112. [
  2113. {
  2114. name: "Normal",
  2115. height: math.unit(1.65, "meters")
  2116. },
  2117. {
  2118. name: "Macro",
  2119. height: math.unit(55, "meters"),
  2120. default: true
  2121. },
  2122. {
  2123. name: "Macro+",
  2124. height: math.unit(105, "meters")
  2125. },
  2126. ]
  2127. ))
  2128. characterMakers.push(() => makeCharacter(
  2129. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2130. {
  2131. front: {
  2132. height: math.unit(11, "feet"),
  2133. weight: math.unit(80, "kg"),
  2134. name: "Front",
  2135. image: {
  2136. source: "./media/characters/rai/front.svg",
  2137. extra: 1,
  2138. bottom: 0.03
  2139. }
  2140. },
  2141. side: {
  2142. height: math.unit(11, "feet"),
  2143. weight: math.unit(80, "kg"),
  2144. name: "Side",
  2145. image: {
  2146. source: "./media/characters/rai/side.svg"
  2147. }
  2148. },
  2149. back: {
  2150. height: math.unit(11, "feet"),
  2151. weight: math.unit(80, "lb"),
  2152. name: "Back",
  2153. image: {
  2154. source: "./media/characters/rai/back.svg",
  2155. extra: 1,
  2156. bottom: 0.01
  2157. }
  2158. },
  2159. feral: {
  2160. height: math.unit(11, "feet"),
  2161. weight: math.unit(800, "lb"),
  2162. name: "Feral",
  2163. image: {
  2164. source: "./media/characters/rai/feral.svg",
  2165. extra: 1050 / 659,
  2166. bottom: 0.07
  2167. }
  2168. },
  2169. dragon: {
  2170. height: math.unit(23, "feet"),
  2171. weight: math.unit(50000, "lb"),
  2172. name: "Dragon",
  2173. image: {
  2174. source: "./media/characters/rai/dragon.svg",
  2175. extra: 2498 / 2030,
  2176. bottom: 85.2 / 2584
  2177. }
  2178. },
  2179. maw: {
  2180. height: math.unit(6 / 3.81416, "feet"),
  2181. name: "Maw",
  2182. image: {
  2183. source: "./media/characters/rai/maw.svg"
  2184. }
  2185. },
  2186. },
  2187. [
  2188. {
  2189. name: "Normal",
  2190. height: math.unit(11, "feet")
  2191. },
  2192. {
  2193. name: "Macro",
  2194. height: math.unit(302, "feet"),
  2195. default: true
  2196. },
  2197. ]
  2198. ))
  2199. characterMakers.push(() => makeCharacter(
  2200. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2201. {
  2202. frontDressed: {
  2203. height: math.unit(216, "feet"),
  2204. weight: math.unit(7000000, "lb"),
  2205. name: "Front (Dressed)",
  2206. image: {
  2207. source: "./media/characters/jazzy/front-dressed.svg",
  2208. extra: 2738 / 2651,
  2209. bottom: 41.8 / 2786
  2210. }
  2211. },
  2212. backDressed: {
  2213. height: math.unit(216, "feet"),
  2214. weight: math.unit(7000000, "lb"),
  2215. name: "Back (Dressed)",
  2216. image: {
  2217. source: "./media/characters/jazzy/back-dressed.svg",
  2218. extra: 2775 / 2673,
  2219. bottom: 36.8 / 2817
  2220. }
  2221. },
  2222. front: {
  2223. height: math.unit(216, "feet"),
  2224. weight: math.unit(7000000, "lb"),
  2225. name: "Front",
  2226. image: {
  2227. source: "./media/characters/jazzy/front.svg",
  2228. extra: 2738 / 2651,
  2229. bottom: 41.8 / 2786
  2230. }
  2231. },
  2232. back: {
  2233. height: math.unit(216, "feet"),
  2234. weight: math.unit(7000000, "lb"),
  2235. name: "Back",
  2236. image: {
  2237. source: "./media/characters/jazzy/back.svg",
  2238. extra: 2775 / 2673,
  2239. bottom: 36.8 / 2817
  2240. }
  2241. },
  2242. maw: {
  2243. height: math.unit(20, "feet"),
  2244. name: "Maw",
  2245. image: {
  2246. source: "./media/characters/jazzy/maw.svg"
  2247. }
  2248. },
  2249. paws: {
  2250. height: math.unit(27.5, "feet"),
  2251. name: "Paws",
  2252. image: {
  2253. source: "./media/characters/jazzy/paws.svg"
  2254. }
  2255. },
  2256. eye: {
  2257. height: math.unit(4.4, "feet"),
  2258. name: "Eye",
  2259. image: {
  2260. source: "./media/characters/jazzy/eye.svg"
  2261. }
  2262. },
  2263. droneOffense: {
  2264. height: math.unit(9.5, "inches"),
  2265. name: "Drone (Offense)",
  2266. image: {
  2267. source: "./media/characters/jazzy/drone-offense.svg"
  2268. }
  2269. },
  2270. droneRecon: {
  2271. height: math.unit(9.5, "inches"),
  2272. name: "Drone (Recon)",
  2273. image: {
  2274. source: "./media/characters/jazzy/drone-recon.svg"
  2275. }
  2276. },
  2277. droneDefense: {
  2278. height: math.unit(9.5, "inches"),
  2279. name: "Drone (Defense)",
  2280. image: {
  2281. source: "./media/characters/jazzy/drone-defense.svg"
  2282. }
  2283. },
  2284. },
  2285. [
  2286. {
  2287. name: "Macro",
  2288. height: math.unit(216, "feet"),
  2289. default: true
  2290. },
  2291. ]
  2292. ))
  2293. characterMakers.push(() => makeCharacter(
  2294. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2295. {
  2296. front: {
  2297. height: math.unit(7, "feet"),
  2298. weight: math.unit(80, "kg"),
  2299. name: "Front",
  2300. image: {
  2301. source: "./media/characters/flamm/front.svg",
  2302. extra: 1794 / 1677,
  2303. bottom: 31.7 / 1828.5
  2304. }
  2305. },
  2306. },
  2307. [
  2308. {
  2309. name: "Normal",
  2310. height: math.unit(9.5, "feet")
  2311. },
  2312. {
  2313. name: "Macro",
  2314. height: math.unit(200, "feet"),
  2315. default: true
  2316. },
  2317. ]
  2318. ))
  2319. characterMakers.push(() => makeCharacter(
  2320. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2321. {
  2322. front: {
  2323. height: math.unit(5 + 3/12, "feet"),
  2324. weight: math.unit(60, "kg"),
  2325. name: "Front",
  2326. image: {
  2327. source: "./media/characters/zephiro/front.svg",
  2328. extra: 2309 / 2162,
  2329. bottom: 0.069
  2330. }
  2331. },
  2332. side: {
  2333. height: math.unit(5 + 3/12, "feet"),
  2334. weight: math.unit(60, "kg"),
  2335. name: "Side",
  2336. image: {
  2337. source: "./media/characters/zephiro/side.svg",
  2338. extra: 2403 / 2279,
  2339. bottom: 0.015
  2340. }
  2341. },
  2342. back: {
  2343. height: math.unit(5 + 3/12, "feet"),
  2344. weight: math.unit(60, "kg"),
  2345. name: "Back",
  2346. image: {
  2347. source: "./media/characters/zephiro/back.svg",
  2348. extra: 2373 / 2244,
  2349. bottom: 0.013
  2350. }
  2351. },
  2352. hand: {
  2353. height: math.unit(0.68, "feet"),
  2354. name: "Hand",
  2355. image: {
  2356. source: "./media/characters/zephiro/hand.svg"
  2357. }
  2358. },
  2359. paw: {
  2360. height: math.unit(1, "feet"),
  2361. name: "Paw",
  2362. image: {
  2363. source: "./media/characters/zephiro/paw.svg"
  2364. }
  2365. },
  2366. beans: {
  2367. height: math.unit(0.93, "feet"),
  2368. name: "Beans",
  2369. image: {
  2370. source: "./media/characters/zephiro/beans.svg"
  2371. }
  2372. },
  2373. },
  2374. [
  2375. {
  2376. name: "Micro",
  2377. height: math.unit(3, "inches")
  2378. },
  2379. {
  2380. name: "Normal",
  2381. height: math.unit(5 + 3 / 12, "feet"),
  2382. default: true
  2383. },
  2384. {
  2385. name: "Macro",
  2386. height: math.unit(118, "feet")
  2387. },
  2388. ]
  2389. ))
  2390. characterMakers.push(() => makeCharacter(
  2391. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2392. {
  2393. front: {
  2394. height: math.unit(5, "feet"),
  2395. weight: math.unit(90, "kg"),
  2396. name: "Front",
  2397. image: {
  2398. source: "./media/characters/fory/front.svg",
  2399. extra: 2862 / 2674,
  2400. bottom: 180 / 3043.8
  2401. }
  2402. },
  2403. back: {
  2404. height: math.unit(5, "feet"),
  2405. weight: math.unit(90, "kg"),
  2406. name: "Back",
  2407. image: {
  2408. source: "./media/characters/fory/back.svg",
  2409. extra: 2962 / 2791,
  2410. bottom: 106 / 3071.8
  2411. }
  2412. },
  2413. foot: {
  2414. height: math.unit(2.14, "feet"),
  2415. name: "Foot",
  2416. image: {
  2417. source: "./media/characters/fory/foot.svg"
  2418. }
  2419. },
  2420. },
  2421. [
  2422. {
  2423. name: "Normal",
  2424. height: math.unit(5, "feet")
  2425. },
  2426. {
  2427. name: "Macro",
  2428. height: math.unit(50, "feet"),
  2429. default: true
  2430. },
  2431. {
  2432. name: "Megamacro",
  2433. height: math.unit(10, "miles")
  2434. },
  2435. {
  2436. name: "Gigamacro",
  2437. height: math.unit(5, "earths")
  2438. },
  2439. ]
  2440. ))
  2441. characterMakers.push(() => makeCharacter(
  2442. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2443. {
  2444. front: {
  2445. height: math.unit(7, "feet"),
  2446. weight: math.unit(90, "kg"),
  2447. name: "Front",
  2448. image: {
  2449. source: "./media/characters/kurrikage/front.svg",
  2450. extra: 1,
  2451. bottom: 0.035
  2452. }
  2453. },
  2454. back: {
  2455. height: math.unit(7, "feet"),
  2456. weight: math.unit(90, "lb"),
  2457. name: "Back",
  2458. image: {
  2459. source: "./media/characters/kurrikage/back.svg"
  2460. }
  2461. },
  2462. paw: {
  2463. height: math.unit(1.5, "feet"),
  2464. name: "Paw",
  2465. image: {
  2466. source: "./media/characters/kurrikage/paw.svg"
  2467. }
  2468. },
  2469. staff: {
  2470. height: math.unit(6.7, "feet"),
  2471. name: "Staff",
  2472. image: {
  2473. source: "./media/characters/kurrikage/staff.svg"
  2474. }
  2475. },
  2476. peek: {
  2477. height: math.unit(1.05, "feet"),
  2478. name: "Peeking",
  2479. image: {
  2480. source: "./media/characters/kurrikage/peek.svg",
  2481. bottom: 0.08
  2482. }
  2483. },
  2484. },
  2485. [
  2486. {
  2487. name: "Normal",
  2488. height: math.unit(12, "feet"),
  2489. default: true
  2490. },
  2491. {
  2492. name: "Big",
  2493. height: math.unit(20, "feet")
  2494. },
  2495. {
  2496. name: "Macro",
  2497. height: math.unit(500, "feet")
  2498. },
  2499. {
  2500. name: "Megamacro",
  2501. height: math.unit(20, "miles")
  2502. },
  2503. ]
  2504. ))
  2505. characterMakers.push(() => makeCharacter(
  2506. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2507. {
  2508. front: {
  2509. height: math.unit(6, "feet"),
  2510. weight: math.unit(75, "kg"),
  2511. name: "Front",
  2512. image: {
  2513. source: "./media/characters/shingo/front.svg",
  2514. extra: 706/681,
  2515. bottom: 11/717
  2516. }
  2517. },
  2518. frontAlt: {
  2519. height: math.unit(6, "feet"),
  2520. weight: math.unit(75, "kg"),
  2521. name: "Front (Alt)",
  2522. image: {
  2523. source: "./media/characters/shingo/front-alt.svg",
  2524. extra: 3511 / 3338,
  2525. bottom: 0.005
  2526. }
  2527. },
  2528. paw: {
  2529. height: math.unit(1, "feet"),
  2530. name: "Paw",
  2531. image: {
  2532. source: "./media/characters/shingo/paw.svg"
  2533. }
  2534. },
  2535. },
  2536. [
  2537. {
  2538. name: "Micro",
  2539. height: math.unit(4, "inches")
  2540. },
  2541. {
  2542. name: "Normal",
  2543. height: math.unit(6, "feet"),
  2544. default: true
  2545. },
  2546. {
  2547. name: "Macro",
  2548. height: math.unit(108, "feet")
  2549. },
  2550. {
  2551. name: "Macro+",
  2552. height: math.unit(1500, "feet")
  2553. },
  2554. ]
  2555. ))
  2556. characterMakers.push(() => makeCharacter(
  2557. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2558. {
  2559. side: {
  2560. height: math.unit(6, "feet"),
  2561. weight: math.unit(75, "kg"),
  2562. name: "Side",
  2563. image: {
  2564. source: "./media/characters/aigey/side.svg"
  2565. }
  2566. },
  2567. },
  2568. [
  2569. {
  2570. name: "Macro",
  2571. height: math.unit(200, "feet"),
  2572. default: true
  2573. },
  2574. {
  2575. name: "Megamacro",
  2576. height: math.unit(100, "miles")
  2577. },
  2578. ]
  2579. )
  2580. )
  2581. characterMakers.push(() => makeCharacter(
  2582. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2583. {
  2584. front: {
  2585. height: math.unit(5 + 5 / 12, "feet"),
  2586. weight: math.unit(75, "kg"),
  2587. name: "Front",
  2588. image: {
  2589. source: "./media/characters/natasha/front.svg",
  2590. extra: 859 / 824,
  2591. bottom: 23 / 879.6
  2592. }
  2593. },
  2594. frontNsfw: {
  2595. height: math.unit(5 + 5 / 12, "feet"),
  2596. weight: math.unit(75, "kg"),
  2597. name: "Front (NSFW)",
  2598. image: {
  2599. source: "./media/characters/natasha/front-nsfw.svg",
  2600. extra: 859 / 824,
  2601. bottom: 23 / 879.6
  2602. }
  2603. },
  2604. frontErect: {
  2605. height: math.unit(5 + 5 / 12, "feet"),
  2606. weight: math.unit(75, "kg"),
  2607. name: "Front (Erect)",
  2608. image: {
  2609. source: "./media/characters/natasha/front-erect.svg",
  2610. extra: 859 / 824,
  2611. bottom: 23 / 879.6
  2612. }
  2613. },
  2614. back: {
  2615. height: math.unit(5 + 5 / 12, "feet"),
  2616. weight: math.unit(75, "kg"),
  2617. name: "Back",
  2618. image: {
  2619. source: "./media/characters/natasha/back.svg",
  2620. extra: 887.9 / 852.6,
  2621. bottom: 9.7 / 896.4
  2622. }
  2623. },
  2624. backAlt: {
  2625. height: math.unit(5 + 5 / 12, "feet"),
  2626. weight: math.unit(75, "kg"),
  2627. name: "Back (Alt)",
  2628. image: {
  2629. source: "./media/characters/natasha/back-alt.svg",
  2630. extra: 1236.7 / 1192,
  2631. bottom: 22.3 / 1258.2
  2632. }
  2633. },
  2634. dick: {
  2635. height: math.unit(1.772, "feet"),
  2636. name: "Dick",
  2637. image: {
  2638. source: "./media/characters/natasha/dick.svg"
  2639. }
  2640. },
  2641. paw: {
  2642. height: math.unit(0.250, "meters"),
  2643. name: "Paw",
  2644. image: {
  2645. source: "./media/characters/natasha/paw.svg"
  2646. }
  2647. },
  2648. },
  2649. [
  2650. {
  2651. name: "Normal",
  2652. height: math.unit(5 + 5 / 12, "feet")
  2653. },
  2654. {
  2655. name: "Large",
  2656. height: math.unit(12, "feet")
  2657. },
  2658. {
  2659. name: "Macro",
  2660. height: math.unit(100, "feet"),
  2661. default: true
  2662. },
  2663. {
  2664. name: "Macro+",
  2665. height: math.unit(260, "feet")
  2666. },
  2667. {
  2668. name: "Macro++",
  2669. height: math.unit(1, "mile")
  2670. },
  2671. ]
  2672. ))
  2673. characterMakers.push(() => makeCharacter(
  2674. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2675. {
  2676. front: {
  2677. height: math.unit(6, "feet"),
  2678. weight: math.unit(75, "kg"),
  2679. name: "Front",
  2680. image: {
  2681. source: "./media/characters/malik/front.svg"
  2682. }
  2683. },
  2684. side: {
  2685. height: math.unit(6, "feet"),
  2686. weight: math.unit(75, "kg"),
  2687. name: "Side",
  2688. image: {
  2689. source: "./media/characters/malik/side.svg",
  2690. extra: 1.1539
  2691. }
  2692. },
  2693. back: {
  2694. height: math.unit(6, "feet"),
  2695. weight: math.unit(75, "kg"),
  2696. name: "Back",
  2697. image: {
  2698. source: "./media/characters/malik/back.svg"
  2699. }
  2700. },
  2701. },
  2702. [
  2703. {
  2704. name: "Macro",
  2705. height: math.unit(156, "feet"),
  2706. default: true
  2707. },
  2708. {
  2709. name: "Macro+",
  2710. height: math.unit(1188, "feet")
  2711. },
  2712. ]
  2713. ))
  2714. characterMakers.push(() => makeCharacter(
  2715. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2716. {
  2717. front: {
  2718. height: math.unit(6, "feet"),
  2719. weight: math.unit(75, "kg"),
  2720. name: "Front",
  2721. image: {
  2722. source: "./media/characters/sefer/front.svg",
  2723. extra: 848 / 659,
  2724. bottom: 28.3 / 876.442
  2725. }
  2726. },
  2727. back: {
  2728. height: math.unit(6, "feet"),
  2729. weight: math.unit(75, "kg"),
  2730. name: "Back",
  2731. image: {
  2732. source: "./media/characters/sefer/back.svg",
  2733. extra: 864 / 695,
  2734. bottom: 10 / 871
  2735. }
  2736. },
  2737. frontDressed: {
  2738. height: math.unit(6, "feet"),
  2739. weight: math.unit(75, "kg"),
  2740. name: "Front (Dressed)",
  2741. image: {
  2742. source: "./media/characters/sefer/front-dressed.svg",
  2743. extra: 839 / 653,
  2744. bottom: 37.6 / 878
  2745. }
  2746. },
  2747. },
  2748. [
  2749. {
  2750. name: "Normal",
  2751. height: math.unit(6, "feet"),
  2752. default: true
  2753. },
  2754. ]
  2755. ))
  2756. characterMakers.push(() => makeCharacter(
  2757. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2758. {
  2759. body: {
  2760. height: math.unit(2.2428, "meter"),
  2761. weight: math.unit(124.738, "kg"),
  2762. name: "Body",
  2763. image: {
  2764. extra: 1225 / 1050,
  2765. source: "./media/characters/north/front.svg"
  2766. }
  2767. }
  2768. },
  2769. [
  2770. {
  2771. name: "Micro",
  2772. height: math.unit(4, "inches")
  2773. },
  2774. {
  2775. name: "Macro",
  2776. height: math.unit(63, "meters")
  2777. },
  2778. {
  2779. name: "Megamacro",
  2780. height: math.unit(101, "miles"),
  2781. default: true
  2782. }
  2783. ]
  2784. ))
  2785. characterMakers.push(() => makeCharacter(
  2786. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2787. {
  2788. angled: {
  2789. height: math.unit(4, "meter"),
  2790. weight: math.unit(150, "kg"),
  2791. name: "Angled",
  2792. image: {
  2793. source: "./media/characters/talan/angled-sfw.svg",
  2794. bottom: 29 / 3734
  2795. }
  2796. },
  2797. angledNsfw: {
  2798. height: math.unit(4, "meter"),
  2799. weight: math.unit(150, "kg"),
  2800. name: "Angled (NSFW)",
  2801. image: {
  2802. source: "./media/characters/talan/angled-nsfw.svg",
  2803. bottom: 29 / 3734
  2804. }
  2805. },
  2806. frontNsfw: {
  2807. height: math.unit(4, "meter"),
  2808. weight: math.unit(150, "kg"),
  2809. name: "Front (NSFW)",
  2810. image: {
  2811. source: "./media/characters/talan/front-nsfw.svg",
  2812. bottom: 29 / 3734
  2813. }
  2814. },
  2815. sideNsfw: {
  2816. height: math.unit(4, "meter"),
  2817. weight: math.unit(150, "kg"),
  2818. name: "Side (NSFW)",
  2819. image: {
  2820. source: "./media/characters/talan/side-nsfw.svg",
  2821. bottom: 29 / 3734
  2822. }
  2823. },
  2824. back: {
  2825. height: math.unit(4, "meter"),
  2826. weight: math.unit(150, "kg"),
  2827. name: "Back",
  2828. image: {
  2829. source: "./media/characters/talan/back.svg"
  2830. }
  2831. },
  2832. dickBottom: {
  2833. height: math.unit(0.621, "meter"),
  2834. name: "Dick (Bottom)",
  2835. image: {
  2836. source: "./media/characters/talan/dick-bottom.svg"
  2837. }
  2838. },
  2839. dickTop: {
  2840. height: math.unit(0.621, "meter"),
  2841. name: "Dick (Top)",
  2842. image: {
  2843. source: "./media/characters/talan/dick-top.svg"
  2844. }
  2845. },
  2846. dickSide: {
  2847. height: math.unit(0.305, "meter"),
  2848. name: "Dick (Side)",
  2849. image: {
  2850. source: "./media/characters/talan/dick-side.svg"
  2851. }
  2852. },
  2853. dickFront: {
  2854. height: math.unit(0.305, "meter"),
  2855. name: "Dick (Front)",
  2856. image: {
  2857. source: "./media/characters/talan/dick-front.svg"
  2858. }
  2859. },
  2860. },
  2861. [
  2862. {
  2863. name: "Normal",
  2864. height: math.unit(4, "meters")
  2865. },
  2866. {
  2867. name: "Macro",
  2868. height: math.unit(100, "meters")
  2869. },
  2870. {
  2871. name: "Megamacro",
  2872. height: math.unit(2, "miles"),
  2873. default: true
  2874. },
  2875. {
  2876. name: "Gigamacro",
  2877. height: math.unit(5000, "miles")
  2878. },
  2879. {
  2880. name: "Teramacro",
  2881. height: math.unit(100, "parsecs")
  2882. }
  2883. ]
  2884. ))
  2885. characterMakers.push(() => makeCharacter(
  2886. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2887. {
  2888. front: {
  2889. height: math.unit(2, "meter"),
  2890. weight: math.unit(90, "kg"),
  2891. name: "Front",
  2892. image: {
  2893. source: "./media/characters/gael'rathus/front.svg"
  2894. }
  2895. },
  2896. frontAlt: {
  2897. height: math.unit(2, "meter"),
  2898. weight: math.unit(90, "kg"),
  2899. name: "Front (alt)",
  2900. image: {
  2901. source: "./media/characters/gael'rathus/front-alt.svg"
  2902. }
  2903. },
  2904. frontAlt2: {
  2905. height: math.unit(2, "meter"),
  2906. weight: math.unit(90, "kg"),
  2907. name: "Front (alt 2)",
  2908. image: {
  2909. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2910. }
  2911. }
  2912. },
  2913. [
  2914. {
  2915. name: "Normal",
  2916. height: math.unit(9, "feet"),
  2917. default: true
  2918. },
  2919. {
  2920. name: "Large",
  2921. height: math.unit(25, "feet")
  2922. },
  2923. {
  2924. name: "Macro",
  2925. height: math.unit(0.25, "miles")
  2926. },
  2927. {
  2928. name: "Megamacro",
  2929. height: math.unit(10, "miles")
  2930. }
  2931. ]
  2932. ))
  2933. characterMakers.push(() => makeCharacter(
  2934. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2935. {
  2936. side: {
  2937. height: math.unit(2, "meter"),
  2938. weight: math.unit(140, "kg"),
  2939. name: "Side",
  2940. image: {
  2941. source: "./media/characters/sosha/side.svg",
  2942. bottom: 0.042
  2943. }
  2944. },
  2945. },
  2946. [
  2947. {
  2948. name: "Normal",
  2949. height: math.unit(12, "feet"),
  2950. default: true
  2951. }
  2952. ]
  2953. ))
  2954. characterMakers.push(() => makeCharacter(
  2955. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2956. {
  2957. side: {
  2958. height: math.unit(5 + 5 / 12, "feet"),
  2959. weight: math.unit(170, "kg"),
  2960. name: "Side",
  2961. image: {
  2962. source: "./media/characters/runnola/side.svg",
  2963. extra: 741 / 448,
  2964. bottom: 0.05
  2965. }
  2966. },
  2967. },
  2968. [
  2969. {
  2970. name: "Small",
  2971. height: math.unit(3, "feet")
  2972. },
  2973. {
  2974. name: "Normal",
  2975. height: math.unit(5 + 5 / 12, "feet"),
  2976. default: true
  2977. },
  2978. {
  2979. name: "Big",
  2980. height: math.unit(10, "feet")
  2981. },
  2982. ]
  2983. ))
  2984. characterMakers.push(() => makeCharacter(
  2985. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2986. {
  2987. front: {
  2988. height: math.unit(2, "meter"),
  2989. weight: math.unit(50, "kg"),
  2990. name: "Front",
  2991. image: {
  2992. source: "./media/characters/kurribird/front.svg",
  2993. bottom: 0.015
  2994. }
  2995. },
  2996. frontAlt: {
  2997. height: math.unit(1.5, "meter"),
  2998. weight: math.unit(50, "kg"),
  2999. name: "Front (Alt)",
  3000. image: {
  3001. source: "./media/characters/kurribird/front-alt.svg",
  3002. extra: 1.45
  3003. }
  3004. },
  3005. },
  3006. [
  3007. {
  3008. name: "Normal",
  3009. height: math.unit(7, "feet")
  3010. },
  3011. {
  3012. name: "Big",
  3013. height: math.unit(12, "feet"),
  3014. default: true
  3015. },
  3016. {
  3017. name: "Macro",
  3018. height: math.unit(1500, "feet")
  3019. },
  3020. {
  3021. name: "Megamacro",
  3022. height: math.unit(2, "miles")
  3023. }
  3024. ]
  3025. ))
  3026. characterMakers.push(() => makeCharacter(
  3027. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3028. {
  3029. front: {
  3030. height: math.unit(2, "meter"),
  3031. weight: math.unit(80, "kg"),
  3032. name: "Front",
  3033. image: {
  3034. source: "./media/characters/elbial/front.svg",
  3035. extra: 1643 / 1556,
  3036. bottom: 60.2 / 1696
  3037. }
  3038. },
  3039. side: {
  3040. height: math.unit(2, "meter"),
  3041. weight: math.unit(80, "kg"),
  3042. name: "Side",
  3043. image: {
  3044. source: "./media/characters/elbial/side.svg",
  3045. extra: 1630 / 1565,
  3046. bottom: 71.5 / 1697
  3047. }
  3048. },
  3049. back: {
  3050. height: math.unit(2, "meter"),
  3051. weight: math.unit(80, "kg"),
  3052. name: "Back",
  3053. image: {
  3054. source: "./media/characters/elbial/back.svg",
  3055. extra: 1668 / 1595,
  3056. bottom: 5.6 / 1672
  3057. }
  3058. },
  3059. frontDressed: {
  3060. height: math.unit(2, "meter"),
  3061. weight: math.unit(80, "kg"),
  3062. name: "Front (Dressed)",
  3063. image: {
  3064. source: "./media/characters/elbial/front-dressed.svg",
  3065. extra: 1653 / 1584,
  3066. bottom: 57 / 1708
  3067. }
  3068. },
  3069. genitals: {
  3070. height: math.unit(2 / 3.367, "meter"),
  3071. name: "Genitals",
  3072. image: {
  3073. source: "./media/characters/elbial/genitals.svg"
  3074. }
  3075. },
  3076. },
  3077. [
  3078. {
  3079. name: "Large",
  3080. height: math.unit(100, "feet")
  3081. },
  3082. {
  3083. name: "Macro",
  3084. height: math.unit(500, "feet"),
  3085. default: true
  3086. },
  3087. {
  3088. name: "Megamacro",
  3089. height: math.unit(10, "miles")
  3090. },
  3091. {
  3092. name: "Gigamacro",
  3093. height: math.unit(25000, "miles")
  3094. },
  3095. {
  3096. name: "Full-Size",
  3097. height: math.unit(8000000, "gigaparsecs")
  3098. }
  3099. ]
  3100. ))
  3101. characterMakers.push(() => makeCharacter(
  3102. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3103. {
  3104. front: {
  3105. height: math.unit(2, "meter"),
  3106. weight: math.unit(60, "kg"),
  3107. name: "Front",
  3108. image: {
  3109. source: "./media/characters/noah/front.svg"
  3110. }
  3111. },
  3112. talons: {
  3113. height: math.unit(0.315, "meter"),
  3114. name: "Talons",
  3115. image: {
  3116. source: "./media/characters/noah/talons.svg"
  3117. }
  3118. }
  3119. },
  3120. [
  3121. {
  3122. name: "Large",
  3123. height: math.unit(50, "feet")
  3124. },
  3125. {
  3126. name: "Macro",
  3127. height: math.unit(750, "feet"),
  3128. default: true
  3129. },
  3130. {
  3131. name: "Megamacro",
  3132. height: math.unit(50, "miles")
  3133. },
  3134. {
  3135. name: "Gigamacro",
  3136. height: math.unit(100000, "miles")
  3137. },
  3138. {
  3139. name: "Full-Size",
  3140. height: math.unit(3000000000, "miles")
  3141. }
  3142. ]
  3143. ))
  3144. characterMakers.push(() => makeCharacter(
  3145. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3146. {
  3147. front: {
  3148. height: math.unit(2, "meter"),
  3149. weight: math.unit(80, "kg"),
  3150. name: "Front",
  3151. image: {
  3152. source: "./media/characters/natalya/front.svg"
  3153. }
  3154. },
  3155. back: {
  3156. height: math.unit(2, "meter"),
  3157. weight: math.unit(80, "kg"),
  3158. name: "Back",
  3159. image: {
  3160. source: "./media/characters/natalya/back.svg"
  3161. }
  3162. }
  3163. },
  3164. [
  3165. {
  3166. name: "Normal",
  3167. height: math.unit(150, "feet"),
  3168. default: true
  3169. },
  3170. {
  3171. name: "Megamacro",
  3172. height: math.unit(5, "miles")
  3173. },
  3174. {
  3175. name: "Full-Size",
  3176. height: math.unit(600, "kiloparsecs")
  3177. }
  3178. ]
  3179. ))
  3180. characterMakers.push(() => makeCharacter(
  3181. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3182. {
  3183. front: {
  3184. height: math.unit(2, "meter"),
  3185. weight: math.unit(50, "kg"),
  3186. name: "Front",
  3187. image: {
  3188. source: "./media/characters/erestrebah/front.svg",
  3189. extra: 208 / 193,
  3190. bottom: 0.055
  3191. }
  3192. },
  3193. back: {
  3194. height: math.unit(2, "meter"),
  3195. weight: math.unit(50, "kg"),
  3196. name: "Back",
  3197. image: {
  3198. source: "./media/characters/erestrebah/back.svg",
  3199. extra: 1.3
  3200. }
  3201. }
  3202. },
  3203. [
  3204. {
  3205. name: "Normal",
  3206. height: math.unit(10, "feet")
  3207. },
  3208. {
  3209. name: "Large",
  3210. height: math.unit(50, "feet"),
  3211. default: true
  3212. },
  3213. {
  3214. name: "Macro",
  3215. height: math.unit(300, "feet")
  3216. },
  3217. {
  3218. name: "Macro+",
  3219. height: math.unit(750, "feet")
  3220. },
  3221. {
  3222. name: "Megamacro",
  3223. height: math.unit(3, "miles")
  3224. }
  3225. ]
  3226. ))
  3227. characterMakers.push(() => makeCharacter(
  3228. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3229. {
  3230. front: {
  3231. height: math.unit(2, "meter"),
  3232. weight: math.unit(80, "kg"),
  3233. name: "Front",
  3234. image: {
  3235. source: "./media/characters/jennifer/front.svg",
  3236. bottom: 0.11,
  3237. extra: 1.16
  3238. }
  3239. },
  3240. frontAlt: {
  3241. height: math.unit(2, "meter"),
  3242. weight: math.unit(80, "kg"),
  3243. name: "Front (Alt)",
  3244. image: {
  3245. source: "./media/characters/jennifer/front-alt.svg"
  3246. }
  3247. }
  3248. },
  3249. [
  3250. {
  3251. name: "Canon Height",
  3252. height: math.unit(120, "feet"),
  3253. default: true
  3254. },
  3255. {
  3256. name: "Macro+",
  3257. height: math.unit(300, "feet")
  3258. },
  3259. {
  3260. name: "Megamacro",
  3261. height: math.unit(20000, "feet")
  3262. }
  3263. ]
  3264. ))
  3265. characterMakers.push(() => makeCharacter(
  3266. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3267. {
  3268. front: {
  3269. height: math.unit(2, "meter"),
  3270. weight: math.unit(50, "kg"),
  3271. name: "Front",
  3272. image: {
  3273. source: "./media/characters/kalista/front.svg",
  3274. extra: 1947 / 1700,
  3275. bottom: 76.6 / 1412.98
  3276. }
  3277. },
  3278. back: {
  3279. height: math.unit(2, "meter"),
  3280. weight: math.unit(50, "kg"),
  3281. name: "Back",
  3282. image: {
  3283. source: "./media/characters/kalista/back.svg",
  3284. extra: 1366 / 1156,
  3285. bottom: 33.9 / 1362.78
  3286. }
  3287. }
  3288. },
  3289. [
  3290. {
  3291. name: "Uncomfortably Small",
  3292. height: math.unit(10, "feet")
  3293. },
  3294. {
  3295. name: "Small",
  3296. height: math.unit(30, "feet")
  3297. },
  3298. {
  3299. name: "Macro",
  3300. height: math.unit(100, "feet"),
  3301. default: true
  3302. },
  3303. {
  3304. name: "Macro+",
  3305. height: math.unit(2000, "feet")
  3306. },
  3307. {
  3308. name: "True Form",
  3309. height: math.unit(8924, "miles")
  3310. }
  3311. ]
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3315. {
  3316. front: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(120, "kg"),
  3319. name: "Front",
  3320. image: {
  3321. source: "./media/characters/ggv/front.svg"
  3322. }
  3323. },
  3324. side: {
  3325. height: math.unit(2, "meter"),
  3326. weight: math.unit(120, "kg"),
  3327. name: "Side",
  3328. image: {
  3329. source: "./media/characters/ggv/side.svg"
  3330. }
  3331. }
  3332. },
  3333. [
  3334. {
  3335. name: "Extremely Puny",
  3336. height: math.unit(9 + 5 / 12, "feet")
  3337. },
  3338. {
  3339. name: "Horribly Small",
  3340. height: math.unit(47.7, "miles"),
  3341. default: true
  3342. },
  3343. {
  3344. name: "Reasonably Sized",
  3345. height: math.unit(25000, "parsecs")
  3346. },
  3347. {
  3348. name: "Slightly Uncompressed",
  3349. height: math.unit(7.77e31, "parsecs")
  3350. },
  3351. {
  3352. name: "Omniversal",
  3353. height: math.unit(1e300, "meters")
  3354. },
  3355. ]
  3356. ))
  3357. characterMakers.push(() => makeCharacter(
  3358. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3359. {
  3360. front: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(75, "lb"),
  3363. name: "Front",
  3364. image: {
  3365. source: "./media/characters/napalm/front.svg"
  3366. }
  3367. },
  3368. back: {
  3369. height: math.unit(2, "meter"),
  3370. weight: math.unit(75, "lb"),
  3371. name: "Back",
  3372. image: {
  3373. source: "./media/characters/napalm/back.svg"
  3374. }
  3375. }
  3376. },
  3377. [
  3378. {
  3379. name: "Standard",
  3380. height: math.unit(55, "feet"),
  3381. default: true
  3382. }
  3383. ]
  3384. ))
  3385. characterMakers.push(() => makeCharacter(
  3386. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3387. {
  3388. front: {
  3389. height: math.unit(7 + 5 / 6, "feet"),
  3390. weight: math.unit(325, "lb"),
  3391. name: "Front",
  3392. image: {
  3393. source: "./media/characters/asana/front.svg",
  3394. extra: 1133 / 1060,
  3395. bottom: 15.2 / 1148.6
  3396. }
  3397. },
  3398. back: {
  3399. height: math.unit(7 + 5 / 6, "feet"),
  3400. weight: math.unit(325, "lb"),
  3401. name: "Back",
  3402. image: {
  3403. source: "./media/characters/asana/back.svg",
  3404. extra: 1114 / 1043,
  3405. bottom: 5 / 1120
  3406. }
  3407. },
  3408. dressedDark: {
  3409. height: math.unit(7 + 5 / 6, "feet"),
  3410. weight: math.unit(325, "lb"),
  3411. name: "Dressed (Dark)",
  3412. image: {
  3413. source: "./media/characters/asana/dressed-dark.svg",
  3414. extra: 1133 / 1060,
  3415. bottom: 15.2 / 1148.6
  3416. }
  3417. },
  3418. dressedLight: {
  3419. height: math.unit(7 + 5 / 6, "feet"),
  3420. weight: math.unit(325, "lb"),
  3421. name: "Dressed (Light)",
  3422. image: {
  3423. source: "./media/characters/asana/dressed-light.svg",
  3424. extra: 1133 / 1060,
  3425. bottom: 15.2 / 1148.6
  3426. }
  3427. },
  3428. },
  3429. [
  3430. {
  3431. name: "Standard",
  3432. height: math.unit(7 + 5 / 6, "feet"),
  3433. default: true
  3434. },
  3435. {
  3436. name: "Large",
  3437. height: math.unit(10, "meters")
  3438. },
  3439. {
  3440. name: "Macro",
  3441. height: math.unit(2500, "meters")
  3442. },
  3443. {
  3444. name: "Megamacro",
  3445. height: math.unit(5e6, "meters")
  3446. },
  3447. {
  3448. name: "Examacro",
  3449. height: math.unit(5e12, "lightyears")
  3450. },
  3451. {
  3452. name: "Max Size",
  3453. height: math.unit(1e31, "lightyears")
  3454. }
  3455. ]
  3456. ))
  3457. characterMakers.push(() => makeCharacter(
  3458. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3459. {
  3460. front: {
  3461. height: math.unit(2, "meter"),
  3462. weight: math.unit(60, "kg"),
  3463. name: "Front",
  3464. image: {
  3465. source: "./media/characters/ebony/front.svg",
  3466. bottom: 0.03,
  3467. extra: 1045 / 810 + 0.03
  3468. }
  3469. },
  3470. side: {
  3471. height: math.unit(2, "meter"),
  3472. weight: math.unit(60, "kg"),
  3473. name: "Side",
  3474. image: {
  3475. source: "./media/characters/ebony/side.svg",
  3476. bottom: 0.03,
  3477. extra: 1045 / 810 + 0.03
  3478. }
  3479. },
  3480. back: {
  3481. height: math.unit(2, "meter"),
  3482. weight: math.unit(60, "kg"),
  3483. name: "Back",
  3484. image: {
  3485. source: "./media/characters/ebony/back.svg",
  3486. bottom: 0.01,
  3487. extra: 1045 / 810 + 0.01
  3488. }
  3489. },
  3490. },
  3491. [
  3492. // TODO check why I did this lol
  3493. {
  3494. name: "Standard",
  3495. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3496. default: true
  3497. },
  3498. {
  3499. name: "Macro",
  3500. height: math.unit(200, "feet")
  3501. },
  3502. {
  3503. name: "Gigamacro",
  3504. height: math.unit(13000, "km")
  3505. }
  3506. ]
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3510. {
  3511. front: {
  3512. height: math.unit(6, "feet"),
  3513. weight: math.unit(175, "lb"),
  3514. name: "Front",
  3515. image: {
  3516. source: "./media/characters/mountain/front.svg",
  3517. extra: 972 / 955,
  3518. bottom: 64 / 1036.6
  3519. }
  3520. },
  3521. back: {
  3522. height: math.unit(6, "feet"),
  3523. weight: math.unit(175, "lb"),
  3524. name: "Back",
  3525. image: {
  3526. source: "./media/characters/mountain/back.svg",
  3527. extra: 970 / 950,
  3528. bottom: 28.25 / 999
  3529. }
  3530. },
  3531. },
  3532. [
  3533. {
  3534. name: "Large",
  3535. height: math.unit(20, "meters")
  3536. },
  3537. {
  3538. name: "Macro",
  3539. height: math.unit(300, "meters")
  3540. },
  3541. {
  3542. name: "Gigamacro",
  3543. height: math.unit(10000, "km"),
  3544. default: true
  3545. },
  3546. {
  3547. name: "Examacro",
  3548. height: math.unit(10e9, "lightyears")
  3549. }
  3550. ]
  3551. ))
  3552. characterMakers.push(() => makeCharacter(
  3553. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3554. {
  3555. front: {
  3556. height: math.unit(8, "feet"),
  3557. weight: math.unit(500, "lb"),
  3558. name: "Front",
  3559. image: {
  3560. source: "./media/characters/rick/front.svg"
  3561. }
  3562. }
  3563. },
  3564. [
  3565. {
  3566. name: "Normal",
  3567. height: math.unit(8, "feet"),
  3568. default: true
  3569. },
  3570. {
  3571. name: "Macro",
  3572. height: math.unit(5, "km")
  3573. }
  3574. ]
  3575. ))
  3576. characterMakers.push(() => makeCharacter(
  3577. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3578. {
  3579. front: {
  3580. height: math.unit(8, "feet"),
  3581. weight: math.unit(120, "lb"),
  3582. name: "Front",
  3583. image: {
  3584. source: "./media/characters/ona/front.svg"
  3585. }
  3586. },
  3587. frontAlt: {
  3588. height: math.unit(8, "feet"),
  3589. weight: math.unit(120, "lb"),
  3590. name: "Front (Alt)",
  3591. image: {
  3592. source: "./media/characters/ona/front-alt.svg"
  3593. }
  3594. },
  3595. back: {
  3596. height: math.unit(8, "feet"),
  3597. weight: math.unit(120, "lb"),
  3598. name: "Back",
  3599. image: {
  3600. source: "./media/characters/ona/back.svg"
  3601. }
  3602. },
  3603. foot: {
  3604. height: math.unit(1.1, "feet"),
  3605. name: "Foot",
  3606. image: {
  3607. source: "./media/characters/ona/foot.svg"
  3608. }
  3609. }
  3610. },
  3611. [
  3612. {
  3613. name: "Megamacro",
  3614. height: math.unit(70, "km"),
  3615. default: true
  3616. },
  3617. {
  3618. name: "Gigamacro",
  3619. height: math.unit(681818, "miles")
  3620. },
  3621. {
  3622. name: "Examacro",
  3623. height: math.unit(3800000, "lightyears")
  3624. },
  3625. ]
  3626. ))
  3627. characterMakers.push(() => makeCharacter(
  3628. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3629. {
  3630. front: {
  3631. height: math.unit(12, "feet"),
  3632. weight: math.unit(3000, "lb"),
  3633. name: "Front",
  3634. image: {
  3635. source: "./media/characters/mech/front.svg",
  3636. extra: 2900 / 2770,
  3637. bottom: 110 / 3010
  3638. }
  3639. },
  3640. back: {
  3641. height: math.unit(12, "feet"),
  3642. weight: math.unit(3000, "lb"),
  3643. name: "Back",
  3644. image: {
  3645. source: "./media/characters/mech/back.svg",
  3646. extra: 3011 / 2890,
  3647. bottom: 94 / 3105
  3648. }
  3649. },
  3650. maw: {
  3651. height: math.unit(3.07, "feet"),
  3652. name: "Maw",
  3653. image: {
  3654. source: "./media/characters/mech/maw.svg"
  3655. }
  3656. },
  3657. head: {
  3658. height: math.unit(2.82, "feet"),
  3659. name: "Head",
  3660. image: {
  3661. source: "./media/characters/mech/head.svg"
  3662. }
  3663. },
  3664. dick: {
  3665. height: math.unit(1.43, "feet"),
  3666. name: "Dick",
  3667. image: {
  3668. source: "./media/characters/mech/dick.svg"
  3669. }
  3670. },
  3671. },
  3672. [
  3673. {
  3674. name: "Normal",
  3675. height: math.unit(12, "feet")
  3676. },
  3677. {
  3678. name: "Macro",
  3679. height: math.unit(300, "feet"),
  3680. default: true
  3681. },
  3682. {
  3683. name: "Macro+",
  3684. height: math.unit(1500, "feet")
  3685. },
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3690. {
  3691. front: {
  3692. height: math.unit(1.3, "meter"),
  3693. weight: math.unit(30, "kg"),
  3694. name: "Front",
  3695. image: {
  3696. source: "./media/characters/gregory/front.svg",
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(1.3, "meter"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Macro",
  3708. height: math.unit(20, "meter")
  3709. }
  3710. ]
  3711. ))
  3712. characterMakers.push(() => makeCharacter(
  3713. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3714. {
  3715. front: {
  3716. height: math.unit(2.8, "meter"),
  3717. weight: math.unit(200, "kg"),
  3718. name: "Front",
  3719. image: {
  3720. source: "./media/characters/elory/front.svg",
  3721. }
  3722. }
  3723. },
  3724. [
  3725. {
  3726. name: "Normal",
  3727. height: math.unit(2.8, "meter"),
  3728. default: true
  3729. },
  3730. {
  3731. name: "Macro",
  3732. height: math.unit(38, "meter")
  3733. }
  3734. ]
  3735. ))
  3736. characterMakers.push(() => makeCharacter(
  3737. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3738. {
  3739. front: {
  3740. height: math.unit(470, "feet"),
  3741. weight: math.unit(924, "tons"),
  3742. name: "Front",
  3743. image: {
  3744. source: "./media/characters/angelpatamon/front.svg",
  3745. }
  3746. }
  3747. },
  3748. [
  3749. {
  3750. name: "Normal",
  3751. height: math.unit(470, "feet"),
  3752. default: true
  3753. },
  3754. {
  3755. name: "Deity Size I",
  3756. height: math.unit(28651.2, "km")
  3757. },
  3758. {
  3759. name: "Deity Size II",
  3760. height: math.unit(171907.2, "km")
  3761. }
  3762. ]
  3763. ))
  3764. characterMakers.push(() => makeCharacter(
  3765. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3766. {
  3767. side: {
  3768. height: math.unit(7.2, "meter"),
  3769. weight: math.unit(8.2, "tons"),
  3770. name: "Side",
  3771. image: {
  3772. source: "./media/characters/cryae/side.svg",
  3773. extra: 3500 / 1500
  3774. }
  3775. }
  3776. },
  3777. [
  3778. {
  3779. name: "Normal",
  3780. height: math.unit(7.2, "meter"),
  3781. default: true
  3782. }
  3783. ]
  3784. ))
  3785. characterMakers.push(() => makeCharacter(
  3786. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3787. {
  3788. front: {
  3789. height: math.unit(6, "feet"),
  3790. weight: math.unit(175, "lb"),
  3791. name: "Front",
  3792. image: {
  3793. source: "./media/characters/xera/front.svg",
  3794. extra: 2377 / 1972,
  3795. bottom: 75.5 / 2452
  3796. }
  3797. },
  3798. side: {
  3799. height: math.unit(6, "feet"),
  3800. weight: math.unit(175, "lb"),
  3801. name: "Side",
  3802. image: {
  3803. source: "./media/characters/xera/side.svg",
  3804. extra: 2345 / 2019,
  3805. bottom: 39.7 / 2384
  3806. }
  3807. },
  3808. back: {
  3809. height: math.unit(6, "feet"),
  3810. weight: math.unit(175, "lb"),
  3811. name: "Back",
  3812. image: {
  3813. source: "./media/characters/xera/back.svg",
  3814. extra: 2095 / 1984,
  3815. bottom: 67 / 2166
  3816. }
  3817. },
  3818. },
  3819. [
  3820. {
  3821. name: "Small",
  3822. height: math.unit(10, "feet")
  3823. },
  3824. {
  3825. name: "Macro",
  3826. height: math.unit(500, "meters"),
  3827. default: true
  3828. },
  3829. {
  3830. name: "Macro+",
  3831. height: math.unit(10, "km")
  3832. },
  3833. {
  3834. name: "Gigamacro",
  3835. height: math.unit(25000, "km")
  3836. },
  3837. {
  3838. name: "Teramacro",
  3839. height: math.unit(3e6, "km")
  3840. }
  3841. ]
  3842. ))
  3843. characterMakers.push(() => makeCharacter(
  3844. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3845. {
  3846. front: {
  3847. height: math.unit(6, "feet"),
  3848. weight: math.unit(175, "lb"),
  3849. name: "Front",
  3850. image: {
  3851. source: "./media/characters/nebula/front.svg",
  3852. extra: 2566 / 2362,
  3853. bottom: 81 / 2644
  3854. }
  3855. }
  3856. },
  3857. [
  3858. {
  3859. name: "Small",
  3860. height: math.unit(4.5, "meters")
  3861. },
  3862. {
  3863. name: "Macro",
  3864. height: math.unit(1500, "meters"),
  3865. default: true
  3866. },
  3867. {
  3868. name: "Megamacro",
  3869. height: math.unit(150, "km")
  3870. },
  3871. {
  3872. name: "Gigamacro",
  3873. height: math.unit(27000, "km")
  3874. }
  3875. ]
  3876. ))
  3877. characterMakers.push(() => makeCharacter(
  3878. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3879. {
  3880. front: {
  3881. height: math.unit(6, "feet"),
  3882. weight: math.unit(225, "lb"),
  3883. name: "Front",
  3884. image: {
  3885. source: "./media/characters/abysgar/front.svg"
  3886. }
  3887. }
  3888. },
  3889. [
  3890. {
  3891. name: "Small",
  3892. height: math.unit(4.5, "meters")
  3893. },
  3894. {
  3895. name: "Macro",
  3896. height: math.unit(1250, "meters"),
  3897. default: true
  3898. },
  3899. {
  3900. name: "Megamacro",
  3901. height: math.unit(125, "km")
  3902. },
  3903. {
  3904. name: "Gigamacro",
  3905. height: math.unit(26000, "km")
  3906. }
  3907. ]
  3908. ))
  3909. characterMakers.push(() => makeCharacter(
  3910. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3911. {
  3912. front: {
  3913. height: math.unit(6, "feet"),
  3914. weight: math.unit(180, "lb"),
  3915. name: "Front",
  3916. image: {
  3917. source: "./media/characters/yakuz/front.svg"
  3918. }
  3919. }
  3920. },
  3921. [
  3922. {
  3923. name: "Small",
  3924. height: math.unit(5, "meters")
  3925. },
  3926. {
  3927. name: "Macro",
  3928. height: math.unit(1500, "meters"),
  3929. default: true
  3930. },
  3931. {
  3932. name: "Megamacro",
  3933. height: math.unit(200, "km")
  3934. },
  3935. {
  3936. name: "Gigamacro",
  3937. height: math.unit(100000, "km")
  3938. }
  3939. ]
  3940. ))
  3941. characterMakers.push(() => makeCharacter(
  3942. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3943. {
  3944. front: {
  3945. height: math.unit(6, "feet"),
  3946. weight: math.unit(175, "lb"),
  3947. name: "Front",
  3948. image: {
  3949. source: "./media/characters/mirova/front.svg",
  3950. extra: 3334 / 3071,
  3951. bottom: 42 / 3375.6
  3952. }
  3953. }
  3954. },
  3955. [
  3956. {
  3957. name: "Small",
  3958. height: math.unit(5, "meters")
  3959. },
  3960. {
  3961. name: "Macro",
  3962. height: math.unit(900, "meters"),
  3963. default: true
  3964. },
  3965. {
  3966. name: "Megamacro",
  3967. height: math.unit(135, "km")
  3968. },
  3969. {
  3970. name: "Gigamacro",
  3971. height: math.unit(20000, "km")
  3972. }
  3973. ]
  3974. ))
  3975. characterMakers.push(() => makeCharacter(
  3976. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3977. {
  3978. side: {
  3979. height: math.unit(28.35, "feet"),
  3980. weight: math.unit(99.75, "tons"),
  3981. name: "Side",
  3982. image: {
  3983. source: "./media/characters/asana-mech/side.svg",
  3984. extra: 923 / 699,
  3985. bottom: 50 / 975
  3986. }
  3987. },
  3988. chaingun: {
  3989. height: math.unit(7, "feet"),
  3990. weight: math.unit(2400, "lb"),
  3991. name: "Chaingun",
  3992. image: {
  3993. source: "./media/characters/asana-mech/chaingun.svg"
  3994. }
  3995. },
  3996. laser: {
  3997. height: math.unit(7.12, "feet"),
  3998. weight: math.unit(2000, "lb"),
  3999. name: "Laser",
  4000. image: {
  4001. source: "./media/characters/asana-mech/laser.svg"
  4002. }
  4003. },
  4004. },
  4005. [
  4006. {
  4007. name: "Normal",
  4008. height: math.unit(28.35, "feet"),
  4009. default: true
  4010. },
  4011. {
  4012. name: "Macro",
  4013. height: math.unit(2500, "feet")
  4014. },
  4015. {
  4016. name: "Megamacro",
  4017. height: math.unit(25, "miles")
  4018. },
  4019. {
  4020. name: "Examacro",
  4021. height: math.unit(6e8, "lightyears")
  4022. },
  4023. ]
  4024. ))
  4025. characterMakers.push(() => makeCharacter(
  4026. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4027. {
  4028. front: {
  4029. height: math.unit(5, "meters"),
  4030. weight: math.unit(1000, "kg"),
  4031. name: "Front",
  4032. image: {
  4033. source: "./media/characters/asche/front.svg",
  4034. extra: 1258 / 1190,
  4035. bottom: 47 / 1305
  4036. }
  4037. },
  4038. frontUnderwear: {
  4039. height: math.unit(5, "meters"),
  4040. weight: math.unit(1000, "kg"),
  4041. name: "Front (Underwear)",
  4042. image: {
  4043. source: "./media/characters/asche/front-underwear.svg",
  4044. extra: 1258 / 1190,
  4045. bottom: 47 / 1305
  4046. }
  4047. },
  4048. frontDressed: {
  4049. height: math.unit(5, "meters"),
  4050. weight: math.unit(1000, "kg"),
  4051. name: "Front (Dressed)",
  4052. image: {
  4053. source: "./media/characters/asche/front-dressed.svg",
  4054. extra: 1258 / 1190,
  4055. bottom: 47 / 1305
  4056. }
  4057. },
  4058. frontArmor: {
  4059. height: math.unit(5, "meters"),
  4060. weight: math.unit(1000, "kg"),
  4061. name: "Front (Armored)",
  4062. image: {
  4063. source: "./media/characters/asche/front-armored.svg",
  4064. extra: 1374 / 1308,
  4065. bottom: 23 / 1397
  4066. }
  4067. },
  4068. mp724: {
  4069. height: math.unit(0.96, "meters"),
  4070. weight: math.unit(38, "kg"),
  4071. name: "H&K MP724",
  4072. image: {
  4073. source: "./media/characters/asche/h&k-mp724.svg"
  4074. }
  4075. },
  4076. side: {
  4077. height: math.unit(5, "meters"),
  4078. weight: math.unit(1000, "kg"),
  4079. name: "Side",
  4080. image: {
  4081. source: "./media/characters/asche/side.svg",
  4082. extra: 1717 / 1609,
  4083. bottom: 0.005
  4084. }
  4085. },
  4086. back: {
  4087. height: math.unit(5, "meters"),
  4088. weight: math.unit(1000, "kg"),
  4089. name: "Back",
  4090. image: {
  4091. source: "./media/characters/asche/back.svg",
  4092. extra: 1570 / 1501
  4093. }
  4094. },
  4095. },
  4096. [
  4097. {
  4098. name: "DEFCON 5",
  4099. height: math.unit(5, "meters")
  4100. },
  4101. {
  4102. name: "DEFCON 4",
  4103. height: math.unit(500, "meters"),
  4104. default: true
  4105. },
  4106. {
  4107. name: "DEFCON 3",
  4108. height: math.unit(5, "km")
  4109. },
  4110. {
  4111. name: "DEFCON 2",
  4112. height: math.unit(500, "km")
  4113. },
  4114. {
  4115. name: "DEFCON 1",
  4116. height: math.unit(500000, "km")
  4117. },
  4118. {
  4119. name: "DEFCON 0",
  4120. height: math.unit(3, "gigaparsecs")
  4121. },
  4122. ]
  4123. ))
  4124. characterMakers.push(() => makeCharacter(
  4125. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4126. {
  4127. front: {
  4128. height: math.unit(2, "meters"),
  4129. weight: math.unit(76, "kg"),
  4130. name: "Front",
  4131. image: {
  4132. source: "./media/characters/gale/front.svg"
  4133. }
  4134. },
  4135. frontAlt1: {
  4136. height: math.unit(2, "meters"),
  4137. weight: math.unit(76, "kg"),
  4138. name: "Front (Alt 1)",
  4139. image: {
  4140. source: "./media/characters/gale/front-alt-1.svg"
  4141. }
  4142. },
  4143. frontAlt2: {
  4144. height: math.unit(2, "meters"),
  4145. weight: math.unit(76, "kg"),
  4146. name: "Front (Alt 2)",
  4147. image: {
  4148. source: "./media/characters/gale/front-alt-2.svg"
  4149. }
  4150. },
  4151. },
  4152. [
  4153. {
  4154. name: "Normal",
  4155. height: math.unit(7, "feet")
  4156. },
  4157. {
  4158. name: "Macro",
  4159. height: math.unit(150, "feet"),
  4160. default: true
  4161. },
  4162. {
  4163. name: "Macro+",
  4164. height: math.unit(300, "feet")
  4165. },
  4166. ]
  4167. ))
  4168. characterMakers.push(() => makeCharacter(
  4169. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4170. {
  4171. front: {
  4172. height: math.unit(2, "meters"),
  4173. weight: math.unit(76, "kg"),
  4174. name: "Front",
  4175. image: {
  4176. source: "./media/characters/draylen/front.svg"
  4177. }
  4178. }
  4179. },
  4180. [
  4181. {
  4182. name: "Macro",
  4183. height: math.unit(150, "feet"),
  4184. default: true
  4185. }
  4186. ]
  4187. ))
  4188. characterMakers.push(() => makeCharacter(
  4189. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4190. {
  4191. front: {
  4192. height: math.unit(7 + 9 / 12, "feet"),
  4193. weight: math.unit(379, "lbs"),
  4194. name: "Front",
  4195. image: {
  4196. source: "./media/characters/chez/front.svg"
  4197. }
  4198. },
  4199. side: {
  4200. height: math.unit(7 + 9 / 12, "feet"),
  4201. weight: math.unit(379, "lbs"),
  4202. name: "Side",
  4203. image: {
  4204. source: "./media/characters/chez/side.svg"
  4205. }
  4206. }
  4207. },
  4208. [
  4209. {
  4210. name: "Normal",
  4211. height: math.unit(7 + 9 / 12, "feet"),
  4212. default: true
  4213. },
  4214. {
  4215. name: "God King",
  4216. height: math.unit(9750000, "meters")
  4217. }
  4218. ]
  4219. ))
  4220. characterMakers.push(() => makeCharacter(
  4221. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4222. {
  4223. front: {
  4224. height: math.unit(6, "feet"),
  4225. weight: math.unit(275, "lbs"),
  4226. name: "Front",
  4227. image: {
  4228. source: "./media/characters/kaylum/front.svg",
  4229. bottom: 0.01,
  4230. extra: 1166 / 1031
  4231. }
  4232. },
  4233. frontWingless: {
  4234. height: math.unit(6, "feet"),
  4235. weight: math.unit(275, "lbs"),
  4236. name: "Front (Wingless)",
  4237. image: {
  4238. source: "./media/characters/kaylum/front-wingless.svg",
  4239. bottom: 0.01,
  4240. extra: 1117 / 1031
  4241. }
  4242. }
  4243. },
  4244. [
  4245. {
  4246. name: "Normal",
  4247. height: math.unit(3.05, "meters")
  4248. },
  4249. {
  4250. name: "Master",
  4251. height: math.unit(5.5, "meters")
  4252. },
  4253. {
  4254. name: "Rampage",
  4255. height: math.unit(19, "meters")
  4256. },
  4257. {
  4258. name: "Macro Lite",
  4259. height: math.unit(37, "meters")
  4260. },
  4261. {
  4262. name: "Hyper Predator",
  4263. height: math.unit(61, "meters")
  4264. },
  4265. {
  4266. name: "Macro",
  4267. height: math.unit(138, "meters"),
  4268. default: true
  4269. }
  4270. ]
  4271. ))
  4272. characterMakers.push(() => makeCharacter(
  4273. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4274. {
  4275. front: {
  4276. height: math.unit(6, "feet"),
  4277. weight: math.unit(150, "lbs"),
  4278. name: "Front",
  4279. image: {
  4280. source: "./media/characters/geta/front.svg"
  4281. }
  4282. }
  4283. },
  4284. [
  4285. {
  4286. name: "Micro",
  4287. height: math.unit(3, "inches"),
  4288. default: true
  4289. },
  4290. {
  4291. name: "Normal",
  4292. height: math.unit(5 + 5 / 12, "feet")
  4293. }
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4298. {
  4299. front: {
  4300. height: math.unit(6, "feet"),
  4301. weight: math.unit(300, "lbs"),
  4302. name: "Front",
  4303. image: {
  4304. source: "./media/characters/tyrnn/front.svg"
  4305. }
  4306. }
  4307. },
  4308. [
  4309. {
  4310. name: "Main Height",
  4311. height: math.unit(355, "feet"),
  4312. default: true
  4313. },
  4314. {
  4315. name: "Fave. Height",
  4316. height: math.unit(2400, "feet")
  4317. }
  4318. ]
  4319. ))
  4320. characterMakers.push(() => makeCharacter(
  4321. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4322. {
  4323. front: {
  4324. height: math.unit(6, "feet"),
  4325. weight: math.unit(300, "lbs"),
  4326. name: "Front",
  4327. image: {
  4328. source: "./media/characters/appledectomy/front.svg"
  4329. }
  4330. }
  4331. },
  4332. [
  4333. {
  4334. name: "Macro",
  4335. height: math.unit(2500, "feet")
  4336. },
  4337. {
  4338. name: "Megamacro",
  4339. height: math.unit(50, "miles"),
  4340. default: true
  4341. },
  4342. {
  4343. name: "Gigamacro",
  4344. height: math.unit(5000, "miles")
  4345. },
  4346. {
  4347. name: "Teramacro",
  4348. height: math.unit(250000, "miles")
  4349. },
  4350. ]
  4351. ))
  4352. characterMakers.push(() => makeCharacter(
  4353. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4354. {
  4355. front: {
  4356. height: math.unit(6, "feet"),
  4357. weight: math.unit(200, "lbs"),
  4358. name: "Front",
  4359. image: {
  4360. source: "./media/characters/vulpes/front.svg",
  4361. extra: 573 / 543,
  4362. bottom: 0.033
  4363. }
  4364. },
  4365. side: {
  4366. height: math.unit(6, "feet"),
  4367. weight: math.unit(200, "lbs"),
  4368. name: "Side",
  4369. image: {
  4370. source: "./media/characters/vulpes/side.svg",
  4371. extra: 577 / 549,
  4372. bottom: 11 / 588
  4373. }
  4374. },
  4375. back: {
  4376. height: math.unit(6, "feet"),
  4377. weight: math.unit(200, "lbs"),
  4378. name: "Back",
  4379. image: {
  4380. source: "./media/characters/vulpes/back.svg",
  4381. extra: 573 / 549,
  4382. bottom: 20 / 593
  4383. }
  4384. },
  4385. feet: {
  4386. height: math.unit(1.276, "feet"),
  4387. name: "Feet",
  4388. image: {
  4389. source: "./media/characters/vulpes/feet.svg"
  4390. }
  4391. },
  4392. maw: {
  4393. height: math.unit(1.18, "feet"),
  4394. name: "Maw",
  4395. image: {
  4396. source: "./media/characters/vulpes/maw.svg"
  4397. }
  4398. },
  4399. },
  4400. [
  4401. {
  4402. name: "Micro",
  4403. height: math.unit(2, "inches")
  4404. },
  4405. {
  4406. name: "Normal",
  4407. height: math.unit(6.3, "feet")
  4408. },
  4409. {
  4410. name: "Macro",
  4411. height: math.unit(850, "feet")
  4412. },
  4413. {
  4414. name: "Megamacro",
  4415. height: math.unit(7500, "feet"),
  4416. default: true
  4417. },
  4418. {
  4419. name: "Gigamacro",
  4420. height: math.unit(570000, "miles")
  4421. }
  4422. ]
  4423. ))
  4424. characterMakers.push(() => makeCharacter(
  4425. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4426. {
  4427. front: {
  4428. height: math.unit(6, "feet"),
  4429. weight: math.unit(210, "lbs"),
  4430. name: "Front",
  4431. image: {
  4432. source: "./media/characters/rain-fallen/front.svg"
  4433. }
  4434. },
  4435. side: {
  4436. height: math.unit(6, "feet"),
  4437. weight: math.unit(210, "lbs"),
  4438. name: "Side",
  4439. image: {
  4440. source: "./media/characters/rain-fallen/side.svg"
  4441. }
  4442. },
  4443. back: {
  4444. height: math.unit(6, "feet"),
  4445. weight: math.unit(210, "lbs"),
  4446. name: "Back",
  4447. image: {
  4448. source: "./media/characters/rain-fallen/back.svg"
  4449. }
  4450. },
  4451. feral: {
  4452. height: math.unit(9, "feet"),
  4453. weight: math.unit(700, "lbs"),
  4454. name: "Feral",
  4455. image: {
  4456. source: "./media/characters/rain-fallen/feral.svg"
  4457. }
  4458. },
  4459. },
  4460. [
  4461. {
  4462. name: "Meddling with Mortals",
  4463. height: math.unit(8 + 8/12, "feet")
  4464. },
  4465. {
  4466. name: "Normal",
  4467. height: math.unit(5, "meter")
  4468. },
  4469. {
  4470. name: "Macro",
  4471. height: math.unit(150, "meter"),
  4472. default: true
  4473. },
  4474. {
  4475. name: "Megamacro",
  4476. height: math.unit(278e6, "meter")
  4477. },
  4478. {
  4479. name: "Gigamacro",
  4480. height: math.unit(2e9, "meter")
  4481. },
  4482. {
  4483. name: "Teramacro",
  4484. height: math.unit(8e12, "meter")
  4485. },
  4486. {
  4487. name: "Devourer",
  4488. height: math.unit(14, "zettameters")
  4489. },
  4490. {
  4491. name: "Scarlet King",
  4492. height: math.unit(18, "yottameters")
  4493. },
  4494. {
  4495. name: "Void",
  4496. height: math.unit(1e88, "yottameters")
  4497. }
  4498. ]
  4499. ))
  4500. characterMakers.push(() => makeCharacter(
  4501. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4502. {
  4503. standing: {
  4504. height: math.unit(6, "feet"),
  4505. weight: math.unit(180, "lbs"),
  4506. name: "Standing",
  4507. image: {
  4508. source: "./media/characters/zaakira/standing.svg"
  4509. }
  4510. },
  4511. laying: {
  4512. height: math.unit(3, "feet"),
  4513. weight: math.unit(180, "lbs"),
  4514. name: "Laying",
  4515. image: {
  4516. source: "./media/characters/zaakira/laying.svg"
  4517. }
  4518. },
  4519. },
  4520. [
  4521. {
  4522. name: "Normal",
  4523. height: math.unit(12, "feet")
  4524. },
  4525. {
  4526. name: "Macro",
  4527. height: math.unit(279, "feet"),
  4528. default: true
  4529. }
  4530. ]
  4531. ))
  4532. characterMakers.push(() => makeCharacter(
  4533. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4534. {
  4535. femSfw: {
  4536. height: math.unit(8, "feet"),
  4537. weight: math.unit(350, "lb"),
  4538. name: "Fem",
  4539. image: {
  4540. source: "./media/characters/sigvald/fem-sfw.svg",
  4541. extra: 182 / 164,
  4542. bottom: 8.7 / 190.5
  4543. }
  4544. },
  4545. femNsfw: {
  4546. height: math.unit(8, "feet"),
  4547. weight: math.unit(350, "lb"),
  4548. name: "Fem (NSFW)",
  4549. image: {
  4550. source: "./media/characters/sigvald/fem-nsfw.svg",
  4551. extra: 182 / 164,
  4552. bottom: 8.7 / 190.5
  4553. }
  4554. },
  4555. maleNsfw: {
  4556. height: math.unit(8, "feet"),
  4557. weight: math.unit(350, "lb"),
  4558. name: "Male (NSFW)",
  4559. image: {
  4560. source: "./media/characters/sigvald/male-nsfw.svg",
  4561. extra: 182 / 164,
  4562. bottom: 8.7 / 190.5
  4563. }
  4564. },
  4565. hermNsfw: {
  4566. height: math.unit(8, "feet"),
  4567. weight: math.unit(350, "lb"),
  4568. name: "Herm (NSFW)",
  4569. image: {
  4570. source: "./media/characters/sigvald/herm-nsfw.svg",
  4571. extra: 182 / 164,
  4572. bottom: 8.7 / 190.5
  4573. }
  4574. },
  4575. dick: {
  4576. height: math.unit(2.36, "feet"),
  4577. name: "Dick",
  4578. image: {
  4579. source: "./media/characters/sigvald/dick.svg"
  4580. }
  4581. },
  4582. eye: {
  4583. height: math.unit(0.31, "feet"),
  4584. name: "Eye",
  4585. image: {
  4586. source: "./media/characters/sigvald/eye.svg"
  4587. }
  4588. },
  4589. mouth: {
  4590. height: math.unit(0.92, "feet"),
  4591. name: "Mouth",
  4592. image: {
  4593. source: "./media/characters/sigvald/mouth.svg"
  4594. }
  4595. },
  4596. paws: {
  4597. height: math.unit(2.2, "feet"),
  4598. name: "Paws",
  4599. image: {
  4600. source: "./media/characters/sigvald/paws.svg"
  4601. }
  4602. }
  4603. },
  4604. [
  4605. {
  4606. name: "Normal",
  4607. height: math.unit(8, "feet")
  4608. },
  4609. {
  4610. name: "Large",
  4611. height: math.unit(12, "feet")
  4612. },
  4613. {
  4614. name: "Larger",
  4615. height: math.unit(20, "feet")
  4616. },
  4617. {
  4618. name: "Macro",
  4619. height: math.unit(150, "feet")
  4620. },
  4621. {
  4622. name: "Macro+",
  4623. height: math.unit(200, "feet"),
  4624. default: true
  4625. },
  4626. ]
  4627. ))
  4628. characterMakers.push(() => makeCharacter(
  4629. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4630. {
  4631. side: {
  4632. height: math.unit(12, "feet"),
  4633. weight: math.unit(2000, "kg"),
  4634. name: "Side",
  4635. image: {
  4636. source: "./media/characters/scott/side.svg",
  4637. extra: 754 / 724,
  4638. bottom: 0.069
  4639. }
  4640. },
  4641. upright: {
  4642. height: math.unit(12, "feet"),
  4643. weight: math.unit(2000, "kg"),
  4644. name: "Upright",
  4645. image: {
  4646. source: "./media/characters/scott/upright.svg",
  4647. extra: 3881 / 3722,
  4648. bottom: 0.05
  4649. }
  4650. },
  4651. },
  4652. [
  4653. {
  4654. name: "Normal",
  4655. height: math.unit(12, "feet"),
  4656. default: true
  4657. },
  4658. ]
  4659. ))
  4660. characterMakers.push(() => makeCharacter(
  4661. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4662. {
  4663. side: {
  4664. height: math.unit(8, "meters"),
  4665. weight: math.unit(84755, "lbs"),
  4666. name: "Side",
  4667. image: {
  4668. source: "./media/characters/tobias/side.svg",
  4669. extra: 1474 / 1096,
  4670. bottom: 38.9 / 1513.1235
  4671. }
  4672. },
  4673. },
  4674. [
  4675. {
  4676. name: "Normal",
  4677. height: math.unit(8, "meters"),
  4678. default: true
  4679. },
  4680. ]
  4681. ))
  4682. characterMakers.push(() => makeCharacter(
  4683. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4684. {
  4685. front: {
  4686. height: math.unit(5.5, "feet"),
  4687. weight: math.unit(400, "lbs"),
  4688. name: "Front",
  4689. image: {
  4690. source: "./media/characters/kieran/front.svg",
  4691. extra: 2694 / 2364,
  4692. bottom: 217 / 2908
  4693. }
  4694. },
  4695. side: {
  4696. height: math.unit(5.5, "feet"),
  4697. weight: math.unit(400, "lbs"),
  4698. name: "Side",
  4699. image: {
  4700. source: "./media/characters/kieran/side.svg",
  4701. extra: 875 / 777,
  4702. bottom: 84.6 / 959
  4703. }
  4704. },
  4705. },
  4706. [
  4707. {
  4708. name: "Normal",
  4709. height: math.unit(5.5, "feet"),
  4710. default: true
  4711. },
  4712. ]
  4713. ))
  4714. characterMakers.push(() => makeCharacter(
  4715. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4716. {
  4717. side: {
  4718. height: math.unit(2, "meters"),
  4719. weight: math.unit(70, "kg"),
  4720. name: "Side",
  4721. image: {
  4722. source: "./media/characters/sanya/side.svg",
  4723. bottom: 0.02,
  4724. extra: 1.02
  4725. }
  4726. },
  4727. },
  4728. [
  4729. {
  4730. name: "Small",
  4731. height: math.unit(2, "meters")
  4732. },
  4733. {
  4734. name: "Normal",
  4735. height: math.unit(3, "meters")
  4736. },
  4737. {
  4738. name: "Macro",
  4739. height: math.unit(16, "meters"),
  4740. default: true
  4741. },
  4742. ]
  4743. ))
  4744. characterMakers.push(() => makeCharacter(
  4745. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4746. {
  4747. front: {
  4748. height: math.unit(2, "meters"),
  4749. weight: math.unit(120, "kg"),
  4750. name: "Front",
  4751. image: {
  4752. source: "./media/characters/miranda/front.svg",
  4753. extra: 195 / 185,
  4754. bottom: 10.9 / 206.5
  4755. }
  4756. },
  4757. back: {
  4758. height: math.unit(2, "meters"),
  4759. weight: math.unit(120, "kg"),
  4760. name: "Back",
  4761. image: {
  4762. source: "./media/characters/miranda/back.svg",
  4763. extra: 201 / 193,
  4764. bottom: 2.3 / 203.7
  4765. }
  4766. },
  4767. },
  4768. [
  4769. {
  4770. name: "Normal",
  4771. height: math.unit(10, "feet"),
  4772. default: true
  4773. }
  4774. ]
  4775. ))
  4776. characterMakers.push(() => makeCharacter(
  4777. { name: "James", species: ["deer"], tags: ["anthro"] },
  4778. {
  4779. side: {
  4780. height: math.unit(2, "meters"),
  4781. weight: math.unit(100, "kg"),
  4782. name: "Front",
  4783. image: {
  4784. source: "./media/characters/james/front.svg",
  4785. extra: 10 / 8.5
  4786. }
  4787. },
  4788. },
  4789. [
  4790. {
  4791. name: "Normal",
  4792. height: math.unit(8.5, "feet"),
  4793. default: true
  4794. }
  4795. ]
  4796. ))
  4797. characterMakers.push(() => makeCharacter(
  4798. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4799. {
  4800. side: {
  4801. height: math.unit(9.5, "feet"),
  4802. weight: math.unit(2500, "lbs"),
  4803. name: "Side",
  4804. image: {
  4805. source: "./media/characters/heather/side.svg"
  4806. }
  4807. },
  4808. },
  4809. [
  4810. {
  4811. name: "Normal",
  4812. height: math.unit(9.5, "feet"),
  4813. default: true
  4814. }
  4815. ]
  4816. ))
  4817. characterMakers.push(() => makeCharacter(
  4818. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4819. {
  4820. side: {
  4821. height: math.unit(6.5, "feet"),
  4822. weight: math.unit(400, "lbs"),
  4823. name: "Side",
  4824. image: {
  4825. source: "./media/characters/lukas/side.svg",
  4826. extra: 7.25 / 6.5
  4827. }
  4828. },
  4829. },
  4830. [
  4831. {
  4832. name: "Normal",
  4833. height: math.unit(6.5, "feet"),
  4834. default: true
  4835. }
  4836. ]
  4837. ))
  4838. characterMakers.push(() => makeCharacter(
  4839. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4840. {
  4841. side: {
  4842. height: math.unit(5, "feet"),
  4843. weight: math.unit(3000, "lbs"),
  4844. name: "Side",
  4845. image: {
  4846. source: "./media/characters/louise/side.svg"
  4847. }
  4848. },
  4849. },
  4850. [
  4851. {
  4852. name: "Normal",
  4853. height: math.unit(5, "feet"),
  4854. default: true
  4855. }
  4856. ]
  4857. ))
  4858. characterMakers.push(() => makeCharacter(
  4859. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4860. {
  4861. side: {
  4862. height: math.unit(6, "feet"),
  4863. weight: math.unit(150, "lbs"),
  4864. name: "Side",
  4865. image: {
  4866. source: "./media/characters/ramona/side.svg"
  4867. }
  4868. },
  4869. },
  4870. [
  4871. {
  4872. name: "Normal",
  4873. height: math.unit(5.3, "meters"),
  4874. default: true
  4875. },
  4876. {
  4877. name: "Macro",
  4878. height: math.unit(20, "stories")
  4879. },
  4880. {
  4881. name: "Macro+",
  4882. height: math.unit(50, "stories")
  4883. },
  4884. ]
  4885. ))
  4886. characterMakers.push(() => makeCharacter(
  4887. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4888. {
  4889. standing: {
  4890. height: math.unit(5.75, "feet"),
  4891. weight: math.unit(160, "lbs"),
  4892. name: "Standing",
  4893. image: {
  4894. source: "./media/characters/deerpuff/standing.svg",
  4895. extra: 682 / 624
  4896. }
  4897. },
  4898. sitting: {
  4899. height: math.unit(5.75 / 1.79, "feet"),
  4900. weight: math.unit(160, "lbs"),
  4901. name: "Sitting",
  4902. image: {
  4903. source: "./media/characters/deerpuff/sitting.svg",
  4904. bottom: 44 / 400,
  4905. extra: 1
  4906. }
  4907. },
  4908. taurLaying: {
  4909. height: math.unit(6, "feet"),
  4910. weight: math.unit(400, "lbs"),
  4911. name: "Taur (Laying)",
  4912. image: {
  4913. source: "./media/characters/deerpuff/taur-laying.svg"
  4914. }
  4915. },
  4916. },
  4917. [
  4918. {
  4919. name: "Puffball",
  4920. height: math.unit(6, "inches")
  4921. },
  4922. {
  4923. name: "Normalpuff",
  4924. height: math.unit(5.75, "feet")
  4925. },
  4926. {
  4927. name: "Macropuff",
  4928. height: math.unit(1500, "feet"),
  4929. default: true
  4930. },
  4931. {
  4932. name: "Megapuff",
  4933. height: math.unit(500, "miles")
  4934. },
  4935. {
  4936. name: "Gigapuff",
  4937. height: math.unit(250000, "miles")
  4938. },
  4939. {
  4940. name: "Omegapuff",
  4941. height: math.unit(1000, "lightyears")
  4942. },
  4943. ]
  4944. ))
  4945. characterMakers.push(() => makeCharacter(
  4946. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4947. {
  4948. stomping: {
  4949. height: math.unit(6, "feet"),
  4950. weight: math.unit(170, "lbs"),
  4951. name: "Stomping",
  4952. image: {
  4953. source: "./media/characters/vivian/stomping.svg"
  4954. }
  4955. },
  4956. sitting: {
  4957. height: math.unit(6 / 1.75, "feet"),
  4958. weight: math.unit(170, "lbs"),
  4959. name: "Sitting",
  4960. image: {
  4961. source: "./media/characters/vivian/sitting.svg",
  4962. bottom: 1 / 6.4,
  4963. extra: 1,
  4964. }
  4965. },
  4966. },
  4967. [
  4968. {
  4969. name: "Normal",
  4970. height: math.unit(7, "feet"),
  4971. default: true
  4972. },
  4973. {
  4974. name: "Macro",
  4975. height: math.unit(10, "stories")
  4976. },
  4977. {
  4978. name: "Macro+",
  4979. height: math.unit(30, "stories")
  4980. },
  4981. {
  4982. name: "Megamacro",
  4983. height: math.unit(10, "miles")
  4984. },
  4985. {
  4986. name: "Megamacro+",
  4987. height: math.unit(2750000, "meters")
  4988. },
  4989. ]
  4990. ))
  4991. characterMakers.push(() => makeCharacter(
  4992. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4993. {
  4994. front: {
  4995. height: math.unit(6, "feet"),
  4996. weight: math.unit(160, "lbs"),
  4997. name: "Front",
  4998. image: {
  4999. source: "./media/characters/prince/front.svg",
  5000. extra: 3400 / 3000
  5001. }
  5002. },
  5003. jumping: {
  5004. height: math.unit(6, "feet"),
  5005. weight: math.unit(160, "lbs"),
  5006. name: "Jumping",
  5007. image: {
  5008. source: "./media/characters/prince/jump.svg",
  5009. extra: 2555 / 2134
  5010. }
  5011. },
  5012. },
  5013. [
  5014. {
  5015. name: "Normal",
  5016. height: math.unit(7.75, "feet"),
  5017. default: true
  5018. },
  5019. {
  5020. name: "Not cute",
  5021. height: math.unit(17, "feet")
  5022. },
  5023. {
  5024. name: "I said NOT",
  5025. height: math.unit(91, "feet")
  5026. },
  5027. {
  5028. name: "Please stop",
  5029. height: math.unit(560, "feet")
  5030. },
  5031. {
  5032. name: "What have you done",
  5033. height: math.unit(2200, "feet")
  5034. },
  5035. {
  5036. name: "Deer God",
  5037. height: math.unit(3.6, "miles")
  5038. },
  5039. ]
  5040. ))
  5041. characterMakers.push(() => makeCharacter(
  5042. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5043. {
  5044. standing: {
  5045. height: math.unit(6, "feet"),
  5046. weight: math.unit(300, "lbs"),
  5047. name: "Standing",
  5048. image: {
  5049. source: "./media/characters/psymon/standing.svg",
  5050. extra: 1888 / 1810,
  5051. bottom: 0.05
  5052. }
  5053. },
  5054. slithering: {
  5055. height: math.unit(6, "feet"),
  5056. weight: math.unit(300, "lbs"),
  5057. name: "Slithering",
  5058. image: {
  5059. source: "./media/characters/psymon/slithering.svg",
  5060. extra: 1330 / 1224
  5061. }
  5062. },
  5063. slitheringAlt: {
  5064. height: math.unit(6, "feet"),
  5065. weight: math.unit(300, "lbs"),
  5066. name: "Slithering (Alt)",
  5067. image: {
  5068. source: "./media/characters/psymon/slithering-alt.svg",
  5069. extra: 1330 / 1224
  5070. }
  5071. },
  5072. },
  5073. [
  5074. {
  5075. name: "Normal",
  5076. height: math.unit(11.25, "feet"),
  5077. default: true
  5078. },
  5079. {
  5080. name: "Large",
  5081. height: math.unit(27, "feet")
  5082. },
  5083. {
  5084. name: "Giant",
  5085. height: math.unit(87, "feet")
  5086. },
  5087. {
  5088. name: "Macro",
  5089. height: math.unit(365, "feet")
  5090. },
  5091. {
  5092. name: "Megamacro",
  5093. height: math.unit(3, "miles")
  5094. },
  5095. {
  5096. name: "World Serpent",
  5097. height: math.unit(8000, "miles")
  5098. },
  5099. ]
  5100. ))
  5101. characterMakers.push(() => makeCharacter(
  5102. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5103. {
  5104. front: {
  5105. height: math.unit(6, "feet"),
  5106. weight: math.unit(180, "lbs"),
  5107. name: "Front",
  5108. image: {
  5109. source: "./media/characters/daimos/front.svg",
  5110. extra: 4160 / 3897,
  5111. bottom: 0.021
  5112. }
  5113. }
  5114. },
  5115. [
  5116. {
  5117. name: "Normal",
  5118. height: math.unit(8, "feet"),
  5119. default: true
  5120. },
  5121. {
  5122. name: "Big Dog",
  5123. height: math.unit(22, "feet")
  5124. },
  5125. {
  5126. name: "Macro",
  5127. height: math.unit(127, "feet")
  5128. },
  5129. {
  5130. name: "Megamacro",
  5131. height: math.unit(3600, "feet")
  5132. },
  5133. ]
  5134. ))
  5135. characterMakers.push(() => makeCharacter(
  5136. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5137. {
  5138. side: {
  5139. height: math.unit(6, "feet"),
  5140. weight: math.unit(180, "lbs"),
  5141. name: "Side",
  5142. image: {
  5143. source: "./media/characters/blake/side.svg",
  5144. extra: 1212 / 1120,
  5145. bottom: 0.05
  5146. }
  5147. },
  5148. crouched: {
  5149. height: math.unit(6 * 0.57, "feet"),
  5150. weight: math.unit(180, "lbs"),
  5151. name: "Crouched",
  5152. image: {
  5153. source: "./media/characters/blake/crouched.svg",
  5154. extra: 840 / 587,
  5155. bottom: 0.04
  5156. }
  5157. },
  5158. bent: {
  5159. height: math.unit(6 * 0.75, "feet"),
  5160. weight: math.unit(180, "lbs"),
  5161. name: "Bent",
  5162. image: {
  5163. source: "./media/characters/blake/bent.svg",
  5164. extra: 592 / 544,
  5165. bottom: 0.035
  5166. }
  5167. },
  5168. },
  5169. [
  5170. {
  5171. name: "Normal",
  5172. height: math.unit(8 + 1 / 6, "feet"),
  5173. default: true
  5174. },
  5175. {
  5176. name: "Big Backside",
  5177. height: math.unit(37, "feet")
  5178. },
  5179. {
  5180. name: "Subway Shredder",
  5181. height: math.unit(72, "feet")
  5182. },
  5183. {
  5184. name: "City Carver",
  5185. height: math.unit(1675, "feet")
  5186. },
  5187. {
  5188. name: "Tectonic Tweaker",
  5189. height: math.unit(2300, "miles")
  5190. },
  5191. ]
  5192. ))
  5193. characterMakers.push(() => makeCharacter(
  5194. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5195. {
  5196. front: {
  5197. height: math.unit(6, "feet"),
  5198. weight: math.unit(180, "lbs"),
  5199. name: "Front",
  5200. image: {
  5201. source: "./media/characters/guisetto/front.svg",
  5202. extra: 856 / 817,
  5203. bottom: 0.06
  5204. }
  5205. },
  5206. airborne: {
  5207. height: math.unit(6, "feet"),
  5208. weight: math.unit(180, "lbs"),
  5209. name: "Airborne",
  5210. image: {
  5211. source: "./media/characters/guisetto/airborne.svg",
  5212. extra: 584 / 525
  5213. }
  5214. },
  5215. },
  5216. [
  5217. {
  5218. name: "Normal",
  5219. height: math.unit(10 + 11 / 12, "feet"),
  5220. default: true
  5221. },
  5222. {
  5223. name: "Large",
  5224. height: math.unit(35, "feet")
  5225. },
  5226. {
  5227. name: "Macro",
  5228. height: math.unit(475, "feet")
  5229. },
  5230. ]
  5231. ))
  5232. characterMakers.push(() => makeCharacter(
  5233. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5234. {
  5235. front: {
  5236. height: math.unit(6, "feet"),
  5237. weight: math.unit(180, "lbs"),
  5238. name: "Front",
  5239. image: {
  5240. source: "./media/characters/luxor/front.svg",
  5241. extra: 2940 / 2152
  5242. }
  5243. },
  5244. back: {
  5245. height: math.unit(6, "feet"),
  5246. weight: math.unit(180, "lbs"),
  5247. name: "Back",
  5248. image: {
  5249. source: "./media/characters/luxor/back.svg",
  5250. extra: 1083 / 960
  5251. }
  5252. },
  5253. },
  5254. [
  5255. {
  5256. name: "Normal",
  5257. height: math.unit(5 + 5 / 6, "feet"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Lamp",
  5262. height: math.unit(50, "feet")
  5263. },
  5264. {
  5265. name: "Lämp",
  5266. height: math.unit(300, "feet")
  5267. },
  5268. {
  5269. name: "The sun is a lamp",
  5270. height: math.unit(250000, "miles")
  5271. },
  5272. ]
  5273. ))
  5274. characterMakers.push(() => makeCharacter(
  5275. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5276. {
  5277. front: {
  5278. height: math.unit(6, "feet"),
  5279. weight: math.unit(50, "lbs"),
  5280. name: "Front",
  5281. image: {
  5282. source: "./media/characters/huoyan/front.svg"
  5283. }
  5284. },
  5285. side: {
  5286. height: math.unit(6, "feet"),
  5287. weight: math.unit(180, "lbs"),
  5288. name: "Side",
  5289. image: {
  5290. source: "./media/characters/huoyan/side.svg"
  5291. }
  5292. },
  5293. },
  5294. [
  5295. {
  5296. name: "Chef",
  5297. height: math.unit(9, "feet")
  5298. },
  5299. {
  5300. name: "Normal",
  5301. height: math.unit(65, "feet"),
  5302. default: true
  5303. },
  5304. {
  5305. name: "Macro",
  5306. height: math.unit(780, "feet")
  5307. },
  5308. {
  5309. name: "Flaming Mountain",
  5310. height: math.unit(4.8, "miles")
  5311. },
  5312. {
  5313. name: "Celestial",
  5314. height: math.unit(765000, "miles")
  5315. },
  5316. ]
  5317. ))
  5318. characterMakers.push(() => makeCharacter(
  5319. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5320. {
  5321. front: {
  5322. height: math.unit(5 + 3 / 4, "feet"),
  5323. weight: math.unit(120, "lbs"),
  5324. name: "Front",
  5325. image: {
  5326. source: "./media/characters/tails/front.svg"
  5327. }
  5328. }
  5329. },
  5330. [
  5331. {
  5332. name: "Normal",
  5333. height: math.unit(5 + 3 / 4, "feet"),
  5334. default: true
  5335. }
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5340. {
  5341. front: {
  5342. height: math.unit(4, "feet"),
  5343. weight: math.unit(50, "lbs"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/rainy/front.svg"
  5347. }
  5348. }
  5349. },
  5350. [
  5351. {
  5352. name: "Macro",
  5353. height: math.unit(800, "feet"),
  5354. default: true
  5355. }
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5360. {
  5361. front: {
  5362. height: math.unit(6, "feet"),
  5363. weight: math.unit(150, "lbs"),
  5364. name: "Front",
  5365. image: {
  5366. source: "./media/characters/rainier/front.svg"
  5367. }
  5368. }
  5369. },
  5370. [
  5371. {
  5372. name: "Micro",
  5373. height: math.unit(2, "mm"),
  5374. default: true
  5375. }
  5376. ]
  5377. ))
  5378. characterMakers.push(() => makeCharacter(
  5379. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5380. {
  5381. front: {
  5382. height: math.unit(6, "feet"),
  5383. weight: math.unit(180, "lbs"),
  5384. name: "Front",
  5385. image: {
  5386. source: "./media/characters/andy/front.svg"
  5387. }
  5388. }
  5389. },
  5390. [
  5391. {
  5392. name: "Normal",
  5393. height: math.unit(8, "feet"),
  5394. default: true
  5395. },
  5396. {
  5397. name: "Macro",
  5398. height: math.unit(1000, "feet")
  5399. },
  5400. {
  5401. name: "Megamacro",
  5402. height: math.unit(5, "miles")
  5403. },
  5404. {
  5405. name: "Gigamacro",
  5406. height: math.unit(5000, "miles")
  5407. },
  5408. ]
  5409. ))
  5410. characterMakers.push(() => makeCharacter(
  5411. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5412. {
  5413. front: {
  5414. height: math.unit(6, "feet"),
  5415. weight: math.unit(210, "lbs"),
  5416. name: "Front",
  5417. image: {
  5418. source: "./media/characters/cimmaron/front-sfw.svg",
  5419. extra: 701 / 676,
  5420. bottom: 0.046
  5421. }
  5422. },
  5423. back: {
  5424. height: math.unit(6, "feet"),
  5425. weight: math.unit(210, "lbs"),
  5426. name: "Back",
  5427. image: {
  5428. source: "./media/characters/cimmaron/back-sfw.svg",
  5429. extra: 701 / 676,
  5430. bottom: 0.046
  5431. }
  5432. },
  5433. frontNsfw: {
  5434. height: math.unit(6, "feet"),
  5435. weight: math.unit(210, "lbs"),
  5436. name: "Front (NSFW)",
  5437. image: {
  5438. source: "./media/characters/cimmaron/front-nsfw.svg",
  5439. extra: 701 / 676,
  5440. bottom: 0.046
  5441. }
  5442. },
  5443. backNsfw: {
  5444. height: math.unit(6, "feet"),
  5445. weight: math.unit(210, "lbs"),
  5446. name: "Back (NSFW)",
  5447. image: {
  5448. source: "./media/characters/cimmaron/back-nsfw.svg",
  5449. extra: 701 / 676,
  5450. bottom: 0.046
  5451. }
  5452. },
  5453. dick: {
  5454. height: math.unit(1.714, "feet"),
  5455. name: "Dick",
  5456. image: {
  5457. source: "./media/characters/cimmaron/dick.svg"
  5458. }
  5459. },
  5460. },
  5461. [
  5462. {
  5463. name: "Normal",
  5464. height: math.unit(6, "feet"),
  5465. default: true
  5466. },
  5467. {
  5468. name: "Macro Mayor",
  5469. height: math.unit(350, "meters")
  5470. },
  5471. ]
  5472. ))
  5473. characterMakers.push(() => makeCharacter(
  5474. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5475. {
  5476. front: {
  5477. height: math.unit(6, "feet"),
  5478. weight: math.unit(200, "lbs"),
  5479. name: "Front",
  5480. image: {
  5481. source: "./media/characters/akari/front.svg",
  5482. extra: 962 / 901,
  5483. bottom: 0.04
  5484. }
  5485. }
  5486. },
  5487. [
  5488. {
  5489. name: "Micro",
  5490. height: math.unit(5, "inches"),
  5491. default: true
  5492. },
  5493. {
  5494. name: "Normal",
  5495. height: math.unit(7, "feet")
  5496. },
  5497. ]
  5498. ))
  5499. characterMakers.push(() => makeCharacter(
  5500. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5501. {
  5502. front: {
  5503. height: math.unit(6, "feet"),
  5504. weight: math.unit(140, "lbs"),
  5505. name: "Front",
  5506. image: {
  5507. source: "./media/characters/cynosura/front.svg",
  5508. extra: 896 / 847
  5509. }
  5510. },
  5511. back: {
  5512. height: math.unit(6, "feet"),
  5513. weight: math.unit(140, "lbs"),
  5514. name: "Back",
  5515. image: {
  5516. source: "./media/characters/cynosura/back.svg",
  5517. extra: 1365 / 1250
  5518. }
  5519. },
  5520. },
  5521. [
  5522. {
  5523. name: "Micro",
  5524. height: math.unit(4, "inches")
  5525. },
  5526. {
  5527. name: "Normal",
  5528. height: math.unit(5.75, "feet"),
  5529. default: true
  5530. },
  5531. {
  5532. name: "Tall",
  5533. height: math.unit(10, "feet")
  5534. },
  5535. {
  5536. name: "Big",
  5537. height: math.unit(20, "feet")
  5538. },
  5539. {
  5540. name: "Macro",
  5541. height: math.unit(50, "feet")
  5542. },
  5543. ]
  5544. ))
  5545. characterMakers.push(() => makeCharacter(
  5546. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5547. {
  5548. front: {
  5549. height: math.unit(6, "feet"),
  5550. weight: math.unit(170, "lbs"),
  5551. name: "Front",
  5552. image: {
  5553. source: "./media/characters/gin/front.svg",
  5554. extra: 1.053,
  5555. bottom: 0.025
  5556. }
  5557. },
  5558. foot: {
  5559. height: math.unit(6 / 4.25, "feet"),
  5560. name: "Foot",
  5561. image: {
  5562. source: "./media/characters/gin/foot.svg"
  5563. }
  5564. },
  5565. sole: {
  5566. height: math.unit(6 / 4.40, "feet"),
  5567. name: "Sole",
  5568. image: {
  5569. source: "./media/characters/gin/sole.svg"
  5570. }
  5571. },
  5572. },
  5573. [
  5574. {
  5575. name: "Normal",
  5576. height: math.unit(13 + 2 / 12, "feet")
  5577. },
  5578. {
  5579. name: "Macro",
  5580. height: math.unit(1500, "feet")
  5581. },
  5582. {
  5583. name: "Megamacro",
  5584. height: math.unit(200, "miles"),
  5585. default: true
  5586. },
  5587. {
  5588. name: "Gigamacro",
  5589. height: math.unit(500, "megameters")
  5590. },
  5591. {
  5592. name: "Teramacro",
  5593. height: math.unit(15, "lightyears")
  5594. }
  5595. ]
  5596. ))
  5597. characterMakers.push(() => makeCharacter(
  5598. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5599. {
  5600. front: {
  5601. height: math.unit(6 + 1 / 6, "feet"),
  5602. weight: math.unit(178, "lbs"),
  5603. name: "Front",
  5604. image: {
  5605. source: "./media/characters/guy/front.svg"
  5606. }
  5607. }
  5608. },
  5609. [
  5610. {
  5611. name: "Normal",
  5612. height: math.unit(6 + 1 / 6, "feet"),
  5613. default: true
  5614. },
  5615. {
  5616. name: "Large",
  5617. height: math.unit(25 + 7 / 12, "feet")
  5618. },
  5619. {
  5620. name: "Macro",
  5621. height: math.unit(60 + 9 / 12, "feet")
  5622. },
  5623. {
  5624. name: "Macro+",
  5625. height: math.unit(246, "feet")
  5626. },
  5627. {
  5628. name: "Macro++",
  5629. height: math.unit(878, "feet")
  5630. }
  5631. ]
  5632. ))
  5633. characterMakers.push(() => makeCharacter(
  5634. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5635. {
  5636. front: {
  5637. height: math.unit(9, "feet"),
  5638. weight: math.unit(800, "lbs"),
  5639. name: "Front",
  5640. image: {
  5641. source: "./media/characters/tiberius/front.svg",
  5642. extra: 2295 / 2071
  5643. }
  5644. },
  5645. back: {
  5646. height: math.unit(9, "feet"),
  5647. weight: math.unit(800, "lbs"),
  5648. name: "Back",
  5649. image: {
  5650. source: "./media/characters/tiberius/back.svg",
  5651. extra: 2373 / 2160
  5652. }
  5653. },
  5654. },
  5655. [
  5656. {
  5657. name: "Normal",
  5658. height: math.unit(9, "feet"),
  5659. default: true
  5660. }
  5661. ]
  5662. ))
  5663. characterMakers.push(() => makeCharacter(
  5664. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5665. {
  5666. front: {
  5667. height: math.unit(6, "feet"),
  5668. weight: math.unit(600, "lbs"),
  5669. name: "Front",
  5670. image: {
  5671. source: "./media/characters/surgo/front.svg",
  5672. extra: 3591 / 2227
  5673. }
  5674. },
  5675. back: {
  5676. height: math.unit(6, "feet"),
  5677. weight: math.unit(600, "lbs"),
  5678. name: "Back",
  5679. image: {
  5680. source: "./media/characters/surgo/back.svg",
  5681. extra: 3557 / 2228
  5682. }
  5683. },
  5684. laying: {
  5685. height: math.unit(6 * 0.85, "feet"),
  5686. weight: math.unit(600, "lbs"),
  5687. name: "Laying",
  5688. image: {
  5689. source: "./media/characters/surgo/laying.svg"
  5690. }
  5691. },
  5692. },
  5693. [
  5694. {
  5695. name: "Normal",
  5696. height: math.unit(6, "feet"),
  5697. default: true
  5698. }
  5699. ]
  5700. ))
  5701. characterMakers.push(() => makeCharacter(
  5702. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5703. {
  5704. side: {
  5705. height: math.unit(6, "feet"),
  5706. weight: math.unit(150, "lbs"),
  5707. name: "Side",
  5708. image: {
  5709. source: "./media/characters/cibus/side.svg",
  5710. extra: 800 / 400
  5711. }
  5712. },
  5713. },
  5714. [
  5715. {
  5716. name: "Normal",
  5717. height: math.unit(6, "feet"),
  5718. default: true
  5719. }
  5720. ]
  5721. ))
  5722. characterMakers.push(() => makeCharacter(
  5723. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5724. {
  5725. front: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(240, "lbs"),
  5728. name: "Front",
  5729. image: {
  5730. source: "./media/characters/nibbles/front.svg"
  5731. }
  5732. },
  5733. side: {
  5734. height: math.unit(6, "feet"),
  5735. weight: math.unit(240, "lbs"),
  5736. name: "Side",
  5737. image: {
  5738. source: "./media/characters/nibbles/side.svg"
  5739. }
  5740. },
  5741. },
  5742. [
  5743. {
  5744. name: "Normal",
  5745. height: math.unit(9, "feet"),
  5746. default: true
  5747. }
  5748. ]
  5749. ))
  5750. characterMakers.push(() => makeCharacter(
  5751. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5752. {
  5753. side: {
  5754. height: math.unit(5 + 1 / 6, "feet"),
  5755. weight: math.unit(130, "lbs"),
  5756. name: "Side",
  5757. image: {
  5758. source: "./media/characters/rikky/side.svg",
  5759. extra: 851 / 801
  5760. }
  5761. },
  5762. },
  5763. [
  5764. {
  5765. name: "Normal",
  5766. height: math.unit(5 + 1 / 6, "feet")
  5767. },
  5768. {
  5769. name: "Macro",
  5770. height: math.unit(152, "feet"),
  5771. default: true
  5772. },
  5773. {
  5774. name: "Megamacro",
  5775. height: math.unit(7, "miles")
  5776. }
  5777. ]
  5778. ))
  5779. characterMakers.push(() => makeCharacter(
  5780. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5781. {
  5782. side: {
  5783. height: math.unit(370, "cm"),
  5784. weight: math.unit(350, "lbs"),
  5785. name: "Side",
  5786. image: {
  5787. source: "./media/characters/malfressa/side.svg"
  5788. }
  5789. },
  5790. walking: {
  5791. height: math.unit(370, "cm"),
  5792. weight: math.unit(350, "lbs"),
  5793. name: "Walking",
  5794. image: {
  5795. source: "./media/characters/malfressa/walking.svg"
  5796. }
  5797. },
  5798. feral: {
  5799. height: math.unit(2500, "cm"),
  5800. weight: math.unit(100000, "lbs"),
  5801. name: "Feral",
  5802. image: {
  5803. source: "./media/characters/malfressa/feral.svg",
  5804. extra: 2108 / 837,
  5805. bottom: 0.02
  5806. }
  5807. },
  5808. },
  5809. [
  5810. {
  5811. name: "Normal",
  5812. height: math.unit(370, "cm")
  5813. },
  5814. {
  5815. name: "Macro",
  5816. height: math.unit(300, "meters"),
  5817. default: true
  5818. }
  5819. ]
  5820. ))
  5821. characterMakers.push(() => makeCharacter(
  5822. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5823. {
  5824. front: {
  5825. height: math.unit(6, "feet"),
  5826. weight: math.unit(60, "kg"),
  5827. name: "Front",
  5828. image: {
  5829. source: "./media/characters/jaro/front.svg"
  5830. }
  5831. },
  5832. back: {
  5833. height: math.unit(6, "feet"),
  5834. weight: math.unit(60, "kg"),
  5835. name: "Back",
  5836. image: {
  5837. source: "./media/characters/jaro/back.svg"
  5838. }
  5839. },
  5840. },
  5841. [
  5842. {
  5843. name: "Micro",
  5844. height: math.unit(7, "inches")
  5845. },
  5846. {
  5847. name: "Normal",
  5848. height: math.unit(5.5, "feet"),
  5849. default: true
  5850. },
  5851. {
  5852. name: "Minimacro",
  5853. height: math.unit(20, "feet")
  5854. },
  5855. {
  5856. name: "Macro",
  5857. height: math.unit(200, "meters")
  5858. }
  5859. ]
  5860. ))
  5861. characterMakers.push(() => makeCharacter(
  5862. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5863. {
  5864. front: {
  5865. height: math.unit(6, "feet"),
  5866. weight: math.unit(195, "lb"),
  5867. name: "Front",
  5868. image: {
  5869. source: "./media/characters/rogue/front.svg"
  5870. }
  5871. },
  5872. },
  5873. [
  5874. {
  5875. name: "Macro",
  5876. height: math.unit(90, "feet"),
  5877. default: true
  5878. },
  5879. ]
  5880. ))
  5881. characterMakers.push(() => makeCharacter(
  5882. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5883. {
  5884. front: {
  5885. height: math.unit(5 + 8 / 12, "feet"),
  5886. weight: math.unit(140, "lb"),
  5887. name: "Front",
  5888. image: {
  5889. source: "./media/characters/piper/front.svg",
  5890. extra: 3948/3655,
  5891. bottom: 0/3948
  5892. }
  5893. },
  5894. },
  5895. [
  5896. {
  5897. name: "Micro",
  5898. height: math.unit(2, "inches")
  5899. },
  5900. {
  5901. name: "Normal",
  5902. height: math.unit(5 + 8 / 12, "feet")
  5903. },
  5904. {
  5905. name: "Macro",
  5906. height: math.unit(250, "feet"),
  5907. default: true
  5908. },
  5909. {
  5910. name: "Megamacro",
  5911. height: math.unit(7, "miles")
  5912. },
  5913. ]
  5914. ))
  5915. characterMakers.push(() => makeCharacter(
  5916. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5917. {
  5918. front: {
  5919. height: math.unit(6, "feet"),
  5920. weight: math.unit(220, "lb"),
  5921. name: "Front",
  5922. image: {
  5923. source: "./media/characters/gemini/front.svg"
  5924. }
  5925. },
  5926. back: {
  5927. height: math.unit(6, "feet"),
  5928. weight: math.unit(220, "lb"),
  5929. name: "Back",
  5930. image: {
  5931. source: "./media/characters/gemini/back.svg"
  5932. }
  5933. },
  5934. kneeling: {
  5935. height: math.unit(6 / 1.5, "feet"),
  5936. weight: math.unit(220, "lb"),
  5937. name: "Kneeling",
  5938. image: {
  5939. source: "./media/characters/gemini/kneeling.svg",
  5940. bottom: 0.02
  5941. }
  5942. },
  5943. },
  5944. [
  5945. {
  5946. name: "Macro",
  5947. height: math.unit(300, "meters"),
  5948. default: true
  5949. },
  5950. {
  5951. name: "Megamacro",
  5952. height: math.unit(6900, "meters")
  5953. },
  5954. ]
  5955. ))
  5956. characterMakers.push(() => makeCharacter(
  5957. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5958. {
  5959. anthro: {
  5960. height: math.unit(2.35, "meters"),
  5961. weight: math.unit(73, "kg"),
  5962. name: "Anthro",
  5963. image: {
  5964. source: "./media/characters/alicia/anthro.svg",
  5965. extra: 2571 / 2385,
  5966. bottom: 75 / 2648
  5967. }
  5968. },
  5969. paw: {
  5970. height: math.unit(1.32, "feet"),
  5971. name: "Paw",
  5972. image: {
  5973. source: "./media/characters/alicia/paw.svg"
  5974. }
  5975. },
  5976. feral: {
  5977. height: math.unit(1.69, "meters"),
  5978. weight: math.unit(73, "kg"),
  5979. name: "Feral",
  5980. image: {
  5981. source: "./media/characters/alicia/feral.svg",
  5982. extra: 2123 / 1715,
  5983. bottom: 222 / 2349
  5984. }
  5985. },
  5986. },
  5987. [
  5988. {
  5989. name: "Normal",
  5990. height: math.unit(2.35, "meters")
  5991. },
  5992. {
  5993. name: "Macro",
  5994. height: math.unit(60, "meters"),
  5995. default: true
  5996. },
  5997. {
  5998. name: "Megamacro",
  5999. height: math.unit(10000, "kilometers")
  6000. },
  6001. ]
  6002. ))
  6003. characterMakers.push(() => makeCharacter(
  6004. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  6005. {
  6006. front: {
  6007. height: math.unit(7, "feet"),
  6008. weight: math.unit(250, "lbs"),
  6009. name: "Front",
  6010. image: {
  6011. source: "./media/characters/archy/front.svg"
  6012. }
  6013. }
  6014. },
  6015. [
  6016. {
  6017. name: "Micro",
  6018. height: math.unit(1, "inch")
  6019. },
  6020. {
  6021. name: "Shorty",
  6022. height: math.unit(5, "feet")
  6023. },
  6024. {
  6025. name: "Normal",
  6026. height: math.unit(7, "feet")
  6027. },
  6028. {
  6029. name: "Macro",
  6030. height: math.unit(600, "meters"),
  6031. default: true
  6032. },
  6033. {
  6034. name: "Megamacro",
  6035. height: math.unit(1, "mile")
  6036. },
  6037. ]
  6038. ))
  6039. characterMakers.push(() => makeCharacter(
  6040. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6041. {
  6042. front: {
  6043. height: math.unit(1.65, "meters"),
  6044. weight: math.unit(74, "kg"),
  6045. name: "Front",
  6046. image: {
  6047. source: "./media/characters/berri/front.svg",
  6048. extra: 857 / 837,
  6049. bottom: 18 / 877
  6050. }
  6051. },
  6052. bum: {
  6053. height: math.unit(1.46, "feet"),
  6054. name: "Bum",
  6055. image: {
  6056. source: "./media/characters/berri/bum.svg"
  6057. }
  6058. },
  6059. mouth: {
  6060. height: math.unit(0.44, "feet"),
  6061. name: "Mouth",
  6062. image: {
  6063. source: "./media/characters/berri/mouth.svg"
  6064. }
  6065. },
  6066. paw: {
  6067. height: math.unit(0.826, "feet"),
  6068. name: "Paw",
  6069. image: {
  6070. source: "./media/characters/berri/paw.svg"
  6071. }
  6072. },
  6073. },
  6074. [
  6075. {
  6076. name: "Normal",
  6077. height: math.unit(1.65, "meters")
  6078. },
  6079. {
  6080. name: "Macro",
  6081. height: math.unit(60, "m"),
  6082. default: true
  6083. },
  6084. {
  6085. name: "Megamacro",
  6086. height: math.unit(9.213, "km")
  6087. },
  6088. {
  6089. name: "Planet Eater",
  6090. height: math.unit(489, "megameters")
  6091. },
  6092. {
  6093. name: "Teramacro",
  6094. height: math.unit(2471635000000, "meters")
  6095. },
  6096. {
  6097. name: "Examacro",
  6098. height: math.unit(8.0624e+26, "meters")
  6099. }
  6100. ]
  6101. ))
  6102. characterMakers.push(() => makeCharacter(
  6103. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6104. {
  6105. front: {
  6106. height: math.unit(1.72, "meters"),
  6107. weight: math.unit(68, "kg"),
  6108. name: "Front",
  6109. image: {
  6110. source: "./media/characters/lexi/front.svg"
  6111. }
  6112. }
  6113. },
  6114. [
  6115. {
  6116. name: "Very Smol",
  6117. height: math.unit(10, "mm")
  6118. },
  6119. {
  6120. name: "Micro",
  6121. height: math.unit(6.8, "cm"),
  6122. default: true
  6123. },
  6124. {
  6125. name: "Normal",
  6126. height: math.unit(1.72, "m")
  6127. }
  6128. ]
  6129. ))
  6130. characterMakers.push(() => makeCharacter(
  6131. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6132. {
  6133. front: {
  6134. height: math.unit(1.69, "meters"),
  6135. weight: math.unit(68, "kg"),
  6136. name: "Front",
  6137. image: {
  6138. source: "./media/characters/martin/front.svg",
  6139. extra: 596 / 581
  6140. }
  6141. }
  6142. },
  6143. [
  6144. {
  6145. name: "Micro",
  6146. height: math.unit(6.85, "cm"),
  6147. default: true
  6148. },
  6149. {
  6150. name: "Normal",
  6151. height: math.unit(1.69, "m")
  6152. }
  6153. ]
  6154. ))
  6155. characterMakers.push(() => makeCharacter(
  6156. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6157. {
  6158. front: {
  6159. height: math.unit(1.69, "meters"),
  6160. weight: math.unit(68, "kg"),
  6161. name: "Front",
  6162. image: {
  6163. source: "./media/characters/juno/front.svg"
  6164. }
  6165. }
  6166. },
  6167. [
  6168. {
  6169. name: "Micro",
  6170. height: math.unit(7, "cm")
  6171. },
  6172. {
  6173. name: "Normal",
  6174. height: math.unit(1.89, "m")
  6175. },
  6176. {
  6177. name: "Macro",
  6178. height: math.unit(353, "meters"),
  6179. default: true
  6180. }
  6181. ]
  6182. ))
  6183. characterMakers.push(() => makeCharacter(
  6184. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6185. {
  6186. front: {
  6187. height: math.unit(1.93, "meters"),
  6188. weight: math.unit(83, "kg"),
  6189. name: "Front",
  6190. image: {
  6191. source: "./media/characters/samantha/front.svg"
  6192. }
  6193. },
  6194. frontClothed: {
  6195. height: math.unit(1.93, "meters"),
  6196. weight: math.unit(83, "kg"),
  6197. name: "Front (Clothed)",
  6198. image: {
  6199. source: "./media/characters/samantha/front-clothed.svg"
  6200. }
  6201. },
  6202. back: {
  6203. height: math.unit(1.93, "meters"),
  6204. weight: math.unit(83, "kg"),
  6205. name: "Back",
  6206. image: {
  6207. source: "./media/characters/samantha/back.svg"
  6208. }
  6209. },
  6210. },
  6211. [
  6212. {
  6213. name: "Normal",
  6214. height: math.unit(1.93, "m")
  6215. },
  6216. {
  6217. name: "Macro",
  6218. height: math.unit(74, "meters"),
  6219. default: true
  6220. },
  6221. {
  6222. name: "Macro+",
  6223. height: math.unit(223, "meters"),
  6224. },
  6225. {
  6226. name: "Megamacro",
  6227. height: math.unit(8381, "meters"),
  6228. },
  6229. {
  6230. name: "Megamacro+",
  6231. height: math.unit(12000, "kilometers")
  6232. },
  6233. ]
  6234. ))
  6235. characterMakers.push(() => makeCharacter(
  6236. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6237. {
  6238. front: {
  6239. height: math.unit(1.92, "meters"),
  6240. weight: math.unit(80, "kg"),
  6241. name: "Front",
  6242. image: {
  6243. source: "./media/characters/dr-clay/front.svg"
  6244. }
  6245. },
  6246. frontClothed: {
  6247. height: math.unit(1.92, "meters"),
  6248. weight: math.unit(80, "kg"),
  6249. name: "Front (Clothed)",
  6250. image: {
  6251. source: "./media/characters/dr-clay/front-clothed.svg"
  6252. }
  6253. }
  6254. },
  6255. [
  6256. {
  6257. name: "Normal",
  6258. height: math.unit(1.92, "m")
  6259. },
  6260. {
  6261. name: "Macro",
  6262. height: math.unit(214, "meters"),
  6263. default: true
  6264. },
  6265. {
  6266. name: "Macro+",
  6267. height: math.unit(12.237, "meters"),
  6268. },
  6269. {
  6270. name: "Megamacro",
  6271. height: math.unit(557, "megameters"),
  6272. },
  6273. {
  6274. name: "Unimaginable",
  6275. height: math.unit(120e9, "lightyears")
  6276. },
  6277. ]
  6278. ))
  6279. characterMakers.push(() => makeCharacter(
  6280. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6281. {
  6282. front: {
  6283. height: math.unit(2, "meters"),
  6284. weight: math.unit(80, "kg"),
  6285. name: "Front",
  6286. image: {
  6287. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6288. }
  6289. }
  6290. },
  6291. [
  6292. {
  6293. name: "Teramacro",
  6294. height: math.unit(500000, "lightyears"),
  6295. default: true
  6296. },
  6297. ]
  6298. ))
  6299. characterMakers.push(() => makeCharacter(
  6300. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6301. {
  6302. front: {
  6303. height: math.unit(2, "meters"),
  6304. weight: math.unit(150, "kg"),
  6305. name: "Front",
  6306. image: {
  6307. source: "./media/characters/vemus/front.svg",
  6308. extra: 2384 / 2084,
  6309. bottom: 0.0123
  6310. }
  6311. }
  6312. },
  6313. [
  6314. {
  6315. name: "Normal",
  6316. height: math.unit(3.75, "meters"),
  6317. default: true
  6318. },
  6319. {
  6320. name: "Big",
  6321. height: math.unit(8, "meters")
  6322. },
  6323. {
  6324. name: "Macro",
  6325. height: math.unit(100, "meters")
  6326. },
  6327. {
  6328. name: "Macro+",
  6329. height: math.unit(1500, "meters")
  6330. },
  6331. {
  6332. name: "Stellar",
  6333. height: math.unit(14e8, "meters")
  6334. },
  6335. ]
  6336. ))
  6337. characterMakers.push(() => makeCharacter(
  6338. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6339. {
  6340. front: {
  6341. height: math.unit(2, "meters"),
  6342. weight: math.unit(70, "kg"),
  6343. name: "Front",
  6344. image: {
  6345. source: "./media/characters/beherit/front.svg",
  6346. extra: 1408 / 1242
  6347. }
  6348. }
  6349. },
  6350. [
  6351. {
  6352. name: "Normal",
  6353. height: math.unit(6, "feet")
  6354. },
  6355. {
  6356. name: "Lorg",
  6357. height: math.unit(25, "feet"),
  6358. default: true
  6359. },
  6360. {
  6361. name: "Lorger",
  6362. height: math.unit(75, "feet")
  6363. },
  6364. {
  6365. name: "Macro",
  6366. height: math.unit(200, "meters")
  6367. },
  6368. ]
  6369. ))
  6370. characterMakers.push(() => makeCharacter(
  6371. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6372. {
  6373. front: {
  6374. height: math.unit(2, "meters"),
  6375. weight: math.unit(150, "kg"),
  6376. name: "Front",
  6377. image: {
  6378. source: "./media/characters/everett/front.svg",
  6379. extra: 2038 / 1737,
  6380. bottom: 0.03
  6381. }
  6382. },
  6383. paw: {
  6384. height: math.unit(2 / 3.6, "meters"),
  6385. name: "Paw",
  6386. image: {
  6387. source: "./media/characters/everett/paw.svg"
  6388. }
  6389. },
  6390. },
  6391. [
  6392. {
  6393. name: "Normal",
  6394. height: math.unit(15, "feet"),
  6395. default: true
  6396. },
  6397. {
  6398. name: "Lorg",
  6399. height: math.unit(70, "feet"),
  6400. default: true
  6401. },
  6402. {
  6403. name: "Lorger",
  6404. height: math.unit(250, "feet")
  6405. },
  6406. {
  6407. name: "Macro",
  6408. height: math.unit(500, "meters")
  6409. },
  6410. ]
  6411. ))
  6412. characterMakers.push(() => makeCharacter(
  6413. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6414. {
  6415. front: {
  6416. height: math.unit(2, "meters"),
  6417. weight: math.unit(86, "kg"),
  6418. name: "Front",
  6419. image: {
  6420. source: "./media/characters/rose/front.svg",
  6421. extra: 350/335,
  6422. bottom: 10/360
  6423. }
  6424. },
  6425. frontAlt: {
  6426. height: math.unit(1.6, "meters"),
  6427. weight: math.unit(86, "kg"),
  6428. name: "Front (Alt)",
  6429. image: {
  6430. source: "./media/characters/rose/front-alt.svg",
  6431. extra: 299/283,
  6432. bottom: 3/302
  6433. }
  6434. },
  6435. plush: {
  6436. height: math.unit(2, "meters"),
  6437. weight: math.unit(86/3, "kg"),
  6438. name: "Plush",
  6439. image: {
  6440. source: "./media/characters/rose/plush.svg",
  6441. extra: 361/337,
  6442. bottom: 11/372
  6443. }
  6444. },
  6445. },
  6446. [
  6447. {
  6448. name: "Mini-Micro",
  6449. height: math.unit(1, "cm")
  6450. },
  6451. {
  6452. name: "Micro",
  6453. height: math.unit(3.5, "inches"),
  6454. default: true
  6455. },
  6456. {
  6457. name: "Normal",
  6458. height: math.unit(6 + 1 / 6, "feet")
  6459. },
  6460. {
  6461. name: "Mini-Macro",
  6462. height: math.unit(9 + 10 / 12, "feet")
  6463. },
  6464. ]
  6465. ))
  6466. characterMakers.push(() => makeCharacter(
  6467. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6468. {
  6469. front: {
  6470. height: math.unit(2, "meters"),
  6471. weight: math.unit(350, "lbs"),
  6472. name: "Front",
  6473. image: {
  6474. source: "./media/characters/regal/front.svg"
  6475. }
  6476. },
  6477. back: {
  6478. height: math.unit(2, "meters"),
  6479. weight: math.unit(350, "lbs"),
  6480. name: "Back",
  6481. image: {
  6482. source: "./media/characters/regal/back.svg"
  6483. }
  6484. },
  6485. },
  6486. [
  6487. {
  6488. name: "Macro",
  6489. height: math.unit(350, "feet"),
  6490. default: true
  6491. }
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6496. {
  6497. front: {
  6498. height: math.unit(4 + 11 / 12, "feet"),
  6499. weight: math.unit(100, "lbs"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/opal/front.svg"
  6503. }
  6504. },
  6505. frontAlt: {
  6506. height: math.unit(4 + 11 / 12, "feet"),
  6507. weight: math.unit(100, "lbs"),
  6508. name: "Front (Alt)",
  6509. image: {
  6510. source: "./media/characters/opal/front-alt.svg"
  6511. }
  6512. },
  6513. },
  6514. [
  6515. {
  6516. name: "Small",
  6517. height: math.unit(4 + 11 / 12, "feet")
  6518. },
  6519. {
  6520. name: "Normal",
  6521. height: math.unit(20, "feet"),
  6522. default: true
  6523. },
  6524. {
  6525. name: "Macro",
  6526. height: math.unit(120, "feet")
  6527. },
  6528. {
  6529. name: "Megamacro",
  6530. height: math.unit(80, "miles")
  6531. },
  6532. {
  6533. name: "True Size",
  6534. height: math.unit(100000, "lightyears")
  6535. },
  6536. ]
  6537. ))
  6538. characterMakers.push(() => makeCharacter(
  6539. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6540. {
  6541. front: {
  6542. height: math.unit(6, "feet"),
  6543. weight: math.unit(200, "lbs"),
  6544. name: "Front",
  6545. image: {
  6546. source: "./media/characters/vector-wuff/front.svg"
  6547. }
  6548. }
  6549. },
  6550. [
  6551. {
  6552. name: "Normal",
  6553. height: math.unit(2.8, "meters")
  6554. },
  6555. {
  6556. name: "Macro",
  6557. height: math.unit(450, "meters"),
  6558. default: true
  6559. },
  6560. {
  6561. name: "Megamacro",
  6562. height: math.unit(15, "kilometers")
  6563. }
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6568. {
  6569. front: {
  6570. height: math.unit(6, "feet"),
  6571. weight: math.unit(256, "lbs"),
  6572. name: "Front",
  6573. image: {
  6574. source: "./media/characters/dannik/front.svg"
  6575. }
  6576. }
  6577. },
  6578. [
  6579. {
  6580. name: "Macro",
  6581. height: math.unit(69.57, "meters"),
  6582. default: true
  6583. },
  6584. ]
  6585. ))
  6586. characterMakers.push(() => makeCharacter(
  6587. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6588. {
  6589. front: {
  6590. height: math.unit(6, "feet"),
  6591. weight: math.unit(120, "lbs"),
  6592. name: "Front",
  6593. image: {
  6594. source: "./media/characters/azura-saharah/front.svg"
  6595. }
  6596. },
  6597. back: {
  6598. height: math.unit(6, "feet"),
  6599. weight: math.unit(120, "lbs"),
  6600. name: "Back",
  6601. image: {
  6602. source: "./media/characters/azura-saharah/back.svg"
  6603. }
  6604. },
  6605. },
  6606. [
  6607. {
  6608. name: "Macro",
  6609. height: math.unit(100, "feet"),
  6610. default: true
  6611. },
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6616. {
  6617. side: {
  6618. height: math.unit(5 + 4 / 12, "feet"),
  6619. weight: math.unit(163, "lbs"),
  6620. name: "Side",
  6621. image: {
  6622. source: "./media/characters/kennedy/side.svg"
  6623. }
  6624. }
  6625. },
  6626. [
  6627. {
  6628. name: "Standard Doggo",
  6629. height: math.unit(5 + 4 / 12, "feet")
  6630. },
  6631. {
  6632. name: "Big Doggo",
  6633. height: math.unit(25 + 3 / 12, "feet"),
  6634. default: true
  6635. },
  6636. ]
  6637. ))
  6638. characterMakers.push(() => makeCharacter(
  6639. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6640. {
  6641. front: {
  6642. height: math.unit(6, "feet"),
  6643. weight: math.unit(90, "lbs"),
  6644. name: "Front",
  6645. image: {
  6646. source: "./media/characters/odi-lunar/front.svg"
  6647. }
  6648. }
  6649. },
  6650. [
  6651. {
  6652. name: "Micro",
  6653. height: math.unit(3, "inches"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Normal",
  6658. height: math.unit(5.5, "feet")
  6659. }
  6660. ]
  6661. ))
  6662. characterMakers.push(() => makeCharacter(
  6663. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6664. {
  6665. back: {
  6666. height: math.unit(6, "feet"),
  6667. weight: math.unit(220, "lbs"),
  6668. name: "Back",
  6669. image: {
  6670. source: "./media/characters/mandake/back.svg"
  6671. }
  6672. }
  6673. },
  6674. [
  6675. {
  6676. name: "Normal",
  6677. height: math.unit(7, "feet"),
  6678. default: true
  6679. },
  6680. {
  6681. name: "Macro",
  6682. height: math.unit(78, "feet")
  6683. },
  6684. {
  6685. name: "Macro+",
  6686. height: math.unit(300, "meters")
  6687. },
  6688. {
  6689. name: "Macro++",
  6690. height: math.unit(2400, "feet")
  6691. },
  6692. {
  6693. name: "Megamacro",
  6694. height: math.unit(5167, "meters")
  6695. },
  6696. {
  6697. name: "Gigamacro",
  6698. height: math.unit(41769, "miles")
  6699. },
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6704. {
  6705. front: {
  6706. height: math.unit(6, "feet"),
  6707. weight: math.unit(120, "lbs"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/yozey/front.svg"
  6711. }
  6712. },
  6713. frontAlt: {
  6714. height: math.unit(6, "feet"),
  6715. weight: math.unit(120, "lbs"),
  6716. name: "Front (Alt)",
  6717. image: {
  6718. source: "./media/characters/yozey/front-alt.svg"
  6719. }
  6720. },
  6721. side: {
  6722. height: math.unit(6, "feet"),
  6723. weight: math.unit(120, "lbs"),
  6724. name: "Side",
  6725. image: {
  6726. source: "./media/characters/yozey/side.svg"
  6727. }
  6728. },
  6729. },
  6730. [
  6731. {
  6732. name: "Micro",
  6733. height: math.unit(3, "inches"),
  6734. default: true
  6735. },
  6736. {
  6737. name: "Normal",
  6738. height: math.unit(6, "feet")
  6739. }
  6740. ]
  6741. ))
  6742. characterMakers.push(() => makeCharacter(
  6743. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6744. {
  6745. front: {
  6746. height: math.unit(6, "feet"),
  6747. weight: math.unit(103, "lbs"),
  6748. name: "Front",
  6749. image: {
  6750. source: "./media/characters/valeska-voss/front.svg"
  6751. }
  6752. }
  6753. },
  6754. [
  6755. {
  6756. name: "Mini-Sized Sub",
  6757. height: math.unit(3.1, "inches")
  6758. },
  6759. {
  6760. name: "Mid-Sized Sub",
  6761. height: math.unit(6.2, "inches")
  6762. },
  6763. {
  6764. name: "Full-Sized Sub",
  6765. height: math.unit(9.3, "inches")
  6766. },
  6767. {
  6768. name: "Normal",
  6769. height: math.unit(5 + 2 / 12, "foot"),
  6770. default: true
  6771. },
  6772. ]
  6773. ))
  6774. characterMakers.push(() => makeCharacter(
  6775. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6776. {
  6777. front: {
  6778. height: math.unit(6, "feet"),
  6779. weight: math.unit(160, "lbs"),
  6780. name: "Front",
  6781. image: {
  6782. source: "./media/characters/gene-zeta/front.svg",
  6783. extra: 3006 / 2826,
  6784. bottom: 182 / 3188
  6785. }
  6786. }
  6787. },
  6788. [
  6789. {
  6790. name: "Micro",
  6791. height: math.unit(6, "inches")
  6792. },
  6793. {
  6794. name: "Normal",
  6795. height: math.unit(5 + 11 / 12, "foot"),
  6796. default: true
  6797. },
  6798. {
  6799. name: "Macro",
  6800. height: math.unit(140, "feet")
  6801. },
  6802. {
  6803. name: "Supercharged",
  6804. height: math.unit(2500, "feet")
  6805. },
  6806. ]
  6807. ))
  6808. characterMakers.push(() => makeCharacter(
  6809. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6810. {
  6811. front: {
  6812. height: math.unit(6, "feet"),
  6813. weight: math.unit(350, "lbs"),
  6814. name: "Front",
  6815. image: {
  6816. source: "./media/characters/razinox/front.svg",
  6817. extra: 1686 / 1548,
  6818. bottom: 28.2 / 1868
  6819. }
  6820. },
  6821. back: {
  6822. height: math.unit(6, "feet"),
  6823. weight: math.unit(350, "lbs"),
  6824. name: "Back",
  6825. image: {
  6826. source: "./media/characters/razinox/back.svg",
  6827. extra: 1660 / 1590,
  6828. bottom: 15 / 1665
  6829. }
  6830. },
  6831. },
  6832. [
  6833. {
  6834. name: "Normal",
  6835. height: math.unit(10 + 8 / 12, "foot")
  6836. },
  6837. {
  6838. name: "Minimacro",
  6839. height: math.unit(15, "foot")
  6840. },
  6841. {
  6842. name: "Macro",
  6843. height: math.unit(60, "foot"),
  6844. default: true
  6845. },
  6846. {
  6847. name: "Megamacro",
  6848. height: math.unit(5, "miles")
  6849. },
  6850. {
  6851. name: "Gigamacro",
  6852. height: math.unit(6000, "miles")
  6853. },
  6854. ]
  6855. ))
  6856. characterMakers.push(() => makeCharacter(
  6857. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6858. {
  6859. front: {
  6860. height: math.unit(6, "feet"),
  6861. weight: math.unit(150, "lbs"),
  6862. name: "Front",
  6863. image: {
  6864. source: "./media/characters/cobalt/front.svg"
  6865. }
  6866. }
  6867. },
  6868. [
  6869. {
  6870. name: "Normal",
  6871. height: math.unit(8 + 1 / 12, "foot")
  6872. },
  6873. {
  6874. name: "Macro",
  6875. height: math.unit(111, "foot"),
  6876. default: true
  6877. },
  6878. {
  6879. name: "Supracosmic",
  6880. height: math.unit(1e42, "feet")
  6881. },
  6882. ]
  6883. ))
  6884. characterMakers.push(() => makeCharacter(
  6885. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6886. {
  6887. front: {
  6888. height: math.unit(6, "feet"),
  6889. weight: math.unit(140, "lbs"),
  6890. name: "Front",
  6891. image: {
  6892. source: "./media/characters/amanda/front.svg"
  6893. }
  6894. }
  6895. },
  6896. [
  6897. {
  6898. name: "Micro",
  6899. height: math.unit(5, "inches"),
  6900. default: true
  6901. },
  6902. ]
  6903. ))
  6904. characterMakers.push(() => makeCharacter(
  6905. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6906. {
  6907. front: {
  6908. height: math.unit(2.75, "meters"),
  6909. weight: math.unit(1200, "lb"),
  6910. name: "Front",
  6911. image: {
  6912. source: "./media/characters/teal/front.svg",
  6913. extra: 2463 / 2320,
  6914. bottom: 166 / 2629
  6915. }
  6916. },
  6917. back: {
  6918. height: math.unit(2.75, "meters"),
  6919. weight: math.unit(1200, "lb"),
  6920. name: "Back",
  6921. image: {
  6922. source: "./media/characters/teal/back.svg",
  6923. extra: 2580 / 2489,
  6924. bottom: 151 / 2731
  6925. }
  6926. },
  6927. sitting: {
  6928. height: math.unit(1.9, "meters"),
  6929. weight: math.unit(1200, "lb"),
  6930. name: "Sitting",
  6931. image: {
  6932. source: "./media/characters/teal/sitting.svg",
  6933. extra: 623 / 590,
  6934. bottom: 121 / 744
  6935. }
  6936. },
  6937. standing: {
  6938. height: math.unit(2.75, "meters"),
  6939. weight: math.unit(1200, "lb"),
  6940. name: "Standing",
  6941. image: {
  6942. source: "./media/characters/teal/standing.svg",
  6943. extra: 923 / 893,
  6944. bottom: 60 / 983
  6945. }
  6946. },
  6947. stretching: {
  6948. height: math.unit(3.65, "meters"),
  6949. weight: math.unit(1200, "lb"),
  6950. name: "Stretching",
  6951. image: {
  6952. source: "./media/characters/teal/stretching.svg",
  6953. extra: 1276 / 1244,
  6954. bottom: 0 / 1276
  6955. }
  6956. },
  6957. legged: {
  6958. height: math.unit(1.3, "meters"),
  6959. weight: math.unit(100, "lb"),
  6960. name: "Legged",
  6961. image: {
  6962. source: "./media/characters/teal/legged.svg",
  6963. extra: 462 / 437,
  6964. bottom: 24 / 486
  6965. }
  6966. },
  6967. naga: {
  6968. height: math.unit(5.4, "meters"),
  6969. weight: math.unit(4000, "lb"),
  6970. name: "Naga",
  6971. image: {
  6972. source: "./media/characters/teal/naga.svg",
  6973. extra: 1902 / 1858,
  6974. bottom: 0 / 1902
  6975. }
  6976. },
  6977. hand: {
  6978. height: math.unit(0.52, "meters"),
  6979. name: "Hand",
  6980. image: {
  6981. source: "./media/characters/teal/hand.svg"
  6982. }
  6983. },
  6984. maw: {
  6985. height: math.unit(0.43, "meters"),
  6986. name: "Maw",
  6987. image: {
  6988. source: "./media/characters/teal/maw.svg"
  6989. }
  6990. },
  6991. slit: {
  6992. height: math.unit(0.25, "meters"),
  6993. name: "Slit",
  6994. image: {
  6995. source: "./media/characters/teal/slit.svg"
  6996. }
  6997. },
  6998. },
  6999. [
  7000. {
  7001. name: "Normal",
  7002. height: math.unit(2.75, "meters"),
  7003. default: true
  7004. },
  7005. {
  7006. name: "Macro",
  7007. height: math.unit(300, "feet")
  7008. },
  7009. {
  7010. name: "Macro+",
  7011. height: math.unit(2000, "feet")
  7012. },
  7013. ]
  7014. ))
  7015. characterMakers.push(() => makeCharacter(
  7016. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7017. {
  7018. frontCat: {
  7019. height: math.unit(6, "feet"),
  7020. weight: math.unit(180, "lbs"),
  7021. name: "Front (Cat)",
  7022. image: {
  7023. source: "./media/characters/ravin-amulet/front-cat.svg"
  7024. }
  7025. },
  7026. frontCatAlt: {
  7027. height: math.unit(6, "feet"),
  7028. weight: math.unit(180, "lbs"),
  7029. name: "Front (Alt, Cat)",
  7030. image: {
  7031. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7032. }
  7033. },
  7034. frontWerewolf: {
  7035. height: math.unit(6 * 1.2, "feet"),
  7036. weight: math.unit(225, "lbs"),
  7037. name: "Front (Werewolf)",
  7038. image: {
  7039. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7040. }
  7041. },
  7042. backWerewolf: {
  7043. height: math.unit(6 * 1.2, "feet"),
  7044. weight: math.unit(225, "lbs"),
  7045. name: "Back (Werewolf)",
  7046. image: {
  7047. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7048. }
  7049. },
  7050. },
  7051. [
  7052. {
  7053. name: "Nano",
  7054. height: math.unit(1, "micrometer")
  7055. },
  7056. {
  7057. name: "Micro",
  7058. height: math.unit(1, "inch")
  7059. },
  7060. {
  7061. name: "Normal",
  7062. height: math.unit(6, "feet"),
  7063. default: true
  7064. },
  7065. {
  7066. name: "Macro",
  7067. height: math.unit(60, "feet")
  7068. }
  7069. ]
  7070. ))
  7071. characterMakers.push(() => makeCharacter(
  7072. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7073. {
  7074. front: {
  7075. height: math.unit(6, "feet"),
  7076. weight: math.unit(165, "lbs"),
  7077. name: "Front",
  7078. image: {
  7079. source: "./media/characters/fluoresce/front.svg"
  7080. }
  7081. }
  7082. },
  7083. [
  7084. {
  7085. name: "Micro",
  7086. height: math.unit(6, "cm")
  7087. },
  7088. {
  7089. name: "Normal",
  7090. height: math.unit(5 + 7 / 12, "feet"),
  7091. default: true
  7092. },
  7093. {
  7094. name: "Macro",
  7095. height: math.unit(56, "feet")
  7096. },
  7097. {
  7098. name: "Megamacro",
  7099. height: math.unit(1.9, "miles")
  7100. },
  7101. ]
  7102. ))
  7103. characterMakers.push(() => makeCharacter(
  7104. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7105. {
  7106. front: {
  7107. height: math.unit(9 + 6 / 12, "feet"),
  7108. weight: math.unit(523, "lbs"),
  7109. name: "Side",
  7110. image: {
  7111. source: "./media/characters/aurora/side.svg"
  7112. }
  7113. }
  7114. },
  7115. [
  7116. {
  7117. name: "Normal",
  7118. height: math.unit(9 + 6 / 12, "feet")
  7119. },
  7120. {
  7121. name: "Macro",
  7122. height: math.unit(96, "feet"),
  7123. default: true
  7124. },
  7125. {
  7126. name: "Macro+",
  7127. height: math.unit(243, "feet")
  7128. },
  7129. ]
  7130. ))
  7131. characterMakers.push(() => makeCharacter(
  7132. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7133. {
  7134. front: {
  7135. height: math.unit(194, "cm"),
  7136. weight: math.unit(90, "kg"),
  7137. name: "Front",
  7138. image: {
  7139. source: "./media/characters/ranek/front.svg"
  7140. }
  7141. },
  7142. side: {
  7143. height: math.unit(194, "cm"),
  7144. weight: math.unit(90, "kg"),
  7145. name: "Side",
  7146. image: {
  7147. source: "./media/characters/ranek/side.svg"
  7148. }
  7149. },
  7150. back: {
  7151. height: math.unit(194, "cm"),
  7152. weight: math.unit(90, "kg"),
  7153. name: "Back",
  7154. image: {
  7155. source: "./media/characters/ranek/back.svg"
  7156. }
  7157. },
  7158. feral: {
  7159. height: math.unit(30, "cm"),
  7160. weight: math.unit(1.6, "lbs"),
  7161. name: "Feral",
  7162. image: {
  7163. source: "./media/characters/ranek/feral.svg"
  7164. }
  7165. },
  7166. },
  7167. [
  7168. {
  7169. name: "Normal",
  7170. height: math.unit(194, "cm"),
  7171. default: true
  7172. },
  7173. {
  7174. name: "Macro",
  7175. height: math.unit(100, "meters")
  7176. },
  7177. ]
  7178. ))
  7179. characterMakers.push(() => makeCharacter(
  7180. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7181. {
  7182. front: {
  7183. height: math.unit(5 + 6 / 12, "feet"),
  7184. weight: math.unit(153, "lbs"),
  7185. name: "Front",
  7186. image: {
  7187. source: "./media/characters/andrew-cooper/front.svg"
  7188. }
  7189. },
  7190. },
  7191. [
  7192. {
  7193. name: "Nano",
  7194. height: math.unit(1, "mm")
  7195. },
  7196. {
  7197. name: "Micro",
  7198. height: math.unit(2, "inches")
  7199. },
  7200. {
  7201. name: "Normal",
  7202. height: math.unit(5 + 6 / 12, "feet"),
  7203. default: true
  7204. }
  7205. ]
  7206. ))
  7207. characterMakers.push(() => makeCharacter(
  7208. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7209. {
  7210. front: {
  7211. height: math.unit(6, "feet"),
  7212. weight: math.unit(180, "lbs"),
  7213. name: "Front",
  7214. image: {
  7215. source: "./media/characters/akane-sato/front.svg",
  7216. extra: 1219 / 1140
  7217. }
  7218. },
  7219. back: {
  7220. height: math.unit(6, "feet"),
  7221. weight: math.unit(180, "lbs"),
  7222. name: "Back",
  7223. image: {
  7224. source: "./media/characters/akane-sato/back.svg",
  7225. extra: 1219 / 1170
  7226. }
  7227. },
  7228. },
  7229. [
  7230. {
  7231. name: "Normal",
  7232. height: math.unit(2.5, "meters")
  7233. },
  7234. {
  7235. name: "Macro",
  7236. height: math.unit(250, "meters"),
  7237. default: true
  7238. },
  7239. {
  7240. name: "Megamacro",
  7241. height: math.unit(25, "km")
  7242. },
  7243. ]
  7244. ))
  7245. characterMakers.push(() => makeCharacter(
  7246. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7247. {
  7248. front: {
  7249. height: math.unit(6, "feet"),
  7250. weight: math.unit(65, "kg"),
  7251. name: "Front",
  7252. image: {
  7253. source: "./media/characters/rook/front.svg",
  7254. extra: 960 / 950
  7255. }
  7256. }
  7257. },
  7258. [
  7259. {
  7260. name: "Normal",
  7261. height: math.unit(8.8, "feet")
  7262. },
  7263. {
  7264. name: "Macro",
  7265. height: math.unit(88, "feet"),
  7266. default: true
  7267. },
  7268. {
  7269. name: "Megamacro",
  7270. height: math.unit(8, "miles")
  7271. },
  7272. ]
  7273. ))
  7274. characterMakers.push(() => makeCharacter(
  7275. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7276. {
  7277. front: {
  7278. height: math.unit(12 + 2 / 12, "feet"),
  7279. weight: math.unit(808, "lbs"),
  7280. name: "Front",
  7281. image: {
  7282. source: "./media/characters/prodigy/front.svg"
  7283. }
  7284. }
  7285. },
  7286. [
  7287. {
  7288. name: "Normal",
  7289. height: math.unit(12 + 2 / 12, "feet"),
  7290. default: true
  7291. },
  7292. {
  7293. name: "Macro",
  7294. height: math.unit(143, "feet")
  7295. },
  7296. {
  7297. name: "Macro+",
  7298. height: math.unit(400, "feet")
  7299. },
  7300. ]
  7301. ))
  7302. characterMakers.push(() => makeCharacter(
  7303. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7304. {
  7305. front: {
  7306. height: math.unit(6, "feet"),
  7307. weight: math.unit(225, "lbs"),
  7308. name: "Front",
  7309. image: {
  7310. source: "./media/characters/daniel/front.svg"
  7311. }
  7312. },
  7313. leaning: {
  7314. height: math.unit(6, "feet"),
  7315. weight: math.unit(225, "lbs"),
  7316. name: "Leaning",
  7317. image: {
  7318. source: "./media/characters/daniel/leaning.svg"
  7319. }
  7320. },
  7321. },
  7322. [
  7323. {
  7324. name: "Macro",
  7325. height: math.unit(1000, "feet"),
  7326. default: true
  7327. },
  7328. ]
  7329. ))
  7330. characterMakers.push(() => makeCharacter(
  7331. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7332. {
  7333. front: {
  7334. height: math.unit(6, "feet"),
  7335. weight: math.unit(88, "lbs"),
  7336. name: "Front",
  7337. image: {
  7338. source: "./media/characters/chiros/front.svg",
  7339. extra: 306 / 226
  7340. }
  7341. },
  7342. side: {
  7343. height: math.unit(6, "feet"),
  7344. weight: math.unit(88, "lbs"),
  7345. name: "Side",
  7346. image: {
  7347. source: "./media/characters/chiros/side.svg",
  7348. extra: 306 / 226
  7349. }
  7350. },
  7351. },
  7352. [
  7353. {
  7354. name: "Normal",
  7355. height: math.unit(6, "cm"),
  7356. default: true
  7357. },
  7358. ]
  7359. ))
  7360. characterMakers.push(() => makeCharacter(
  7361. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7362. {
  7363. front: {
  7364. height: math.unit(6, "feet"),
  7365. weight: math.unit(100, "lbs"),
  7366. name: "Front",
  7367. image: {
  7368. source: "./media/characters/selka/front.svg",
  7369. extra: 947 / 887
  7370. }
  7371. }
  7372. },
  7373. [
  7374. {
  7375. name: "Normal",
  7376. height: math.unit(5, "cm"),
  7377. default: true
  7378. },
  7379. ]
  7380. ))
  7381. characterMakers.push(() => makeCharacter(
  7382. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7383. {
  7384. front: {
  7385. height: math.unit(8 + 3 / 12, "feet"),
  7386. weight: math.unit(424, "lbs"),
  7387. name: "Front",
  7388. image: {
  7389. source: "./media/characters/verin/front.svg",
  7390. extra: 1845 / 1550
  7391. }
  7392. },
  7393. frontArmored: {
  7394. height: math.unit(8 + 3 / 12, "feet"),
  7395. weight: math.unit(424, "lbs"),
  7396. name: "Front (Armored)",
  7397. image: {
  7398. source: "./media/characters/verin/front-armor.svg",
  7399. extra: 1845 / 1550,
  7400. bottom: 0.01
  7401. }
  7402. },
  7403. back: {
  7404. height: math.unit(8 + 3 / 12, "feet"),
  7405. weight: math.unit(424, "lbs"),
  7406. name: "Back",
  7407. image: {
  7408. source: "./media/characters/verin/back.svg",
  7409. bottom: 0.1,
  7410. extra: 1
  7411. }
  7412. },
  7413. foot: {
  7414. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7415. name: "Foot",
  7416. image: {
  7417. source: "./media/characters/verin/foot.svg"
  7418. }
  7419. },
  7420. },
  7421. [
  7422. {
  7423. name: "Normal",
  7424. height: math.unit(8 + 3 / 12, "feet")
  7425. },
  7426. {
  7427. name: "Minimacro",
  7428. height: math.unit(21, "feet"),
  7429. default: true
  7430. },
  7431. {
  7432. name: "Macro",
  7433. height: math.unit(626, "feet")
  7434. },
  7435. ]
  7436. ))
  7437. characterMakers.push(() => makeCharacter(
  7438. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7439. {
  7440. front: {
  7441. height: math.unit(2.718, "meters"),
  7442. weight: math.unit(150, "lbs"),
  7443. name: "Front",
  7444. image: {
  7445. source: "./media/characters/sovrim-terraquian/front.svg"
  7446. }
  7447. },
  7448. back: {
  7449. height: math.unit(2.718, "meters"),
  7450. weight: math.unit(150, "lbs"),
  7451. name: "Back",
  7452. image: {
  7453. source: "./media/characters/sovrim-terraquian/back.svg"
  7454. }
  7455. }
  7456. },
  7457. [
  7458. {
  7459. name: "Micro",
  7460. height: math.unit(2, "inches")
  7461. },
  7462. {
  7463. name: "Small",
  7464. height: math.unit(1, "meter")
  7465. },
  7466. {
  7467. name: "Normal",
  7468. height: math.unit(Math.E, "meters"),
  7469. default: true
  7470. },
  7471. {
  7472. name: "Macro",
  7473. height: math.unit(20, "meters")
  7474. },
  7475. {
  7476. name: "Macro+",
  7477. height: math.unit(400, "meters")
  7478. },
  7479. ]
  7480. ))
  7481. characterMakers.push(() => makeCharacter(
  7482. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7483. {
  7484. front: {
  7485. height: math.unit(7, "feet"),
  7486. weight: math.unit(489, "lbs"),
  7487. name: "Front",
  7488. image: {
  7489. source: "./media/characters/reece-silvermane/front.svg",
  7490. bottom: 0.02,
  7491. extra: 1
  7492. }
  7493. },
  7494. },
  7495. [
  7496. {
  7497. name: "Macro",
  7498. height: math.unit(1.5, "miles"),
  7499. default: true
  7500. },
  7501. ]
  7502. ))
  7503. characterMakers.push(() => makeCharacter(
  7504. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7505. {
  7506. front: {
  7507. height: math.unit(6, "feet"),
  7508. weight: math.unit(78, "kg"),
  7509. name: "Front",
  7510. image: {
  7511. source: "./media/characters/kane/front.svg",
  7512. extra: 978 / 899
  7513. }
  7514. },
  7515. },
  7516. [
  7517. {
  7518. name: "Normal",
  7519. height: math.unit(2.1, "m"),
  7520. },
  7521. {
  7522. name: "Macro",
  7523. height: math.unit(1, "km"),
  7524. default: true
  7525. },
  7526. ]
  7527. ))
  7528. characterMakers.push(() => makeCharacter(
  7529. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7530. {
  7531. front: {
  7532. height: math.unit(6, "feet"),
  7533. weight: math.unit(200, "kg"),
  7534. name: "Front",
  7535. image: {
  7536. source: "./media/characters/tegon/front.svg",
  7537. bottom: 0.01,
  7538. extra: 1
  7539. }
  7540. },
  7541. },
  7542. [
  7543. {
  7544. name: "Micro",
  7545. height: math.unit(1, "inch")
  7546. },
  7547. {
  7548. name: "Normal",
  7549. height: math.unit(6 + 3 / 12, "feet"),
  7550. default: true
  7551. },
  7552. {
  7553. name: "Macro",
  7554. height: math.unit(300, "feet")
  7555. },
  7556. {
  7557. name: "Megamacro",
  7558. height: math.unit(69, "miles")
  7559. },
  7560. ]
  7561. ))
  7562. characterMakers.push(() => makeCharacter(
  7563. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7564. {
  7565. side: {
  7566. height: math.unit(6, "feet"),
  7567. weight: math.unit(2304, "lbs"),
  7568. name: "Side",
  7569. image: {
  7570. source: "./media/characters/arcturax/side.svg",
  7571. extra: 790 / 376,
  7572. bottom: 0.01
  7573. }
  7574. },
  7575. },
  7576. [
  7577. {
  7578. name: "Micro",
  7579. height: math.unit(2, "inch")
  7580. },
  7581. {
  7582. name: "Normal",
  7583. height: math.unit(6, "feet")
  7584. },
  7585. {
  7586. name: "Macro",
  7587. height: math.unit(39, "feet"),
  7588. default: true
  7589. },
  7590. {
  7591. name: "Megamacro",
  7592. height: math.unit(7, "miles")
  7593. },
  7594. ]
  7595. ))
  7596. characterMakers.push(() => makeCharacter(
  7597. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7598. {
  7599. front: {
  7600. height: math.unit(6, "feet"),
  7601. weight: math.unit(50, "lbs"),
  7602. name: "Front",
  7603. image: {
  7604. source: "./media/characters/sentri/front.svg",
  7605. extra: 1750 / 1570,
  7606. bottom: 0.025
  7607. }
  7608. },
  7609. frontAlt: {
  7610. height: math.unit(6, "feet"),
  7611. weight: math.unit(50, "lbs"),
  7612. name: "Front (Alt)",
  7613. image: {
  7614. source: "./media/characters/sentri/front-alt.svg",
  7615. extra: 1750 / 1570,
  7616. bottom: 0.025
  7617. }
  7618. },
  7619. },
  7620. [
  7621. {
  7622. name: "Normal",
  7623. height: math.unit(15, "feet"),
  7624. default: true
  7625. },
  7626. {
  7627. name: "Macro",
  7628. height: math.unit(2500, "feet")
  7629. }
  7630. ]
  7631. ))
  7632. characterMakers.push(() => makeCharacter(
  7633. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7634. {
  7635. front: {
  7636. height: math.unit(5 + 8 / 12, "feet"),
  7637. weight: math.unit(130, "lbs"),
  7638. name: "Front",
  7639. image: {
  7640. source: "./media/characters/corvin/front.svg",
  7641. extra: 1803 / 1629
  7642. }
  7643. },
  7644. frontShirt: {
  7645. height: math.unit(5 + 8 / 12, "feet"),
  7646. weight: math.unit(130, "lbs"),
  7647. name: "Front (Shirt)",
  7648. image: {
  7649. source: "./media/characters/corvin/front-shirt.svg",
  7650. extra: 1803 / 1629
  7651. }
  7652. },
  7653. frontPoncho: {
  7654. height: math.unit(5 + 8 / 12, "feet"),
  7655. weight: math.unit(130, "lbs"),
  7656. name: "Front (Poncho)",
  7657. image: {
  7658. source: "./media/characters/corvin/front-poncho.svg",
  7659. extra: 1803 / 1629
  7660. }
  7661. },
  7662. side: {
  7663. height: math.unit(5 + 8 / 12, "feet"),
  7664. weight: math.unit(130, "lbs"),
  7665. name: "Side",
  7666. image: {
  7667. source: "./media/characters/corvin/side.svg",
  7668. extra: 1012 / 945
  7669. }
  7670. },
  7671. back: {
  7672. height: math.unit(5 + 8 / 12, "feet"),
  7673. weight: math.unit(130, "lbs"),
  7674. name: "Back",
  7675. image: {
  7676. source: "./media/characters/corvin/back.svg",
  7677. extra: 1803 / 1629
  7678. }
  7679. },
  7680. },
  7681. [
  7682. {
  7683. name: "Micro",
  7684. height: math.unit(3, "inches")
  7685. },
  7686. {
  7687. name: "Normal",
  7688. height: math.unit(5 + 8 / 12, "feet")
  7689. },
  7690. {
  7691. name: "Macro",
  7692. height: math.unit(300, "feet"),
  7693. default: true
  7694. },
  7695. {
  7696. name: "Megamacro",
  7697. height: math.unit(500, "miles")
  7698. }
  7699. ]
  7700. ))
  7701. characterMakers.push(() => makeCharacter(
  7702. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7703. {
  7704. front: {
  7705. height: math.unit(6, "feet"),
  7706. weight: math.unit(135, "lbs"),
  7707. name: "Front",
  7708. image: {
  7709. source: "./media/characters/q/front.svg",
  7710. extra: 854 / 752,
  7711. bottom: 0.005
  7712. }
  7713. },
  7714. back: {
  7715. height: math.unit(6, "feet"),
  7716. weight: math.unit(130, "lbs"),
  7717. name: "Back",
  7718. image: {
  7719. source: "./media/characters/q/back.svg",
  7720. extra: 854 / 752
  7721. }
  7722. },
  7723. },
  7724. [
  7725. {
  7726. name: "Macro",
  7727. height: math.unit(90, "feet"),
  7728. default: true
  7729. },
  7730. {
  7731. name: "Extra Macro",
  7732. height: math.unit(300, "feet"),
  7733. },
  7734. {
  7735. name: "BIG WALF",
  7736. height: math.unit(750, "feet"),
  7737. },
  7738. ]
  7739. ))
  7740. characterMakers.push(() => makeCharacter(
  7741. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7742. {
  7743. front: {
  7744. height: math.unit(6, "feet"),
  7745. weight: math.unit(150, "lbs"),
  7746. name: "Front",
  7747. image: {
  7748. source: "./media/characters/carley/front.svg",
  7749. extra: 3927 / 3540,
  7750. bottom: 29.2 / 735
  7751. }
  7752. }
  7753. },
  7754. [
  7755. {
  7756. name: "Normal",
  7757. height: math.unit(6 + 3 / 12, "feet")
  7758. },
  7759. {
  7760. name: "Macro",
  7761. height: math.unit(185, "feet"),
  7762. default: true
  7763. },
  7764. {
  7765. name: "Megamacro",
  7766. height: math.unit(8, "miles"),
  7767. },
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7772. {
  7773. front: {
  7774. height: math.unit(3, "feet"),
  7775. weight: math.unit(28, "lbs"),
  7776. name: "Front",
  7777. image: {
  7778. source: "./media/characters/citrine/front.svg"
  7779. }
  7780. }
  7781. },
  7782. [
  7783. {
  7784. name: "Normal",
  7785. height: math.unit(3, "feet"),
  7786. default: true
  7787. }
  7788. ]
  7789. ))
  7790. characterMakers.push(() => makeCharacter(
  7791. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7792. {
  7793. front: {
  7794. height: math.unit(14, "feet"),
  7795. weight: math.unit(1450, "kg"),
  7796. capacity: math.unit(15, "people"),
  7797. name: "Front",
  7798. image: {
  7799. source: "./media/characters/aura-starwind/front.svg",
  7800. extra: 1455 / 1335
  7801. }
  7802. },
  7803. side: {
  7804. height: math.unit(14, "feet"),
  7805. weight: math.unit(1450, "kg"),
  7806. capacity: math.unit(15, "people"),
  7807. name: "Side",
  7808. image: {
  7809. source: "./media/characters/aura-starwind/side.svg",
  7810. extra: 1654 / 1497
  7811. }
  7812. },
  7813. taur: {
  7814. height: math.unit(18, "feet"),
  7815. weight: math.unit(5500, "kg"),
  7816. capacity: math.unit(50, "people"),
  7817. name: "Taur",
  7818. image: {
  7819. source: "./media/characters/aura-starwind/taur.svg",
  7820. extra: 1760 / 1650
  7821. }
  7822. },
  7823. feral: {
  7824. height: math.unit(46, "feet"),
  7825. weight: math.unit(25000, "kg"),
  7826. capacity: math.unit(120, "people"),
  7827. name: "Feral",
  7828. image: {
  7829. source: "./media/characters/aura-starwind/feral.svg"
  7830. }
  7831. },
  7832. },
  7833. [
  7834. {
  7835. name: "Normal",
  7836. height: math.unit(14, "feet"),
  7837. default: true
  7838. },
  7839. {
  7840. name: "Macro",
  7841. height: math.unit(50, "meters")
  7842. },
  7843. {
  7844. name: "Megamacro",
  7845. height: math.unit(5000, "meters")
  7846. },
  7847. {
  7848. name: "Gigamacro",
  7849. height: math.unit(100000, "kilometers")
  7850. },
  7851. ]
  7852. ))
  7853. characterMakers.push(() => makeCharacter(
  7854. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7855. {
  7856. front: {
  7857. height: math.unit(2 + 7 / 12, "feet"),
  7858. weight: math.unit(32, "lbs"),
  7859. name: "Front",
  7860. image: {
  7861. source: "./media/characters/rivet/front.svg",
  7862. extra: 1716 / 1658,
  7863. bottom: 0.03
  7864. }
  7865. },
  7866. foot: {
  7867. height: math.unit(0.551, "feet"),
  7868. name: "Rivet's Foot",
  7869. image: {
  7870. source: "./media/characters/rivet/foot.svg"
  7871. },
  7872. rename: true
  7873. }
  7874. },
  7875. [
  7876. {
  7877. name: "Micro",
  7878. height: math.unit(1.5, "inches"),
  7879. },
  7880. {
  7881. name: "Normal",
  7882. height: math.unit(2 + 7 / 12, "feet"),
  7883. default: true
  7884. },
  7885. {
  7886. name: "Macro",
  7887. height: math.unit(85, "feet")
  7888. },
  7889. {
  7890. name: "Megamacro",
  7891. height: math.unit(2.2, "km")
  7892. }
  7893. ]
  7894. ))
  7895. characterMakers.push(() => makeCharacter(
  7896. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7897. {
  7898. front: {
  7899. height: math.unit(5 + 9 / 12, "feet"),
  7900. weight: math.unit(150, "lbs"),
  7901. name: "Front",
  7902. image: {
  7903. source: "./media/characters/coffee/front.svg",
  7904. extra: 3666 / 3032,
  7905. bottom: 0.04
  7906. }
  7907. },
  7908. foot: {
  7909. height: math.unit(1.29, "feet"),
  7910. name: "Foot",
  7911. image: {
  7912. source: "./media/characters/coffee/foot.svg"
  7913. }
  7914. },
  7915. },
  7916. [
  7917. {
  7918. name: "Micro",
  7919. height: math.unit(2, "inches"),
  7920. },
  7921. {
  7922. name: "Normal",
  7923. height: math.unit(5 + 9 / 12, "feet"),
  7924. default: true
  7925. },
  7926. {
  7927. name: "Macro",
  7928. height: math.unit(800, "feet")
  7929. },
  7930. {
  7931. name: "Megamacro",
  7932. height: math.unit(25, "miles")
  7933. }
  7934. ]
  7935. ))
  7936. characterMakers.push(() => makeCharacter(
  7937. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7938. {
  7939. front: {
  7940. height: math.unit(6, "feet"),
  7941. weight: math.unit(200, "lbs"),
  7942. name: "Front",
  7943. image: {
  7944. source: "./media/characters/chari-gal/front.svg",
  7945. extra: 1568 / 1385,
  7946. bottom: 0.047
  7947. }
  7948. },
  7949. gigantamax: {
  7950. height: math.unit(6 * 16, "feet"),
  7951. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7952. name: "Gigantamax",
  7953. image: {
  7954. source: "./media/characters/chari-gal/gigantamax.svg",
  7955. extra: 1124 / 888,
  7956. bottom: 0.03
  7957. }
  7958. },
  7959. },
  7960. [
  7961. {
  7962. name: "Normal",
  7963. height: math.unit(5 + 7 / 12, "feet")
  7964. },
  7965. {
  7966. name: "Macro",
  7967. height: math.unit(200, "feet"),
  7968. default: true
  7969. }
  7970. ]
  7971. ))
  7972. characterMakers.push(() => makeCharacter(
  7973. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7974. {
  7975. front: {
  7976. height: math.unit(6, "feet"),
  7977. weight: math.unit(150, "lbs"),
  7978. name: "Front",
  7979. image: {
  7980. source: "./media/characters/nova/front.svg",
  7981. extra: 5000 / 4722,
  7982. bottom: 0.02
  7983. }
  7984. }
  7985. },
  7986. [
  7987. {
  7988. name: "Micro-",
  7989. height: math.unit(0.8, "inches")
  7990. },
  7991. {
  7992. name: "Micro",
  7993. height: math.unit(2, "inches"),
  7994. default: true
  7995. },
  7996. ]
  7997. ))
  7998. characterMakers.push(() => makeCharacter(
  7999. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  8000. {
  8001. front: {
  8002. height: math.unit(3 + 1 / 12, "feet"),
  8003. weight: math.unit(21.7, "lbs"),
  8004. name: "Front",
  8005. image: {
  8006. source: "./media/characters/argent/front.svg",
  8007. extra: 1471 / 1331,
  8008. bottom: 100.8 / 1575.5
  8009. }
  8010. }
  8011. },
  8012. [
  8013. {
  8014. name: "Micro",
  8015. height: math.unit(2, "inches")
  8016. },
  8017. {
  8018. name: "Normal",
  8019. height: math.unit(3 + 1 / 12, "feet"),
  8020. default: true
  8021. },
  8022. {
  8023. name: "Macro",
  8024. height: math.unit(120, "feet")
  8025. },
  8026. ]
  8027. ))
  8028. characterMakers.push(() => makeCharacter(
  8029. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8030. {
  8031. lamp: {
  8032. height: math.unit(7 * 1559 / 989, "feet"),
  8033. name: "Magic Lamp",
  8034. image: {
  8035. source: "./media/characters/mira-al-cul/lamp.svg",
  8036. extra: 1617 / 1559
  8037. }
  8038. },
  8039. front: {
  8040. height: math.unit(7, "feet"),
  8041. name: "Front",
  8042. image: {
  8043. source: "./media/characters/mira-al-cul/front.svg",
  8044. extra: 1044 / 990
  8045. }
  8046. },
  8047. },
  8048. [
  8049. {
  8050. name: "Heavily Restricted",
  8051. height: math.unit(7 * 1559 / 989, "feet")
  8052. },
  8053. {
  8054. name: "Freshly Freed",
  8055. height: math.unit(50 * 1559 / 989, "feet")
  8056. },
  8057. {
  8058. name: "World Encompassing",
  8059. height: math.unit(10000 * 1559 / 989, "miles")
  8060. },
  8061. {
  8062. name: "Galactic",
  8063. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8064. },
  8065. {
  8066. name: "Palmed Universe",
  8067. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8068. default: true
  8069. },
  8070. {
  8071. name: "Multiversal Matriarch",
  8072. height: math.unit(8.87e10, "yottameters")
  8073. },
  8074. {
  8075. name: "Void Mother",
  8076. height: math.unit(3.14e110, "yottaparsecs")
  8077. },
  8078. {
  8079. name: "Toying with Transcendence",
  8080. height: math.unit(1e307, "meters")
  8081. },
  8082. ]
  8083. ))
  8084. characterMakers.push(() => makeCharacter(
  8085. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8086. {
  8087. front: {
  8088. height: math.unit(17 + 1 / 12, "feet"),
  8089. weight: math.unit(476.2 * 5, "lbs"),
  8090. name: "Front",
  8091. image: {
  8092. source: "./media/characters/kuro-shi-uchū/front.svg",
  8093. extra: 2329 / 1835,
  8094. bottom: 0.02
  8095. }
  8096. },
  8097. },
  8098. [
  8099. {
  8100. name: "Micro",
  8101. height: math.unit(2, "inches")
  8102. },
  8103. {
  8104. name: "Normal",
  8105. height: math.unit(12, "meters")
  8106. },
  8107. {
  8108. name: "Planetary",
  8109. height: math.unit(0.00929, "AU"),
  8110. default: true
  8111. },
  8112. {
  8113. name: "Universal",
  8114. height: math.unit(20, "gigaparsecs")
  8115. },
  8116. ]
  8117. ))
  8118. characterMakers.push(() => makeCharacter(
  8119. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8120. {
  8121. front: {
  8122. height: math.unit(5 + 2 / 12, "feet"),
  8123. weight: math.unit(120, "lbs"),
  8124. name: "Front",
  8125. image: {
  8126. source: "./media/characters/katherine/front.svg",
  8127. extra: 2075 / 1969
  8128. }
  8129. },
  8130. dress: {
  8131. height: math.unit(5 + 2 / 12, "feet"),
  8132. weight: math.unit(120, "lbs"),
  8133. name: "Dress",
  8134. image: {
  8135. source: "./media/characters/katherine/dress.svg",
  8136. extra: 2258 / 2064
  8137. }
  8138. },
  8139. },
  8140. [
  8141. {
  8142. name: "Micro",
  8143. height: math.unit(1, "inches"),
  8144. default: true
  8145. },
  8146. {
  8147. name: "Normal",
  8148. height: math.unit(5 + 2 / 12, "feet")
  8149. },
  8150. {
  8151. name: "Macro",
  8152. height: math.unit(100, "meters")
  8153. },
  8154. {
  8155. name: "Megamacro",
  8156. height: math.unit(80, "miles")
  8157. },
  8158. ]
  8159. ))
  8160. characterMakers.push(() => makeCharacter(
  8161. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8162. {
  8163. front: {
  8164. height: math.unit(7 + 8 / 12, "feet"),
  8165. weight: math.unit(250, "lbs"),
  8166. name: "Front",
  8167. image: {
  8168. source: "./media/characters/yevis/front.svg",
  8169. extra: 1938 / 1755
  8170. }
  8171. }
  8172. },
  8173. [
  8174. {
  8175. name: "Mortal",
  8176. height: math.unit(7 + 8 / 12, "feet")
  8177. },
  8178. {
  8179. name: "Battle",
  8180. height: math.unit(25 + 11 / 12, "feet")
  8181. },
  8182. {
  8183. name: "Wrath",
  8184. height: math.unit(1654 + 11 / 12, "feet")
  8185. },
  8186. {
  8187. name: "Planet Destroyer",
  8188. height: math.unit(12000, "miles")
  8189. },
  8190. {
  8191. name: "Galaxy Conqueror",
  8192. height: math.unit(1.45, "zettameters"),
  8193. default: true
  8194. },
  8195. {
  8196. name: "Universal War",
  8197. height: math.unit(184, "gigaparsecs")
  8198. },
  8199. {
  8200. name: "Eternity War",
  8201. height: math.unit(1.98e55, "yottaparsecs")
  8202. },
  8203. ]
  8204. ))
  8205. characterMakers.push(() => makeCharacter(
  8206. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8207. {
  8208. front: {
  8209. height: math.unit(5 + 8 / 12, "feet"),
  8210. weight: math.unit(63, "kg"),
  8211. name: "Front",
  8212. image: {
  8213. source: "./media/characters/xavier/front.svg",
  8214. extra: 944 / 883
  8215. }
  8216. },
  8217. frontStretch: {
  8218. height: math.unit(5 + 8 / 12, "feet"),
  8219. weight: math.unit(63, "kg"),
  8220. name: "Stretching",
  8221. image: {
  8222. source: "./media/characters/xavier/front-stretch.svg",
  8223. extra: 962 / 820
  8224. }
  8225. },
  8226. },
  8227. [
  8228. {
  8229. name: "Normal",
  8230. height: math.unit(5 + 8 / 12, "feet")
  8231. },
  8232. {
  8233. name: "Macro",
  8234. height: math.unit(100, "meters"),
  8235. default: true
  8236. },
  8237. {
  8238. name: "McLargeHuge",
  8239. height: math.unit(10, "miles")
  8240. },
  8241. ]
  8242. ))
  8243. characterMakers.push(() => makeCharacter(
  8244. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8245. {
  8246. front: {
  8247. height: math.unit(5 + 5 / 12, "feet"),
  8248. weight: math.unit(150, "lb"),
  8249. name: "Front",
  8250. image: {
  8251. source: "./media/characters/joshii/front.svg",
  8252. extra: 765 / 653,
  8253. bottom: 51 / 816
  8254. }
  8255. },
  8256. foot: {
  8257. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8258. name: "Foot",
  8259. image: {
  8260. source: "./media/characters/joshii/foot.svg"
  8261. }
  8262. },
  8263. },
  8264. [
  8265. {
  8266. name: "Micro",
  8267. height: math.unit(2, "inches"),
  8268. default: true
  8269. },
  8270. {
  8271. name: "Normal",
  8272. height: math.unit(5 + 5 / 12, "feet")
  8273. },
  8274. {
  8275. name: "Macro",
  8276. height: math.unit(785, "feet")
  8277. },
  8278. {
  8279. name: "Megamacro",
  8280. height: math.unit(24.5, "miles")
  8281. },
  8282. ]
  8283. ))
  8284. characterMakers.push(() => makeCharacter(
  8285. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8286. {
  8287. front: {
  8288. height: math.unit(6, "feet"),
  8289. weight: math.unit(150, "lb"),
  8290. name: "Front",
  8291. image: {
  8292. source: "./media/characters/goddess-elizabeth/front.svg",
  8293. extra: 1800 / 1525,
  8294. bottom: 0.005
  8295. }
  8296. },
  8297. foot: {
  8298. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8299. name: "Foot",
  8300. image: {
  8301. source: "./media/characters/goddess-elizabeth/foot.svg"
  8302. }
  8303. },
  8304. mouth: {
  8305. height: math.unit(6, "feet"),
  8306. name: "Mouth",
  8307. image: {
  8308. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8309. }
  8310. },
  8311. },
  8312. [
  8313. {
  8314. name: "Micro",
  8315. height: math.unit(12, "feet")
  8316. },
  8317. {
  8318. name: "Normal",
  8319. height: math.unit(80, "miles"),
  8320. default: true
  8321. },
  8322. {
  8323. name: "Macro",
  8324. height: math.unit(15000, "parsecs")
  8325. },
  8326. ]
  8327. ))
  8328. characterMakers.push(() => makeCharacter(
  8329. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8330. {
  8331. front: {
  8332. height: math.unit(5 + 9 / 12, "feet"),
  8333. weight: math.unit(144, "lb"),
  8334. name: "Front",
  8335. image: {
  8336. source: "./media/characters/kara/front.svg"
  8337. }
  8338. },
  8339. feet: {
  8340. height: math.unit(6 / 6.765, "feet"),
  8341. name: "Kara's Feet",
  8342. rename: true,
  8343. image: {
  8344. source: "./media/characters/kara/feet.svg"
  8345. }
  8346. },
  8347. },
  8348. [
  8349. {
  8350. name: "Normal",
  8351. height: math.unit(5 + 9 / 12, "feet")
  8352. },
  8353. {
  8354. name: "Macro",
  8355. height: math.unit(174, "feet"),
  8356. default: true
  8357. },
  8358. ]
  8359. ))
  8360. characterMakers.push(() => makeCharacter(
  8361. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8362. {
  8363. front: {
  8364. height: math.unit(18, "feet"),
  8365. weight: math.unit(4050, "lb"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/tyrone/front.svg",
  8369. extra: 2405 / 2270,
  8370. bottom: 182 / 2587
  8371. }
  8372. },
  8373. },
  8374. [
  8375. {
  8376. name: "Normal",
  8377. height: math.unit(18, "feet"),
  8378. default: true
  8379. },
  8380. {
  8381. name: "Macro",
  8382. height: math.unit(300, "feet")
  8383. },
  8384. {
  8385. name: "Megamacro",
  8386. height: math.unit(15, "km")
  8387. },
  8388. {
  8389. name: "Gigamacro",
  8390. height: math.unit(500, "km")
  8391. },
  8392. {
  8393. name: "Teramacro",
  8394. height: math.unit(0.5, "gigameters")
  8395. },
  8396. {
  8397. name: "Omnimacro",
  8398. height: math.unit(1e252, "yottauniverse")
  8399. },
  8400. ]
  8401. ))
  8402. characterMakers.push(() => makeCharacter(
  8403. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8404. {
  8405. front: {
  8406. height: math.unit(7 + 8 / 12, "feet"),
  8407. weight: math.unit(120, "lb"),
  8408. name: "Front",
  8409. image: {
  8410. source: "./media/characters/danny/front.svg",
  8411. extra: 1490 / 1350
  8412. }
  8413. },
  8414. back: {
  8415. height: math.unit(7 + 8 / 12, "feet"),
  8416. weight: math.unit(120, "lb"),
  8417. name: "Back",
  8418. image: {
  8419. source: "./media/characters/danny/back.svg",
  8420. extra: 1490 / 1350
  8421. }
  8422. },
  8423. },
  8424. [
  8425. {
  8426. name: "Normal",
  8427. height: math.unit(7 + 8 / 12, "feet"),
  8428. default: true
  8429. },
  8430. ]
  8431. ))
  8432. characterMakers.push(() => makeCharacter(
  8433. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8434. {
  8435. front: {
  8436. height: math.unit(3.5, "inches"),
  8437. weight: math.unit(19, "grams"),
  8438. name: "Front",
  8439. image: {
  8440. source: "./media/characters/mallow/front.svg",
  8441. extra: 471 / 431
  8442. }
  8443. },
  8444. back: {
  8445. height: math.unit(3.5, "inches"),
  8446. weight: math.unit(19, "grams"),
  8447. name: "Back",
  8448. image: {
  8449. source: "./media/characters/mallow/back.svg",
  8450. extra: 471 / 431
  8451. }
  8452. },
  8453. },
  8454. [
  8455. {
  8456. name: "Normal",
  8457. height: math.unit(3.5, "inches"),
  8458. default: true
  8459. },
  8460. ]
  8461. ))
  8462. characterMakers.push(() => makeCharacter(
  8463. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8464. {
  8465. front: {
  8466. height: math.unit(9, "feet"),
  8467. weight: math.unit(230, "kg"),
  8468. name: "Front",
  8469. image: {
  8470. source: "./media/characters/starry-aqua/front.svg"
  8471. }
  8472. },
  8473. back: {
  8474. height: math.unit(9, "feet"),
  8475. weight: math.unit(230, "kg"),
  8476. name: "Back",
  8477. image: {
  8478. source: "./media/characters/starry-aqua/back.svg"
  8479. }
  8480. },
  8481. hand: {
  8482. height: math.unit(9 * 0.1168, "feet"),
  8483. name: "Hand",
  8484. image: {
  8485. source: "./media/characters/starry-aqua/hand.svg"
  8486. }
  8487. },
  8488. foot: {
  8489. height: math.unit(9 * 0.18, "feet"),
  8490. name: "Foot",
  8491. image: {
  8492. source: "./media/characters/starry-aqua/foot.svg"
  8493. }
  8494. }
  8495. },
  8496. [
  8497. {
  8498. name: "Micro",
  8499. height: math.unit(3, "inches")
  8500. },
  8501. {
  8502. name: "Normal",
  8503. height: math.unit(9, "feet")
  8504. },
  8505. {
  8506. name: "Macro",
  8507. height: math.unit(300, "feet"),
  8508. default: true
  8509. },
  8510. {
  8511. name: "Megamacro",
  8512. height: math.unit(3200, "feet")
  8513. }
  8514. ]
  8515. ))
  8516. characterMakers.push(() => makeCharacter(
  8517. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8518. {
  8519. front: {
  8520. height: math.unit(6, "feet"),
  8521. weight: math.unit(230, "lb"),
  8522. name: "Front",
  8523. image: {
  8524. source: "./media/characters/luka/front.svg",
  8525. extra: 1,
  8526. bottom: 0.025
  8527. }
  8528. },
  8529. },
  8530. [
  8531. {
  8532. name: "Normal",
  8533. height: math.unit(12 + 8 / 12, "feet"),
  8534. default: true
  8535. },
  8536. {
  8537. name: "Minimacro",
  8538. height: math.unit(20, "feet")
  8539. },
  8540. {
  8541. name: "Macro",
  8542. height: math.unit(250, "feet")
  8543. },
  8544. {
  8545. name: "Megamacro",
  8546. height: math.unit(5, "miles")
  8547. },
  8548. {
  8549. name: "Gigamacro",
  8550. height: math.unit(8000, "miles")
  8551. },
  8552. ]
  8553. ))
  8554. characterMakers.push(() => makeCharacter(
  8555. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8556. {
  8557. front: {
  8558. height: math.unit(6, "feet"),
  8559. weight: math.unit(150, "lb"),
  8560. name: "Front",
  8561. image: {
  8562. source: "./media/characters/natalie-nightring/front.svg",
  8563. extra: 1,
  8564. bottom: 0.06
  8565. }
  8566. },
  8567. },
  8568. [
  8569. {
  8570. name: "Uh Oh",
  8571. height: math.unit(0.1, "mm")
  8572. },
  8573. {
  8574. name: "Small",
  8575. height: math.unit(3, "inches")
  8576. },
  8577. {
  8578. name: "Human Scale",
  8579. height: math.unit(6, "feet")
  8580. },
  8581. {
  8582. name: "Librarian",
  8583. height: math.unit(50, "feet"),
  8584. default: true
  8585. },
  8586. {
  8587. name: "Immense",
  8588. height: math.unit(200, "miles")
  8589. },
  8590. ]
  8591. ))
  8592. characterMakers.push(() => makeCharacter(
  8593. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8594. {
  8595. front: {
  8596. height: math.unit(6, "feet"),
  8597. weight: math.unit(180, "lbs"),
  8598. name: "Front",
  8599. image: {
  8600. source: "./media/characters/danni-rosie/front.svg",
  8601. extra: 1260 / 1128,
  8602. bottom: 0.022
  8603. }
  8604. },
  8605. },
  8606. [
  8607. {
  8608. name: "Micro",
  8609. height: math.unit(2, "inches"),
  8610. default: true
  8611. },
  8612. ]
  8613. ))
  8614. characterMakers.push(() => makeCharacter(
  8615. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8616. {
  8617. front: {
  8618. height: math.unit(5 + 9 / 12, "feet"),
  8619. weight: math.unit(220, "lb"),
  8620. name: "Front",
  8621. image: {
  8622. source: "./media/characters/samantha-kruse/front.svg",
  8623. extra: (985 / 935),
  8624. bottom: 0.03
  8625. }
  8626. },
  8627. frontUndressed: {
  8628. height: math.unit(5 + 9 / 12, "feet"),
  8629. weight: math.unit(220, "lb"),
  8630. name: "Front (Undressed)",
  8631. image: {
  8632. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8633. extra: (973 / 923),
  8634. bottom: 0.025
  8635. }
  8636. },
  8637. fat: {
  8638. height: math.unit(5 + 9 / 12, "feet"),
  8639. weight: math.unit(900, "lb"),
  8640. name: "Front (Fat)",
  8641. image: {
  8642. source: "./media/characters/samantha-kruse/fat.svg",
  8643. extra: 2688 / 2561
  8644. }
  8645. },
  8646. },
  8647. [
  8648. {
  8649. name: "Normal",
  8650. height: math.unit(5 + 9 / 12, "feet"),
  8651. default: true
  8652. }
  8653. ]
  8654. ))
  8655. characterMakers.push(() => makeCharacter(
  8656. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8657. {
  8658. back: {
  8659. height: math.unit(5 + 4 / 12, "feet"),
  8660. weight: math.unit(4963, "lb"),
  8661. name: "Back",
  8662. image: {
  8663. source: "./media/characters/amelia-rosie/back.svg",
  8664. extra: 1113 / 963,
  8665. bottom: 0.01
  8666. }
  8667. },
  8668. },
  8669. [
  8670. {
  8671. name: "Level 0",
  8672. height: math.unit(5 + 4 / 12, "feet")
  8673. },
  8674. {
  8675. name: "Level 1",
  8676. height: math.unit(164597, "feet"),
  8677. default: true
  8678. },
  8679. {
  8680. name: "Level 2",
  8681. height: math.unit(956243, "miles")
  8682. },
  8683. {
  8684. name: "Level 3",
  8685. height: math.unit(29421709423, "miles")
  8686. },
  8687. {
  8688. name: "Level 4",
  8689. height: math.unit(154, "lightyears")
  8690. },
  8691. {
  8692. name: "Level 5",
  8693. height: math.unit(4738272, "lightyears")
  8694. },
  8695. {
  8696. name: "Level 6",
  8697. height: math.unit(145787152896, "lightyears")
  8698. },
  8699. ]
  8700. ))
  8701. characterMakers.push(() => makeCharacter(
  8702. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8703. {
  8704. front: {
  8705. height: math.unit(5 + 11 / 12, "feet"),
  8706. weight: math.unit(65, "kg"),
  8707. name: "Front",
  8708. image: {
  8709. source: "./media/characters/rook-kitara/front.svg",
  8710. extra: 1347 / 1274,
  8711. bottom: 0.005
  8712. }
  8713. },
  8714. },
  8715. [
  8716. {
  8717. name: "Totally Unfair",
  8718. height: math.unit(1.8, "mm")
  8719. },
  8720. {
  8721. name: "Lap Rookie",
  8722. height: math.unit(1.4, "feet")
  8723. },
  8724. {
  8725. name: "Normal",
  8726. height: math.unit(5 + 11 / 12, "feet"),
  8727. default: true
  8728. },
  8729. {
  8730. name: "How Did This Happen",
  8731. height: math.unit(80, "miles")
  8732. }
  8733. ]
  8734. ))
  8735. characterMakers.push(() => makeCharacter(
  8736. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8737. {
  8738. front: {
  8739. height: math.unit(7, "feet"),
  8740. weight: math.unit(300, "lb"),
  8741. name: "Front",
  8742. image: {
  8743. source: "./media/characters/pisces/front.svg",
  8744. extra: 2255 / 2115,
  8745. bottom: 0.03
  8746. }
  8747. },
  8748. back: {
  8749. height: math.unit(7, "feet"),
  8750. weight: math.unit(300, "lb"),
  8751. name: "Back",
  8752. image: {
  8753. source: "./media/characters/pisces/back.svg",
  8754. extra: 2146 / 2055,
  8755. bottom: 0.04
  8756. }
  8757. },
  8758. },
  8759. [
  8760. {
  8761. name: "Normal",
  8762. height: math.unit(7, "feet"),
  8763. default: true
  8764. },
  8765. {
  8766. name: "Swimming Pool",
  8767. height: math.unit(12.2, "meters")
  8768. },
  8769. {
  8770. name: "Olympic Swimming Pool",
  8771. height: math.unit(56.3, "meters")
  8772. },
  8773. {
  8774. name: "Lake Superior",
  8775. height: math.unit(93900, "meters")
  8776. },
  8777. {
  8778. name: "Mediterranean Sea",
  8779. height: math.unit(644457, "meters")
  8780. },
  8781. {
  8782. name: "World's Oceans",
  8783. height: math.unit(4567491, "meters")
  8784. },
  8785. ]
  8786. ))
  8787. characterMakers.push(() => makeCharacter(
  8788. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8789. {
  8790. front: {
  8791. height: math.unit(2.3, "meters"),
  8792. weight: math.unit(120, "kg"),
  8793. name: "Front",
  8794. image: {
  8795. source: "./media/characters/zelas/front.svg"
  8796. }
  8797. },
  8798. side: {
  8799. height: math.unit(2.3, "meters"),
  8800. weight: math.unit(120, "kg"),
  8801. name: "Side",
  8802. image: {
  8803. source: "./media/characters/zelas/side.svg"
  8804. }
  8805. },
  8806. back: {
  8807. height: math.unit(2.3, "meters"),
  8808. weight: math.unit(120, "kg"),
  8809. name: "Back",
  8810. image: {
  8811. source: "./media/characters/zelas/back.svg"
  8812. }
  8813. },
  8814. foot: {
  8815. height: math.unit(1.116, "feet"),
  8816. name: "Foot",
  8817. image: {
  8818. source: "./media/characters/zelas/foot.svg"
  8819. }
  8820. },
  8821. },
  8822. [
  8823. {
  8824. name: "Normal",
  8825. height: math.unit(2.3, "meters")
  8826. },
  8827. {
  8828. name: "Macro",
  8829. height: math.unit(30, "meters"),
  8830. default: true
  8831. },
  8832. ]
  8833. ))
  8834. characterMakers.push(() => makeCharacter(
  8835. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8836. {
  8837. front: {
  8838. height: math.unit(1, "inch"),
  8839. weight: math.unit(0.21, "grams"),
  8840. name: "Front",
  8841. image: {
  8842. source: "./media/characters/talbot/front.svg",
  8843. extra: 594 / 544
  8844. }
  8845. },
  8846. },
  8847. [
  8848. {
  8849. name: "Micro",
  8850. height: math.unit(1, "inch"),
  8851. default: true
  8852. },
  8853. ]
  8854. ))
  8855. characterMakers.push(() => makeCharacter(
  8856. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8857. {
  8858. front: {
  8859. height: math.unit(3 + 3 / 12, "feet"),
  8860. weight: math.unit(51.8, "lb"),
  8861. name: "Front",
  8862. image: {
  8863. source: "./media/characters/fliss/front.svg",
  8864. extra: 840 / 640
  8865. }
  8866. },
  8867. },
  8868. [
  8869. {
  8870. name: "Teeny Tiny",
  8871. height: math.unit(1, "mm")
  8872. },
  8873. {
  8874. name: "Small",
  8875. height: math.unit(1, "inch"),
  8876. default: true
  8877. },
  8878. {
  8879. name: "Standard Sylveon",
  8880. height: math.unit(3 + 3 / 12, "feet")
  8881. },
  8882. {
  8883. name: "Large Nuisance",
  8884. height: math.unit(33, "feet")
  8885. },
  8886. {
  8887. name: "City Filler",
  8888. height: math.unit(3000, "feet")
  8889. },
  8890. {
  8891. name: "New Horizon",
  8892. height: math.unit(6000, "miles")
  8893. },
  8894. ]
  8895. ))
  8896. characterMakers.push(() => makeCharacter(
  8897. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8898. {
  8899. front: {
  8900. height: math.unit(5, "cm"),
  8901. weight: math.unit(1.94, "g"),
  8902. name: "Front",
  8903. image: {
  8904. source: "./media/characters/fleta/front.svg",
  8905. extra: 835 / 803
  8906. }
  8907. },
  8908. back: {
  8909. height: math.unit(5, "cm"),
  8910. weight: math.unit(1.94, "g"),
  8911. name: "Back",
  8912. image: {
  8913. source: "./media/characters/fleta/back.svg",
  8914. extra: 835 / 803
  8915. }
  8916. },
  8917. },
  8918. [
  8919. {
  8920. name: "Micro",
  8921. height: math.unit(5, "cm"),
  8922. default: true
  8923. },
  8924. ]
  8925. ))
  8926. characterMakers.push(() => makeCharacter(
  8927. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8928. {
  8929. front: {
  8930. height: math.unit(6, "feet"),
  8931. weight: math.unit(225, "lb"),
  8932. name: "Front",
  8933. image: {
  8934. source: "./media/characters/dominic/front.svg",
  8935. extra: 1770 / 1620,
  8936. bottom: 0.025
  8937. }
  8938. },
  8939. back: {
  8940. height: math.unit(6, "feet"),
  8941. weight: math.unit(225, "lb"),
  8942. name: "Back",
  8943. image: {
  8944. source: "./media/characters/dominic/back.svg",
  8945. extra: 1745 / 1620,
  8946. bottom: 0.065
  8947. }
  8948. },
  8949. },
  8950. [
  8951. {
  8952. name: "Nano",
  8953. height: math.unit(0.1, "mm")
  8954. },
  8955. {
  8956. name: "Micro-",
  8957. height: math.unit(1, "mm")
  8958. },
  8959. {
  8960. name: "Micro",
  8961. height: math.unit(4, "inches")
  8962. },
  8963. {
  8964. name: "Normal",
  8965. height: math.unit(6 + 4 / 12, "feet"),
  8966. default: true
  8967. },
  8968. {
  8969. name: "Macro",
  8970. height: math.unit(115, "feet")
  8971. },
  8972. {
  8973. name: "Macro+",
  8974. height: math.unit(955, "feet")
  8975. },
  8976. {
  8977. name: "Megamacro",
  8978. height: math.unit(8990, "feet")
  8979. },
  8980. {
  8981. name: "Gigmacro",
  8982. height: math.unit(9310, "miles")
  8983. },
  8984. {
  8985. name: "Teramacro",
  8986. height: math.unit(1567005010, "miles")
  8987. },
  8988. {
  8989. name: "Examacro",
  8990. height: math.unit(1425, "parsecs")
  8991. },
  8992. ]
  8993. ))
  8994. characterMakers.push(() => makeCharacter(
  8995. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8996. {
  8997. front: {
  8998. height: math.unit(400, "feet"),
  8999. weight: math.unit(44444444, "lb"),
  9000. name: "Front",
  9001. image: {
  9002. source: "./media/characters/major-colonel/front.svg"
  9003. }
  9004. },
  9005. back: {
  9006. height: math.unit(400, "feet"),
  9007. weight: math.unit(44444444, "lb"),
  9008. name: "Back",
  9009. image: {
  9010. source: "./media/characters/major-colonel/back.svg"
  9011. }
  9012. },
  9013. },
  9014. [
  9015. {
  9016. name: "Macro",
  9017. height: math.unit(400, "feet"),
  9018. default: true
  9019. },
  9020. ]
  9021. ))
  9022. characterMakers.push(() => makeCharacter(
  9023. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9024. {
  9025. catFront: {
  9026. height: math.unit(6, "feet"),
  9027. weight: math.unit(120, "lb"),
  9028. name: "Front (Cat Side)",
  9029. image: {
  9030. source: "./media/characters/axel-lycan/cat-front.svg",
  9031. extra: 430 / 402,
  9032. bottom: 43 / 472.35
  9033. }
  9034. },
  9035. catBack: {
  9036. height: math.unit(6, "feet"),
  9037. weight: math.unit(120, "lb"),
  9038. name: "Back (Cat Side)",
  9039. image: {
  9040. source: "./media/characters/axel-lycan/cat-back.svg",
  9041. extra: 447 / 419,
  9042. bottom: 23.3 / 469
  9043. }
  9044. },
  9045. wolfFront: {
  9046. height: math.unit(6, "feet"),
  9047. weight: math.unit(120, "lb"),
  9048. name: "Front (Wolf Side)",
  9049. image: {
  9050. source: "./media/characters/axel-lycan/wolf-front.svg",
  9051. extra: 485 / 456,
  9052. bottom: 19 / 504
  9053. }
  9054. },
  9055. wolfBack: {
  9056. height: math.unit(6, "feet"),
  9057. weight: math.unit(120, "lb"),
  9058. name: "Back (Wolf Side)",
  9059. image: {
  9060. source: "./media/characters/axel-lycan/wolf-back.svg",
  9061. extra: 475 / 438,
  9062. bottom: 39.2 / 514
  9063. }
  9064. },
  9065. },
  9066. [
  9067. {
  9068. name: "Macro",
  9069. height: math.unit(1, "km"),
  9070. default: true
  9071. },
  9072. ]
  9073. ))
  9074. characterMakers.push(() => makeCharacter(
  9075. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9076. {
  9077. front: {
  9078. height: math.unit(5 + 9 / 12, "feet"),
  9079. weight: math.unit(175, "lb"),
  9080. name: "Front",
  9081. image: {
  9082. source: "./media/characters/vanrel-hyena/front.svg",
  9083. extra: 1086 / 1010,
  9084. bottom: 0.04
  9085. }
  9086. },
  9087. },
  9088. [
  9089. {
  9090. name: "Normal",
  9091. height: math.unit(5 + 9 / 12, "feet"),
  9092. default: true
  9093. },
  9094. ]
  9095. ))
  9096. characterMakers.push(() => makeCharacter(
  9097. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9098. {
  9099. front: {
  9100. height: math.unit(6, "feet"),
  9101. weight: math.unit(103, "lb"),
  9102. name: "Front",
  9103. image: {
  9104. source: "./media/characters/abbott-absol/front.svg",
  9105. extra: 2010 / 1842
  9106. }
  9107. },
  9108. },
  9109. [
  9110. {
  9111. name: "Megamicro",
  9112. height: math.unit(0.1, "mm")
  9113. },
  9114. {
  9115. name: "Micro",
  9116. height: math.unit(1, "inch")
  9117. },
  9118. {
  9119. name: "Normal",
  9120. height: math.unit(6, "feet"),
  9121. default: true
  9122. },
  9123. ]
  9124. ))
  9125. characterMakers.push(() => makeCharacter(
  9126. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9127. {
  9128. front: {
  9129. height: math.unit(6, "feet"),
  9130. weight: math.unit(264, "lb"),
  9131. name: "Front",
  9132. image: {
  9133. source: "./media/characters/hector/front.svg",
  9134. extra: 2280 / 2130,
  9135. bottom: 0.07
  9136. }
  9137. },
  9138. },
  9139. [
  9140. {
  9141. name: "Normal",
  9142. height: math.unit(12.25, "foot"),
  9143. default: true
  9144. },
  9145. {
  9146. name: "Macro",
  9147. height: math.unit(160, "feet")
  9148. },
  9149. ]
  9150. ))
  9151. characterMakers.push(() => makeCharacter(
  9152. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9153. {
  9154. front: {
  9155. height: math.unit(6, "feet"),
  9156. weight: math.unit(150, "lb"),
  9157. name: "Front",
  9158. image: {
  9159. source: "./media/characters/sal/front.svg",
  9160. extra: 1846 / 1699,
  9161. bottom: 0.04
  9162. }
  9163. },
  9164. },
  9165. [
  9166. {
  9167. name: "Megamacro",
  9168. height: math.unit(10, "miles"),
  9169. default: true
  9170. },
  9171. ]
  9172. ))
  9173. characterMakers.push(() => makeCharacter(
  9174. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9175. {
  9176. front: {
  9177. height: math.unit(3, "meters"),
  9178. weight: math.unit(450, "kg"),
  9179. name: "front",
  9180. image: {
  9181. source: "./media/characters/ranger/front.svg",
  9182. extra: 2401 / 2243,
  9183. bottom: 0.05
  9184. }
  9185. },
  9186. },
  9187. [
  9188. {
  9189. name: "Normal",
  9190. height: math.unit(3, "meters"),
  9191. default: true
  9192. },
  9193. ]
  9194. ))
  9195. characterMakers.push(() => makeCharacter(
  9196. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9197. {
  9198. front: {
  9199. height: math.unit(14, "feet"),
  9200. weight: math.unit(800, "kg"),
  9201. name: "Front",
  9202. image: {
  9203. source: "./media/characters/theresa/front.svg",
  9204. extra: 3575 / 3346,
  9205. bottom: 0.03
  9206. }
  9207. },
  9208. },
  9209. [
  9210. {
  9211. name: "Normal",
  9212. height: math.unit(14, "feet"),
  9213. default: true
  9214. },
  9215. ]
  9216. ))
  9217. characterMakers.push(() => makeCharacter(
  9218. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9219. {
  9220. front: {
  9221. height: math.unit(6, "feet"),
  9222. weight: math.unit(3, "kg"),
  9223. name: "Front",
  9224. image: {
  9225. source: "./media/characters/ine/front.svg",
  9226. extra: 678 / 539,
  9227. bottom: 0.023
  9228. }
  9229. },
  9230. },
  9231. [
  9232. {
  9233. name: "Normal",
  9234. height: math.unit(2.265, "feet"),
  9235. default: true
  9236. },
  9237. ]
  9238. ))
  9239. characterMakers.push(() => makeCharacter(
  9240. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9241. {
  9242. front: {
  9243. height: math.unit(5, "feet"),
  9244. weight: math.unit(30, "kg"),
  9245. name: "Front",
  9246. image: {
  9247. source: "./media/characters/vial/front.svg",
  9248. extra: 1365 / 1277,
  9249. bottom: 0.04
  9250. }
  9251. },
  9252. },
  9253. [
  9254. {
  9255. name: "Normal",
  9256. height: math.unit(5, "feet"),
  9257. default: true
  9258. },
  9259. ]
  9260. ))
  9261. characterMakers.push(() => makeCharacter(
  9262. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9263. {
  9264. side: {
  9265. height: math.unit(3.4, "meters"),
  9266. weight: math.unit(1000, "lb"),
  9267. name: "Side",
  9268. image: {
  9269. source: "./media/characters/rovoska/side.svg",
  9270. extra: 4403 / 1515
  9271. }
  9272. },
  9273. },
  9274. [
  9275. {
  9276. name: "Normal",
  9277. height: math.unit(3.4, "meters"),
  9278. default: true
  9279. },
  9280. ]
  9281. ))
  9282. characterMakers.push(() => makeCharacter(
  9283. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9284. {
  9285. front: {
  9286. height: math.unit(8, "feet"),
  9287. weight: math.unit(315, "lb"),
  9288. name: "Front",
  9289. image: {
  9290. source: "./media/characters/gunner-rotthbauer/front.svg"
  9291. }
  9292. },
  9293. back: {
  9294. height: math.unit(8, "feet"),
  9295. weight: math.unit(315, "lb"),
  9296. name: "Back",
  9297. image: {
  9298. source: "./media/characters/gunner-rotthbauer/back.svg"
  9299. }
  9300. },
  9301. },
  9302. [
  9303. {
  9304. name: "Micro",
  9305. height: math.unit(3.5, "inches")
  9306. },
  9307. {
  9308. name: "Normal",
  9309. height: math.unit(8, "feet"),
  9310. default: true
  9311. },
  9312. {
  9313. name: "Macro",
  9314. height: math.unit(250, "feet")
  9315. },
  9316. {
  9317. name: "Megamacro",
  9318. height: math.unit(1, "AU")
  9319. },
  9320. ]
  9321. ))
  9322. characterMakers.push(() => makeCharacter(
  9323. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9324. {
  9325. front: {
  9326. height: math.unit(5 + 5 / 12, "feet"),
  9327. weight: math.unit(140, "lb"),
  9328. name: "Front",
  9329. image: {
  9330. source: "./media/characters/allatia/front.svg",
  9331. extra: 1227 / 1180,
  9332. bottom: 0.027
  9333. }
  9334. },
  9335. },
  9336. [
  9337. {
  9338. name: "Normal",
  9339. height: math.unit(5 + 5 / 12, "feet")
  9340. },
  9341. {
  9342. name: "Macro",
  9343. height: math.unit(250, "feet"),
  9344. default: true
  9345. },
  9346. {
  9347. name: "Megamacro",
  9348. height: math.unit(8, "miles")
  9349. }
  9350. ]
  9351. ))
  9352. characterMakers.push(() => makeCharacter(
  9353. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9354. {
  9355. front: {
  9356. height: math.unit(6, "feet"),
  9357. weight: math.unit(120, "lb"),
  9358. name: "Front",
  9359. image: {
  9360. source: "./media/characters/tene/front.svg",
  9361. extra: 1728 / 1578,
  9362. bottom: 0.022
  9363. }
  9364. },
  9365. stomping: {
  9366. height: math.unit(2.025, "meters"),
  9367. weight: math.unit(120, "lb"),
  9368. name: "Stomping",
  9369. image: {
  9370. source: "./media/characters/tene/stomping.svg",
  9371. extra: 938 / 873,
  9372. bottom: 0.01
  9373. }
  9374. },
  9375. sitting: {
  9376. height: math.unit(1, "meter"),
  9377. weight: math.unit(120, "lb"),
  9378. name: "Sitting",
  9379. image: {
  9380. source: "./media/characters/tene/sitting.svg",
  9381. extra: 437 / 415,
  9382. bottom: 0.1
  9383. }
  9384. },
  9385. feral: {
  9386. height: math.unit(3.9, "feet"),
  9387. weight: math.unit(250, "lb"),
  9388. name: "Feral",
  9389. image: {
  9390. source: "./media/characters/tene/feral.svg",
  9391. extra: 717 / 458,
  9392. bottom: 0.179
  9393. }
  9394. },
  9395. },
  9396. [
  9397. {
  9398. name: "Normal",
  9399. height: math.unit(6, "feet")
  9400. },
  9401. {
  9402. name: "Macro",
  9403. height: math.unit(300, "feet"),
  9404. default: true
  9405. },
  9406. {
  9407. name: "Megamacro",
  9408. height: math.unit(5, "miles")
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9414. {
  9415. side: {
  9416. height: math.unit(6, "feet"),
  9417. name: "Side",
  9418. image: {
  9419. source: "./media/characters/evander/side.svg",
  9420. extra: 877 / 477
  9421. }
  9422. },
  9423. },
  9424. [
  9425. {
  9426. name: "Normal",
  9427. height: math.unit(0.83, "meters"),
  9428. default: true
  9429. },
  9430. ]
  9431. ))
  9432. characterMakers.push(() => makeCharacter(
  9433. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9434. {
  9435. front: {
  9436. height: math.unit(12, "feet"),
  9437. weight: math.unit(1000, "lb"),
  9438. name: "Front",
  9439. image: {
  9440. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9441. extra: 1762 / 1611
  9442. }
  9443. },
  9444. back: {
  9445. height: math.unit(12, "feet"),
  9446. weight: math.unit(1000, "lb"),
  9447. name: "Back",
  9448. image: {
  9449. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9450. extra: 1762 / 1611
  9451. }
  9452. },
  9453. },
  9454. [
  9455. {
  9456. name: "Normal",
  9457. height: math.unit(12, "feet"),
  9458. default: true
  9459. },
  9460. {
  9461. name: "Kaiju",
  9462. height: math.unit(150, "feet")
  9463. },
  9464. ]
  9465. ))
  9466. characterMakers.push(() => makeCharacter(
  9467. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9468. {
  9469. front: {
  9470. height: math.unit(6, "feet"),
  9471. weight: math.unit(150, "lb"),
  9472. name: "Front",
  9473. image: {
  9474. source: "./media/characters/zero-alurus/front.svg"
  9475. }
  9476. },
  9477. back: {
  9478. height: math.unit(6, "feet"),
  9479. weight: math.unit(150, "lb"),
  9480. name: "Back",
  9481. image: {
  9482. source: "./media/characters/zero-alurus/back.svg"
  9483. }
  9484. },
  9485. },
  9486. [
  9487. {
  9488. name: "Normal",
  9489. height: math.unit(5 + 10 / 12, "feet")
  9490. },
  9491. {
  9492. name: "Macro",
  9493. height: math.unit(60, "feet"),
  9494. default: true
  9495. },
  9496. {
  9497. name: "Macro+",
  9498. height: math.unit(450, "feet")
  9499. },
  9500. ]
  9501. ))
  9502. characterMakers.push(() => makeCharacter(
  9503. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9504. {
  9505. front: {
  9506. height: math.unit(6, "feet"),
  9507. weight: math.unit(200, "lb"),
  9508. name: "Front",
  9509. image: {
  9510. source: "./media/characters/mega-shi/front.svg",
  9511. extra: 1279 / 1250,
  9512. bottom: 0.02
  9513. }
  9514. },
  9515. back: {
  9516. height: math.unit(6, "feet"),
  9517. weight: math.unit(200, "lb"),
  9518. name: "Back",
  9519. image: {
  9520. source: "./media/characters/mega-shi/back.svg",
  9521. extra: 1279 / 1250,
  9522. bottom: 0.02
  9523. }
  9524. },
  9525. },
  9526. [
  9527. {
  9528. name: "Micro",
  9529. height: math.unit(16 + 6 / 12, "feet")
  9530. },
  9531. {
  9532. name: "Third Dimension",
  9533. height: math.unit(40, "meters")
  9534. },
  9535. {
  9536. name: "Normal",
  9537. height: math.unit(660, "feet"),
  9538. default: true
  9539. },
  9540. {
  9541. name: "Megamacro",
  9542. height: math.unit(10, "miles")
  9543. },
  9544. {
  9545. name: "Planetary Launch",
  9546. height: math.unit(500, "miles")
  9547. },
  9548. {
  9549. name: "Interstellar",
  9550. height: math.unit(1e9, "miles")
  9551. },
  9552. {
  9553. name: "Leaving the Universe",
  9554. height: math.unit(1, "gigaparsec")
  9555. },
  9556. {
  9557. name: "Travelling Universes",
  9558. height: math.unit(30e15, "parsecs")
  9559. },
  9560. ]
  9561. ))
  9562. characterMakers.push(() => makeCharacter(
  9563. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9564. {
  9565. front: {
  9566. height: math.unit(6, "feet"),
  9567. weight: math.unit(150, "lb"),
  9568. name: "Front",
  9569. image: {
  9570. source: "./media/characters/odyssey/front.svg",
  9571. extra: 1782 / 1582,
  9572. bottom: 0.01
  9573. }
  9574. },
  9575. side: {
  9576. height: math.unit(5.7, "feet"),
  9577. weight: math.unit(140, "lb"),
  9578. name: "Side",
  9579. image: {
  9580. source: "./media/characters/odyssey/side.svg",
  9581. extra: 6462 / 5700
  9582. }
  9583. },
  9584. },
  9585. [
  9586. {
  9587. name: "Normal",
  9588. height: math.unit(5 + 4 / 12, "feet")
  9589. },
  9590. {
  9591. name: "Macro",
  9592. height: math.unit(1, "km")
  9593. },
  9594. {
  9595. name: "Megamacro",
  9596. height: math.unit(3000, "km")
  9597. },
  9598. {
  9599. name: "Gigamacro",
  9600. height: math.unit(1, "AU"),
  9601. default: true
  9602. },
  9603. {
  9604. name: "Omniversal",
  9605. height: math.unit(100e14, "lightyears")
  9606. },
  9607. ]
  9608. ))
  9609. characterMakers.push(() => makeCharacter(
  9610. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9611. {
  9612. front: {
  9613. height: math.unit(6, "feet"),
  9614. weight: math.unit(300, "lb"),
  9615. name: "Front",
  9616. image: {
  9617. source: "./media/characters/mekuto/front.svg",
  9618. extra: 921 / 832,
  9619. bottom: 0.03
  9620. }
  9621. },
  9622. hand: {
  9623. height: math.unit(6 / 10.24, "feet"),
  9624. name: "Hand",
  9625. image: {
  9626. source: "./media/characters/mekuto/hand.svg"
  9627. }
  9628. },
  9629. foot: {
  9630. height: math.unit(6 / 5.05, "feet"),
  9631. name: "Foot",
  9632. image: {
  9633. source: "./media/characters/mekuto/foot.svg"
  9634. }
  9635. },
  9636. },
  9637. [
  9638. {
  9639. name: "Minimicro",
  9640. height: math.unit(0.2, "inches")
  9641. },
  9642. {
  9643. name: "Micro",
  9644. height: math.unit(1.5, "inches")
  9645. },
  9646. {
  9647. name: "Normal",
  9648. height: math.unit(5 + 11 / 12, "feet"),
  9649. default: true
  9650. },
  9651. {
  9652. name: "Minimacro",
  9653. height: math.unit(17 + 9 / 12, "feet")
  9654. },
  9655. {
  9656. name: "Macro",
  9657. height: math.unit(177.5, "feet")
  9658. },
  9659. {
  9660. name: "Megamacro",
  9661. height: math.unit(152, "miles")
  9662. },
  9663. ]
  9664. ))
  9665. characterMakers.push(() => makeCharacter(
  9666. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9667. {
  9668. front: {
  9669. height: math.unit(6.5, "inches"),
  9670. weight: math.unit(13, "oz"),
  9671. name: "Front",
  9672. image: {
  9673. source: "./media/characters/dafydd-tomos/front.svg",
  9674. extra: 2990 / 2603,
  9675. bottom: 0.03
  9676. }
  9677. },
  9678. },
  9679. [
  9680. {
  9681. name: "Micro",
  9682. height: math.unit(6.5, "inches"),
  9683. default: true
  9684. },
  9685. ]
  9686. ))
  9687. characterMakers.push(() => makeCharacter(
  9688. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9689. {
  9690. front: {
  9691. height: math.unit(6, "feet"),
  9692. weight: math.unit(150, "lb"),
  9693. name: "Front",
  9694. image: {
  9695. source: "./media/characters/splinter/front.svg",
  9696. extra: 2990 / 2882,
  9697. bottom: 0.04
  9698. }
  9699. },
  9700. back: {
  9701. height: math.unit(6, "feet"),
  9702. weight: math.unit(150, "lb"),
  9703. name: "Back",
  9704. image: {
  9705. source: "./media/characters/splinter/back.svg",
  9706. extra: 2990 / 2882,
  9707. bottom: 0.04
  9708. }
  9709. },
  9710. },
  9711. [
  9712. {
  9713. name: "Normal",
  9714. height: math.unit(6, "feet")
  9715. },
  9716. {
  9717. name: "Macro",
  9718. height: math.unit(230, "meters"),
  9719. default: true
  9720. },
  9721. ]
  9722. ))
  9723. characterMakers.push(() => makeCharacter(
  9724. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9725. {
  9726. front: {
  9727. height: math.unit(4 + 10 / 12, "feet"),
  9728. weight: math.unit(480, "lb"),
  9729. name: "Front",
  9730. image: {
  9731. source: "./media/characters/snow-gabumon/front.svg",
  9732. extra: 1140 / 963,
  9733. bottom: 0.058
  9734. }
  9735. },
  9736. back: {
  9737. height: math.unit(4 + 10 / 12, "feet"),
  9738. weight: math.unit(480, "lb"),
  9739. name: "Back",
  9740. image: {
  9741. source: "./media/characters/snow-gabumon/back.svg",
  9742. extra: 1115 / 962,
  9743. bottom: 0.041
  9744. }
  9745. },
  9746. frontUndresed: {
  9747. height: math.unit(4 + 10 / 12, "feet"),
  9748. weight: math.unit(480, "lb"),
  9749. name: "Front (Undressed)",
  9750. image: {
  9751. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9752. extra: 1061 / 960,
  9753. bottom: 0.045
  9754. }
  9755. },
  9756. },
  9757. [
  9758. {
  9759. name: "Micro",
  9760. height: math.unit(1, "inch")
  9761. },
  9762. {
  9763. name: "Normal",
  9764. height: math.unit(4 + 10 / 12, "feet"),
  9765. default: true
  9766. },
  9767. {
  9768. name: "Macro",
  9769. height: math.unit(200, "feet")
  9770. },
  9771. {
  9772. name: "Megamacro",
  9773. height: math.unit(120, "miles")
  9774. },
  9775. {
  9776. name: "Gigamacro",
  9777. height: math.unit(9800, "miles")
  9778. },
  9779. ]
  9780. ))
  9781. characterMakers.push(() => makeCharacter(
  9782. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9783. {
  9784. front: {
  9785. height: math.unit(1.7, "meters"),
  9786. weight: math.unit(140, "lb"),
  9787. name: "Front",
  9788. image: {
  9789. source: "./media/characters/moody/front.svg",
  9790. extra: 3226 / 3007,
  9791. bottom: 0.087
  9792. }
  9793. },
  9794. },
  9795. [
  9796. {
  9797. name: "Micro",
  9798. height: math.unit(1, "mm")
  9799. },
  9800. {
  9801. name: "Normal",
  9802. height: math.unit(1.7, "meters"),
  9803. default: true
  9804. },
  9805. {
  9806. name: "Macro",
  9807. height: math.unit(80, "meters")
  9808. },
  9809. {
  9810. name: "Macro+",
  9811. height: math.unit(500, "meters")
  9812. },
  9813. ]
  9814. ))
  9815. characterMakers.push(() => makeCharacter(
  9816. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9817. {
  9818. front: {
  9819. height: math.unit(6, "feet"),
  9820. weight: math.unit(150, "lb"),
  9821. name: "Front",
  9822. image: {
  9823. source: "./media/characters/zyas/front.svg",
  9824. extra: 1180 / 1120,
  9825. bottom: 0.045
  9826. }
  9827. },
  9828. },
  9829. [
  9830. {
  9831. name: "Normal",
  9832. height: math.unit(10, "feet"),
  9833. default: true
  9834. },
  9835. {
  9836. name: "Macro",
  9837. height: math.unit(500, "feet")
  9838. },
  9839. {
  9840. name: "Megamacro",
  9841. height: math.unit(5, "miles")
  9842. },
  9843. {
  9844. name: "Teramacro",
  9845. height: math.unit(150000, "miles")
  9846. },
  9847. ]
  9848. ))
  9849. characterMakers.push(() => makeCharacter(
  9850. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9851. {
  9852. front: {
  9853. height: math.unit(6, "feet"),
  9854. weight: math.unit(150, "lb"),
  9855. name: "Front",
  9856. image: {
  9857. source: "./media/characters/cuon/front.svg",
  9858. extra: 1390 / 1320,
  9859. bottom: 0.008
  9860. }
  9861. },
  9862. },
  9863. [
  9864. {
  9865. name: "Micro",
  9866. height: math.unit(3, "inches")
  9867. },
  9868. {
  9869. name: "Normal",
  9870. height: math.unit(18 + 9 / 12, "feet"),
  9871. default: true
  9872. },
  9873. {
  9874. name: "Macro",
  9875. height: math.unit(360, "feet")
  9876. },
  9877. {
  9878. name: "Megamacro",
  9879. height: math.unit(360, "miles")
  9880. },
  9881. ]
  9882. ))
  9883. characterMakers.push(() => makeCharacter(
  9884. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9885. {
  9886. front: {
  9887. height: math.unit(2.4, "meters"),
  9888. weight: math.unit(70, "kg"),
  9889. name: "Front",
  9890. image: {
  9891. source: "./media/characters/nyanuxk/front.svg",
  9892. extra: 1172 / 1084,
  9893. bottom: 0.065
  9894. }
  9895. },
  9896. side: {
  9897. height: math.unit(2.4, "meters"),
  9898. weight: math.unit(70, "kg"),
  9899. name: "Side",
  9900. image: {
  9901. source: "./media/characters/nyanuxk/side.svg",
  9902. extra: 1190 / 1132,
  9903. bottom: 0.007
  9904. }
  9905. },
  9906. back: {
  9907. height: math.unit(2.4, "meters"),
  9908. weight: math.unit(70, "kg"),
  9909. name: "Back",
  9910. image: {
  9911. source: "./media/characters/nyanuxk/back.svg",
  9912. extra: 1200 / 1141,
  9913. bottom: 0.015
  9914. }
  9915. },
  9916. foot: {
  9917. height: math.unit(0.52, "meters"),
  9918. name: "Foot",
  9919. image: {
  9920. source: "./media/characters/nyanuxk/foot.svg"
  9921. }
  9922. },
  9923. },
  9924. [
  9925. {
  9926. name: "Micro",
  9927. height: math.unit(2, "cm")
  9928. },
  9929. {
  9930. name: "Normal",
  9931. height: math.unit(2.4, "meters"),
  9932. default: true
  9933. },
  9934. {
  9935. name: "Smaller Macro",
  9936. height: math.unit(120, "meters")
  9937. },
  9938. {
  9939. name: "Bigger Macro",
  9940. height: math.unit(1.2, "km")
  9941. },
  9942. {
  9943. name: "Megamacro",
  9944. height: math.unit(15, "kilometers")
  9945. },
  9946. {
  9947. name: "Gigamacro",
  9948. height: math.unit(2000, "km")
  9949. },
  9950. {
  9951. name: "Teramacro",
  9952. height: math.unit(500000, "km")
  9953. },
  9954. ]
  9955. ))
  9956. characterMakers.push(() => makeCharacter(
  9957. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9958. {
  9959. side: {
  9960. height: math.unit(6, "feet"),
  9961. name: "Side",
  9962. image: {
  9963. source: "./media/characters/ailbhe/side.svg",
  9964. extra: 757 / 464,
  9965. bottom: 0.041
  9966. }
  9967. },
  9968. },
  9969. [
  9970. {
  9971. name: "Normal",
  9972. height: math.unit(1.07, "meters"),
  9973. default: true
  9974. },
  9975. ]
  9976. ))
  9977. characterMakers.push(() => makeCharacter(
  9978. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9979. {
  9980. front: {
  9981. height: math.unit(6, "feet"),
  9982. weight: math.unit(120, "kg"),
  9983. name: "Front",
  9984. image: {
  9985. source: "./media/characters/zevulfius/front.svg",
  9986. extra: 965 / 903
  9987. }
  9988. },
  9989. side: {
  9990. height: math.unit(6, "feet"),
  9991. weight: math.unit(120, "kg"),
  9992. name: "Side",
  9993. image: {
  9994. source: "./media/characters/zevulfius/side.svg",
  9995. extra: 939 / 900
  9996. }
  9997. },
  9998. back: {
  9999. height: math.unit(6, "feet"),
  10000. weight: math.unit(120, "kg"),
  10001. name: "Back",
  10002. image: {
  10003. source: "./media/characters/zevulfius/back.svg",
  10004. extra: 918 / 854,
  10005. bottom: 0.005
  10006. }
  10007. },
  10008. foot: {
  10009. height: math.unit(6 / 3.72, "feet"),
  10010. name: "Foot",
  10011. image: {
  10012. source: "./media/characters/zevulfius/foot.svg"
  10013. }
  10014. },
  10015. },
  10016. [
  10017. {
  10018. name: "Macro",
  10019. height: math.unit(750, "meters")
  10020. },
  10021. {
  10022. name: "Megamacro",
  10023. height: math.unit(20, "km"),
  10024. default: true
  10025. },
  10026. {
  10027. name: "Gigamacro",
  10028. height: math.unit(2000, "km")
  10029. },
  10030. {
  10031. name: "Teramacro",
  10032. height: math.unit(250000, "km")
  10033. },
  10034. ]
  10035. ))
  10036. characterMakers.push(() => makeCharacter(
  10037. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10038. {
  10039. front: {
  10040. height: math.unit(100, "feet"),
  10041. weight: math.unit(350, "kg"),
  10042. name: "Front",
  10043. image: {
  10044. source: "./media/characters/rikes/front.svg",
  10045. extra: 1565 / 1483,
  10046. bottom: 0.017
  10047. }
  10048. },
  10049. },
  10050. [
  10051. {
  10052. name: "Macro",
  10053. height: math.unit(100, "feet"),
  10054. default: true
  10055. },
  10056. ]
  10057. ))
  10058. characterMakers.push(() => makeCharacter(
  10059. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10060. {
  10061. anthro: {
  10062. height: math.unit(8, "feet"),
  10063. weight: math.unit(120, "kg"),
  10064. name: "Anthro",
  10065. image: {
  10066. source: "./media/characters/adam-silver-mane/anthro.svg",
  10067. extra: 5743 / 5339,
  10068. bottom: 0.07
  10069. }
  10070. },
  10071. taur: {
  10072. height: math.unit(16, "feet"),
  10073. weight: math.unit(1500, "kg"),
  10074. name: "Taur",
  10075. image: {
  10076. source: "./media/characters/adam-silver-mane/taur.svg",
  10077. extra: 1713 / 1571,
  10078. bottom: 0.01
  10079. }
  10080. },
  10081. },
  10082. [
  10083. {
  10084. name: "Normal",
  10085. height: math.unit(8, "feet")
  10086. },
  10087. {
  10088. name: "Minimacro",
  10089. height: math.unit(80, "feet")
  10090. },
  10091. {
  10092. name: "Macro",
  10093. height: math.unit(800, "feet"),
  10094. default: true
  10095. },
  10096. {
  10097. name: "Megamacro",
  10098. height: math.unit(8000, "feet")
  10099. },
  10100. {
  10101. name: "Gigamacro",
  10102. height: math.unit(800, "miles")
  10103. },
  10104. {
  10105. name: "Teramacro",
  10106. height: math.unit(80000, "miles")
  10107. },
  10108. {
  10109. name: "Celestial",
  10110. height: math.unit(8e6, "miles")
  10111. },
  10112. {
  10113. name: "Star Dragon",
  10114. height: math.unit(800000, "parsecs")
  10115. },
  10116. {
  10117. name: "Godly",
  10118. height: math.unit(800, "teraparsecs")
  10119. },
  10120. ]
  10121. ))
  10122. characterMakers.push(() => makeCharacter(
  10123. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10124. {
  10125. front: {
  10126. height: math.unit(6, "feet"),
  10127. weight: math.unit(150, "lb"),
  10128. name: "Front",
  10129. image: {
  10130. source: "./media/characters/ky'owin/front.svg",
  10131. extra: 3888 / 3068,
  10132. bottom: 0.015
  10133. }
  10134. },
  10135. },
  10136. [
  10137. {
  10138. name: "Normal",
  10139. height: math.unit(6 + 8 / 12, "feet")
  10140. },
  10141. {
  10142. name: "Large",
  10143. height: math.unit(68, "feet")
  10144. },
  10145. {
  10146. name: "Macro",
  10147. height: math.unit(132, "feet")
  10148. },
  10149. {
  10150. name: "Macro+",
  10151. height: math.unit(340, "feet")
  10152. },
  10153. {
  10154. name: "Macro++",
  10155. height: math.unit(680, "feet"),
  10156. default: true
  10157. },
  10158. {
  10159. name: "Megamacro",
  10160. height: math.unit(1, "mile")
  10161. },
  10162. {
  10163. name: "Megamacro+",
  10164. height: math.unit(10, "miles")
  10165. },
  10166. ]
  10167. ))
  10168. characterMakers.push(() => makeCharacter(
  10169. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10170. {
  10171. front: {
  10172. height: math.unit(4, "feet"),
  10173. weight: math.unit(50, "lb"),
  10174. name: "Front",
  10175. image: {
  10176. source: "./media/characters/mal/front.svg",
  10177. extra: 785 / 724,
  10178. bottom: 0.07
  10179. }
  10180. },
  10181. },
  10182. [
  10183. {
  10184. name: "Micro",
  10185. height: math.unit(4, "inches")
  10186. },
  10187. {
  10188. name: "Normal",
  10189. height: math.unit(4, "feet"),
  10190. default: true
  10191. },
  10192. {
  10193. name: "Macro",
  10194. height: math.unit(200, "feet")
  10195. },
  10196. ]
  10197. ))
  10198. characterMakers.push(() => makeCharacter(
  10199. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10200. {
  10201. front: {
  10202. height: math.unit(6, "feet"),
  10203. weight: math.unit(150, "lb"),
  10204. name: "Front",
  10205. image: {
  10206. source: "./media/characters/jordan-deware/front.svg",
  10207. extra: 1191 / 1012
  10208. }
  10209. },
  10210. },
  10211. [
  10212. {
  10213. name: "Nano",
  10214. height: math.unit(0.01, "mm")
  10215. },
  10216. {
  10217. name: "Minimicro",
  10218. height: math.unit(1, "mm")
  10219. },
  10220. {
  10221. name: "Micro",
  10222. height: math.unit(0.5, "inches")
  10223. },
  10224. {
  10225. name: "Normal",
  10226. height: math.unit(4, "feet"),
  10227. default: true
  10228. },
  10229. {
  10230. name: "Minimacro",
  10231. height: math.unit(40, "meters")
  10232. },
  10233. {
  10234. name: "Small Macro",
  10235. height: math.unit(400, "meters")
  10236. },
  10237. {
  10238. name: "Macro",
  10239. height: math.unit(4, "miles")
  10240. },
  10241. {
  10242. name: "Megamacro",
  10243. height: math.unit(40, "miles")
  10244. },
  10245. {
  10246. name: "Megamacro+",
  10247. height: math.unit(400, "miles")
  10248. },
  10249. {
  10250. name: "Gigamacro",
  10251. height: math.unit(400000, "miles")
  10252. },
  10253. ]
  10254. ))
  10255. characterMakers.push(() => makeCharacter(
  10256. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10257. {
  10258. side: {
  10259. height: math.unit(6, "feet"),
  10260. weight: math.unit(150, "lb"),
  10261. name: "Side",
  10262. image: {
  10263. source: "./media/characters/kimiko/side.svg",
  10264. extra: 600 / 358
  10265. }
  10266. },
  10267. },
  10268. [
  10269. {
  10270. name: "Normal",
  10271. height: math.unit(15, "feet"),
  10272. default: true
  10273. },
  10274. {
  10275. name: "Macro",
  10276. height: math.unit(220, "feet")
  10277. },
  10278. {
  10279. name: "Macro+",
  10280. height: math.unit(1450, "feet")
  10281. },
  10282. {
  10283. name: "Megamacro",
  10284. height: math.unit(11500, "feet")
  10285. },
  10286. {
  10287. name: "Gigamacro",
  10288. height: math.unit(9500, "miles")
  10289. },
  10290. {
  10291. name: "Teramacro",
  10292. height: math.unit(2208005005, "miles")
  10293. },
  10294. {
  10295. name: "Examacro",
  10296. height: math.unit(2750, "parsecs")
  10297. },
  10298. {
  10299. name: "Zettamacro",
  10300. height: math.unit(101500, "parsecs")
  10301. },
  10302. ]
  10303. ))
  10304. characterMakers.push(() => makeCharacter(
  10305. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10306. {
  10307. front: {
  10308. height: math.unit(6, "feet"),
  10309. weight: math.unit(70, "kg"),
  10310. name: "Front",
  10311. image: {
  10312. source: "./media/characters/andrew-sleepy/front.svg"
  10313. }
  10314. },
  10315. side: {
  10316. height: math.unit(6, "feet"),
  10317. weight: math.unit(70, "kg"),
  10318. name: "Side",
  10319. image: {
  10320. source: "./media/characters/andrew-sleepy/side.svg"
  10321. }
  10322. },
  10323. },
  10324. [
  10325. {
  10326. name: "Micro",
  10327. height: math.unit(1, "mm"),
  10328. default: true
  10329. },
  10330. ]
  10331. ))
  10332. characterMakers.push(() => makeCharacter(
  10333. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10334. {
  10335. front: {
  10336. height: math.unit(6, "feet"),
  10337. weight: math.unit(150, "lb"),
  10338. name: "Front",
  10339. image: {
  10340. source: "./media/characters/judio/front.svg",
  10341. extra: 1258 / 1110
  10342. }
  10343. },
  10344. },
  10345. [
  10346. {
  10347. name: "Normal",
  10348. height: math.unit(5 + 6 / 12, "feet")
  10349. },
  10350. {
  10351. name: "Macro",
  10352. height: math.unit(1000, "feet"),
  10353. default: true
  10354. },
  10355. {
  10356. name: "Megamacro",
  10357. height: math.unit(10, "miles")
  10358. },
  10359. ]
  10360. ))
  10361. characterMakers.push(() => makeCharacter(
  10362. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10363. {
  10364. front: {
  10365. height: math.unit(6, "feet"),
  10366. weight: math.unit(68, "kg"),
  10367. name: "Front",
  10368. image: {
  10369. source: "./media/characters/nomaxice/front.svg",
  10370. extra: 1498 / 1073,
  10371. bottom: 0.075
  10372. }
  10373. },
  10374. foot: {
  10375. height: math.unit(1.1, "feet"),
  10376. name: "Foot",
  10377. image: {
  10378. source: "./media/characters/nomaxice/foot.svg"
  10379. }
  10380. },
  10381. },
  10382. [
  10383. {
  10384. name: "Micro",
  10385. height: math.unit(8, "cm")
  10386. },
  10387. {
  10388. name: "Norm",
  10389. height: math.unit(1.82, "m")
  10390. },
  10391. {
  10392. name: "Norm+",
  10393. height: math.unit(8.8, "feet")
  10394. },
  10395. {
  10396. name: "Big",
  10397. height: math.unit(8, "meters"),
  10398. default: true
  10399. },
  10400. {
  10401. name: "Macro",
  10402. height: math.unit(18, "meters")
  10403. },
  10404. {
  10405. name: "Macro+",
  10406. height: math.unit(88, "meters")
  10407. },
  10408. ]
  10409. ))
  10410. characterMakers.push(() => makeCharacter(
  10411. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10412. {
  10413. front: {
  10414. height: math.unit(12, "feet"),
  10415. weight: math.unit(1.5, "tons"),
  10416. name: "Front",
  10417. image: {
  10418. source: "./media/characters/dydros/front.svg",
  10419. extra: 863 / 800,
  10420. bottom: 0.015
  10421. }
  10422. },
  10423. back: {
  10424. height: math.unit(12, "feet"),
  10425. weight: math.unit(1.5, "tons"),
  10426. name: "Back",
  10427. image: {
  10428. source: "./media/characters/dydros/back.svg",
  10429. extra: 900 / 843,
  10430. bottom: 0.005
  10431. }
  10432. },
  10433. },
  10434. [
  10435. {
  10436. name: "Normal",
  10437. height: math.unit(12, "feet"),
  10438. default: true
  10439. },
  10440. ]
  10441. ))
  10442. characterMakers.push(() => makeCharacter(
  10443. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10444. {
  10445. front: {
  10446. height: math.unit(6, "feet"),
  10447. weight: math.unit(100, "kg"),
  10448. name: "Front",
  10449. image: {
  10450. source: "./media/characters/riggi/front.svg",
  10451. extra: 5787 / 5303
  10452. }
  10453. },
  10454. hyper: {
  10455. height: math.unit(6 * 5 / 3, "feet"),
  10456. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10457. name: "Hyper",
  10458. image: {
  10459. source: "./media/characters/riggi/hyper.svg",
  10460. extra: 3595 / 3485
  10461. }
  10462. },
  10463. },
  10464. [
  10465. {
  10466. name: "Small Macro",
  10467. height: math.unit(50, "feet")
  10468. },
  10469. {
  10470. name: "Default",
  10471. height: math.unit(200, "feet"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Loom",
  10476. height: math.unit(10000, "feet")
  10477. },
  10478. {
  10479. name: "Cruising Altitude",
  10480. height: math.unit(30000, "feet")
  10481. },
  10482. {
  10483. name: "Megamacro",
  10484. height: math.unit(100, "miles")
  10485. },
  10486. {
  10487. name: "Continent Sized",
  10488. height: math.unit(2800, "miles")
  10489. },
  10490. {
  10491. name: "Earth Sized",
  10492. height: math.unit(8000, "miles")
  10493. },
  10494. ]
  10495. ))
  10496. characterMakers.push(() => makeCharacter(
  10497. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10498. {
  10499. front: {
  10500. height: math.unit(6, "feet"),
  10501. weight: math.unit(250, "lb"),
  10502. name: "Front",
  10503. image: {
  10504. source: "./media/characters/alexi/front.svg",
  10505. extra: 3483 / 3291,
  10506. bottom: 0.04
  10507. }
  10508. },
  10509. back: {
  10510. height: math.unit(6, "feet"),
  10511. weight: math.unit(250, "lb"),
  10512. name: "Back",
  10513. image: {
  10514. source: "./media/characters/alexi/back.svg",
  10515. extra: 3533 / 3356,
  10516. bottom: 0.021
  10517. }
  10518. },
  10519. frontTransforming: {
  10520. height: math.unit(8.58, "feet"),
  10521. weight: math.unit(1300, "lb"),
  10522. name: "Transforming",
  10523. image: {
  10524. source: "./media/characters/alexi/front-transforming.svg",
  10525. extra: 437 / 409,
  10526. bottom: 19 / 458.66
  10527. }
  10528. },
  10529. frontTransformed: {
  10530. height: math.unit(12.5, "feet"),
  10531. weight: math.unit(4000, "lb"),
  10532. name: "Transformed",
  10533. image: {
  10534. source: "./media/characters/alexi/front-transformed.svg",
  10535. extra: 639 / 614,
  10536. bottom: 30.55 / 671
  10537. }
  10538. },
  10539. },
  10540. [
  10541. {
  10542. name: "Normal",
  10543. height: math.unit(14, "feet"),
  10544. default: true
  10545. },
  10546. {
  10547. name: "Minimacro",
  10548. height: math.unit(30, "meters")
  10549. },
  10550. {
  10551. name: "Macro",
  10552. height: math.unit(500, "meters")
  10553. },
  10554. {
  10555. name: "Megamacro",
  10556. height: math.unit(9000, "km")
  10557. },
  10558. {
  10559. name: "Teramacro",
  10560. height: math.unit(384000, "km")
  10561. },
  10562. ]
  10563. ))
  10564. characterMakers.push(() => makeCharacter(
  10565. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10566. {
  10567. front: {
  10568. height: math.unit(6, "feet"),
  10569. weight: math.unit(150, "lb"),
  10570. name: "Front",
  10571. image: {
  10572. source: "./media/characters/kayroo/front.svg",
  10573. extra: 1153 / 1038,
  10574. bottom: 0.06
  10575. }
  10576. },
  10577. foot: {
  10578. height: math.unit(6, "feet"),
  10579. weight: math.unit(150, "lb"),
  10580. name: "Foot",
  10581. image: {
  10582. source: "./media/characters/kayroo/foot.svg"
  10583. }
  10584. },
  10585. },
  10586. [
  10587. {
  10588. name: "Normal",
  10589. height: math.unit(8, "feet"),
  10590. default: true
  10591. },
  10592. {
  10593. name: "Minimacro",
  10594. height: math.unit(250, "feet")
  10595. },
  10596. {
  10597. name: "Macro",
  10598. height: math.unit(2800, "feet")
  10599. },
  10600. {
  10601. name: "Megamacro",
  10602. height: math.unit(5200, "feet")
  10603. },
  10604. {
  10605. name: "Gigamacro",
  10606. height: math.unit(27000, "feet")
  10607. },
  10608. {
  10609. name: "Omega",
  10610. height: math.unit(45000, "feet")
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10616. {
  10617. front: {
  10618. height: math.unit(18, "feet"),
  10619. weight: math.unit(5800, "lb"),
  10620. name: "Front",
  10621. image: {
  10622. source: "./media/characters/rhys/front.svg",
  10623. extra: 3386 / 3090,
  10624. bottom: 0.07
  10625. }
  10626. },
  10627. },
  10628. [
  10629. {
  10630. name: "Normal",
  10631. height: math.unit(18, "feet"),
  10632. default: true
  10633. },
  10634. {
  10635. name: "Working Size",
  10636. height: math.unit(200, "feet")
  10637. },
  10638. {
  10639. name: "Demolition Size",
  10640. height: math.unit(2000, "feet")
  10641. },
  10642. {
  10643. name: "Maximum Licensed Size",
  10644. height: math.unit(5, "miles")
  10645. },
  10646. {
  10647. name: "Maximum Observed Size",
  10648. height: math.unit(10, "yottameters")
  10649. },
  10650. ]
  10651. ))
  10652. characterMakers.push(() => makeCharacter(
  10653. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10654. {
  10655. front: {
  10656. height: math.unit(6, "feet"),
  10657. weight: math.unit(250, "lb"),
  10658. name: "Front",
  10659. image: {
  10660. source: "./media/characters/toto/front.svg",
  10661. extra: 527 / 479,
  10662. bottom: 0.05
  10663. }
  10664. },
  10665. },
  10666. [
  10667. {
  10668. name: "Micro",
  10669. height: math.unit(3, "feet")
  10670. },
  10671. {
  10672. name: "Normal",
  10673. height: math.unit(10, "feet")
  10674. },
  10675. {
  10676. name: "Macro",
  10677. height: math.unit(150, "feet"),
  10678. default: true
  10679. },
  10680. {
  10681. name: "Megamacro",
  10682. height: math.unit(1200, "feet")
  10683. },
  10684. ]
  10685. ))
  10686. characterMakers.push(() => makeCharacter(
  10687. { name: "King", species: ["lion"], tags: ["anthro"] },
  10688. {
  10689. back: {
  10690. height: math.unit(6, "feet"),
  10691. weight: math.unit(150, "lb"),
  10692. name: "Back",
  10693. image: {
  10694. source: "./media/characters/king/back.svg"
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Micro",
  10701. height: math.unit(2, "inches")
  10702. },
  10703. {
  10704. name: "Normal",
  10705. height: math.unit(8, "feet")
  10706. },
  10707. {
  10708. name: "Macro",
  10709. height: math.unit(200, "feet"),
  10710. default: true
  10711. },
  10712. {
  10713. name: "Megamacro",
  10714. height: math.unit(50, "miles")
  10715. },
  10716. ]
  10717. ))
  10718. characterMakers.push(() => makeCharacter(
  10719. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10720. {
  10721. anthro: {
  10722. height: math.unit(6 + 5 / 12, "feet"),
  10723. weight: math.unit(280, "lb"),
  10724. name: "Anthro",
  10725. image: {
  10726. source: "./media/characters/cordite/anthro.svg",
  10727. extra: 1986 / 1905,
  10728. bottom: 0.025
  10729. }
  10730. },
  10731. feral: {
  10732. height: math.unit(2, "feet"),
  10733. weight: math.unit(90, "lb"),
  10734. name: "Feral",
  10735. image: {
  10736. source: "./media/characters/cordite/feral.svg",
  10737. extra: 1260 / 755,
  10738. bottom: 0.05
  10739. }
  10740. },
  10741. },
  10742. [
  10743. {
  10744. name: "Normal",
  10745. height: math.unit(6 + 5 / 12, "feet"),
  10746. default: true
  10747. },
  10748. ]
  10749. ))
  10750. characterMakers.push(() => makeCharacter(
  10751. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10752. {
  10753. front: {
  10754. height: math.unit(6, "feet"),
  10755. weight: math.unit(150, "lb"),
  10756. name: "Front",
  10757. image: {
  10758. source: "./media/characters/pianostrong/front.svg",
  10759. extra: 6577 / 6254,
  10760. bottom: 0.02
  10761. }
  10762. },
  10763. side: {
  10764. height: math.unit(6, "feet"),
  10765. weight: math.unit(150, "lb"),
  10766. name: "Side",
  10767. image: {
  10768. source: "./media/characters/pianostrong/side.svg",
  10769. extra: 6106 / 5730
  10770. }
  10771. },
  10772. back: {
  10773. height: math.unit(6, "feet"),
  10774. weight: math.unit(150, "lb"),
  10775. name: "Back",
  10776. image: {
  10777. source: "./media/characters/pianostrong/back.svg",
  10778. extra: 6085 / 5733,
  10779. bottom: 0.01
  10780. }
  10781. },
  10782. },
  10783. [
  10784. {
  10785. name: "Macro",
  10786. height: math.unit(100, "feet")
  10787. },
  10788. {
  10789. name: "Macro+",
  10790. height: math.unit(300, "feet"),
  10791. default: true
  10792. },
  10793. {
  10794. name: "Macro++",
  10795. height: math.unit(1000, "feet")
  10796. },
  10797. ]
  10798. ))
  10799. characterMakers.push(() => makeCharacter(
  10800. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10801. {
  10802. front: {
  10803. height: math.unit(6, "feet"),
  10804. weight: math.unit(150, "lb"),
  10805. name: "Front",
  10806. image: {
  10807. source: "./media/characters/kona/front.svg",
  10808. extra: 2960 / 2629,
  10809. bottom: 0.005
  10810. }
  10811. },
  10812. },
  10813. [
  10814. {
  10815. name: "Normal",
  10816. height: math.unit(11 + 8 / 12, "feet")
  10817. },
  10818. {
  10819. name: "Macro",
  10820. height: math.unit(850, "feet"),
  10821. default: true
  10822. },
  10823. {
  10824. name: "Macro+",
  10825. height: math.unit(1.5, "km"),
  10826. default: true
  10827. },
  10828. {
  10829. name: "Megamacro",
  10830. height: math.unit(80, "miles")
  10831. },
  10832. {
  10833. name: "Gigamacro",
  10834. height: math.unit(3500, "miles")
  10835. },
  10836. ]
  10837. ))
  10838. characterMakers.push(() => makeCharacter(
  10839. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10840. {
  10841. side: {
  10842. height: math.unit(1.9, "meters"),
  10843. weight: math.unit(326, "kg"),
  10844. name: "Side",
  10845. image: {
  10846. source: "./media/characters/levi/side.svg",
  10847. extra: 1704 / 1334,
  10848. bottom: 0.02
  10849. }
  10850. },
  10851. },
  10852. [
  10853. {
  10854. name: "Normal",
  10855. height: math.unit(1.9, "meters"),
  10856. default: true
  10857. },
  10858. {
  10859. name: "Macro",
  10860. height: math.unit(20, "meters")
  10861. },
  10862. {
  10863. name: "Macro+",
  10864. height: math.unit(200, "meters")
  10865. },
  10866. {
  10867. name: "Megamacro",
  10868. height: math.unit(2, "km")
  10869. },
  10870. {
  10871. name: "Megamacro+",
  10872. height: math.unit(20, "km")
  10873. },
  10874. {
  10875. name: "Gigamacro",
  10876. height: math.unit(2500, "km")
  10877. },
  10878. {
  10879. name: "Gigamacro+",
  10880. height: math.unit(120000, "km")
  10881. },
  10882. {
  10883. name: "Teramacro",
  10884. height: math.unit(7.77e6, "km")
  10885. },
  10886. ]
  10887. ))
  10888. characterMakers.push(() => makeCharacter(
  10889. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10890. {
  10891. front: {
  10892. height: math.unit(6 + 4 / 12, "feet"),
  10893. weight: math.unit(188, "lb"),
  10894. name: "Front",
  10895. image: {
  10896. source: "./media/characters/bmc/front.svg",
  10897. extra: 1067 / 1022,
  10898. bottom: 0.047
  10899. }
  10900. },
  10901. },
  10902. [
  10903. {
  10904. name: "Human-sized",
  10905. height: math.unit(6 + 4 / 12, "feet")
  10906. },
  10907. {
  10908. name: "Small",
  10909. height: math.unit(250, "feet")
  10910. },
  10911. {
  10912. name: "Normal",
  10913. height: math.unit(1250, "feet"),
  10914. default: true
  10915. },
  10916. {
  10917. name: "Good Day",
  10918. height: math.unit(88, "miles")
  10919. },
  10920. {
  10921. name: "Largest Measured Size",
  10922. height: math.unit(11.2e6, "lightyears")
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10928. {
  10929. front: {
  10930. height: math.unit(20, "feet"),
  10931. weight: math.unit(2016, "kg"),
  10932. name: "Front",
  10933. image: {
  10934. source: "./media/characters/sven-the-kaiju/front.svg",
  10935. extra: 1479 / 1449,
  10936. bottom: 0.05
  10937. }
  10938. },
  10939. },
  10940. [
  10941. {
  10942. name: "Fairy",
  10943. height: math.unit(6, "inches")
  10944. },
  10945. {
  10946. name: "Normal",
  10947. height: math.unit(20, "feet"),
  10948. default: true
  10949. },
  10950. {
  10951. name: "Rampage",
  10952. height: math.unit(200, "feet")
  10953. },
  10954. {
  10955. name: "Archfey Forest Guardian",
  10956. height: math.unit(1, "mile")
  10957. },
  10958. ]
  10959. ))
  10960. characterMakers.push(() => makeCharacter(
  10961. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10962. {
  10963. front: {
  10964. height: math.unit(4, "meters"),
  10965. weight: math.unit(2, "tons"),
  10966. name: "Front",
  10967. image: {
  10968. source: "./media/characters/marik/front.svg",
  10969. extra: 1057 / 1003,
  10970. bottom: 0.08
  10971. }
  10972. },
  10973. },
  10974. [
  10975. {
  10976. name: "Normal",
  10977. height: math.unit(4, "meters"),
  10978. default: true
  10979. },
  10980. {
  10981. name: "Macro",
  10982. height: math.unit(20, "meters")
  10983. },
  10984. {
  10985. name: "Megamacro",
  10986. height: math.unit(50, "km")
  10987. },
  10988. {
  10989. name: "Gigamacro",
  10990. height: math.unit(100, "km")
  10991. },
  10992. {
  10993. name: "Alpha Macro",
  10994. height: math.unit(7.88e7, "yottameters")
  10995. },
  10996. ]
  10997. ))
  10998. characterMakers.push(() => makeCharacter(
  10999. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  11000. {
  11001. front: {
  11002. height: math.unit(6, "feet"),
  11003. weight: math.unit(110, "lb"),
  11004. name: "Front",
  11005. image: {
  11006. source: "./media/characters/mel/front.svg",
  11007. extra: 736 / 617,
  11008. bottom: 0.017
  11009. }
  11010. },
  11011. },
  11012. [
  11013. {
  11014. name: "Pico",
  11015. height: math.unit(3, "pm")
  11016. },
  11017. {
  11018. name: "Nano",
  11019. height: math.unit(3, "nm")
  11020. },
  11021. {
  11022. name: "Micro",
  11023. height: math.unit(0.3, "mm"),
  11024. default: true
  11025. },
  11026. {
  11027. name: "Micro+",
  11028. height: math.unit(3, "mm")
  11029. },
  11030. {
  11031. name: "Normal",
  11032. height: math.unit(5 + 10.5 / 12, "feet")
  11033. },
  11034. ]
  11035. ))
  11036. characterMakers.push(() => makeCharacter(
  11037. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11038. {
  11039. kaiju: {
  11040. height: math.unit(1.75, "meters"),
  11041. weight: math.unit(55, "kg"),
  11042. name: "Kaiju",
  11043. image: {
  11044. source: "./media/characters/lykonous/kaiju.svg",
  11045. extra: 1055 / 946,
  11046. bottom: 0.135
  11047. }
  11048. },
  11049. },
  11050. [
  11051. {
  11052. name: "Normal",
  11053. height: math.unit(2.5, "meters"),
  11054. default: true
  11055. },
  11056. {
  11057. name: "Kaiju Dragon",
  11058. height: math.unit(60, "meters")
  11059. },
  11060. {
  11061. name: "Mega Kaiju",
  11062. height: math.unit(120, "km")
  11063. },
  11064. {
  11065. name: "Giga Kaiju",
  11066. height: math.unit(200, "megameters")
  11067. },
  11068. {
  11069. name: "Terra Kaiju",
  11070. height: math.unit(400, "gigameters")
  11071. },
  11072. {
  11073. name: "Kaiju Dragon God",
  11074. height: math.unit(13000, "exaparsecs")
  11075. },
  11076. ]
  11077. ))
  11078. characterMakers.push(() => makeCharacter(
  11079. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11080. {
  11081. front: {
  11082. height: math.unit(6, "feet"),
  11083. weight: math.unit(150, "lb"),
  11084. name: "Front",
  11085. image: {
  11086. source: "./media/characters/blü/front.svg",
  11087. extra: 1883 / 1564,
  11088. bottom: 0.031
  11089. }
  11090. },
  11091. },
  11092. [
  11093. {
  11094. name: "Normal",
  11095. height: math.unit(13, "feet"),
  11096. default: true
  11097. },
  11098. {
  11099. name: "Big Boi",
  11100. height: math.unit(150, "meters")
  11101. },
  11102. {
  11103. name: "Mini Stomper",
  11104. height: math.unit(300, "meters")
  11105. },
  11106. {
  11107. name: "Macro",
  11108. height: math.unit(1000, "meters")
  11109. },
  11110. {
  11111. name: "Megamacro",
  11112. height: math.unit(11000, "meters")
  11113. },
  11114. {
  11115. name: "Gigamacro",
  11116. height: math.unit(11000, "km")
  11117. },
  11118. {
  11119. name: "Teramacro",
  11120. height: math.unit(420000, "km")
  11121. },
  11122. {
  11123. name: "Examacro",
  11124. height: math.unit(120, "parsecs")
  11125. },
  11126. {
  11127. name: "God Tho",
  11128. height: math.unit(98000000000, "parsecs")
  11129. },
  11130. ]
  11131. ))
  11132. characterMakers.push(() => makeCharacter(
  11133. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11134. {
  11135. taurFront: {
  11136. height: math.unit(6, "feet"),
  11137. weight: math.unit(200, "lb"),
  11138. name: "Taur (Front)",
  11139. image: {
  11140. source: "./media/characters/scales/taur-front.svg",
  11141. extra: 1,
  11142. bottom: 0.05
  11143. }
  11144. },
  11145. taurBack: {
  11146. height: math.unit(6, "feet"),
  11147. weight: math.unit(200, "lb"),
  11148. name: "Taur (Back)",
  11149. image: {
  11150. source: "./media/characters/scales/taur-back.svg",
  11151. extra: 1,
  11152. bottom: 0.08
  11153. }
  11154. },
  11155. anthro: {
  11156. height: math.unit(6 * 7 / 12, "feet"),
  11157. weight: math.unit(100, "lb"),
  11158. name: "Anthro",
  11159. image: {
  11160. source: "./media/characters/scales/anthro.svg",
  11161. extra: 1,
  11162. bottom: 0.06
  11163. }
  11164. },
  11165. },
  11166. [
  11167. {
  11168. name: "Normal",
  11169. height: math.unit(12, "feet"),
  11170. default: true
  11171. },
  11172. ]
  11173. ))
  11174. characterMakers.push(() => makeCharacter(
  11175. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11176. {
  11177. front: {
  11178. height: math.unit(6, "feet"),
  11179. weight: math.unit(150, "lb"),
  11180. name: "Front",
  11181. image: {
  11182. source: "./media/characters/koragos/front.svg",
  11183. extra: 841 / 794,
  11184. bottom: 0.035
  11185. }
  11186. },
  11187. back: {
  11188. height: math.unit(6, "feet"),
  11189. weight: math.unit(150, "lb"),
  11190. name: "Back",
  11191. image: {
  11192. source: "./media/characters/koragos/back.svg",
  11193. extra: 841 / 810,
  11194. bottom: 0.022
  11195. }
  11196. },
  11197. },
  11198. [
  11199. {
  11200. name: "Normal",
  11201. height: math.unit(6 + 11 / 12, "feet"),
  11202. default: true
  11203. },
  11204. {
  11205. name: "Macro",
  11206. height: math.unit(490, "feet")
  11207. },
  11208. {
  11209. name: "Megamacro",
  11210. height: math.unit(10, "miles")
  11211. },
  11212. {
  11213. name: "Gigamacro",
  11214. height: math.unit(50, "miles")
  11215. },
  11216. ]
  11217. ))
  11218. characterMakers.push(() => makeCharacter(
  11219. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11220. {
  11221. front: {
  11222. height: math.unit(6, "feet"),
  11223. weight: math.unit(250, "lb"),
  11224. name: "Front",
  11225. image: {
  11226. source: "./media/characters/xylrem/front.svg",
  11227. extra: 3323 / 3050,
  11228. bottom: 0.065
  11229. }
  11230. },
  11231. },
  11232. [
  11233. {
  11234. name: "Micro",
  11235. height: math.unit(4, "feet")
  11236. },
  11237. {
  11238. name: "Normal",
  11239. height: math.unit(16, "feet"),
  11240. default: true
  11241. },
  11242. {
  11243. name: "Macro",
  11244. height: math.unit(2720, "feet")
  11245. },
  11246. {
  11247. name: "Megamacro",
  11248. height: math.unit(25000, "miles")
  11249. },
  11250. ]
  11251. ))
  11252. characterMakers.push(() => makeCharacter(
  11253. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11254. {
  11255. front: {
  11256. height: math.unit(8, "feet"),
  11257. weight: math.unit(250, "kg"),
  11258. name: "Front",
  11259. image: {
  11260. source: "./media/characters/ikideru/front.svg",
  11261. extra: 930 / 870,
  11262. bottom: 0.087
  11263. }
  11264. },
  11265. back: {
  11266. height: math.unit(8, "feet"),
  11267. weight: math.unit(250, "kg"),
  11268. name: "Back",
  11269. image: {
  11270. source: "./media/characters/ikideru/back.svg",
  11271. extra: 919 / 852,
  11272. bottom: 0.055
  11273. }
  11274. },
  11275. },
  11276. [
  11277. {
  11278. name: "Rare",
  11279. height: math.unit(8, "feet"),
  11280. default: true
  11281. },
  11282. {
  11283. name: "Playful Loom",
  11284. height: math.unit(80, "feet")
  11285. },
  11286. {
  11287. name: "City Leaner",
  11288. height: math.unit(230, "feet")
  11289. },
  11290. {
  11291. name: "Megamacro",
  11292. height: math.unit(2500, "feet")
  11293. },
  11294. {
  11295. name: "Gigamacro",
  11296. height: math.unit(26400, "feet")
  11297. },
  11298. {
  11299. name: "Tectonic Shifter",
  11300. height: math.unit(1.7, "megameters")
  11301. },
  11302. {
  11303. name: "Planet Carer",
  11304. height: math.unit(21, "megameters")
  11305. },
  11306. {
  11307. name: "God",
  11308. height: math.unit(11157.22, "parsecs")
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11314. {
  11315. front: {
  11316. height: math.unit(6, "feet"),
  11317. weight: math.unit(120, "lb"),
  11318. name: "Front",
  11319. image: {
  11320. source: "./media/characters/neo/front.svg"
  11321. }
  11322. },
  11323. },
  11324. [
  11325. {
  11326. name: "Micro",
  11327. height: math.unit(2, "inches"),
  11328. default: true
  11329. },
  11330. {
  11331. name: "Human Size",
  11332. height: math.unit(5 + 8 / 12, "feet")
  11333. },
  11334. ]
  11335. ))
  11336. characterMakers.push(() => makeCharacter(
  11337. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11338. {
  11339. front: {
  11340. height: math.unit(13 + 10 / 12, "feet"),
  11341. weight: math.unit(5320, "lb"),
  11342. name: "Front",
  11343. image: {
  11344. source: "./media/characters/chauncey-chantz/front.svg",
  11345. extra: 1587 / 1435,
  11346. bottom: 0.02
  11347. }
  11348. },
  11349. },
  11350. [
  11351. {
  11352. name: "Normal",
  11353. height: math.unit(13 + 10 / 12, "feet"),
  11354. default: true
  11355. },
  11356. {
  11357. name: "Macro",
  11358. height: math.unit(45, "feet")
  11359. },
  11360. {
  11361. name: "Megamacro",
  11362. height: math.unit(250, "miles")
  11363. },
  11364. {
  11365. name: "Planetary",
  11366. height: math.unit(10000, "miles")
  11367. },
  11368. {
  11369. name: "Galactic",
  11370. height: math.unit(40000, "parsecs")
  11371. },
  11372. {
  11373. name: "Universal",
  11374. height: math.unit(1, "yottameter")
  11375. },
  11376. ]
  11377. ))
  11378. characterMakers.push(() => makeCharacter(
  11379. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11380. {
  11381. front: {
  11382. height: math.unit(6, "feet"),
  11383. weight: math.unit(150, "lb"),
  11384. name: "Front",
  11385. image: {
  11386. source: "./media/characters/epifox/front.svg",
  11387. extra: 1,
  11388. bottom: 0.075
  11389. }
  11390. },
  11391. },
  11392. [
  11393. {
  11394. name: "Micro",
  11395. height: math.unit(6, "inches")
  11396. },
  11397. {
  11398. name: "Normal",
  11399. height: math.unit(12, "feet"),
  11400. default: true
  11401. },
  11402. {
  11403. name: "Macro",
  11404. height: math.unit(3810, "feet")
  11405. },
  11406. {
  11407. name: "Megamacro",
  11408. height: math.unit(500, "miles")
  11409. },
  11410. ]
  11411. ))
  11412. characterMakers.push(() => makeCharacter(
  11413. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11414. {
  11415. front: {
  11416. height: math.unit(1.8796, "m"),
  11417. weight: math.unit(230, "lb"),
  11418. name: "Front",
  11419. image: {
  11420. source: "./media/characters/colin-t/front.svg",
  11421. extra: 1272 / 1193,
  11422. bottom: 0.07
  11423. }
  11424. },
  11425. },
  11426. [
  11427. {
  11428. name: "Micro",
  11429. height: math.unit(0.571, "meters")
  11430. },
  11431. {
  11432. name: "Normal",
  11433. height: math.unit(1.8796, "meters"),
  11434. default: true
  11435. },
  11436. {
  11437. name: "Tall",
  11438. height: math.unit(4, "meters")
  11439. },
  11440. {
  11441. name: "Macro",
  11442. height: math.unit(67.241, "meters")
  11443. },
  11444. {
  11445. name: "Megamacro",
  11446. height: math.unit(371.856, "meters")
  11447. },
  11448. {
  11449. name: "Planetary",
  11450. height: math.unit(12631.5689, "km")
  11451. },
  11452. ]
  11453. ))
  11454. characterMakers.push(() => makeCharacter(
  11455. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11456. {
  11457. front: {
  11458. height: math.unit(1.85, "meters"),
  11459. weight: math.unit(80, "kg"),
  11460. name: "Front",
  11461. image: {
  11462. source: "./media/characters/matvei/front.svg",
  11463. extra: 614 / 594,
  11464. bottom: 0.01
  11465. }
  11466. },
  11467. },
  11468. [
  11469. {
  11470. name: "Normal",
  11471. height: math.unit(1.85, "meters"),
  11472. default: true
  11473. },
  11474. ]
  11475. ))
  11476. characterMakers.push(() => makeCharacter(
  11477. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11478. {
  11479. front: {
  11480. height: math.unit(5 + 9 / 12, "feet"),
  11481. weight: math.unit(70, "lb"),
  11482. name: "Front",
  11483. image: {
  11484. source: "./media/characters/quincy/front.svg",
  11485. extra: 3041 / 2751
  11486. }
  11487. },
  11488. back: {
  11489. height: math.unit(5 + 9 / 12, "feet"),
  11490. weight: math.unit(70, "lb"),
  11491. name: "Back",
  11492. image: {
  11493. source: "./media/characters/quincy/back.svg",
  11494. extra: 3041 / 2751
  11495. }
  11496. },
  11497. flying: {
  11498. height: math.unit(5 + 4 / 12, "feet"),
  11499. weight: math.unit(70, "lb"),
  11500. name: "Flying",
  11501. image: {
  11502. source: "./media/characters/quincy/flying.svg",
  11503. extra: 1044 / 930
  11504. }
  11505. },
  11506. },
  11507. [
  11508. {
  11509. name: "Micro",
  11510. height: math.unit(3, "cm")
  11511. },
  11512. {
  11513. name: "Normal",
  11514. height: math.unit(5 + 9 / 12, "feet")
  11515. },
  11516. {
  11517. name: "Macro",
  11518. height: math.unit(200, "meters"),
  11519. default: true
  11520. },
  11521. {
  11522. name: "Megamacro",
  11523. height: math.unit(1000, "meters")
  11524. },
  11525. ]
  11526. ))
  11527. characterMakers.push(() => makeCharacter(
  11528. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11529. {
  11530. front: {
  11531. height: math.unit(4 + 7 / 12, "feet"),
  11532. weight: math.unit(50, "lb"),
  11533. name: "Front",
  11534. image: {
  11535. source: "./media/characters/vanrel/front.svg",
  11536. extra: 1,
  11537. bottom: 0.02
  11538. }
  11539. },
  11540. frontAlt: {
  11541. height: math.unit(4 + 7 / 12, "feet"),
  11542. weight: math.unit(50, "lb"),
  11543. name: "Front-alt",
  11544. image: {
  11545. source: "./media/characters/vanrel/front-alt.svg",
  11546. extra: 1,
  11547. bottom: 15 / 1511
  11548. }
  11549. },
  11550. elemental: {
  11551. height: math.unit(3, "feet"),
  11552. weight: math.unit(50, "lb"),
  11553. name: "Elemental",
  11554. image: {
  11555. source: "./media/characters/vanrel/elemental.svg",
  11556. extra: 192.3 / 162.8,
  11557. bottom: 1.79 / 194.17
  11558. }
  11559. },
  11560. side: {
  11561. height: math.unit(4 + 7 / 12, "feet"),
  11562. weight: math.unit(50, "lb"),
  11563. name: "Side",
  11564. image: {
  11565. source: "./media/characters/vanrel/side.svg",
  11566. extra: 1,
  11567. bottom: 0.025
  11568. }
  11569. },
  11570. tome: {
  11571. height: math.unit(1.35, "feet"),
  11572. weight: math.unit(10, "lb"),
  11573. name: "Vanrel's Tome",
  11574. rename: true,
  11575. image: {
  11576. source: "./media/characters/vanrel/tome.svg"
  11577. }
  11578. },
  11579. beans: {
  11580. height: math.unit(0.89, "feet"),
  11581. name: "Beans",
  11582. image: {
  11583. source: "./media/characters/vanrel/beans.svg"
  11584. }
  11585. },
  11586. },
  11587. [
  11588. {
  11589. name: "Normal",
  11590. height: math.unit(4 + 7 / 12, "feet"),
  11591. default: true
  11592. },
  11593. ]
  11594. ))
  11595. characterMakers.push(() => makeCharacter(
  11596. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11597. {
  11598. front: {
  11599. height: math.unit(7 + 5 / 12, "feet"),
  11600. weight: math.unit(150, "lb"),
  11601. name: "Front",
  11602. image: {
  11603. source: "./media/characters/kuiper-vanrel/front.svg",
  11604. extra: 1118 / 1068,
  11605. bottom: 0.09
  11606. }
  11607. },
  11608. foot: {
  11609. height: math.unit(0.55, "meters"),
  11610. name: "Foot",
  11611. image: {
  11612. source: "./media/characters/kuiper-vanrel/foot.svg",
  11613. }
  11614. },
  11615. battle: {
  11616. height: math.unit(6.824, "feet"),
  11617. weight: math.unit(150, "lb"),
  11618. name: "Battle",
  11619. image: {
  11620. source: "./media/characters/kuiper-vanrel/battle.svg",
  11621. extra: 1466 / 1327,
  11622. bottom: 29 / 1492.5
  11623. }
  11624. },
  11625. battleAlt: {
  11626. height: math.unit(6.824, "feet"),
  11627. weight: math.unit(150, "lb"),
  11628. name: "Battle (Alt)",
  11629. image: {
  11630. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11631. extra: 2081 / 1965,
  11632. bottom: 40 / 2121
  11633. }
  11634. },
  11635. },
  11636. [
  11637. {
  11638. name: "Normal",
  11639. height: math.unit(7 + 5 / 12, "feet"),
  11640. default: true
  11641. },
  11642. ]
  11643. ))
  11644. characterMakers.push(() => makeCharacter(
  11645. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11646. {
  11647. front: {
  11648. height: math.unit(8 + 5 / 12, "feet"),
  11649. weight: math.unit(150, "lb"),
  11650. name: "Front",
  11651. image: {
  11652. source: "./media/characters/keset-vanrel/front.svg",
  11653. extra: 1150 / 1084,
  11654. bottom: 0.05
  11655. }
  11656. },
  11657. hand: {
  11658. height: math.unit(0.6, "meters"),
  11659. name: "Hand",
  11660. image: {
  11661. source: "./media/characters/keset-vanrel/hand.svg"
  11662. }
  11663. },
  11664. foot: {
  11665. height: math.unit(0.94978, "meters"),
  11666. name: "Foot",
  11667. image: {
  11668. source: "./media/characters/keset-vanrel/foot.svg"
  11669. }
  11670. },
  11671. battle: {
  11672. height: math.unit(7.408, "feet"),
  11673. weight: math.unit(150, "lb"),
  11674. name: "Battle",
  11675. image: {
  11676. source: "./media/characters/keset-vanrel/battle.svg",
  11677. extra: 1890 / 1386,
  11678. bottom: 73.28 / 1970
  11679. }
  11680. },
  11681. },
  11682. [
  11683. {
  11684. name: "Normal",
  11685. height: math.unit(8 + 5 / 12, "feet"),
  11686. default: true
  11687. },
  11688. ]
  11689. ))
  11690. characterMakers.push(() => makeCharacter(
  11691. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11692. {
  11693. front: {
  11694. height: math.unit(6, "feet"),
  11695. weight: math.unit(150, "lb"),
  11696. name: "Front",
  11697. image: {
  11698. source: "./media/characters/neos/front.svg",
  11699. extra: 1696 / 992,
  11700. bottom: 0.14
  11701. }
  11702. },
  11703. },
  11704. [
  11705. {
  11706. name: "Normal",
  11707. height: math.unit(54, "cm"),
  11708. default: true
  11709. },
  11710. {
  11711. name: "Macro",
  11712. height: math.unit(100, "m")
  11713. },
  11714. {
  11715. name: "Megamacro",
  11716. height: math.unit(10, "km")
  11717. },
  11718. {
  11719. name: "Megamacro+",
  11720. height: math.unit(100, "km")
  11721. },
  11722. {
  11723. name: "Gigamacro",
  11724. height: math.unit(100, "Mm")
  11725. },
  11726. {
  11727. name: "Teramacro",
  11728. height: math.unit(100, "Gm")
  11729. },
  11730. {
  11731. name: "Examacro",
  11732. height: math.unit(100, "Em")
  11733. },
  11734. {
  11735. name: "Godly",
  11736. height: math.unit(10000, "Ym")
  11737. },
  11738. {
  11739. name: "Beyond Godly",
  11740. height: math.unit(25, "multiverses")
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11746. {
  11747. feminine: {
  11748. height: math.unit(5, "feet"),
  11749. weight: math.unit(100, "lb"),
  11750. name: "Feminine",
  11751. image: {
  11752. source: "./media/characters/sammy-mouse/feminine.svg",
  11753. extra: 2526 / 2425,
  11754. bottom: 0.123
  11755. }
  11756. },
  11757. masculine: {
  11758. height: math.unit(5, "feet"),
  11759. weight: math.unit(100, "lb"),
  11760. name: "Masculine",
  11761. image: {
  11762. source: "./media/characters/sammy-mouse/masculine.svg",
  11763. extra: 2526 / 2425,
  11764. bottom: 0.123
  11765. }
  11766. },
  11767. },
  11768. [
  11769. {
  11770. name: "Micro",
  11771. height: math.unit(5, "inches")
  11772. },
  11773. {
  11774. name: "Normal",
  11775. height: math.unit(5, "feet"),
  11776. default: true
  11777. },
  11778. {
  11779. name: "Macro",
  11780. height: math.unit(60, "feet")
  11781. },
  11782. ]
  11783. ))
  11784. characterMakers.push(() => makeCharacter(
  11785. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11786. {
  11787. front: {
  11788. height: math.unit(4, "feet"),
  11789. weight: math.unit(50, "lb"),
  11790. name: "Front",
  11791. image: {
  11792. source: "./media/characters/kole/front.svg",
  11793. extra: 1423 / 1303,
  11794. bottom: 0.025
  11795. }
  11796. },
  11797. back: {
  11798. height: math.unit(4, "feet"),
  11799. weight: math.unit(50, "lb"),
  11800. name: "Back",
  11801. image: {
  11802. source: "./media/characters/kole/back.svg",
  11803. extra: 1426 / 1280,
  11804. bottom: 0.02
  11805. }
  11806. },
  11807. },
  11808. [
  11809. {
  11810. name: "Normal",
  11811. height: math.unit(4, "feet"),
  11812. default: true
  11813. },
  11814. ]
  11815. ))
  11816. characterMakers.push(() => makeCharacter(
  11817. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11818. {
  11819. front: {
  11820. height: math.unit(2 + 6 / 12, "feet"),
  11821. weight: math.unit(20, "lb"),
  11822. name: "Front",
  11823. image: {
  11824. source: "./media/characters/rufran/front.svg",
  11825. extra: 2041 / 1839,
  11826. bottom: 0.055
  11827. }
  11828. },
  11829. back: {
  11830. height: math.unit(2 + 6 / 12, "feet"),
  11831. weight: math.unit(20, "lb"),
  11832. name: "Back",
  11833. image: {
  11834. source: "./media/characters/rufran/back.svg",
  11835. extra: 2054 / 1839,
  11836. bottom: 0.01
  11837. }
  11838. },
  11839. hand: {
  11840. height: math.unit(0.2166, "meters"),
  11841. name: "Hand",
  11842. image: {
  11843. source: "./media/characters/rufran/hand.svg"
  11844. }
  11845. },
  11846. foot: {
  11847. height: math.unit(0.185, "meters"),
  11848. name: "Foot",
  11849. image: {
  11850. source: "./media/characters/rufran/foot.svg"
  11851. }
  11852. },
  11853. },
  11854. [
  11855. {
  11856. name: "Micro",
  11857. height: math.unit(1, "inch")
  11858. },
  11859. {
  11860. name: "Normal",
  11861. height: math.unit(2 + 6 / 12, "feet"),
  11862. default: true
  11863. },
  11864. {
  11865. name: "Big",
  11866. height: math.unit(60, "feet")
  11867. },
  11868. {
  11869. name: "Macro",
  11870. height: math.unit(325, "feet")
  11871. },
  11872. ]
  11873. ))
  11874. characterMakers.push(() => makeCharacter(
  11875. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11876. {
  11877. front: {
  11878. height: math.unit(0.3, "meters"),
  11879. weight: math.unit(3.5, "kg"),
  11880. name: "Front",
  11881. image: {
  11882. source: "./media/characters/chip/front.svg",
  11883. extra: 748 / 674
  11884. }
  11885. },
  11886. },
  11887. [
  11888. {
  11889. name: "Micro",
  11890. height: math.unit(1, "inch"),
  11891. default: true
  11892. },
  11893. ]
  11894. ))
  11895. characterMakers.push(() => makeCharacter(
  11896. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11897. {
  11898. side: {
  11899. height: math.unit(2.3, "meters"),
  11900. weight: math.unit(3500, "lb"),
  11901. name: "Side",
  11902. image: {
  11903. source: "./media/characters/torvid/side.svg",
  11904. extra: 1972 / 722,
  11905. bottom: 0.035
  11906. }
  11907. },
  11908. },
  11909. [
  11910. {
  11911. name: "Normal",
  11912. height: math.unit(2.3, "meters"),
  11913. default: true
  11914. },
  11915. ]
  11916. ))
  11917. characterMakers.push(() => makeCharacter(
  11918. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11919. {
  11920. front: {
  11921. height: math.unit(2, "meters"),
  11922. weight: math.unit(150.5, "kg"),
  11923. name: "Front",
  11924. image: {
  11925. source: "./media/characters/susan/front.svg",
  11926. extra: 693 / 635,
  11927. bottom: 0.05
  11928. }
  11929. },
  11930. },
  11931. [
  11932. {
  11933. name: "Megamacro",
  11934. height: math.unit(505, "miles"),
  11935. default: true
  11936. },
  11937. ]
  11938. ))
  11939. characterMakers.push(() => makeCharacter(
  11940. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11941. {
  11942. front: {
  11943. height: math.unit(6, "feet"),
  11944. weight: math.unit(150, "lb"),
  11945. name: "Front",
  11946. image: {
  11947. source: "./media/characters/raindrops/front.svg",
  11948. extra: 2655 / 2461,
  11949. bottom: 49 / 2705
  11950. }
  11951. },
  11952. back: {
  11953. height: math.unit(6, "feet"),
  11954. weight: math.unit(150, "lb"),
  11955. name: "Back",
  11956. image: {
  11957. source: "./media/characters/raindrops/back.svg",
  11958. extra: 2574 / 2400,
  11959. bottom: 65 / 2634
  11960. }
  11961. },
  11962. },
  11963. [
  11964. {
  11965. name: "Micro",
  11966. height: math.unit(6, "inches")
  11967. },
  11968. {
  11969. name: "Normal",
  11970. height: math.unit(6 + 2 / 12, "feet")
  11971. },
  11972. {
  11973. name: "Macro",
  11974. height: math.unit(131, "feet"),
  11975. default: true
  11976. },
  11977. {
  11978. name: "Megamacro",
  11979. height: math.unit(15, "miles")
  11980. },
  11981. {
  11982. name: "Gigamacro",
  11983. height: math.unit(4000, "miles")
  11984. },
  11985. {
  11986. name: "Teramacro",
  11987. height: math.unit(315000, "miles")
  11988. },
  11989. ]
  11990. ))
  11991. characterMakers.push(() => makeCharacter(
  11992. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11993. {
  11994. front: {
  11995. height: math.unit(2.794, "meters"),
  11996. weight: math.unit(325, "kg"),
  11997. name: "Front",
  11998. image: {
  11999. source: "./media/characters/tezwa/front.svg",
  12000. extra: 2083 / 1906,
  12001. bottom: 0.031
  12002. }
  12003. },
  12004. foot: {
  12005. height: math.unit(0.687, "meters"),
  12006. name: "Foot",
  12007. image: {
  12008. source: "./media/characters/tezwa/foot.svg"
  12009. }
  12010. },
  12011. },
  12012. [
  12013. {
  12014. name: "Normal",
  12015. height: math.unit(9 + 2 / 12, "feet"),
  12016. default: true
  12017. },
  12018. ]
  12019. ))
  12020. characterMakers.push(() => makeCharacter(
  12021. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12022. {
  12023. front: {
  12024. height: math.unit(58, "feet"),
  12025. weight: math.unit(89000, "lb"),
  12026. name: "Front",
  12027. image: {
  12028. source: "./media/characters/typhus/front.svg",
  12029. extra: 816 / 800,
  12030. bottom: 0.065
  12031. }
  12032. },
  12033. },
  12034. [
  12035. {
  12036. name: "Macro",
  12037. height: math.unit(58, "feet"),
  12038. default: true
  12039. },
  12040. ]
  12041. ))
  12042. characterMakers.push(() => makeCharacter(
  12043. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12044. {
  12045. front: {
  12046. height: math.unit(12, "feet"),
  12047. weight: math.unit(6, "tonnes"),
  12048. name: "Front",
  12049. image: {
  12050. source: "./media/characters/lyra-von-wulf/front.svg",
  12051. extra: 1,
  12052. bottom: 0.10
  12053. }
  12054. },
  12055. frontMecha: {
  12056. height: math.unit(12, "feet"),
  12057. weight: math.unit(12, "tonnes"),
  12058. name: "Front (Mecha)",
  12059. image: {
  12060. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12061. extra: 1,
  12062. bottom: 0.042
  12063. }
  12064. },
  12065. maw: {
  12066. height: math.unit(2.2, "feet"),
  12067. name: "Maw",
  12068. image: {
  12069. source: "./media/characters/lyra-von-wulf/maw.svg"
  12070. }
  12071. },
  12072. },
  12073. [
  12074. {
  12075. name: "Normal",
  12076. height: math.unit(12, "feet"),
  12077. default: true
  12078. },
  12079. {
  12080. name: "Classic",
  12081. height: math.unit(50, "feet")
  12082. },
  12083. {
  12084. name: "Macro",
  12085. height: math.unit(500, "feet")
  12086. },
  12087. {
  12088. name: "Megamacro",
  12089. height: math.unit(1, "mile")
  12090. },
  12091. {
  12092. name: "Gigamacro",
  12093. height: math.unit(400, "miles")
  12094. },
  12095. {
  12096. name: "Teramacro",
  12097. height: math.unit(22000, "miles")
  12098. },
  12099. {
  12100. name: "Solarmacro",
  12101. height: math.unit(8600000, "miles")
  12102. },
  12103. {
  12104. name: "Galactic",
  12105. height: math.unit(1057000, "lightyears")
  12106. },
  12107. ]
  12108. ))
  12109. characterMakers.push(() => makeCharacter(
  12110. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12111. {
  12112. front: {
  12113. height: math.unit(6 + 10 / 12, "feet"),
  12114. weight: math.unit(150, "lb"),
  12115. name: "Front",
  12116. image: {
  12117. source: "./media/characters/dixon/front.svg",
  12118. extra: 3361 / 3209,
  12119. bottom: 0.01
  12120. }
  12121. },
  12122. },
  12123. [
  12124. {
  12125. name: "Normal",
  12126. height: math.unit(6 + 10 / 12, "feet"),
  12127. default: true
  12128. },
  12129. {
  12130. name: "Big",
  12131. height: math.unit(12, "meters")
  12132. },
  12133. {
  12134. name: "Macro",
  12135. height: math.unit(500, "meters")
  12136. },
  12137. {
  12138. name: "Megamacro",
  12139. height: math.unit(2, "km")
  12140. },
  12141. ]
  12142. ))
  12143. characterMakers.push(() => makeCharacter(
  12144. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12145. {
  12146. front: {
  12147. height: math.unit(185, "cm"),
  12148. weight: math.unit(68, "kg"),
  12149. name: "Front",
  12150. image: {
  12151. source: "./media/characters/kauko/front.svg",
  12152. extra: 1455 / 1421,
  12153. bottom: 0.03
  12154. }
  12155. },
  12156. back: {
  12157. height: math.unit(185, "cm"),
  12158. weight: math.unit(68, "kg"),
  12159. name: "Back",
  12160. image: {
  12161. source: "./media/characters/kauko/back.svg",
  12162. extra: 1455 / 1421,
  12163. bottom: 0.004
  12164. }
  12165. },
  12166. },
  12167. [
  12168. {
  12169. name: "Normal",
  12170. height: math.unit(185, "cm"),
  12171. default: true
  12172. },
  12173. ]
  12174. ))
  12175. characterMakers.push(() => makeCharacter(
  12176. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12177. {
  12178. front: {
  12179. height: math.unit(6, "feet"),
  12180. weight: math.unit(150, "kg"),
  12181. name: "Front",
  12182. image: {
  12183. source: "./media/characters/varg/front.svg",
  12184. extra: 1108 / 1018,
  12185. bottom: 0.0375
  12186. }
  12187. },
  12188. },
  12189. [
  12190. {
  12191. name: "Normal",
  12192. height: math.unit(5, "meters")
  12193. },
  12194. {
  12195. name: "Macro",
  12196. height: math.unit(200, "meters")
  12197. },
  12198. {
  12199. name: "Megamacro",
  12200. height: math.unit(20, "kilometers")
  12201. },
  12202. {
  12203. name: "True Size",
  12204. height: math.unit(211, "km"),
  12205. default: true
  12206. },
  12207. {
  12208. name: "Gigamacro",
  12209. height: math.unit(1000, "km")
  12210. },
  12211. {
  12212. name: "Gigamacro+",
  12213. height: math.unit(8000, "km")
  12214. },
  12215. {
  12216. name: "Teramacro",
  12217. height: math.unit(1000000, "km")
  12218. },
  12219. ]
  12220. ))
  12221. characterMakers.push(() => makeCharacter(
  12222. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12223. {
  12224. front: {
  12225. height: math.unit(7 + 7 / 12, "feet"),
  12226. weight: math.unit(267, "lb"),
  12227. name: "Front",
  12228. image: {
  12229. source: "./media/characters/dayza/front.svg",
  12230. extra: 1262 / 1200,
  12231. bottom: 0.035
  12232. }
  12233. },
  12234. side: {
  12235. height: math.unit(7 + 7 / 12, "feet"),
  12236. weight: math.unit(267, "lb"),
  12237. name: "Side",
  12238. image: {
  12239. source: "./media/characters/dayza/side.svg",
  12240. extra: 1295 / 1245,
  12241. bottom: 0.05
  12242. }
  12243. },
  12244. back: {
  12245. height: math.unit(7 + 7 / 12, "feet"),
  12246. weight: math.unit(267, "lb"),
  12247. name: "Back",
  12248. image: {
  12249. source: "./media/characters/dayza/back.svg",
  12250. extra: 1241 / 1170
  12251. }
  12252. },
  12253. },
  12254. [
  12255. {
  12256. name: "Normal",
  12257. height: math.unit(7 + 7 / 12, "feet"),
  12258. default: true
  12259. },
  12260. {
  12261. name: "Macro",
  12262. height: math.unit(155, "feet")
  12263. },
  12264. ]
  12265. ))
  12266. characterMakers.push(() => makeCharacter(
  12267. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12268. {
  12269. front: {
  12270. height: math.unit(6 + 5 / 12, "feet"),
  12271. weight: math.unit(160, "lb"),
  12272. name: "Front",
  12273. image: {
  12274. source: "./media/characters/xanthos/front.svg",
  12275. extra: 1,
  12276. bottom: 0.04
  12277. }
  12278. },
  12279. back: {
  12280. height: math.unit(6 + 5 / 12, "feet"),
  12281. weight: math.unit(160, "lb"),
  12282. name: "Back",
  12283. image: {
  12284. source: "./media/characters/xanthos/back.svg",
  12285. extra: 1,
  12286. bottom: 0.03
  12287. }
  12288. },
  12289. hand: {
  12290. height: math.unit(0.928, "feet"),
  12291. name: "Hand",
  12292. image: {
  12293. source: "./media/characters/xanthos/hand.svg"
  12294. }
  12295. },
  12296. foot: {
  12297. height: math.unit(1.286, "feet"),
  12298. name: "Foot",
  12299. image: {
  12300. source: "./media/characters/xanthos/foot.svg"
  12301. }
  12302. },
  12303. },
  12304. [
  12305. {
  12306. name: "Normal",
  12307. height: math.unit(6 + 5 / 12, "feet"),
  12308. default: true
  12309. },
  12310. {
  12311. name: "Normal+",
  12312. height: math.unit(6, "meters")
  12313. },
  12314. {
  12315. name: "Macro",
  12316. height: math.unit(40, "feet")
  12317. },
  12318. {
  12319. name: "Macro+",
  12320. height: math.unit(200, "meters")
  12321. },
  12322. {
  12323. name: "Megamacro",
  12324. height: math.unit(20, "km")
  12325. },
  12326. {
  12327. name: "Megamacro+",
  12328. height: math.unit(100, "km")
  12329. },
  12330. ]
  12331. ))
  12332. characterMakers.push(() => makeCharacter(
  12333. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12334. {
  12335. front: {
  12336. height: math.unit(6 + 3 / 12, "feet"),
  12337. weight: math.unit(215, "lb"),
  12338. name: "Front",
  12339. image: {
  12340. source: "./media/characters/grynn/front.svg",
  12341. extra: 4627 / 4209,
  12342. bottom: 0.047
  12343. }
  12344. },
  12345. },
  12346. [
  12347. {
  12348. name: "Micro",
  12349. height: math.unit(6, "inches")
  12350. },
  12351. {
  12352. name: "Normal",
  12353. height: math.unit(6 + 3 / 12, "feet"),
  12354. default: true
  12355. },
  12356. {
  12357. name: "Big",
  12358. height: math.unit(104, "feet")
  12359. },
  12360. {
  12361. name: "Macro",
  12362. height: math.unit(944, "feet")
  12363. },
  12364. {
  12365. name: "Macro+",
  12366. height: math.unit(9480, "feet")
  12367. },
  12368. {
  12369. name: "Megamacro",
  12370. height: math.unit(78752, "feet")
  12371. },
  12372. {
  12373. name: "Megamacro+",
  12374. height: math.unit(630128, "feet")
  12375. },
  12376. {
  12377. name: "Megamacro++",
  12378. height: math.unit(3150695, "feet")
  12379. },
  12380. ]
  12381. ))
  12382. characterMakers.push(() => makeCharacter(
  12383. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12384. {
  12385. front: {
  12386. height: math.unit(7 + 5 / 12, "feet"),
  12387. weight: math.unit(450, "lb"),
  12388. name: "Front",
  12389. image: {
  12390. source: "./media/characters/mocha-aura/front.svg",
  12391. extra: 1907 / 1817,
  12392. bottom: 0.04
  12393. }
  12394. },
  12395. back: {
  12396. height: math.unit(7 + 5 / 12, "feet"),
  12397. weight: math.unit(450, "lb"),
  12398. name: "Back",
  12399. image: {
  12400. source: "./media/characters/mocha-aura/back.svg",
  12401. extra: 1900 / 1825,
  12402. bottom: 0.045
  12403. }
  12404. },
  12405. },
  12406. [
  12407. {
  12408. name: "Nano",
  12409. height: math.unit(1, "nm")
  12410. },
  12411. {
  12412. name: "Megamicro",
  12413. height: math.unit(1, "mm")
  12414. },
  12415. {
  12416. name: "Micro",
  12417. height: math.unit(3, "inches")
  12418. },
  12419. {
  12420. name: "Normal",
  12421. height: math.unit(7 + 5 / 12, "feet"),
  12422. default: true
  12423. },
  12424. {
  12425. name: "Macro",
  12426. height: math.unit(30, "feet")
  12427. },
  12428. {
  12429. name: "Megamacro",
  12430. height: math.unit(3500, "feet")
  12431. },
  12432. {
  12433. name: "Teramacro",
  12434. height: math.unit(500000, "miles")
  12435. },
  12436. {
  12437. name: "Petamacro",
  12438. height: math.unit(50000000000000000, "parsecs")
  12439. },
  12440. ]
  12441. ))
  12442. characterMakers.push(() => makeCharacter(
  12443. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12444. {
  12445. front: {
  12446. height: math.unit(6, "feet"),
  12447. weight: math.unit(150, "lb"),
  12448. name: "Front",
  12449. image: {
  12450. source: "./media/characters/ilisha-devya/front.svg",
  12451. extra: 1,
  12452. bottom: 0.175
  12453. }
  12454. },
  12455. back: {
  12456. height: math.unit(6, "feet"),
  12457. weight: math.unit(150, "lb"),
  12458. name: "Back",
  12459. image: {
  12460. source: "./media/characters/ilisha-devya/back.svg",
  12461. extra: 1,
  12462. bottom: 0.015
  12463. }
  12464. },
  12465. },
  12466. [
  12467. {
  12468. name: "Macro",
  12469. height: math.unit(500, "feet"),
  12470. default: true
  12471. },
  12472. {
  12473. name: "Megamacro",
  12474. height: math.unit(10, "miles")
  12475. },
  12476. {
  12477. name: "Gigamacro",
  12478. height: math.unit(100000, "miles")
  12479. },
  12480. {
  12481. name: "Examacro",
  12482. height: math.unit(1e9, "lightyears")
  12483. },
  12484. {
  12485. name: "Omniversal",
  12486. height: math.unit(1e33, "lightyears")
  12487. },
  12488. {
  12489. name: "Beyond Infinite",
  12490. height: math.unit(1e100, "lightyears")
  12491. },
  12492. ]
  12493. ))
  12494. characterMakers.push(() => makeCharacter(
  12495. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12496. {
  12497. Side: {
  12498. height: math.unit(6, "feet"),
  12499. weight: math.unit(150, "lb"),
  12500. name: "Side",
  12501. image: {
  12502. source: "./media/characters/mira/side.svg",
  12503. extra: 900 / 799,
  12504. bottom: 0.02
  12505. }
  12506. },
  12507. },
  12508. [
  12509. {
  12510. name: "Human Size",
  12511. height: math.unit(6, "feet")
  12512. },
  12513. {
  12514. name: "Macro",
  12515. height: math.unit(100, "feet"),
  12516. default: true
  12517. },
  12518. {
  12519. name: "Megamacro",
  12520. height: math.unit(10, "miles")
  12521. },
  12522. {
  12523. name: "Gigamacro",
  12524. height: math.unit(25000, "miles")
  12525. },
  12526. {
  12527. name: "Teramacro",
  12528. height: math.unit(300, "AU")
  12529. },
  12530. {
  12531. name: "Full Size",
  12532. height: math.unit(4.5e10, "lightyears")
  12533. },
  12534. ]
  12535. ))
  12536. characterMakers.push(() => makeCharacter(
  12537. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12538. {
  12539. front: {
  12540. height: math.unit(6, "feet"),
  12541. weight: math.unit(150, "lb"),
  12542. name: "Front",
  12543. image: {
  12544. source: "./media/characters/holly/front.svg",
  12545. extra: 639 / 606
  12546. }
  12547. },
  12548. back: {
  12549. height: math.unit(6, "feet"),
  12550. weight: math.unit(150, "lb"),
  12551. name: "Back",
  12552. image: {
  12553. source: "./media/characters/holly/back.svg",
  12554. extra: 623 / 598
  12555. }
  12556. },
  12557. frontWorking: {
  12558. height: math.unit(6, "feet"),
  12559. weight: math.unit(150, "lb"),
  12560. name: "Front (Working)",
  12561. image: {
  12562. source: "./media/characters/holly/front-working.svg",
  12563. extra: 607 / 577,
  12564. bottom: 0.048
  12565. }
  12566. },
  12567. },
  12568. [
  12569. {
  12570. name: "Normal",
  12571. height: math.unit(12 + 3 / 12, "feet"),
  12572. default: true
  12573. },
  12574. ]
  12575. ))
  12576. characterMakers.push(() => makeCharacter(
  12577. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12578. {
  12579. front: {
  12580. height: math.unit(6, "feet"),
  12581. weight: math.unit(150, "lb"),
  12582. name: "Front",
  12583. image: {
  12584. source: "./media/characters/porter/front.svg",
  12585. extra: 1,
  12586. bottom: 0.01
  12587. }
  12588. },
  12589. frontRobes: {
  12590. height: math.unit(6, "feet"),
  12591. weight: math.unit(150, "lb"),
  12592. name: "Front (Robes)",
  12593. image: {
  12594. source: "./media/characters/porter/front-robes.svg",
  12595. extra: 1.01,
  12596. bottom: 0.01
  12597. }
  12598. },
  12599. },
  12600. [
  12601. {
  12602. name: "Normal",
  12603. height: math.unit(11 + 9 / 12, "feet"),
  12604. default: true
  12605. },
  12606. ]
  12607. ))
  12608. characterMakers.push(() => makeCharacter(
  12609. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12610. {
  12611. legendary: {
  12612. height: math.unit(6, "feet"),
  12613. weight: math.unit(150, "lb"),
  12614. name: "Legendary",
  12615. image: {
  12616. source: "./media/characters/lucy/legendary.svg",
  12617. extra: 1355 / 1100,
  12618. bottom: 0.045
  12619. }
  12620. },
  12621. },
  12622. [
  12623. {
  12624. name: "Legendary",
  12625. height: math.unit(86882 * 2, "miles"),
  12626. default: true
  12627. },
  12628. ]
  12629. ))
  12630. characterMakers.push(() => makeCharacter(
  12631. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12632. {
  12633. front: {
  12634. height: math.unit(6, "feet"),
  12635. weight: math.unit(150, "lb"),
  12636. name: "Front",
  12637. image: {
  12638. source: "./media/characters/drusilla/front.svg",
  12639. extra: 678 / 635,
  12640. bottom: 0.03
  12641. }
  12642. },
  12643. back: {
  12644. height: math.unit(6, "feet"),
  12645. weight: math.unit(150, "lb"),
  12646. name: "Back",
  12647. image: {
  12648. source: "./media/characters/drusilla/back.svg",
  12649. extra: 678 / 635,
  12650. bottom: 0.005
  12651. }
  12652. },
  12653. },
  12654. [
  12655. {
  12656. name: "Macro",
  12657. height: math.unit(100, "feet")
  12658. },
  12659. {
  12660. name: "Canon Height",
  12661. height: math.unit(2000, "feet"),
  12662. default: true
  12663. },
  12664. ]
  12665. ))
  12666. characterMakers.push(() => makeCharacter(
  12667. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12668. {
  12669. front: {
  12670. height: math.unit(6, "feet"),
  12671. weight: math.unit(180, "lb"),
  12672. name: "Front",
  12673. image: {
  12674. source: "./media/characters/renard-thatch/front.svg",
  12675. extra: 2411 / 2275,
  12676. bottom: 0.01
  12677. }
  12678. },
  12679. frontPosing: {
  12680. height: math.unit(6, "feet"),
  12681. weight: math.unit(180, "lb"),
  12682. name: "Front (Posing)",
  12683. image: {
  12684. source: "./media/characters/renard-thatch/front-posing.svg",
  12685. extra: 2381 / 2261,
  12686. bottom: 0.01
  12687. }
  12688. },
  12689. back: {
  12690. height: math.unit(6, "feet"),
  12691. weight: math.unit(180, "lb"),
  12692. name: "Back",
  12693. image: {
  12694. source: "./media/characters/renard-thatch/back.svg",
  12695. extra: 2428 / 2288
  12696. }
  12697. },
  12698. },
  12699. [
  12700. {
  12701. name: "Micro",
  12702. height: math.unit(3, "inches")
  12703. },
  12704. {
  12705. name: "Default",
  12706. height: math.unit(6, "feet"),
  12707. default: true
  12708. },
  12709. {
  12710. name: "Macro",
  12711. height: math.unit(75, "feet")
  12712. },
  12713. ]
  12714. ))
  12715. characterMakers.push(() => makeCharacter(
  12716. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12717. {
  12718. front: {
  12719. height: math.unit(1450, "feet"),
  12720. weight: math.unit(1.21e6, "tons"),
  12721. name: "Front",
  12722. image: {
  12723. source: "./media/characters/sekvra/front.svg",
  12724. extra: 1,
  12725. bottom: 0.03
  12726. }
  12727. },
  12728. frontClothed: {
  12729. height: math.unit(1450, "feet"),
  12730. weight: math.unit(1.21e6, "tons"),
  12731. name: "Front (Clothed)",
  12732. image: {
  12733. source: "./media/characters/sekvra/front-clothed.svg",
  12734. extra: 1,
  12735. bottom: 0.03
  12736. }
  12737. },
  12738. side: {
  12739. height: math.unit(1450, "feet"),
  12740. weight: math.unit(1.21e6, "tons"),
  12741. name: "Side",
  12742. image: {
  12743. source: "./media/characters/sekvra/side.svg",
  12744. extra: 1,
  12745. bottom: 0.025
  12746. }
  12747. },
  12748. back: {
  12749. height: math.unit(1450, "feet"),
  12750. weight: math.unit(1.21e6, "tons"),
  12751. name: "Back",
  12752. image: {
  12753. source: "./media/characters/sekvra/back.svg",
  12754. extra: 1,
  12755. bottom: 0.005
  12756. }
  12757. },
  12758. },
  12759. [
  12760. {
  12761. name: "Macro",
  12762. height: math.unit(1450, "feet"),
  12763. default: true
  12764. },
  12765. {
  12766. name: "Megamacro",
  12767. height: math.unit(15000, "feet")
  12768. },
  12769. ]
  12770. ))
  12771. characterMakers.push(() => makeCharacter(
  12772. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12773. {
  12774. front: {
  12775. height: math.unit(6, "feet"),
  12776. weight: math.unit(150, "lb"),
  12777. name: "Front",
  12778. image: {
  12779. source: "./media/characters/carmine/front.svg",
  12780. extra: 1,
  12781. bottom: 0.035
  12782. }
  12783. },
  12784. frontArmor: {
  12785. height: math.unit(6, "feet"),
  12786. weight: math.unit(150, "lb"),
  12787. name: "Front (Armor)",
  12788. image: {
  12789. source: "./media/characters/carmine/front-armor.svg",
  12790. extra: 1,
  12791. bottom: 0.035
  12792. }
  12793. },
  12794. },
  12795. [
  12796. {
  12797. name: "Large",
  12798. height: math.unit(1, "mile")
  12799. },
  12800. {
  12801. name: "Huge",
  12802. height: math.unit(40, "miles"),
  12803. default: true
  12804. },
  12805. {
  12806. name: "Colossal",
  12807. height: math.unit(2500, "miles")
  12808. },
  12809. ]
  12810. ))
  12811. characterMakers.push(() => makeCharacter(
  12812. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12813. {
  12814. front: {
  12815. height: math.unit(6, "feet"),
  12816. weight: math.unit(150, "lb"),
  12817. name: "Front",
  12818. image: {
  12819. source: "./media/characters/elyssia/front.svg",
  12820. extra: 2201 / 2035,
  12821. bottom: 0.05
  12822. }
  12823. },
  12824. frontClothed: {
  12825. height: math.unit(6, "feet"),
  12826. weight: math.unit(150, "lb"),
  12827. name: "Front (Clothed)",
  12828. image: {
  12829. source: "./media/characters/elyssia/front-clothed.svg",
  12830. extra: 2201 / 2035,
  12831. bottom: 0.05
  12832. }
  12833. },
  12834. back: {
  12835. height: math.unit(6, "feet"),
  12836. weight: math.unit(150, "lb"),
  12837. name: "Back",
  12838. image: {
  12839. source: "./media/characters/elyssia/back.svg",
  12840. extra: 2201 / 2035,
  12841. bottom: 0.013
  12842. }
  12843. },
  12844. },
  12845. [
  12846. {
  12847. name: "Smaller",
  12848. height: math.unit(150, "feet")
  12849. },
  12850. {
  12851. name: "Standard",
  12852. height: math.unit(1400, "feet"),
  12853. default: true
  12854. },
  12855. {
  12856. name: "Distracted",
  12857. height: math.unit(15000, "feet")
  12858. },
  12859. ]
  12860. ))
  12861. characterMakers.push(() => makeCharacter(
  12862. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12863. {
  12864. front: {
  12865. height: math.unit(7 + 4 / 12, "feet"),
  12866. weight: math.unit(500, "lb"),
  12867. name: "Front",
  12868. image: {
  12869. source: "./media/characters/geno-maxwell/front.svg",
  12870. extra: 2207 / 2040,
  12871. bottom: 0.015
  12872. }
  12873. },
  12874. },
  12875. [
  12876. {
  12877. name: "Micro",
  12878. height: math.unit(3, "inches")
  12879. },
  12880. {
  12881. name: "Normal",
  12882. height: math.unit(7 + 4 / 12, "feet"),
  12883. default: true
  12884. },
  12885. {
  12886. name: "Macro",
  12887. height: math.unit(220, "feet")
  12888. },
  12889. {
  12890. name: "Megamacro",
  12891. height: math.unit(11, "miles")
  12892. },
  12893. ]
  12894. ))
  12895. characterMakers.push(() => makeCharacter(
  12896. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12897. {
  12898. front: {
  12899. height: math.unit(7 + 4 / 12, "feet"),
  12900. weight: math.unit(500, "lb"),
  12901. name: "Front",
  12902. image: {
  12903. source: "./media/characters/regena-maxwell/front.svg",
  12904. extra: 3115 / 2770,
  12905. bottom: 0.02
  12906. }
  12907. },
  12908. },
  12909. [
  12910. {
  12911. name: "Normal",
  12912. height: math.unit(7 + 4 / 12, "feet"),
  12913. default: true
  12914. },
  12915. {
  12916. name: "Macro",
  12917. height: math.unit(220, "feet")
  12918. },
  12919. {
  12920. name: "Megamacro",
  12921. height: math.unit(11, "miles")
  12922. },
  12923. ]
  12924. ))
  12925. characterMakers.push(() => makeCharacter(
  12926. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12927. {
  12928. front: {
  12929. height: math.unit(6, "feet"),
  12930. weight: math.unit(150, "lb"),
  12931. name: "Front",
  12932. image: {
  12933. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12934. extra: 860 / 690,
  12935. bottom: 0.03
  12936. }
  12937. },
  12938. },
  12939. [
  12940. {
  12941. name: "Normal",
  12942. height: math.unit(1.7, "meters"),
  12943. default: true
  12944. },
  12945. ]
  12946. ))
  12947. characterMakers.push(() => makeCharacter(
  12948. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12949. {
  12950. front: {
  12951. height: math.unit(6, "feet"),
  12952. weight: math.unit(150, "lb"),
  12953. name: "Front",
  12954. image: {
  12955. source: "./media/characters/quilly/front.svg",
  12956. extra: 890 / 776
  12957. }
  12958. },
  12959. },
  12960. [
  12961. {
  12962. name: "Gigamacro",
  12963. height: math.unit(404090, "miles"),
  12964. default: true
  12965. },
  12966. ]
  12967. ))
  12968. characterMakers.push(() => makeCharacter(
  12969. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12970. {
  12971. front: {
  12972. height: math.unit(7 + 8 / 12, "feet"),
  12973. weight: math.unit(350, "lb"),
  12974. name: "Front",
  12975. image: {
  12976. source: "./media/characters/tempest/front.svg",
  12977. extra: 1175 / 1086,
  12978. bottom: 0.02
  12979. }
  12980. },
  12981. },
  12982. [
  12983. {
  12984. name: "Normal",
  12985. height: math.unit(7 + 8 / 12, "feet"),
  12986. default: true
  12987. },
  12988. ]
  12989. ))
  12990. characterMakers.push(() => makeCharacter(
  12991. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12992. {
  12993. side: {
  12994. height: math.unit(4 + 5 / 12, "feet"),
  12995. weight: math.unit(80, "lb"),
  12996. name: "Side",
  12997. image: {
  12998. source: "./media/characters/rodger/side.svg",
  12999. extra: 1235 / 1118
  13000. }
  13001. },
  13002. },
  13003. [
  13004. {
  13005. name: "Micro",
  13006. height: math.unit(1, "inch")
  13007. },
  13008. {
  13009. name: "Normal",
  13010. height: math.unit(4 + 5 / 12, "feet"),
  13011. default: true
  13012. },
  13013. {
  13014. name: "Macro",
  13015. height: math.unit(120, "feet")
  13016. },
  13017. ]
  13018. ))
  13019. characterMakers.push(() => makeCharacter(
  13020. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13021. {
  13022. front: {
  13023. height: math.unit(6, "feet"),
  13024. weight: math.unit(150, "lb"),
  13025. name: "Front",
  13026. image: {
  13027. source: "./media/characters/danyel/front.svg",
  13028. extra: 1185 / 1123,
  13029. bottom: 0.05
  13030. }
  13031. },
  13032. },
  13033. [
  13034. {
  13035. name: "Shrunken",
  13036. height: math.unit(0.5, "mm")
  13037. },
  13038. {
  13039. name: "Micro",
  13040. height: math.unit(1, "mm"),
  13041. default: true
  13042. },
  13043. {
  13044. name: "Upsized",
  13045. height: math.unit(5 + 5 / 12, "feet")
  13046. },
  13047. ]
  13048. ))
  13049. characterMakers.push(() => makeCharacter(
  13050. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13051. {
  13052. front: {
  13053. height: math.unit(5 + 6 / 12, "feet"),
  13054. weight: math.unit(200, "lb"),
  13055. name: "Front",
  13056. image: {
  13057. source: "./media/characters/vivian-bijoux/front.svg",
  13058. extra: 1,
  13059. bottom: 0.072
  13060. }
  13061. },
  13062. },
  13063. [
  13064. {
  13065. name: "Normal",
  13066. height: math.unit(5 + 6 / 12, "feet"),
  13067. default: true
  13068. },
  13069. {
  13070. name: "Bad Dream",
  13071. height: math.unit(500, "feet")
  13072. },
  13073. {
  13074. name: "Nightmare",
  13075. height: math.unit(500, "miles")
  13076. },
  13077. ]
  13078. ))
  13079. characterMakers.push(() => makeCharacter(
  13080. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13081. {
  13082. front: {
  13083. height: math.unit(6 + 1 / 12, "feet"),
  13084. weight: math.unit(260, "lb"),
  13085. name: "Front",
  13086. image: {
  13087. source: "./media/characters/zeta/front.svg",
  13088. extra: 1968 / 1889,
  13089. bottom: 0.06
  13090. }
  13091. },
  13092. back: {
  13093. height: math.unit(6 + 1 / 12, "feet"),
  13094. weight: math.unit(260, "lb"),
  13095. name: "Back",
  13096. image: {
  13097. source: "./media/characters/zeta/back.svg",
  13098. extra: 1944 / 1858,
  13099. bottom: 0.03
  13100. }
  13101. },
  13102. hand: {
  13103. height: math.unit(1.112, "feet"),
  13104. name: "Hand",
  13105. image: {
  13106. source: "./media/characters/zeta/hand.svg"
  13107. }
  13108. },
  13109. foot: {
  13110. height: math.unit(1.48, "feet"),
  13111. name: "Foot",
  13112. image: {
  13113. source: "./media/characters/zeta/foot.svg"
  13114. }
  13115. },
  13116. },
  13117. [
  13118. {
  13119. name: "Micro",
  13120. height: math.unit(6, "inches")
  13121. },
  13122. {
  13123. name: "Normal",
  13124. height: math.unit(6 + 1 / 12, "feet"),
  13125. default: true
  13126. },
  13127. {
  13128. name: "Macro",
  13129. height: math.unit(20, "feet")
  13130. },
  13131. ]
  13132. ))
  13133. characterMakers.push(() => makeCharacter(
  13134. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13135. {
  13136. front: {
  13137. height: math.unit(6, "feet"),
  13138. weight: math.unit(150, "lb"),
  13139. name: "Front",
  13140. image: {
  13141. source: "./media/characters/jamie-larsen/front.svg",
  13142. extra: 962 / 933,
  13143. bottom: 0.02
  13144. }
  13145. },
  13146. back: {
  13147. height: math.unit(6, "feet"),
  13148. weight: math.unit(150, "lb"),
  13149. name: "Back",
  13150. image: {
  13151. source: "./media/characters/jamie-larsen/back.svg",
  13152. extra: 997 / 946
  13153. }
  13154. },
  13155. },
  13156. [
  13157. {
  13158. name: "Macro",
  13159. height: math.unit(28 + 7 / 12, "feet"),
  13160. default: true
  13161. },
  13162. {
  13163. name: "Macro+",
  13164. height: math.unit(180, "feet")
  13165. },
  13166. {
  13167. name: "Megamacro",
  13168. height: math.unit(10, "miles")
  13169. },
  13170. {
  13171. name: "Gigamacro",
  13172. height: math.unit(200000, "miles")
  13173. },
  13174. ]
  13175. ))
  13176. characterMakers.push(() => makeCharacter(
  13177. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13178. {
  13179. front: {
  13180. height: math.unit(6, "feet"),
  13181. weight: math.unit(120, "lb"),
  13182. name: "Front",
  13183. image: {
  13184. source: "./media/characters/vance/front.svg",
  13185. extra: 1980 / 1890,
  13186. bottom: 0.09
  13187. }
  13188. },
  13189. back: {
  13190. height: math.unit(6, "feet"),
  13191. weight: math.unit(120, "lb"),
  13192. name: "Back",
  13193. image: {
  13194. source: "./media/characters/vance/back.svg",
  13195. extra: 2081 / 1994,
  13196. bottom: 0.014
  13197. }
  13198. },
  13199. hand: {
  13200. height: math.unit(0.88, "feet"),
  13201. name: "Hand",
  13202. image: {
  13203. source: "./media/characters/vance/hand.svg"
  13204. }
  13205. },
  13206. foot: {
  13207. height: math.unit(0.64, "feet"),
  13208. name: "Foot",
  13209. image: {
  13210. source: "./media/characters/vance/foot.svg"
  13211. }
  13212. },
  13213. },
  13214. [
  13215. {
  13216. name: "Small",
  13217. height: math.unit(90, "feet"),
  13218. default: true
  13219. },
  13220. {
  13221. name: "Macro",
  13222. height: math.unit(100, "meters")
  13223. },
  13224. {
  13225. name: "Megamacro",
  13226. height: math.unit(15, "miles")
  13227. },
  13228. ]
  13229. ))
  13230. characterMakers.push(() => makeCharacter(
  13231. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13232. {
  13233. front: {
  13234. height: math.unit(6, "feet"),
  13235. weight: math.unit(180, "lb"),
  13236. name: "Front",
  13237. image: {
  13238. source: "./media/characters/xochitl/front.svg",
  13239. extra: 2297 / 2261,
  13240. bottom: 0.065
  13241. }
  13242. },
  13243. back: {
  13244. height: math.unit(6, "feet"),
  13245. weight: math.unit(180, "lb"),
  13246. name: "Back",
  13247. image: {
  13248. source: "./media/characters/xochitl/back.svg",
  13249. extra: 2386 / 2354,
  13250. bottom: 0.01
  13251. }
  13252. },
  13253. foot: {
  13254. height: math.unit(6 / 5 * 1.15, "feet"),
  13255. weight: math.unit(150, "lb"),
  13256. name: "Foot",
  13257. image: {
  13258. source: "./media/characters/xochitl/foot.svg"
  13259. }
  13260. },
  13261. },
  13262. [
  13263. {
  13264. name: "Macro",
  13265. height: math.unit(80, "feet")
  13266. },
  13267. {
  13268. name: "Macro+",
  13269. height: math.unit(400, "feet"),
  13270. default: true
  13271. },
  13272. {
  13273. name: "Gigamacro",
  13274. height: math.unit(80000, "miles")
  13275. },
  13276. {
  13277. name: "Gigamacro+",
  13278. height: math.unit(400000, "miles")
  13279. },
  13280. {
  13281. name: "Teramacro",
  13282. height: math.unit(300, "AU")
  13283. },
  13284. ]
  13285. ))
  13286. characterMakers.push(() => makeCharacter(
  13287. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13288. {
  13289. front: {
  13290. height: math.unit(6, "feet"),
  13291. weight: math.unit(150, "lb"),
  13292. name: "Front",
  13293. image: {
  13294. source: "./media/characters/vincent/front.svg",
  13295. extra: 1130 / 1080,
  13296. bottom: 0.055
  13297. }
  13298. },
  13299. beak: {
  13300. height: math.unit(6 * 0.1, "feet"),
  13301. name: "Beak",
  13302. image: {
  13303. source: "./media/characters/vincent/beak.svg"
  13304. }
  13305. },
  13306. hand: {
  13307. height: math.unit(6 * 0.85, "feet"),
  13308. weight: math.unit(150, "lb"),
  13309. name: "Hand",
  13310. image: {
  13311. source: "./media/characters/vincent/hand.svg"
  13312. }
  13313. },
  13314. foot: {
  13315. height: math.unit(6 * 0.19, "feet"),
  13316. weight: math.unit(150, "lb"),
  13317. name: "Foot",
  13318. image: {
  13319. source: "./media/characters/vincent/foot.svg"
  13320. }
  13321. },
  13322. },
  13323. [
  13324. {
  13325. name: "Base",
  13326. height: math.unit(6 + 5 / 12, "feet"),
  13327. default: true
  13328. },
  13329. {
  13330. name: "Macro",
  13331. height: math.unit(300, "feet")
  13332. },
  13333. {
  13334. name: "Megamacro",
  13335. height: math.unit(2, "miles")
  13336. },
  13337. {
  13338. name: "Gigamacro",
  13339. height: math.unit(1000, "miles")
  13340. },
  13341. ]
  13342. ))
  13343. characterMakers.push(() => makeCharacter(
  13344. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13345. {
  13346. front: {
  13347. height: math.unit(6 + 2 / 12, "feet"),
  13348. weight: math.unit(265, "lb"),
  13349. name: "Front",
  13350. image: {
  13351. source: "./media/characters/jay/front.svg",
  13352. extra: 1510 / 1430,
  13353. bottom: 0.042
  13354. }
  13355. },
  13356. back: {
  13357. height: math.unit(6 + 2 / 12, "feet"),
  13358. weight: math.unit(265, "lb"),
  13359. name: "Back",
  13360. image: {
  13361. source: "./media/characters/jay/back.svg",
  13362. extra: 1510 / 1430,
  13363. bottom: 0.025
  13364. }
  13365. },
  13366. clothed: {
  13367. height: math.unit(6 + 2 / 12, "feet"),
  13368. weight: math.unit(265, "lb"),
  13369. name: "Front (Clothed)",
  13370. image: {
  13371. source: "./media/characters/jay/clothed.svg",
  13372. extra: 744 / 699,
  13373. bottom: 0.043
  13374. }
  13375. },
  13376. head: {
  13377. height: math.unit(1.772, "feet"),
  13378. name: "Head",
  13379. image: {
  13380. source: "./media/characters/jay/head.svg"
  13381. }
  13382. },
  13383. sizeRay: {
  13384. height: math.unit(1.331, "feet"),
  13385. name: "Size Ray",
  13386. image: {
  13387. source: "./media/characters/jay/size-ray.svg"
  13388. }
  13389. },
  13390. },
  13391. [
  13392. {
  13393. name: "Micro",
  13394. height: math.unit(1, "inch")
  13395. },
  13396. {
  13397. name: "Normal",
  13398. height: math.unit(6 + 2 / 12, "feet"),
  13399. default: true
  13400. },
  13401. {
  13402. name: "Macro",
  13403. height: math.unit(1, "mile")
  13404. },
  13405. {
  13406. name: "Megamacro",
  13407. height: math.unit(100, "miles")
  13408. },
  13409. ]
  13410. ))
  13411. characterMakers.push(() => makeCharacter(
  13412. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13413. {
  13414. front: {
  13415. height: math.unit(2, "meters"),
  13416. weight: math.unit(500, "kg"),
  13417. name: "Front",
  13418. image: {
  13419. source: "./media/characters/coatl/front.svg",
  13420. extra: 3948 / 3500,
  13421. bottom: 0.082
  13422. }
  13423. },
  13424. },
  13425. [
  13426. {
  13427. name: "Normal",
  13428. height: math.unit(4, "meters")
  13429. },
  13430. {
  13431. name: "Macro",
  13432. height: math.unit(100, "meters"),
  13433. default: true
  13434. },
  13435. {
  13436. name: "Macro+",
  13437. height: math.unit(300, "meters")
  13438. },
  13439. {
  13440. name: "Megamacro",
  13441. height: math.unit(3, "gigameters")
  13442. },
  13443. {
  13444. name: "Megamacro+",
  13445. height: math.unit(300, "terameters")
  13446. },
  13447. {
  13448. name: "Megamacro++",
  13449. height: math.unit(3, "lightyears")
  13450. },
  13451. ]
  13452. ))
  13453. characterMakers.push(() => makeCharacter(
  13454. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13455. {
  13456. front: {
  13457. height: math.unit(6, "feet"),
  13458. weight: math.unit(50, "kg"),
  13459. name: "front",
  13460. image: {
  13461. source: "./media/characters/shiroryu/front.svg",
  13462. extra: 1990 / 1935
  13463. }
  13464. },
  13465. },
  13466. [
  13467. {
  13468. name: "Mortal Mingling",
  13469. height: math.unit(3, "meters")
  13470. },
  13471. {
  13472. name: "Kaiju-ish",
  13473. height: math.unit(250, "meters")
  13474. },
  13475. {
  13476. name: "Somewhat Godly",
  13477. height: math.unit(400, "km"),
  13478. default: true
  13479. },
  13480. {
  13481. name: "Planetary",
  13482. height: math.unit(300, "megameters")
  13483. },
  13484. {
  13485. name: "Galaxy-dwarfing",
  13486. height: math.unit(450, "kiloparsecs")
  13487. },
  13488. {
  13489. name: "Universe Eater",
  13490. height: math.unit(150, "gigaparsecs")
  13491. },
  13492. {
  13493. name: "Almost Immeasurable",
  13494. height: math.unit(1.3e266, "yottaparsecs")
  13495. },
  13496. ]
  13497. ))
  13498. characterMakers.push(() => makeCharacter(
  13499. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13500. {
  13501. front: {
  13502. height: math.unit(6, "feet"),
  13503. weight: math.unit(150, "lb"),
  13504. name: "Front",
  13505. image: {
  13506. source: "./media/characters/umeko/front.svg",
  13507. extra: 1,
  13508. bottom: 0.019
  13509. }
  13510. },
  13511. frontArmored: {
  13512. height: math.unit(6, "feet"),
  13513. weight: math.unit(150, "lb"),
  13514. name: "Front (Armored)",
  13515. image: {
  13516. source: "./media/characters/umeko/front-armored.svg",
  13517. extra: 1,
  13518. bottom: 0.021
  13519. }
  13520. },
  13521. },
  13522. [
  13523. {
  13524. name: "Macro",
  13525. height: math.unit(220, "feet"),
  13526. default: true
  13527. },
  13528. {
  13529. name: "Guardian Dragon",
  13530. height: math.unit(50, "miles")
  13531. },
  13532. {
  13533. name: "Cosmic",
  13534. height: math.unit(800000, "miles")
  13535. },
  13536. ]
  13537. ))
  13538. characterMakers.push(() => makeCharacter(
  13539. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13540. {
  13541. front: {
  13542. height: math.unit(6, "feet"),
  13543. weight: math.unit(150, "lb"),
  13544. name: "Front",
  13545. image: {
  13546. source: "./media/characters/cassidy/front.svg",
  13547. extra: 1,
  13548. bottom: 0.043
  13549. }
  13550. },
  13551. },
  13552. [
  13553. {
  13554. name: "Canon Height",
  13555. height: math.unit(120, "feet"),
  13556. default: true
  13557. },
  13558. {
  13559. name: "Macro+",
  13560. height: math.unit(400, "feet")
  13561. },
  13562. {
  13563. name: "Macro++",
  13564. height: math.unit(4000, "feet")
  13565. },
  13566. {
  13567. name: "Megamacro",
  13568. height: math.unit(3, "miles")
  13569. },
  13570. ]
  13571. ))
  13572. characterMakers.push(() => makeCharacter(
  13573. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13574. {
  13575. front: {
  13576. height: math.unit(6, "feet"),
  13577. weight: math.unit(150, "lb"),
  13578. name: "Front",
  13579. image: {
  13580. source: "./media/characters/isaac/front.svg",
  13581. extra: 896 / 815,
  13582. bottom: 0.11
  13583. }
  13584. },
  13585. },
  13586. [
  13587. {
  13588. name: "Human Size",
  13589. height: math.unit(8, "feet"),
  13590. default: true
  13591. },
  13592. {
  13593. name: "Macro",
  13594. height: math.unit(400, "feet")
  13595. },
  13596. {
  13597. name: "Megamacro",
  13598. height: math.unit(50, "miles")
  13599. },
  13600. {
  13601. name: "Canon Height",
  13602. height: math.unit(200, "AU")
  13603. },
  13604. ]
  13605. ))
  13606. characterMakers.push(() => makeCharacter(
  13607. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13608. {
  13609. front: {
  13610. height: math.unit(6, "feet"),
  13611. weight: math.unit(72, "kg"),
  13612. name: "Front",
  13613. image: {
  13614. source: "./media/characters/sleekit/front.svg",
  13615. extra: 4693 / 4487,
  13616. bottom: 0.012
  13617. }
  13618. },
  13619. },
  13620. [
  13621. {
  13622. name: "Minimum Height",
  13623. height: math.unit(10, "meters")
  13624. },
  13625. {
  13626. name: "Smaller",
  13627. height: math.unit(25, "meters")
  13628. },
  13629. {
  13630. name: "Larger",
  13631. height: math.unit(38, "meters"),
  13632. default: true
  13633. },
  13634. {
  13635. name: "Maximum height",
  13636. height: math.unit(100, "meters")
  13637. },
  13638. ]
  13639. ))
  13640. characterMakers.push(() => makeCharacter(
  13641. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13642. {
  13643. front: {
  13644. height: math.unit(6, "feet"),
  13645. weight: math.unit(150, "lb"),
  13646. name: "Front",
  13647. image: {
  13648. source: "./media/characters/nillia/front.svg",
  13649. extra: 2195 / 2037,
  13650. bottom: 0.005
  13651. }
  13652. },
  13653. back: {
  13654. height: math.unit(6, "feet"),
  13655. weight: math.unit(150, "lb"),
  13656. name: "Back",
  13657. image: {
  13658. source: "./media/characters/nillia/back.svg",
  13659. extra: 2195 / 2037,
  13660. bottom: 0.005
  13661. }
  13662. },
  13663. },
  13664. [
  13665. {
  13666. name: "Canon Height",
  13667. height: math.unit(489, "feet"),
  13668. default: true
  13669. }
  13670. ]
  13671. ))
  13672. characterMakers.push(() => makeCharacter(
  13673. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13674. {
  13675. front: {
  13676. height: math.unit(6, "feet"),
  13677. weight: math.unit(150, "lb"),
  13678. name: "Front",
  13679. image: {
  13680. source: "./media/characters/mesmyriza/front.svg",
  13681. extra: 2067 / 1784,
  13682. bottom: 0.035
  13683. }
  13684. },
  13685. foot: {
  13686. height: math.unit(6 / (250 / 35), "feet"),
  13687. name: "Foot",
  13688. image: {
  13689. source: "./media/characters/mesmyriza/foot.svg"
  13690. }
  13691. },
  13692. },
  13693. [
  13694. {
  13695. name: "Macro",
  13696. height: math.unit(457, "meters"),
  13697. default: true
  13698. },
  13699. {
  13700. name: "Megamacro",
  13701. height: math.unit(8, "megameters")
  13702. },
  13703. ]
  13704. ))
  13705. characterMakers.push(() => makeCharacter(
  13706. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13707. {
  13708. front: {
  13709. height: math.unit(6, "feet"),
  13710. weight: math.unit(250, "lb"),
  13711. name: "Front",
  13712. image: {
  13713. source: "./media/characters/saudade/front.svg",
  13714. extra: 1172 / 1139,
  13715. bottom: 0.035
  13716. }
  13717. },
  13718. },
  13719. [
  13720. {
  13721. name: "Micro",
  13722. height: math.unit(3, "inches")
  13723. },
  13724. {
  13725. name: "Normal",
  13726. height: math.unit(6, "feet"),
  13727. default: true
  13728. },
  13729. {
  13730. name: "Macro",
  13731. height: math.unit(50, "feet")
  13732. },
  13733. {
  13734. name: "Megamacro",
  13735. height: math.unit(2800, "feet")
  13736. },
  13737. ]
  13738. ))
  13739. characterMakers.push(() => makeCharacter(
  13740. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13741. {
  13742. front: {
  13743. height: math.unit(5 + 4 / 12, "feet"),
  13744. weight: math.unit(100, "lb"),
  13745. name: "Front",
  13746. image: {
  13747. source: "./media/characters/keireer/front.svg",
  13748. extra: 716 / 666,
  13749. bottom: 0.05
  13750. }
  13751. },
  13752. },
  13753. [
  13754. {
  13755. name: "Normal",
  13756. height: math.unit(5 + 4 / 12, "feet"),
  13757. default: true
  13758. },
  13759. ]
  13760. ))
  13761. characterMakers.push(() => makeCharacter(
  13762. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13763. {
  13764. front: {
  13765. height: math.unit(6, "feet"),
  13766. weight: math.unit(90, "kg"),
  13767. name: "Front",
  13768. image: {
  13769. source: "./media/characters/mirja/front.svg",
  13770. extra: 1789 / 1683,
  13771. bottom: 0.05
  13772. }
  13773. },
  13774. frontDressed: {
  13775. height: math.unit(6, "feet"),
  13776. weight: math.unit(90, "lb"),
  13777. name: "Front (Dressed)",
  13778. image: {
  13779. source: "./media/characters/mirja/front-dressed.svg",
  13780. extra: 1789 / 1683,
  13781. bottom: 0.05
  13782. }
  13783. },
  13784. back: {
  13785. height: math.unit(6, "feet"),
  13786. weight: math.unit(90, "lb"),
  13787. name: "Back",
  13788. image: {
  13789. source: "./media/characters/mirja/back.svg",
  13790. extra: 953 / 917,
  13791. bottom: 0.017
  13792. }
  13793. },
  13794. },
  13795. [
  13796. {
  13797. name: "\"Incognito\"",
  13798. height: math.unit(3, "meters")
  13799. },
  13800. {
  13801. name: "Strolling Size",
  13802. height: math.unit(15, "km")
  13803. },
  13804. {
  13805. name: "Larger Strolling Size",
  13806. height: math.unit(400, "km")
  13807. },
  13808. {
  13809. name: "Preferred Size",
  13810. height: math.unit(5000, "km")
  13811. },
  13812. {
  13813. name: "True Size",
  13814. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13815. default: true
  13816. },
  13817. ]
  13818. ))
  13819. characterMakers.push(() => makeCharacter(
  13820. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13821. {
  13822. front: {
  13823. height: math.unit(15, "feet"),
  13824. weight: math.unit(880, "kg"),
  13825. name: "Front",
  13826. image: {
  13827. source: "./media/characters/nightraver/front.svg",
  13828. extra: 2444 / 2160,
  13829. bottom: 0.027
  13830. }
  13831. },
  13832. back: {
  13833. height: math.unit(15, "feet"),
  13834. weight: math.unit(880, "kg"),
  13835. name: "Back",
  13836. image: {
  13837. source: "./media/characters/nightraver/back.svg",
  13838. extra: 2309 / 2180,
  13839. bottom: 0.005
  13840. }
  13841. },
  13842. sole: {
  13843. height: math.unit(2.878, "feet"),
  13844. name: "Sole",
  13845. image: {
  13846. source: "./media/characters/nightraver/sole.svg"
  13847. }
  13848. },
  13849. foot: {
  13850. height: math.unit(2.285, "feet"),
  13851. name: "Foot",
  13852. image: {
  13853. source: "./media/characters/nightraver/foot.svg"
  13854. }
  13855. },
  13856. maw: {
  13857. height: math.unit(2.67, "feet"),
  13858. name: "Maw",
  13859. image: {
  13860. source: "./media/characters/nightraver/maw.svg"
  13861. }
  13862. },
  13863. },
  13864. [
  13865. {
  13866. name: "Micro",
  13867. height: math.unit(1, "cm")
  13868. },
  13869. {
  13870. name: "Normal",
  13871. height: math.unit(15, "feet"),
  13872. default: true
  13873. },
  13874. {
  13875. name: "Macro",
  13876. height: math.unit(300, "feet")
  13877. },
  13878. {
  13879. name: "Megamacro",
  13880. height: math.unit(300, "miles")
  13881. },
  13882. {
  13883. name: "Gigamacro",
  13884. height: math.unit(10000, "miles")
  13885. },
  13886. ]
  13887. ))
  13888. characterMakers.push(() => makeCharacter(
  13889. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13890. {
  13891. side: {
  13892. height: math.unit(2, "inches"),
  13893. weight: math.unit(5, "grams"),
  13894. name: "Side",
  13895. image: {
  13896. source: "./media/characters/arc/side.svg"
  13897. }
  13898. },
  13899. },
  13900. [
  13901. {
  13902. name: "Micro",
  13903. height: math.unit(2, "inches"),
  13904. default: true
  13905. },
  13906. ]
  13907. ))
  13908. characterMakers.push(() => makeCharacter(
  13909. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13910. {
  13911. front: {
  13912. height: math.unit(1.1938, "meters"),
  13913. weight: math.unit(54, "kg"),
  13914. name: "Front",
  13915. image: {
  13916. source: "./media/characters/nebula-shahar/front.svg",
  13917. extra: 1642 / 1436,
  13918. bottom: 0.06
  13919. }
  13920. },
  13921. },
  13922. [
  13923. {
  13924. name: "Megamicro",
  13925. height: math.unit(0.3, "mm")
  13926. },
  13927. {
  13928. name: "Micro",
  13929. height: math.unit(3, "cm")
  13930. },
  13931. {
  13932. name: "Normal",
  13933. height: math.unit(138, "cm"),
  13934. default: true
  13935. },
  13936. {
  13937. name: "Macro",
  13938. height: math.unit(30, "m")
  13939. },
  13940. ]
  13941. ))
  13942. characterMakers.push(() => makeCharacter(
  13943. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13944. {
  13945. front: {
  13946. height: math.unit(5.24, "feet"),
  13947. weight: math.unit(150, "lb"),
  13948. name: "Front",
  13949. image: {
  13950. source: "./media/characters/shayla/front.svg",
  13951. extra: 1512 / 1414,
  13952. bottom: 0.01
  13953. }
  13954. },
  13955. back: {
  13956. height: math.unit(5.24, "feet"),
  13957. weight: math.unit(150, "lb"),
  13958. name: "Back",
  13959. image: {
  13960. source: "./media/characters/shayla/back.svg",
  13961. extra: 1512 / 1414
  13962. }
  13963. },
  13964. hand: {
  13965. height: math.unit(0.7781496062992126, "feet"),
  13966. name: "Hand",
  13967. image: {
  13968. source: "./media/characters/shayla/hand.svg"
  13969. }
  13970. },
  13971. foot: {
  13972. height: math.unit(1.4206036745406823, "feet"),
  13973. name: "Foot",
  13974. image: {
  13975. source: "./media/characters/shayla/foot.svg"
  13976. }
  13977. },
  13978. },
  13979. [
  13980. {
  13981. name: "Micro",
  13982. height: math.unit(0.32, "feet")
  13983. },
  13984. {
  13985. name: "Normal",
  13986. height: math.unit(5.24, "feet"),
  13987. default: true
  13988. },
  13989. {
  13990. name: "Macro",
  13991. height: math.unit(492.12, "feet")
  13992. },
  13993. {
  13994. name: "Megamacro",
  13995. height: math.unit(186.41, "miles")
  13996. },
  13997. ]
  13998. ))
  13999. characterMakers.push(() => makeCharacter(
  14000. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  14001. {
  14002. front: {
  14003. height: math.unit(2.2, "m"),
  14004. weight: math.unit(120, "kg"),
  14005. name: "Front",
  14006. image: {
  14007. source: "./media/characters/pia-jr/front.svg",
  14008. extra: 1000 / 970,
  14009. bottom: 0.035
  14010. }
  14011. },
  14012. hand: {
  14013. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14014. name: "Hand",
  14015. image: {
  14016. source: "./media/characters/pia-jr/hand.svg"
  14017. }
  14018. },
  14019. paw: {
  14020. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14021. name: "Paw",
  14022. image: {
  14023. source: "./media/characters/pia-jr/paw.svg"
  14024. }
  14025. },
  14026. },
  14027. [
  14028. {
  14029. name: "Micro",
  14030. height: math.unit(1.2, "cm")
  14031. },
  14032. {
  14033. name: "Normal",
  14034. height: math.unit(2.2, "m"),
  14035. default: true
  14036. },
  14037. {
  14038. name: "Macro",
  14039. height: math.unit(180, "m")
  14040. },
  14041. {
  14042. name: "Megamacro",
  14043. height: math.unit(420, "km")
  14044. },
  14045. ]
  14046. ))
  14047. characterMakers.push(() => makeCharacter(
  14048. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14049. {
  14050. front: {
  14051. height: math.unit(2, "m"),
  14052. weight: math.unit(115, "kg"),
  14053. name: "Front",
  14054. image: {
  14055. source: "./media/characters/pia-sr/front.svg",
  14056. extra: 760 / 730,
  14057. bottom: 0.015
  14058. }
  14059. },
  14060. back: {
  14061. height: math.unit(2, "m"),
  14062. weight: math.unit(115, "kg"),
  14063. name: "Back",
  14064. image: {
  14065. source: "./media/characters/pia-sr/back.svg",
  14066. extra: 760 / 730,
  14067. bottom: 0.01
  14068. }
  14069. },
  14070. hand: {
  14071. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14072. name: "Hand",
  14073. image: {
  14074. source: "./media/characters/pia-sr/hand.svg"
  14075. }
  14076. },
  14077. foot: {
  14078. height: math.unit(1.83, "feet"),
  14079. name: "Foot",
  14080. image: {
  14081. source: "./media/characters/pia-sr/foot.svg"
  14082. }
  14083. },
  14084. },
  14085. [
  14086. {
  14087. name: "Micro",
  14088. height: math.unit(88, "mm")
  14089. },
  14090. {
  14091. name: "Normal",
  14092. height: math.unit(2, "m"),
  14093. default: true
  14094. },
  14095. {
  14096. name: "Macro",
  14097. height: math.unit(200, "m")
  14098. },
  14099. {
  14100. name: "Megamacro",
  14101. height: math.unit(420, "km")
  14102. },
  14103. ]
  14104. ))
  14105. characterMakers.push(() => makeCharacter(
  14106. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14107. {
  14108. front: {
  14109. height: math.unit(8 + 2 / 12, "feet"),
  14110. weight: math.unit(300, "lb"),
  14111. name: "Front",
  14112. image: {
  14113. source: "./media/characters/kibibyte/front.svg",
  14114. extra: 2221 / 2098,
  14115. bottom: 0.04
  14116. }
  14117. },
  14118. },
  14119. [
  14120. {
  14121. name: "Normal",
  14122. height: math.unit(8 + 2 / 12, "feet"),
  14123. default: true
  14124. },
  14125. {
  14126. name: "Socialable Macro",
  14127. height: math.unit(50, "feet")
  14128. },
  14129. {
  14130. name: "Macro",
  14131. height: math.unit(300, "feet")
  14132. },
  14133. {
  14134. name: "Megamacro",
  14135. height: math.unit(500, "miles")
  14136. },
  14137. ]
  14138. ))
  14139. characterMakers.push(() => makeCharacter(
  14140. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14141. {
  14142. front: {
  14143. height: math.unit(6, "feet"),
  14144. weight: math.unit(150, "lb"),
  14145. name: "Front",
  14146. image: {
  14147. source: "./media/characters/felix/front.svg",
  14148. extra: 762 / 722,
  14149. bottom: 0.02
  14150. }
  14151. },
  14152. frontClothed: {
  14153. height: math.unit(6, "feet"),
  14154. weight: math.unit(150, "lb"),
  14155. name: "Front (Clothed)",
  14156. image: {
  14157. source: "./media/characters/felix/front-clothed.svg",
  14158. extra: 762 / 722,
  14159. bottom: 0.02
  14160. }
  14161. },
  14162. },
  14163. [
  14164. {
  14165. name: "Normal",
  14166. height: math.unit(6 + 8 / 12, "feet"),
  14167. default: true
  14168. },
  14169. {
  14170. name: "Macro",
  14171. height: math.unit(2600, "feet")
  14172. },
  14173. {
  14174. name: "Megamacro",
  14175. height: math.unit(450, "miles")
  14176. },
  14177. ]
  14178. ))
  14179. characterMakers.push(() => makeCharacter(
  14180. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14181. {
  14182. front: {
  14183. height: math.unit(6 + 1 / 12, "feet"),
  14184. weight: math.unit(250, "lb"),
  14185. name: "Front",
  14186. image: {
  14187. source: "./media/characters/tobo/front.svg",
  14188. extra: 608 / 586,
  14189. bottom: 0.023
  14190. }
  14191. },
  14192. back: {
  14193. height: math.unit(6 + 1 / 12, "feet"),
  14194. weight: math.unit(250, "lb"),
  14195. name: "Back",
  14196. image: {
  14197. source: "./media/characters/tobo/back.svg",
  14198. extra: 608 / 586
  14199. }
  14200. },
  14201. },
  14202. [
  14203. {
  14204. name: "Nano",
  14205. height: math.unit(2, "nm")
  14206. },
  14207. {
  14208. name: "Megamicro",
  14209. height: math.unit(0.1, "mm")
  14210. },
  14211. {
  14212. name: "Micro",
  14213. height: math.unit(1, "inch"),
  14214. default: true
  14215. },
  14216. {
  14217. name: "Human-sized",
  14218. height: math.unit(6 + 1 / 12, "feet")
  14219. },
  14220. {
  14221. name: "Macro",
  14222. height: math.unit(250, "feet")
  14223. },
  14224. {
  14225. name: "Megamacro",
  14226. height: math.unit(75, "miles")
  14227. },
  14228. {
  14229. name: "Texas-sized",
  14230. height: math.unit(750, "miles")
  14231. },
  14232. {
  14233. name: "Teramacro",
  14234. height: math.unit(50000, "miles")
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14240. {
  14241. front: {
  14242. height: math.unit(6, "feet"),
  14243. weight: math.unit(269, "lb"),
  14244. name: "Front",
  14245. image: {
  14246. source: "./media/characters/danny-kapowsky/front.svg",
  14247. extra: 766 / 736,
  14248. bottom: 0.044
  14249. }
  14250. },
  14251. back: {
  14252. height: math.unit(6, "feet"),
  14253. weight: math.unit(269, "lb"),
  14254. name: "Back",
  14255. image: {
  14256. source: "./media/characters/danny-kapowsky/back.svg",
  14257. extra: 797 / 760,
  14258. bottom: 0.025
  14259. }
  14260. },
  14261. },
  14262. [
  14263. {
  14264. name: "Macro",
  14265. height: math.unit(150, "feet"),
  14266. default: true
  14267. },
  14268. {
  14269. name: "Macro+",
  14270. height: math.unit(200, "feet")
  14271. },
  14272. {
  14273. name: "Macro++",
  14274. height: math.unit(300, "feet")
  14275. },
  14276. {
  14277. name: "Macro+++",
  14278. height: math.unit(400, "feet")
  14279. },
  14280. ]
  14281. ))
  14282. characterMakers.push(() => makeCharacter(
  14283. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14284. {
  14285. side: {
  14286. height: math.unit(6, "feet"),
  14287. weight: math.unit(170, "lb"),
  14288. name: "Side",
  14289. image: {
  14290. source: "./media/characters/finn/side.svg",
  14291. extra: 1953 / 1807,
  14292. bottom: 0.057
  14293. }
  14294. },
  14295. },
  14296. [
  14297. {
  14298. name: "Megamacro",
  14299. height: math.unit(14445, "feet"),
  14300. default: true
  14301. },
  14302. ]
  14303. ))
  14304. characterMakers.push(() => makeCharacter(
  14305. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14306. {
  14307. front: {
  14308. height: math.unit(5 + 6 / 12, "feet"),
  14309. weight: math.unit(125, "lb"),
  14310. name: "Front",
  14311. image: {
  14312. source: "./media/characters/roy/front.svg",
  14313. extra: 1,
  14314. bottom: 0.11
  14315. }
  14316. },
  14317. },
  14318. [
  14319. {
  14320. name: "Micro",
  14321. height: math.unit(3, "inches"),
  14322. default: true
  14323. },
  14324. {
  14325. name: "Normal",
  14326. height: math.unit(5 + 6 / 12, "feet")
  14327. },
  14328. {
  14329. name: "Lesser Macro",
  14330. height: math.unit(60, "feet")
  14331. },
  14332. {
  14333. name: "Greater Macro",
  14334. height: math.unit(120, "feet")
  14335. },
  14336. ]
  14337. ))
  14338. characterMakers.push(() => makeCharacter(
  14339. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14340. {
  14341. front: {
  14342. height: math.unit(6, "feet"),
  14343. weight: math.unit(100, "lb"),
  14344. name: "Front",
  14345. image: {
  14346. source: "./media/characters/aevsivs/front.svg",
  14347. extra: 1,
  14348. bottom: 0.03
  14349. }
  14350. },
  14351. back: {
  14352. height: math.unit(6, "feet"),
  14353. weight: math.unit(100, "lb"),
  14354. name: "Back",
  14355. image: {
  14356. source: "./media/characters/aevsivs/back.svg"
  14357. }
  14358. },
  14359. },
  14360. [
  14361. {
  14362. name: "Micro",
  14363. height: math.unit(2, "inches"),
  14364. default: true
  14365. },
  14366. {
  14367. name: "Normal",
  14368. height: math.unit(5, "feet")
  14369. },
  14370. ]
  14371. ))
  14372. characterMakers.push(() => makeCharacter(
  14373. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14374. {
  14375. front: {
  14376. height: math.unit(5 + 7 / 12, "feet"),
  14377. weight: math.unit(159, "lb"),
  14378. name: "Front",
  14379. image: {
  14380. source: "./media/characters/hildegard/front.svg",
  14381. extra: 289 / 269,
  14382. bottom: 7.63 / 297.8
  14383. }
  14384. },
  14385. back: {
  14386. height: math.unit(5 + 7 / 12, "feet"),
  14387. weight: math.unit(159, "lb"),
  14388. name: "Back",
  14389. image: {
  14390. source: "./media/characters/hildegard/back.svg",
  14391. extra: 280 / 260,
  14392. bottom: 2.3 / 282
  14393. }
  14394. },
  14395. },
  14396. [
  14397. {
  14398. name: "Normal",
  14399. height: math.unit(5 + 7 / 12, "feet"),
  14400. default: true
  14401. },
  14402. ]
  14403. ))
  14404. characterMakers.push(() => makeCharacter(
  14405. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14406. {
  14407. bernard: {
  14408. height: math.unit(2 + 7 / 12, "feet"),
  14409. weight: math.unit(66, "lb"),
  14410. name: "Bernard",
  14411. rename: true,
  14412. image: {
  14413. source: "./media/characters/bernard-wilder/bernard.svg",
  14414. extra: 192 / 128,
  14415. bottom: 0.05
  14416. }
  14417. },
  14418. wilder: {
  14419. height: math.unit(5 + 8 / 12, "feet"),
  14420. weight: math.unit(143, "lb"),
  14421. name: "Wilder",
  14422. rename: true,
  14423. image: {
  14424. source: "./media/characters/bernard-wilder/wilder.svg",
  14425. extra: 361 / 312,
  14426. bottom: 0.02
  14427. }
  14428. },
  14429. },
  14430. [
  14431. {
  14432. name: "Normal",
  14433. height: math.unit(2 + 7 / 12, "feet"),
  14434. default: true
  14435. },
  14436. ]
  14437. ))
  14438. characterMakers.push(() => makeCharacter(
  14439. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14440. {
  14441. anthro: {
  14442. height: math.unit(6 + 1 / 12, "feet"),
  14443. weight: math.unit(155, "lb"),
  14444. name: "Anthro",
  14445. image: {
  14446. source: "./media/characters/hearth/anthro.svg",
  14447. extra: 260 / 250,
  14448. bottom: 0.02
  14449. }
  14450. },
  14451. feral: {
  14452. height: math.unit(3.78, "feet"),
  14453. weight: math.unit(35, "kg"),
  14454. name: "Feral",
  14455. image: {
  14456. source: "./media/characters/hearth/feral.svg",
  14457. extra: 153 / 135,
  14458. bottom: 0.03
  14459. }
  14460. },
  14461. },
  14462. [
  14463. {
  14464. name: "Normal",
  14465. height: math.unit(6 + 1 / 12, "feet"),
  14466. default: true
  14467. },
  14468. ]
  14469. ))
  14470. characterMakers.push(() => makeCharacter(
  14471. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14472. {
  14473. front: {
  14474. height: math.unit(6, "feet"),
  14475. weight: math.unit(182, "lb"),
  14476. name: "Front",
  14477. image: {
  14478. source: "./media/characters/ingrid/front.svg",
  14479. extra: 294 / 268,
  14480. bottom: 0.027
  14481. }
  14482. },
  14483. },
  14484. [
  14485. {
  14486. name: "Normal",
  14487. height: math.unit(6, "feet"),
  14488. default: true
  14489. },
  14490. ]
  14491. ))
  14492. characterMakers.push(() => makeCharacter(
  14493. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14494. {
  14495. eevee: {
  14496. height: math.unit(2 + 10 / 12, "feet"),
  14497. weight: math.unit(86, "lb"),
  14498. name: "Malgam",
  14499. image: {
  14500. source: "./media/characters/malgam/eevee.svg",
  14501. extra: 218 / 180,
  14502. bottom: 0.2
  14503. }
  14504. },
  14505. sylveon: {
  14506. height: math.unit(4, "feet"),
  14507. weight: math.unit(101, "lb"),
  14508. name: "Future Malgam",
  14509. rename: true,
  14510. image: {
  14511. source: "./media/characters/malgam/sylveon.svg",
  14512. extra: 371 / 325,
  14513. bottom: 0.015
  14514. }
  14515. },
  14516. gigantamax: {
  14517. height: math.unit(50, "feet"),
  14518. name: "Gigantamax Malgam",
  14519. rename: true,
  14520. image: {
  14521. source: "./media/characters/malgam/gigantamax.svg"
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Normal",
  14528. height: math.unit(2 + 10 / 12, "feet"),
  14529. default: true
  14530. },
  14531. ]
  14532. ))
  14533. characterMakers.push(() => makeCharacter(
  14534. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14535. {
  14536. front: {
  14537. height: math.unit(5 + 11 / 12, "feet"),
  14538. weight: math.unit(188, "lb"),
  14539. name: "Front",
  14540. image: {
  14541. source: "./media/characters/fleur/front.svg",
  14542. extra: 309 / 283,
  14543. bottom: 0.007
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Normal",
  14550. height: math.unit(5 + 11 / 12, "feet"),
  14551. default: true
  14552. },
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14557. {
  14558. front: {
  14559. height: math.unit(5 + 4 / 12, "feet"),
  14560. weight: math.unit(122, "lb"),
  14561. name: "Front",
  14562. image: {
  14563. source: "./media/characters/jude/front.svg",
  14564. extra: 288 / 273,
  14565. bottom: 0.03
  14566. }
  14567. },
  14568. },
  14569. [
  14570. {
  14571. name: "Normal",
  14572. height: math.unit(5 + 4 / 12, "feet"),
  14573. default: true
  14574. },
  14575. ]
  14576. ))
  14577. characterMakers.push(() => makeCharacter(
  14578. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14579. {
  14580. front: {
  14581. height: math.unit(5 + 11 / 12, "feet"),
  14582. weight: math.unit(190, "lb"),
  14583. name: "Front",
  14584. image: {
  14585. source: "./media/characters/seara/front.svg",
  14586. extra: 1,
  14587. bottom: 0.05
  14588. }
  14589. },
  14590. },
  14591. [
  14592. {
  14593. name: "Normal",
  14594. height: math.unit(5 + 11 / 12, "feet"),
  14595. default: true
  14596. },
  14597. ]
  14598. ))
  14599. characterMakers.push(() => makeCharacter(
  14600. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14601. {
  14602. front: {
  14603. height: math.unit(16 + 5 / 12, "feet"),
  14604. weight: math.unit(524, "lb"),
  14605. name: "Front",
  14606. image: {
  14607. source: "./media/characters/caspian/front.svg",
  14608. extra: 1,
  14609. bottom: 0.04
  14610. }
  14611. },
  14612. },
  14613. [
  14614. {
  14615. name: "Normal",
  14616. height: math.unit(16 + 5 / 12, "feet"),
  14617. default: true
  14618. },
  14619. ]
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14623. {
  14624. front: {
  14625. height: math.unit(5 + 7 / 12, "feet"),
  14626. weight: math.unit(170, "lb"),
  14627. name: "Front",
  14628. image: {
  14629. source: "./media/characters/mika/front.svg",
  14630. extra: 1,
  14631. bottom: 0.016
  14632. }
  14633. },
  14634. },
  14635. [
  14636. {
  14637. name: "Normal",
  14638. height: math.unit(5 + 7 / 12, "feet"),
  14639. default: true
  14640. },
  14641. ]
  14642. ))
  14643. characterMakers.push(() => makeCharacter(
  14644. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14645. {
  14646. front: {
  14647. height: math.unit(6 + 2 / 12, "feet"),
  14648. weight: math.unit(268, "lb"),
  14649. name: "Front",
  14650. image: {
  14651. source: "./media/characters/sol/front.svg",
  14652. extra: 247 / 231,
  14653. bottom: 0.05
  14654. }
  14655. },
  14656. },
  14657. [
  14658. {
  14659. name: "Normal",
  14660. height: math.unit(6 + 2 / 12, "feet"),
  14661. default: true
  14662. },
  14663. ]
  14664. ))
  14665. characterMakers.push(() => makeCharacter(
  14666. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14667. {
  14668. buizel: {
  14669. height: math.unit(2 + 5 / 12, "feet"),
  14670. weight: math.unit(87, "lb"),
  14671. name: "Buizel",
  14672. image: {
  14673. source: "./media/characters/umiko/buizel.svg",
  14674. extra: 172 / 157,
  14675. bottom: 0.01
  14676. }
  14677. },
  14678. floatzel: {
  14679. height: math.unit(5 + 9 / 12, "feet"),
  14680. weight: math.unit(250, "lb"),
  14681. name: "Floatzel",
  14682. image: {
  14683. source: "./media/characters/umiko/floatzel.svg",
  14684. extra: 262 / 248
  14685. }
  14686. },
  14687. },
  14688. [
  14689. {
  14690. name: "Normal",
  14691. height: math.unit(2 + 5 / 12, "feet"),
  14692. default: true
  14693. },
  14694. ]
  14695. ))
  14696. characterMakers.push(() => makeCharacter(
  14697. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14698. {
  14699. front: {
  14700. height: math.unit(6 + 2 / 12, "feet"),
  14701. weight: math.unit(146, "lb"),
  14702. name: "Front",
  14703. image: {
  14704. source: "./media/characters/iliac/front.svg",
  14705. extra: 389 / 365,
  14706. bottom: 0.035
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Normal",
  14713. height: math.unit(6 + 2 / 12, "feet"),
  14714. default: true
  14715. },
  14716. ]
  14717. ))
  14718. characterMakers.push(() => makeCharacter(
  14719. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14720. {
  14721. front: {
  14722. height: math.unit(6, "feet"),
  14723. weight: math.unit(170, "lb"),
  14724. name: "Front",
  14725. image: {
  14726. source: "./media/characters/topaz/front.svg",
  14727. extra: 317 / 303,
  14728. bottom: 0.055
  14729. }
  14730. },
  14731. },
  14732. [
  14733. {
  14734. name: "Normal",
  14735. height: math.unit(6, "feet"),
  14736. default: true
  14737. },
  14738. ]
  14739. ))
  14740. characterMakers.push(() => makeCharacter(
  14741. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14742. {
  14743. front: {
  14744. height: math.unit(5 + 11 / 12, "feet"),
  14745. weight: math.unit(144, "lb"),
  14746. name: "Front",
  14747. image: {
  14748. source: "./media/characters/gabriel/front.svg",
  14749. extra: 285 / 262,
  14750. bottom: 0.004
  14751. }
  14752. },
  14753. },
  14754. [
  14755. {
  14756. name: "Normal",
  14757. height: math.unit(5 + 11 / 12, "feet"),
  14758. default: true
  14759. },
  14760. ]
  14761. ))
  14762. characterMakers.push(() => makeCharacter(
  14763. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14764. {
  14765. side: {
  14766. height: math.unit(6 + 5 / 12, "feet"),
  14767. weight: math.unit(300, "lb"),
  14768. name: "Side",
  14769. image: {
  14770. source: "./media/characters/tempest-suicune/side.svg",
  14771. extra: 195 / 154,
  14772. bottom: 0.04
  14773. }
  14774. },
  14775. },
  14776. [
  14777. {
  14778. name: "Normal",
  14779. height: math.unit(6 + 5 / 12, "feet"),
  14780. default: true
  14781. },
  14782. ]
  14783. ))
  14784. characterMakers.push(() => makeCharacter(
  14785. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14786. {
  14787. front: {
  14788. height: math.unit(7 + 2 / 12, "feet"),
  14789. weight: math.unit(322, "lb"),
  14790. name: "Front",
  14791. image: {
  14792. source: "./media/characters/vulcan/front.svg",
  14793. extra: 154 / 147,
  14794. bottom: 0.04
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Normal",
  14801. height: math.unit(7 + 2 / 12, "feet"),
  14802. default: true
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(5 + 10 / 12, "feet"),
  14811. weight: math.unit(264, "lb"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/gault/front.svg",
  14815. extra: 161 / 140,
  14816. bottom: 0.028
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "Normal",
  14823. height: math.unit(5 + 10 / 12, "feet"),
  14824. default: true
  14825. },
  14826. ]
  14827. ))
  14828. characterMakers.push(() => makeCharacter(
  14829. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14830. {
  14831. front: {
  14832. height: math.unit(6, "feet"),
  14833. weight: math.unit(150, "lb"),
  14834. name: "Front",
  14835. image: {
  14836. source: "./media/characters/shard/front.svg",
  14837. extra: 273 / 238,
  14838. bottom: 0.02
  14839. }
  14840. },
  14841. },
  14842. [
  14843. {
  14844. name: "Normal",
  14845. height: math.unit(3 + 6 / 12, "feet"),
  14846. default: true
  14847. },
  14848. ]
  14849. ))
  14850. characterMakers.push(() => makeCharacter(
  14851. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14852. {
  14853. front: {
  14854. height: math.unit(5 + 11 / 12, "feet"),
  14855. weight: math.unit(146, "lb"),
  14856. name: "Front",
  14857. image: {
  14858. source: "./media/characters/ashe/front.svg",
  14859. extra: 400 / 373,
  14860. bottom: 0.01
  14861. }
  14862. },
  14863. },
  14864. [
  14865. {
  14866. name: "Normal",
  14867. height: math.unit(5 + 11 / 12, "feet"),
  14868. default: true
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14874. {
  14875. front: {
  14876. height: math.unit(5 + 5 / 12, "feet"),
  14877. weight: math.unit(135, "lb"),
  14878. name: "Front",
  14879. image: {
  14880. source: "./media/characters/beatrix/front.svg",
  14881. extra: 392 / 379,
  14882. bottom: 0.01
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Normal",
  14889. height: math.unit(6, "feet"),
  14890. default: true
  14891. },
  14892. ]
  14893. ))
  14894. characterMakers.push(() => makeCharacter(
  14895. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14896. {
  14897. front: {
  14898. height: math.unit(6, "feet"),
  14899. weight: math.unit(150, "lb"),
  14900. name: "Front",
  14901. image: {
  14902. source: "./media/characters/ignatius/front.svg",
  14903. extra: 245 / 222,
  14904. bottom: 0.01
  14905. }
  14906. },
  14907. },
  14908. [
  14909. {
  14910. name: "Normal",
  14911. height: math.unit(5 + 5 / 12, "feet"),
  14912. default: true
  14913. },
  14914. ]
  14915. ))
  14916. characterMakers.push(() => makeCharacter(
  14917. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14918. {
  14919. front: {
  14920. height: math.unit(6 + 2 / 12, "feet"),
  14921. weight: math.unit(138, "lb"),
  14922. name: "Front",
  14923. image: {
  14924. source: "./media/characters/mei-li/front.svg",
  14925. extra: 237 / 229,
  14926. bottom: 0.03
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Normal",
  14933. height: math.unit(6 + 2 / 12, "feet"),
  14934. default: true
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14940. {
  14941. front: {
  14942. height: math.unit(2 + 4 / 12, "feet"),
  14943. weight: math.unit(62, "lb"),
  14944. name: "Front",
  14945. image: {
  14946. source: "./media/characters/puru/front.svg",
  14947. extra: 206 / 149,
  14948. bottom: 0.06
  14949. }
  14950. },
  14951. },
  14952. [
  14953. {
  14954. name: "Normal",
  14955. height: math.unit(2 + 4 / 12, "feet"),
  14956. default: true
  14957. },
  14958. ]
  14959. ))
  14960. characterMakers.push(() => makeCharacter(
  14961. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14962. {
  14963. taur: {
  14964. height: math.unit(11, "feet"),
  14965. weight: math.unit(500, "lb"),
  14966. name: "Taur",
  14967. image: {
  14968. source: "./media/characters/kee/taur.svg",
  14969. extra: 1,
  14970. bottom: 0.04
  14971. }
  14972. },
  14973. },
  14974. [
  14975. {
  14976. name: "Normal",
  14977. height: math.unit(11, "feet"),
  14978. default: true
  14979. },
  14980. ]
  14981. ))
  14982. characterMakers.push(() => makeCharacter(
  14983. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14984. {
  14985. anthro: {
  14986. height: math.unit(7, "feet"),
  14987. weight: math.unit(190, "lb"),
  14988. name: "Anthro",
  14989. image: {
  14990. source: "./media/characters/cobalt-dracha/anthro.svg",
  14991. extra: 231 / 225,
  14992. bottom: 0.04
  14993. }
  14994. },
  14995. feral: {
  14996. height: math.unit(9 + 7 / 12, "feet"),
  14997. weight: math.unit(294, "lb"),
  14998. name: "Feral",
  14999. image: {
  15000. source: "./media/characters/cobalt-dracha/feral.svg",
  15001. extra: 692 / 633,
  15002. bottom: 0.05
  15003. }
  15004. },
  15005. },
  15006. [
  15007. {
  15008. name: "Normal",
  15009. height: math.unit(7, "feet"),
  15010. default: true
  15011. },
  15012. ]
  15013. ))
  15014. characterMakers.push(() => makeCharacter(
  15015. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15016. {
  15017. fallen: {
  15018. height: math.unit(11 + 8 / 12, "feet"),
  15019. weight: math.unit(485, "lb"),
  15020. name: "Java (Fallen)",
  15021. rename: true,
  15022. image: {
  15023. source: "./media/characters/java/fallen.svg",
  15024. extra: 226 / 208,
  15025. bottom: 0.005
  15026. }
  15027. },
  15028. godkin: {
  15029. height: math.unit(10 + 6 / 12, "feet"),
  15030. weight: math.unit(328, "lb"),
  15031. name: "Java (Godkin)",
  15032. rename: true,
  15033. image: {
  15034. source: "./media/characters/java/godkin.svg",
  15035. extra: 270 / 262,
  15036. bottom: 0.02
  15037. }
  15038. },
  15039. },
  15040. [
  15041. {
  15042. name: "Normal",
  15043. height: math.unit(11 + 8 / 12, "feet"),
  15044. default: true
  15045. },
  15046. ]
  15047. ))
  15048. characterMakers.push(() => makeCharacter(
  15049. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15050. {
  15051. front: {
  15052. height: math.unit(7 + 8 / 12, "feet"),
  15053. weight: math.unit(320, "lb"),
  15054. name: "Front",
  15055. image: {
  15056. source: "./media/characters/skoll/front.svg",
  15057. extra: 232 / 220,
  15058. bottom: 0.02
  15059. }
  15060. },
  15061. },
  15062. [
  15063. {
  15064. name: "Normal",
  15065. height: math.unit(7 + 8 / 12, "feet"),
  15066. default: true
  15067. },
  15068. ]
  15069. ))
  15070. characterMakers.push(() => makeCharacter(
  15071. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15072. {
  15073. front: {
  15074. height: math.unit(5 + 9 / 12, "feet"),
  15075. weight: math.unit(170, "lb"),
  15076. name: "Front",
  15077. image: {
  15078. source: "./media/characters/purna/front.svg",
  15079. extra: 239 / 229,
  15080. bottom: 0.01
  15081. }
  15082. },
  15083. },
  15084. [
  15085. {
  15086. name: "Normal",
  15087. height: math.unit(5 + 9 / 12, "feet"),
  15088. default: true
  15089. },
  15090. ]
  15091. ))
  15092. characterMakers.push(() => makeCharacter(
  15093. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15094. {
  15095. front: {
  15096. height: math.unit(5 + 9 / 12, "feet"),
  15097. weight: math.unit(142, "lb"),
  15098. name: "Front",
  15099. image: {
  15100. source: "./media/characters/kuva/front.svg",
  15101. extra: 281 / 271,
  15102. bottom: 0.006
  15103. }
  15104. },
  15105. },
  15106. [
  15107. {
  15108. name: "Normal",
  15109. height: math.unit(5 + 9 / 12, "feet"),
  15110. default: true
  15111. },
  15112. ]
  15113. ))
  15114. characterMakers.push(() => makeCharacter(
  15115. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15116. {
  15117. anthro: {
  15118. height: math.unit(9 + 2 / 12, "feet"),
  15119. weight: math.unit(270, "lb"),
  15120. name: "Anthro",
  15121. image: {
  15122. source: "./media/characters/embra/anthro.svg",
  15123. extra: 200 / 187,
  15124. bottom: 0.02
  15125. }
  15126. },
  15127. feral: {
  15128. height: math.unit(18 + 8 / 12, "feet"),
  15129. weight: math.unit(576, "lb"),
  15130. name: "Feral",
  15131. image: {
  15132. source: "./media/characters/embra/feral.svg",
  15133. extra: 152 / 137,
  15134. bottom: 0.037
  15135. }
  15136. },
  15137. },
  15138. [
  15139. {
  15140. name: "Normal",
  15141. height: math.unit(9 + 2 / 12, "feet"),
  15142. default: true
  15143. },
  15144. ]
  15145. ))
  15146. characterMakers.push(() => makeCharacter(
  15147. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15148. {
  15149. anthro: {
  15150. height: math.unit(10 + 9 / 12, "feet"),
  15151. weight: math.unit(224, "lb"),
  15152. name: "Anthro",
  15153. image: {
  15154. source: "./media/characters/grottos/anthro.svg",
  15155. extra: 350 / 332,
  15156. bottom: 0.045
  15157. }
  15158. },
  15159. feral: {
  15160. height: math.unit(20 + 7 / 12, "feet"),
  15161. weight: math.unit(629, "lb"),
  15162. name: "Feral",
  15163. image: {
  15164. source: "./media/characters/grottos/feral.svg",
  15165. extra: 207 / 190,
  15166. bottom: 0.05
  15167. }
  15168. },
  15169. },
  15170. [
  15171. {
  15172. name: "Normal",
  15173. height: math.unit(10 + 9 / 12, "feet"),
  15174. default: true
  15175. },
  15176. ]
  15177. ))
  15178. characterMakers.push(() => makeCharacter(
  15179. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15180. {
  15181. anthro: {
  15182. height: math.unit(9 + 6 / 12, "feet"),
  15183. weight: math.unit(298, "lb"),
  15184. name: "Anthro",
  15185. image: {
  15186. source: "./media/characters/frifna/anthro.svg",
  15187. extra: 282 / 269,
  15188. bottom: 0.015
  15189. }
  15190. },
  15191. feral: {
  15192. height: math.unit(16 + 2 / 12, "feet"),
  15193. weight: math.unit(624, "lb"),
  15194. name: "Feral",
  15195. image: {
  15196. source: "./media/characters/frifna/feral.svg"
  15197. }
  15198. },
  15199. },
  15200. [
  15201. {
  15202. name: "Normal",
  15203. height: math.unit(9 + 6 / 12, "feet"),
  15204. default: true
  15205. },
  15206. ]
  15207. ))
  15208. characterMakers.push(() => makeCharacter(
  15209. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15210. {
  15211. front: {
  15212. height: math.unit(6 + 2 / 12, "feet"),
  15213. weight: math.unit(168, "lb"),
  15214. name: "Front",
  15215. image: {
  15216. source: "./media/characters/elise/front.svg",
  15217. extra: 276 / 271
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Normal",
  15224. height: math.unit(6 + 2 / 12, "feet"),
  15225. default: true
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(5 + 10 / 12, "feet"),
  15234. weight: math.unit(210, "lb"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/glade/front.svg",
  15238. extra: 258 / 247,
  15239. bottom: 0.008
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Normal",
  15246. height: math.unit(5 + 10 / 12, "feet"),
  15247. default: true
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15253. {
  15254. front: {
  15255. height: math.unit(5 + 10 / 12, "feet"),
  15256. weight: math.unit(129, "lb"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/rina/front.svg",
  15260. extra: 266 / 255,
  15261. bottom: 0.005
  15262. }
  15263. },
  15264. },
  15265. [
  15266. {
  15267. name: "Normal",
  15268. height: math.unit(5 + 10 / 12, "feet"),
  15269. default: true
  15270. },
  15271. ]
  15272. ))
  15273. characterMakers.push(() => makeCharacter(
  15274. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15275. {
  15276. front: {
  15277. height: math.unit(6 + 1 / 12, "feet"),
  15278. weight: math.unit(192, "lb"),
  15279. name: "Front",
  15280. image: {
  15281. source: "./media/characters/veronica/front.svg",
  15282. extra: 319 / 309,
  15283. bottom: 0.005
  15284. }
  15285. },
  15286. },
  15287. [
  15288. {
  15289. name: "Normal",
  15290. height: math.unit(6 + 1 / 12, "feet"),
  15291. default: true
  15292. },
  15293. ]
  15294. ))
  15295. characterMakers.push(() => makeCharacter(
  15296. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15297. {
  15298. front: {
  15299. height: math.unit(9 + 3 / 12, "feet"),
  15300. weight: math.unit(1100, "lb"),
  15301. name: "Front",
  15302. image: {
  15303. source: "./media/characters/braxton/front.svg",
  15304. extra: 1057 / 984,
  15305. bottom: 0.05
  15306. }
  15307. },
  15308. },
  15309. [
  15310. {
  15311. name: "Normal",
  15312. height: math.unit(9 + 3 / 12, "feet")
  15313. },
  15314. {
  15315. name: "Giant",
  15316. height: math.unit(300, "feet"),
  15317. default: true
  15318. },
  15319. {
  15320. name: "Macro",
  15321. height: math.unit(700, "feet")
  15322. },
  15323. {
  15324. name: "Megamacro",
  15325. height: math.unit(6000, "feet")
  15326. },
  15327. ]
  15328. ))
  15329. characterMakers.push(() => makeCharacter(
  15330. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15331. {
  15332. front: {
  15333. height: math.unit(6 + 7 / 12, "feet"),
  15334. weight: math.unit(150, "lb"),
  15335. name: "Front",
  15336. image: {
  15337. source: "./media/characters/blue-feyonics/front.svg",
  15338. extra: 1403 / 1306,
  15339. bottom: 0.047
  15340. }
  15341. },
  15342. },
  15343. [
  15344. {
  15345. name: "Normal",
  15346. height: math.unit(6 + 7 / 12, "feet"),
  15347. default: true
  15348. },
  15349. ]
  15350. ))
  15351. characterMakers.push(() => makeCharacter(
  15352. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15353. {
  15354. front: {
  15355. height: math.unit(1.8, "meters"),
  15356. weight: math.unit(60, "kg"),
  15357. name: "Front",
  15358. image: {
  15359. source: "./media/characters/maxwell/front.svg",
  15360. extra: 2060 / 1873
  15361. }
  15362. },
  15363. },
  15364. [
  15365. {
  15366. name: "Micro",
  15367. height: math.unit(1, "mm")
  15368. },
  15369. {
  15370. name: "Normal",
  15371. height: math.unit(1.8, "meter"),
  15372. default: true
  15373. },
  15374. {
  15375. name: "Macro",
  15376. height: math.unit(30, "meters")
  15377. },
  15378. {
  15379. name: "Megamacro",
  15380. height: math.unit(10, "km")
  15381. },
  15382. ]
  15383. ))
  15384. characterMakers.push(() => makeCharacter(
  15385. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15386. {
  15387. front: {
  15388. height: math.unit(6, "feet"),
  15389. weight: math.unit(150, "lb"),
  15390. name: "Front",
  15391. image: {
  15392. source: "./media/characters/jack/front.svg",
  15393. extra: 1754 / 1640,
  15394. bottom: 0.01
  15395. }
  15396. },
  15397. },
  15398. [
  15399. {
  15400. name: "Normal",
  15401. height: math.unit(80000, "feet"),
  15402. default: true
  15403. },
  15404. {
  15405. name: "Max size",
  15406. height: math.unit(10, "lightyears")
  15407. },
  15408. ]
  15409. ))
  15410. characterMakers.push(() => makeCharacter(
  15411. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15412. {
  15413. upright: {
  15414. height: math.unit(7, "feet"),
  15415. weight: math.unit(170, "lb"),
  15416. name: "Upright",
  15417. image: {
  15418. source: "./media/characters/cafat/upright.svg",
  15419. bottom: 0.01
  15420. }
  15421. },
  15422. uprightFull: {
  15423. height: math.unit(7, "feet"),
  15424. weight: math.unit(170, "lb"),
  15425. name: "Upright (Full)",
  15426. image: {
  15427. source: "./media/characters/cafat/upright-full.svg",
  15428. bottom: 0.01
  15429. }
  15430. },
  15431. side: {
  15432. height: math.unit(5, "feet"),
  15433. weight: math.unit(150, "lb"),
  15434. name: "Side",
  15435. image: {
  15436. source: "./media/characters/cafat/side.svg"
  15437. }
  15438. },
  15439. },
  15440. [
  15441. {
  15442. name: "Small",
  15443. height: math.unit(7, "feet"),
  15444. default: true
  15445. },
  15446. {
  15447. name: "Large",
  15448. height: math.unit(15.5, "feet")
  15449. },
  15450. ]
  15451. ))
  15452. characterMakers.push(() => makeCharacter(
  15453. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15454. {
  15455. front: {
  15456. height: math.unit(6, "feet"),
  15457. weight: math.unit(150, "lb"),
  15458. name: "Front",
  15459. image: {
  15460. source: "./media/characters/verin-raharra/front.svg",
  15461. extra: 5019 / 4835,
  15462. bottom: 0.023
  15463. }
  15464. },
  15465. },
  15466. [
  15467. {
  15468. name: "Normal",
  15469. height: math.unit(7 + 5 / 12, "feet"),
  15470. default: true
  15471. },
  15472. {
  15473. name: "Upsized",
  15474. height: math.unit(20, "feet")
  15475. },
  15476. ]
  15477. ))
  15478. characterMakers.push(() => makeCharacter(
  15479. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15480. {
  15481. front: {
  15482. height: math.unit(7, "feet"),
  15483. weight: math.unit(230, "lb"),
  15484. name: "Front",
  15485. image: {
  15486. source: "./media/characters/nakata/front.svg",
  15487. extra: 1.005,
  15488. bottom: 0.01
  15489. }
  15490. },
  15491. },
  15492. [
  15493. {
  15494. name: "Normal",
  15495. height: math.unit(7, "feet"),
  15496. default: true
  15497. },
  15498. {
  15499. name: "Big",
  15500. height: math.unit(14, "feet")
  15501. },
  15502. {
  15503. name: "Macro",
  15504. height: math.unit(400, "feet")
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(4.91, "feet"),
  15513. weight: math.unit(100, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/lily/front.svg",
  15517. extra: 1585 / 1415,
  15518. bottom: 0.02
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Normal",
  15525. height: math.unit(4.91, "feet"),
  15526. default: true
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15532. {
  15533. laying: {
  15534. height: math.unit(4 + 4 / 12, "feet"),
  15535. weight: math.unit(600, "lb"),
  15536. name: "Laying",
  15537. image: {
  15538. source: "./media/characters/sheila/laying.svg",
  15539. extra: 1333 / 1265,
  15540. bottom: 0.16
  15541. }
  15542. },
  15543. },
  15544. [
  15545. {
  15546. name: "Normal",
  15547. height: math.unit(4 + 4 / 12, "feet"),
  15548. default: true
  15549. },
  15550. ]
  15551. ))
  15552. characterMakers.push(() => makeCharacter(
  15553. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15554. {
  15555. front: {
  15556. height: math.unit(6, "feet"),
  15557. weight: math.unit(190, "lb"),
  15558. name: "Front",
  15559. image: {
  15560. source: "./media/characters/sax/front.svg",
  15561. extra: 1187 / 973,
  15562. bottom: 0.042
  15563. }
  15564. },
  15565. },
  15566. [
  15567. {
  15568. name: "Micro",
  15569. height: math.unit(4, "inches"),
  15570. default: true
  15571. },
  15572. ]
  15573. ))
  15574. characterMakers.push(() => makeCharacter(
  15575. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15576. {
  15577. front: {
  15578. height: math.unit(6, "feet"),
  15579. weight: math.unit(150, "lb"),
  15580. name: "Front",
  15581. image: {
  15582. source: "./media/characters/pandora/front.svg",
  15583. extra: 2720 / 2556,
  15584. bottom: 0.015
  15585. }
  15586. },
  15587. back: {
  15588. height: math.unit(6, "feet"),
  15589. weight: math.unit(150, "lb"),
  15590. name: "Back",
  15591. image: {
  15592. source: "./media/characters/pandora/back.svg",
  15593. extra: 2720 / 2556,
  15594. bottom: 0.01
  15595. }
  15596. },
  15597. beans: {
  15598. height: math.unit(6 / 8, "feet"),
  15599. name: "Beans",
  15600. image: {
  15601. source: "./media/characters/pandora/beans.svg"
  15602. }
  15603. },
  15604. skirt: {
  15605. height: math.unit(6, "feet"),
  15606. weight: math.unit(150, "lb"),
  15607. name: "Skirt",
  15608. image: {
  15609. source: "./media/characters/pandora/skirt.svg",
  15610. extra: 1622 / 1525,
  15611. bottom: 0.015
  15612. }
  15613. },
  15614. hoodie: {
  15615. height: math.unit(6, "feet"),
  15616. weight: math.unit(150, "lb"),
  15617. name: "Hoodie",
  15618. image: {
  15619. source: "./media/characters/pandora/hoodie.svg",
  15620. extra: 1622 / 1525,
  15621. bottom: 0.015
  15622. }
  15623. },
  15624. casual: {
  15625. height: math.unit(6, "feet"),
  15626. weight: math.unit(150, "lb"),
  15627. name: "Casual",
  15628. image: {
  15629. source: "./media/characters/pandora/casual.svg",
  15630. extra: 1622 / 1525,
  15631. bottom: 0.015
  15632. }
  15633. },
  15634. },
  15635. [
  15636. {
  15637. name: "Normal",
  15638. height: math.unit(6, "feet")
  15639. },
  15640. {
  15641. name: "Big Steppy",
  15642. height: math.unit(1, "km"),
  15643. default: true
  15644. },
  15645. ]
  15646. ))
  15647. characterMakers.push(() => makeCharacter(
  15648. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15649. {
  15650. side: {
  15651. height: math.unit(10, "feet"),
  15652. weight: math.unit(800, "kg"),
  15653. name: "Side",
  15654. image: {
  15655. source: "./media/characters/venio-darcony/side.svg",
  15656. extra: 1373 / 1003,
  15657. bottom: 0.037
  15658. }
  15659. },
  15660. front: {
  15661. height: math.unit(19, "feet"),
  15662. weight: math.unit(800, "kg"),
  15663. name: "Front",
  15664. image: {
  15665. source: "./media/characters/venio-darcony/front.svg"
  15666. }
  15667. },
  15668. back: {
  15669. height: math.unit(19, "feet"),
  15670. weight: math.unit(800, "kg"),
  15671. name: "Back",
  15672. image: {
  15673. source: "./media/characters/venio-darcony/back.svg"
  15674. }
  15675. },
  15676. sideNsfw: {
  15677. height: math.unit(10, "feet"),
  15678. weight: math.unit(800, "kg"),
  15679. name: "Side (NSFW)",
  15680. image: {
  15681. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15682. extra: 1373 / 1003,
  15683. bottom: 0.037
  15684. }
  15685. },
  15686. frontNsfw: {
  15687. height: math.unit(19, "feet"),
  15688. weight: math.unit(800, "kg"),
  15689. name: "Front (NSFW)",
  15690. image: {
  15691. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15692. }
  15693. },
  15694. backNsfw: {
  15695. height: math.unit(19, "feet"),
  15696. weight: math.unit(800, "kg"),
  15697. name: "Back (NSFW)",
  15698. image: {
  15699. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15700. }
  15701. },
  15702. sideArmored: {
  15703. height: math.unit(10, "feet"),
  15704. weight: math.unit(800, "kg"),
  15705. name: "Side (Armored)",
  15706. image: {
  15707. source: "./media/characters/venio-darcony/side-armored.svg",
  15708. extra: 1373 / 1003,
  15709. bottom: 0.037
  15710. }
  15711. },
  15712. frontArmored: {
  15713. height: math.unit(19, "feet"),
  15714. weight: math.unit(900, "kg"),
  15715. name: "Front (Armored)",
  15716. image: {
  15717. source: "./media/characters/venio-darcony/front-armored.svg"
  15718. }
  15719. },
  15720. backArmored: {
  15721. height: math.unit(19, "feet"),
  15722. weight: math.unit(900, "kg"),
  15723. name: "Back (Armored)",
  15724. image: {
  15725. source: "./media/characters/venio-darcony/back-armored.svg"
  15726. }
  15727. },
  15728. sword: {
  15729. height: math.unit(10, "feet"),
  15730. weight: math.unit(50, "lb"),
  15731. name: "Sword",
  15732. image: {
  15733. source: "./media/characters/venio-darcony/sword.svg"
  15734. }
  15735. },
  15736. },
  15737. [
  15738. {
  15739. name: "Normal",
  15740. height: math.unit(10, "feet")
  15741. },
  15742. {
  15743. name: "Macro",
  15744. height: math.unit(130, "feet"),
  15745. default: true
  15746. },
  15747. {
  15748. name: "Macro+",
  15749. height: math.unit(240, "feet")
  15750. },
  15751. ]
  15752. ))
  15753. characterMakers.push(() => makeCharacter(
  15754. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15755. {
  15756. front: {
  15757. height: math.unit(6, "feet"),
  15758. weight: math.unit(150, "lb"),
  15759. name: "Front",
  15760. image: {
  15761. source: "./media/characters/veski/front.svg",
  15762. extra: 1299 / 1225,
  15763. bottom: 0.04
  15764. }
  15765. },
  15766. back: {
  15767. height: math.unit(6, "feet"),
  15768. weight: math.unit(150, "lb"),
  15769. name: "Back",
  15770. image: {
  15771. source: "./media/characters/veski/back.svg",
  15772. extra: 1299 / 1225,
  15773. bottom: 0.008
  15774. }
  15775. },
  15776. maw: {
  15777. height: math.unit(1.5 * 1.21, "feet"),
  15778. name: "Maw",
  15779. image: {
  15780. source: "./media/characters/veski/maw.svg"
  15781. }
  15782. },
  15783. },
  15784. [
  15785. {
  15786. name: "Macro",
  15787. height: math.unit(2, "km"),
  15788. default: true
  15789. },
  15790. ]
  15791. ))
  15792. characterMakers.push(() => makeCharacter(
  15793. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15794. {
  15795. front: {
  15796. height: math.unit(5 + 7 / 12, "feet"),
  15797. name: "Front",
  15798. image: {
  15799. source: "./media/characters/isabelle/front.svg",
  15800. extra: 2130 / 1976,
  15801. bottom: 0.05
  15802. }
  15803. },
  15804. },
  15805. [
  15806. {
  15807. name: "Supermicro",
  15808. height: math.unit(10, "micrometers")
  15809. },
  15810. {
  15811. name: "Micro",
  15812. height: math.unit(1, "inch")
  15813. },
  15814. {
  15815. name: "Tiny",
  15816. height: math.unit(5, "inches")
  15817. },
  15818. {
  15819. name: "Standard",
  15820. height: math.unit(5 + 7 / 12, "inches")
  15821. },
  15822. {
  15823. name: "Macro",
  15824. height: math.unit(80, "meters"),
  15825. default: true
  15826. },
  15827. {
  15828. name: "Megamacro",
  15829. height: math.unit(250, "meters")
  15830. },
  15831. {
  15832. name: "Gigamacro",
  15833. height: math.unit(5, "km")
  15834. },
  15835. {
  15836. name: "Cosmic",
  15837. height: math.unit(2.5e6, "miles")
  15838. },
  15839. ]
  15840. ))
  15841. characterMakers.push(() => makeCharacter(
  15842. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15843. {
  15844. front: {
  15845. height: math.unit(6, "feet"),
  15846. weight: math.unit(150, "lb"),
  15847. name: "Front",
  15848. image: {
  15849. source: "./media/characters/hanzo/front.svg",
  15850. extra: 374 / 344,
  15851. bottom: 0.02
  15852. }
  15853. },
  15854. },
  15855. [
  15856. {
  15857. name: "Normal",
  15858. height: math.unit(8, "feet"),
  15859. default: true
  15860. },
  15861. ]
  15862. ))
  15863. characterMakers.push(() => makeCharacter(
  15864. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15865. {
  15866. front: {
  15867. height: math.unit(7, "feet"),
  15868. weight: math.unit(130, "lb"),
  15869. name: "Front",
  15870. image: {
  15871. source: "./media/characters/anna/front.svg",
  15872. extra: 169 / 145,
  15873. bottom: 0.06
  15874. }
  15875. },
  15876. full: {
  15877. height: math.unit(4.96, "feet"),
  15878. weight: math.unit(220, "lb"),
  15879. name: "Full",
  15880. image: {
  15881. source: "./media/characters/anna/full.svg",
  15882. extra: 138 / 114,
  15883. bottom: 0.15
  15884. }
  15885. },
  15886. tongue: {
  15887. height: math.unit(2.53, "feet"),
  15888. name: "Tongue",
  15889. image: {
  15890. source: "./media/characters/anna/tongue.svg"
  15891. }
  15892. },
  15893. },
  15894. [
  15895. {
  15896. name: "Normal",
  15897. height: math.unit(7, "feet"),
  15898. default: true
  15899. },
  15900. ]
  15901. ))
  15902. characterMakers.push(() => makeCharacter(
  15903. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15904. {
  15905. front: {
  15906. height: math.unit(7, "feet"),
  15907. weight: math.unit(150, "lb"),
  15908. name: "Front",
  15909. image: {
  15910. source: "./media/characters/ian-corvid/front.svg",
  15911. extra: 150 / 142,
  15912. bottom: 0.02
  15913. }
  15914. },
  15915. back: {
  15916. height: math.unit(7, "feet"),
  15917. weight: math.unit(150, "lb"),
  15918. name: "Back",
  15919. image: {
  15920. source: "./media/characters/ian-corvid/back.svg",
  15921. extra: 150 / 143,
  15922. bottom: 0.01
  15923. }
  15924. },
  15925. stomping: {
  15926. height: math.unit(7, "feet"),
  15927. weight: math.unit(150, "lb"),
  15928. name: "Stomping",
  15929. image: {
  15930. source: "./media/characters/ian-corvid/stomping.svg",
  15931. extra: 76 / 72
  15932. }
  15933. },
  15934. sitting: {
  15935. height: math.unit(7 / 1.8, "feet"),
  15936. weight: math.unit(150, "lb"),
  15937. name: "Sitting",
  15938. image: {
  15939. source: "./media/characters/ian-corvid/sitting.svg",
  15940. extra: 1400 / 1269,
  15941. bottom: 0.15
  15942. }
  15943. },
  15944. },
  15945. [
  15946. {
  15947. name: "Tiny Microw",
  15948. height: math.unit(1, "inch")
  15949. },
  15950. {
  15951. name: "Microw",
  15952. height: math.unit(6, "inches")
  15953. },
  15954. {
  15955. name: "Crow",
  15956. height: math.unit(7 + 1 / 12, "feet"),
  15957. default: true
  15958. },
  15959. {
  15960. name: "Macrow",
  15961. height: math.unit(176, "feet")
  15962. },
  15963. ]
  15964. ))
  15965. characterMakers.push(() => makeCharacter(
  15966. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15967. {
  15968. front: {
  15969. height: math.unit(5 + 7 / 12, "feet"),
  15970. weight: math.unit(147, "lb"),
  15971. name: "Front",
  15972. image: {
  15973. source: "./media/characters/natalie-kellon/front.svg",
  15974. extra: 1214 / 1141,
  15975. bottom: 0.02
  15976. }
  15977. },
  15978. },
  15979. [
  15980. {
  15981. name: "Micro",
  15982. height: math.unit(1 / 16, "inch")
  15983. },
  15984. {
  15985. name: "Tiny",
  15986. height: math.unit(4, "inches")
  15987. },
  15988. {
  15989. name: "Normal",
  15990. height: math.unit(5 + 7 / 12, "feet"),
  15991. default: true
  15992. },
  15993. {
  15994. name: "Amazon",
  15995. height: math.unit(12, "feet")
  15996. },
  15997. {
  15998. name: "Giantess",
  15999. height: math.unit(160, "meters")
  16000. },
  16001. {
  16002. name: "Titaness",
  16003. height: math.unit(800, "meters")
  16004. },
  16005. ]
  16006. ))
  16007. characterMakers.push(() => makeCharacter(
  16008. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16009. {
  16010. front: {
  16011. height: math.unit(6, "feet"),
  16012. weight: math.unit(150, "lb"),
  16013. name: "Front",
  16014. image: {
  16015. source: "./media/characters/alluria/front.svg",
  16016. extra: 806 / 738,
  16017. bottom: 0.01
  16018. }
  16019. },
  16020. side: {
  16021. height: math.unit(6, "feet"),
  16022. weight: math.unit(150, "lb"),
  16023. name: "Side",
  16024. image: {
  16025. source: "./media/characters/alluria/side.svg",
  16026. extra: 800 / 750,
  16027. }
  16028. },
  16029. back: {
  16030. height: math.unit(6, "feet"),
  16031. weight: math.unit(150, "lb"),
  16032. name: "Back",
  16033. image: {
  16034. source: "./media/characters/alluria/back.svg",
  16035. extra: 806 / 738,
  16036. }
  16037. },
  16038. frontMaid: {
  16039. height: math.unit(6, "feet"),
  16040. weight: math.unit(150, "lb"),
  16041. name: "Front (Maid)",
  16042. image: {
  16043. source: "./media/characters/alluria/front-maid.svg",
  16044. extra: 806 / 738,
  16045. bottom: 0.01
  16046. }
  16047. },
  16048. sideMaid: {
  16049. height: math.unit(6, "feet"),
  16050. weight: math.unit(150, "lb"),
  16051. name: "Side (Maid)",
  16052. image: {
  16053. source: "./media/characters/alluria/side-maid.svg",
  16054. extra: 800 / 750,
  16055. bottom: 0.005
  16056. }
  16057. },
  16058. backMaid: {
  16059. height: math.unit(6, "feet"),
  16060. weight: math.unit(150, "lb"),
  16061. name: "Back (Maid)",
  16062. image: {
  16063. source: "./media/characters/alluria/back-maid.svg",
  16064. extra: 806 / 738,
  16065. }
  16066. },
  16067. },
  16068. [
  16069. {
  16070. name: "Micro",
  16071. height: math.unit(6, "inches"),
  16072. default: true
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(6, "feet"),
  16081. weight: math.unit(150, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/kyle/front.svg",
  16085. extra: 1069 / 962,
  16086. bottom: 77.228 / 1727.45
  16087. }
  16088. },
  16089. },
  16090. [
  16091. {
  16092. name: "Macro",
  16093. height: math.unit(150, "feet"),
  16094. default: true
  16095. },
  16096. ]
  16097. ))
  16098. characterMakers.push(() => makeCharacter(
  16099. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16100. {
  16101. front: {
  16102. height: math.unit(6, "feet"),
  16103. weight: math.unit(300, "lb"),
  16104. name: "Front",
  16105. image: {
  16106. source: "./media/characters/duncan/front.svg",
  16107. extra: 1650 / 1482,
  16108. bottom: 0.05
  16109. }
  16110. },
  16111. },
  16112. [
  16113. {
  16114. name: "Macro",
  16115. height: math.unit(100, "feet"),
  16116. default: true
  16117. },
  16118. ]
  16119. ))
  16120. characterMakers.push(() => makeCharacter(
  16121. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16122. {
  16123. front: {
  16124. height: math.unit(5 + 4 / 12, "feet"),
  16125. weight: math.unit(220, "lb"),
  16126. name: "Front",
  16127. image: {
  16128. source: "./media/characters/memory/front.svg",
  16129. extra: 3641 / 3545,
  16130. bottom: 0.03
  16131. }
  16132. },
  16133. back: {
  16134. height: math.unit(5 + 4 / 12, "feet"),
  16135. weight: math.unit(220, "lb"),
  16136. name: "Back",
  16137. image: {
  16138. source: "./media/characters/memory/back.svg",
  16139. extra: 3641 / 3545,
  16140. bottom: 0.025
  16141. }
  16142. },
  16143. frontSkirt: {
  16144. height: math.unit(5 + 4 / 12, "feet"),
  16145. weight: math.unit(220, "lb"),
  16146. name: "Front (Skirt)",
  16147. image: {
  16148. source: "./media/characters/memory/front-skirt.svg",
  16149. extra: 3641 / 3545,
  16150. bottom: 0.03
  16151. }
  16152. },
  16153. frontDress: {
  16154. height: math.unit(5 + 4 / 12, "feet"),
  16155. weight: math.unit(220, "lb"),
  16156. name: "Front (Dress)",
  16157. image: {
  16158. source: "./media/characters/memory/front-dress.svg",
  16159. extra: 3641 / 3545,
  16160. bottom: 0.03
  16161. }
  16162. },
  16163. },
  16164. [
  16165. {
  16166. name: "Micro",
  16167. height: math.unit(6, "inches"),
  16168. default: true
  16169. },
  16170. {
  16171. name: "Normal",
  16172. height: math.unit(5 + 4 / 12, "feet")
  16173. },
  16174. ]
  16175. ))
  16176. characterMakers.push(() => makeCharacter(
  16177. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16178. {
  16179. front: {
  16180. height: math.unit(4 + 11 / 12, "feet"),
  16181. weight: math.unit(100, "lb"),
  16182. name: "Front",
  16183. image: {
  16184. source: "./media/characters/luno/front.svg",
  16185. extra: 1535 / 1487,
  16186. bottom: 0.03
  16187. }
  16188. },
  16189. },
  16190. [
  16191. {
  16192. name: "Micro",
  16193. height: math.unit(3, "inches")
  16194. },
  16195. {
  16196. name: "Normal",
  16197. height: math.unit(4 + 11 / 12, "feet"),
  16198. default: true
  16199. },
  16200. {
  16201. name: "Macro",
  16202. height: math.unit(300, "feet")
  16203. },
  16204. {
  16205. name: "Megamacro",
  16206. height: math.unit(700, "miles")
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16212. {
  16213. front: {
  16214. height: math.unit(6 + 2 / 12, "feet"),
  16215. weight: math.unit(170, "lb"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/jamesy/front.svg",
  16219. extra: 440 / 382,
  16220. bottom: 0.005
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Micro",
  16227. height: math.unit(3, "inches")
  16228. },
  16229. {
  16230. name: "Normal",
  16231. height: math.unit(6 + 2 / 12, "feet"),
  16232. default: true
  16233. },
  16234. {
  16235. name: "Macro",
  16236. height: math.unit(300, "feet")
  16237. },
  16238. {
  16239. name: "Megamacro",
  16240. height: math.unit(700, "miles")
  16241. },
  16242. ]
  16243. ))
  16244. characterMakers.push(() => makeCharacter(
  16245. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16246. {
  16247. front: {
  16248. height: math.unit(6, "feet"),
  16249. weight: math.unit(160, "lb"),
  16250. name: "Front",
  16251. image: {
  16252. source: "./media/characters/mark/front.svg",
  16253. extra: 3300 / 3100,
  16254. bottom: 136.42 / 3440.47
  16255. }
  16256. },
  16257. },
  16258. [
  16259. {
  16260. name: "Macro",
  16261. height: math.unit(120, "meters")
  16262. },
  16263. {
  16264. name: "Bigger Macro",
  16265. height: math.unit(350, "meters")
  16266. },
  16267. {
  16268. name: "Megamacro",
  16269. height: math.unit(8, "km"),
  16270. default: true
  16271. },
  16272. {
  16273. name: "Continental",
  16274. height: math.unit(4550, "km")
  16275. },
  16276. {
  16277. name: "Planetary",
  16278. height: math.unit(65000, "km")
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16284. {
  16285. front: {
  16286. height: math.unit(6, "feet"),
  16287. weight: math.unit(400, "lb"),
  16288. name: "Front",
  16289. image: {
  16290. source: "./media/characters/mac/front.svg",
  16291. extra: 1048 / 987.7,
  16292. bottom: 60 / 1107.6,
  16293. }
  16294. },
  16295. },
  16296. [
  16297. {
  16298. name: "Macro",
  16299. height: math.unit(500, "feet"),
  16300. default: true
  16301. },
  16302. ]
  16303. ))
  16304. characterMakers.push(() => makeCharacter(
  16305. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16306. {
  16307. front: {
  16308. height: math.unit(5 + 2 / 12, "feet"),
  16309. weight: math.unit(190, "lb"),
  16310. name: "Front",
  16311. image: {
  16312. source: "./media/characters/bari/front.svg",
  16313. extra: 3156 / 2880,
  16314. bottom: 0.03
  16315. }
  16316. },
  16317. back: {
  16318. height: math.unit(5 + 2 / 12, "feet"),
  16319. weight: math.unit(190, "lb"),
  16320. name: "Back",
  16321. image: {
  16322. source: "./media/characters/bari/back.svg",
  16323. extra: 3260 / 2834,
  16324. bottom: 0.025
  16325. }
  16326. },
  16327. frontPlush: {
  16328. height: math.unit(5 + 2 / 12, "feet"),
  16329. weight: math.unit(190, "lb"),
  16330. name: "Front (Plush)",
  16331. image: {
  16332. source: "./media/characters/bari/front-plush.svg",
  16333. extra: 1112 / 1061,
  16334. bottom: 0.002
  16335. }
  16336. },
  16337. },
  16338. [
  16339. {
  16340. name: "Micro",
  16341. height: math.unit(3, "inches")
  16342. },
  16343. {
  16344. name: "Normal",
  16345. height: math.unit(5 + 2 / 12, "feet"),
  16346. default: true
  16347. },
  16348. {
  16349. name: "Macro",
  16350. height: math.unit(20, "feet")
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(6 + 1 / 12, "feet"),
  16359. weight: math.unit(275, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/hunter-misha-raven/front.svg"
  16363. }
  16364. },
  16365. },
  16366. [
  16367. {
  16368. name: "Mortal",
  16369. height: math.unit(6 + 1 / 12, "feet")
  16370. },
  16371. {
  16372. name: "Divine",
  16373. height: math.unit(1.12134e34, "parsecs"),
  16374. default: true
  16375. },
  16376. ]
  16377. ))
  16378. characterMakers.push(() => makeCharacter(
  16379. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16380. {
  16381. front: {
  16382. height: math.unit(6 + 3 / 12, "feet"),
  16383. weight: math.unit(220, "lb"),
  16384. name: "Front",
  16385. image: {
  16386. source: "./media/characters/max-calore/front.svg",
  16387. extra: 1700 / 1648,
  16388. bottom: 0.01
  16389. }
  16390. },
  16391. back: {
  16392. height: math.unit(6 + 3 / 12, "feet"),
  16393. weight: math.unit(220, "lb"),
  16394. name: "Back",
  16395. image: {
  16396. source: "./media/characters/max-calore/back.svg",
  16397. extra: 1700 / 1648,
  16398. bottom: 0.01
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Normal",
  16405. height: math.unit(6 + 3 / 12, "feet"),
  16406. default: true
  16407. },
  16408. ]
  16409. ))
  16410. characterMakers.push(() => makeCharacter(
  16411. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16412. {
  16413. side: {
  16414. height: math.unit(2 + 8 / 12, "feet"),
  16415. weight: math.unit(99, "lb"),
  16416. name: "Side",
  16417. image: {
  16418. source: "./media/characters/aspen/side.svg",
  16419. extra: 152 / 138,
  16420. bottom: 0.032
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Normal",
  16427. height: math.unit(2 + 8 / 12, "feet"),
  16428. default: true
  16429. },
  16430. ]
  16431. ))
  16432. characterMakers.push(() => makeCharacter(
  16433. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16434. {
  16435. side: {
  16436. height: math.unit(3 + 2 / 12, "feet"),
  16437. weight: math.unit(224, "lb"),
  16438. name: "Side",
  16439. image: {
  16440. source: "./media/characters/sheila-feral-wolf/side.svg",
  16441. extra: 179 / 166,
  16442. bottom: 0.03
  16443. }
  16444. },
  16445. },
  16446. [
  16447. {
  16448. name: "Normal",
  16449. height: math.unit(3 + 2 / 12, "feet"),
  16450. default: true
  16451. },
  16452. ]
  16453. ))
  16454. characterMakers.push(() => makeCharacter(
  16455. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16456. {
  16457. side: {
  16458. height: math.unit(1 + 9 / 12, "feet"),
  16459. weight: math.unit(38, "lb"),
  16460. name: "Side",
  16461. image: {
  16462. source: "./media/characters/michelle/side.svg",
  16463. extra: 147 / 136.7,
  16464. bottom: 0.03
  16465. }
  16466. },
  16467. },
  16468. [
  16469. {
  16470. name: "Normal",
  16471. height: math.unit(1 + 9 / 12, "feet"),
  16472. default: true
  16473. },
  16474. ]
  16475. ))
  16476. characterMakers.push(() => makeCharacter(
  16477. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16478. {
  16479. front: {
  16480. height: math.unit(1 + 1 / 12, "feet"),
  16481. weight: math.unit(18, "lb"),
  16482. name: "Front",
  16483. image: {
  16484. source: "./media/characters/nino/front.svg"
  16485. }
  16486. },
  16487. },
  16488. [
  16489. {
  16490. name: "Normal",
  16491. height: math.unit(1 + 1 / 12, "feet"),
  16492. default: true
  16493. },
  16494. ]
  16495. ))
  16496. characterMakers.push(() => makeCharacter(
  16497. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16498. {
  16499. front: {
  16500. height: math.unit(1, "feet"),
  16501. weight: math.unit(16, "lb"),
  16502. name: "Front",
  16503. image: {
  16504. source: "./media/characters/viola/front.svg"
  16505. }
  16506. },
  16507. },
  16508. [
  16509. {
  16510. name: "Normal",
  16511. height: math.unit(1, "feet"),
  16512. default: true
  16513. },
  16514. ]
  16515. ))
  16516. characterMakers.push(() => makeCharacter(
  16517. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16518. {
  16519. front: {
  16520. height: math.unit(6 + 5 / 12, "feet"),
  16521. weight: math.unit(580, "lb"),
  16522. name: "Front",
  16523. image: {
  16524. source: "./media/characters/atlas/front.svg",
  16525. extra: 298.5 / 290,
  16526. bottom: 0.015
  16527. }
  16528. },
  16529. },
  16530. [
  16531. {
  16532. name: "Normal",
  16533. height: math.unit(6 + 5 / 12, "feet"),
  16534. default: true
  16535. },
  16536. ]
  16537. ))
  16538. characterMakers.push(() => makeCharacter(
  16539. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16540. {
  16541. side: {
  16542. height: math.unit(1 + 10 / 12, "feet"),
  16543. weight: math.unit(25, "lb"),
  16544. name: "Side",
  16545. image: {
  16546. source: "./media/characters/davy/side.svg",
  16547. extra: 200 / 170,
  16548. bottom: 0.01
  16549. }
  16550. },
  16551. },
  16552. [
  16553. {
  16554. name: "Normal",
  16555. height: math.unit(1 + 10 / 12, "feet"),
  16556. default: true
  16557. },
  16558. ]
  16559. ))
  16560. characterMakers.push(() => makeCharacter(
  16561. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16562. {
  16563. side: {
  16564. height: math.unit(4 + 8 / 12, "feet"),
  16565. weight: math.unit(166, "lb"),
  16566. name: "Side",
  16567. image: {
  16568. source: "./media/characters/fiona/side.svg",
  16569. extra: 232 / 220,
  16570. bottom: 0.03
  16571. }
  16572. },
  16573. },
  16574. [
  16575. {
  16576. name: "Normal",
  16577. height: math.unit(4 + 8 / 12, "feet"),
  16578. default: true
  16579. },
  16580. ]
  16581. ))
  16582. characterMakers.push(() => makeCharacter(
  16583. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16584. {
  16585. front: {
  16586. height: math.unit(2, "feet"),
  16587. weight: math.unit(62, "lb"),
  16588. name: "Front",
  16589. image: {
  16590. source: "./media/characters/lyla/front.svg",
  16591. bottom: 0.1
  16592. }
  16593. },
  16594. },
  16595. [
  16596. {
  16597. name: "Normal",
  16598. height: math.unit(2, "feet"),
  16599. default: true
  16600. },
  16601. ]
  16602. ))
  16603. characterMakers.push(() => makeCharacter(
  16604. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16605. {
  16606. side: {
  16607. height: math.unit(1.8, "feet"),
  16608. weight: math.unit(44, "lb"),
  16609. name: "Side",
  16610. image: {
  16611. source: "./media/characters/perseus/side.svg",
  16612. bottom: 0.21
  16613. }
  16614. },
  16615. },
  16616. [
  16617. {
  16618. name: "Normal",
  16619. height: math.unit(1.8, "feet"),
  16620. default: true
  16621. },
  16622. ]
  16623. ))
  16624. characterMakers.push(() => makeCharacter(
  16625. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16626. {
  16627. side: {
  16628. height: math.unit(4 + 2 / 12, "feet"),
  16629. weight: math.unit(20, "lb"),
  16630. name: "Side",
  16631. image: {
  16632. source: "./media/characters/remus/side.svg"
  16633. }
  16634. },
  16635. },
  16636. [
  16637. {
  16638. name: "Normal",
  16639. height: math.unit(4 + 2 / 12, "feet"),
  16640. default: true
  16641. },
  16642. ]
  16643. ))
  16644. characterMakers.push(() => makeCharacter(
  16645. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16646. {
  16647. front: {
  16648. height: math.unit(4 + 11 / 12, "feet"),
  16649. weight: math.unit(114, "lb"),
  16650. name: "Front",
  16651. image: {
  16652. source: "./media/characters/raf/front.svg",
  16653. bottom: 20.5 / 1863
  16654. }
  16655. },
  16656. side: {
  16657. height: math.unit(4 + 11 / 12, "feet"),
  16658. weight: math.unit(114, "lb"),
  16659. name: "Side",
  16660. image: {
  16661. source: "./media/characters/raf/side.svg",
  16662. bottom: 22 / 1822
  16663. }
  16664. },
  16665. },
  16666. [
  16667. {
  16668. name: "Micro",
  16669. height: math.unit(2, "inches")
  16670. },
  16671. {
  16672. name: "Normal",
  16673. height: math.unit(4 + 11 / 12, "feet"),
  16674. default: true
  16675. },
  16676. {
  16677. name: "Macro",
  16678. height: math.unit(70, "feet")
  16679. },
  16680. ]
  16681. ))
  16682. characterMakers.push(() => makeCharacter(
  16683. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16684. {
  16685. front: {
  16686. height: math.unit(1.5, "meters"),
  16687. weight: math.unit(68, "kg"),
  16688. name: "Front",
  16689. image: {
  16690. source: "./media/characters/liam-einarr/front.svg",
  16691. extra: 2822 / 2666
  16692. }
  16693. },
  16694. back: {
  16695. height: math.unit(1.5, "meters"),
  16696. weight: math.unit(68, "kg"),
  16697. name: "Back",
  16698. image: {
  16699. source: "./media/characters/liam-einarr/back.svg",
  16700. extra: 2822 / 2666,
  16701. bottom: 0.015
  16702. }
  16703. },
  16704. },
  16705. [
  16706. {
  16707. name: "Normal",
  16708. height: math.unit(1.5, "meters"),
  16709. default: true
  16710. },
  16711. {
  16712. name: "Macro",
  16713. height: math.unit(150, "meters")
  16714. },
  16715. {
  16716. name: "Megamacro",
  16717. height: math.unit(35, "km")
  16718. },
  16719. ]
  16720. ))
  16721. characterMakers.push(() => makeCharacter(
  16722. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16723. {
  16724. front: {
  16725. height: math.unit(6, "feet"),
  16726. weight: math.unit(75, "kg"),
  16727. name: "Front",
  16728. image: {
  16729. source: "./media/characters/linda/front.svg",
  16730. extra: 930 / 874,
  16731. bottom: 0.004
  16732. }
  16733. },
  16734. },
  16735. [
  16736. {
  16737. name: "Normal",
  16738. height: math.unit(6, "feet"),
  16739. default: true
  16740. },
  16741. ]
  16742. ))
  16743. characterMakers.push(() => makeCharacter(
  16744. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16745. {
  16746. front: {
  16747. height: math.unit(6 + 8 / 12, "feet"),
  16748. weight: math.unit(220, "lb"),
  16749. name: "Front",
  16750. image: {
  16751. source: "./media/characters/caylex/front.svg",
  16752. extra: 821 / 772,
  16753. bottom: 0.07
  16754. }
  16755. },
  16756. back: {
  16757. height: math.unit(6 + 8 / 12, "feet"),
  16758. weight: math.unit(220, "lb"),
  16759. name: "Back",
  16760. image: {
  16761. source: "./media/characters/caylex/back.svg",
  16762. extra: 821 / 772,
  16763. bottom: 0.022
  16764. }
  16765. },
  16766. hand: {
  16767. height: math.unit(1.25, "feet"),
  16768. name: "Hand",
  16769. image: {
  16770. source: "./media/characters/caylex/hand.svg"
  16771. }
  16772. },
  16773. foot: {
  16774. height: math.unit(1.6, "feet"),
  16775. name: "Foot",
  16776. image: {
  16777. source: "./media/characters/caylex/foot.svg"
  16778. }
  16779. },
  16780. armored: {
  16781. height: math.unit(6 + 8 / 12, "feet"),
  16782. weight: math.unit(250, "lb"),
  16783. name: "Armored",
  16784. image: {
  16785. source: "./media/characters/caylex/armored.svg",
  16786. extra: 1420 / 1310,
  16787. bottom: 0.045
  16788. }
  16789. },
  16790. },
  16791. [
  16792. {
  16793. name: "Normal",
  16794. height: math.unit(6 + 8 / 12, "feet"),
  16795. default: true
  16796. },
  16797. {
  16798. name: "Normal+",
  16799. height: math.unit(12, "feet")
  16800. },
  16801. ]
  16802. ))
  16803. characterMakers.push(() => makeCharacter(
  16804. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16805. {
  16806. front: {
  16807. height: math.unit(7 + 6 / 12, "feet"),
  16808. weight: math.unit(288, "lb"),
  16809. name: "Front",
  16810. image: {
  16811. source: "./media/characters/alana/front.svg",
  16812. extra: 679 / 653,
  16813. bottom: 22.5 / 701
  16814. }
  16815. },
  16816. },
  16817. [
  16818. {
  16819. name: "Normal",
  16820. height: math.unit(7 + 6 / 12, "feet")
  16821. },
  16822. {
  16823. name: "Large",
  16824. height: math.unit(50, "feet")
  16825. },
  16826. {
  16827. name: "Macro",
  16828. height: math.unit(100, "feet"),
  16829. default: true
  16830. },
  16831. {
  16832. name: "Macro+",
  16833. height: math.unit(200, "feet")
  16834. },
  16835. ]
  16836. ))
  16837. characterMakers.push(() => makeCharacter(
  16838. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16839. {
  16840. front: {
  16841. height: math.unit(6 + 1 / 12, "feet"),
  16842. weight: math.unit(210, "lb"),
  16843. name: "Front",
  16844. image: {
  16845. source: "./media/characters/hasani/front.svg",
  16846. extra: 244 / 232,
  16847. bottom: 0.01
  16848. }
  16849. },
  16850. back: {
  16851. height: math.unit(6 + 1 / 12, "feet"),
  16852. weight: math.unit(210, "lb"),
  16853. name: "Back",
  16854. image: {
  16855. source: "./media/characters/hasani/back.svg",
  16856. extra: 244 / 232,
  16857. bottom: 0.01
  16858. }
  16859. },
  16860. },
  16861. [
  16862. {
  16863. name: "Normal",
  16864. height: math.unit(6 + 1 / 12, "feet")
  16865. },
  16866. {
  16867. name: "Macro",
  16868. height: math.unit(175, "feet"),
  16869. default: true
  16870. },
  16871. ]
  16872. ))
  16873. characterMakers.push(() => makeCharacter(
  16874. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16875. {
  16876. front: {
  16877. height: math.unit(1.82, "meters"),
  16878. weight: math.unit(140, "lb"),
  16879. name: "Front",
  16880. image: {
  16881. source: "./media/characters/nita/front.svg",
  16882. extra: 2473 / 2363,
  16883. bottom: 0.01
  16884. }
  16885. },
  16886. },
  16887. [
  16888. {
  16889. name: "Normal",
  16890. height: math.unit(1.82, "m")
  16891. },
  16892. {
  16893. name: "Macro",
  16894. height: math.unit(300, "m")
  16895. },
  16896. {
  16897. name: "Mistake Canon",
  16898. height: math.unit(0.5, "miles"),
  16899. default: true
  16900. },
  16901. {
  16902. name: "Big Mistake",
  16903. height: math.unit(13, "miles")
  16904. },
  16905. {
  16906. name: "Playing God",
  16907. height: math.unit(2450, "miles")
  16908. },
  16909. ]
  16910. ))
  16911. characterMakers.push(() => makeCharacter(
  16912. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16913. {
  16914. front: {
  16915. height: math.unit(4, "feet"),
  16916. weight: math.unit(120, "lb"),
  16917. name: "Front",
  16918. image: {
  16919. source: "./media/characters/shiriko/front.svg",
  16920. extra: 195 / 188
  16921. }
  16922. },
  16923. },
  16924. [
  16925. {
  16926. name: "Normal",
  16927. height: math.unit(4, "feet"),
  16928. default: true
  16929. },
  16930. ]
  16931. ))
  16932. characterMakers.push(() => makeCharacter(
  16933. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16934. {
  16935. front: {
  16936. height: math.unit(6, "feet"),
  16937. name: "front",
  16938. image: {
  16939. source: "./media/characters/deja/front.svg",
  16940. extra: 926 / 840,
  16941. bottom: 0.07
  16942. }
  16943. },
  16944. },
  16945. [
  16946. {
  16947. name: "Planck Length",
  16948. height: math.unit(1.6e-35, "meters")
  16949. },
  16950. {
  16951. name: "Normal",
  16952. height: math.unit(30.48, "meters"),
  16953. default: true
  16954. },
  16955. {
  16956. name: "Universal",
  16957. height: math.unit(8.8e26, "meters")
  16958. },
  16959. ]
  16960. ))
  16961. characterMakers.push(() => makeCharacter(
  16962. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16963. {
  16964. side: {
  16965. height: math.unit(8, "feet"),
  16966. weight: math.unit(6300, "lb"),
  16967. name: "Side",
  16968. image: {
  16969. source: "./media/characters/anima/side.svg",
  16970. bottom: 0.035
  16971. }
  16972. },
  16973. },
  16974. [
  16975. {
  16976. name: "Normal",
  16977. height: math.unit(8, "feet"),
  16978. default: true
  16979. },
  16980. ]
  16981. ))
  16982. characterMakers.push(() => makeCharacter(
  16983. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16984. {
  16985. front: {
  16986. height: math.unit(8, "feet"),
  16987. weight: math.unit(350, "lb"),
  16988. name: "Front",
  16989. image: {
  16990. source: "./media/characters/bianca/front.svg",
  16991. extra: 234 / 225,
  16992. bottom: 0.03
  16993. }
  16994. },
  16995. },
  16996. [
  16997. {
  16998. name: "Normal",
  16999. height: math.unit(8, "feet"),
  17000. default: true
  17001. },
  17002. ]
  17003. ))
  17004. characterMakers.push(() => makeCharacter(
  17005. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  17006. {
  17007. front: {
  17008. height: math.unit(6, "feet"),
  17009. weight: math.unit(150, "lb"),
  17010. name: "Front",
  17011. image: {
  17012. source: "./media/characters/adinia/front.svg",
  17013. extra: 1845 / 1672,
  17014. bottom: 0.02
  17015. }
  17016. },
  17017. back: {
  17018. height: math.unit(6, "feet"),
  17019. weight: math.unit(150, "lb"),
  17020. name: "Back",
  17021. image: {
  17022. source: "./media/characters/adinia/back.svg",
  17023. extra: 1845 / 1672,
  17024. bottom: 0.002
  17025. }
  17026. },
  17027. },
  17028. [
  17029. {
  17030. name: "Normal",
  17031. height: math.unit(11 + 5 / 12, "feet"),
  17032. default: true
  17033. },
  17034. ]
  17035. ))
  17036. characterMakers.push(() => makeCharacter(
  17037. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17038. {
  17039. front: {
  17040. height: math.unit(3, "meters"),
  17041. weight: math.unit(200, "kg"),
  17042. name: "Front",
  17043. image: {
  17044. source: "./media/characters/lykasa/front.svg",
  17045. extra: 1076 / 976,
  17046. bottom: 0.06
  17047. }
  17048. },
  17049. },
  17050. [
  17051. {
  17052. name: "Normal",
  17053. height: math.unit(3, "meters")
  17054. },
  17055. {
  17056. name: "Kaiju",
  17057. height: math.unit(120, "meters"),
  17058. default: true
  17059. },
  17060. {
  17061. name: "Mega Kaiju",
  17062. height: math.unit(240, "km")
  17063. },
  17064. {
  17065. name: "Giga Kaiju",
  17066. height: math.unit(400, "megameters")
  17067. },
  17068. {
  17069. name: "Tera Kaiju",
  17070. height: math.unit(800, "gigameters")
  17071. },
  17072. {
  17073. name: "Kaiju Dragon Goddess",
  17074. height: math.unit(26, "zettaparsecs")
  17075. },
  17076. ]
  17077. ))
  17078. characterMakers.push(() => makeCharacter(
  17079. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17080. {
  17081. side: {
  17082. height: math.unit(283 / 124 * 6, "feet"),
  17083. weight: math.unit(35000, "lb"),
  17084. name: "Side",
  17085. image: {
  17086. source: "./media/characters/malfaren/side.svg",
  17087. extra: 2500 / 1010,
  17088. bottom: 0.01
  17089. }
  17090. },
  17091. front: {
  17092. height: math.unit(22.36, "feet"),
  17093. weight: math.unit(35000, "lb"),
  17094. name: "Front",
  17095. image: {
  17096. source: "./media/characters/malfaren/front.svg",
  17097. extra: 1631 / 1476,
  17098. bottom: 0.01
  17099. }
  17100. },
  17101. maw: {
  17102. height: math.unit(6.9, "feet"),
  17103. name: "Maw",
  17104. image: {
  17105. source: "./media/characters/malfaren/maw.svg"
  17106. }
  17107. },
  17108. },
  17109. [
  17110. {
  17111. name: "Big",
  17112. height: math.unit(283 / 162 * 6, "feet"),
  17113. },
  17114. {
  17115. name: "Bigger",
  17116. height: math.unit(283 / 124 * 6, "feet")
  17117. },
  17118. {
  17119. name: "Massive",
  17120. height: math.unit(283 / 92 * 6, "feet"),
  17121. default: true
  17122. },
  17123. {
  17124. name: "👀💦",
  17125. height: math.unit(283 / 73 * 6, "feet"),
  17126. },
  17127. ]
  17128. ))
  17129. characterMakers.push(() => makeCharacter(
  17130. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17131. {
  17132. front: {
  17133. height: math.unit(1.7, "m"),
  17134. weight: math.unit(70, "kg"),
  17135. name: "Front",
  17136. image: {
  17137. source: "./media/characters/kernel/front.svg",
  17138. extra: 222 / 210,
  17139. bottom: 0.007
  17140. }
  17141. },
  17142. },
  17143. [
  17144. {
  17145. name: "Nano",
  17146. height: math.unit(17, "micrometers")
  17147. },
  17148. {
  17149. name: "Micro",
  17150. height: math.unit(1.7, "mm")
  17151. },
  17152. {
  17153. name: "Small",
  17154. height: math.unit(1.7, "cm")
  17155. },
  17156. {
  17157. name: "Normal",
  17158. height: math.unit(1.7, "m"),
  17159. default: true
  17160. },
  17161. ]
  17162. ))
  17163. characterMakers.push(() => makeCharacter(
  17164. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17165. {
  17166. front: {
  17167. height: math.unit(1.75, "meters"),
  17168. weight: math.unit(65, "kg"),
  17169. name: "Front",
  17170. image: {
  17171. source: "./media/characters/jayne-folest/front.svg",
  17172. extra: 2115 / 2007,
  17173. bottom: 0.02
  17174. }
  17175. },
  17176. back: {
  17177. height: math.unit(1.75, "meters"),
  17178. weight: math.unit(65, "kg"),
  17179. name: "Back",
  17180. image: {
  17181. source: "./media/characters/jayne-folest/back.svg",
  17182. extra: 2115 / 2007,
  17183. bottom: 0.005
  17184. }
  17185. },
  17186. frontClothed: {
  17187. height: math.unit(1.75, "meters"),
  17188. weight: math.unit(65, "kg"),
  17189. name: "Front (Clothed)",
  17190. image: {
  17191. source: "./media/characters/jayne-folest/front-clothed.svg",
  17192. extra: 2115 / 2007,
  17193. bottom: 0.035
  17194. }
  17195. },
  17196. hand: {
  17197. height: math.unit(1 / 1.260, "feet"),
  17198. name: "Hand",
  17199. image: {
  17200. source: "./media/characters/jayne-folest/hand.svg"
  17201. }
  17202. },
  17203. foot: {
  17204. height: math.unit(1 / 0.918, "feet"),
  17205. name: "Foot",
  17206. image: {
  17207. source: "./media/characters/jayne-folest/foot.svg"
  17208. }
  17209. },
  17210. },
  17211. [
  17212. {
  17213. name: "Micro",
  17214. height: math.unit(4, "cm")
  17215. },
  17216. {
  17217. name: "Normal",
  17218. height: math.unit(1.75, "meters")
  17219. },
  17220. {
  17221. name: "Macro",
  17222. height: math.unit(47.5, "meters"),
  17223. default: true
  17224. },
  17225. ]
  17226. ))
  17227. characterMakers.push(() => makeCharacter(
  17228. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17229. {
  17230. front: {
  17231. height: math.unit(180, "cm"),
  17232. weight: math.unit(70, "kg"),
  17233. name: "Front",
  17234. image: {
  17235. source: "./media/characters/algier/front.svg",
  17236. extra: 596 / 572,
  17237. bottom: 0.04
  17238. }
  17239. },
  17240. back: {
  17241. height: math.unit(180, "cm"),
  17242. weight: math.unit(70, "kg"),
  17243. name: "Back",
  17244. image: {
  17245. source: "./media/characters/algier/back.svg",
  17246. extra: 596 / 572,
  17247. bottom: 0.025
  17248. }
  17249. },
  17250. frontdressed: {
  17251. height: math.unit(180, "cm"),
  17252. weight: math.unit(150, "kg"),
  17253. name: "Front-dressed",
  17254. image: {
  17255. source: "./media/characters/algier/front-dressed.svg",
  17256. extra: 596 / 572,
  17257. bottom: 0.038
  17258. }
  17259. },
  17260. },
  17261. [
  17262. {
  17263. name: "Micro",
  17264. height: math.unit(5, "cm")
  17265. },
  17266. {
  17267. name: "Normal",
  17268. height: math.unit(180, "cm"),
  17269. default: true
  17270. },
  17271. {
  17272. name: "Macro",
  17273. height: math.unit(64, "m")
  17274. },
  17275. ]
  17276. ))
  17277. characterMakers.push(() => makeCharacter(
  17278. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17279. {
  17280. upright: {
  17281. height: math.unit(7, "feet"),
  17282. weight: math.unit(300, "lb"),
  17283. name: "Upright",
  17284. image: {
  17285. source: "./media/characters/pretzel/upright.svg",
  17286. extra: 534 / 522,
  17287. bottom: 0.065
  17288. }
  17289. },
  17290. sprawling: {
  17291. height: math.unit(3.75, "feet"),
  17292. weight: math.unit(300, "lb"),
  17293. name: "Sprawling",
  17294. image: {
  17295. source: "./media/characters/pretzel/sprawling.svg",
  17296. extra: 314 / 281,
  17297. bottom: 0.1
  17298. }
  17299. },
  17300. tongue: {
  17301. height: math.unit(2, "feet"),
  17302. name: "Tongue",
  17303. image: {
  17304. source: "./media/characters/pretzel/tongue.svg"
  17305. }
  17306. },
  17307. },
  17308. [
  17309. {
  17310. name: "Normal",
  17311. height: math.unit(7, "feet"),
  17312. default: true
  17313. },
  17314. {
  17315. name: "Oversized",
  17316. height: math.unit(15, "feet")
  17317. },
  17318. {
  17319. name: "Huge",
  17320. height: math.unit(30, "feet")
  17321. },
  17322. {
  17323. name: "Macro",
  17324. height: math.unit(250, "feet")
  17325. },
  17326. ]
  17327. ))
  17328. characterMakers.push(() => makeCharacter(
  17329. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17330. {
  17331. sideFront: {
  17332. height: math.unit(5 + 2 / 12, "feet"),
  17333. weight: math.unit(120, "lb"),
  17334. name: "Front Side",
  17335. image: {
  17336. source: "./media/characters/roxi/side-front.svg",
  17337. extra: 2924 / 2717,
  17338. bottom: 0.08
  17339. }
  17340. },
  17341. sideBack: {
  17342. height: math.unit(5 + 2 / 12, "feet"),
  17343. weight: math.unit(120, "lb"),
  17344. name: "Back Side",
  17345. image: {
  17346. source: "./media/characters/roxi/side-back.svg",
  17347. extra: 2904 / 2693,
  17348. bottom: 0.06
  17349. }
  17350. },
  17351. front: {
  17352. height: math.unit(5 + 2 / 12, "feet"),
  17353. weight: math.unit(120, "lb"),
  17354. name: "Front",
  17355. image: {
  17356. source: "./media/characters/roxi/front.svg",
  17357. extra: 2028 / 1907,
  17358. bottom: 0.01
  17359. }
  17360. },
  17361. frontAlt: {
  17362. height: math.unit(5 + 2 / 12, "feet"),
  17363. weight: math.unit(120, "lb"),
  17364. name: "Front (Alt)",
  17365. image: {
  17366. source: "./media/characters/roxi/front-alt.svg",
  17367. extra: 1828 / 1798,
  17368. bottom: 0.01
  17369. }
  17370. },
  17371. sitting: {
  17372. height: math.unit(2.8, "feet"),
  17373. weight: math.unit(120, "lb"),
  17374. name: "Sitting",
  17375. image: {
  17376. source: "./media/characters/roxi/sitting.svg",
  17377. extra: 2660 / 2462,
  17378. bottom: 0.1
  17379. }
  17380. },
  17381. },
  17382. [
  17383. {
  17384. name: "Normal",
  17385. height: math.unit(5 + 2 / 12, "feet"),
  17386. default: true
  17387. },
  17388. ]
  17389. ))
  17390. characterMakers.push(() => makeCharacter(
  17391. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17392. {
  17393. side: {
  17394. height: math.unit(55, "feet"),
  17395. weight: math.unit(153, "tons"),
  17396. name: "Side",
  17397. image: {
  17398. source: "./media/characters/shadow/side.svg",
  17399. extra: 701 / 628,
  17400. bottom: 0.02
  17401. }
  17402. },
  17403. flying: {
  17404. height: math.unit(145, "feet"),
  17405. weight: math.unit(153, "tons"),
  17406. name: "Flying",
  17407. image: {
  17408. source: "./media/characters/shadow/flying.svg"
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Normal",
  17415. height: math.unit(55, "feet"),
  17416. default: true
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17422. {
  17423. front: {
  17424. height: math.unit(6, "feet"),
  17425. weight: math.unit(200, "lb"),
  17426. name: "Front",
  17427. image: {
  17428. source: "./media/characters/marcie/front.svg",
  17429. extra: 960 / 876,
  17430. bottom: 58 / 1017.87
  17431. }
  17432. },
  17433. },
  17434. [
  17435. {
  17436. name: "Macro",
  17437. height: math.unit(1, "mile"),
  17438. default: true
  17439. },
  17440. ]
  17441. ))
  17442. characterMakers.push(() => makeCharacter(
  17443. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17444. {
  17445. front: {
  17446. height: math.unit(7, "feet"),
  17447. weight: math.unit(200, "lb"),
  17448. name: "Front",
  17449. image: {
  17450. source: "./media/characters/kachina/front.svg",
  17451. extra: 1290.68 / 1119,
  17452. bottom: 36.5 / 1327.18
  17453. }
  17454. },
  17455. },
  17456. [
  17457. {
  17458. name: "Normal",
  17459. height: math.unit(7, "feet"),
  17460. default: true
  17461. },
  17462. ]
  17463. ))
  17464. characterMakers.push(() => makeCharacter(
  17465. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17466. {
  17467. looking: {
  17468. height: math.unit(2, "meters"),
  17469. weight: math.unit(300, "kg"),
  17470. name: "Looking",
  17471. image: {
  17472. source: "./media/characters/kash/looking.svg",
  17473. extra: 474 / 344,
  17474. bottom: 0.03
  17475. }
  17476. },
  17477. side: {
  17478. height: math.unit(2, "meters"),
  17479. weight: math.unit(300, "kg"),
  17480. name: "Side",
  17481. image: {
  17482. source: "./media/characters/kash/side.svg",
  17483. extra: 302 / 251,
  17484. bottom: 0.03
  17485. }
  17486. },
  17487. front: {
  17488. height: math.unit(2, "meters"),
  17489. weight: math.unit(300, "kg"),
  17490. name: "Front",
  17491. image: {
  17492. source: "./media/characters/kash/front.svg",
  17493. extra: 495 / 360,
  17494. bottom: 0.015
  17495. }
  17496. },
  17497. },
  17498. [
  17499. {
  17500. name: "Normal",
  17501. height: math.unit(2, "meters"),
  17502. default: true
  17503. },
  17504. {
  17505. name: "Big",
  17506. height: math.unit(3, "meters")
  17507. },
  17508. {
  17509. name: "Large",
  17510. height: math.unit(5, "meters")
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17516. {
  17517. feeding: {
  17518. height: math.unit(6.7, "feet"),
  17519. weight: math.unit(350, "lb"),
  17520. name: "Feeding",
  17521. image: {
  17522. source: "./media/characters/lalim/feeding.svg",
  17523. }
  17524. },
  17525. },
  17526. [
  17527. {
  17528. name: "Normal",
  17529. height: math.unit(6.7, "feet"),
  17530. default: true
  17531. },
  17532. ]
  17533. ))
  17534. characterMakers.push(() => makeCharacter(
  17535. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17536. {
  17537. front: {
  17538. height: math.unit(9.5, "feet"),
  17539. weight: math.unit(600, "lb"),
  17540. name: "Front",
  17541. image: {
  17542. source: "./media/characters/de'vout/front.svg",
  17543. extra: 1443 / 1328,
  17544. bottom: 0.025
  17545. }
  17546. },
  17547. back: {
  17548. height: math.unit(9.5, "feet"),
  17549. weight: math.unit(600, "lb"),
  17550. name: "Back",
  17551. image: {
  17552. source: "./media/characters/de'vout/back.svg",
  17553. extra: 1443 / 1328
  17554. }
  17555. },
  17556. frontDressed: {
  17557. height: math.unit(9.5, "feet"),
  17558. weight: math.unit(600, "lb"),
  17559. name: "Front (Dressed",
  17560. image: {
  17561. source: "./media/characters/de'vout/front-dressed.svg",
  17562. extra: 1443 / 1328,
  17563. bottom: 0.025
  17564. }
  17565. },
  17566. backDressed: {
  17567. height: math.unit(9.5, "feet"),
  17568. weight: math.unit(600, "lb"),
  17569. name: "Back (Dressed",
  17570. image: {
  17571. source: "./media/characters/de'vout/back-dressed.svg",
  17572. extra: 1443 / 1328
  17573. }
  17574. },
  17575. },
  17576. [
  17577. {
  17578. name: "Normal",
  17579. height: math.unit(9.5, "feet"),
  17580. default: true
  17581. },
  17582. ]
  17583. ))
  17584. characterMakers.push(() => makeCharacter(
  17585. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17586. {
  17587. front: {
  17588. height: math.unit(8, "feet"),
  17589. weight: math.unit(225, "lb"),
  17590. name: "Front",
  17591. image: {
  17592. source: "./media/characters/talana/front.svg",
  17593. extra: 1410 / 1300,
  17594. bottom: 0.015
  17595. }
  17596. },
  17597. frontDressed: {
  17598. height: math.unit(8, "feet"),
  17599. weight: math.unit(225, "lb"),
  17600. name: "Front (Dressed",
  17601. image: {
  17602. source: "./media/characters/talana/front-dressed.svg",
  17603. extra: 1410 / 1300,
  17604. bottom: 0.015
  17605. }
  17606. },
  17607. },
  17608. [
  17609. {
  17610. name: "Normal",
  17611. height: math.unit(8, "feet"),
  17612. default: true
  17613. },
  17614. ]
  17615. ))
  17616. characterMakers.push(() => makeCharacter(
  17617. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17618. {
  17619. side: {
  17620. height: math.unit(7.2, "feet"),
  17621. weight: math.unit(150, "lb"),
  17622. name: "Side",
  17623. image: {
  17624. source: "./media/characters/xeauvok/side.svg",
  17625. extra: 1975 / 1523,
  17626. bottom: 0.07
  17627. }
  17628. },
  17629. },
  17630. [
  17631. {
  17632. name: "Normal",
  17633. height: math.unit(7.2, "feet"),
  17634. default: true
  17635. },
  17636. ]
  17637. ))
  17638. characterMakers.push(() => makeCharacter(
  17639. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17640. {
  17641. side: {
  17642. height: math.unit(10, "feet"),
  17643. weight: math.unit(900, "kg"),
  17644. name: "Side",
  17645. image: {
  17646. source: "./media/characters/zara/side.svg",
  17647. extra: 504 / 498
  17648. }
  17649. },
  17650. },
  17651. [
  17652. {
  17653. name: "Normal",
  17654. height: math.unit(10, "feet"),
  17655. default: true
  17656. },
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17661. {
  17662. side: {
  17663. height: math.unit(6, "feet"),
  17664. weight: math.unit(150, "lb"),
  17665. name: "Side",
  17666. image: {
  17667. source: "./media/characters/richard-dragon/side.svg",
  17668. extra: 845 / 340,
  17669. bottom: 0.017
  17670. }
  17671. },
  17672. maw: {
  17673. height: math.unit(2.97, "feet"),
  17674. name: "Maw",
  17675. image: {
  17676. source: "./media/characters/richard-dragon/maw.svg"
  17677. }
  17678. },
  17679. },
  17680. [
  17681. ]
  17682. ))
  17683. characterMakers.push(() => makeCharacter(
  17684. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17685. {
  17686. front: {
  17687. height: math.unit(4, "feet"),
  17688. weight: math.unit(100, "lb"),
  17689. name: "Front",
  17690. image: {
  17691. source: "./media/characters/richard-smeargle/front.svg",
  17692. extra: 2952 / 2820,
  17693. bottom: 0.028
  17694. }
  17695. },
  17696. },
  17697. [
  17698. {
  17699. name: "Normal",
  17700. height: math.unit(4, "feet"),
  17701. default: true
  17702. },
  17703. {
  17704. name: "Dynamax",
  17705. height: math.unit(20, "meters")
  17706. },
  17707. ]
  17708. ))
  17709. characterMakers.push(() => makeCharacter(
  17710. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17711. {
  17712. front: {
  17713. height: math.unit(6, "feet"),
  17714. weight: math.unit(110, "lb"),
  17715. name: "Front",
  17716. image: {
  17717. source: "./media/characters/klay/front.svg",
  17718. extra: 962 / 883,
  17719. bottom: 0.04
  17720. }
  17721. },
  17722. back: {
  17723. height: math.unit(6, "feet"),
  17724. weight: math.unit(110, "lb"),
  17725. name: "Back",
  17726. image: {
  17727. source: "./media/characters/klay/back.svg",
  17728. extra: 962 / 883
  17729. }
  17730. },
  17731. beans: {
  17732. height: math.unit(1.15, "feet"),
  17733. name: "Beans",
  17734. image: {
  17735. source: "./media/characters/klay/beans.svg"
  17736. }
  17737. },
  17738. },
  17739. [
  17740. {
  17741. name: "Micro",
  17742. height: math.unit(6, "inches")
  17743. },
  17744. {
  17745. name: "Mini",
  17746. height: math.unit(3, "feet")
  17747. },
  17748. {
  17749. name: "Normal",
  17750. height: math.unit(6, "feet"),
  17751. default: true
  17752. },
  17753. {
  17754. name: "Big",
  17755. height: math.unit(25, "feet")
  17756. },
  17757. {
  17758. name: "Macro",
  17759. height: math.unit(100, "feet")
  17760. },
  17761. {
  17762. name: "Megamacro",
  17763. height: math.unit(400, "feet")
  17764. },
  17765. ]
  17766. ))
  17767. characterMakers.push(() => makeCharacter(
  17768. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17769. {
  17770. front: {
  17771. height: math.unit(6, "feet"),
  17772. weight: math.unit(160, "lb"),
  17773. name: "Front",
  17774. image: {
  17775. source: "./media/characters/marcus/front.svg",
  17776. extra: 734 / 676,
  17777. bottom: 0.03
  17778. }
  17779. },
  17780. },
  17781. [
  17782. {
  17783. name: "Little",
  17784. height: math.unit(6, "feet")
  17785. },
  17786. {
  17787. name: "Normal",
  17788. height: math.unit(110, "feet"),
  17789. default: true
  17790. },
  17791. {
  17792. name: "Macro",
  17793. height: math.unit(250, "feet")
  17794. },
  17795. {
  17796. name: "Megamacro",
  17797. height: math.unit(1000, "feet")
  17798. },
  17799. ]
  17800. ))
  17801. characterMakers.push(() => makeCharacter(
  17802. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17803. {
  17804. front: {
  17805. height: math.unit(7, "feet"),
  17806. weight: math.unit(275, "lb"),
  17807. name: "Front",
  17808. image: {
  17809. source: "./media/characters/claude-delroute/front.svg",
  17810. extra: 230 / 214,
  17811. bottom: 0.007
  17812. }
  17813. },
  17814. side: {
  17815. height: math.unit(7, "feet"),
  17816. weight: math.unit(275, "lb"),
  17817. name: "Side",
  17818. image: {
  17819. source: "./media/characters/claude-delroute/side.svg",
  17820. extra: 222 / 214,
  17821. bottom: 0.01
  17822. }
  17823. },
  17824. back: {
  17825. height: math.unit(7, "feet"),
  17826. weight: math.unit(275, "lb"),
  17827. name: "Back",
  17828. image: {
  17829. source: "./media/characters/claude-delroute/back.svg",
  17830. extra: 230 / 214,
  17831. bottom: 0.015
  17832. }
  17833. },
  17834. maw: {
  17835. height: math.unit(0.6407, "meters"),
  17836. name: "Maw",
  17837. image: {
  17838. source: "./media/characters/claude-delroute/maw.svg"
  17839. }
  17840. },
  17841. },
  17842. [
  17843. {
  17844. name: "Normal",
  17845. height: math.unit(7, "feet"),
  17846. default: true
  17847. },
  17848. {
  17849. name: "Lorge",
  17850. height: math.unit(20, "feet")
  17851. },
  17852. ]
  17853. ))
  17854. characterMakers.push(() => makeCharacter(
  17855. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17856. {
  17857. front: {
  17858. height: math.unit(8 + 4 / 12, "feet"),
  17859. weight: math.unit(600, "lb"),
  17860. name: "Front",
  17861. image: {
  17862. source: "./media/characters/dragonien/front.svg",
  17863. extra: 100 / 94,
  17864. bottom: 3.3 / 103.3445
  17865. }
  17866. },
  17867. back: {
  17868. height: math.unit(8 + 4 / 12, "feet"),
  17869. weight: math.unit(600, "lb"),
  17870. name: "Back",
  17871. image: {
  17872. source: "./media/characters/dragonien/back.svg",
  17873. extra: 776 / 746,
  17874. bottom: 6.4 / 782.0616
  17875. }
  17876. },
  17877. foot: {
  17878. height: math.unit(1.54, "feet"),
  17879. name: "Foot",
  17880. image: {
  17881. source: "./media/characters/dragonien/foot.svg",
  17882. }
  17883. },
  17884. },
  17885. [
  17886. {
  17887. name: "Normal",
  17888. height: math.unit(8 + 4 / 12, "feet"),
  17889. default: true
  17890. },
  17891. {
  17892. name: "Macro",
  17893. height: math.unit(200, "feet")
  17894. },
  17895. {
  17896. name: "Megamacro",
  17897. height: math.unit(1, "mile")
  17898. },
  17899. {
  17900. name: "Gigamacro",
  17901. height: math.unit(1000, "miles")
  17902. },
  17903. ]
  17904. ))
  17905. characterMakers.push(() => makeCharacter(
  17906. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17907. {
  17908. front: {
  17909. height: math.unit(5 + 2 / 12, "feet"),
  17910. weight: math.unit(110, "lb"),
  17911. name: "Front",
  17912. image: {
  17913. source: "./media/characters/desta/front.svg",
  17914. extra: 767 / 726,
  17915. bottom: 11.7 / 779
  17916. }
  17917. },
  17918. back: {
  17919. height: math.unit(5 + 2 / 12, "feet"),
  17920. weight: math.unit(110, "lb"),
  17921. name: "Back",
  17922. image: {
  17923. source: "./media/characters/desta/back.svg",
  17924. extra: 777 / 728,
  17925. bottom: 6 / 784
  17926. }
  17927. },
  17928. frontAlt: {
  17929. height: math.unit(5 + 2 / 12, "feet"),
  17930. weight: math.unit(110, "lb"),
  17931. name: "Front",
  17932. image: {
  17933. source: "./media/characters/desta/front-alt.svg",
  17934. extra: 1482 / 1417
  17935. }
  17936. },
  17937. side: {
  17938. height: math.unit(5 + 2 / 12, "feet"),
  17939. weight: math.unit(110, "lb"),
  17940. name: "Side",
  17941. image: {
  17942. source: "./media/characters/desta/side.svg",
  17943. extra: 2579 / 2491,
  17944. bottom: 0.053
  17945. }
  17946. },
  17947. },
  17948. [
  17949. {
  17950. name: "Micro",
  17951. height: math.unit(6, "inches")
  17952. },
  17953. {
  17954. name: "Normal",
  17955. height: math.unit(5 + 2 / 12, "feet"),
  17956. default: true
  17957. },
  17958. {
  17959. name: "Macro",
  17960. height: math.unit(62, "feet")
  17961. },
  17962. {
  17963. name: "Megamacro",
  17964. height: math.unit(1800, "feet")
  17965. },
  17966. ]
  17967. ))
  17968. characterMakers.push(() => makeCharacter(
  17969. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17970. {
  17971. front: {
  17972. height: math.unit(10, "feet"),
  17973. weight: math.unit(700, "lb"),
  17974. name: "Front",
  17975. image: {
  17976. source: "./media/characters/storm-alystar/front.svg",
  17977. extra: 2112 / 1898,
  17978. bottom: 0.034
  17979. }
  17980. },
  17981. },
  17982. [
  17983. {
  17984. name: "Micro",
  17985. height: math.unit(3.5, "inches")
  17986. },
  17987. {
  17988. name: "Normal",
  17989. height: math.unit(10, "feet"),
  17990. default: true
  17991. },
  17992. {
  17993. name: "Macro",
  17994. height: math.unit(400, "feet")
  17995. },
  17996. {
  17997. name: "Deific",
  17998. height: math.unit(60, "miles")
  17999. },
  18000. ]
  18001. ))
  18002. characterMakers.push(() => makeCharacter(
  18003. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  18004. {
  18005. front: {
  18006. height: math.unit(2.35, "meters"),
  18007. weight: math.unit(119, "kg"),
  18008. name: "Front",
  18009. image: {
  18010. source: "./media/characters/ilia/front.svg",
  18011. extra: 1285 / 1255,
  18012. bottom: 0.06
  18013. }
  18014. },
  18015. },
  18016. [
  18017. {
  18018. name: "Normal",
  18019. height: math.unit(2.35, "meters")
  18020. },
  18021. {
  18022. name: "Macro",
  18023. height: math.unit(140, "meters"),
  18024. default: true
  18025. },
  18026. {
  18027. name: "Megamacro",
  18028. height: math.unit(100, "miles")
  18029. },
  18030. ]
  18031. ))
  18032. characterMakers.push(() => makeCharacter(
  18033. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18034. {
  18035. front: {
  18036. height: math.unit(6 + 5 / 12, "feet"),
  18037. weight: math.unit(190, "lb"),
  18038. name: "Front",
  18039. image: {
  18040. source: "./media/characters/kingdead/front.svg",
  18041. extra: 1228 / 1177
  18042. }
  18043. },
  18044. },
  18045. [
  18046. {
  18047. name: "Micro",
  18048. height: math.unit(7, "inches")
  18049. },
  18050. {
  18051. name: "Normal",
  18052. height: math.unit(6 + 5 / 12, "feet")
  18053. },
  18054. {
  18055. name: "Macro",
  18056. height: math.unit(150, "feet"),
  18057. default: true
  18058. },
  18059. {
  18060. name: "Megamacro",
  18061. height: math.unit(200, "miles")
  18062. },
  18063. ]
  18064. ))
  18065. characterMakers.push(() => makeCharacter(
  18066. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18067. {
  18068. front: {
  18069. height: math.unit(8, "feet"),
  18070. weight: math.unit(600, "lb"),
  18071. name: "Front",
  18072. image: {
  18073. source: "./media/characters/kyrehx/front.svg",
  18074. extra: 1195 / 1095,
  18075. bottom: 0.034
  18076. }
  18077. },
  18078. },
  18079. [
  18080. {
  18081. name: "Micro",
  18082. height: math.unit(2, "inches")
  18083. },
  18084. {
  18085. name: "Normal",
  18086. height: math.unit(8, "feet"),
  18087. default: true
  18088. },
  18089. {
  18090. name: "Macro",
  18091. height: math.unit(255, "feet")
  18092. },
  18093. ]
  18094. ))
  18095. characterMakers.push(() => makeCharacter(
  18096. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18097. {
  18098. front: {
  18099. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18100. weight: math.unit(184, "lb"),
  18101. name: "Front",
  18102. image: {
  18103. source: "./media/characters/xang/front.svg",
  18104. extra: 845 / 755
  18105. }
  18106. },
  18107. },
  18108. [
  18109. {
  18110. name: "Normal",
  18111. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18112. default: true
  18113. },
  18114. {
  18115. name: "Macro",
  18116. height: math.unit(0.935 * 146, "feet")
  18117. },
  18118. {
  18119. name: "Megamacro",
  18120. height: math.unit(0.935 * 3, "miles")
  18121. },
  18122. ]
  18123. ))
  18124. characterMakers.push(() => makeCharacter(
  18125. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18126. {
  18127. frontDressed: {
  18128. height: math.unit(5 + 7 / 12, "feet"),
  18129. weight: math.unit(140, "lb"),
  18130. name: "Front (Dressed)",
  18131. image: {
  18132. source: "./media/characters/doc-weardno/front-dressed.svg",
  18133. extra: 263 / 234
  18134. }
  18135. },
  18136. backDressed: {
  18137. height: math.unit(5 + 7 / 12, "feet"),
  18138. weight: math.unit(140, "lb"),
  18139. name: "Back (Dressed)",
  18140. image: {
  18141. source: "./media/characters/doc-weardno/back-dressed.svg",
  18142. extra: 266 / 238
  18143. }
  18144. },
  18145. front: {
  18146. height: math.unit(5 + 7 / 12, "feet"),
  18147. weight: math.unit(140, "lb"),
  18148. name: "Front",
  18149. image: {
  18150. source: "./media/characters/doc-weardno/front.svg",
  18151. extra: 254 / 233
  18152. }
  18153. },
  18154. },
  18155. [
  18156. {
  18157. name: "Micro",
  18158. height: math.unit(3, "inches")
  18159. },
  18160. {
  18161. name: "Normal",
  18162. height: math.unit(5 + 7 / 12, "feet"),
  18163. default: true
  18164. },
  18165. {
  18166. name: "Macro",
  18167. height: math.unit(25, "feet")
  18168. },
  18169. {
  18170. name: "Megamacro",
  18171. height: math.unit(2, "miles")
  18172. },
  18173. ]
  18174. ))
  18175. characterMakers.push(() => makeCharacter(
  18176. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18177. {
  18178. front: {
  18179. height: math.unit(6 + 2 / 12, "feet"),
  18180. weight: math.unit(153, "lb"),
  18181. name: "Front",
  18182. image: {
  18183. source: "./media/characters/seth-whilst/front.svg",
  18184. bottom: 0.07
  18185. }
  18186. },
  18187. },
  18188. [
  18189. {
  18190. name: "Micro",
  18191. height: math.unit(5, "inches")
  18192. },
  18193. {
  18194. name: "Normal",
  18195. height: math.unit(6 + 2 / 12, "feet"),
  18196. default: true
  18197. },
  18198. ]
  18199. ))
  18200. characterMakers.push(() => makeCharacter(
  18201. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18202. {
  18203. front: {
  18204. height: math.unit(3, "inches"),
  18205. weight: math.unit(8, "grams"),
  18206. name: "Front",
  18207. image: {
  18208. source: "./media/characters/pocket-jabari/front.svg",
  18209. extra: 1024 / 974,
  18210. bottom: 0.039
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Minimicro",
  18217. height: math.unit(8, "mm")
  18218. },
  18219. {
  18220. name: "Micro",
  18221. height: math.unit(3, "inches"),
  18222. default: true
  18223. },
  18224. {
  18225. name: "Normal",
  18226. height: math.unit(3, "feet")
  18227. },
  18228. ]
  18229. ))
  18230. characterMakers.push(() => makeCharacter(
  18231. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18232. {
  18233. front: {
  18234. height: math.unit(15, "feet"),
  18235. weight: math.unit(3280, "lb"),
  18236. name: "Front",
  18237. image: {
  18238. source: "./media/characters/sapphy/front.svg",
  18239. extra: 671 / 577,
  18240. bottom: 0.085
  18241. }
  18242. },
  18243. back: {
  18244. height: math.unit(15, "feet"),
  18245. weight: math.unit(3280, "lb"),
  18246. name: "Back",
  18247. image: {
  18248. source: "./media/characters/sapphy/back.svg",
  18249. extra: 631 / 607,
  18250. bottom: 0.045
  18251. }
  18252. },
  18253. },
  18254. [
  18255. {
  18256. name: "Normal",
  18257. height: math.unit(15, "feet")
  18258. },
  18259. {
  18260. name: "Casual Macro",
  18261. height: math.unit(120, "feet")
  18262. },
  18263. {
  18264. name: "Macro",
  18265. height: math.unit(2150, "feet"),
  18266. default: true
  18267. },
  18268. {
  18269. name: "Megamacro",
  18270. height: math.unit(8, "miles")
  18271. },
  18272. {
  18273. name: "Galaxy Mom",
  18274. height: math.unit(6, "megalightyears")
  18275. },
  18276. ]
  18277. ))
  18278. characterMakers.push(() => makeCharacter(
  18279. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18280. {
  18281. front: {
  18282. height: math.unit(6, "feet"),
  18283. weight: math.unit(170, "lb"),
  18284. name: "Front",
  18285. image: {
  18286. source: "./media/characters/kiro/front.svg",
  18287. extra: 1064 / 1012,
  18288. bottom: 0.052
  18289. }
  18290. },
  18291. },
  18292. [
  18293. {
  18294. name: "Micro",
  18295. height: math.unit(6, "inches")
  18296. },
  18297. {
  18298. name: "Normal",
  18299. height: math.unit(6, "feet"),
  18300. default: true
  18301. },
  18302. {
  18303. name: "Macro",
  18304. height: math.unit(72, "feet")
  18305. },
  18306. ]
  18307. ))
  18308. characterMakers.push(() => makeCharacter(
  18309. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18310. {
  18311. front: {
  18312. height: math.unit(5 + 9 / 12, "feet"),
  18313. weight: math.unit(175, "lb"),
  18314. name: "Front",
  18315. image: {
  18316. source: "./media/characters/irishfox/front.svg",
  18317. extra: 1912 / 1680,
  18318. bottom: 0.02
  18319. }
  18320. },
  18321. },
  18322. [
  18323. {
  18324. name: "Nano",
  18325. height: math.unit(1, "mm")
  18326. },
  18327. {
  18328. name: "Micro",
  18329. height: math.unit(2, "inches")
  18330. },
  18331. {
  18332. name: "Normal",
  18333. height: math.unit(5 + 9 / 12, "feet"),
  18334. default: true
  18335. },
  18336. {
  18337. name: "Macro",
  18338. height: math.unit(45, "feet")
  18339. },
  18340. ]
  18341. ))
  18342. characterMakers.push(() => makeCharacter(
  18343. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18344. {
  18345. front: {
  18346. height: math.unit(6 + 1 / 12, "feet"),
  18347. weight: math.unit(75, "lb"),
  18348. name: "Front",
  18349. image: {
  18350. source: "./media/characters/aronai-sieyes/front.svg",
  18351. extra: 1556 / 1480,
  18352. bottom: 0.015
  18353. }
  18354. },
  18355. side: {
  18356. height: math.unit(6 + 1 / 12, "feet"),
  18357. weight: math.unit(75, "lb"),
  18358. name: "Side",
  18359. image: {
  18360. source: "./media/characters/aronai-sieyes/side.svg",
  18361. extra: 1433 / 1390,
  18362. bottom: 0.0393
  18363. }
  18364. },
  18365. back: {
  18366. height: math.unit(6 + 1 / 12, "feet"),
  18367. weight: math.unit(75, "lb"),
  18368. name: "Back",
  18369. image: {
  18370. source: "./media/characters/aronai-sieyes/back.svg",
  18371. extra: 1544 / 1494,
  18372. bottom: 0.02
  18373. }
  18374. },
  18375. frontClothed: {
  18376. height: math.unit(6 + 1 / 12, "feet"),
  18377. weight: math.unit(75, "lb"),
  18378. name: "Front (Clothed)",
  18379. image: {
  18380. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18381. extra: 1582 / 1527
  18382. }
  18383. },
  18384. feral: {
  18385. height: math.unit(18, "feet"),
  18386. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18387. name: "Feral",
  18388. image: {
  18389. source: "./media/characters/aronai-sieyes/feral.svg",
  18390. extra: 1530 / 1240,
  18391. bottom: 0.035
  18392. }
  18393. },
  18394. },
  18395. [
  18396. {
  18397. name: "Micro",
  18398. height: math.unit(2, "inches")
  18399. },
  18400. {
  18401. name: "Normal",
  18402. height: math.unit(6 + 1 / 12, "feet"),
  18403. default: true
  18404. }
  18405. ]
  18406. ))
  18407. characterMakers.push(() => makeCharacter(
  18408. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18409. {
  18410. front: {
  18411. height: math.unit(12, "feet"),
  18412. weight: math.unit(410, "kg"),
  18413. name: "Front",
  18414. image: {
  18415. source: "./media/characters/xuna/front.svg",
  18416. extra: 2184 / 1980
  18417. }
  18418. },
  18419. side: {
  18420. height: math.unit(12, "feet"),
  18421. weight: math.unit(410, "kg"),
  18422. name: "Side",
  18423. image: {
  18424. source: "./media/characters/xuna/side.svg",
  18425. extra: 2184 / 1980
  18426. }
  18427. },
  18428. back: {
  18429. height: math.unit(12, "feet"),
  18430. weight: math.unit(410, "kg"),
  18431. name: "Back",
  18432. image: {
  18433. source: "./media/characters/xuna/back.svg",
  18434. extra: 2184 / 1980
  18435. }
  18436. },
  18437. },
  18438. [
  18439. {
  18440. name: "Nano glow",
  18441. height: math.unit(10, "nm")
  18442. },
  18443. {
  18444. name: "Micro floof",
  18445. height: math.unit(0.3, "m")
  18446. },
  18447. {
  18448. name: "Huggable softy boi",
  18449. height: math.unit(3.6576, "m"),
  18450. default: true
  18451. },
  18452. {
  18453. name: "Admirable floof",
  18454. height: math.unit(80, "meters")
  18455. },
  18456. {
  18457. name: "Gentle macro",
  18458. height: math.unit(300, "meters")
  18459. },
  18460. {
  18461. name: "Very careful floof",
  18462. height: math.unit(3200, "meters")
  18463. },
  18464. {
  18465. name: "The mega floof",
  18466. height: math.unit(36000, "meters")
  18467. },
  18468. {
  18469. name: "Giga-fur-Wicker",
  18470. height: math.unit(4800000, "meters")
  18471. },
  18472. {
  18473. name: "Licky world",
  18474. height: math.unit(20000000, "meters")
  18475. },
  18476. {
  18477. name: "Floofy cyan sun",
  18478. height: math.unit(1500000000, "meters")
  18479. },
  18480. {
  18481. name: "Milky Wicker",
  18482. height: math.unit(1000000000000000000000, "meters")
  18483. },
  18484. {
  18485. name: "The observing Wicker",
  18486. height: math.unit(999999999999999999999999999, "meters")
  18487. },
  18488. ]
  18489. ))
  18490. characterMakers.push(() => makeCharacter(
  18491. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18492. {
  18493. front: {
  18494. height: math.unit(5 + 9 / 12, "feet"),
  18495. weight: math.unit(150, "lb"),
  18496. name: "Front",
  18497. image: {
  18498. source: "./media/characters/arokha-sieyes/front.svg",
  18499. extra: 1425 / 1284,
  18500. bottom: 0.05
  18501. }
  18502. },
  18503. },
  18504. [
  18505. {
  18506. name: "Normal",
  18507. height: math.unit(5 + 9 / 12, "feet")
  18508. },
  18509. {
  18510. name: "Macro",
  18511. height: math.unit(30, "meters"),
  18512. default: true
  18513. },
  18514. ]
  18515. ))
  18516. characterMakers.push(() => makeCharacter(
  18517. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18518. {
  18519. front: {
  18520. height: math.unit(6, "feet"),
  18521. weight: math.unit(180, "lb"),
  18522. name: "Front",
  18523. image: {
  18524. source: "./media/characters/arokh-sieyes/front.svg",
  18525. extra: 1830 / 1769,
  18526. bottom: 0.01
  18527. }
  18528. },
  18529. },
  18530. [
  18531. {
  18532. name: "Normal",
  18533. height: math.unit(6, "feet")
  18534. },
  18535. {
  18536. name: "Macro",
  18537. height: math.unit(30, "meters"),
  18538. default: true
  18539. },
  18540. ]
  18541. ))
  18542. characterMakers.push(() => makeCharacter(
  18543. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18544. {
  18545. side: {
  18546. height: math.unit(13 + 1 / 12, "feet"),
  18547. weight: math.unit(8.5, "tonnes"),
  18548. name: "Side",
  18549. image: {
  18550. source: "./media/characters/goldeneye/side.svg",
  18551. extra: 1182 / 778,
  18552. bottom: 0.067
  18553. }
  18554. },
  18555. paw: {
  18556. height: math.unit(3.4, "feet"),
  18557. name: "Paw",
  18558. image: {
  18559. source: "./media/characters/goldeneye/paw.svg"
  18560. }
  18561. },
  18562. },
  18563. [
  18564. {
  18565. name: "Normal",
  18566. height: math.unit(13 + 1 / 12, "feet"),
  18567. default: true
  18568. },
  18569. ]
  18570. ))
  18571. characterMakers.push(() => makeCharacter(
  18572. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18573. {
  18574. front: {
  18575. height: math.unit(6 + 1 / 12, "feet"),
  18576. weight: math.unit(210, "lb"),
  18577. name: "Front",
  18578. image: {
  18579. source: "./media/characters/leonardo-lycheborne/front.svg",
  18580. extra: 390 / 365,
  18581. bottom: 0.032
  18582. }
  18583. },
  18584. side: {
  18585. height: math.unit(6 + 1 / 12, "feet"),
  18586. weight: math.unit(210, "lb"),
  18587. name: "Side",
  18588. image: {
  18589. source: "./media/characters/leonardo-lycheborne/side.svg",
  18590. extra: 390 / 365,
  18591. bottom: 0.005
  18592. }
  18593. },
  18594. back: {
  18595. height: math.unit(6 + 1 / 12, "feet"),
  18596. weight: math.unit(210, "lb"),
  18597. name: "Back",
  18598. image: {
  18599. source: "./media/characters/leonardo-lycheborne/back.svg",
  18600. extra: 392 / 366,
  18601. bottom: 0.01
  18602. }
  18603. },
  18604. hand: {
  18605. height: math.unit(1.08, "feet"),
  18606. name: "Hand",
  18607. image: {
  18608. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18609. }
  18610. },
  18611. foot: {
  18612. height: math.unit(1.32, "feet"),
  18613. name: "Foot",
  18614. image: {
  18615. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18616. }
  18617. },
  18618. were: {
  18619. height: math.unit(20, "feet"),
  18620. weight: math.unit(7800, "lb"),
  18621. name: "Were",
  18622. image: {
  18623. source: "./media/characters/leonardo-lycheborne/were.svg",
  18624. extra: 308 / 294,
  18625. bottom: 0.048
  18626. }
  18627. },
  18628. feral: {
  18629. height: math.unit(7.5, "feet"),
  18630. weight: math.unit(600, "lb"),
  18631. name: "Feral",
  18632. image: {
  18633. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18634. extra: 210 / 186,
  18635. bottom: 0.108
  18636. }
  18637. },
  18638. taur: {
  18639. height: math.unit(11, "feet"),
  18640. weight: math.unit(3300, "lb"),
  18641. name: "Taur",
  18642. image: {
  18643. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18644. extra: 320 / 303,
  18645. bottom: 0.025
  18646. }
  18647. },
  18648. barghest: {
  18649. height: math.unit(11, "feet"),
  18650. weight: math.unit(1300, "lb"),
  18651. name: "Barghest",
  18652. image: {
  18653. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18654. extra: 323 / 302,
  18655. bottom: 0.027
  18656. }
  18657. },
  18658. dick: {
  18659. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18660. name: "Dick",
  18661. image: {
  18662. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18663. }
  18664. },
  18665. dickWere: {
  18666. height: math.unit((20) / 3.8, "feet"),
  18667. name: "Dick (Were)",
  18668. image: {
  18669. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(6 + 1 / 12, "feet"),
  18677. default: true
  18678. },
  18679. ]
  18680. ))
  18681. characterMakers.push(() => makeCharacter(
  18682. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18683. {
  18684. front: {
  18685. height: math.unit(10, "feet"),
  18686. weight: math.unit(350, "lb"),
  18687. name: "Front",
  18688. image: {
  18689. source: "./media/characters/jet/front.svg",
  18690. extra: 2050 / 1980,
  18691. bottom: 0.013
  18692. }
  18693. },
  18694. back: {
  18695. height: math.unit(10, "feet"),
  18696. weight: math.unit(350, "lb"),
  18697. name: "Back",
  18698. image: {
  18699. source: "./media/characters/jet/back.svg",
  18700. extra: 2050 / 1980,
  18701. bottom: 0.013
  18702. }
  18703. },
  18704. },
  18705. [
  18706. {
  18707. name: "Micro",
  18708. height: math.unit(6, "inches")
  18709. },
  18710. {
  18711. name: "Normal",
  18712. height: math.unit(10, "feet"),
  18713. default: true
  18714. },
  18715. {
  18716. name: "Macro",
  18717. height: math.unit(100, "feet")
  18718. },
  18719. ]
  18720. ))
  18721. characterMakers.push(() => makeCharacter(
  18722. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18723. {
  18724. front: {
  18725. height: math.unit(15, "feet"),
  18726. weight: math.unit(2800, "lb"),
  18727. name: "Front",
  18728. image: {
  18729. source: "./media/characters/tanarath/front.svg",
  18730. extra: 2392 / 2220,
  18731. bottom: 0.03
  18732. }
  18733. },
  18734. back: {
  18735. height: math.unit(15, "feet"),
  18736. weight: math.unit(2800, "lb"),
  18737. name: "Back",
  18738. image: {
  18739. source: "./media/characters/tanarath/back.svg",
  18740. extra: 2392 / 2220,
  18741. bottom: 0.03
  18742. }
  18743. },
  18744. },
  18745. [
  18746. {
  18747. name: "Normal",
  18748. height: math.unit(15, "feet"),
  18749. default: true
  18750. },
  18751. ]
  18752. ))
  18753. characterMakers.push(() => makeCharacter(
  18754. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18755. {
  18756. front: {
  18757. height: math.unit(7 + 1 / 12, "feet"),
  18758. weight: math.unit(175, "lb"),
  18759. name: "Front",
  18760. image: {
  18761. source: "./media/characters/patty-cattybatty/front.svg",
  18762. extra: 908 / 874,
  18763. bottom: 0.025
  18764. }
  18765. },
  18766. },
  18767. [
  18768. {
  18769. name: "Micro",
  18770. height: math.unit(1, "inch")
  18771. },
  18772. {
  18773. name: "Normal",
  18774. height: math.unit(7 + 1 / 12, "feet")
  18775. },
  18776. {
  18777. name: "Mini Macro",
  18778. height: math.unit(155, "feet")
  18779. },
  18780. {
  18781. name: "Macro",
  18782. height: math.unit(1077, "feet")
  18783. },
  18784. {
  18785. name: "Mega Macro",
  18786. height: math.unit(47650, "feet"),
  18787. default: true
  18788. },
  18789. {
  18790. name: "Giga Macro",
  18791. height: math.unit(440, "miles")
  18792. },
  18793. {
  18794. name: "Tera Macro",
  18795. height: math.unit(8700, "miles")
  18796. },
  18797. {
  18798. name: "Planetary Macro",
  18799. height: math.unit(32700, "miles")
  18800. },
  18801. {
  18802. name: "Solar Macro",
  18803. height: math.unit(550000, "miles")
  18804. },
  18805. {
  18806. name: "Celestial Macro",
  18807. height: math.unit(2.5, "AU")
  18808. },
  18809. ]
  18810. ))
  18811. characterMakers.push(() => makeCharacter(
  18812. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18813. {
  18814. front: {
  18815. height: math.unit(4 + 5 / 12, "feet"),
  18816. weight: math.unit(90, "lb"),
  18817. name: "Front",
  18818. image: {
  18819. source: "./media/characters/cappu/front.svg",
  18820. extra: 1247 / 1152,
  18821. bottom: 0.012
  18822. }
  18823. },
  18824. },
  18825. [
  18826. {
  18827. name: "Normal",
  18828. height: math.unit(4 + 5 / 12, "feet"),
  18829. default: true
  18830. },
  18831. ]
  18832. ))
  18833. characterMakers.push(() => makeCharacter(
  18834. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18835. {
  18836. frontDressed: {
  18837. height: math.unit(70, "cm"),
  18838. weight: math.unit(6, "kg"),
  18839. name: "Front (Dressed)",
  18840. image: {
  18841. source: "./media/characters/sebi/front-dressed.svg",
  18842. extra: 713.5 / 686.5,
  18843. bottom: 0.003
  18844. }
  18845. },
  18846. front: {
  18847. height: math.unit(70, "cm"),
  18848. weight: math.unit(5, "kg"),
  18849. name: "Front",
  18850. image: {
  18851. source: "./media/characters/sebi/front.svg",
  18852. extra: 713.5 / 686.5,
  18853. bottom: 0.003
  18854. }
  18855. }
  18856. },
  18857. [
  18858. {
  18859. name: "Normal",
  18860. height: math.unit(70, "cm"),
  18861. default: true
  18862. },
  18863. {
  18864. name: "Macro",
  18865. height: math.unit(8, "meters")
  18866. },
  18867. ]
  18868. ))
  18869. characterMakers.push(() => makeCharacter(
  18870. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18871. {
  18872. front: {
  18873. height: math.unit(6, "feet"),
  18874. weight: math.unit(150, "lb"),
  18875. name: "Front",
  18876. image: {
  18877. source: "./media/characters/typhek/front.svg",
  18878. extra: 1948 / 1929,
  18879. bottom: 0.025
  18880. }
  18881. },
  18882. side: {
  18883. height: math.unit(6, "feet"),
  18884. weight: math.unit(150, "lb"),
  18885. name: "Side",
  18886. image: {
  18887. source: "./media/characters/typhek/side.svg",
  18888. extra: 2034 / 2010,
  18889. bottom: 0.003
  18890. }
  18891. },
  18892. back: {
  18893. height: math.unit(6, "feet"),
  18894. weight: math.unit(150, "lb"),
  18895. name: "Back",
  18896. image: {
  18897. source: "./media/characters/typhek/back.svg",
  18898. extra: 2005 / 1978,
  18899. bottom: 0.004
  18900. }
  18901. },
  18902. palm: {
  18903. height: math.unit(1.2, "feet"),
  18904. name: "Palm",
  18905. image: {
  18906. source: "./media/characters/typhek/palm.svg"
  18907. }
  18908. },
  18909. fist: {
  18910. height: math.unit(1.1, "feet"),
  18911. name: "Fist",
  18912. image: {
  18913. source: "./media/characters/typhek/fist.svg"
  18914. }
  18915. },
  18916. foot: {
  18917. height: math.unit(1.57, "feet"),
  18918. name: "Foot",
  18919. image: {
  18920. source: "./media/characters/typhek/foot.svg"
  18921. }
  18922. },
  18923. sole: {
  18924. height: math.unit(2.05, "feet"),
  18925. name: "Sole",
  18926. image: {
  18927. source: "./media/characters/typhek/sole.svg"
  18928. }
  18929. },
  18930. },
  18931. [
  18932. {
  18933. name: "Macro",
  18934. height: math.unit(40, "stories"),
  18935. default: true
  18936. },
  18937. {
  18938. name: "Megamacro",
  18939. height: math.unit(1, "mile")
  18940. },
  18941. {
  18942. name: "Gigamacro",
  18943. height: math.unit(4000, "solarradii")
  18944. },
  18945. {
  18946. name: "Universal",
  18947. height: math.unit(1.1, "universes")
  18948. }
  18949. ]
  18950. ))
  18951. characterMakers.push(() => makeCharacter(
  18952. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18953. {
  18954. side: {
  18955. height: math.unit(5 + 7 / 12, "feet"),
  18956. weight: math.unit(150, "lb"),
  18957. name: "Side",
  18958. image: {
  18959. source: "./media/characters/kassy/side.svg",
  18960. extra: 1280 / 1225,
  18961. bottom: 0.002
  18962. }
  18963. },
  18964. front: {
  18965. height: math.unit(5 + 7 / 12, "feet"),
  18966. weight: math.unit(150, "lb"),
  18967. name: "Front",
  18968. image: {
  18969. source: "./media/characters/kassy/front.svg",
  18970. extra: 1280 / 1225,
  18971. bottom: 0.025
  18972. }
  18973. },
  18974. back: {
  18975. height: math.unit(5 + 7 / 12, "feet"),
  18976. weight: math.unit(150, "lb"),
  18977. name: "Back",
  18978. image: {
  18979. source: "./media/characters/kassy/back.svg",
  18980. extra: 1280 / 1225,
  18981. bottom: 0.002
  18982. }
  18983. },
  18984. foot: {
  18985. height: math.unit(1.266, "feet"),
  18986. name: "Foot",
  18987. image: {
  18988. source: "./media/characters/kassy/foot.svg"
  18989. }
  18990. },
  18991. },
  18992. [
  18993. {
  18994. name: "Normal",
  18995. height: math.unit(5 + 7 / 12, "feet")
  18996. },
  18997. {
  18998. name: "Macro",
  18999. height: math.unit(137, "feet"),
  19000. default: true
  19001. },
  19002. {
  19003. name: "Megamacro",
  19004. height: math.unit(1, "mile")
  19005. },
  19006. ]
  19007. ))
  19008. characterMakers.push(() => makeCharacter(
  19009. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19010. {
  19011. front: {
  19012. height: math.unit(6 + 1 / 12, "feet"),
  19013. weight: math.unit(200, "lb"),
  19014. name: "Front",
  19015. image: {
  19016. source: "./media/characters/neil/front.svg",
  19017. extra: 1326 / 1250,
  19018. bottom: 0.023
  19019. }
  19020. },
  19021. },
  19022. [
  19023. {
  19024. name: "Normal",
  19025. height: math.unit(6 + 1 / 12, "feet"),
  19026. default: true
  19027. },
  19028. {
  19029. name: "Macro",
  19030. height: math.unit(200, "feet")
  19031. },
  19032. ]
  19033. ))
  19034. characterMakers.push(() => makeCharacter(
  19035. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19036. {
  19037. front: {
  19038. height: math.unit(5 + 9 / 12, "feet"),
  19039. weight: math.unit(190, "lb"),
  19040. name: "Front",
  19041. image: {
  19042. source: "./media/characters/atticus/front.svg",
  19043. extra: 2934 / 2785,
  19044. bottom: 0.025
  19045. }
  19046. },
  19047. },
  19048. [
  19049. {
  19050. name: "Normal",
  19051. height: math.unit(5 + 9 / 12, "feet"),
  19052. default: true
  19053. },
  19054. {
  19055. name: "Macro",
  19056. height: math.unit(180, "feet")
  19057. },
  19058. ]
  19059. ))
  19060. characterMakers.push(() => makeCharacter(
  19061. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19062. {
  19063. side: {
  19064. height: math.unit(9, "feet"),
  19065. weight: math.unit(650, "lb"),
  19066. name: "Side",
  19067. image: {
  19068. source: "./media/characters/milo/side.svg",
  19069. extra: 2644 / 2310,
  19070. bottom: 0.032
  19071. }
  19072. },
  19073. },
  19074. [
  19075. {
  19076. name: "Normal",
  19077. height: math.unit(9, "feet"),
  19078. default: true
  19079. },
  19080. {
  19081. name: "Macro",
  19082. height: math.unit(300, "feet")
  19083. },
  19084. ]
  19085. ))
  19086. characterMakers.push(() => makeCharacter(
  19087. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19088. {
  19089. side: {
  19090. height: math.unit(8, "meters"),
  19091. weight: math.unit(90000, "kg"),
  19092. name: "Side",
  19093. image: {
  19094. source: "./media/characters/ijzer/side.svg",
  19095. extra: 2756 / 1600,
  19096. bottom: 0.01
  19097. }
  19098. },
  19099. },
  19100. [
  19101. {
  19102. name: "Small",
  19103. height: math.unit(3, "meters")
  19104. },
  19105. {
  19106. name: "Normal",
  19107. height: math.unit(8, "meters"),
  19108. default: true
  19109. },
  19110. {
  19111. name: "Normal+",
  19112. height: math.unit(10, "meters")
  19113. },
  19114. {
  19115. name: "Bigger",
  19116. height: math.unit(24, "meters")
  19117. },
  19118. {
  19119. name: "Huge",
  19120. height: math.unit(80, "meters")
  19121. },
  19122. ]
  19123. ))
  19124. characterMakers.push(() => makeCharacter(
  19125. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19126. {
  19127. front: {
  19128. height: math.unit(6 + 2 / 12, "feet"),
  19129. weight: math.unit(153, "lb"),
  19130. name: "Front",
  19131. image: {
  19132. source: "./media/characters/luca-cervicum/front.svg",
  19133. extra: 370 / 327,
  19134. bottom: 0.015
  19135. }
  19136. },
  19137. back: {
  19138. height: math.unit(6 + 2 / 12, "feet"),
  19139. weight: math.unit(153, "lb"),
  19140. name: "Back",
  19141. image: {
  19142. source: "./media/characters/luca-cervicum/back.svg",
  19143. extra: 367 / 333,
  19144. bottom: 0.005
  19145. }
  19146. },
  19147. frontGear: {
  19148. height: math.unit(6 + 2 / 12, "feet"),
  19149. weight: math.unit(173, "lb"),
  19150. name: "Front (Gear)",
  19151. image: {
  19152. source: "./media/characters/luca-cervicum/front-gear.svg",
  19153. extra: 377 / 333,
  19154. bottom: 0.006
  19155. }
  19156. },
  19157. },
  19158. [
  19159. {
  19160. name: "Normal",
  19161. height: math.unit(6 + 2 / 12, "feet"),
  19162. default: true
  19163. },
  19164. ]
  19165. ))
  19166. characterMakers.push(() => makeCharacter(
  19167. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19168. {
  19169. front: {
  19170. height: math.unit(6 + 1 / 12, "feet"),
  19171. weight: math.unit(304, "lb"),
  19172. name: "Front",
  19173. image: {
  19174. source: "./media/characters/oliver/front.svg",
  19175. extra: 157 / 143,
  19176. bottom: 0.08
  19177. }
  19178. },
  19179. },
  19180. [
  19181. {
  19182. name: "Normal",
  19183. height: math.unit(6 + 1 / 12, "feet"),
  19184. default: true
  19185. },
  19186. ]
  19187. ))
  19188. characterMakers.push(() => makeCharacter(
  19189. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19190. {
  19191. front: {
  19192. height: math.unit(5 + 7 / 12, "feet"),
  19193. weight: math.unit(140, "lb"),
  19194. name: "Front",
  19195. image: {
  19196. source: "./media/characters/shane/front.svg",
  19197. extra: 304 / 289,
  19198. bottom: 0.005
  19199. }
  19200. },
  19201. },
  19202. [
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(5 + 7 / 12, "feet"),
  19206. default: true
  19207. },
  19208. ]
  19209. ))
  19210. characterMakers.push(() => makeCharacter(
  19211. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19212. {
  19213. front: {
  19214. height: math.unit(5 + 9 / 12, "feet"),
  19215. weight: math.unit(178, "lb"),
  19216. name: "Front",
  19217. image: {
  19218. source: "./media/characters/shin/front.svg",
  19219. extra: 159 / 151,
  19220. bottom: 0.015
  19221. }
  19222. },
  19223. },
  19224. [
  19225. {
  19226. name: "Normal",
  19227. height: math.unit(5 + 9 / 12, "feet"),
  19228. default: true
  19229. },
  19230. ]
  19231. ))
  19232. characterMakers.push(() => makeCharacter(
  19233. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19234. {
  19235. front: {
  19236. height: math.unit(5 + 10 / 12, "feet"),
  19237. weight: math.unit(168, "lb"),
  19238. name: "Front",
  19239. image: {
  19240. source: "./media/characters/xerxes/front.svg",
  19241. extra: 282 / 260,
  19242. bottom: 0.045
  19243. }
  19244. },
  19245. },
  19246. [
  19247. {
  19248. name: "Normal",
  19249. height: math.unit(5 + 10 / 12, "feet"),
  19250. default: true
  19251. },
  19252. ]
  19253. ))
  19254. characterMakers.push(() => makeCharacter(
  19255. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19256. {
  19257. front: {
  19258. height: math.unit(6 + 7 / 12, "feet"),
  19259. weight: math.unit(208, "lb"),
  19260. name: "Front",
  19261. image: {
  19262. source: "./media/characters/chaska/front.svg",
  19263. extra: 332 / 319,
  19264. bottom: 0.015
  19265. }
  19266. },
  19267. },
  19268. [
  19269. {
  19270. name: "Normal",
  19271. height: math.unit(6 + 7 / 12, "feet"),
  19272. default: true
  19273. },
  19274. ]
  19275. ))
  19276. characterMakers.push(() => makeCharacter(
  19277. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19278. {
  19279. front: {
  19280. height: math.unit(5 + 8 / 12, "feet"),
  19281. weight: math.unit(208, "lb"),
  19282. name: "Front",
  19283. image: {
  19284. source: "./media/characters/enuk/front.svg",
  19285. extra: 437 / 406,
  19286. bottom: 0.02
  19287. }
  19288. },
  19289. },
  19290. [
  19291. {
  19292. name: "Normal",
  19293. height: math.unit(5 + 8 / 12, "feet"),
  19294. default: true
  19295. },
  19296. ]
  19297. ))
  19298. characterMakers.push(() => makeCharacter(
  19299. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19300. {
  19301. front: {
  19302. height: math.unit(5 + 10 / 12, "feet"),
  19303. weight: math.unit(252, "lb"),
  19304. name: "Front",
  19305. image: {
  19306. source: "./media/characters/bruun/front.svg",
  19307. extra: 197 / 187,
  19308. bottom: 0.012
  19309. }
  19310. },
  19311. },
  19312. [
  19313. {
  19314. name: "Normal",
  19315. height: math.unit(5 + 10 / 12, "feet"),
  19316. default: true
  19317. },
  19318. ]
  19319. ))
  19320. characterMakers.push(() => makeCharacter(
  19321. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19322. {
  19323. front: {
  19324. height: math.unit(6 + 10 / 12, "feet"),
  19325. weight: math.unit(255, "lb"),
  19326. name: "Front",
  19327. image: {
  19328. source: "./media/characters/alexeev/front.svg",
  19329. extra: 213 / 200,
  19330. bottom: 0.05
  19331. }
  19332. },
  19333. },
  19334. [
  19335. {
  19336. name: "Normal",
  19337. height: math.unit(6 + 10 / 12, "feet"),
  19338. default: true
  19339. },
  19340. ]
  19341. ))
  19342. characterMakers.push(() => makeCharacter(
  19343. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19344. {
  19345. front: {
  19346. height: math.unit(2 + 8 / 12, "feet"),
  19347. weight: math.unit(22, "lb"),
  19348. name: "Front",
  19349. image: {
  19350. source: "./media/characters/evelyn/front.svg",
  19351. extra: 208 / 180
  19352. }
  19353. },
  19354. },
  19355. [
  19356. {
  19357. name: "Normal",
  19358. height: math.unit(2 + 8 / 12, "feet"),
  19359. default: true
  19360. },
  19361. ]
  19362. ))
  19363. characterMakers.push(() => makeCharacter(
  19364. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19365. {
  19366. front: {
  19367. height: math.unit(5 + 9 / 12, "feet"),
  19368. weight: math.unit(139, "lb"),
  19369. name: "Front",
  19370. image: {
  19371. source: "./media/characters/inca/front.svg",
  19372. extra: 294 / 291,
  19373. bottom: 0.03
  19374. }
  19375. },
  19376. },
  19377. [
  19378. {
  19379. name: "Normal",
  19380. height: math.unit(5 + 9 / 12, "feet"),
  19381. default: true
  19382. },
  19383. ]
  19384. ))
  19385. characterMakers.push(() => makeCharacter(
  19386. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19387. {
  19388. front: {
  19389. height: math.unit(5 + 1 / 12, "feet"),
  19390. weight: math.unit(84, "lb"),
  19391. name: "Front",
  19392. image: {
  19393. source: "./media/characters/magdalene/front.svg",
  19394. extra: 293 / 273
  19395. }
  19396. },
  19397. },
  19398. [
  19399. {
  19400. name: "Normal",
  19401. height: math.unit(5 + 1 / 12, "feet"),
  19402. default: true
  19403. },
  19404. ]
  19405. ))
  19406. characterMakers.push(() => makeCharacter(
  19407. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19408. {
  19409. front: {
  19410. height: math.unit(6 + 3 / 12, "feet"),
  19411. weight: math.unit(185, "lb"),
  19412. name: "Front",
  19413. image: {
  19414. source: "./media/characters/mera/front.svg",
  19415. extra: 291 / 277,
  19416. bottom: 0.03
  19417. }
  19418. },
  19419. },
  19420. [
  19421. {
  19422. name: "Normal",
  19423. height: math.unit(6 + 3 / 12, "feet"),
  19424. default: true
  19425. },
  19426. ]
  19427. ))
  19428. characterMakers.push(() => makeCharacter(
  19429. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19430. {
  19431. front: {
  19432. height: math.unit(6 + 7 / 12, "feet"),
  19433. weight: math.unit(160, "lb"),
  19434. name: "Front",
  19435. image: {
  19436. source: "./media/characters/ceres/front.svg",
  19437. extra: 1023 / 950,
  19438. bottom: 0.027
  19439. }
  19440. },
  19441. back: {
  19442. height: math.unit(6 + 7 / 12, "feet"),
  19443. weight: math.unit(160, "lb"),
  19444. name: "Back",
  19445. image: {
  19446. source: "./media/characters/ceres/back.svg",
  19447. extra: 1023 / 950
  19448. }
  19449. },
  19450. },
  19451. [
  19452. {
  19453. name: "Normal",
  19454. height: math.unit(6 + 7 / 12, "feet"),
  19455. default: true
  19456. },
  19457. ]
  19458. ))
  19459. characterMakers.push(() => makeCharacter(
  19460. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19461. {
  19462. front: {
  19463. height: math.unit(5 + 10 / 12, "feet"),
  19464. weight: math.unit(150, "lb"),
  19465. name: "Front",
  19466. image: {
  19467. source: "./media/characters/kris/front.svg",
  19468. extra: 885 / 803,
  19469. bottom: 0.03
  19470. }
  19471. },
  19472. },
  19473. [
  19474. {
  19475. name: "Normal",
  19476. height: math.unit(5 + 10 / 12, "feet"),
  19477. default: true
  19478. },
  19479. ]
  19480. ))
  19481. characterMakers.push(() => makeCharacter(
  19482. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19483. {
  19484. front: {
  19485. height: math.unit(7, "feet"),
  19486. weight: math.unit(120, "kg"),
  19487. name: "Front",
  19488. image: {
  19489. source: "./media/characters/taluthus/front.svg",
  19490. extra: 903 / 833,
  19491. bottom: 0.015
  19492. }
  19493. },
  19494. },
  19495. [
  19496. {
  19497. name: "Normal",
  19498. height: math.unit(7, "feet"),
  19499. default: true
  19500. },
  19501. {
  19502. name: "Macro",
  19503. height: math.unit(300, "feet")
  19504. },
  19505. ]
  19506. ))
  19507. characterMakers.push(() => makeCharacter(
  19508. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19509. {
  19510. front: {
  19511. height: math.unit(5 + 9 / 12, "feet"),
  19512. weight: math.unit(145, "lb"),
  19513. name: "Front",
  19514. image: {
  19515. source: "./media/characters/dawn/front.svg",
  19516. extra: 2094 / 2016,
  19517. bottom: 0.025
  19518. }
  19519. },
  19520. back: {
  19521. height: math.unit(5 + 9 / 12, "feet"),
  19522. weight: math.unit(160, "lb"),
  19523. name: "Back",
  19524. image: {
  19525. source: "./media/characters/dawn/back.svg",
  19526. extra: 2112 / 2080,
  19527. bottom: 0.005
  19528. }
  19529. },
  19530. },
  19531. [
  19532. {
  19533. name: "Normal",
  19534. height: math.unit(6 + 7 / 12, "feet"),
  19535. default: true
  19536. },
  19537. ]
  19538. ))
  19539. characterMakers.push(() => makeCharacter(
  19540. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19541. {
  19542. anthro: {
  19543. height: math.unit(8 + 3 / 12, "feet"),
  19544. weight: math.unit(450, "lb"),
  19545. name: "Anthro",
  19546. image: {
  19547. source: "./media/characters/arador/anthro.svg",
  19548. extra: 1835 / 1718,
  19549. bottom: 0.025
  19550. }
  19551. },
  19552. feral: {
  19553. height: math.unit(4, "feet"),
  19554. weight: math.unit(200, "lb"),
  19555. name: "Feral",
  19556. image: {
  19557. source: "./media/characters/arador/feral.svg",
  19558. extra: 1683 / 1514,
  19559. bottom: 0.07
  19560. }
  19561. },
  19562. },
  19563. [
  19564. {
  19565. name: "Normal",
  19566. height: math.unit(8 + 3 / 12, "feet")
  19567. },
  19568. {
  19569. name: "Macro",
  19570. height: math.unit(82.5, "feet"),
  19571. default: true
  19572. },
  19573. ]
  19574. ))
  19575. characterMakers.push(() => makeCharacter(
  19576. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19577. {
  19578. front: {
  19579. height: math.unit(5 + 10 / 12, "feet"),
  19580. weight: math.unit(125, "lb"),
  19581. name: "Front",
  19582. image: {
  19583. source: "./media/characters/dharsi/front.svg",
  19584. extra: 716 / 630,
  19585. bottom: 0.035
  19586. }
  19587. },
  19588. },
  19589. [
  19590. {
  19591. name: "Nano",
  19592. height: math.unit(100, "nm")
  19593. },
  19594. {
  19595. name: "Micro",
  19596. height: math.unit(2, "inches")
  19597. },
  19598. {
  19599. name: "Normal",
  19600. height: math.unit(5 + 10 / 12, "feet"),
  19601. default: true
  19602. },
  19603. {
  19604. name: "Macro",
  19605. height: math.unit(1000, "feet")
  19606. },
  19607. {
  19608. name: "Megamacro",
  19609. height: math.unit(10, "miles")
  19610. },
  19611. {
  19612. name: "Gigamacro",
  19613. height: math.unit(3000, "miles")
  19614. },
  19615. {
  19616. name: "Teramacro",
  19617. height: math.unit(500000, "miles")
  19618. },
  19619. {
  19620. name: "Teramacro+",
  19621. height: math.unit(30, "galaxies")
  19622. },
  19623. ]
  19624. ))
  19625. characterMakers.push(() => makeCharacter(
  19626. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19627. {
  19628. front: {
  19629. height: math.unit(6, "feet"),
  19630. weight: math.unit(150, "lb"),
  19631. name: "Front",
  19632. image: {
  19633. source: "./media/characters/deathy/front.svg",
  19634. extra: 1552 / 1463,
  19635. bottom: 0.025
  19636. }
  19637. },
  19638. side: {
  19639. height: math.unit(6, "feet"),
  19640. weight: math.unit(150, "lb"),
  19641. name: "Side",
  19642. image: {
  19643. source: "./media/characters/deathy/side.svg",
  19644. extra: 1604 / 1455,
  19645. bottom: 0.025
  19646. }
  19647. },
  19648. back: {
  19649. height: math.unit(6, "feet"),
  19650. weight: math.unit(150, "lb"),
  19651. name: "Back",
  19652. image: {
  19653. source: "./media/characters/deathy/back.svg",
  19654. extra: 1580 / 1463,
  19655. bottom: 0.005
  19656. }
  19657. },
  19658. },
  19659. [
  19660. {
  19661. name: "Micro",
  19662. height: math.unit(5, "millimeters")
  19663. },
  19664. {
  19665. name: "Normal",
  19666. height: math.unit(6 + 5 / 12, "feet"),
  19667. default: true
  19668. },
  19669. ]
  19670. ))
  19671. characterMakers.push(() => makeCharacter(
  19672. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19673. {
  19674. front: {
  19675. height: math.unit(16, "feet"),
  19676. weight: math.unit(4000, "lb"),
  19677. name: "Front",
  19678. image: {
  19679. source: "./media/characters/juniper/front.svg",
  19680. bottom: 0.04
  19681. }
  19682. },
  19683. },
  19684. [
  19685. {
  19686. name: "Normal",
  19687. height: math.unit(16, "feet"),
  19688. default: true
  19689. },
  19690. ]
  19691. ))
  19692. characterMakers.push(() => makeCharacter(
  19693. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19694. {
  19695. front: {
  19696. height: math.unit(6, "feet"),
  19697. weight: math.unit(150, "lb"),
  19698. name: "Front",
  19699. image: {
  19700. source: "./media/characters/hipster/front.svg",
  19701. extra: 1312 / 1209,
  19702. bottom: 0.025
  19703. }
  19704. },
  19705. back: {
  19706. height: math.unit(6, "feet"),
  19707. weight: math.unit(150, "lb"),
  19708. name: "Back",
  19709. image: {
  19710. source: "./media/characters/hipster/back.svg",
  19711. extra: 1281 / 1196,
  19712. bottom: 0.01
  19713. }
  19714. },
  19715. },
  19716. [
  19717. {
  19718. name: "Micro",
  19719. height: math.unit(1, "mm")
  19720. },
  19721. {
  19722. name: "Normal",
  19723. height: math.unit(4, "inches"),
  19724. default: true
  19725. },
  19726. {
  19727. name: "Macro",
  19728. height: math.unit(500, "feet")
  19729. },
  19730. {
  19731. name: "Megamacro",
  19732. height: math.unit(1000, "miles")
  19733. },
  19734. ]
  19735. ))
  19736. characterMakers.push(() => makeCharacter(
  19737. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19738. {
  19739. front: {
  19740. height: math.unit(6, "feet"),
  19741. weight: math.unit(150, "lb"),
  19742. name: "Front",
  19743. image: {
  19744. source: "./media/characters/tendirmuldr/front.svg",
  19745. extra: 1878 / 1772,
  19746. bottom: 0.015
  19747. }
  19748. },
  19749. },
  19750. [
  19751. {
  19752. name: "Megamacro",
  19753. height: math.unit(1500, "miles"),
  19754. default: true
  19755. },
  19756. ]
  19757. ))
  19758. characterMakers.push(() => makeCharacter(
  19759. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19760. {
  19761. front: {
  19762. height: math.unit(14, "feet"),
  19763. weight: math.unit(12000, "lb"),
  19764. name: "Front",
  19765. image: {
  19766. source: "./media/characters/mort/front.svg",
  19767. extra: 365 / 318,
  19768. bottom: 0.01
  19769. }
  19770. },
  19771. side: {
  19772. height: math.unit(14, "feet"),
  19773. weight: math.unit(12000, "lb"),
  19774. name: "Side",
  19775. image: {
  19776. source: "./media/characters/mort/side.svg",
  19777. extra: 365 / 318,
  19778. bottom: 0.052
  19779. },
  19780. default: true
  19781. },
  19782. back: {
  19783. height: math.unit(14, "feet"),
  19784. weight: math.unit(12000, "lb"),
  19785. name: "Back",
  19786. image: {
  19787. source: "./media/characters/mort/back.svg",
  19788. extra: 371 / 332,
  19789. bottom: 0.18
  19790. }
  19791. },
  19792. },
  19793. [
  19794. {
  19795. name: "Normal",
  19796. height: math.unit(14, "feet"),
  19797. default: true
  19798. },
  19799. ]
  19800. ))
  19801. characterMakers.push(() => makeCharacter(
  19802. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19803. {
  19804. front: {
  19805. height: math.unit(8, "feet"),
  19806. weight: math.unit(1, "ton"),
  19807. name: "Front",
  19808. image: {
  19809. source: "./media/characters/lycoa/front.svg",
  19810. extra: 1875 / 1789,
  19811. bottom: 0.022
  19812. }
  19813. },
  19814. back: {
  19815. height: math.unit(8, "feet"),
  19816. weight: math.unit(1, "ton"),
  19817. name: "Back",
  19818. image: {
  19819. source: "./media/characters/lycoa/back.svg",
  19820. extra: 1835 / 1781,
  19821. bottom: 0.03
  19822. }
  19823. },
  19824. head: {
  19825. height: math.unit(2.1, "feet"),
  19826. name: "Head",
  19827. image: {
  19828. source: "./media/characters/lycoa/head.svg"
  19829. }
  19830. },
  19831. tailmaw: {
  19832. height: math.unit(1.9, "feet"),
  19833. name: "Tailmaw",
  19834. image: {
  19835. source: "./media/characters/lycoa/tailmaw.svg"
  19836. }
  19837. },
  19838. tentacles: {
  19839. height: math.unit(2.1, "feet"),
  19840. name: "Tentacles",
  19841. image: {
  19842. source: "./media/characters/lycoa/tentacles.svg"
  19843. }
  19844. },
  19845. dick: {
  19846. height: math.unit(1.73, "feet"),
  19847. name: "Dick",
  19848. image: {
  19849. source: "./media/characters/lycoa/dick.svg"
  19850. }
  19851. },
  19852. },
  19853. [
  19854. {
  19855. name: "Normal",
  19856. height: math.unit(8, "feet"),
  19857. default: true
  19858. },
  19859. {
  19860. name: "Macro",
  19861. height: math.unit(30, "feet")
  19862. },
  19863. ]
  19864. ))
  19865. characterMakers.push(() => makeCharacter(
  19866. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19867. {
  19868. front: {
  19869. height: math.unit(4 + 2 / 12, "feet"),
  19870. weight: math.unit(70, "lb"),
  19871. name: "Front",
  19872. image: {
  19873. source: "./media/characters/naldara/front.svg",
  19874. extra: 841 / 720,
  19875. bottom: 0.04
  19876. }
  19877. },
  19878. naga: {
  19879. height: math.unit(23, "feet"),
  19880. weight: math.unit(15000, "kg"),
  19881. name: "Naga",
  19882. image: {
  19883. source: "./media/characters/naldara/naga.svg",
  19884. extra: 3290 / 2959,
  19885. bottom: 124 / 3432
  19886. }
  19887. },
  19888. },
  19889. [
  19890. {
  19891. name: "Normal",
  19892. height: math.unit(4 + 2 / 12, "feet"),
  19893. default: true
  19894. },
  19895. ]
  19896. ))
  19897. characterMakers.push(() => makeCharacter(
  19898. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19899. {
  19900. front: {
  19901. height: math.unit(13 + 7 / 12, "feet"),
  19902. weight: math.unit(1500, "lb"),
  19903. name: "Front",
  19904. image: {
  19905. source: "./media/characters/briar/front.svg",
  19906. extra: 626 / 596,
  19907. bottom: 0.08
  19908. }
  19909. },
  19910. },
  19911. [
  19912. {
  19913. name: "Normal",
  19914. height: math.unit(13 + 7 / 12, "feet"),
  19915. default: true
  19916. },
  19917. ]
  19918. ))
  19919. characterMakers.push(() => makeCharacter(
  19920. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19921. {
  19922. side: {
  19923. height: math.unit(10, "feet"),
  19924. weight: math.unit(500, "lb"),
  19925. name: "Side",
  19926. image: {
  19927. source: "./media/characters/vanguard/side.svg",
  19928. extra: 502 / 425,
  19929. bottom: 0.087
  19930. }
  19931. },
  19932. },
  19933. [
  19934. {
  19935. name: "Normal",
  19936. height: math.unit(10, "feet"),
  19937. default: true
  19938. },
  19939. ]
  19940. ))
  19941. characterMakers.push(() => makeCharacter(
  19942. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19943. {
  19944. front: {
  19945. height: math.unit(7.5, "feet"),
  19946. weight: math.unit(2, "lb"),
  19947. name: "Front",
  19948. image: {
  19949. source: "./media/characters/artemis/front.svg",
  19950. extra: 1192 / 1075,
  19951. bottom: 0.07
  19952. }
  19953. },
  19954. frontNsfw: {
  19955. height: math.unit(7.5, "feet"),
  19956. weight: math.unit(2, "lb"),
  19957. name: "Front (NSFW)",
  19958. image: {
  19959. source: "./media/characters/artemis/front-nsfw.svg",
  19960. extra: 1192 / 1075,
  19961. bottom: 0.07
  19962. }
  19963. },
  19964. frontNsfwer: {
  19965. height: math.unit(7.5, "feet"),
  19966. weight: math.unit(2, "lb"),
  19967. name: "Front (NSFW-er)",
  19968. image: {
  19969. source: "./media/characters/artemis/front-nsfwer.svg",
  19970. extra: 1192 / 1075,
  19971. bottom: 0.07
  19972. }
  19973. },
  19974. side: {
  19975. height: math.unit(7.5, "feet"),
  19976. weight: math.unit(2, "lb"),
  19977. name: "Side",
  19978. image: {
  19979. source: "./media/characters/artemis/side.svg",
  19980. extra: 1192 / 1075,
  19981. bottom: 0.07
  19982. }
  19983. },
  19984. sideNsfw: {
  19985. height: math.unit(7.5, "feet"),
  19986. weight: math.unit(2, "lb"),
  19987. name: "Side (NSFW)",
  19988. image: {
  19989. source: "./media/characters/artemis/side-nsfw.svg",
  19990. extra: 1192 / 1075,
  19991. bottom: 0.07
  19992. }
  19993. },
  19994. sideNsfwer: {
  19995. height: math.unit(7.5, "feet"),
  19996. weight: math.unit(2, "lb"),
  19997. name: "Side (NSFW-er)",
  19998. image: {
  19999. source: "./media/characters/artemis/side-nsfwer.svg",
  20000. extra: 1192 / 1075,
  20001. bottom: 0.07
  20002. }
  20003. },
  20004. maw: {
  20005. height: math.unit(1.1, "feet"),
  20006. name: "Maw",
  20007. image: {
  20008. source: "./media/characters/artemis/maw.svg"
  20009. }
  20010. },
  20011. stomach: {
  20012. height: math.unit(0.95, "feet"),
  20013. name: "Stomach",
  20014. image: {
  20015. source: "./media/characters/artemis/stomach.svg"
  20016. }
  20017. },
  20018. dickCanine: {
  20019. height: math.unit(1, "feet"),
  20020. name: "Dick (Canine)",
  20021. image: {
  20022. source: "./media/characters/artemis/dick-canine.svg"
  20023. }
  20024. },
  20025. dickEquine: {
  20026. height: math.unit(0.85, "feet"),
  20027. name: "Dick (Equine)",
  20028. image: {
  20029. source: "./media/characters/artemis/dick-equine.svg"
  20030. }
  20031. },
  20032. dickExotic: {
  20033. height: math.unit(0.85, "feet"),
  20034. name: "Dick (Exotic)",
  20035. image: {
  20036. source: "./media/characters/artemis/dick-exotic.svg"
  20037. }
  20038. },
  20039. },
  20040. [
  20041. {
  20042. name: "Normal",
  20043. height: math.unit(7.5, "feet"),
  20044. default: true
  20045. },
  20046. {
  20047. name: "Enlarged",
  20048. height: math.unit(12, "feet")
  20049. },
  20050. ]
  20051. ))
  20052. characterMakers.push(() => makeCharacter(
  20053. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20054. {
  20055. front: {
  20056. height: math.unit(5 + 3 / 12, "feet"),
  20057. weight: math.unit(160, "lb"),
  20058. name: "Front",
  20059. image: {
  20060. source: "./media/characters/kira/front.svg",
  20061. extra: 906 / 786,
  20062. bottom: 0.01
  20063. }
  20064. },
  20065. back: {
  20066. height: math.unit(5 + 3 / 12, "feet"),
  20067. weight: math.unit(160, "lb"),
  20068. name: "Back",
  20069. image: {
  20070. source: "./media/characters/kira/back.svg",
  20071. extra: 882 / 757,
  20072. bottom: 0.005
  20073. }
  20074. },
  20075. frontDressed: {
  20076. height: math.unit(5 + 3 / 12, "feet"),
  20077. weight: math.unit(160, "lb"),
  20078. name: "Front (Dressed)",
  20079. image: {
  20080. source: "./media/characters/kira/front-dressed.svg",
  20081. extra: 906 / 786,
  20082. bottom: 0.01
  20083. }
  20084. },
  20085. beans: {
  20086. height: math.unit(0.92, "feet"),
  20087. name: "Beans",
  20088. image: {
  20089. source: "./media/characters/kira/beans.svg"
  20090. }
  20091. },
  20092. },
  20093. [
  20094. {
  20095. name: "Normal",
  20096. height: math.unit(5 + 3 / 12, "feet"),
  20097. default: true
  20098. },
  20099. ]
  20100. ))
  20101. characterMakers.push(() => makeCharacter(
  20102. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20103. {
  20104. front: {
  20105. height: math.unit(5 + 4 / 12, "feet"),
  20106. weight: math.unit(145, "lb"),
  20107. name: "Front",
  20108. image: {
  20109. source: "./media/characters/scramble/front.svg",
  20110. extra: 763 / 727,
  20111. bottom: 0.05
  20112. }
  20113. },
  20114. back: {
  20115. height: math.unit(5 + 4 / 12, "feet"),
  20116. weight: math.unit(145, "lb"),
  20117. name: "Back",
  20118. image: {
  20119. source: "./media/characters/scramble/back.svg",
  20120. extra: 826 / 737,
  20121. bottom: 0.002
  20122. }
  20123. },
  20124. },
  20125. [
  20126. {
  20127. name: "Normal",
  20128. height: math.unit(5 + 4 / 12, "feet"),
  20129. default: true
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20135. {
  20136. side: {
  20137. height: math.unit(6 + 2 / 12, "feet"),
  20138. weight: math.unit(190, "lb"),
  20139. name: "Side",
  20140. image: {
  20141. source: "./media/characters/biscuit/side.svg",
  20142. extra: 858 / 791,
  20143. bottom: 0.044
  20144. }
  20145. },
  20146. },
  20147. [
  20148. {
  20149. name: "Normal",
  20150. height: math.unit(6 + 2 / 12, "feet"),
  20151. default: true
  20152. },
  20153. ]
  20154. ))
  20155. characterMakers.push(() => makeCharacter(
  20156. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20157. {
  20158. front: {
  20159. height: math.unit(5 + 2 / 12, "feet"),
  20160. weight: math.unit(120, "lb"),
  20161. name: "Front",
  20162. image: {
  20163. source: "./media/characters/poffin/front.svg",
  20164. extra: 786 / 680,
  20165. bottom: 0.005
  20166. }
  20167. },
  20168. },
  20169. [
  20170. {
  20171. name: "Normal",
  20172. height: math.unit(5 + 2 / 12, "feet"),
  20173. default: true
  20174. },
  20175. ]
  20176. ))
  20177. characterMakers.push(() => makeCharacter(
  20178. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20179. {
  20180. front: {
  20181. height: math.unit(6 + 3 / 12, "feet"),
  20182. weight: math.unit(519, "lb"),
  20183. name: "Front",
  20184. image: {
  20185. source: "./media/characters/dhari/front.svg",
  20186. extra: 1048 / 946,
  20187. bottom: 0.015
  20188. }
  20189. },
  20190. back: {
  20191. height: math.unit(6 + 3 / 12, "feet"),
  20192. weight: math.unit(519, "lb"),
  20193. name: "Back",
  20194. image: {
  20195. source: "./media/characters/dhari/back.svg",
  20196. extra: 1048 / 931,
  20197. bottom: 0.005
  20198. }
  20199. },
  20200. frontDressed: {
  20201. height: math.unit(6 + 3 / 12, "feet"),
  20202. weight: math.unit(519, "lb"),
  20203. name: "Front (Dressed)",
  20204. image: {
  20205. source: "./media/characters/dhari/front-dressed.svg",
  20206. extra: 1713 / 1546,
  20207. bottom: 0.02
  20208. }
  20209. },
  20210. backDressed: {
  20211. height: math.unit(6 + 3 / 12, "feet"),
  20212. weight: math.unit(519, "lb"),
  20213. name: "Back (Dressed)",
  20214. image: {
  20215. source: "./media/characters/dhari/back-dressed.svg",
  20216. extra: 1699 / 1537,
  20217. bottom: 0.01
  20218. }
  20219. },
  20220. maw: {
  20221. height: math.unit(0.95, "feet"),
  20222. name: "Maw",
  20223. image: {
  20224. source: "./media/characters/dhari/maw.svg"
  20225. }
  20226. },
  20227. wereFront: {
  20228. height: math.unit(12 + 8 / 12, "feet"),
  20229. weight: math.unit(4000, "lb"),
  20230. name: "Front (Were)",
  20231. image: {
  20232. source: "./media/characters/dhari/were-front.svg",
  20233. extra: 1065 / 969,
  20234. bottom: 0.015
  20235. }
  20236. },
  20237. wereBack: {
  20238. height: math.unit(12 + 8 / 12, "feet"),
  20239. weight: math.unit(4000, "lb"),
  20240. name: "Back (Were)",
  20241. image: {
  20242. source: "./media/characters/dhari/were-back.svg",
  20243. extra: 1065 / 969,
  20244. bottom: 0.012
  20245. }
  20246. },
  20247. wereMaw: {
  20248. height: math.unit(0.625, "meters"),
  20249. name: "Maw (Were)",
  20250. image: {
  20251. source: "./media/characters/dhari/were-maw.svg"
  20252. }
  20253. },
  20254. },
  20255. [
  20256. {
  20257. name: "Normal",
  20258. height: math.unit(6 + 3 / 12, "feet"),
  20259. default: true
  20260. },
  20261. ]
  20262. ))
  20263. characterMakers.push(() => makeCharacter(
  20264. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20265. {
  20266. anthro: {
  20267. height: math.unit(5 + 7 / 12, "feet"),
  20268. weight: math.unit(175, "lb"),
  20269. name: "Anthro",
  20270. image: {
  20271. source: "./media/characters/rena-dyne/anthro.svg",
  20272. extra: 1849 / 1785,
  20273. bottom: 0.005
  20274. }
  20275. },
  20276. taur: {
  20277. height: math.unit(15 + 6 / 12, "feet"),
  20278. weight: math.unit(8000, "lb"),
  20279. name: "Taur",
  20280. image: {
  20281. source: "./media/characters/rena-dyne/taur.svg",
  20282. extra: 2315 / 2234,
  20283. bottom: 0.033
  20284. }
  20285. },
  20286. },
  20287. [
  20288. {
  20289. name: "Normal",
  20290. height: math.unit(5 + 7 / 12, "feet"),
  20291. default: true
  20292. },
  20293. ]
  20294. ))
  20295. characterMakers.push(() => makeCharacter(
  20296. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20297. {
  20298. front: {
  20299. height: math.unit(8, "feet"),
  20300. weight: math.unit(600, "lb"),
  20301. name: "Front",
  20302. image: {
  20303. source: "./media/characters/weremeep/front.svg",
  20304. extra: 967 / 862,
  20305. bottom: 0.01
  20306. }
  20307. },
  20308. },
  20309. [
  20310. {
  20311. name: "Normal",
  20312. height: math.unit(8, "feet"),
  20313. default: true
  20314. },
  20315. {
  20316. name: "Lorg",
  20317. height: math.unit(12, "feet")
  20318. },
  20319. {
  20320. name: "Oh Lawd She Comin'",
  20321. height: math.unit(20, "feet")
  20322. },
  20323. ]
  20324. ))
  20325. characterMakers.push(() => makeCharacter(
  20326. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20327. {
  20328. front: {
  20329. height: math.unit(4, "feet"),
  20330. weight: math.unit(90, "lb"),
  20331. name: "Front",
  20332. image: {
  20333. source: "./media/characters/reza/front.svg",
  20334. extra: 1183 / 1111,
  20335. bottom: 0.017
  20336. }
  20337. },
  20338. back: {
  20339. height: math.unit(4, "feet"),
  20340. weight: math.unit(90, "lb"),
  20341. name: "Back",
  20342. image: {
  20343. source: "./media/characters/reza/back.svg",
  20344. extra: 1183 / 1111,
  20345. bottom: 0.01
  20346. }
  20347. },
  20348. drake: {
  20349. height: math.unit(30, "feet"),
  20350. weight: math.unit(246960, "lb"),
  20351. name: "Drake",
  20352. image: {
  20353. source: "./media/characters/reza/drake.svg",
  20354. extra: 2350 / 2024,
  20355. bottom: 60.7 / 2403
  20356. }
  20357. },
  20358. },
  20359. [
  20360. {
  20361. name: "Normal",
  20362. height: math.unit(4, "feet"),
  20363. default: true
  20364. },
  20365. ]
  20366. ))
  20367. characterMakers.push(() => makeCharacter(
  20368. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20369. {
  20370. side: {
  20371. height: math.unit(15, "feet"),
  20372. weight: math.unit(14, "tons"),
  20373. name: "Side",
  20374. image: {
  20375. source: "./media/characters/athea/side.svg",
  20376. extra: 960 / 540,
  20377. bottom: 0.003
  20378. }
  20379. },
  20380. sitting: {
  20381. height: math.unit(6 * 2.85, "feet"),
  20382. weight: math.unit(14, "tons"),
  20383. name: "Sitting",
  20384. image: {
  20385. source: "./media/characters/athea/sitting.svg",
  20386. extra: 621 / 581,
  20387. bottom: 0.075
  20388. }
  20389. },
  20390. maw: {
  20391. height: math.unit(7.59498031496063, "feet"),
  20392. name: "Maw",
  20393. image: {
  20394. source: "./media/characters/athea/maw.svg"
  20395. }
  20396. },
  20397. },
  20398. [
  20399. {
  20400. name: "Lap Cat",
  20401. height: math.unit(2.5, "feet")
  20402. },
  20403. {
  20404. name: "Minimacro",
  20405. height: math.unit(15, "feet"),
  20406. default: true
  20407. },
  20408. {
  20409. name: "Macro",
  20410. height: math.unit(120, "feet")
  20411. },
  20412. {
  20413. name: "Macro+",
  20414. height: math.unit(640, "feet")
  20415. },
  20416. {
  20417. name: "Colossus",
  20418. height: math.unit(2.2, "miles")
  20419. },
  20420. ]
  20421. ))
  20422. characterMakers.push(() => makeCharacter(
  20423. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20424. {
  20425. front: {
  20426. height: math.unit(8 + 8 / 12, "feet"),
  20427. weight: math.unit(130, "kg"),
  20428. name: "Front",
  20429. image: {
  20430. source: "./media/characters/seroko/front.svg",
  20431. extra: 1385 / 1280,
  20432. bottom: 0.025
  20433. }
  20434. },
  20435. back: {
  20436. height: math.unit(8 + 8 / 12, "feet"),
  20437. weight: math.unit(130, "kg"),
  20438. name: "Back",
  20439. image: {
  20440. source: "./media/characters/seroko/back.svg",
  20441. extra: 1369 / 1238,
  20442. bottom: 0.018
  20443. }
  20444. },
  20445. frontDressed: {
  20446. height: math.unit(8 + 8 / 12, "feet"),
  20447. weight: math.unit(130, "kg"),
  20448. name: "Front (Dressed)",
  20449. image: {
  20450. source: "./media/characters/seroko/front-dressed.svg",
  20451. extra: 1366 / 1275,
  20452. bottom: 0.03
  20453. }
  20454. },
  20455. },
  20456. [
  20457. {
  20458. name: "Normal",
  20459. height: math.unit(8 + 8 / 12, "feet"),
  20460. default: true
  20461. },
  20462. ]
  20463. ))
  20464. characterMakers.push(() => makeCharacter(
  20465. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20466. {
  20467. front: {
  20468. height: math.unit(5.5, "feet"),
  20469. weight: math.unit(160, "lb"),
  20470. name: "Front",
  20471. image: {
  20472. source: "./media/characters/quatzi/front.svg",
  20473. extra: 2346 / 2242,
  20474. bottom: 0.015
  20475. }
  20476. },
  20477. },
  20478. [
  20479. {
  20480. name: "Normal",
  20481. height: math.unit(5.5, "feet"),
  20482. default: true
  20483. },
  20484. {
  20485. name: "Big",
  20486. height: math.unit(7.7, "feet")
  20487. },
  20488. ]
  20489. ))
  20490. characterMakers.push(() => makeCharacter(
  20491. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20492. {
  20493. front: {
  20494. height: math.unit(5 + 11 / 12, "feet"),
  20495. weight: math.unit(180, "lb"),
  20496. name: "Front",
  20497. image: {
  20498. source: "./media/characters/sen/front.svg",
  20499. extra: 1321 / 1254,
  20500. bottom: 0.015
  20501. }
  20502. },
  20503. side: {
  20504. height: math.unit(5 + 11 / 12, "feet"),
  20505. weight: math.unit(180, "lb"),
  20506. name: "Side",
  20507. image: {
  20508. source: "./media/characters/sen/side.svg",
  20509. extra: 1321 / 1254,
  20510. bottom: 0.007
  20511. }
  20512. },
  20513. back: {
  20514. height: math.unit(5 + 11 / 12, "feet"),
  20515. weight: math.unit(180, "lb"),
  20516. name: "Back",
  20517. image: {
  20518. source: "./media/characters/sen/back.svg",
  20519. extra: 1321 / 1254
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(5 + 11 / 12, "feet"),
  20527. default: true
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20533. {
  20534. front: {
  20535. height: math.unit(166.6, "cm"),
  20536. weight: math.unit(66.6, "kg"),
  20537. name: "Front",
  20538. image: {
  20539. source: "./media/characters/fruity/front.svg",
  20540. extra: 1510 / 1386,
  20541. bottom: 0.04
  20542. }
  20543. },
  20544. back: {
  20545. height: math.unit(166.6, "cm"),
  20546. weight: math.unit(66.6, "lb"),
  20547. name: "Back",
  20548. image: {
  20549. source: "./media/characters/fruity/back.svg",
  20550. extra: 1563 / 1435,
  20551. bottom: 0.005
  20552. }
  20553. },
  20554. },
  20555. [
  20556. {
  20557. name: "Normal",
  20558. height: math.unit(166.6, "cm"),
  20559. default: true
  20560. },
  20561. {
  20562. name: "Demonic",
  20563. height: math.unit(166.6, "feet")
  20564. },
  20565. ]
  20566. ))
  20567. characterMakers.push(() => makeCharacter(
  20568. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20569. {
  20570. side: {
  20571. height: math.unit(10, "feet"),
  20572. weight: math.unit(500, "lb"),
  20573. name: "Side",
  20574. image: {
  20575. source: "./media/characters/zost/side.svg",
  20576. extra: 966 / 880,
  20577. bottom: 0.075
  20578. }
  20579. },
  20580. mawFront: {
  20581. height: math.unit(1.08, "meters"),
  20582. name: "Maw (Front)",
  20583. image: {
  20584. source: "./media/characters/zost/maw-front.svg"
  20585. }
  20586. },
  20587. mawSide: {
  20588. height: math.unit(2.66, "feet"),
  20589. name: "Maw (Side)",
  20590. image: {
  20591. source: "./media/characters/zost/maw-side.svg"
  20592. }
  20593. },
  20594. },
  20595. [
  20596. {
  20597. name: "Normal",
  20598. height: math.unit(10, "feet"),
  20599. default: true
  20600. },
  20601. ]
  20602. ))
  20603. characterMakers.push(() => makeCharacter(
  20604. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20605. {
  20606. front: {
  20607. height: math.unit(5 + 4 / 12, "feet"),
  20608. weight: math.unit(120, "lb"),
  20609. name: "Front",
  20610. image: {
  20611. source: "./media/characters/luci/front.svg",
  20612. extra: 1985 / 1884,
  20613. bottom: 0.04
  20614. }
  20615. },
  20616. back: {
  20617. height: math.unit(5 + 4 / 12, "feet"),
  20618. weight: math.unit(120, "lb"),
  20619. name: "Back",
  20620. image: {
  20621. source: "./media/characters/luci/back.svg",
  20622. extra: 1892 / 1791,
  20623. bottom: 0.002
  20624. }
  20625. },
  20626. },
  20627. [
  20628. {
  20629. name: "Normal",
  20630. height: math.unit(5 + 4 / 12, "feet"),
  20631. default: true
  20632. },
  20633. ]
  20634. ))
  20635. characterMakers.push(() => makeCharacter(
  20636. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20637. {
  20638. front: {
  20639. height: math.unit(1500, "feet"),
  20640. weight: math.unit(3.8e6, "tons"),
  20641. name: "Front",
  20642. image: {
  20643. source: "./media/characters/2th/front.svg",
  20644. extra: 3489 / 3350,
  20645. bottom: 0.1
  20646. }
  20647. },
  20648. foot: {
  20649. height: math.unit(461, "feet"),
  20650. name: "Foot",
  20651. image: {
  20652. source: "./media/characters/2th/foot.svg"
  20653. }
  20654. },
  20655. },
  20656. [
  20657. {
  20658. name: "\"Micro\"",
  20659. height: math.unit(15 + 7 / 12, "feet")
  20660. },
  20661. {
  20662. name: "Normal",
  20663. height: math.unit(1500, "feet"),
  20664. default: true
  20665. },
  20666. {
  20667. name: "Macro",
  20668. height: math.unit(5000, "feet")
  20669. },
  20670. {
  20671. name: "Megamacro",
  20672. height: math.unit(15, "miles")
  20673. },
  20674. {
  20675. name: "Gigamacro",
  20676. height: math.unit(4000, "miles")
  20677. },
  20678. {
  20679. name: "Galactic",
  20680. height: math.unit(50, "AU")
  20681. },
  20682. ]
  20683. ))
  20684. characterMakers.push(() => makeCharacter(
  20685. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20686. {
  20687. front: {
  20688. height: math.unit(5 + 6 / 12, "feet"),
  20689. weight: math.unit(220, "lb"),
  20690. name: "Front",
  20691. image: {
  20692. source: "./media/characters/amethyst/front.svg",
  20693. extra: 2078 / 2040,
  20694. bottom: 0.045
  20695. }
  20696. },
  20697. back: {
  20698. height: math.unit(5 + 6 / 12, "feet"),
  20699. weight: math.unit(220, "lb"),
  20700. name: "Back",
  20701. image: {
  20702. source: "./media/characters/amethyst/back.svg",
  20703. extra: 2021 / 1989,
  20704. bottom: 0.02
  20705. }
  20706. },
  20707. },
  20708. [
  20709. {
  20710. name: "Normal",
  20711. height: math.unit(5 + 6 / 12, "feet"),
  20712. default: true
  20713. },
  20714. ]
  20715. ))
  20716. characterMakers.push(() => makeCharacter(
  20717. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20718. {
  20719. front: {
  20720. height: math.unit(4 + 11 / 12, "feet"),
  20721. weight: math.unit(120, "lb"),
  20722. name: "Front",
  20723. image: {
  20724. source: "./media/characters/yumi-akiyama/front.svg",
  20725. extra: 1327 / 1235,
  20726. bottom: 0.02
  20727. }
  20728. },
  20729. back: {
  20730. height: math.unit(4 + 11 / 12, "feet"),
  20731. weight: math.unit(120, "lb"),
  20732. name: "Back",
  20733. image: {
  20734. source: "./media/characters/yumi-akiyama/back.svg",
  20735. extra: 1287 / 1245,
  20736. bottom: 0.002
  20737. }
  20738. },
  20739. },
  20740. [
  20741. {
  20742. name: "Galactic",
  20743. height: math.unit(50, "galaxies"),
  20744. default: true
  20745. },
  20746. {
  20747. name: "Universal",
  20748. height: math.unit(100, "universes")
  20749. },
  20750. ]
  20751. ))
  20752. characterMakers.push(() => makeCharacter(
  20753. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20754. {
  20755. front: {
  20756. height: math.unit(8, "feet"),
  20757. weight: math.unit(500, "lb"),
  20758. name: "Front",
  20759. image: {
  20760. source: "./media/characters/rifter-yrmori/front.svg",
  20761. extra: 1180 / 1125,
  20762. bottom: 0.02
  20763. }
  20764. },
  20765. back: {
  20766. height: math.unit(8, "feet"),
  20767. weight: math.unit(500, "lb"),
  20768. name: "Back",
  20769. image: {
  20770. source: "./media/characters/rifter-yrmori/back.svg",
  20771. extra: 1190 / 1145,
  20772. bottom: 0.001
  20773. }
  20774. },
  20775. wings: {
  20776. height: math.unit(7.75, "feet"),
  20777. weight: math.unit(500, "lb"),
  20778. name: "Wings",
  20779. image: {
  20780. source: "./media/characters/rifter-yrmori/wings.svg",
  20781. extra: 1357 / 1285
  20782. }
  20783. },
  20784. maw: {
  20785. height: math.unit(0.8, "feet"),
  20786. name: "Maw",
  20787. image: {
  20788. source: "./media/characters/rifter-yrmori/maw.svg"
  20789. }
  20790. },
  20791. mawfront: {
  20792. height: math.unit(1.45, "feet"),
  20793. name: "Maw (Front)",
  20794. image: {
  20795. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20796. }
  20797. },
  20798. },
  20799. [
  20800. {
  20801. name: "Normal",
  20802. height: math.unit(8, "feet"),
  20803. default: true
  20804. },
  20805. {
  20806. name: "Macro",
  20807. height: math.unit(42, "meters")
  20808. },
  20809. ]
  20810. ))
  20811. characterMakers.push(() => makeCharacter(
  20812. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20813. {
  20814. were: {
  20815. height: math.unit(25 + 6 / 12, "feet"),
  20816. weight: math.unit(10000, "lb"),
  20817. name: "Were",
  20818. image: {
  20819. source: "./media/characters/tahajin/were.svg",
  20820. extra: 801 / 770,
  20821. bottom: 0.042
  20822. }
  20823. },
  20824. aquatic: {
  20825. height: math.unit(6 + 4 / 12, "feet"),
  20826. weight: math.unit(160, "lb"),
  20827. name: "Aquatic",
  20828. image: {
  20829. source: "./media/characters/tahajin/aquatic.svg",
  20830. extra: 572 / 542,
  20831. bottom: 0.04
  20832. }
  20833. },
  20834. chow: {
  20835. height: math.unit(8 + 11 / 12, "feet"),
  20836. weight: math.unit(450, "lb"),
  20837. name: "Chow",
  20838. image: {
  20839. source: "./media/characters/tahajin/chow.svg",
  20840. extra: 660 / 640,
  20841. bottom: 0.015
  20842. }
  20843. },
  20844. demiNaga: {
  20845. height: math.unit(6 + 8 / 12, "feet"),
  20846. weight: math.unit(300, "lb"),
  20847. name: "Demi Naga",
  20848. image: {
  20849. source: "./media/characters/tahajin/demi-naga.svg",
  20850. extra: 643 / 615,
  20851. bottom: 0.1
  20852. }
  20853. },
  20854. data: {
  20855. height: math.unit(5, "inches"),
  20856. weight: math.unit(0.1, "lb"),
  20857. name: "Data",
  20858. image: {
  20859. source: "./media/characters/tahajin/data.svg"
  20860. }
  20861. },
  20862. fluu: {
  20863. height: math.unit(5 + 7 / 12, "feet"),
  20864. weight: math.unit(140, "lb"),
  20865. name: "Fluu",
  20866. image: {
  20867. source: "./media/characters/tahajin/fluu.svg",
  20868. extra: 628 / 592,
  20869. bottom: 0.02
  20870. }
  20871. },
  20872. starWarrior: {
  20873. height: math.unit(4 + 5 / 12, "feet"),
  20874. weight: math.unit(50, "lb"),
  20875. name: "Star Warrior",
  20876. image: {
  20877. source: "./media/characters/tahajin/star-warrior.svg"
  20878. }
  20879. },
  20880. },
  20881. [
  20882. {
  20883. name: "Normal",
  20884. height: math.unit(25 + 6 / 12, "feet"),
  20885. default: true
  20886. },
  20887. ]
  20888. ))
  20889. characterMakers.push(() => makeCharacter(
  20890. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20891. {
  20892. front: {
  20893. height: math.unit(8, "feet"),
  20894. weight: math.unit(350, "lb"),
  20895. name: "Front",
  20896. image: {
  20897. source: "./media/characters/gabira/front.svg",
  20898. extra: 608 / 580,
  20899. bottom: 0.03
  20900. }
  20901. },
  20902. back: {
  20903. height: math.unit(8, "feet"),
  20904. weight: math.unit(350, "lb"),
  20905. name: "Back",
  20906. image: {
  20907. source: "./media/characters/gabira/back.svg",
  20908. extra: 608 / 580,
  20909. bottom: 0.03
  20910. }
  20911. },
  20912. },
  20913. [
  20914. {
  20915. name: "Normal",
  20916. height: math.unit(8, "feet"),
  20917. default: true
  20918. },
  20919. ]
  20920. ))
  20921. characterMakers.push(() => makeCharacter(
  20922. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20923. {
  20924. front: {
  20925. height: math.unit(5 + 3 / 12, "feet"),
  20926. weight: math.unit(137, "lb"),
  20927. name: "Front",
  20928. image: {
  20929. source: "./media/characters/sasha-katraine/front.svg",
  20930. bottom: 0.045
  20931. }
  20932. },
  20933. },
  20934. [
  20935. {
  20936. name: "Micro",
  20937. height: math.unit(5, "inches")
  20938. },
  20939. {
  20940. name: "Normal",
  20941. height: math.unit(5 + 3 / 12, "feet"),
  20942. default: true
  20943. },
  20944. ]
  20945. ))
  20946. characterMakers.push(() => makeCharacter(
  20947. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20948. {
  20949. side: {
  20950. height: math.unit(4, "inches"),
  20951. weight: math.unit(200, "grams"),
  20952. name: "Side",
  20953. image: {
  20954. source: "./media/characters/der/side.svg",
  20955. extra: 719 / 400,
  20956. bottom: 30.6 / 749.9187
  20957. }
  20958. },
  20959. },
  20960. [
  20961. {
  20962. name: "Micro",
  20963. height: math.unit(4, "inches"),
  20964. default: true
  20965. },
  20966. ]
  20967. ))
  20968. characterMakers.push(() => makeCharacter(
  20969. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20970. {
  20971. side: {
  20972. height: math.unit(30, "meters"),
  20973. weight: math.unit(700, "tonnes"),
  20974. name: "Side",
  20975. image: {
  20976. source: "./media/characters/fixerdragon/side.svg",
  20977. extra: (1293.0514 - 116.03) / 1106.86,
  20978. bottom: 116.03 / 1293.0514
  20979. }
  20980. },
  20981. },
  20982. [
  20983. {
  20984. name: "Planck",
  20985. height: math.unit(1.6e-35, "meters")
  20986. },
  20987. {
  20988. name: "Micro",
  20989. height: math.unit(0.4, "meters")
  20990. },
  20991. {
  20992. name: "Normal",
  20993. height: math.unit(30, "meters"),
  20994. default: true
  20995. },
  20996. {
  20997. name: "Megamacro",
  20998. height: math.unit(1.2, "megameters")
  20999. },
  21000. {
  21001. name: "Teramacro",
  21002. height: math.unit(130, "terameters")
  21003. },
  21004. {
  21005. name: "Yottamacro",
  21006. height: math.unit(6200, "yottameters")
  21007. },
  21008. ]
  21009. ));
  21010. characterMakers.push(() => makeCharacter(
  21011. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21012. {
  21013. front: {
  21014. height: math.unit(8, "feet"),
  21015. weight: math.unit(250, "lb"),
  21016. name: "Front",
  21017. image: {
  21018. source: "./media/characters/kite/front.svg",
  21019. extra: 2796 / 2659,
  21020. bottom: 0.002
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Normal",
  21027. height: math.unit(8, "feet"),
  21028. default: true
  21029. },
  21030. {
  21031. name: "Macro",
  21032. height: math.unit(360, "feet")
  21033. },
  21034. {
  21035. name: "Megamacro",
  21036. height: math.unit(1500, "feet")
  21037. },
  21038. ]
  21039. ))
  21040. characterMakers.push(() => makeCharacter(
  21041. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21042. {
  21043. front: {
  21044. height: math.unit(5 + 10 / 12, "feet"),
  21045. weight: math.unit(150, "lb"),
  21046. name: "Front",
  21047. image: {
  21048. source: "./media/characters/poojawa-vynar/front.svg",
  21049. extra: (1506.1547 - 55) / 1356.6,
  21050. bottom: 55 / 1506.1547
  21051. }
  21052. },
  21053. frontTailless: {
  21054. height: math.unit(5 + 10 / 12, "feet"),
  21055. weight: math.unit(150, "lb"),
  21056. name: "Front (Tailless)",
  21057. image: {
  21058. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21059. extra: (1506.1547 - 55) / 1356.6,
  21060. bottom: 55 / 1506.1547
  21061. }
  21062. },
  21063. },
  21064. [
  21065. {
  21066. name: "Normal",
  21067. height: math.unit(5 + 10 / 12, "feet"),
  21068. default: true
  21069. },
  21070. ]
  21071. ))
  21072. characterMakers.push(() => makeCharacter(
  21073. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21074. {
  21075. front: {
  21076. height: math.unit(293, "meters"),
  21077. weight: math.unit(70400, "tons"),
  21078. name: "Front",
  21079. image: {
  21080. source: "./media/characters/violette/front.svg",
  21081. extra: 1227 / 1180,
  21082. bottom: 0.005
  21083. }
  21084. },
  21085. back: {
  21086. height: math.unit(293, "meters"),
  21087. weight: math.unit(70400, "tons"),
  21088. name: "Back",
  21089. image: {
  21090. source: "./media/characters/violette/back.svg",
  21091. extra: 1227 / 1180,
  21092. bottom: 0.005
  21093. }
  21094. },
  21095. },
  21096. [
  21097. {
  21098. name: "Macro",
  21099. height: math.unit(293, "meters"),
  21100. default: true
  21101. },
  21102. ]
  21103. ))
  21104. characterMakers.push(() => makeCharacter(
  21105. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21106. {
  21107. front: {
  21108. height: math.unit(1050, "feet"),
  21109. weight: math.unit(200000, "tons"),
  21110. name: "Front",
  21111. image: {
  21112. source: "./media/characters/alessandra/front.svg",
  21113. extra: 960 / 912,
  21114. bottom: 0.06
  21115. }
  21116. },
  21117. },
  21118. [
  21119. {
  21120. name: "Macro",
  21121. height: math.unit(1050, "feet")
  21122. },
  21123. {
  21124. name: "Macro+",
  21125. height: math.unit(900, "meters"),
  21126. default: true
  21127. },
  21128. ]
  21129. ))
  21130. characterMakers.push(() => makeCharacter(
  21131. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21132. {
  21133. front: {
  21134. height: math.unit(5, "feet"),
  21135. weight: math.unit(187, "lb"),
  21136. name: "Front",
  21137. image: {
  21138. source: "./media/characters/person/front.svg",
  21139. extra: 3087 / 2945,
  21140. bottom: 91 / 3181
  21141. }
  21142. },
  21143. },
  21144. [
  21145. {
  21146. name: "Micro",
  21147. height: math.unit(3, "inches")
  21148. },
  21149. {
  21150. name: "Normal",
  21151. height: math.unit(5, "feet"),
  21152. default: true
  21153. },
  21154. {
  21155. name: "Macro",
  21156. height: math.unit(90, "feet")
  21157. },
  21158. {
  21159. name: "Max Size",
  21160. height: math.unit(280, "feet")
  21161. },
  21162. ]
  21163. ))
  21164. characterMakers.push(() => makeCharacter(
  21165. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21166. {
  21167. front: {
  21168. height: math.unit(4.5, "meters"),
  21169. weight: math.unit(3200, "lb"),
  21170. name: "Front",
  21171. image: {
  21172. source: "./media/characters/ty/front.svg",
  21173. extra: 1038 / 960,
  21174. bottom: 31.156 / 1068
  21175. }
  21176. },
  21177. back: {
  21178. height: math.unit(4.5, "meters"),
  21179. weight: math.unit(3200, "lb"),
  21180. name: "Back",
  21181. image: {
  21182. source: "./media/characters/ty/back.svg",
  21183. extra: 1044 / 966,
  21184. bottom: 7.48 / 1049
  21185. }
  21186. },
  21187. },
  21188. [
  21189. {
  21190. name: "Normal",
  21191. height: math.unit(4.5, "meters"),
  21192. default: true
  21193. },
  21194. ]
  21195. ))
  21196. characterMakers.push(() => makeCharacter(
  21197. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21198. {
  21199. front: {
  21200. height: math.unit(5 + 4 / 12, "feet"),
  21201. weight: math.unit(115, "lb"),
  21202. name: "Front",
  21203. image: {
  21204. source: "./media/characters/rocky/front.svg",
  21205. extra: 1012 / 975,
  21206. bottom: 54 / 1066
  21207. }
  21208. },
  21209. },
  21210. [
  21211. {
  21212. name: "Normal",
  21213. height: math.unit(5 + 4 / 12, "feet"),
  21214. default: true
  21215. },
  21216. ]
  21217. ))
  21218. characterMakers.push(() => makeCharacter(
  21219. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21220. {
  21221. upright: {
  21222. height: math.unit(6, "meters"),
  21223. weight: math.unit(4000, "kg"),
  21224. name: "Upright",
  21225. image: {
  21226. source: "./media/characters/ruin/upright.svg",
  21227. extra: 668 / 661,
  21228. bottom: 42 / 799.8396
  21229. }
  21230. },
  21231. },
  21232. [
  21233. {
  21234. name: "Normal",
  21235. height: math.unit(6, "meters"),
  21236. default: true
  21237. },
  21238. ]
  21239. ))
  21240. characterMakers.push(() => makeCharacter(
  21241. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21242. {
  21243. front: {
  21244. height: math.unit(5, "feet"),
  21245. weight: math.unit(106, "lb"),
  21246. name: "Front",
  21247. image: {
  21248. source: "./media/characters/robin/front.svg",
  21249. extra: 862 / 799,
  21250. bottom: 42.4 / 914.8856
  21251. }
  21252. },
  21253. },
  21254. [
  21255. {
  21256. name: "Normal",
  21257. height: math.unit(5, "feet"),
  21258. default: true
  21259. },
  21260. ]
  21261. ))
  21262. characterMakers.push(() => makeCharacter(
  21263. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21264. {
  21265. side: {
  21266. height: math.unit(3, "feet"),
  21267. weight: math.unit(225, "lb"),
  21268. name: "Side",
  21269. image: {
  21270. source: "./media/characters/saian/side.svg",
  21271. extra: 566 / 356,
  21272. bottom: 79.7 / 643
  21273. }
  21274. },
  21275. maw: {
  21276. height: math.unit(2.85, "feet"),
  21277. name: "Maw",
  21278. image: {
  21279. source: "./media/characters/saian/maw.svg"
  21280. }
  21281. },
  21282. },
  21283. [
  21284. {
  21285. name: "Normal",
  21286. height: math.unit(3, "feet"),
  21287. default: true
  21288. },
  21289. ]
  21290. ))
  21291. characterMakers.push(() => makeCharacter(
  21292. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21293. {
  21294. side: {
  21295. height: math.unit(8, "feet"),
  21296. weight: math.unit(300, "lb"),
  21297. name: "Side",
  21298. image: {
  21299. source: "./media/characters/equus-silvermane/side.svg",
  21300. extra: 2176 / 2050,
  21301. bottom: 65.7 / 2245
  21302. }
  21303. },
  21304. front: {
  21305. height: math.unit(8, "feet"),
  21306. weight: math.unit(300, "lb"),
  21307. name: "Front",
  21308. image: {
  21309. source: "./media/characters/equus-silvermane/front.svg",
  21310. extra: 4633 / 4400,
  21311. bottom: 71.3 / 4706.915
  21312. }
  21313. },
  21314. sideStepping: {
  21315. height: math.unit(8, "feet"),
  21316. weight: math.unit(300, "lb"),
  21317. name: "Side (Stepping)",
  21318. image: {
  21319. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21320. extra: 1968 / 1860,
  21321. bottom: 16.4 / 1989
  21322. }
  21323. },
  21324. },
  21325. [
  21326. {
  21327. name: "Normal",
  21328. height: math.unit(8, "feet")
  21329. },
  21330. {
  21331. name: "Minimacro",
  21332. height: math.unit(75, "feet"),
  21333. default: true
  21334. },
  21335. {
  21336. name: "Macro",
  21337. height: math.unit(150, "feet")
  21338. },
  21339. {
  21340. name: "Macro+",
  21341. height: math.unit(1000, "feet")
  21342. },
  21343. {
  21344. name: "Megamacro",
  21345. height: math.unit(1, "mile")
  21346. },
  21347. ]
  21348. ))
  21349. characterMakers.push(() => makeCharacter(
  21350. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21351. {
  21352. side: {
  21353. height: math.unit(20, "feet"),
  21354. weight: math.unit(30000, "kg"),
  21355. name: "Side",
  21356. image: {
  21357. source: "./media/characters/windar/side.svg",
  21358. extra: 1491 / 1248,
  21359. bottom: 82.56 / 1568
  21360. }
  21361. },
  21362. },
  21363. [
  21364. {
  21365. name: "Normal",
  21366. height: math.unit(20, "feet"),
  21367. default: true
  21368. },
  21369. ]
  21370. ))
  21371. characterMakers.push(() => makeCharacter(
  21372. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21373. {
  21374. side: {
  21375. height: math.unit(15.66, "feet"),
  21376. weight: math.unit(150, "lb"),
  21377. name: "Side",
  21378. image: {
  21379. source: "./media/characters/melody/side.svg",
  21380. extra: 1097 / 944,
  21381. bottom: 11.8 / 1109
  21382. }
  21383. },
  21384. sideOutfit: {
  21385. height: math.unit(15.66, "feet"),
  21386. weight: math.unit(150, "lb"),
  21387. name: "Side (Outfit)",
  21388. image: {
  21389. source: "./media/characters/melody/side-outfit.svg",
  21390. extra: 1097 / 944,
  21391. bottom: 11.8 / 1109
  21392. }
  21393. },
  21394. },
  21395. [
  21396. {
  21397. name: "Normal",
  21398. height: math.unit(15.66, "feet"),
  21399. default: true
  21400. },
  21401. ]
  21402. ))
  21403. characterMakers.push(() => makeCharacter(
  21404. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21405. {
  21406. front: {
  21407. height: math.unit(8, "feet"),
  21408. weight: math.unit(325, "lb"),
  21409. name: "Front",
  21410. image: {
  21411. source: "./media/characters/windera/front.svg",
  21412. extra: 3180 / 2845,
  21413. bottom: 178 / 3365
  21414. }
  21415. },
  21416. },
  21417. [
  21418. {
  21419. name: "Normal",
  21420. height: math.unit(8, "feet"),
  21421. default: true
  21422. },
  21423. ]
  21424. ))
  21425. characterMakers.push(() => makeCharacter(
  21426. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21427. {
  21428. front: {
  21429. height: math.unit(28.75, "feet"),
  21430. weight: math.unit(2000, "kg"),
  21431. name: "Front",
  21432. image: {
  21433. source: "./media/characters/sonear/front.svg",
  21434. extra: 1041.1 / 964.9,
  21435. bottom: 53.7 / 1096.6
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(28.75, "feet"),
  21443. default: true
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21449. {
  21450. side: {
  21451. height: math.unit(25.5, "feet"),
  21452. weight: math.unit(23000, "kg"),
  21453. name: "Side",
  21454. image: {
  21455. source: "./media/characters/kanara/side.svg"
  21456. }
  21457. },
  21458. },
  21459. [
  21460. {
  21461. name: "Normal",
  21462. height: math.unit(25.5, "feet"),
  21463. default: true
  21464. },
  21465. ]
  21466. ))
  21467. characterMakers.push(() => makeCharacter(
  21468. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21469. {
  21470. side: {
  21471. height: math.unit(10, "feet"),
  21472. weight: math.unit(1000, "kg"),
  21473. name: "Side",
  21474. image: {
  21475. source: "./media/characters/ereus/side.svg",
  21476. extra: 1157 / 959,
  21477. bottom: 153 / 1312.5
  21478. }
  21479. },
  21480. },
  21481. [
  21482. {
  21483. name: "Normal",
  21484. height: math.unit(10, "feet"),
  21485. default: true
  21486. },
  21487. ]
  21488. ))
  21489. characterMakers.push(() => makeCharacter(
  21490. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21491. {
  21492. side: {
  21493. height: math.unit(4.5, "feet"),
  21494. weight: math.unit(500, "lb"),
  21495. name: "Side",
  21496. image: {
  21497. source: "./media/characters/e-ter/side.svg",
  21498. extra: 1550 / 1248,
  21499. bottom: 146 / 1694
  21500. }
  21501. },
  21502. },
  21503. [
  21504. {
  21505. name: "Normal",
  21506. height: math.unit(4.5, "feet"),
  21507. default: true
  21508. },
  21509. ]
  21510. ))
  21511. characterMakers.push(() => makeCharacter(
  21512. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21513. {
  21514. side: {
  21515. height: math.unit(9.7, "feet"),
  21516. weight: math.unit(4000, "kg"),
  21517. name: "Side",
  21518. image: {
  21519. source: "./media/characters/yamie/side.svg"
  21520. }
  21521. },
  21522. },
  21523. [
  21524. {
  21525. name: "Normal",
  21526. height: math.unit(9.7, "feet"),
  21527. default: true
  21528. },
  21529. ]
  21530. ))
  21531. characterMakers.push(() => makeCharacter(
  21532. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21533. {
  21534. front: {
  21535. height: math.unit(50, "feet"),
  21536. weight: math.unit(50000, "kg"),
  21537. name: "Front",
  21538. image: {
  21539. source: "./media/characters/anders/front.svg",
  21540. extra: 570 / 539,
  21541. bottom: 14.7 / 586.7
  21542. }
  21543. },
  21544. },
  21545. [
  21546. {
  21547. name: "Large",
  21548. height: math.unit(50, "feet")
  21549. },
  21550. {
  21551. name: "Macro",
  21552. height: math.unit(2000, "feet"),
  21553. default: true
  21554. },
  21555. {
  21556. name: "Megamacro",
  21557. height: math.unit(12, "miles")
  21558. },
  21559. ]
  21560. ))
  21561. characterMakers.push(() => makeCharacter(
  21562. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21563. {
  21564. front: {
  21565. height: math.unit(7 + 2 / 12, "feet"),
  21566. weight: math.unit(300, "lb"),
  21567. name: "Front",
  21568. image: {
  21569. source: "./media/characters/reban/front.svg",
  21570. extra: 516 / 487,
  21571. bottom: 42.82 / 558.356
  21572. }
  21573. },
  21574. dick: {
  21575. height: math.unit(7 / 5, "feet"),
  21576. name: "Dick",
  21577. image: {
  21578. source: "./media/characters/reban/dick.svg"
  21579. }
  21580. },
  21581. },
  21582. [
  21583. {
  21584. name: "Natural Height",
  21585. height: math.unit(7 + 2 / 12, "feet")
  21586. },
  21587. {
  21588. name: "Macro",
  21589. height: math.unit(500, "feet"),
  21590. default: true
  21591. },
  21592. {
  21593. name: "Canon Height",
  21594. height: math.unit(50, "AU")
  21595. },
  21596. ]
  21597. ))
  21598. characterMakers.push(() => makeCharacter(
  21599. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21600. {
  21601. front: {
  21602. height: math.unit(6, "feet"),
  21603. weight: math.unit(150, "lb"),
  21604. name: "Front",
  21605. image: {
  21606. source: "./media/characters/terrance-keayes/front.svg",
  21607. extra: 1.005,
  21608. bottom: 151 / 1615
  21609. }
  21610. },
  21611. side: {
  21612. height: math.unit(6, "feet"),
  21613. weight: math.unit(150, "lb"),
  21614. name: "Side",
  21615. image: {
  21616. source: "./media/characters/terrance-keayes/side.svg",
  21617. extra: 1.005,
  21618. bottom: 129.4 / 1544
  21619. }
  21620. },
  21621. back: {
  21622. height: math.unit(6, "feet"),
  21623. weight: math.unit(150, "lb"),
  21624. name: "Back",
  21625. image: {
  21626. source: "./media/characters/terrance-keayes/back.svg",
  21627. extra: 1.005,
  21628. bottom: 58.4 / 1557.3
  21629. }
  21630. },
  21631. dick: {
  21632. height: math.unit(6 * 0.208, "feet"),
  21633. name: "Dick",
  21634. image: {
  21635. source: "./media/characters/terrance-keayes/dick.svg"
  21636. }
  21637. },
  21638. },
  21639. [
  21640. {
  21641. name: "Canon Height",
  21642. height: math.unit(35, "miles"),
  21643. default: true
  21644. },
  21645. ]
  21646. ))
  21647. characterMakers.push(() => makeCharacter(
  21648. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21649. {
  21650. front: {
  21651. height: math.unit(6, "feet"),
  21652. weight: math.unit(150, "lb"),
  21653. name: "Front",
  21654. image: {
  21655. source: "./media/characters/ofelia/front.svg",
  21656. extra: 546 / 541,
  21657. bottom: 39 / 583
  21658. }
  21659. },
  21660. back: {
  21661. height: math.unit(6, "feet"),
  21662. weight: math.unit(150, "lb"),
  21663. name: "Back",
  21664. image: {
  21665. source: "./media/characters/ofelia/back.svg",
  21666. extra: 564 / 559.5,
  21667. bottom: 8.69 / 573.02
  21668. }
  21669. },
  21670. maw: {
  21671. height: math.unit(1, "feet"),
  21672. name: "Maw",
  21673. image: {
  21674. source: "./media/characters/ofelia/maw.svg"
  21675. }
  21676. },
  21677. foot: {
  21678. height: math.unit(1.949, "feet"),
  21679. name: "Foot",
  21680. image: {
  21681. source: "./media/characters/ofelia/foot.svg"
  21682. }
  21683. },
  21684. },
  21685. [
  21686. {
  21687. name: "Canon Height",
  21688. height: math.unit(2000, "miles"),
  21689. default: true
  21690. },
  21691. ]
  21692. ))
  21693. characterMakers.push(() => makeCharacter(
  21694. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21695. {
  21696. front: {
  21697. height: math.unit(6, "feet"),
  21698. weight: math.unit(150, "lb"),
  21699. name: "Front",
  21700. image: {
  21701. source: "./media/characters/samuel/front.svg",
  21702. extra: 265 / 258,
  21703. bottom: 2 / 266.1566
  21704. }
  21705. },
  21706. },
  21707. [
  21708. {
  21709. name: "Macro",
  21710. height: math.unit(100, "feet"),
  21711. default: true
  21712. },
  21713. {
  21714. name: "Full Size",
  21715. height: math.unit(1000, "miles")
  21716. },
  21717. ]
  21718. ))
  21719. characterMakers.push(() => makeCharacter(
  21720. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21721. {
  21722. front: {
  21723. height: math.unit(6, "feet"),
  21724. weight: math.unit(300, "lb"),
  21725. name: "Front",
  21726. image: {
  21727. source: "./media/characters/beishir-kiel/front.svg",
  21728. extra: 569 / 547,
  21729. bottom: 41.9 / 609
  21730. }
  21731. },
  21732. maw: {
  21733. height: math.unit(6 * 0.202, "feet"),
  21734. name: "Maw",
  21735. image: {
  21736. source: "./media/characters/beishir-kiel/maw.svg"
  21737. }
  21738. },
  21739. },
  21740. [
  21741. {
  21742. name: "Macro",
  21743. height: math.unit(300, "feet"),
  21744. default: true
  21745. },
  21746. ]
  21747. ))
  21748. characterMakers.push(() => makeCharacter(
  21749. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21750. {
  21751. front: {
  21752. height: math.unit(5 + 8 / 12, "feet"),
  21753. weight: math.unit(120, "lb"),
  21754. name: "Front",
  21755. image: {
  21756. source: "./media/characters/logan-grey/front.svg",
  21757. extra: 2539 / 2393,
  21758. bottom: 97.6 / 2636.37
  21759. }
  21760. },
  21761. frontAlt: {
  21762. height: math.unit(5 + 8 / 12, "feet"),
  21763. weight: math.unit(120, "lb"),
  21764. name: "Front (Alt)",
  21765. image: {
  21766. source: "./media/characters/logan-grey/front-alt.svg",
  21767. extra: 958 / 893,
  21768. bottom: 15 / 970.768
  21769. }
  21770. },
  21771. back: {
  21772. height: math.unit(5 + 8 / 12, "feet"),
  21773. weight: math.unit(120, "lb"),
  21774. name: "Back",
  21775. image: {
  21776. source: "./media/characters/logan-grey/back.svg",
  21777. extra: 958 / 893,
  21778. bottom: 2.1881 / 970.9788
  21779. }
  21780. },
  21781. dick: {
  21782. height: math.unit(1.437, "feet"),
  21783. name: "Dick",
  21784. image: {
  21785. source: "./media/characters/logan-grey/dick.svg"
  21786. }
  21787. },
  21788. },
  21789. [
  21790. {
  21791. name: "Normal",
  21792. height: math.unit(5 + 8 / 12, "feet")
  21793. },
  21794. {
  21795. name: "The 500 Foot Femboy",
  21796. height: math.unit(500, "feet"),
  21797. default: true
  21798. },
  21799. {
  21800. name: "Megmacro",
  21801. height: math.unit(20, "miles")
  21802. },
  21803. ]
  21804. ))
  21805. characterMakers.push(() => makeCharacter(
  21806. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21807. {
  21808. front: {
  21809. height: math.unit(8 + 2 / 12, "feet"),
  21810. weight: math.unit(275, "lb"),
  21811. name: "Front",
  21812. image: {
  21813. source: "./media/characters/draganta/front.svg",
  21814. extra: 1177 / 1135,
  21815. bottom: 33.46 / 1212.1
  21816. }
  21817. },
  21818. },
  21819. [
  21820. {
  21821. name: "Normal",
  21822. height: math.unit(8 + 6 / 12, "feet"),
  21823. default: true
  21824. },
  21825. {
  21826. name: "Macro",
  21827. height: math.unit(150, "feet")
  21828. },
  21829. {
  21830. name: "Megamacro",
  21831. height: math.unit(1000, "miles")
  21832. },
  21833. ]
  21834. ))
  21835. characterMakers.push(() => makeCharacter(
  21836. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21837. {
  21838. front: {
  21839. height: math.unit(1.72, "m"),
  21840. weight: math.unit(80, "lb"),
  21841. name: "Front",
  21842. image: {
  21843. source: "./media/characters/voski/front.svg",
  21844. extra: 2076.22 / 2022.4,
  21845. bottom: 102.7 / 2177.3866
  21846. }
  21847. },
  21848. frontNsfw: {
  21849. height: math.unit(1.72, "m"),
  21850. weight: math.unit(80, "lb"),
  21851. name: "Front (NSFW)",
  21852. image: {
  21853. source: "./media/characters/voski/front-nsfw.svg",
  21854. extra: 2076.22 / 2022.4,
  21855. bottom: 102.7 / 2177.3866
  21856. }
  21857. },
  21858. back: {
  21859. height: math.unit(1.72, "m"),
  21860. weight: math.unit(80, "lb"),
  21861. name: "Back",
  21862. image: {
  21863. source: "./media/characters/voski/back.svg",
  21864. extra: 2104 / 2051,
  21865. bottom: 10.45 / 2113.63
  21866. }
  21867. },
  21868. },
  21869. [
  21870. {
  21871. name: "Normal",
  21872. height: math.unit(1.72, "m")
  21873. },
  21874. {
  21875. name: "Macro",
  21876. height: math.unit(55, "m"),
  21877. default: true
  21878. },
  21879. {
  21880. name: "Macro+",
  21881. height: math.unit(300, "m")
  21882. },
  21883. {
  21884. name: "Macro++",
  21885. height: math.unit(700, "m")
  21886. },
  21887. {
  21888. name: "Macro+++",
  21889. height: math.unit(4500, "m")
  21890. },
  21891. {
  21892. name: "Macro++++",
  21893. height: math.unit(45, "km")
  21894. },
  21895. {
  21896. name: "Macro+++++",
  21897. height: math.unit(1220, "km")
  21898. },
  21899. ]
  21900. ))
  21901. characterMakers.push(() => makeCharacter(
  21902. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21903. {
  21904. front: {
  21905. height: math.unit(2.3, "m"),
  21906. weight: math.unit(304, "kg"),
  21907. name: "Front",
  21908. image: {
  21909. source: "./media/characters/icowom-lee/front.svg",
  21910. extra: 985 / 955,
  21911. bottom: 25.4 / 1012
  21912. }
  21913. },
  21914. fronttentacles: {
  21915. height: math.unit(2.3, "m"),
  21916. weight: math.unit(304, "kg"),
  21917. name: "Front-tentacles",
  21918. image: {
  21919. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21920. extra: 985 / 955,
  21921. bottom: 25.4 / 1012
  21922. }
  21923. },
  21924. back: {
  21925. height: math.unit(2.3, "m"),
  21926. weight: math.unit(304, "kg"),
  21927. name: "Back",
  21928. image: {
  21929. source: "./media/characters/icowom-lee/back.svg",
  21930. extra: 975 / 954,
  21931. bottom: 9.5 / 985
  21932. }
  21933. },
  21934. backtentacles: {
  21935. height: math.unit(2.3, "m"),
  21936. weight: math.unit(304, "kg"),
  21937. name: "Back-tentacles",
  21938. image: {
  21939. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21940. extra: 975 / 954,
  21941. bottom: 9.5 / 985
  21942. }
  21943. },
  21944. frontDressed: {
  21945. height: math.unit(2.3, "m"),
  21946. weight: math.unit(304, "kg"),
  21947. name: "Front (Dressed)",
  21948. image: {
  21949. source: "./media/characters/icowom-lee/front-dressed.svg",
  21950. extra: 3076 / 2933,
  21951. bottom: 51.4 / 3125.1889
  21952. }
  21953. },
  21954. rump: {
  21955. height: math.unit(0.776, "meters"),
  21956. name: "Rump",
  21957. image: {
  21958. source: "./media/characters/icowom-lee/rump.svg"
  21959. }
  21960. },
  21961. genitals: {
  21962. height: math.unit(0.78, "meters"),
  21963. name: "Genitals",
  21964. image: {
  21965. source: "./media/characters/icowom-lee/genitals.svg"
  21966. }
  21967. },
  21968. },
  21969. [
  21970. {
  21971. name: "Normal",
  21972. height: math.unit(2.3, "meters"),
  21973. default: true
  21974. },
  21975. {
  21976. name: "Macro",
  21977. height: math.unit(94, "meters"),
  21978. default: true
  21979. },
  21980. ]
  21981. ))
  21982. characterMakers.push(() => makeCharacter(
  21983. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21984. {
  21985. front: {
  21986. height: math.unit(22, "meters"),
  21987. weight: math.unit(21000, "kg"),
  21988. name: "Front",
  21989. image: {
  21990. source: "./media/characters/shock-diamond/front.svg",
  21991. extra: 2204 / 2053,
  21992. bottom: 65 / 2239.47
  21993. }
  21994. },
  21995. frontNude: {
  21996. height: math.unit(22, "meters"),
  21997. weight: math.unit(21000, "kg"),
  21998. name: "Front (Nude)",
  21999. image: {
  22000. source: "./media/characters/shock-diamond/front-nude.svg",
  22001. extra: 2514 / 2285,
  22002. bottom: 13 / 2527.56
  22003. }
  22004. },
  22005. },
  22006. [
  22007. {
  22008. name: "Normal",
  22009. height: math.unit(3, "meters")
  22010. },
  22011. {
  22012. name: "Macro",
  22013. height: math.unit(22, "meters"),
  22014. default: true
  22015. },
  22016. ]
  22017. ))
  22018. characterMakers.push(() => makeCharacter(
  22019. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22020. {
  22021. front: {
  22022. height: math.unit(5 + 4 / 12, "feet"),
  22023. weight: math.unit(120, "lb"),
  22024. name: "Front",
  22025. image: {
  22026. source: "./media/characters/rory/front.svg",
  22027. extra: 589 / 556,
  22028. bottom: 45.7 / 635.76
  22029. }
  22030. },
  22031. frontNude: {
  22032. height: math.unit(5 + 4 / 12, "feet"),
  22033. weight: math.unit(120, "lb"),
  22034. name: "Front (Nude)",
  22035. image: {
  22036. source: "./media/characters/rory/front-nude.svg",
  22037. extra: 589 / 556,
  22038. bottom: 45.7 / 635.76
  22039. }
  22040. },
  22041. side: {
  22042. height: math.unit(5 + 4 / 12, "feet"),
  22043. weight: math.unit(120, "lb"),
  22044. name: "Side",
  22045. image: {
  22046. source: "./media/characters/rory/side.svg",
  22047. extra: 597 / 564,
  22048. bottom: 55 / 653
  22049. }
  22050. },
  22051. back: {
  22052. height: math.unit(5 + 4 / 12, "feet"),
  22053. weight: math.unit(120, "lb"),
  22054. name: "Back",
  22055. image: {
  22056. source: "./media/characters/rory/back.svg",
  22057. extra: 620 / 585,
  22058. bottom: 8.86 / 630.43
  22059. }
  22060. },
  22061. dick: {
  22062. height: math.unit(0.86, "feet"),
  22063. name: "Dick",
  22064. image: {
  22065. source: "./media/characters/rory/dick.svg"
  22066. }
  22067. },
  22068. },
  22069. [
  22070. {
  22071. name: "Normal",
  22072. height: math.unit(5 + 4 / 12, "feet"),
  22073. default: true
  22074. },
  22075. {
  22076. name: "Macro",
  22077. height: math.unit(100, "feet")
  22078. },
  22079. {
  22080. name: "Macro+",
  22081. height: math.unit(140, "feet")
  22082. },
  22083. {
  22084. name: "Macro++",
  22085. height: math.unit(300, "feet")
  22086. },
  22087. ]
  22088. ))
  22089. characterMakers.push(() => makeCharacter(
  22090. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22091. {
  22092. front: {
  22093. height: math.unit(5 + 9 / 12, "feet"),
  22094. weight: math.unit(190, "lb"),
  22095. name: "Front",
  22096. image: {
  22097. source: "./media/characters/sprisk/front.svg",
  22098. extra: 1225 / 1180,
  22099. bottom: 42.7 / 1266.4
  22100. }
  22101. },
  22102. frontNsfw: {
  22103. height: math.unit(5 + 9 / 12, "feet"),
  22104. weight: math.unit(190, "lb"),
  22105. name: "Front (NSFW)",
  22106. image: {
  22107. source: "./media/characters/sprisk/front-nsfw.svg",
  22108. extra: 1225 / 1180,
  22109. bottom: 42.7 / 1266.4
  22110. }
  22111. },
  22112. back: {
  22113. height: math.unit(5 + 9 / 12, "feet"),
  22114. weight: math.unit(190, "lb"),
  22115. name: "Back",
  22116. image: {
  22117. source: "./media/characters/sprisk/back.svg",
  22118. extra: 1247 / 1200,
  22119. bottom: 5.6 / 1253.04
  22120. }
  22121. },
  22122. },
  22123. [
  22124. {
  22125. name: "Tiny",
  22126. height: math.unit(2, "inches")
  22127. },
  22128. {
  22129. name: "Normal",
  22130. height: math.unit(5 + 9 / 12, "feet"),
  22131. default: true
  22132. },
  22133. {
  22134. name: "Mini Macro",
  22135. height: math.unit(18, "feet")
  22136. },
  22137. {
  22138. name: "Macro",
  22139. height: math.unit(100, "feet")
  22140. },
  22141. {
  22142. name: "MACRO",
  22143. height: math.unit(50, "miles")
  22144. },
  22145. {
  22146. name: "M A C R O",
  22147. height: math.unit(300, "miles")
  22148. },
  22149. ]
  22150. ))
  22151. characterMakers.push(() => makeCharacter(
  22152. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22153. {
  22154. side: {
  22155. height: math.unit(15.6, "meters"),
  22156. weight: math.unit(700000, "kg"),
  22157. name: "Side",
  22158. image: {
  22159. source: "./media/characters/bunsen/side.svg",
  22160. extra: 1644 / 358
  22161. }
  22162. },
  22163. foot: {
  22164. height: math.unit(1.611 * 1644 / 358, "meter"),
  22165. name: "Foot",
  22166. image: {
  22167. source: "./media/characters/bunsen/foot.svg"
  22168. }
  22169. },
  22170. },
  22171. [
  22172. {
  22173. name: "Small",
  22174. height: math.unit(10, "feet")
  22175. },
  22176. {
  22177. name: "Normal",
  22178. height: math.unit(15.6, "meters"),
  22179. default: true
  22180. },
  22181. ]
  22182. ))
  22183. characterMakers.push(() => makeCharacter(
  22184. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22185. {
  22186. front: {
  22187. height: math.unit(4 + 11 / 12, "feet"),
  22188. weight: math.unit(140, "lb"),
  22189. name: "Front",
  22190. image: {
  22191. source: "./media/characters/sesh/front.svg",
  22192. extra: 3420 / 3231,
  22193. bottom: 72 / 3949.5
  22194. }
  22195. },
  22196. },
  22197. [
  22198. {
  22199. name: "Normal",
  22200. height: math.unit(4 + 11 / 12, "feet")
  22201. },
  22202. {
  22203. name: "Grown",
  22204. height: math.unit(15, "feet"),
  22205. default: true
  22206. },
  22207. {
  22208. name: "Macro",
  22209. height: math.unit(1500, "feet")
  22210. },
  22211. {
  22212. name: "Megamacro",
  22213. height: math.unit(30, "miles")
  22214. },
  22215. {
  22216. name: "Continental",
  22217. height: math.unit(3000, "miles")
  22218. },
  22219. {
  22220. name: "Gravity Mass",
  22221. height: math.unit(300000, "miles")
  22222. },
  22223. {
  22224. name: "Planet Buster",
  22225. height: math.unit(30000000, "miles")
  22226. },
  22227. {
  22228. name: "Big",
  22229. height: math.unit(3000000000, "miles")
  22230. },
  22231. ]
  22232. ))
  22233. characterMakers.push(() => makeCharacter(
  22234. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22235. {
  22236. front: {
  22237. height: math.unit(9, "feet"),
  22238. weight: math.unit(350, "lb"),
  22239. name: "Front",
  22240. image: {
  22241. source: "./media/characters/pepper/front.svg",
  22242. extra: 1448 / 1312,
  22243. bottom: 9.4 / 1457.88
  22244. }
  22245. },
  22246. back: {
  22247. height: math.unit(9, "feet"),
  22248. weight: math.unit(350, "lb"),
  22249. name: "Back",
  22250. image: {
  22251. source: "./media/characters/pepper/back.svg",
  22252. extra: 1423 / 1300,
  22253. bottom: 4.6 / 1429
  22254. }
  22255. },
  22256. maw: {
  22257. height: math.unit(0.932, "feet"),
  22258. name: "Maw",
  22259. image: {
  22260. source: "./media/characters/pepper/maw.svg"
  22261. }
  22262. },
  22263. },
  22264. [
  22265. {
  22266. name: "Normal",
  22267. height: math.unit(9, "feet"),
  22268. default: true
  22269. },
  22270. ]
  22271. ))
  22272. characterMakers.push(() => makeCharacter(
  22273. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22274. {
  22275. front: {
  22276. height: math.unit(6, "feet"),
  22277. weight: math.unit(150, "lb"),
  22278. name: "Front",
  22279. image: {
  22280. source: "./media/characters/maelstrom/front.svg",
  22281. extra: 2100 / 1883,
  22282. bottom: 94 / 2196.7
  22283. }
  22284. },
  22285. },
  22286. [
  22287. {
  22288. name: "Less Kaiju",
  22289. height: math.unit(200, "feet")
  22290. },
  22291. {
  22292. name: "Kaiju",
  22293. height: math.unit(400, "feet"),
  22294. default: true
  22295. },
  22296. {
  22297. name: "Kaiju-er",
  22298. height: math.unit(600, "feet")
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22304. {
  22305. front: {
  22306. height: math.unit(6 + 5 / 12, "feet"),
  22307. weight: math.unit(180, "lb"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/lexir/front.svg",
  22311. extra: 180 / 172,
  22312. bottom: 12 / 192
  22313. }
  22314. },
  22315. back: {
  22316. height: math.unit(6 + 5 / 12, "feet"),
  22317. weight: math.unit(180, "lb"),
  22318. name: "Back",
  22319. image: {
  22320. source: "./media/characters/lexir/back.svg",
  22321. extra: 183.84 / 175.5,
  22322. bottom: 3.1 / 187
  22323. }
  22324. },
  22325. },
  22326. [
  22327. {
  22328. name: "Very Smal",
  22329. height: math.unit(1, "nm")
  22330. },
  22331. {
  22332. name: "Normal",
  22333. height: math.unit(6 + 5 / 12, "feet"),
  22334. default: true
  22335. },
  22336. {
  22337. name: "Macro",
  22338. height: math.unit(1, "mile")
  22339. },
  22340. {
  22341. name: "Megamacro",
  22342. height: math.unit(50, "miles")
  22343. },
  22344. ]
  22345. ))
  22346. characterMakers.push(() => makeCharacter(
  22347. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22348. {
  22349. front: {
  22350. height: math.unit(1.5, "meters"),
  22351. weight: math.unit(100, "lb"),
  22352. name: "Front",
  22353. image: {
  22354. source: "./media/characters/maksio/front.svg",
  22355. extra: 1549 / 1531,
  22356. bottom: 123.7 / 1674.5429
  22357. }
  22358. },
  22359. back: {
  22360. height: math.unit(1.5, "meters"),
  22361. weight: math.unit(100, "lb"),
  22362. name: "Back",
  22363. image: {
  22364. source: "./media/characters/maksio/back.svg",
  22365. extra: 1541 / 1509,
  22366. bottom: 97 / 1639
  22367. }
  22368. },
  22369. hand: {
  22370. height: math.unit(0.621, "feet"),
  22371. name: "Hand",
  22372. image: {
  22373. source: "./media/characters/maksio/hand.svg"
  22374. }
  22375. },
  22376. foot: {
  22377. height: math.unit(1.611, "feet"),
  22378. name: "Foot",
  22379. image: {
  22380. source: "./media/characters/maksio/foot.svg"
  22381. }
  22382. },
  22383. },
  22384. [
  22385. {
  22386. name: "Shrunken",
  22387. height: math.unit(10, "cm")
  22388. },
  22389. {
  22390. name: "Normal",
  22391. height: math.unit(150, "cm"),
  22392. default: true
  22393. },
  22394. ]
  22395. ))
  22396. characterMakers.push(() => makeCharacter(
  22397. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22398. {
  22399. front: {
  22400. height: math.unit(100, "feet"),
  22401. name: "Front",
  22402. image: {
  22403. source: "./media/characters/erza-bear/front.svg",
  22404. extra: 2449 / 2390,
  22405. bottom: 46 / 2494
  22406. }
  22407. },
  22408. back: {
  22409. height: math.unit(100, "feet"),
  22410. name: "Back",
  22411. image: {
  22412. source: "./media/characters/erza-bear/back.svg",
  22413. extra: 2489 / 2430,
  22414. bottom: 85.4 / 2480
  22415. }
  22416. },
  22417. tail: {
  22418. height: math.unit(42, "feet"),
  22419. name: "Tail",
  22420. image: {
  22421. source: "./media/characters/erza-bear/tail.svg"
  22422. }
  22423. },
  22424. tongue: {
  22425. height: math.unit(8, "feet"),
  22426. name: "Tongue",
  22427. image: {
  22428. source: "./media/characters/erza-bear/tongue.svg"
  22429. }
  22430. },
  22431. dick: {
  22432. height: math.unit(10.5, "feet"),
  22433. name: "Dick",
  22434. image: {
  22435. source: "./media/characters/erza-bear/dick.svg"
  22436. }
  22437. },
  22438. dickVertical: {
  22439. height: math.unit(16.9, "feet"),
  22440. name: "Dick (Vertical)",
  22441. image: {
  22442. source: "./media/characters/erza-bear/dick-vertical.svg"
  22443. }
  22444. },
  22445. },
  22446. [
  22447. {
  22448. name: "Macro",
  22449. height: math.unit(100, "feet"),
  22450. default: true
  22451. },
  22452. ]
  22453. ))
  22454. characterMakers.push(() => makeCharacter(
  22455. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22456. {
  22457. front: {
  22458. height: math.unit(172, "cm"),
  22459. weight: math.unit(73, "kg"),
  22460. name: "Front",
  22461. image: {
  22462. source: "./media/characters/violet-flor/front.svg",
  22463. extra: 1530 / 1442,
  22464. bottom: 61.9 / 1588.8
  22465. }
  22466. },
  22467. back: {
  22468. height: math.unit(180, "cm"),
  22469. weight: math.unit(73, "kg"),
  22470. name: "Back",
  22471. image: {
  22472. source: "./media/characters/violet-flor/back.svg",
  22473. extra: 1692 / 1630,
  22474. bottom: 20 / 1712
  22475. }
  22476. },
  22477. },
  22478. [
  22479. {
  22480. name: "Normal",
  22481. height: math.unit(172, "cm"),
  22482. default: true
  22483. },
  22484. ]
  22485. ))
  22486. characterMakers.push(() => makeCharacter(
  22487. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22488. {
  22489. front: {
  22490. height: math.unit(6, "feet"),
  22491. weight: math.unit(220, "lb"),
  22492. name: "Front",
  22493. image: {
  22494. source: "./media/characters/lynn-rhea/front.svg",
  22495. extra: 310 / 273
  22496. }
  22497. },
  22498. back: {
  22499. height: math.unit(6, "feet"),
  22500. weight: math.unit(220, "lb"),
  22501. name: "Back",
  22502. image: {
  22503. source: "./media/characters/lynn-rhea/back.svg",
  22504. extra: 310 / 273
  22505. }
  22506. },
  22507. dicks: {
  22508. height: math.unit(0.9, "feet"),
  22509. name: "Dicks",
  22510. image: {
  22511. source: "./media/characters/lynn-rhea/dicks.svg"
  22512. }
  22513. },
  22514. slit: {
  22515. height: math.unit(0.4, "feet"),
  22516. name: "Slit",
  22517. image: {
  22518. source: "./media/characters/lynn-rhea/slit.svg"
  22519. }
  22520. },
  22521. },
  22522. [
  22523. {
  22524. name: "Micro",
  22525. height: math.unit(1, "inch")
  22526. },
  22527. {
  22528. name: "Macro",
  22529. height: math.unit(60, "feet"),
  22530. default: true
  22531. },
  22532. {
  22533. name: "Megamacro",
  22534. height: math.unit(2, "miles")
  22535. },
  22536. {
  22537. name: "Gigamacro",
  22538. height: math.unit(3, "earths")
  22539. },
  22540. {
  22541. name: "Galactic",
  22542. height: math.unit(0.8, "galaxies")
  22543. },
  22544. ]
  22545. ))
  22546. characterMakers.push(() => makeCharacter(
  22547. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22548. {
  22549. front: {
  22550. height: math.unit(1600, "feet"),
  22551. weight: math.unit(85758785169, "kg"),
  22552. name: "Front",
  22553. image: {
  22554. source: "./media/characters/valathos/front.svg",
  22555. extra: 1451 / 1339
  22556. }
  22557. },
  22558. },
  22559. [
  22560. {
  22561. name: "Macro",
  22562. height: math.unit(1600, "feet"),
  22563. default: true
  22564. },
  22565. ]
  22566. ))
  22567. characterMakers.push(() => makeCharacter(
  22568. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22569. {
  22570. front: {
  22571. height: math.unit(7 + 5 / 12, "feet"),
  22572. weight: math.unit(300, "lb"),
  22573. name: "Front",
  22574. image: {
  22575. source: "./media/characters/azula/front.svg",
  22576. extra: 3208 / 2880,
  22577. bottom: 80.2 / 3277
  22578. }
  22579. },
  22580. back: {
  22581. height: math.unit(7 + 5 / 12, "feet"),
  22582. weight: math.unit(300, "lb"),
  22583. name: "Back",
  22584. image: {
  22585. source: "./media/characters/azula/back.svg",
  22586. extra: 3169 / 2822,
  22587. bottom: 150.6 / 3321
  22588. }
  22589. },
  22590. },
  22591. [
  22592. {
  22593. name: "Normal",
  22594. height: math.unit(7 + 5 / 12, "feet"),
  22595. default: true
  22596. },
  22597. {
  22598. name: "Big",
  22599. height: math.unit(20, "feet")
  22600. },
  22601. ]
  22602. ))
  22603. characterMakers.push(() => makeCharacter(
  22604. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22605. {
  22606. front: {
  22607. height: math.unit(5 + 1 / 12, "feet"),
  22608. weight: math.unit(110, "lb"),
  22609. name: "Front",
  22610. image: {
  22611. source: "./media/characters/rupert/front.svg",
  22612. extra: 1549 / 1495,
  22613. bottom: 54.2 / 1604.4
  22614. }
  22615. },
  22616. },
  22617. [
  22618. {
  22619. name: "Normal",
  22620. height: math.unit(5 + 1 / 12, "feet"),
  22621. default: true
  22622. },
  22623. ]
  22624. ))
  22625. characterMakers.push(() => makeCharacter(
  22626. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22627. {
  22628. front: {
  22629. height: math.unit(8 + 4 / 12, "feet"),
  22630. weight: math.unit(350, "lb"),
  22631. name: "Front",
  22632. image: {
  22633. source: "./media/characters/sheera-castellar/front.svg",
  22634. extra: 1957 / 1894,
  22635. bottom: 26.97 / 1975.017
  22636. }
  22637. },
  22638. side: {
  22639. height: math.unit(8 + 4 / 12, "feet"),
  22640. weight: math.unit(350, "lb"),
  22641. name: "Side",
  22642. image: {
  22643. source: "./media/characters/sheera-castellar/side.svg",
  22644. extra: 1957 / 1894
  22645. }
  22646. },
  22647. back: {
  22648. height: math.unit(8 + 4 / 12, "feet"),
  22649. weight: math.unit(350, "lb"),
  22650. name: "Back",
  22651. image: {
  22652. source: "./media/characters/sheera-castellar/back.svg",
  22653. extra: 1957 / 1894
  22654. }
  22655. },
  22656. angled: {
  22657. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22658. weight: math.unit(350, "lb"),
  22659. name: "Angled",
  22660. image: {
  22661. source: "./media/characters/sheera-castellar/angled.svg",
  22662. extra: 1807 / 1707,
  22663. bottom: 68 / 1875
  22664. }
  22665. },
  22666. genitals: {
  22667. height: math.unit(2.2, "feet"),
  22668. name: "Genitals",
  22669. image: {
  22670. source: "./media/characters/sheera-castellar/genitals.svg"
  22671. }
  22672. },
  22673. taur: {
  22674. height: math.unit(10 + 6/12, "feet"),
  22675. name: "Taur",
  22676. image: {
  22677. source: "./media/characters/sheera-castellar/taur.svg",
  22678. extra: 2017/1909,
  22679. bottom: 185/2202
  22680. }
  22681. },
  22682. },
  22683. [
  22684. {
  22685. name: "Normal",
  22686. height: math.unit(8 + 4 / 12, "feet")
  22687. },
  22688. {
  22689. name: "Macro",
  22690. height: math.unit(150, "feet"),
  22691. default: true
  22692. },
  22693. {
  22694. name: "Macro+",
  22695. height: math.unit(800, "feet")
  22696. },
  22697. ]
  22698. ))
  22699. characterMakers.push(() => makeCharacter(
  22700. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22701. {
  22702. front: {
  22703. height: math.unit(6, "feet"),
  22704. weight: math.unit(150, "lb"),
  22705. name: "Front",
  22706. image: {
  22707. source: "./media/characters/jaipur/front.svg",
  22708. extra: 3860 / 3731,
  22709. bottom: 287 / 4140
  22710. }
  22711. },
  22712. back: {
  22713. height: math.unit(6, "feet"),
  22714. weight: math.unit(150, "lb"),
  22715. name: "Back",
  22716. image: {
  22717. source: "./media/characters/jaipur/back.svg",
  22718. extra: 4060 / 3930,
  22719. bottom: 151 / 4200
  22720. }
  22721. },
  22722. },
  22723. [
  22724. {
  22725. name: "Normal",
  22726. height: math.unit(1.85, "meters"),
  22727. default: true
  22728. },
  22729. {
  22730. name: "Macro",
  22731. height: math.unit(150, "meters")
  22732. },
  22733. {
  22734. name: "Macro+",
  22735. height: math.unit(0.5, "miles")
  22736. },
  22737. {
  22738. name: "Macro++",
  22739. height: math.unit(2.5, "miles")
  22740. },
  22741. {
  22742. name: "Macro+++",
  22743. height: math.unit(12, "miles")
  22744. },
  22745. {
  22746. name: "Macro++++",
  22747. height: math.unit(120, "miles")
  22748. },
  22749. {
  22750. name: "Macro+++++",
  22751. height: math.unit(1200, "miles")
  22752. },
  22753. ]
  22754. ))
  22755. characterMakers.push(() => makeCharacter(
  22756. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22757. {
  22758. front: {
  22759. height: math.unit(6, "feet"),
  22760. weight: math.unit(150, "lb"),
  22761. name: "Front",
  22762. image: {
  22763. source: "./media/characters/sheila-wolf/front.svg",
  22764. extra: 1931 / 1808,
  22765. bottom: 29.5 / 1960
  22766. }
  22767. },
  22768. dick: {
  22769. height: math.unit(1.464, "feet"),
  22770. name: "Dick",
  22771. image: {
  22772. source: "./media/characters/sheila-wolf/dick.svg"
  22773. }
  22774. },
  22775. muzzle: {
  22776. height: math.unit(0.513, "feet"),
  22777. name: "Muzzle",
  22778. image: {
  22779. source: "./media/characters/sheila-wolf/muzzle.svg"
  22780. }
  22781. },
  22782. },
  22783. [
  22784. {
  22785. name: "Macro",
  22786. height: math.unit(70, "feet"),
  22787. default: true
  22788. },
  22789. ]
  22790. ))
  22791. characterMakers.push(() => makeCharacter(
  22792. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22793. {
  22794. front: {
  22795. height: math.unit(32, "meters"),
  22796. weight: math.unit(300000, "kg"),
  22797. name: "Front",
  22798. image: {
  22799. source: "./media/characters/almor/front.svg",
  22800. extra: 1408 / 1322,
  22801. bottom: 94.6 / 1506.5
  22802. }
  22803. },
  22804. },
  22805. [
  22806. {
  22807. name: "Macro",
  22808. height: math.unit(32, "meters"),
  22809. default: true
  22810. },
  22811. ]
  22812. ))
  22813. characterMakers.push(() => makeCharacter(
  22814. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22815. {
  22816. front: {
  22817. height: math.unit(7, "feet"),
  22818. weight: math.unit(200, "lb"),
  22819. name: "Front",
  22820. image: {
  22821. source: "./media/characters/silver/front.svg",
  22822. extra: 472.1 / 450.5,
  22823. bottom: 26.5 / 499.424
  22824. }
  22825. },
  22826. },
  22827. [
  22828. {
  22829. name: "Normal",
  22830. height: math.unit(7, "feet"),
  22831. default: true
  22832. },
  22833. {
  22834. name: "Macro",
  22835. height: math.unit(800, "feet")
  22836. },
  22837. {
  22838. name: "Megamacro",
  22839. height: math.unit(250, "miles")
  22840. },
  22841. ]
  22842. ))
  22843. characterMakers.push(() => makeCharacter(
  22844. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22845. {
  22846. front: {
  22847. height: math.unit(6, "feet"),
  22848. weight: math.unit(150, "lb"),
  22849. name: "Front",
  22850. image: {
  22851. source: "./media/characters/pliskin/front.svg",
  22852. extra: 1469 / 1359,
  22853. bottom: 70 / 1540
  22854. }
  22855. },
  22856. },
  22857. [
  22858. {
  22859. name: "Micro",
  22860. height: math.unit(3, "inches")
  22861. },
  22862. {
  22863. name: "Normal",
  22864. height: math.unit(5 + 11 / 12, "feet"),
  22865. default: true
  22866. },
  22867. {
  22868. name: "Macro",
  22869. height: math.unit(120, "feet")
  22870. },
  22871. ]
  22872. ))
  22873. characterMakers.push(() => makeCharacter(
  22874. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22875. {
  22876. front: {
  22877. height: math.unit(6, "feet"),
  22878. weight: math.unit(150, "lb"),
  22879. name: "Front",
  22880. image: {
  22881. source: "./media/characters/sammy/front.svg",
  22882. extra: 1193 / 1089,
  22883. bottom: 30.5 / 1226
  22884. }
  22885. },
  22886. },
  22887. [
  22888. {
  22889. name: "Macro",
  22890. height: math.unit(1700, "feet"),
  22891. default: true
  22892. },
  22893. {
  22894. name: "Examacro",
  22895. height: math.unit(2.5e9, "lightyears")
  22896. },
  22897. ]
  22898. ))
  22899. characterMakers.push(() => makeCharacter(
  22900. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22901. {
  22902. front: {
  22903. height: math.unit(21, "meters"),
  22904. weight: math.unit(12, "tonnes"),
  22905. name: "Front",
  22906. image: {
  22907. source: "./media/characters/kuru/front.svg",
  22908. extra: 4301 / 3785,
  22909. bottom: 371.3 / 4691
  22910. }
  22911. },
  22912. },
  22913. [
  22914. {
  22915. name: "Macro",
  22916. height: math.unit(21, "meters"),
  22917. default: true
  22918. },
  22919. ]
  22920. ))
  22921. characterMakers.push(() => makeCharacter(
  22922. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22923. {
  22924. front: {
  22925. height: math.unit(23, "meters"),
  22926. weight: math.unit(12.2, "tonnes"),
  22927. name: "Front",
  22928. image: {
  22929. source: "./media/characters/rakka/front.svg",
  22930. extra: 4670 / 4169,
  22931. bottom: 301 / 4968.7
  22932. }
  22933. },
  22934. },
  22935. [
  22936. {
  22937. name: "Macro",
  22938. height: math.unit(23, "meters"),
  22939. default: true
  22940. },
  22941. ]
  22942. ))
  22943. characterMakers.push(() => makeCharacter(
  22944. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22945. {
  22946. front: {
  22947. height: math.unit(6, "feet"),
  22948. weight: math.unit(150, "lb"),
  22949. name: "Front",
  22950. image: {
  22951. source: "./media/characters/rhys-feline/front.svg",
  22952. extra: 2488 / 2308,
  22953. bottom: 35.67 / 2519.19
  22954. }
  22955. },
  22956. },
  22957. [
  22958. {
  22959. name: "Really Small",
  22960. height: math.unit(1, "nm")
  22961. },
  22962. {
  22963. name: "Micro",
  22964. height: math.unit(4, "inches")
  22965. },
  22966. {
  22967. name: "Normal",
  22968. height: math.unit(4 + 10 / 12, "feet"),
  22969. default: true
  22970. },
  22971. {
  22972. name: "Macro",
  22973. height: math.unit(100, "feet")
  22974. },
  22975. {
  22976. name: "Megamacto",
  22977. height: math.unit(50, "miles")
  22978. },
  22979. ]
  22980. ))
  22981. characterMakers.push(() => makeCharacter(
  22982. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22983. {
  22984. side: {
  22985. height: math.unit(30, "feet"),
  22986. weight: math.unit(35000, "kg"),
  22987. name: "Side",
  22988. image: {
  22989. source: "./media/characters/alydar/side.svg",
  22990. extra: 234 / 222,
  22991. bottom: 6.5 / 241
  22992. }
  22993. },
  22994. front: {
  22995. height: math.unit(30, "feet"),
  22996. weight: math.unit(35000, "kg"),
  22997. name: "Front",
  22998. image: {
  22999. source: "./media/characters/alydar/front.svg",
  23000. extra: 223.37 / 210.2,
  23001. bottom: 22.3 / 246.76
  23002. }
  23003. },
  23004. top: {
  23005. height: math.unit(64.54, "feet"),
  23006. weight: math.unit(35000, "kg"),
  23007. name: "Top",
  23008. image: {
  23009. source: "./media/characters/alydar/top.svg"
  23010. }
  23011. },
  23012. anthro: {
  23013. height: math.unit(30, "feet"),
  23014. weight: math.unit(9000, "kg"),
  23015. name: "Anthro",
  23016. image: {
  23017. source: "./media/characters/alydar/anthro.svg",
  23018. extra: 432 / 421,
  23019. bottom: 7.18 / 440
  23020. }
  23021. },
  23022. maw: {
  23023. height: math.unit(11.693, "feet"),
  23024. name: "Maw",
  23025. image: {
  23026. source: "./media/characters/alydar/maw.svg"
  23027. }
  23028. },
  23029. head: {
  23030. height: math.unit(11.693, "feet"),
  23031. name: "Head",
  23032. image: {
  23033. source: "./media/characters/alydar/head.svg"
  23034. }
  23035. },
  23036. headAlt: {
  23037. height: math.unit(12.861, "feet"),
  23038. name: "Head (Alt)",
  23039. image: {
  23040. source: "./media/characters/alydar/head-alt.svg"
  23041. }
  23042. },
  23043. wing: {
  23044. height: math.unit(20.712, "feet"),
  23045. name: "Wing",
  23046. image: {
  23047. source: "./media/characters/alydar/wing.svg"
  23048. }
  23049. },
  23050. wingFeather: {
  23051. height: math.unit(9.662, "feet"),
  23052. name: "Wing Feather",
  23053. image: {
  23054. source: "./media/characters/alydar/wing-feather.svg"
  23055. }
  23056. },
  23057. countourFeather: {
  23058. height: math.unit(4.154, "feet"),
  23059. name: "Contour Feather",
  23060. image: {
  23061. source: "./media/characters/alydar/contour-feather.svg"
  23062. }
  23063. },
  23064. },
  23065. [
  23066. {
  23067. name: "Diplomatic",
  23068. height: math.unit(13, "feet"),
  23069. default: true
  23070. },
  23071. {
  23072. name: "Small",
  23073. height: math.unit(30, "feet")
  23074. },
  23075. {
  23076. name: "Normal",
  23077. height: math.unit(95, "feet"),
  23078. default: true
  23079. },
  23080. {
  23081. name: "Large",
  23082. height: math.unit(285, "feet")
  23083. },
  23084. {
  23085. name: "Incomprehensible",
  23086. height: math.unit(450, "megameters")
  23087. },
  23088. ]
  23089. ))
  23090. characterMakers.push(() => makeCharacter(
  23091. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23092. {
  23093. side: {
  23094. height: math.unit(11, "feet"),
  23095. weight: math.unit(1750, "kg"),
  23096. name: "Side",
  23097. image: {
  23098. source: "./media/characters/selicia/side.svg",
  23099. extra: 440 / 396,
  23100. bottom: 24.8 / 465.979
  23101. }
  23102. },
  23103. maw: {
  23104. height: math.unit(4.665, "feet"),
  23105. name: "Maw",
  23106. image: {
  23107. source: "./media/characters/selicia/maw.svg"
  23108. }
  23109. },
  23110. },
  23111. [
  23112. {
  23113. name: "Normal",
  23114. height: math.unit(11, "feet"),
  23115. default: true
  23116. },
  23117. ]
  23118. ))
  23119. characterMakers.push(() => makeCharacter(
  23120. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23121. {
  23122. side: {
  23123. height: math.unit(2 + 6 / 12, "feet"),
  23124. weight: math.unit(30, "lb"),
  23125. name: "Side",
  23126. image: {
  23127. source: "./media/characters/layla/side.svg",
  23128. extra: 244 / 188,
  23129. bottom: 18.2 / 262.1
  23130. }
  23131. },
  23132. back: {
  23133. height: math.unit(2 + 6 / 12, "feet"),
  23134. weight: math.unit(30, "lb"),
  23135. name: "Back",
  23136. image: {
  23137. source: "./media/characters/layla/back.svg",
  23138. extra: 308 / 241.5,
  23139. bottom: 8.9 / 316.8
  23140. }
  23141. },
  23142. cumming: {
  23143. height: math.unit(2 + 6 / 12, "feet"),
  23144. weight: math.unit(30, "lb"),
  23145. name: "Cumming",
  23146. image: {
  23147. source: "./media/characters/layla/cumming.svg",
  23148. extra: 342 / 279,
  23149. bottom: 595 / 938
  23150. }
  23151. },
  23152. dickFlaccid: {
  23153. height: math.unit(2.595, "feet"),
  23154. name: "Flaccid Genitals",
  23155. image: {
  23156. source: "./media/characters/layla/dick-flaccid.svg"
  23157. }
  23158. },
  23159. dickErect: {
  23160. height: math.unit(2.359, "feet"),
  23161. name: "Erect Genitals",
  23162. image: {
  23163. source: "./media/characters/layla/dick-erect.svg"
  23164. }
  23165. },
  23166. },
  23167. [
  23168. {
  23169. name: "Micro",
  23170. height: math.unit(1, "inch")
  23171. },
  23172. {
  23173. name: "Small",
  23174. height: math.unit(1, "foot")
  23175. },
  23176. {
  23177. name: "Normal",
  23178. height: math.unit(2 + 6 / 12, "feet"),
  23179. default: true
  23180. },
  23181. {
  23182. name: "Macro",
  23183. height: math.unit(200, "feet")
  23184. },
  23185. {
  23186. name: "Megamacro",
  23187. height: math.unit(1000, "miles")
  23188. },
  23189. {
  23190. name: "Planetary",
  23191. height: math.unit(8000, "miles")
  23192. },
  23193. {
  23194. name: "True Layla",
  23195. height: math.unit(200000 * 7, "multiverses")
  23196. },
  23197. ]
  23198. ))
  23199. characterMakers.push(() => makeCharacter(
  23200. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23201. {
  23202. back: {
  23203. height: math.unit(10.5, "feet"),
  23204. weight: math.unit(800, "lb"),
  23205. name: "Back",
  23206. image: {
  23207. source: "./media/characters/knox/back.svg",
  23208. extra: 1486 / 1089,
  23209. bottom: 107 / 1601.4
  23210. }
  23211. },
  23212. side: {
  23213. height: math.unit(10.5, "feet"),
  23214. weight: math.unit(800, "lb"),
  23215. name: "Side",
  23216. image: {
  23217. source: "./media/characters/knox/side.svg",
  23218. extra: 244 / 218,
  23219. bottom: 14 / 260
  23220. }
  23221. },
  23222. },
  23223. [
  23224. {
  23225. name: "Compact",
  23226. height: math.unit(10.5, "feet"),
  23227. default: true
  23228. },
  23229. {
  23230. name: "Dynamax",
  23231. height: math.unit(210, "feet")
  23232. },
  23233. {
  23234. name: "Full Macro",
  23235. height: math.unit(850, "feet")
  23236. },
  23237. ]
  23238. ))
  23239. characterMakers.push(() => makeCharacter(
  23240. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23241. {
  23242. front: {
  23243. height: math.unit(6, "feet"),
  23244. weight: math.unit(152, "lb"),
  23245. name: "Front",
  23246. image: {
  23247. source: "./media/characters/shin-pikachu/front.svg",
  23248. extra: 1574 / 1480,
  23249. bottom: 53.3 / 1626
  23250. }
  23251. },
  23252. hand: {
  23253. height: math.unit(1.055, "feet"),
  23254. name: "Hand",
  23255. image: {
  23256. source: "./media/characters/shin-pikachu/hand.svg"
  23257. }
  23258. },
  23259. foot: {
  23260. height: math.unit(1.1, "feet"),
  23261. name: "Foot",
  23262. image: {
  23263. source: "./media/characters/shin-pikachu/foot.svg"
  23264. }
  23265. },
  23266. collar: {
  23267. height: math.unit(0.386, "feet"),
  23268. name: "Collar",
  23269. image: {
  23270. source: "./media/characters/shin-pikachu/collar.svg"
  23271. }
  23272. },
  23273. },
  23274. [
  23275. {
  23276. name: "Smallest",
  23277. height: math.unit(0.5, "inches")
  23278. },
  23279. {
  23280. name: "Micro",
  23281. height: math.unit(6, "inches")
  23282. },
  23283. {
  23284. name: "Normal",
  23285. height: math.unit(6, "feet"),
  23286. default: true
  23287. },
  23288. {
  23289. name: "Macro",
  23290. height: math.unit(150, "feet")
  23291. },
  23292. ]
  23293. ))
  23294. characterMakers.push(() => makeCharacter(
  23295. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23296. {
  23297. front: {
  23298. height: math.unit(28, "feet"),
  23299. weight: math.unit(10500, "lb"),
  23300. name: "Front",
  23301. image: {
  23302. source: "./media/characters/kayda/front.svg",
  23303. extra: 1536 / 1428,
  23304. bottom: 68.7 / 1603
  23305. }
  23306. },
  23307. back: {
  23308. height: math.unit(28, "feet"),
  23309. weight: math.unit(10500, "lb"),
  23310. name: "Back",
  23311. image: {
  23312. source: "./media/characters/kayda/back.svg",
  23313. extra: 1557 / 1464,
  23314. bottom: 39.5 / 1597.49
  23315. }
  23316. },
  23317. dick: {
  23318. height: math.unit(3.858, "feet"),
  23319. name: "Dick",
  23320. image: {
  23321. source: "./media/characters/kayda/dick.svg"
  23322. }
  23323. },
  23324. },
  23325. [
  23326. {
  23327. name: "Macro",
  23328. height: math.unit(28, "feet"),
  23329. default: true
  23330. },
  23331. ]
  23332. ))
  23333. characterMakers.push(() => makeCharacter(
  23334. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23335. {
  23336. front: {
  23337. height: math.unit(10 + 11 / 12, "feet"),
  23338. weight: math.unit(1400, "lb"),
  23339. name: "Front",
  23340. image: {
  23341. source: "./media/characters/brian/front.svg",
  23342. extra: 737 / 692,
  23343. bottom: 55.4 / 785
  23344. }
  23345. },
  23346. },
  23347. [
  23348. {
  23349. name: "Normal",
  23350. height: math.unit(10 + 11 / 12, "feet"),
  23351. default: true
  23352. },
  23353. ]
  23354. ))
  23355. characterMakers.push(() => makeCharacter(
  23356. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23357. {
  23358. front: {
  23359. height: math.unit(5 + 8 / 12, "feet"),
  23360. weight: math.unit(140, "lb"),
  23361. name: "Front",
  23362. image: {
  23363. source: "./media/characters/khemri/front.svg",
  23364. extra: 4780 / 4059,
  23365. bottom: 80.1 / 4859.25
  23366. }
  23367. },
  23368. },
  23369. [
  23370. {
  23371. name: "Micro",
  23372. height: math.unit(6, "inches")
  23373. },
  23374. {
  23375. name: "Normal",
  23376. height: math.unit(5 + 8 / 12, "feet"),
  23377. default: true
  23378. },
  23379. ]
  23380. ))
  23381. characterMakers.push(() => makeCharacter(
  23382. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23383. {
  23384. front: {
  23385. height: math.unit(13, "feet"),
  23386. weight: math.unit(1700, "lb"),
  23387. name: "Front",
  23388. image: {
  23389. source: "./media/characters/felix-braveheart/front.svg",
  23390. extra: 1222 / 1157,
  23391. bottom: 53.2 / 1280
  23392. }
  23393. },
  23394. back: {
  23395. height: math.unit(13, "feet"),
  23396. weight: math.unit(1700, "lb"),
  23397. name: "Back",
  23398. image: {
  23399. source: "./media/characters/felix-braveheart/back.svg",
  23400. extra: 1277 / 1203,
  23401. bottom: 50.2 / 1327
  23402. }
  23403. },
  23404. feral: {
  23405. height: math.unit(6, "feet"),
  23406. weight: math.unit(400, "lb"),
  23407. name: "Feral",
  23408. image: {
  23409. source: "./media/characters/felix-braveheart/feral.svg",
  23410. extra: 682 / 625,
  23411. bottom: 6.9 / 688
  23412. }
  23413. },
  23414. },
  23415. [
  23416. {
  23417. name: "Normal",
  23418. height: math.unit(13, "feet"),
  23419. default: true
  23420. },
  23421. ]
  23422. ))
  23423. characterMakers.push(() => makeCharacter(
  23424. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23425. {
  23426. side: {
  23427. height: math.unit(5 + 11 / 12, "feet"),
  23428. weight: math.unit(1400, "lb"),
  23429. name: "Side",
  23430. image: {
  23431. source: "./media/characters/shadow-blade/side.svg",
  23432. extra: 1726 / 1267,
  23433. bottom: 58.4 / 1785
  23434. }
  23435. },
  23436. },
  23437. [
  23438. {
  23439. name: "Normal",
  23440. height: math.unit(5 + 11 / 12, "feet"),
  23441. default: true
  23442. },
  23443. ]
  23444. ))
  23445. characterMakers.push(() => makeCharacter(
  23446. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23447. {
  23448. front: {
  23449. height: math.unit(1 + 6 / 12, "feet"),
  23450. weight: math.unit(25, "lb"),
  23451. name: "Front",
  23452. image: {
  23453. source: "./media/characters/karla-halldor/front.svg",
  23454. extra: 1459 / 1383,
  23455. bottom: 12 / 1472
  23456. }
  23457. },
  23458. },
  23459. [
  23460. {
  23461. name: "Normal",
  23462. height: math.unit(1 + 6 / 12, "feet"),
  23463. default: true
  23464. },
  23465. ]
  23466. ))
  23467. characterMakers.push(() => makeCharacter(
  23468. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23469. {
  23470. front: {
  23471. height: math.unit(6 + 2 / 12, "feet"),
  23472. weight: math.unit(160, "lb"),
  23473. name: "Front",
  23474. image: {
  23475. source: "./media/characters/ariam/front.svg",
  23476. extra: 714 / 617,
  23477. bottom: 23.4 / 737,
  23478. }
  23479. },
  23480. squatting: {
  23481. height: math.unit(4.1, "feet"),
  23482. weight: math.unit(160, "lb"),
  23483. name: "Squatting",
  23484. image: {
  23485. source: "./media/characters/ariam/squatting.svg",
  23486. extra: 2617 / 2112,
  23487. bottom: 61.2 / 2681,
  23488. }
  23489. },
  23490. },
  23491. [
  23492. {
  23493. name: "Normal",
  23494. height: math.unit(6 + 2 / 12, "feet"),
  23495. default: true
  23496. },
  23497. {
  23498. name: "Normal+",
  23499. height: math.unit(4, "meters")
  23500. },
  23501. {
  23502. name: "Macro",
  23503. height: math.unit(50, "meters")
  23504. },
  23505. {
  23506. name: "Macro+",
  23507. height: math.unit(100, "meters")
  23508. },
  23509. {
  23510. name: "Megamacro",
  23511. height: math.unit(20, "km")
  23512. },
  23513. ]
  23514. ))
  23515. characterMakers.push(() => makeCharacter(
  23516. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23517. {
  23518. front: {
  23519. height: math.unit(1.67, "meters"),
  23520. weight: math.unit(140, "lb"),
  23521. name: "Front",
  23522. image: {
  23523. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23524. extra: 438 / 410,
  23525. bottom: 0.75 / 439
  23526. }
  23527. },
  23528. },
  23529. [
  23530. {
  23531. name: "Shrunken",
  23532. height: math.unit(7.6, "cm")
  23533. },
  23534. {
  23535. name: "Human Scale",
  23536. height: math.unit(1.67, "meters")
  23537. },
  23538. {
  23539. name: "Wolxi Scale",
  23540. height: math.unit(36.7, "meters"),
  23541. default: true
  23542. },
  23543. ]
  23544. ))
  23545. characterMakers.push(() => makeCharacter(
  23546. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23547. {
  23548. front: {
  23549. height: math.unit(1.73, "meters"),
  23550. weight: math.unit(240, "lb"),
  23551. name: "Front",
  23552. image: {
  23553. source: "./media/characters/izue-two-mothers/front.svg",
  23554. extra: 469 / 437,
  23555. bottom: 1.24 / 470.6
  23556. }
  23557. },
  23558. },
  23559. [
  23560. {
  23561. name: "Shrunken",
  23562. height: math.unit(7.86, "cm")
  23563. },
  23564. {
  23565. name: "Human Scale",
  23566. height: math.unit(1.73, "meters")
  23567. },
  23568. {
  23569. name: "Wolxi Scale",
  23570. height: math.unit(38, "meters"),
  23571. default: true
  23572. },
  23573. ]
  23574. ))
  23575. characterMakers.push(() => makeCharacter(
  23576. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23577. {
  23578. front: {
  23579. height: math.unit(1.55, "meters"),
  23580. weight: math.unit(120, "lb"),
  23581. name: "Front",
  23582. image: {
  23583. source: "./media/characters/teeku-love-shack/front.svg",
  23584. extra: 387 / 362,
  23585. bottom: 1.51 / 388
  23586. }
  23587. },
  23588. },
  23589. [
  23590. {
  23591. name: "Shrunken",
  23592. height: math.unit(7, "cm")
  23593. },
  23594. {
  23595. name: "Human Scale",
  23596. height: math.unit(1.55, "meters")
  23597. },
  23598. {
  23599. name: "Wolxi Scale",
  23600. height: math.unit(34.1, "meters"),
  23601. default: true
  23602. },
  23603. ]
  23604. ))
  23605. characterMakers.push(() => makeCharacter(
  23606. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23607. {
  23608. front: {
  23609. height: math.unit(1.83, "meters"),
  23610. weight: math.unit(135, "lb"),
  23611. name: "Front",
  23612. image: {
  23613. source: "./media/characters/dejma-the-red/front.svg",
  23614. extra: 480 / 458,
  23615. bottom: 1.8 / 482
  23616. }
  23617. },
  23618. },
  23619. [
  23620. {
  23621. name: "Shrunken",
  23622. height: math.unit(8.3, "cm")
  23623. },
  23624. {
  23625. name: "Human Scale",
  23626. height: math.unit(1.83, "meters")
  23627. },
  23628. {
  23629. name: "Wolxi Scale",
  23630. height: math.unit(40, "meters"),
  23631. default: true
  23632. },
  23633. ]
  23634. ))
  23635. characterMakers.push(() => makeCharacter(
  23636. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23637. {
  23638. front: {
  23639. height: math.unit(1.78, "meters"),
  23640. weight: math.unit(65, "kg"),
  23641. name: "Front",
  23642. image: {
  23643. source: "./media/characters/aki/front.svg",
  23644. extra: 452 / 415
  23645. }
  23646. },
  23647. frontNsfw: {
  23648. height: math.unit(1.78, "meters"),
  23649. weight: math.unit(65, "kg"),
  23650. name: "Front (NSFW)",
  23651. image: {
  23652. source: "./media/characters/aki/front-nsfw.svg",
  23653. extra: 452 / 415
  23654. }
  23655. },
  23656. back: {
  23657. height: math.unit(1.78, "meters"),
  23658. weight: math.unit(65, "kg"),
  23659. name: "Back",
  23660. image: {
  23661. source: "./media/characters/aki/back.svg",
  23662. extra: 452 / 415
  23663. }
  23664. },
  23665. rump: {
  23666. height: math.unit(2.05, "feet"),
  23667. name: "Rump",
  23668. image: {
  23669. source: "./media/characters/aki/rump.svg"
  23670. }
  23671. },
  23672. dick: {
  23673. height: math.unit(0.95, "feet"),
  23674. name: "Dick",
  23675. image: {
  23676. source: "./media/characters/aki/dick.svg"
  23677. }
  23678. },
  23679. },
  23680. [
  23681. {
  23682. name: "Micro",
  23683. height: math.unit(15, "cm")
  23684. },
  23685. {
  23686. name: "Normal",
  23687. height: math.unit(178, "cm"),
  23688. default: true
  23689. },
  23690. {
  23691. name: "Macro",
  23692. height: math.unit(214, "m")
  23693. },
  23694. {
  23695. name: "Macro+",
  23696. height: math.unit(534, "m")
  23697. },
  23698. ]
  23699. ))
  23700. characterMakers.push(() => makeCharacter(
  23701. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23702. {
  23703. front: {
  23704. height: math.unit(5 + 5 / 12, "feet"),
  23705. weight: math.unit(120, "lb"),
  23706. name: "Front",
  23707. image: {
  23708. source: "./media/characters/ari/front.svg",
  23709. extra: 714.5 / 682,
  23710. bottom: 8 / 722.5
  23711. }
  23712. },
  23713. },
  23714. [
  23715. {
  23716. name: "Normal",
  23717. height: math.unit(5 + 5 / 12, "feet")
  23718. },
  23719. {
  23720. name: "Macro",
  23721. height: math.unit(100, "feet"),
  23722. default: true
  23723. },
  23724. {
  23725. name: "Megamacro",
  23726. height: math.unit(100, "miles")
  23727. },
  23728. {
  23729. name: "Gigamacro",
  23730. height: math.unit(80000, "miles")
  23731. },
  23732. ]
  23733. ))
  23734. characterMakers.push(() => makeCharacter(
  23735. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23736. {
  23737. side: {
  23738. height: math.unit(9, "feet"),
  23739. weight: math.unit(400, "kg"),
  23740. name: "Side",
  23741. image: {
  23742. source: "./media/characters/bolt/side.svg",
  23743. extra: 1126 / 896,
  23744. bottom: 60 / 1187.3,
  23745. }
  23746. },
  23747. },
  23748. [
  23749. {
  23750. name: "Micro",
  23751. height: math.unit(5, "inches")
  23752. },
  23753. {
  23754. name: "Normal",
  23755. height: math.unit(9, "feet"),
  23756. default: true
  23757. },
  23758. {
  23759. name: "Macro",
  23760. height: math.unit(700, "feet")
  23761. },
  23762. {
  23763. name: "Max Size",
  23764. height: math.unit(1.52e22, "yottameters")
  23765. },
  23766. ]
  23767. ))
  23768. characterMakers.push(() => makeCharacter(
  23769. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23770. {
  23771. front: {
  23772. height: math.unit(4.53, "meters"),
  23773. weight: math.unit(3, "tons"),
  23774. name: "Front",
  23775. image: {
  23776. source: "./media/characters/draekon-sylviar/front.svg",
  23777. extra: 1228 / 1068,
  23778. bottom: 41 / 1270
  23779. }
  23780. },
  23781. tail: {
  23782. height: math.unit(1.772, "meter"),
  23783. name: "Tail",
  23784. image: {
  23785. source: "./media/characters/draekon-sylviar/tail.svg"
  23786. }
  23787. },
  23788. head: {
  23789. height: math.unit(1.331, "meter"),
  23790. name: "Head",
  23791. image: {
  23792. source: "./media/characters/draekon-sylviar/head.svg"
  23793. }
  23794. },
  23795. hand: {
  23796. height: math.unit(0.564, "meter"),
  23797. name: "Hand",
  23798. image: {
  23799. source: "./media/characters/draekon-sylviar/hand.svg"
  23800. }
  23801. },
  23802. foot: {
  23803. height: math.unit(0.621, "meter"),
  23804. name: "Foot",
  23805. image: {
  23806. source: "./media/characters/draekon-sylviar/foot.svg",
  23807. bottom: 32 / 324
  23808. }
  23809. },
  23810. dick: {
  23811. height: math.unit(61, "cm"),
  23812. name: "Dick",
  23813. image: {
  23814. source: "./media/characters/draekon-sylviar/dick.svg"
  23815. }
  23816. },
  23817. dickseparated: {
  23818. height: math.unit(61, "cm"),
  23819. name: "Dick-separated",
  23820. image: {
  23821. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23822. }
  23823. },
  23824. },
  23825. [
  23826. {
  23827. name: "Small",
  23828. height: math.unit(4.53 / 2, "meters"),
  23829. default: true
  23830. },
  23831. {
  23832. name: "Normal",
  23833. height: math.unit(4.53, "meters"),
  23834. default: true
  23835. },
  23836. {
  23837. name: "Large",
  23838. height: math.unit(4.53 * 2, "meters"),
  23839. },
  23840. ]
  23841. ))
  23842. characterMakers.push(() => makeCharacter(
  23843. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23844. {
  23845. front: {
  23846. height: math.unit(6 + 2 / 12, "feet"),
  23847. weight: math.unit(180, "lb"),
  23848. name: "Front",
  23849. image: {
  23850. source: "./media/characters/brawler/front.svg",
  23851. extra: 3301 / 3027,
  23852. bottom: 138 / 3439
  23853. }
  23854. },
  23855. },
  23856. [
  23857. {
  23858. name: "Normal",
  23859. height: math.unit(6 + 2 / 12, "feet"),
  23860. default: true
  23861. },
  23862. ]
  23863. ))
  23864. characterMakers.push(() => makeCharacter(
  23865. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23866. {
  23867. front: {
  23868. height: math.unit(11, "feet"),
  23869. weight: math.unit(1000, "lb"),
  23870. name: "Front",
  23871. image: {
  23872. source: "./media/characters/alex/front.svg",
  23873. bottom: 44.5 / 620
  23874. }
  23875. },
  23876. },
  23877. [
  23878. {
  23879. name: "Micro",
  23880. height: math.unit(5, "inches")
  23881. },
  23882. {
  23883. name: "Normal",
  23884. height: math.unit(11, "feet"),
  23885. default: true
  23886. },
  23887. {
  23888. name: "Macro",
  23889. height: math.unit(9.5e9, "feet")
  23890. },
  23891. {
  23892. name: "Max Size",
  23893. height: math.unit(1.4e283, "yottameters")
  23894. },
  23895. ]
  23896. ))
  23897. characterMakers.push(() => makeCharacter(
  23898. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23899. {
  23900. female: {
  23901. height: math.unit(29.9, "m"),
  23902. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23903. name: "Female",
  23904. image: {
  23905. source: "./media/characters/zenari/female.svg",
  23906. extra: 3281.6 / 3217,
  23907. bottom: 72.2 / 3353
  23908. }
  23909. },
  23910. male: {
  23911. height: math.unit(27.7, "m"),
  23912. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23913. name: "Male",
  23914. image: {
  23915. source: "./media/characters/zenari/male.svg",
  23916. extra: 3008 / 2991,
  23917. bottom: 54.6 / 3069
  23918. }
  23919. },
  23920. },
  23921. [
  23922. {
  23923. name: "Macro",
  23924. height: math.unit(29.7, "meters"),
  23925. default: true
  23926. },
  23927. ]
  23928. ))
  23929. characterMakers.push(() => makeCharacter(
  23930. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23931. {
  23932. female: {
  23933. height: math.unit(23.8, "m"),
  23934. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23935. name: "Female",
  23936. image: {
  23937. source: "./media/characters/mactarian/female.svg",
  23938. extra: 2662 / 2569,
  23939. bottom: 73 / 2736
  23940. }
  23941. },
  23942. male: {
  23943. height: math.unit(23.8, "m"),
  23944. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23945. name: "Male",
  23946. image: {
  23947. source: "./media/characters/mactarian/male.svg",
  23948. extra: 2673 / 2600,
  23949. bottom: 76 / 2750
  23950. }
  23951. },
  23952. },
  23953. [
  23954. {
  23955. name: "Macro",
  23956. height: math.unit(23.8, "meters"),
  23957. default: true
  23958. },
  23959. ]
  23960. ))
  23961. characterMakers.push(() => makeCharacter(
  23962. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23963. {
  23964. female: {
  23965. height: math.unit(19.3, "m"),
  23966. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23967. name: "Female",
  23968. image: {
  23969. source: "./media/characters/umok/female.svg",
  23970. extra: 2186 / 2078,
  23971. bottom: 87 / 2277
  23972. }
  23973. },
  23974. male: {
  23975. height: math.unit(19.5, "m"),
  23976. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23977. name: "Male",
  23978. image: {
  23979. source: "./media/characters/umok/male.svg",
  23980. extra: 2233 / 2140,
  23981. bottom: 24.4 / 2258
  23982. }
  23983. },
  23984. },
  23985. [
  23986. {
  23987. name: "Macro",
  23988. height: math.unit(19.3, "meters"),
  23989. default: true
  23990. },
  23991. ]
  23992. ))
  23993. characterMakers.push(() => makeCharacter(
  23994. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23995. {
  23996. female: {
  23997. height: math.unit(26.15, "m"),
  23998. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23999. name: "Female",
  24000. image: {
  24001. source: "./media/characters/joraxian/female.svg",
  24002. extra: 2912 / 2824,
  24003. bottom: 36 / 2956
  24004. }
  24005. },
  24006. male: {
  24007. height: math.unit(25.4, "m"),
  24008. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24009. name: "Male",
  24010. image: {
  24011. source: "./media/characters/joraxian/male.svg",
  24012. extra: 2877 / 2721,
  24013. bottom: 82 / 2967
  24014. }
  24015. },
  24016. },
  24017. [
  24018. {
  24019. name: "Macro",
  24020. height: math.unit(26.15, "meters"),
  24021. default: true
  24022. },
  24023. ]
  24024. ))
  24025. characterMakers.push(() => makeCharacter(
  24026. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24027. {
  24028. female: {
  24029. height: math.unit(21.6, "m"),
  24030. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24031. name: "Female",
  24032. image: {
  24033. source: "./media/characters/sthara/female.svg",
  24034. extra: 2516 / 2347,
  24035. bottom: 21.5 / 2537
  24036. }
  24037. },
  24038. male: {
  24039. height: math.unit(24, "m"),
  24040. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24041. name: "Male",
  24042. image: {
  24043. source: "./media/characters/sthara/male.svg",
  24044. extra: 2732 / 2607,
  24045. bottom: 23 / 2732
  24046. }
  24047. },
  24048. },
  24049. [
  24050. {
  24051. name: "Macro",
  24052. height: math.unit(21.6, "meters"),
  24053. default: true
  24054. },
  24055. ]
  24056. ))
  24057. characterMakers.push(() => makeCharacter(
  24058. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24059. {
  24060. front: {
  24061. height: math.unit(6 + 4 / 12, "feet"),
  24062. weight: math.unit(175, "lb"),
  24063. name: "Front",
  24064. image: {
  24065. source: "./media/characters/luka-bryzant/front.svg",
  24066. extra: 311 / 289,
  24067. bottom: 4 / 315
  24068. }
  24069. },
  24070. back: {
  24071. height: math.unit(6 + 4 / 12, "feet"),
  24072. weight: math.unit(175, "lb"),
  24073. name: "Back",
  24074. image: {
  24075. source: "./media/characters/luka-bryzant/back.svg",
  24076. extra: 311 / 289,
  24077. bottom: 3.8 / 313.7
  24078. }
  24079. },
  24080. },
  24081. [
  24082. {
  24083. name: "Micro",
  24084. height: math.unit(10, "inches")
  24085. },
  24086. {
  24087. name: "Normal",
  24088. height: math.unit(6 + 4 / 12, "feet"),
  24089. default: true
  24090. },
  24091. {
  24092. name: "Large",
  24093. height: math.unit(12, "feet")
  24094. },
  24095. ]
  24096. ))
  24097. characterMakers.push(() => makeCharacter(
  24098. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24099. {
  24100. front: {
  24101. height: math.unit(5 + 7 / 12, "feet"),
  24102. weight: math.unit(185, "lb"),
  24103. name: "Front",
  24104. image: {
  24105. source: "./media/characters/aman-aquila/front.svg",
  24106. extra: 1013 / 976,
  24107. bottom: 45.6 / 1057
  24108. }
  24109. },
  24110. side: {
  24111. height: math.unit(5 + 7 / 12, "feet"),
  24112. weight: math.unit(185, "lb"),
  24113. name: "Side",
  24114. image: {
  24115. source: "./media/characters/aman-aquila/side.svg",
  24116. extra: 1054 / 1011,
  24117. bottom: 15 / 1070
  24118. }
  24119. },
  24120. back: {
  24121. height: math.unit(5 + 7 / 12, "feet"),
  24122. weight: math.unit(185, "lb"),
  24123. name: "Back",
  24124. image: {
  24125. source: "./media/characters/aman-aquila/back.svg",
  24126. extra: 1026 / 970,
  24127. bottom: 12 / 1039
  24128. }
  24129. },
  24130. head: {
  24131. height: math.unit(1.211, "feet"),
  24132. name: "Head",
  24133. image: {
  24134. source: "./media/characters/aman-aquila/head.svg",
  24135. }
  24136. },
  24137. },
  24138. [
  24139. {
  24140. name: "Minimicro",
  24141. height: math.unit(0.057, "inches")
  24142. },
  24143. {
  24144. name: "Micro",
  24145. height: math.unit(7, "inches")
  24146. },
  24147. {
  24148. name: "Mini",
  24149. height: math.unit(3 + 7 / 12, "feet")
  24150. },
  24151. {
  24152. name: "Normal",
  24153. height: math.unit(5 + 7 / 12, "feet"),
  24154. default: true
  24155. },
  24156. {
  24157. name: "Macro",
  24158. height: math.unit(157 + 7 / 12, "feet")
  24159. },
  24160. {
  24161. name: "Megamacro",
  24162. height: math.unit(1557 + 7 / 12, "feet")
  24163. },
  24164. {
  24165. name: "Gigamacro",
  24166. height: math.unit(15557 + 7 / 12, "feet")
  24167. },
  24168. ]
  24169. ))
  24170. characterMakers.push(() => makeCharacter(
  24171. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24172. {
  24173. front: {
  24174. height: math.unit(3 + 2 / 12, "inches"),
  24175. weight: math.unit(0.3, "ounces"),
  24176. name: "Front",
  24177. image: {
  24178. source: "./media/characters/hiphae/front.svg",
  24179. extra: 1931 / 1683,
  24180. bottom: 24 / 1955
  24181. }
  24182. },
  24183. },
  24184. [
  24185. {
  24186. name: "Normal",
  24187. height: math.unit(3 + 1 / 2, "inches"),
  24188. default: true
  24189. },
  24190. ]
  24191. ))
  24192. characterMakers.push(() => makeCharacter(
  24193. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24194. {
  24195. front: {
  24196. height: math.unit(5 + 10 / 12, "feet"),
  24197. weight: math.unit(165, "lb"),
  24198. name: "Front",
  24199. image: {
  24200. source: "./media/characters/nicky/front.svg",
  24201. extra: 3144 / 2886,
  24202. bottom: 45.6 / 3192
  24203. }
  24204. },
  24205. back: {
  24206. height: math.unit(5 + 10 / 12, "feet"),
  24207. weight: math.unit(165, "lb"),
  24208. name: "Back",
  24209. image: {
  24210. source: "./media/characters/nicky/back.svg",
  24211. extra: 3055 / 2804,
  24212. bottom: 28.4 / 3087
  24213. }
  24214. },
  24215. frontclothed: {
  24216. height: math.unit(5 + 10 / 12, "feet"),
  24217. weight: math.unit(165, "lb"),
  24218. name: "Front-clothed",
  24219. image: {
  24220. source: "./media/characters/nicky/front-clothed.svg",
  24221. extra: 3184.9 / 2926.9,
  24222. bottom: 86.5 / 3239.9
  24223. }
  24224. },
  24225. foot: {
  24226. height: math.unit(1.16, "feet"),
  24227. name: "Foot",
  24228. image: {
  24229. source: "./media/characters/nicky/foot.svg"
  24230. }
  24231. },
  24232. feet: {
  24233. height: math.unit(1.34, "feet"),
  24234. name: "Feet",
  24235. image: {
  24236. source: "./media/characters/nicky/feet.svg"
  24237. }
  24238. },
  24239. maw: {
  24240. height: math.unit(0.9, "feet"),
  24241. name: "Maw",
  24242. image: {
  24243. source: "./media/characters/nicky/maw.svg"
  24244. }
  24245. },
  24246. },
  24247. [
  24248. {
  24249. name: "Normal",
  24250. height: math.unit(5 + 10 / 12, "feet"),
  24251. default: true
  24252. },
  24253. {
  24254. name: "Macro",
  24255. height: math.unit(60, "feet")
  24256. },
  24257. {
  24258. name: "Megamacro",
  24259. height: math.unit(1, "mile")
  24260. },
  24261. ]
  24262. ))
  24263. characterMakers.push(() => makeCharacter(
  24264. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24265. {
  24266. side: {
  24267. height: math.unit(10, "feet"),
  24268. weight: math.unit(600, "lb"),
  24269. name: "Side",
  24270. image: {
  24271. source: "./media/characters/blair/side.svg",
  24272. bottom: 16.6 / 475,
  24273. extra: 458 / 431
  24274. }
  24275. },
  24276. },
  24277. [
  24278. {
  24279. name: "Micro",
  24280. height: math.unit(8, "inches")
  24281. },
  24282. {
  24283. name: "Normal",
  24284. height: math.unit(10, "feet"),
  24285. default: true
  24286. },
  24287. {
  24288. name: "Macro",
  24289. height: math.unit(180, "feet")
  24290. },
  24291. ]
  24292. ))
  24293. characterMakers.push(() => makeCharacter(
  24294. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24295. {
  24296. front: {
  24297. height: math.unit(5 + 4 / 12, "feet"),
  24298. weight: math.unit(125, "lb"),
  24299. name: "Front",
  24300. image: {
  24301. source: "./media/characters/fisher/front.svg",
  24302. extra: 444 / 390,
  24303. bottom: 2 / 444.8
  24304. }
  24305. },
  24306. },
  24307. [
  24308. {
  24309. name: "Micro",
  24310. height: math.unit(4, "inches")
  24311. },
  24312. {
  24313. name: "Normal",
  24314. height: math.unit(5 + 4 / 12, "feet"),
  24315. default: true
  24316. },
  24317. {
  24318. name: "Macro",
  24319. height: math.unit(100, "feet")
  24320. },
  24321. ]
  24322. ))
  24323. characterMakers.push(() => makeCharacter(
  24324. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24325. {
  24326. front: {
  24327. height: math.unit(6.71, "feet"),
  24328. weight: math.unit(200, "lb"),
  24329. capacity: math.unit(1000000, "people"),
  24330. name: "Front",
  24331. image: {
  24332. source: "./media/characters/gliss/front.svg",
  24333. extra: 2347 / 2231,
  24334. bottom: 113 / 2462
  24335. }
  24336. },
  24337. hammerspaceSize: {
  24338. height: math.unit(6.71 * 717, "feet"),
  24339. weight: math.unit(200, "lb"),
  24340. capacity: math.unit(1000000, "people"),
  24341. name: "Hammerspace Size",
  24342. image: {
  24343. source: "./media/characters/gliss/front.svg",
  24344. extra: 2347 / 2231,
  24345. bottom: 113 / 2462
  24346. }
  24347. },
  24348. },
  24349. [
  24350. {
  24351. name: "Normal",
  24352. height: math.unit(6.71, "feet"),
  24353. default: true
  24354. },
  24355. ]
  24356. ))
  24357. characterMakers.push(() => makeCharacter(
  24358. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24359. {
  24360. side: {
  24361. height: math.unit(1.44, "m"),
  24362. weight: math.unit(80, "kg"),
  24363. name: "Side",
  24364. image: {
  24365. source: "./media/characters/dune-anderson/side.svg",
  24366. bottom: 49 / 1426
  24367. }
  24368. },
  24369. },
  24370. [
  24371. {
  24372. name: "Wolf-sized",
  24373. height: math.unit(1.44, "meters")
  24374. },
  24375. {
  24376. name: "Normal",
  24377. height: math.unit(5.05, "meters"),
  24378. default: true
  24379. },
  24380. {
  24381. name: "Big",
  24382. height: math.unit(14.4, "meters")
  24383. },
  24384. {
  24385. name: "Huge",
  24386. height: math.unit(144, "meters")
  24387. },
  24388. ]
  24389. ))
  24390. characterMakers.push(() => makeCharacter(
  24391. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24392. {
  24393. front: {
  24394. height: math.unit(7, "feet"),
  24395. weight: math.unit(425, "lb"),
  24396. name: "Front",
  24397. image: {
  24398. source: "./media/characters/hind/front.svg",
  24399. extra: 2091 / 1860,
  24400. bottom: 129 / 2220
  24401. }
  24402. },
  24403. back: {
  24404. height: math.unit(7, "feet"),
  24405. weight: math.unit(425, "lb"),
  24406. name: "Back",
  24407. image: {
  24408. source: "./media/characters/hind/back.svg",
  24409. extra: 2091 / 1860,
  24410. bottom: 24.6 / 2309
  24411. }
  24412. },
  24413. tail: {
  24414. height: math.unit(2.8, "feet"),
  24415. name: "Tail",
  24416. image: {
  24417. source: "./media/characters/hind/tail.svg"
  24418. }
  24419. },
  24420. head: {
  24421. height: math.unit(2.55, "feet"),
  24422. name: "Head",
  24423. image: {
  24424. source: "./media/characters/hind/head.svg"
  24425. }
  24426. },
  24427. },
  24428. [
  24429. {
  24430. name: "XS",
  24431. height: math.unit(0.7, "feet")
  24432. },
  24433. {
  24434. name: "Normal",
  24435. height: math.unit(7, "feet"),
  24436. default: true
  24437. },
  24438. {
  24439. name: "XL",
  24440. height: math.unit(70, "feet")
  24441. },
  24442. ]
  24443. ))
  24444. characterMakers.push(() => makeCharacter(
  24445. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24446. {
  24447. front: {
  24448. height: math.unit(6, "feet"),
  24449. weight: math.unit(150, "lb"),
  24450. name: "Front",
  24451. image: {
  24452. source: "./media/characters/dylan-skaven/front.svg",
  24453. extra: 2318 / 2063,
  24454. bottom: 93.4 / 2410
  24455. }
  24456. },
  24457. },
  24458. [
  24459. {
  24460. name: "Nano",
  24461. height: math.unit(1, "mm")
  24462. },
  24463. {
  24464. name: "Micro",
  24465. height: math.unit(1, "cm")
  24466. },
  24467. {
  24468. name: "Normal",
  24469. height: math.unit(2.1, "meters"),
  24470. default: true
  24471. },
  24472. ]
  24473. ))
  24474. characterMakers.push(() => makeCharacter(
  24475. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24476. {
  24477. front: {
  24478. height: math.unit(7 + 5 / 12, "feet"),
  24479. weight: math.unit(357, "lb"),
  24480. name: "Front",
  24481. image: {
  24482. source: "./media/characters/solex-draconov/front.svg",
  24483. extra: 1993 / 1865,
  24484. bottom: 117 / 2111
  24485. }
  24486. },
  24487. },
  24488. [
  24489. {
  24490. name: "Natural Height",
  24491. height: math.unit(7 + 5 / 12, "feet"),
  24492. default: true
  24493. },
  24494. {
  24495. name: "Macro",
  24496. height: math.unit(350, "feet")
  24497. },
  24498. {
  24499. name: "Macro+",
  24500. height: math.unit(1000, "feet")
  24501. },
  24502. {
  24503. name: "Megamacro",
  24504. height: math.unit(20, "km")
  24505. },
  24506. {
  24507. name: "Megamacro+",
  24508. height: math.unit(1000, "km")
  24509. },
  24510. {
  24511. name: "Gigamacro",
  24512. height: math.unit(2.5, "Gm")
  24513. },
  24514. {
  24515. name: "Teramacro",
  24516. height: math.unit(15, "Tm")
  24517. },
  24518. {
  24519. name: "Galactic",
  24520. height: math.unit(30, "Zm")
  24521. },
  24522. {
  24523. name: "Universal",
  24524. height: math.unit(21000, "Ym")
  24525. },
  24526. {
  24527. name: "Omniversal",
  24528. height: math.unit(9.861e50, "Ym")
  24529. },
  24530. {
  24531. name: "Existential",
  24532. height: math.unit(1e300, "meters")
  24533. },
  24534. ]
  24535. ))
  24536. characterMakers.push(() => makeCharacter(
  24537. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24538. {
  24539. side: {
  24540. height: math.unit(25, "feet"),
  24541. weight: math.unit(90000, "lb"),
  24542. name: "Side",
  24543. image: {
  24544. source: "./media/characters/mandarax/side.svg",
  24545. extra: 614 / 332,
  24546. bottom: 55 / 630
  24547. }
  24548. },
  24549. head: {
  24550. height: math.unit(11.4, "feet"),
  24551. name: "Head",
  24552. image: {
  24553. source: "./media/characters/mandarax/head.svg"
  24554. }
  24555. },
  24556. belly: {
  24557. height: math.unit(33, "feet"),
  24558. name: "Belly",
  24559. capacity: math.unit(500, "people"),
  24560. image: {
  24561. source: "./media/characters/mandarax/belly.svg"
  24562. }
  24563. },
  24564. dick: {
  24565. height: math.unit(8.46, "feet"),
  24566. name: "Dick",
  24567. image: {
  24568. source: "./media/characters/mandarax/dick.svg"
  24569. }
  24570. },
  24571. top: {
  24572. height: math.unit(28, "meters"),
  24573. name: "Top",
  24574. image: {
  24575. source: "./media/characters/mandarax/top.svg"
  24576. }
  24577. },
  24578. },
  24579. [
  24580. {
  24581. name: "Normal",
  24582. height: math.unit(25, "feet"),
  24583. default: true
  24584. },
  24585. ]
  24586. ))
  24587. characterMakers.push(() => makeCharacter(
  24588. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24589. {
  24590. front: {
  24591. height: math.unit(5, "feet"),
  24592. weight: math.unit(90, "lb"),
  24593. name: "Front",
  24594. image: {
  24595. source: "./media/characters/pixil/front.svg",
  24596. extra: 2000 / 1618,
  24597. bottom: 12.3 / 2011
  24598. }
  24599. },
  24600. },
  24601. [
  24602. {
  24603. name: "Normal",
  24604. height: math.unit(5, "feet"),
  24605. default: true
  24606. },
  24607. {
  24608. name: "Megamacro",
  24609. height: math.unit(10, "miles"),
  24610. },
  24611. ]
  24612. ))
  24613. characterMakers.push(() => makeCharacter(
  24614. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24615. {
  24616. front: {
  24617. height: math.unit(7 + 2 / 12, "feet"),
  24618. weight: math.unit(200, "lb"),
  24619. name: "Front",
  24620. image: {
  24621. source: "./media/characters/angel/front.svg",
  24622. extra: 1830 / 1737,
  24623. bottom: 22.6 / 1854,
  24624. }
  24625. },
  24626. },
  24627. [
  24628. {
  24629. name: "Normal",
  24630. height: math.unit(7 + 2 / 12, "feet"),
  24631. default: true
  24632. },
  24633. {
  24634. name: "Macro",
  24635. height: math.unit(1000, "feet")
  24636. },
  24637. {
  24638. name: "Megamacro",
  24639. height: math.unit(2, "miles")
  24640. },
  24641. {
  24642. name: "Gigamacro",
  24643. height: math.unit(20, "earths")
  24644. },
  24645. ]
  24646. ))
  24647. characterMakers.push(() => makeCharacter(
  24648. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24649. {
  24650. front: {
  24651. height: math.unit(5, "feet"),
  24652. weight: math.unit(180, "lb"),
  24653. name: "Front",
  24654. image: {
  24655. source: "./media/characters/mekana/front.svg",
  24656. extra: 1671 / 1605,
  24657. bottom: 3.5 / 1691
  24658. }
  24659. },
  24660. side: {
  24661. height: math.unit(5, "feet"),
  24662. weight: math.unit(180, "lb"),
  24663. name: "Side",
  24664. image: {
  24665. source: "./media/characters/mekana/side.svg",
  24666. extra: 1671 / 1605,
  24667. bottom: 3.5 / 1691
  24668. }
  24669. },
  24670. back: {
  24671. height: math.unit(5, "feet"),
  24672. weight: math.unit(180, "lb"),
  24673. name: "Back",
  24674. image: {
  24675. source: "./media/characters/mekana/back.svg",
  24676. extra: 1671 / 1605,
  24677. bottom: 3.5 / 1691
  24678. }
  24679. },
  24680. },
  24681. [
  24682. {
  24683. name: "Normal",
  24684. height: math.unit(5, "feet"),
  24685. default: true
  24686. },
  24687. ]
  24688. ))
  24689. characterMakers.push(() => makeCharacter(
  24690. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24691. {
  24692. front: {
  24693. height: math.unit(4 + 6 / 12, "feet"),
  24694. weight: math.unit(80, "lb"),
  24695. name: "Front",
  24696. image: {
  24697. source: "./media/characters/pixie/front.svg",
  24698. extra: 1924 / 1825,
  24699. bottom: 22.4 / 1946
  24700. }
  24701. },
  24702. },
  24703. [
  24704. {
  24705. name: "Normal",
  24706. height: math.unit(4 + 6 / 12, "feet"),
  24707. default: true
  24708. },
  24709. {
  24710. name: "Macro",
  24711. height: math.unit(40, "feet")
  24712. },
  24713. ]
  24714. ))
  24715. characterMakers.push(() => makeCharacter(
  24716. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24717. {
  24718. front: {
  24719. height: math.unit(2.1, "meters"),
  24720. weight: math.unit(200, "lb"),
  24721. name: "Front",
  24722. image: {
  24723. source: "./media/characters/the-lascivious/front.svg",
  24724. extra: 1 / 0.893,
  24725. bottom: 3.5 / 573.7
  24726. }
  24727. },
  24728. },
  24729. [
  24730. {
  24731. name: "Human Scale",
  24732. height: math.unit(2.1, "meters")
  24733. },
  24734. {
  24735. name: "Wolxi Scale",
  24736. height: math.unit(46.2, "m"),
  24737. default: true
  24738. },
  24739. {
  24740. name: "Boinker of Buildings",
  24741. height: math.unit(10, "km")
  24742. },
  24743. {
  24744. name: "Shagger of Skyscrapers",
  24745. height: math.unit(40, "km")
  24746. },
  24747. {
  24748. name: "Banger of Boroughs",
  24749. height: math.unit(4000, "km")
  24750. },
  24751. {
  24752. name: "Screwer of States",
  24753. height: math.unit(100000, "km")
  24754. },
  24755. {
  24756. name: "Pounder of Planets",
  24757. height: math.unit(2000000, "km")
  24758. },
  24759. ]
  24760. ))
  24761. characterMakers.push(() => makeCharacter(
  24762. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24763. {
  24764. front: {
  24765. height: math.unit(6, "feet"),
  24766. weight: math.unit(150, "lb"),
  24767. name: "Front",
  24768. image: {
  24769. source: "./media/characters/aj/front.svg",
  24770. extra: 2039 / 1562,
  24771. bottom: 40 / 2079
  24772. }
  24773. },
  24774. },
  24775. [
  24776. {
  24777. name: "Normal",
  24778. height: math.unit(11 + 6 / 12, "feet"),
  24779. default: true
  24780. },
  24781. {
  24782. name: "Megamacro",
  24783. height: math.unit(60, "megameters")
  24784. },
  24785. ]
  24786. ))
  24787. characterMakers.push(() => makeCharacter(
  24788. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24789. {
  24790. side: {
  24791. height: math.unit(31 + 8 / 12, "feet"),
  24792. weight: math.unit(75000, "kg"),
  24793. name: "Side",
  24794. image: {
  24795. source: "./media/characters/koros/side.svg",
  24796. extra: 1442 / 1297,
  24797. bottom: 122.7 / 1562
  24798. }
  24799. },
  24800. dicksKingsCrown: {
  24801. height: math.unit(6, "feet"),
  24802. name: "Dicks (King's Crown)",
  24803. image: {
  24804. source: "./media/characters/koros/dicks-kings-crown.svg"
  24805. }
  24806. },
  24807. dicksTailSet: {
  24808. height: math.unit(3, "feet"),
  24809. name: "Dicks (Tail Set)",
  24810. image: {
  24811. source: "./media/characters/koros/dicks-tail-set.svg"
  24812. }
  24813. },
  24814. dickCumming: {
  24815. height: math.unit(7.98, "feet"),
  24816. name: "Dick (Cumming)",
  24817. image: {
  24818. source: "./media/characters/koros/dick-cumming.svg"
  24819. }
  24820. },
  24821. dicksBack: {
  24822. height: math.unit(5.9, "feet"),
  24823. name: "Dicks (Back)",
  24824. image: {
  24825. source: "./media/characters/koros/dicks-back.svg"
  24826. }
  24827. },
  24828. dicksFront: {
  24829. height: math.unit(3.72, "feet"),
  24830. name: "Dicks (Front)",
  24831. image: {
  24832. source: "./media/characters/koros/dicks-front.svg"
  24833. }
  24834. },
  24835. dicksPeeking: {
  24836. height: math.unit(3.0, "feet"),
  24837. name: "Dicks (Peeking)",
  24838. image: {
  24839. source: "./media/characters/koros/dicks-peeking.svg"
  24840. }
  24841. },
  24842. eye: {
  24843. height: math.unit(1.7, "feet"),
  24844. name: "Eye",
  24845. image: {
  24846. source: "./media/characters/koros/eye.svg"
  24847. }
  24848. },
  24849. headFront: {
  24850. height: math.unit(11.69, "feet"),
  24851. name: "Head (Front)",
  24852. image: {
  24853. source: "./media/characters/koros/head-front.svg"
  24854. }
  24855. },
  24856. headSide: {
  24857. height: math.unit(14, "feet"),
  24858. name: "Head (Side)",
  24859. image: {
  24860. source: "./media/characters/koros/head-side.svg"
  24861. }
  24862. },
  24863. leg: {
  24864. height: math.unit(17, "feet"),
  24865. name: "Leg",
  24866. image: {
  24867. source: "./media/characters/koros/leg.svg"
  24868. }
  24869. },
  24870. mawSide: {
  24871. height: math.unit(12.8, "feet"),
  24872. name: "Maw (Side)",
  24873. image: {
  24874. source: "./media/characters/koros/maw-side.svg"
  24875. }
  24876. },
  24877. mawSpitting: {
  24878. height: math.unit(17, "feet"),
  24879. name: "Maw (Spitting)",
  24880. image: {
  24881. source: "./media/characters/koros/maw-spitting.svg"
  24882. }
  24883. },
  24884. slit: {
  24885. height: math.unit(2.8, "feet"),
  24886. name: "Slit",
  24887. image: {
  24888. source: "./media/characters/koros/slit.svg"
  24889. }
  24890. },
  24891. stomach: {
  24892. height: math.unit(6.8, "feet"),
  24893. capacity: math.unit(20, "people"),
  24894. name: "Stomach",
  24895. image: {
  24896. source: "./media/characters/koros/stomach.svg"
  24897. }
  24898. },
  24899. wingspanBottom: {
  24900. height: math.unit(114, "feet"),
  24901. name: "Wingspan (Bottom)",
  24902. image: {
  24903. source: "./media/characters/koros/wingspan-bottom.svg"
  24904. }
  24905. },
  24906. wingspanTop: {
  24907. height: math.unit(104, "feet"),
  24908. name: "Wingspan (Top)",
  24909. image: {
  24910. source: "./media/characters/koros/wingspan-top.svg"
  24911. }
  24912. },
  24913. },
  24914. [
  24915. {
  24916. name: "Normal",
  24917. height: math.unit(31 + 8 / 12, "feet"),
  24918. default: true
  24919. },
  24920. ]
  24921. ))
  24922. characterMakers.push(() => makeCharacter(
  24923. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24924. {
  24925. front: {
  24926. height: math.unit(18 + 5 / 12, "feet"),
  24927. weight: math.unit(3750, "kg"),
  24928. name: "Front",
  24929. image: {
  24930. source: "./media/characters/vexx/front.svg",
  24931. extra: 426 / 396,
  24932. bottom: 31.5 / 458
  24933. }
  24934. },
  24935. maw: {
  24936. height: math.unit(6, "feet"),
  24937. name: "Maw",
  24938. image: {
  24939. source: "./media/characters/vexx/maw.svg"
  24940. }
  24941. },
  24942. },
  24943. [
  24944. {
  24945. name: "Normal",
  24946. height: math.unit(18 + 5 / 12, "feet"),
  24947. default: true
  24948. },
  24949. ]
  24950. ))
  24951. characterMakers.push(() => makeCharacter(
  24952. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24953. {
  24954. front: {
  24955. height: math.unit(17 + 6 / 12, "feet"),
  24956. weight: math.unit(150, "lb"),
  24957. name: "Front",
  24958. image: {
  24959. source: "./media/characters/baadra/front.svg",
  24960. extra: 3137 / 2890,
  24961. bottom: 168.4 / 3305
  24962. }
  24963. },
  24964. back: {
  24965. height: math.unit(17 + 6 / 12, "feet"),
  24966. weight: math.unit(150, "lb"),
  24967. name: "Back",
  24968. image: {
  24969. source: "./media/characters/baadra/back.svg",
  24970. extra: 3142 / 2890,
  24971. bottom: 220 / 3371
  24972. }
  24973. },
  24974. head: {
  24975. height: math.unit(5.45, "feet"),
  24976. name: "Head",
  24977. image: {
  24978. source: "./media/characters/baadra/head.svg"
  24979. }
  24980. },
  24981. headAngry: {
  24982. height: math.unit(4.95, "feet"),
  24983. name: "Head (Angry)",
  24984. image: {
  24985. source: "./media/characters/baadra/head-angry.svg"
  24986. }
  24987. },
  24988. headOpen: {
  24989. height: math.unit(6, "feet"),
  24990. name: "Head (Open)",
  24991. image: {
  24992. source: "./media/characters/baadra/head-open.svg"
  24993. }
  24994. },
  24995. },
  24996. [
  24997. {
  24998. name: "Normal",
  24999. height: math.unit(17 + 6 / 12, "feet"),
  25000. default: true
  25001. },
  25002. ]
  25003. ))
  25004. characterMakers.push(() => makeCharacter(
  25005. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  25006. {
  25007. front: {
  25008. height: math.unit(7 + 3 / 12, "feet"),
  25009. weight: math.unit(180, "lb"),
  25010. name: "Front",
  25011. image: {
  25012. source: "./media/characters/juri/front.svg",
  25013. extra: 1401 / 1237,
  25014. bottom: 18.5 / 1418
  25015. }
  25016. },
  25017. side: {
  25018. height: math.unit(7 + 3 / 12, "feet"),
  25019. weight: math.unit(180, "lb"),
  25020. name: "Side",
  25021. image: {
  25022. source: "./media/characters/juri/side.svg",
  25023. extra: 1424 / 1242,
  25024. bottom: 18.5 / 1447
  25025. }
  25026. },
  25027. sitting: {
  25028. height: math.unit(6, "feet"),
  25029. weight: math.unit(180, "lb"),
  25030. name: "Sitting",
  25031. image: {
  25032. source: "./media/characters/juri/sitting.svg",
  25033. extra: 1270 / 1143,
  25034. bottom: 100 / 1343
  25035. }
  25036. },
  25037. back: {
  25038. height: math.unit(7 + 3 / 12, "feet"),
  25039. weight: math.unit(180, "lb"),
  25040. name: "Back",
  25041. image: {
  25042. source: "./media/characters/juri/back.svg",
  25043. extra: 1377 / 1240,
  25044. bottom: 23.7 / 1405
  25045. }
  25046. },
  25047. maw: {
  25048. height: math.unit(2.8, "feet"),
  25049. name: "Maw",
  25050. image: {
  25051. source: "./media/characters/juri/maw.svg"
  25052. }
  25053. },
  25054. stomach: {
  25055. height: math.unit(0.89, "feet"),
  25056. capacity: math.unit(4, "liters"),
  25057. name: "Stomach",
  25058. image: {
  25059. source: "./media/characters/juri/stomach.svg"
  25060. }
  25061. },
  25062. },
  25063. [
  25064. {
  25065. name: "Normal",
  25066. height: math.unit(7 + 3 / 12, "feet"),
  25067. default: true
  25068. },
  25069. ]
  25070. ))
  25071. characterMakers.push(() => makeCharacter(
  25072. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25073. {
  25074. fox: {
  25075. height: math.unit(5 + 6 / 12, "feet"),
  25076. weight: math.unit(140, "lb"),
  25077. name: "Fox",
  25078. image: {
  25079. source: "./media/characters/maxene-sita/fox.svg",
  25080. extra: 146 / 138,
  25081. bottom: 2.1 / 148.19
  25082. }
  25083. },
  25084. foxLaying: {
  25085. height: math.unit(1.70, "feet"),
  25086. weight: math.unit(140, "lb"),
  25087. name: "Fox (Laying)",
  25088. image: {
  25089. source: "./media/characters/maxene-sita/fox-laying.svg",
  25090. extra: 910 / 572,
  25091. bottom: 71 / 981
  25092. }
  25093. },
  25094. kitsune: {
  25095. height: math.unit(10, "feet"),
  25096. weight: math.unit(800, "lb"),
  25097. name: "Kitsune",
  25098. image: {
  25099. source: "./media/characters/maxene-sita/kitsune.svg",
  25100. extra: 185 / 176,
  25101. bottom: 4.7 / 189.9
  25102. }
  25103. },
  25104. hellhound: {
  25105. height: math.unit(10, "feet"),
  25106. weight: math.unit(700, "lb"),
  25107. name: "Hellhound",
  25108. image: {
  25109. source: "./media/characters/maxene-sita/hellhound.svg",
  25110. extra: 1600 / 1545,
  25111. bottom: 81 / 1681
  25112. }
  25113. },
  25114. },
  25115. [
  25116. {
  25117. name: "Normal",
  25118. height: math.unit(5 + 6 / 12, "feet"),
  25119. default: true
  25120. },
  25121. ]
  25122. ))
  25123. characterMakers.push(() => makeCharacter(
  25124. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25125. {
  25126. front: {
  25127. height: math.unit(3 + 4 / 12, "feet"),
  25128. weight: math.unit(70, "lb"),
  25129. name: "Front",
  25130. image: {
  25131. source: "./media/characters/maia/front.svg",
  25132. extra: 227 / 219.5,
  25133. bottom: 40 / 267
  25134. }
  25135. },
  25136. back: {
  25137. height: math.unit(3 + 4 / 12, "feet"),
  25138. weight: math.unit(70, "lb"),
  25139. name: "Back",
  25140. image: {
  25141. source: "./media/characters/maia/back.svg",
  25142. extra: 237 / 225
  25143. }
  25144. },
  25145. },
  25146. [
  25147. {
  25148. name: "Normal",
  25149. height: math.unit(3 + 4 / 12, "feet"),
  25150. default: true
  25151. },
  25152. ]
  25153. ))
  25154. characterMakers.push(() => makeCharacter(
  25155. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25156. {
  25157. front: {
  25158. height: math.unit(5 + 10 / 12, "feet"),
  25159. weight: math.unit(197, "lb"),
  25160. name: "Front",
  25161. image: {
  25162. source: "./media/characters/jabaro/front.svg",
  25163. extra: 225 / 216,
  25164. bottom: 5.06 / 230
  25165. }
  25166. },
  25167. back: {
  25168. height: math.unit(5 + 10 / 12, "feet"),
  25169. weight: math.unit(197, "lb"),
  25170. name: "Back",
  25171. image: {
  25172. source: "./media/characters/jabaro/back.svg",
  25173. extra: 225 / 219,
  25174. bottom: 1.9 / 227
  25175. }
  25176. },
  25177. },
  25178. [
  25179. {
  25180. name: "Normal",
  25181. height: math.unit(5 + 10 / 12, "feet"),
  25182. default: true
  25183. },
  25184. ]
  25185. ))
  25186. characterMakers.push(() => makeCharacter(
  25187. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25188. {
  25189. front: {
  25190. height: math.unit(5 + 8 / 12, "feet"),
  25191. weight: math.unit(139, "lb"),
  25192. name: "Front",
  25193. image: {
  25194. source: "./media/characters/risa/front.svg",
  25195. extra: 270 / 260,
  25196. bottom: 11.2 / 282
  25197. }
  25198. },
  25199. back: {
  25200. height: math.unit(5 + 8 / 12, "feet"),
  25201. weight: math.unit(139, "lb"),
  25202. name: "Back",
  25203. image: {
  25204. source: "./media/characters/risa/back.svg",
  25205. extra: 264 / 255,
  25206. bottom: 4 / 268
  25207. }
  25208. },
  25209. },
  25210. [
  25211. {
  25212. name: "Normal",
  25213. height: math.unit(5 + 8 / 12, "feet"),
  25214. default: true
  25215. },
  25216. ]
  25217. ))
  25218. characterMakers.push(() => makeCharacter(
  25219. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25220. {
  25221. front: {
  25222. height: math.unit(2 + 11 / 12, "feet"),
  25223. weight: math.unit(30, "lb"),
  25224. name: "Front",
  25225. image: {
  25226. source: "./media/characters/weatley/front.svg",
  25227. bottom: 10.7 / 414,
  25228. extra: 403.5 / 362
  25229. }
  25230. },
  25231. back: {
  25232. height: math.unit(2 + 11 / 12, "feet"),
  25233. weight: math.unit(30, "lb"),
  25234. name: "Back",
  25235. image: {
  25236. source: "./media/characters/weatley/back.svg",
  25237. bottom: 10.7 / 414,
  25238. extra: 403.5 / 362
  25239. }
  25240. },
  25241. },
  25242. [
  25243. {
  25244. name: "Normal",
  25245. height: math.unit(2 + 11 / 12, "feet"),
  25246. default: true
  25247. },
  25248. ]
  25249. ))
  25250. characterMakers.push(() => makeCharacter(
  25251. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25252. {
  25253. front: {
  25254. height: math.unit(5 + 2 / 12, "feet"),
  25255. weight: math.unit(50, "kg"),
  25256. name: "Front",
  25257. image: {
  25258. source: "./media/characters/mercury-crescent/front.svg",
  25259. extra: 1088 / 1033,
  25260. bottom: 18.9 / 1109
  25261. }
  25262. },
  25263. },
  25264. [
  25265. {
  25266. name: "Normal",
  25267. height: math.unit(5 + 2 / 12, "feet"),
  25268. default: true
  25269. },
  25270. ]
  25271. ))
  25272. characterMakers.push(() => makeCharacter(
  25273. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25274. {
  25275. front: {
  25276. height: math.unit(2, "feet"),
  25277. weight: math.unit(15, "kg"),
  25278. name: "Front",
  25279. image: {
  25280. source: "./media/characters/diamond-jones/front.svg",
  25281. bottom: 16 / 568
  25282. }
  25283. },
  25284. },
  25285. [
  25286. {
  25287. name: "Normal",
  25288. height: math.unit(2, "feet"),
  25289. default: true
  25290. },
  25291. ]
  25292. ))
  25293. characterMakers.push(() => makeCharacter(
  25294. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25295. {
  25296. front: {
  25297. height: math.unit(3, "feet"),
  25298. weight: math.unit(30, "kg"),
  25299. name: "Front",
  25300. image: {
  25301. source: "./media/characters/sweet-bit/front.svg",
  25302. extra: 675 / 567,
  25303. bottom: 27.7 / 703
  25304. }
  25305. },
  25306. },
  25307. [
  25308. {
  25309. name: "Normal",
  25310. height: math.unit(3, "feet"),
  25311. default: true
  25312. },
  25313. ]
  25314. ))
  25315. characterMakers.push(() => makeCharacter(
  25316. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25317. {
  25318. side: {
  25319. height: math.unit(9.178, "feet"),
  25320. weight: math.unit(500, "lb"),
  25321. name: "Side",
  25322. image: {
  25323. source: "./media/characters/umbrazen/side.svg",
  25324. extra: 1730 / 1473,
  25325. bottom: 34.6 / 1765
  25326. }
  25327. },
  25328. },
  25329. [
  25330. {
  25331. name: "Normal",
  25332. height: math.unit(9.178, "feet"),
  25333. default: true
  25334. },
  25335. ]
  25336. ))
  25337. characterMakers.push(() => makeCharacter(
  25338. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25339. {
  25340. front: {
  25341. height: math.unit(10, "feet"),
  25342. weight: math.unit(750, "lb"),
  25343. name: "Front",
  25344. image: {
  25345. source: "./media/characters/arlist/front.svg",
  25346. extra: 961 / 778,
  25347. bottom: 6.2 / 986
  25348. }
  25349. },
  25350. },
  25351. [
  25352. {
  25353. name: "Normal",
  25354. height: math.unit(10, "feet"),
  25355. default: true
  25356. },
  25357. ]
  25358. ))
  25359. characterMakers.push(() => makeCharacter(
  25360. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25361. {
  25362. front: {
  25363. height: math.unit(5 + 1 / 12, "feet"),
  25364. weight: math.unit(110, "lb"),
  25365. name: "Front",
  25366. image: {
  25367. source: "./media/characters/aradel/front.svg",
  25368. extra: 324 / 303,
  25369. bottom: 3.6 / 329.4
  25370. }
  25371. },
  25372. },
  25373. [
  25374. {
  25375. name: "Normal",
  25376. height: math.unit(5 + 1 / 12, "feet"),
  25377. default: true
  25378. },
  25379. ]
  25380. ))
  25381. characterMakers.push(() => makeCharacter(
  25382. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25383. {
  25384. front: {
  25385. height: math.unit(3 + 8 / 12, "feet"),
  25386. weight: math.unit(50, "lb"),
  25387. name: "Front",
  25388. image: {
  25389. source: "./media/characters/serryn/front.svg",
  25390. extra: 1792 / 1656,
  25391. bottom: 43.5 / 1840
  25392. }
  25393. },
  25394. },
  25395. [
  25396. {
  25397. name: "Normal",
  25398. height: math.unit(3 + 8 / 12, "feet"),
  25399. default: true
  25400. },
  25401. ]
  25402. ))
  25403. characterMakers.push(() => makeCharacter(
  25404. { name: "Xavier Thyme" },
  25405. {
  25406. front: {
  25407. height: math.unit(7 + 10 / 12, "feet"),
  25408. weight: math.unit(255, "lb"),
  25409. name: "Front",
  25410. image: {
  25411. source: "./media/characters/xavier-thyme/front.svg",
  25412. extra: 3733 / 3642,
  25413. bottom: 131 / 3869
  25414. }
  25415. },
  25416. frontRaven: {
  25417. height: math.unit(7 + 10 / 12, "feet"),
  25418. weight: math.unit(255, "lb"),
  25419. name: "Front (Raven)",
  25420. image: {
  25421. source: "./media/characters/xavier-thyme/front-raven.svg",
  25422. extra: 4385 / 3642,
  25423. bottom: 131 / 4517
  25424. }
  25425. },
  25426. },
  25427. [
  25428. {
  25429. name: "Normal",
  25430. height: math.unit(7 + 10 / 12, "feet"),
  25431. default: true
  25432. },
  25433. ]
  25434. ))
  25435. characterMakers.push(() => makeCharacter(
  25436. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25437. {
  25438. front: {
  25439. height: math.unit(1.6, "m"),
  25440. weight: math.unit(50, "kg"),
  25441. name: "Front",
  25442. image: {
  25443. source: "./media/characters/kiki/front.svg",
  25444. extra: 4682 / 3610,
  25445. bottom: 115 / 4777
  25446. }
  25447. },
  25448. },
  25449. [
  25450. {
  25451. name: "Normal",
  25452. height: math.unit(1.6, "meters"),
  25453. default: true
  25454. },
  25455. ]
  25456. ))
  25457. characterMakers.push(() => makeCharacter(
  25458. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25459. {
  25460. front: {
  25461. height: math.unit(50, "m"),
  25462. weight: math.unit(500, "tonnes"),
  25463. name: "Front",
  25464. image: {
  25465. source: "./media/characters/ryoko/front.svg",
  25466. extra: 4632 / 3926,
  25467. bottom: 193 / 4823
  25468. }
  25469. },
  25470. },
  25471. [
  25472. {
  25473. name: "Normal",
  25474. height: math.unit(50, "meters"),
  25475. default: true
  25476. },
  25477. ]
  25478. ))
  25479. characterMakers.push(() => makeCharacter(
  25480. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25481. {
  25482. front: {
  25483. height: math.unit(30, "m"),
  25484. weight: math.unit(22, "tonnes"),
  25485. name: "Front",
  25486. image: {
  25487. source: "./media/characters/elio/front.svg",
  25488. extra: 4582 / 3720,
  25489. bottom: 236 / 4828
  25490. }
  25491. },
  25492. },
  25493. [
  25494. {
  25495. name: "Normal",
  25496. height: math.unit(30, "meters"),
  25497. default: true
  25498. },
  25499. ]
  25500. ))
  25501. characterMakers.push(() => makeCharacter(
  25502. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25503. {
  25504. front: {
  25505. height: math.unit(6 + 3 / 12, "feet"),
  25506. weight: math.unit(120, "lb"),
  25507. name: "Front",
  25508. image: {
  25509. source: "./media/characters/azura/front.svg",
  25510. extra: 1149 / 1135,
  25511. bottom: 45 / 1194
  25512. }
  25513. },
  25514. frontClothed: {
  25515. height: math.unit(6 + 3 / 12, "feet"),
  25516. weight: math.unit(120, "lb"),
  25517. name: "Front (Clothed)",
  25518. image: {
  25519. source: "./media/characters/azura/front-clothed.svg",
  25520. extra: 1149 / 1135,
  25521. bottom: 45 / 1194
  25522. }
  25523. },
  25524. },
  25525. [
  25526. {
  25527. name: "Normal",
  25528. height: math.unit(6 + 3 / 12, "feet"),
  25529. default: true
  25530. },
  25531. {
  25532. name: "Macro",
  25533. height: math.unit(20 + 6 / 12, "feet")
  25534. },
  25535. {
  25536. name: "Megamacro",
  25537. height: math.unit(12, "miles")
  25538. },
  25539. {
  25540. name: "Gigamacro",
  25541. height: math.unit(10000, "miles")
  25542. },
  25543. {
  25544. name: "Teramacro",
  25545. height: math.unit(900000, "miles")
  25546. },
  25547. ]
  25548. ))
  25549. characterMakers.push(() => makeCharacter(
  25550. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25551. {
  25552. front: {
  25553. height: math.unit(12, "feet"),
  25554. weight: math.unit(1, "ton"),
  25555. capacity: math.unit(660000, "gallons"),
  25556. name: "Front",
  25557. image: {
  25558. source: "./media/characters/zeus/front.svg",
  25559. extra: 5005 / 4717,
  25560. bottom: 363 / 5388
  25561. }
  25562. },
  25563. },
  25564. [
  25565. {
  25566. name: "Normal",
  25567. height: math.unit(12, "feet")
  25568. },
  25569. {
  25570. name: "Preferred Size",
  25571. height: math.unit(0.5, "miles"),
  25572. default: true
  25573. },
  25574. {
  25575. name: "Giga Horse",
  25576. height: math.unit(300, "miles")
  25577. },
  25578. {
  25579. name: "Riding Planets",
  25580. height: math.unit(30, "megameters")
  25581. },
  25582. {
  25583. name: "Cosmic Giant",
  25584. height: math.unit(3, "zettameters")
  25585. },
  25586. {
  25587. name: "Breeding God",
  25588. height: math.unit(9.92e22, "yottameters")
  25589. },
  25590. ]
  25591. ))
  25592. characterMakers.push(() => makeCharacter(
  25593. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25594. {
  25595. side: {
  25596. height: math.unit(9, "feet"),
  25597. weight: math.unit(1500, "kg"),
  25598. name: "Side",
  25599. image: {
  25600. source: "./media/characters/fang/side.svg",
  25601. extra: 924 / 866,
  25602. bottom: 47.5 / 972.3
  25603. }
  25604. },
  25605. },
  25606. [
  25607. {
  25608. name: "Normal",
  25609. height: math.unit(9, "feet"),
  25610. default: true
  25611. },
  25612. {
  25613. name: "Macro",
  25614. height: math.unit(75 + 6 / 12, "feet")
  25615. },
  25616. {
  25617. name: "Teramacro",
  25618. height: math.unit(50000, "miles")
  25619. },
  25620. ]
  25621. ))
  25622. characterMakers.push(() => makeCharacter(
  25623. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25624. {
  25625. front: {
  25626. height: math.unit(10, "feet"),
  25627. weight: math.unit(2, "tons"),
  25628. name: "Front",
  25629. image: {
  25630. source: "./media/characters/rekhit/front.svg",
  25631. extra: 2796 / 2590,
  25632. bottom: 225 / 3022
  25633. }
  25634. },
  25635. },
  25636. [
  25637. {
  25638. name: "Normal",
  25639. height: math.unit(10, "feet"),
  25640. default: true
  25641. },
  25642. {
  25643. name: "Macro",
  25644. height: math.unit(500, "feet")
  25645. },
  25646. ]
  25647. ))
  25648. characterMakers.push(() => makeCharacter(
  25649. { name: "Dahlia Verrick" },
  25650. {
  25651. front: {
  25652. height: math.unit(7 + 6.451 / 12, "feet"),
  25653. weight: math.unit(310, "lb"),
  25654. name: "Front",
  25655. image: {
  25656. source: "./media/characters/dahlia-verrick/front.svg",
  25657. extra: 1488 / 1365,
  25658. bottom: 6.2 / 1495
  25659. }
  25660. },
  25661. back: {
  25662. height: math.unit(7 + 6.451 / 12, "feet"),
  25663. weight: math.unit(310, "lb"),
  25664. name: "Back",
  25665. image: {
  25666. source: "./media/characters/dahlia-verrick/back.svg",
  25667. extra: 1472 / 1351,
  25668. bottom: 5.28 / 1477
  25669. }
  25670. },
  25671. frontBusiness: {
  25672. height: math.unit(7 + 6.451 / 12, "feet"),
  25673. weight: math.unit(200, "lb"),
  25674. name: "Front (Business)",
  25675. image: {
  25676. source: "./media/characters/dahlia-verrick/front-business.svg",
  25677. extra: 1478 / 1381,
  25678. bottom: 5.5 / 1484
  25679. }
  25680. },
  25681. frontCasual: {
  25682. height: math.unit(7 + 6.451 / 12, "feet"),
  25683. weight: math.unit(200, "lb"),
  25684. name: "Front (Casual)",
  25685. image: {
  25686. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25687. extra: 1478 / 1381,
  25688. bottom: 5.5 / 1484
  25689. }
  25690. },
  25691. },
  25692. [
  25693. {
  25694. name: "Travel-Sized",
  25695. height: math.unit(7.45, "inches")
  25696. },
  25697. {
  25698. name: "Normal",
  25699. height: math.unit(7 + 6.451 / 12, "feet"),
  25700. default: true
  25701. },
  25702. {
  25703. name: "Hitting the Town",
  25704. height: math.unit(37 + 8 / 12, "feet")
  25705. },
  25706. {
  25707. name: "Stomp in the Suburbs",
  25708. height: math.unit(964 + 9.728 / 12, "feet")
  25709. },
  25710. {
  25711. name: "Sit on the City",
  25712. height: math.unit(61747 + 10.592 / 12, "feet")
  25713. },
  25714. {
  25715. name: "Glomp the Globe",
  25716. height: math.unit(252919327 + 4.832 / 12, "feet")
  25717. },
  25718. ]
  25719. ))
  25720. characterMakers.push(() => makeCharacter(
  25721. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25722. {
  25723. front: {
  25724. height: math.unit(6 + 4 / 12, "feet"),
  25725. weight: math.unit(320, "lb"),
  25726. name: "Front",
  25727. image: {
  25728. source: "./media/characters/balina-mahigan/front.svg",
  25729. extra: 447 / 428,
  25730. bottom: 18 / 466
  25731. }
  25732. },
  25733. back: {
  25734. height: math.unit(6 + 4 / 12, "feet"),
  25735. weight: math.unit(320, "lb"),
  25736. name: "Back",
  25737. image: {
  25738. source: "./media/characters/balina-mahigan/back.svg",
  25739. extra: 445 / 428,
  25740. bottom: 4.07 / 448
  25741. }
  25742. },
  25743. arm: {
  25744. height: math.unit(1.88, "feet"),
  25745. name: "Arm",
  25746. image: {
  25747. source: "./media/characters/balina-mahigan/arm.svg"
  25748. }
  25749. },
  25750. backPort: {
  25751. height: math.unit(0.685, "feet"),
  25752. name: "Back Port",
  25753. image: {
  25754. source: "./media/characters/balina-mahigan/back-port.svg"
  25755. }
  25756. },
  25757. hoofpaw: {
  25758. height: math.unit(1.41, "feet"),
  25759. name: "Hoofpaw",
  25760. image: {
  25761. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25762. }
  25763. },
  25764. leftHandBack: {
  25765. height: math.unit(0.938, "feet"),
  25766. name: "Left Hand (Back)",
  25767. image: {
  25768. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25769. }
  25770. },
  25771. leftHandFront: {
  25772. height: math.unit(0.938, "feet"),
  25773. name: "Left Hand (Front)",
  25774. image: {
  25775. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25776. }
  25777. },
  25778. rightHandBack: {
  25779. height: math.unit(0.95, "feet"),
  25780. name: "Right Hand (Back)",
  25781. image: {
  25782. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25783. }
  25784. },
  25785. rightHandFront: {
  25786. height: math.unit(0.95, "feet"),
  25787. name: "Right Hand (Front)",
  25788. image: {
  25789. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25790. }
  25791. },
  25792. },
  25793. [
  25794. {
  25795. name: "Normal",
  25796. height: math.unit(6 + 4 / 12, "feet"),
  25797. default: true
  25798. },
  25799. ]
  25800. ))
  25801. characterMakers.push(() => makeCharacter(
  25802. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25803. {
  25804. front: {
  25805. height: math.unit(6, "feet"),
  25806. weight: math.unit(320, "lb"),
  25807. name: "Front",
  25808. image: {
  25809. source: "./media/characters/balina-mejeri/front.svg",
  25810. extra: 517 / 488,
  25811. bottom: 44.2 / 561
  25812. }
  25813. },
  25814. },
  25815. [
  25816. {
  25817. name: "Normal",
  25818. height: math.unit(6 + 4 / 12, "feet")
  25819. },
  25820. {
  25821. name: "Business",
  25822. height: math.unit(155, "feet"),
  25823. default: true
  25824. },
  25825. ]
  25826. ))
  25827. characterMakers.push(() => makeCharacter(
  25828. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25829. {
  25830. kneeling: {
  25831. height: math.unit(6 + 4 / 12, "feet"),
  25832. weight: math.unit(300 * 20, "lb"),
  25833. name: "Kneeling",
  25834. image: {
  25835. source: "./media/characters/balbarian/kneeling.svg",
  25836. extra: 922 / 862,
  25837. bottom: 42.4 / 965
  25838. }
  25839. },
  25840. },
  25841. [
  25842. {
  25843. name: "Normal",
  25844. height: math.unit(6 + 4 / 12, "feet")
  25845. },
  25846. {
  25847. name: "Treasured",
  25848. height: math.unit(18 + 9 / 12, "feet"),
  25849. default: true
  25850. },
  25851. {
  25852. name: "Macro",
  25853. height: math.unit(900, "feet")
  25854. },
  25855. ]
  25856. ))
  25857. characterMakers.push(() => makeCharacter(
  25858. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25859. {
  25860. front: {
  25861. height: math.unit(6 + 4 / 12, "feet"),
  25862. weight: math.unit(325, "lb"),
  25863. name: "Front",
  25864. image: {
  25865. source: "./media/characters/balina-amarini/front.svg",
  25866. extra: 415 / 403,
  25867. bottom: 19 / 433.4
  25868. }
  25869. },
  25870. back: {
  25871. height: math.unit(6 + 4 / 12, "feet"),
  25872. weight: math.unit(325, "lb"),
  25873. name: "Back",
  25874. image: {
  25875. source: "./media/characters/balina-amarini/back.svg",
  25876. extra: 415 / 403,
  25877. bottom: 13.5 / 432
  25878. }
  25879. },
  25880. overdrive: {
  25881. height: math.unit(6 + 4 / 12, "feet"),
  25882. weight: math.unit(400, "lb"),
  25883. name: "Overdrive",
  25884. image: {
  25885. source: "./media/characters/balina-amarini/overdrive.svg",
  25886. extra: 269 / 259,
  25887. bottom: 12 / 282
  25888. }
  25889. },
  25890. },
  25891. [
  25892. {
  25893. name: "Boom",
  25894. height: math.unit(9 + 10 / 12, "feet"),
  25895. default: true
  25896. },
  25897. {
  25898. name: "Macro",
  25899. height: math.unit(280, "feet")
  25900. },
  25901. ]
  25902. ))
  25903. characterMakers.push(() => makeCharacter(
  25904. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25905. {
  25906. goddess: {
  25907. height: math.unit(600, "feet"),
  25908. weight: math.unit(2000000, "tons"),
  25909. name: "Goddess",
  25910. image: {
  25911. source: "./media/characters/lady-kubwa/goddess.svg",
  25912. extra: 1240.5 / 1223,
  25913. bottom: 22 / 1263
  25914. }
  25915. },
  25916. goddesser: {
  25917. height: math.unit(900, "feet"),
  25918. weight: math.unit(20000000, "lb"),
  25919. name: "Goddess-er",
  25920. image: {
  25921. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25922. extra: 899 / 888,
  25923. bottom: 12.6 / 912
  25924. }
  25925. },
  25926. },
  25927. [
  25928. {
  25929. name: "Macro",
  25930. height: math.unit(600, "feet"),
  25931. default: true
  25932. },
  25933. {
  25934. name: "Megamacro",
  25935. height: math.unit(250, "miles")
  25936. },
  25937. ]
  25938. ))
  25939. characterMakers.push(() => makeCharacter(
  25940. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25941. {
  25942. front: {
  25943. height: math.unit(7 + 7 / 12, "feet"),
  25944. weight: math.unit(250, "lb"),
  25945. name: "Front",
  25946. image: {
  25947. source: "./media/characters/tala-grovehorn/front.svg",
  25948. extra: 2636 / 2525,
  25949. bottom: 147 / 2781
  25950. }
  25951. },
  25952. back: {
  25953. height: math.unit(7 + 7 / 12, "feet"),
  25954. weight: math.unit(250, "lb"),
  25955. name: "Back",
  25956. image: {
  25957. source: "./media/characters/tala-grovehorn/back.svg",
  25958. extra: 2635 / 2539,
  25959. bottom: 100 / 2732.8
  25960. }
  25961. },
  25962. mouth: {
  25963. height: math.unit(1.15, "feet"),
  25964. name: "Mouth",
  25965. image: {
  25966. source: "./media/characters/tala-grovehorn/mouth.svg"
  25967. }
  25968. },
  25969. dick: {
  25970. height: math.unit(2.36, "feet"),
  25971. name: "Dick",
  25972. image: {
  25973. source: "./media/characters/tala-grovehorn/dick.svg"
  25974. }
  25975. },
  25976. slit: {
  25977. height: math.unit(0.61, "feet"),
  25978. name: "Slit",
  25979. image: {
  25980. source: "./media/characters/tala-grovehorn/slit.svg"
  25981. }
  25982. },
  25983. },
  25984. [
  25985. ]
  25986. ))
  25987. characterMakers.push(() => makeCharacter(
  25988. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25989. {
  25990. front: {
  25991. height: math.unit(7 + 7 / 12, "feet"),
  25992. weight: math.unit(225, "lb"),
  25993. name: "Front",
  25994. image: {
  25995. source: "./media/characters/epona/front.svg",
  25996. extra: 2445 / 2290,
  25997. bottom: 251 / 2696
  25998. }
  25999. },
  26000. back: {
  26001. height: math.unit(7 + 7 / 12, "feet"),
  26002. weight: math.unit(225, "lb"),
  26003. name: "Back",
  26004. image: {
  26005. source: "./media/characters/epona/back.svg",
  26006. extra: 2546 / 2408,
  26007. bottom: 44 / 2589
  26008. }
  26009. },
  26010. genitals: {
  26011. height: math.unit(1.5, "feet"),
  26012. name: "Genitals",
  26013. image: {
  26014. source: "./media/characters/epona/genitals.svg"
  26015. }
  26016. },
  26017. },
  26018. [
  26019. {
  26020. name: "Normal",
  26021. height: math.unit(7 + 7 / 12, "feet"),
  26022. default: true
  26023. },
  26024. ]
  26025. ))
  26026. characterMakers.push(() => makeCharacter(
  26027. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26028. {
  26029. front: {
  26030. height: math.unit(7, "feet"),
  26031. weight: math.unit(518, "lb"),
  26032. name: "Front",
  26033. image: {
  26034. source: "./media/characters/avia-bloodbourn/front.svg",
  26035. extra: 1466 / 1350,
  26036. bottom: 65 / 1527
  26037. }
  26038. },
  26039. },
  26040. [
  26041. ]
  26042. ))
  26043. characterMakers.push(() => makeCharacter(
  26044. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26045. {
  26046. front: {
  26047. height: math.unit(9.35, "feet"),
  26048. weight: math.unit(600, "lb"),
  26049. name: "Front",
  26050. image: {
  26051. source: "./media/characters/amera/front.svg",
  26052. extra: 891 / 818,
  26053. bottom: 30 / 922.7
  26054. }
  26055. },
  26056. back: {
  26057. height: math.unit(9.35, "feet"),
  26058. weight: math.unit(600, "lb"),
  26059. name: "Back",
  26060. image: {
  26061. source: "./media/characters/amera/back.svg",
  26062. extra: 876 / 824,
  26063. bottom: 6.8 / 884
  26064. }
  26065. },
  26066. dick: {
  26067. height: math.unit(2.14, "feet"),
  26068. name: "Dick",
  26069. image: {
  26070. source: "./media/characters/amera/dick.svg"
  26071. }
  26072. },
  26073. },
  26074. [
  26075. {
  26076. name: "Normal",
  26077. height: math.unit(9.35, "feet"),
  26078. default: true
  26079. },
  26080. ]
  26081. ))
  26082. characterMakers.push(() => makeCharacter(
  26083. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26084. {
  26085. kneeling: {
  26086. height: math.unit(3 + 4 / 12, "feet"),
  26087. weight: math.unit(90, "lb"),
  26088. name: "Kneeling",
  26089. image: {
  26090. source: "./media/characters/rosewen/kneeling.svg",
  26091. extra: 1835 / 1571,
  26092. bottom: 27.7 / 1862
  26093. }
  26094. },
  26095. },
  26096. [
  26097. {
  26098. name: "Normal",
  26099. height: math.unit(3 + 4 / 12, "feet"),
  26100. default: true
  26101. },
  26102. ]
  26103. ))
  26104. characterMakers.push(() => makeCharacter(
  26105. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26106. {
  26107. front: {
  26108. height: math.unit(5 + 10 / 12, "feet"),
  26109. weight: math.unit(200, "lb"),
  26110. name: "Front",
  26111. image: {
  26112. source: "./media/characters/sabah/front.svg",
  26113. extra: 849 / 763,
  26114. bottom: 33.9 / 881
  26115. }
  26116. },
  26117. },
  26118. [
  26119. {
  26120. name: "Normal",
  26121. height: math.unit(5 + 10 / 12, "feet"),
  26122. default: true
  26123. },
  26124. ]
  26125. ))
  26126. characterMakers.push(() => makeCharacter(
  26127. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26128. {
  26129. front: {
  26130. height: math.unit(3 + 5 / 12, "feet"),
  26131. weight: math.unit(40, "kg"),
  26132. name: "Front",
  26133. image: {
  26134. source: "./media/characters/purple-flame/front.svg",
  26135. extra: 1577 / 1412,
  26136. bottom: 97 / 1694
  26137. }
  26138. },
  26139. frontDressed: {
  26140. height: math.unit(3 + 5 / 12, "feet"),
  26141. weight: math.unit(40, "kg"),
  26142. name: "Front (Dressed)",
  26143. image: {
  26144. source: "./media/characters/purple-flame/front-dressed.svg",
  26145. extra: 1577 / 1412,
  26146. bottom: 97 / 1694
  26147. }
  26148. },
  26149. headphones: {
  26150. height: math.unit(0.85, "feet"),
  26151. name: "Headphones",
  26152. image: {
  26153. source: "./media/characters/purple-flame/headphones.svg"
  26154. }
  26155. },
  26156. },
  26157. [
  26158. {
  26159. name: "Really Small",
  26160. height: math.unit(5, "cm")
  26161. },
  26162. {
  26163. name: "Micro",
  26164. height: math.unit(1 + 5 / 12, "feet")
  26165. },
  26166. {
  26167. name: "Normal",
  26168. height: math.unit(3 + 5 / 12, "feet"),
  26169. default: true
  26170. },
  26171. {
  26172. name: "Minimacro",
  26173. height: math.unit(125, "feet")
  26174. },
  26175. {
  26176. name: "Macro",
  26177. height: math.unit(0.5, "miles")
  26178. },
  26179. {
  26180. name: "Megamacro",
  26181. height: math.unit(50, "miles")
  26182. },
  26183. {
  26184. name: "Gigantic",
  26185. height: math.unit(750, "miles")
  26186. },
  26187. {
  26188. name: "Planetary",
  26189. height: math.unit(15000, "miles")
  26190. },
  26191. ]
  26192. ))
  26193. characterMakers.push(() => makeCharacter(
  26194. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26195. {
  26196. front: {
  26197. height: math.unit(14, "feet"),
  26198. weight: math.unit(959, "lb"),
  26199. name: "Front",
  26200. image: {
  26201. source: "./media/characters/arsenal/front.svg",
  26202. extra: 2357 / 2157,
  26203. bottom: 93 / 2458
  26204. }
  26205. },
  26206. },
  26207. [
  26208. {
  26209. name: "Normal",
  26210. height: math.unit(14, "feet"),
  26211. default: true
  26212. },
  26213. ]
  26214. ))
  26215. characterMakers.push(() => makeCharacter(
  26216. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26217. {
  26218. front: {
  26219. height: math.unit(6, "feet"),
  26220. weight: math.unit(150, "lb"),
  26221. name: "Front",
  26222. image: {
  26223. source: "./media/characters/adira/front.svg",
  26224. extra: 1078 / 1029,
  26225. bottom: 87 / 1166
  26226. }
  26227. },
  26228. },
  26229. [
  26230. {
  26231. name: "Micro",
  26232. height: math.unit(4, "inches"),
  26233. default: true
  26234. },
  26235. {
  26236. name: "Macro",
  26237. height: math.unit(50, "feet")
  26238. },
  26239. ]
  26240. ))
  26241. characterMakers.push(() => makeCharacter(
  26242. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26243. {
  26244. front: {
  26245. height: math.unit(16, "feet"),
  26246. weight: math.unit(1000, "lb"),
  26247. name: "Front",
  26248. image: {
  26249. source: "./media/characters/grim/front.svg",
  26250. extra: 622 / 614,
  26251. bottom: 18.1 / 642
  26252. }
  26253. },
  26254. back: {
  26255. height: math.unit(16, "feet"),
  26256. weight: math.unit(1000, "lb"),
  26257. name: "Back",
  26258. image: {
  26259. source: "./media/characters/grim/back.svg",
  26260. extra: 610.6 / 602,
  26261. bottom: 40.8 / 652
  26262. }
  26263. },
  26264. hunched: {
  26265. height: math.unit(9.75, "feet"),
  26266. weight: math.unit(1000, "lb"),
  26267. name: "Hunched",
  26268. image: {
  26269. source: "./media/characters/grim/hunched.svg",
  26270. extra: 304 / 297,
  26271. bottom: 35.4 / 394
  26272. }
  26273. },
  26274. },
  26275. [
  26276. {
  26277. name: "Normal",
  26278. height: math.unit(16, "feet"),
  26279. default: true
  26280. },
  26281. ]
  26282. ))
  26283. characterMakers.push(() => makeCharacter(
  26284. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26285. {
  26286. front: {
  26287. height: math.unit(2.3, "meters"),
  26288. weight: math.unit(300, "lb"),
  26289. name: "Front",
  26290. image: {
  26291. source: "./media/characters/sinja/front-sfw.svg",
  26292. extra: 1393 / 1294,
  26293. bottom: 70 / 1463
  26294. }
  26295. },
  26296. frontNsfw: {
  26297. height: math.unit(2.3, "meters"),
  26298. weight: math.unit(300, "lb"),
  26299. name: "Front (NSFW)",
  26300. image: {
  26301. source: "./media/characters/sinja/front-nsfw.svg",
  26302. extra: 1393 / 1294,
  26303. bottom: 70 / 1463
  26304. }
  26305. },
  26306. back: {
  26307. height: math.unit(2.3, "meters"),
  26308. weight: math.unit(300, "lb"),
  26309. name: "Back",
  26310. image: {
  26311. source: "./media/characters/sinja/back.svg",
  26312. extra: 1393 / 1294,
  26313. bottom: 70 / 1463
  26314. }
  26315. },
  26316. head: {
  26317. height: math.unit(1.771, "feet"),
  26318. name: "Head",
  26319. image: {
  26320. source: "./media/characters/sinja/head.svg"
  26321. }
  26322. },
  26323. slit: {
  26324. height: math.unit(0.8, "feet"),
  26325. name: "Slit",
  26326. image: {
  26327. source: "./media/characters/sinja/slit.svg"
  26328. }
  26329. },
  26330. },
  26331. [
  26332. {
  26333. name: "Normal",
  26334. height: math.unit(2.3, "meters")
  26335. },
  26336. {
  26337. name: "Macro",
  26338. height: math.unit(91, "meters"),
  26339. default: true
  26340. },
  26341. {
  26342. name: "Megamacro",
  26343. height: math.unit(91440, "meters")
  26344. },
  26345. {
  26346. name: "Gigamacro",
  26347. height: math.unit(60960000, "meters")
  26348. },
  26349. {
  26350. name: "Teramacro",
  26351. height: math.unit(9144000000, "meters")
  26352. },
  26353. ]
  26354. ))
  26355. characterMakers.push(() => makeCharacter(
  26356. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26357. {
  26358. front: {
  26359. height: math.unit(1.7, "meters"),
  26360. weight: math.unit(130, "lb"),
  26361. name: "Front",
  26362. image: {
  26363. source: "./media/characters/kyu/front.svg",
  26364. extra: 415 / 395,
  26365. bottom: 5 / 420
  26366. }
  26367. },
  26368. head: {
  26369. height: math.unit(1.75, "feet"),
  26370. name: "Head",
  26371. image: {
  26372. source: "./media/characters/kyu/head.svg"
  26373. }
  26374. },
  26375. foot: {
  26376. height: math.unit(0.81, "feet"),
  26377. name: "Foot",
  26378. image: {
  26379. source: "./media/characters/kyu/foot.svg"
  26380. }
  26381. },
  26382. },
  26383. [
  26384. {
  26385. name: "Normal",
  26386. height: math.unit(1.7, "meters")
  26387. },
  26388. {
  26389. name: "Macro",
  26390. height: math.unit(131, "feet"),
  26391. default: true
  26392. },
  26393. {
  26394. name: "Megamacro",
  26395. height: math.unit(91440, "meters")
  26396. },
  26397. {
  26398. name: "Gigamacro",
  26399. height: math.unit(60960000, "meters")
  26400. },
  26401. {
  26402. name: "Teramacro",
  26403. height: math.unit(9144000000, "meters")
  26404. },
  26405. ]
  26406. ))
  26407. characterMakers.push(() => makeCharacter(
  26408. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26409. {
  26410. front: {
  26411. height: math.unit(7 + 1 / 12, "feet"),
  26412. weight: math.unit(250, "lb"),
  26413. name: "Front",
  26414. image: {
  26415. source: "./media/characters/joey/front.svg",
  26416. extra: 1791 / 1537,
  26417. bottom: 28 / 1816
  26418. }
  26419. },
  26420. },
  26421. [
  26422. {
  26423. name: "Micro",
  26424. height: math.unit(3, "inches")
  26425. },
  26426. {
  26427. name: "Normal",
  26428. height: math.unit(7 + 1 / 12, "feet"),
  26429. default: true
  26430. },
  26431. ]
  26432. ))
  26433. characterMakers.push(() => makeCharacter(
  26434. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26435. {
  26436. front: {
  26437. height: math.unit(165, "cm"),
  26438. weight: math.unit(140, "lb"),
  26439. name: "Front",
  26440. image: {
  26441. source: "./media/characters/sam-evans/front.svg",
  26442. extra: 3417 / 3230,
  26443. bottom: 41.3 / 3417
  26444. }
  26445. },
  26446. frontSixTails: {
  26447. height: math.unit(165, "cm"),
  26448. weight: math.unit(140, "lb"),
  26449. name: "Front-six-tails",
  26450. image: {
  26451. source: "./media/characters/sam-evans/front-six-tails.svg",
  26452. extra: 3417 / 3230,
  26453. bottom: 41.3 / 3417
  26454. }
  26455. },
  26456. back: {
  26457. height: math.unit(165, "cm"),
  26458. weight: math.unit(140, "lb"),
  26459. name: "Back",
  26460. image: {
  26461. source: "./media/characters/sam-evans/back.svg",
  26462. extra: 3227 / 3032,
  26463. bottom: 6.8 / 3234
  26464. }
  26465. },
  26466. face: {
  26467. height: math.unit(0.68, "feet"),
  26468. name: "Face",
  26469. image: {
  26470. source: "./media/characters/sam-evans/face.svg"
  26471. }
  26472. },
  26473. },
  26474. [
  26475. {
  26476. name: "Normal",
  26477. height: math.unit(165, "cm"),
  26478. default: true
  26479. },
  26480. {
  26481. name: "Macro",
  26482. height: math.unit(100, "meters")
  26483. },
  26484. {
  26485. name: "Macro+",
  26486. height: math.unit(800, "meters")
  26487. },
  26488. {
  26489. name: "Macro++",
  26490. height: math.unit(3, "km")
  26491. },
  26492. {
  26493. name: "Macro+++",
  26494. height: math.unit(30, "km")
  26495. },
  26496. ]
  26497. ))
  26498. characterMakers.push(() => makeCharacter(
  26499. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26500. {
  26501. front: {
  26502. height: math.unit(10, "feet"),
  26503. weight: math.unit(750, "lb"),
  26504. name: "Front",
  26505. image: {
  26506. source: "./media/characters/juliet-a/front.svg",
  26507. extra: 1766 / 1720,
  26508. bottom: 43 / 1809
  26509. }
  26510. },
  26511. back: {
  26512. height: math.unit(10, "feet"),
  26513. weight: math.unit(750, "lb"),
  26514. name: "Back",
  26515. image: {
  26516. source: "./media/characters/juliet-a/back.svg",
  26517. extra: 1781 / 1734,
  26518. bottom: 35 / 1810,
  26519. }
  26520. },
  26521. },
  26522. [
  26523. {
  26524. name: "Normal",
  26525. height: math.unit(10, "feet"),
  26526. default: true
  26527. },
  26528. {
  26529. name: "Dragon Form",
  26530. height: math.unit(250, "feet")
  26531. },
  26532. {
  26533. name: "Macro",
  26534. height: math.unit(1000, "feet")
  26535. },
  26536. {
  26537. name: "Megamacro",
  26538. height: math.unit(10000, "feet")
  26539. }
  26540. ]
  26541. ))
  26542. characterMakers.push(() => makeCharacter(
  26543. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26544. {
  26545. regular: {
  26546. height: math.unit(7 + 3 / 12, "feet"),
  26547. weight: math.unit(260, "lb"),
  26548. name: "Regular",
  26549. image: {
  26550. source: "./media/characters/wild/regular.svg",
  26551. extra: 97.45 / 92,
  26552. bottom: 6.8 / 104.3
  26553. }
  26554. },
  26555. biggums: {
  26556. height: math.unit(8 + 6 / 12, "feet"),
  26557. weight: math.unit(425, "lb"),
  26558. name: "Biggums",
  26559. image: {
  26560. source: "./media/characters/wild/biggums.svg",
  26561. extra: 97.45 / 92,
  26562. bottom: 7.5 / 132.34
  26563. }
  26564. },
  26565. mawRegular: {
  26566. height: math.unit(1.24, "feet"),
  26567. name: "Maw (Regular)",
  26568. image: {
  26569. source: "./media/characters/wild/maw.svg"
  26570. }
  26571. },
  26572. mawBiggums: {
  26573. height: math.unit(1.47, "feet"),
  26574. name: "Maw (Biggums)",
  26575. image: {
  26576. source: "./media/characters/wild/maw.svg"
  26577. }
  26578. },
  26579. },
  26580. [
  26581. {
  26582. name: "Normal",
  26583. height: math.unit(7 + 3 / 12, "feet"),
  26584. default: true
  26585. },
  26586. ]
  26587. ))
  26588. characterMakers.push(() => makeCharacter(
  26589. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26590. {
  26591. front: {
  26592. height: math.unit(2.5, "meters"),
  26593. weight: math.unit(200, "kg"),
  26594. name: "Front",
  26595. image: {
  26596. source: "./media/characters/vidar/front.svg",
  26597. extra: 2994 / 2795,
  26598. bottom: 56 / 3061
  26599. }
  26600. },
  26601. back: {
  26602. height: math.unit(2.5, "meters"),
  26603. weight: math.unit(200, "kg"),
  26604. name: "Back",
  26605. image: {
  26606. source: "./media/characters/vidar/back.svg",
  26607. extra: 3131 / 2928,
  26608. bottom: 13.5 / 3141.5
  26609. }
  26610. },
  26611. feral: {
  26612. height: math.unit(2.5, "meters"),
  26613. weight: math.unit(2000, "kg"),
  26614. name: "Feral",
  26615. image: {
  26616. source: "./media/characters/vidar/feral.svg",
  26617. extra: 2790 / 1765,
  26618. bottom: 6 / 2796
  26619. }
  26620. },
  26621. },
  26622. [
  26623. {
  26624. name: "Normal",
  26625. height: math.unit(2.5, "meters"),
  26626. default: true
  26627. },
  26628. {
  26629. name: "Macro",
  26630. height: math.unit(100, "meters")
  26631. },
  26632. ]
  26633. ))
  26634. characterMakers.push(() => makeCharacter(
  26635. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26636. {
  26637. front: {
  26638. height: math.unit(5 + 9 / 12, "feet"),
  26639. weight: math.unit(120, "lb"),
  26640. name: "Front",
  26641. image: {
  26642. source: "./media/characters/ash/front.svg",
  26643. extra: 2189 / 1961,
  26644. bottom: 5.2 / 2194
  26645. }
  26646. },
  26647. },
  26648. [
  26649. {
  26650. name: "Normal",
  26651. height: math.unit(5 + 9 / 12, "feet"),
  26652. default: true
  26653. },
  26654. ]
  26655. ))
  26656. characterMakers.push(() => makeCharacter(
  26657. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26658. {
  26659. front: {
  26660. height: math.unit(9, "feet"),
  26661. weight: math.unit(10000, "lb"),
  26662. name: "Front",
  26663. image: {
  26664. source: "./media/characters/gygabite/front.svg",
  26665. bottom: 31.7 / 537.8,
  26666. extra: 505 / 370
  26667. }
  26668. },
  26669. },
  26670. [
  26671. {
  26672. name: "Normal",
  26673. height: math.unit(9, "feet"),
  26674. default: true
  26675. },
  26676. ]
  26677. ))
  26678. characterMakers.push(() => makeCharacter(
  26679. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26680. {
  26681. front: {
  26682. height: math.unit(12, "feet"),
  26683. weight: math.unit(35000, "lb"),
  26684. name: "Front",
  26685. image: {
  26686. source: "./media/characters/p0tat0/front.svg",
  26687. extra: 1065 / 921,
  26688. bottom: 55.7 / 1121.25
  26689. }
  26690. },
  26691. },
  26692. [
  26693. {
  26694. name: "Normal",
  26695. height: math.unit(12, "feet"),
  26696. default: true
  26697. },
  26698. ]
  26699. ))
  26700. characterMakers.push(() => makeCharacter(
  26701. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26702. {
  26703. side: {
  26704. height: math.unit(6.5, "feet"),
  26705. weight: math.unit(800, "lb"),
  26706. name: "Side",
  26707. image: {
  26708. source: "./media/characters/dusk/side.svg",
  26709. extra: 615 / 373,
  26710. bottom: 53 / 664
  26711. }
  26712. },
  26713. sitting: {
  26714. height: math.unit(7, "feet"),
  26715. weight: math.unit(800, "lb"),
  26716. name: "Sitting",
  26717. image: {
  26718. source: "./media/characters/dusk/sitting.svg",
  26719. extra: 753 / 425,
  26720. bottom: 33 / 774
  26721. }
  26722. },
  26723. head: {
  26724. height: math.unit(6.1, "feet"),
  26725. name: "Head",
  26726. image: {
  26727. source: "./media/characters/dusk/head.svg"
  26728. }
  26729. },
  26730. },
  26731. [
  26732. {
  26733. name: "Normal",
  26734. height: math.unit(7, "feet"),
  26735. default: true
  26736. },
  26737. ]
  26738. ))
  26739. characterMakers.push(() => makeCharacter(
  26740. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26741. {
  26742. front: {
  26743. height: math.unit(15, "feet"),
  26744. weight: math.unit(7000, "lb"),
  26745. name: "Front",
  26746. image: {
  26747. source: "./media/characters/jay-direwolf/front.svg",
  26748. extra: 1810 / 1732,
  26749. bottom: 66 / 1892
  26750. }
  26751. },
  26752. },
  26753. [
  26754. {
  26755. name: "Normal",
  26756. height: math.unit(15, "feet"),
  26757. default: true
  26758. },
  26759. ]
  26760. ))
  26761. characterMakers.push(() => makeCharacter(
  26762. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26763. {
  26764. front: {
  26765. height: math.unit(4 + 9 / 12, "feet"),
  26766. weight: math.unit(130, "lb"),
  26767. name: "Front",
  26768. image: {
  26769. source: "./media/characters/anchovie/front.svg",
  26770. extra: 382 / 350,
  26771. bottom: 25 / 409
  26772. }
  26773. },
  26774. back: {
  26775. height: math.unit(4 + 9 / 12, "feet"),
  26776. weight: math.unit(130, "lb"),
  26777. name: "Back",
  26778. image: {
  26779. source: "./media/characters/anchovie/back.svg",
  26780. extra: 385 / 352,
  26781. bottom: 16.6 / 402
  26782. }
  26783. },
  26784. frontDressed: {
  26785. height: math.unit(4 + 9 / 12, "feet"),
  26786. weight: math.unit(130, "lb"),
  26787. name: "Front (Dressed)",
  26788. image: {
  26789. source: "./media/characters/anchovie/front-dressed.svg",
  26790. extra: 382 / 350,
  26791. bottom: 25 / 409
  26792. }
  26793. },
  26794. backDressed: {
  26795. height: math.unit(4 + 9 / 12, "feet"),
  26796. weight: math.unit(130, "lb"),
  26797. name: "Back (Dressed)",
  26798. image: {
  26799. source: "./media/characters/anchovie/back-dressed.svg",
  26800. extra: 385 / 352,
  26801. bottom: 16.6 / 402
  26802. }
  26803. },
  26804. },
  26805. [
  26806. {
  26807. name: "Micro",
  26808. height: math.unit(6.4, "inches")
  26809. },
  26810. {
  26811. name: "Normal",
  26812. height: math.unit(4 + 9 / 12, "feet"),
  26813. default: true
  26814. },
  26815. ]
  26816. ))
  26817. characterMakers.push(() => makeCharacter(
  26818. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26819. {
  26820. front: {
  26821. height: math.unit(2, "meters"),
  26822. weight: math.unit(180, "lb"),
  26823. name: "Front",
  26824. image: {
  26825. source: "./media/characters/acidrenamon/front.svg",
  26826. extra: 987 / 890,
  26827. bottom: 22.8 / 1009
  26828. }
  26829. },
  26830. back: {
  26831. height: math.unit(2, "meters"),
  26832. weight: math.unit(180, "lb"),
  26833. name: "Back",
  26834. image: {
  26835. source: "./media/characters/acidrenamon/back.svg",
  26836. extra: 983 / 891,
  26837. bottom: 8.4 / 992
  26838. }
  26839. },
  26840. head: {
  26841. height: math.unit(1.92, "feet"),
  26842. name: "Head",
  26843. image: {
  26844. source: "./media/characters/acidrenamon/head.svg"
  26845. }
  26846. },
  26847. rump: {
  26848. height: math.unit(1.72, "feet"),
  26849. name: "Rump",
  26850. image: {
  26851. source: "./media/characters/acidrenamon/rump.svg"
  26852. }
  26853. },
  26854. tail: {
  26855. height: math.unit(4.2, "feet"),
  26856. name: "Tail",
  26857. image: {
  26858. source: "./media/characters/acidrenamon/tail.svg"
  26859. }
  26860. },
  26861. },
  26862. [
  26863. {
  26864. name: "Normal",
  26865. height: math.unit(2, "meters"),
  26866. default: true
  26867. },
  26868. {
  26869. name: "Minimacro",
  26870. height: math.unit(7, "meters")
  26871. },
  26872. {
  26873. name: "Macro",
  26874. height: math.unit(200, "meters")
  26875. },
  26876. {
  26877. name: "Gigamacro",
  26878. height: math.unit(0.2, "earths")
  26879. },
  26880. ]
  26881. ))
  26882. characterMakers.push(() => makeCharacter(
  26883. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26884. {
  26885. front: {
  26886. height: math.unit(6, "feet"),
  26887. weight: math.unit(150, "lb"),
  26888. name: "Front",
  26889. image: {
  26890. source: "./media/characters/kenzie-lee/front.svg",
  26891. extra: 1525 / 1465,
  26892. bottom: 45 / 1570
  26893. }
  26894. },
  26895. side: {
  26896. height: math.unit(6, "feet"),
  26897. weight: math.unit(150, "lb"),
  26898. name: "Side",
  26899. image: {
  26900. source: "./media/characters/kenzie-lee/side.svg",
  26901. extra: 5505 / 5383,
  26902. bottom: 60 / 5573
  26903. }
  26904. },
  26905. paw: {
  26906. height: math.unit(0.57, "feet"),
  26907. name: "Paw",
  26908. image: {
  26909. source: "./media/characters/kenzie-lee/paw.svg"
  26910. }
  26911. },
  26912. },
  26913. [
  26914. {
  26915. name: "Normal",
  26916. height: math.unit(152, "feet"),
  26917. default: true
  26918. },
  26919. {
  26920. name: "Megamacro",
  26921. height: math.unit(7, "miles")
  26922. },
  26923. {
  26924. name: "Gigamacro",
  26925. height: math.unit(8000, "miles")
  26926. },
  26927. ]
  26928. ))
  26929. characterMakers.push(() => makeCharacter(
  26930. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26931. {
  26932. side: {
  26933. height: math.unit(6, "feet"),
  26934. weight: math.unit(150, "lb"),
  26935. name: "Side",
  26936. image: {
  26937. source: "./media/characters/withers/side.svg",
  26938. extra: 1830 / 1728,
  26939. bottom: 96 / 1927
  26940. }
  26941. },
  26942. front: {
  26943. height: math.unit(6, "feet"),
  26944. weight: math.unit(150, "lb"),
  26945. name: "Front",
  26946. image: {
  26947. source: "./media/characters/withers/front.svg",
  26948. extra: 1514 / 1438,
  26949. bottom: 118 / 1632
  26950. }
  26951. },
  26952. },
  26953. [
  26954. {
  26955. name: "Macro",
  26956. height: math.unit(168, "feet"),
  26957. default: true
  26958. },
  26959. {
  26960. name: "Megamacro",
  26961. height: math.unit(15, "miles")
  26962. }
  26963. ]
  26964. ))
  26965. characterMakers.push(() => makeCharacter(
  26966. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26967. {
  26968. front: {
  26969. height: math.unit(6 + 7 / 12, "feet"),
  26970. weight: math.unit(250, "lb"),
  26971. name: "Front",
  26972. image: {
  26973. source: "./media/characters/nemoskii/front.svg",
  26974. extra: 2270 / 1734,
  26975. bottom: 86 / 2354
  26976. }
  26977. },
  26978. back: {
  26979. height: math.unit(6 + 7 / 12, "feet"),
  26980. weight: math.unit(250, "lb"),
  26981. name: "Back",
  26982. image: {
  26983. source: "./media/characters/nemoskii/back.svg",
  26984. extra: 1845 / 1788,
  26985. bottom: 10.5 / 1852
  26986. }
  26987. },
  26988. head: {
  26989. height: math.unit(1.31, "feet"),
  26990. name: "Head",
  26991. image: {
  26992. source: "./media/characters/nemoskii/head.svg"
  26993. }
  26994. },
  26995. },
  26996. [
  26997. {
  26998. name: "Micro",
  26999. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  27000. },
  27001. {
  27002. name: "Normal",
  27003. height: math.unit(6 + 7 / 12, "feet"),
  27004. default: true
  27005. },
  27006. {
  27007. name: "Macro",
  27008. height: math.unit((6 + 7 / 12) * 150, "feet")
  27009. },
  27010. {
  27011. name: "Macro+",
  27012. height: math.unit((6 + 7 / 12) * 500, "feet")
  27013. },
  27014. {
  27015. name: "Megamacro",
  27016. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27017. },
  27018. ]
  27019. ))
  27020. characterMakers.push(() => makeCharacter(
  27021. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27022. {
  27023. front: {
  27024. height: math.unit(1, "mile"),
  27025. weight: math.unit(265261.9, "lb"),
  27026. name: "Front",
  27027. image: {
  27028. source: "./media/characters/shui/front.svg",
  27029. extra: 1633 / 1564,
  27030. bottom: 91.5 / 1726
  27031. }
  27032. },
  27033. },
  27034. [
  27035. {
  27036. name: "Macro",
  27037. height: math.unit(1, "mile"),
  27038. default: true
  27039. },
  27040. ]
  27041. ))
  27042. characterMakers.push(() => makeCharacter(
  27043. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27044. {
  27045. front: {
  27046. height: math.unit(12 + 6 / 12, "feet"),
  27047. weight: math.unit(1342, "lb"),
  27048. name: "Front",
  27049. image: {
  27050. source: "./media/characters/arokh-takakura/front.svg",
  27051. extra: 1089 / 1043,
  27052. bottom: 77.4 / 1176.7
  27053. }
  27054. },
  27055. back: {
  27056. height: math.unit(12 + 6 / 12, "feet"),
  27057. weight: math.unit(1342, "lb"),
  27058. name: "Back",
  27059. image: {
  27060. source: "./media/characters/arokh-takakura/back.svg",
  27061. extra: 1046 / 1019,
  27062. bottom: 102 / 1150
  27063. }
  27064. },
  27065. },
  27066. [
  27067. {
  27068. name: "Big",
  27069. height: math.unit(12 + 6 / 12, "feet"),
  27070. default: true
  27071. },
  27072. ]
  27073. ))
  27074. characterMakers.push(() => makeCharacter(
  27075. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27076. {
  27077. front: {
  27078. height: math.unit(5 + 6 / 12, "feet"),
  27079. weight: math.unit(150, "lb"),
  27080. name: "Front",
  27081. image: {
  27082. source: "./media/characters/theo/front.svg",
  27083. extra: 1184 / 1131,
  27084. bottom: 7.4 / 1191
  27085. }
  27086. },
  27087. },
  27088. [
  27089. {
  27090. name: "Micro",
  27091. height: math.unit(5, "inches")
  27092. },
  27093. {
  27094. name: "Normal",
  27095. height: math.unit(5 + 6 / 12, "feet"),
  27096. default: true
  27097. },
  27098. ]
  27099. ))
  27100. characterMakers.push(() => makeCharacter(
  27101. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27102. {
  27103. front: {
  27104. height: math.unit(5 + 9 / 12, "feet"),
  27105. weight: math.unit(130, "lb"),
  27106. name: "Front",
  27107. image: {
  27108. source: "./media/characters/cecelia-swift/front.svg",
  27109. extra: 502 / 484,
  27110. bottom: 23 / 523
  27111. }
  27112. },
  27113. back: {
  27114. height: math.unit(5 + 9 / 12, "feet"),
  27115. weight: math.unit(130, "lb"),
  27116. name: "Back",
  27117. image: {
  27118. source: "./media/characters/cecelia-swift/back.svg",
  27119. extra: 499 / 485,
  27120. bottom: 12 / 511
  27121. }
  27122. },
  27123. head: {
  27124. height: math.unit(0.90, "feet"),
  27125. name: "Head",
  27126. image: {
  27127. source: "./media/characters/cecelia-swift/head.svg"
  27128. }
  27129. },
  27130. rump: {
  27131. height: math.unit(1.75, "feet"),
  27132. name: "Rump",
  27133. image: {
  27134. source: "./media/characters/cecelia-swift/rump.svg"
  27135. }
  27136. },
  27137. },
  27138. [
  27139. {
  27140. name: "Normal",
  27141. height: math.unit(5 + 9 / 12, "feet"),
  27142. default: true
  27143. },
  27144. {
  27145. name: "Big",
  27146. height: math.unit(50, "feet")
  27147. },
  27148. {
  27149. name: "Macro",
  27150. height: math.unit(100, "feet")
  27151. },
  27152. {
  27153. name: "Macro+",
  27154. height: math.unit(500, "feet")
  27155. },
  27156. {
  27157. name: "Macro++",
  27158. height: math.unit(1000, "feet")
  27159. },
  27160. ]
  27161. ))
  27162. characterMakers.push(() => makeCharacter(
  27163. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27164. {
  27165. front: {
  27166. height: math.unit(6, "feet"),
  27167. weight: math.unit(150, "lb"),
  27168. name: "Front",
  27169. image: {
  27170. source: "./media/characters/kaunan/front.svg",
  27171. extra: 2890 / 2523,
  27172. bottom: 49 / 2939
  27173. }
  27174. },
  27175. },
  27176. [
  27177. {
  27178. name: "Macro",
  27179. height: math.unit(150, "feet"),
  27180. default: true
  27181. },
  27182. ]
  27183. ))
  27184. characterMakers.push(() => makeCharacter(
  27185. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27186. {
  27187. front: {
  27188. height: math.unit(175, "cm"),
  27189. weight: math.unit(60, "kg"),
  27190. name: "Front",
  27191. image: {
  27192. source: "./media/characters/fei/front.svg",
  27193. extra: 2581 / 2400,
  27194. bottom: 82.2 / 2663
  27195. }
  27196. },
  27197. },
  27198. [
  27199. {
  27200. name: "Mortal",
  27201. height: math.unit(175, "cm")
  27202. },
  27203. {
  27204. name: "Normal",
  27205. height: math.unit(3500, "m"),
  27206. default: true
  27207. },
  27208. {
  27209. name: "Stroll",
  27210. height: math.unit(17.5, "km")
  27211. },
  27212. {
  27213. name: "Showoff",
  27214. height: math.unit(175, "km")
  27215. },
  27216. ]
  27217. ))
  27218. characterMakers.push(() => makeCharacter(
  27219. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27220. {
  27221. front: {
  27222. height: math.unit(7, "feet"),
  27223. weight: math.unit(1000, "kg"),
  27224. name: "Front",
  27225. image: {
  27226. source: "./media/characters/edrax/front.svg",
  27227. extra: 2838 / 2550,
  27228. bottom: 130 / 2968
  27229. }
  27230. },
  27231. },
  27232. [
  27233. {
  27234. name: "Small",
  27235. height: math.unit(7, "feet")
  27236. },
  27237. {
  27238. name: "Normal",
  27239. height: math.unit(1500, "meters")
  27240. },
  27241. {
  27242. name: "Mega",
  27243. height: math.unit(12000000, "km"),
  27244. default: true
  27245. },
  27246. {
  27247. name: "Megamacro",
  27248. height: math.unit(10600000, "lightyears")
  27249. },
  27250. {
  27251. name: "Hypermacro",
  27252. height: math.unit(256, "yottameters")
  27253. },
  27254. ]
  27255. ))
  27256. characterMakers.push(() => makeCharacter(
  27257. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27258. {
  27259. front: {
  27260. height: math.unit(10, "feet"),
  27261. weight: math.unit(750, "lb"),
  27262. name: "Front",
  27263. image: {
  27264. source: "./media/characters/clove/front.svg",
  27265. extra: 2031 / 1860,
  27266. bottom: 47.8 / 2080
  27267. }
  27268. },
  27269. back: {
  27270. height: math.unit(10, "feet"),
  27271. weight: math.unit(750, "lb"),
  27272. name: "Back",
  27273. image: {
  27274. source: "./media/characters/clove/back.svg",
  27275. extra: 2025 / 1859,
  27276. bottom: 46 / 2071
  27277. }
  27278. },
  27279. },
  27280. [
  27281. {
  27282. name: "Normal",
  27283. height: math.unit(10, "feet"),
  27284. default: true
  27285. },
  27286. ]
  27287. ))
  27288. characterMakers.push(() => makeCharacter(
  27289. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27290. {
  27291. front: {
  27292. height: math.unit(4, "feet"),
  27293. weight: math.unit(50, "lb"),
  27294. name: "Front",
  27295. image: {
  27296. source: "./media/characters/alex-rabbit/front.svg",
  27297. extra: 507 / 458,
  27298. bottom: 18.5 / 527
  27299. }
  27300. },
  27301. back: {
  27302. height: math.unit(4, "feet"),
  27303. weight: math.unit(50, "lb"),
  27304. name: "Back",
  27305. image: {
  27306. source: "./media/characters/alex-rabbit/back.svg",
  27307. extra: 502 / 460,
  27308. bottom: 18.9 / 521
  27309. }
  27310. },
  27311. },
  27312. [
  27313. {
  27314. name: "Normal",
  27315. height: math.unit(4, "feet"),
  27316. default: true
  27317. },
  27318. ]
  27319. ))
  27320. characterMakers.push(() => makeCharacter(
  27321. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27322. {
  27323. front: {
  27324. height: math.unit(1 + 3 / 12, "feet"),
  27325. weight: math.unit(80, "lb"),
  27326. name: "Front",
  27327. image: {
  27328. source: "./media/characters/zander-rose/front.svg",
  27329. extra: 916 / 797,
  27330. bottom: 17 / 933
  27331. }
  27332. },
  27333. back: {
  27334. height: math.unit(1 + 3 / 12, "feet"),
  27335. weight: math.unit(80, "lb"),
  27336. name: "Back",
  27337. image: {
  27338. source: "./media/characters/zander-rose/back.svg",
  27339. extra: 903 / 779,
  27340. bottom: 31 / 934
  27341. }
  27342. },
  27343. },
  27344. [
  27345. {
  27346. name: "Normal",
  27347. height: math.unit(1 + 3 / 12, "feet"),
  27348. default: true
  27349. },
  27350. ]
  27351. ))
  27352. characterMakers.push(() => makeCharacter(
  27353. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27354. {
  27355. anthro: {
  27356. height: math.unit(6, "feet"),
  27357. weight: math.unit(150, "lb"),
  27358. name: "Anthro",
  27359. image: {
  27360. source: "./media/characters/razz/anthro.svg",
  27361. extra: 1437 / 1343,
  27362. bottom: 48 / 1485
  27363. }
  27364. },
  27365. feral: {
  27366. height: math.unit(6, "feet"),
  27367. weight: math.unit(150, "lb"),
  27368. name: "Feral",
  27369. image: {
  27370. source: "./media/characters/razz/feral.svg",
  27371. extra: 2569 / 1385,
  27372. bottom: 95 / 2664
  27373. }
  27374. },
  27375. },
  27376. [
  27377. {
  27378. name: "Normal",
  27379. height: math.unit(6, "feet"),
  27380. default: true
  27381. },
  27382. ]
  27383. ))
  27384. characterMakers.push(() => makeCharacter(
  27385. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27386. {
  27387. front: {
  27388. height: math.unit(9 + 4 / 12, "feet"),
  27389. weight: math.unit(500, "lb"),
  27390. name: "Front",
  27391. image: {
  27392. source: "./media/characters/morrigan/front.svg",
  27393. extra: 2707 / 2579,
  27394. bottom: 156 / 2863
  27395. }
  27396. },
  27397. },
  27398. [
  27399. {
  27400. name: "Normal",
  27401. height: math.unit(9 + 4 / 12, "feet"),
  27402. default: true
  27403. },
  27404. ]
  27405. ))
  27406. characterMakers.push(() => makeCharacter(
  27407. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27408. {
  27409. front: {
  27410. height: math.unit(5, "stories"),
  27411. weight: math.unit(4000, "lb"),
  27412. name: "Front",
  27413. image: {
  27414. source: "./media/characters/jenene/front.svg",
  27415. extra: 1780 / 1710,
  27416. bottom: 57 / 1837
  27417. }
  27418. },
  27419. },
  27420. [
  27421. {
  27422. name: "Normal",
  27423. height: math.unit(5, "stories"),
  27424. default: true
  27425. },
  27426. ]
  27427. ))
  27428. characterMakers.push(() => makeCharacter(
  27429. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27430. {
  27431. front: {
  27432. height: math.unit(6, "feet"),
  27433. weight: math.unit(150, "lb"),
  27434. name: "Front",
  27435. image: {
  27436. source: "./media/characters/vix-archaser/front.svg",
  27437. extra: 2767 / 2562,
  27438. bottom: 36 / 2803
  27439. }
  27440. },
  27441. },
  27442. [
  27443. {
  27444. name: "Micro",
  27445. height: math.unit(1, "foot")
  27446. },
  27447. {
  27448. name: "Normal",
  27449. height: math.unit(6 + 5 / 12, "feet")
  27450. },
  27451. {
  27452. name: "Minimacro",
  27453. height: math.unit(500, "feet")
  27454. },
  27455. {
  27456. name: "Macro",
  27457. height: math.unit(4, "miles")
  27458. },
  27459. {
  27460. name: "Megamacro",
  27461. height: math.unit(250, "miles"),
  27462. default: true
  27463. },
  27464. {
  27465. name: "Gigamacro",
  27466. height: math.unit(1, "universe")
  27467. },
  27468. {
  27469. name: "Endgame",
  27470. height: math.unit(100, "multiverses")
  27471. }
  27472. ]
  27473. ))
  27474. characterMakers.push(() => makeCharacter(
  27475. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27476. {
  27477. taurSfw: {
  27478. height: math.unit(10, "meters"),
  27479. weight: math.unit(17500, "kg"),
  27480. name: "Taur",
  27481. image: {
  27482. source: "./media/characters/faey/taur-sfw.svg",
  27483. extra: 1200 / 968,
  27484. bottom: 41 / 1241
  27485. }
  27486. },
  27487. chestmaw: {
  27488. height: math.unit(2.01, "meters"),
  27489. name: "Chestmaw",
  27490. image: {
  27491. source: "./media/characters/faey/chestmaw.svg"
  27492. }
  27493. },
  27494. foot: {
  27495. height: math.unit(2.43, "meters"),
  27496. name: "Foot",
  27497. image: {
  27498. source: "./media/characters/faey/foot.svg"
  27499. }
  27500. },
  27501. jaws: {
  27502. height: math.unit(1.66, "meters"),
  27503. name: "Jaws",
  27504. image: {
  27505. source: "./media/characters/faey/jaws.svg"
  27506. }
  27507. },
  27508. tongues: {
  27509. height: math.unit(2.01, "meters"),
  27510. name: "Tongues",
  27511. image: {
  27512. source: "./media/characters/faey/tongues.svg"
  27513. }
  27514. },
  27515. },
  27516. [
  27517. {
  27518. name: "Small",
  27519. height: math.unit(10, "meters"),
  27520. default: true
  27521. },
  27522. {
  27523. name: "Big",
  27524. height: math.unit(500000, "km")
  27525. },
  27526. ]
  27527. ))
  27528. characterMakers.push(() => makeCharacter(
  27529. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27530. {
  27531. front: {
  27532. height: math.unit(7, "feet"),
  27533. weight: math.unit(275, "lb"),
  27534. name: "Front",
  27535. image: {
  27536. source: "./media/characters/roku/front.svg",
  27537. extra: 903 / 878,
  27538. bottom: 37 / 940
  27539. }
  27540. },
  27541. },
  27542. [
  27543. {
  27544. name: "Normal",
  27545. height: math.unit(7, "feet"),
  27546. default: true
  27547. },
  27548. {
  27549. name: "Macro",
  27550. height: math.unit(500, "feet")
  27551. },
  27552. {
  27553. name: "Megamacro",
  27554. height: math.unit(200, "miles")
  27555. },
  27556. ]
  27557. ))
  27558. characterMakers.push(() => makeCharacter(
  27559. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27560. {
  27561. front: {
  27562. height: math.unit(6 + 2 / 12, "feet"),
  27563. weight: math.unit(150, "lb"),
  27564. name: "Front",
  27565. image: {
  27566. source: "./media/characters/lira/front.svg",
  27567. extra: 1727 / 1605,
  27568. bottom: 26 / 1753
  27569. }
  27570. },
  27571. back: {
  27572. height: math.unit(6 + 2 / 12, "feet"),
  27573. weight: math.unit(150, "lb"),
  27574. name: "Back",
  27575. image: {
  27576. source: "./media/characters/lira/back.svg",
  27577. extra: 1713 / 159,
  27578. bottom: 20 / 1733
  27579. }
  27580. },
  27581. hand: {
  27582. height: math.unit(0.75, "feet"),
  27583. name: "Hand",
  27584. image: {
  27585. source: "./media/characters/lira/hand.svg"
  27586. }
  27587. },
  27588. maw: {
  27589. height: math.unit(0.65, "feet"),
  27590. name: "Maw",
  27591. image: {
  27592. source: "./media/characters/lira/maw.svg"
  27593. }
  27594. },
  27595. pawDigi: {
  27596. height: math.unit(1.6, "feet"),
  27597. name: "Paw Digi",
  27598. image: {
  27599. source: "./media/characters/lira/paw-digi.svg"
  27600. }
  27601. },
  27602. pawPlanti: {
  27603. height: math.unit(1.4, "feet"),
  27604. name: "Paw Planti",
  27605. image: {
  27606. source: "./media/characters/lira/paw-planti.svg"
  27607. }
  27608. },
  27609. },
  27610. [
  27611. {
  27612. name: "Normal",
  27613. height: math.unit(6 + 2 / 12, "feet"),
  27614. default: true
  27615. },
  27616. {
  27617. name: "Macro",
  27618. height: math.unit(100, "feet")
  27619. },
  27620. {
  27621. name: "Macro²",
  27622. height: math.unit(1600, "feet")
  27623. },
  27624. {
  27625. name: "Planetary",
  27626. height: math.unit(20, "earths")
  27627. },
  27628. ]
  27629. ))
  27630. characterMakers.push(() => makeCharacter(
  27631. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27632. {
  27633. front: {
  27634. height: math.unit(6, "feet"),
  27635. weight: math.unit(150, "lb"),
  27636. name: "Front",
  27637. image: {
  27638. source: "./media/characters/hadjet/front.svg",
  27639. extra: 1480 / 1346,
  27640. bottom: 26 / 1506
  27641. }
  27642. },
  27643. frontNsfw: {
  27644. height: math.unit(6, "feet"),
  27645. weight: math.unit(150, "lb"),
  27646. name: "Front (NSFW)",
  27647. image: {
  27648. source: "./media/characters/hadjet/front-nsfw.svg",
  27649. extra: 1440 / 1358,
  27650. bottom: 52 / 1492
  27651. }
  27652. },
  27653. },
  27654. [
  27655. {
  27656. name: "Macro",
  27657. height: math.unit(10, "stories"),
  27658. default: true
  27659. },
  27660. {
  27661. name: "Megamacro",
  27662. height: math.unit(1.5, "miles")
  27663. },
  27664. {
  27665. name: "Megamacro+",
  27666. height: math.unit(5, "miles")
  27667. },
  27668. ]
  27669. ))
  27670. characterMakers.push(() => makeCharacter(
  27671. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27672. {
  27673. side: {
  27674. height: math.unit(106, "feet"),
  27675. weight: math.unit(500, "tonnes"),
  27676. name: "Side",
  27677. image: {
  27678. source: "./media/characters/kodran/side.svg",
  27679. extra: 553 / 480,
  27680. bottom: 33 / 586
  27681. }
  27682. },
  27683. front: {
  27684. height: math.unit(132, "feet"),
  27685. weight: math.unit(500, "tonnes"),
  27686. name: "Front",
  27687. image: {
  27688. source: "./media/characters/kodran/front.svg",
  27689. extra: 667 / 643,
  27690. bottom: 42 / 709
  27691. }
  27692. },
  27693. flying: {
  27694. height: math.unit(350, "feet"),
  27695. weight: math.unit(500, "tonnes"),
  27696. name: "Flying",
  27697. image: {
  27698. source: "./media/characters/kodran/flying.svg"
  27699. }
  27700. },
  27701. foot: {
  27702. height: math.unit(33, "feet"),
  27703. name: "Foot",
  27704. image: {
  27705. source: "./media/characters/kodran/foot.svg"
  27706. }
  27707. },
  27708. footFront: {
  27709. height: math.unit(19, "feet"),
  27710. name: "Foot (Front)",
  27711. image: {
  27712. source: "./media/characters/kodran/foot-front.svg",
  27713. extra: 261 / 261,
  27714. bottom: 91 / 352
  27715. }
  27716. },
  27717. headFront: {
  27718. height: math.unit(53, "feet"),
  27719. name: "Head (Front)",
  27720. image: {
  27721. source: "./media/characters/kodran/head-front.svg"
  27722. }
  27723. },
  27724. headSide: {
  27725. height: math.unit(65, "feet"),
  27726. name: "Head (Side)",
  27727. image: {
  27728. source: "./media/characters/kodran/head-side.svg"
  27729. }
  27730. },
  27731. throat: {
  27732. height: math.unit(79, "feet"),
  27733. name: "Throat",
  27734. image: {
  27735. source: "./media/characters/kodran/throat.svg"
  27736. }
  27737. },
  27738. },
  27739. [
  27740. {
  27741. name: "Large",
  27742. height: math.unit(106, "feet"),
  27743. default: true
  27744. },
  27745. ]
  27746. ))
  27747. characterMakers.push(() => makeCharacter(
  27748. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27749. {
  27750. side: {
  27751. height: math.unit(11, "feet"),
  27752. weight: math.unit(150, "lb"),
  27753. name: "Side",
  27754. image: {
  27755. source: "./media/characters/pyxaron/side.svg",
  27756. extra: 305 / 195,
  27757. bottom: 17 / 322
  27758. }
  27759. },
  27760. },
  27761. [
  27762. {
  27763. name: "Normal",
  27764. height: math.unit(11, "feet"),
  27765. default: true
  27766. },
  27767. ]
  27768. ))
  27769. characterMakers.push(() => makeCharacter(
  27770. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27771. {
  27772. front: {
  27773. height: math.unit(6, "feet"),
  27774. weight: math.unit(150, "lb"),
  27775. name: "Front",
  27776. image: {
  27777. source: "./media/characters/meep/front.svg",
  27778. extra: 88 / 80,
  27779. bottom: 6 / 94
  27780. }
  27781. },
  27782. },
  27783. [
  27784. {
  27785. name: "Fun Sized",
  27786. height: math.unit(2, "inches"),
  27787. default: true
  27788. },
  27789. {
  27790. name: "Friend Sized",
  27791. height: math.unit(8, "inches")
  27792. },
  27793. ]
  27794. ))
  27795. characterMakers.push(() => makeCharacter(
  27796. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27797. {
  27798. front: {
  27799. height: math.unit(15, "feet"),
  27800. weight: math.unit(2500, "lb"),
  27801. name: "Front",
  27802. image: {
  27803. source: "./media/characters/holly-rabbit/front.svg",
  27804. extra: 1433 / 1233,
  27805. bottom: 125 / 1558
  27806. }
  27807. },
  27808. dick: {
  27809. height: math.unit(4.6, "feet"),
  27810. name: "Dick",
  27811. image: {
  27812. source: "./media/characters/holly-rabbit/dick.svg"
  27813. }
  27814. },
  27815. },
  27816. [
  27817. {
  27818. name: "Normal",
  27819. height: math.unit(15, "feet"),
  27820. default: true
  27821. },
  27822. {
  27823. name: "Macro",
  27824. height: math.unit(250, "feet")
  27825. },
  27826. {
  27827. name: "Macro+",
  27828. height: math.unit(2500, "feet")
  27829. },
  27830. ]
  27831. ))
  27832. characterMakers.push(() => makeCharacter(
  27833. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27834. {
  27835. front: {
  27836. height: math.unit(3.02, "meters"),
  27837. weight: math.unit(500, "kg"),
  27838. name: "Front",
  27839. image: {
  27840. source: "./media/characters/drena/front.svg",
  27841. extra: 282 / 243,
  27842. bottom: 8 / 290
  27843. }
  27844. },
  27845. side: {
  27846. height: math.unit(3.02, "meters"),
  27847. weight: math.unit(500, "kg"),
  27848. name: "Side",
  27849. image: {
  27850. source: "./media/characters/drena/side.svg",
  27851. extra: 280 / 245,
  27852. bottom: 10 / 290
  27853. }
  27854. },
  27855. back: {
  27856. height: math.unit(3.02, "meters"),
  27857. weight: math.unit(500, "kg"),
  27858. name: "Back",
  27859. image: {
  27860. source: "./media/characters/drena/back.svg",
  27861. extra: 278 / 243,
  27862. bottom: 2 / 280
  27863. }
  27864. },
  27865. foot: {
  27866. height: math.unit(0.75, "meters"),
  27867. name: "Foot",
  27868. image: {
  27869. source: "./media/characters/drena/foot.svg"
  27870. }
  27871. },
  27872. maw: {
  27873. height: math.unit(0.82, "meters"),
  27874. name: "Maw",
  27875. image: {
  27876. source: "./media/characters/drena/maw.svg"
  27877. }
  27878. },
  27879. rump: {
  27880. height: math.unit(0.93, "meters"),
  27881. name: "Rump",
  27882. image: {
  27883. source: "./media/characters/drena/rump.svg"
  27884. }
  27885. },
  27886. },
  27887. [
  27888. {
  27889. name: "Normal",
  27890. height: math.unit(3.02, "meters"),
  27891. default: true
  27892. },
  27893. ]
  27894. ))
  27895. characterMakers.push(() => makeCharacter(
  27896. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27897. {
  27898. front: {
  27899. height: math.unit(6 + 4 / 12, "feet"),
  27900. weight: math.unit(250, "lb"),
  27901. name: "Front",
  27902. image: {
  27903. source: "./media/characters/remmyzilla/front.svg",
  27904. extra: 4033 / 3588,
  27905. bottom: 123 / 4156
  27906. }
  27907. },
  27908. back: {
  27909. height: math.unit(6 + 4 / 12, "feet"),
  27910. weight: math.unit(250, "lb"),
  27911. name: "Back",
  27912. image: {
  27913. source: "./media/characters/remmyzilla/back.svg",
  27914. extra: 2687 / 2555,
  27915. bottom: 48 / 2735
  27916. }
  27917. },
  27918. frontFancy: {
  27919. height: math.unit(6 + 4 / 12, "feet"),
  27920. weight: math.unit(250, "lb"),
  27921. name: "Front (Fancy)",
  27922. image: {
  27923. source: "./media/characters/remmyzilla/front-fancy.svg",
  27924. extra: 4119 / 3419,
  27925. bottom: 237 / 4356
  27926. }
  27927. },
  27928. paw: {
  27929. height: math.unit(1.73, "feet"),
  27930. name: "Paw",
  27931. image: {
  27932. source: "./media/characters/remmyzilla/paw.svg"
  27933. }
  27934. },
  27935. maw: {
  27936. height: math.unit(1.73, "feet"),
  27937. name: "Maw",
  27938. image: {
  27939. source: "./media/characters/remmyzilla/maw.svg"
  27940. }
  27941. },
  27942. },
  27943. [
  27944. {
  27945. name: "Normal",
  27946. height: math.unit(6 + 4 / 12, "feet")
  27947. },
  27948. {
  27949. name: "Minimacro",
  27950. height: math.unit(12 + 8 / 12, "feet")
  27951. },
  27952. {
  27953. name: "Normal",
  27954. height: math.unit(640, "feet"),
  27955. default: true
  27956. },
  27957. {
  27958. name: "Megamacro",
  27959. height: math.unit(6400, "feet")
  27960. },
  27961. {
  27962. name: "Gigamacro",
  27963. height: math.unit(64000, "miles")
  27964. },
  27965. ]
  27966. ))
  27967. characterMakers.push(() => makeCharacter(
  27968. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27969. {
  27970. front: {
  27971. height: math.unit(2.5, "meters"),
  27972. weight: math.unit(300, "lb"),
  27973. name: "Front",
  27974. image: {
  27975. source: "./media/characters/lawrence/front.svg",
  27976. extra: 357 / 335,
  27977. bottom: 30 / 387
  27978. }
  27979. },
  27980. back: {
  27981. height: math.unit(2.5, "meters"),
  27982. weight: math.unit(300, "lb"),
  27983. name: "Back",
  27984. image: {
  27985. source: "./media/characters/lawrence/back.svg",
  27986. extra: 357 / 338,
  27987. bottom: 16 / 373
  27988. }
  27989. },
  27990. head: {
  27991. height: math.unit(0.9, "meter"),
  27992. name: "Head",
  27993. image: {
  27994. source: "./media/characters/lawrence/head.svg"
  27995. }
  27996. },
  27997. maw: {
  27998. height: math.unit(0.7, "meter"),
  27999. name: "Maw",
  28000. image: {
  28001. source: "./media/characters/lawrence/maw.svg"
  28002. }
  28003. },
  28004. footBottom: {
  28005. height: math.unit(0.5, "meter"),
  28006. name: "Foot (Bottom)",
  28007. image: {
  28008. source: "./media/characters/lawrence/foot-bottom.svg"
  28009. }
  28010. },
  28011. footTop: {
  28012. height: math.unit(0.5, "meter"),
  28013. name: "Foot (Top)",
  28014. image: {
  28015. source: "./media/characters/lawrence/foot-top.svg"
  28016. }
  28017. },
  28018. },
  28019. [
  28020. {
  28021. name: "Normal",
  28022. height: math.unit(2.5, "meters"),
  28023. default: true
  28024. },
  28025. {
  28026. name: "Macro",
  28027. height: math.unit(95, "meters")
  28028. },
  28029. {
  28030. name: "Megamacro",
  28031. height: math.unit(150, "km")
  28032. },
  28033. ]
  28034. ))
  28035. characterMakers.push(() => makeCharacter(
  28036. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28037. {
  28038. front: {
  28039. height: math.unit(4.2, "meters"),
  28040. name: "Front",
  28041. image: {
  28042. source: "./media/characters/sydney/front.svg",
  28043. extra: 1323 / 1277,
  28044. bottom: 111 / 1434
  28045. }
  28046. },
  28047. },
  28048. [
  28049. {
  28050. name: "Normal",
  28051. height: math.unit(4.2, "meters"),
  28052. default: true
  28053. },
  28054. ]
  28055. ))
  28056. characterMakers.push(() => makeCharacter(
  28057. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28058. {
  28059. back: {
  28060. height: math.unit(201, "feet"),
  28061. name: "Back",
  28062. image: {
  28063. source: "./media/characters/jessica/back.svg",
  28064. extra: 273 / 259,
  28065. bottom: 7 / 280
  28066. }
  28067. },
  28068. },
  28069. [
  28070. {
  28071. name: "Normal",
  28072. height: math.unit(201, "feet"),
  28073. default: true
  28074. },
  28075. {
  28076. name: "Megamacro",
  28077. height: math.unit(8, "miles")
  28078. },
  28079. ]
  28080. ))
  28081. characterMakers.push(() => makeCharacter(
  28082. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28083. {
  28084. side: {
  28085. height: math.unit(320, "cm"),
  28086. name: "Side",
  28087. image: {
  28088. source: "./media/characters/victoria/side.svg",
  28089. extra: 778 / 346,
  28090. bottom: 56 / 834
  28091. }
  28092. },
  28093. maw: {
  28094. height: math.unit(5.9, "feet"),
  28095. name: "Maw",
  28096. image: {
  28097. source: "./media/characters/victoria/maw.svg"
  28098. }
  28099. },
  28100. },
  28101. [
  28102. {
  28103. name: "Normal",
  28104. height: math.unit(320, "cm"),
  28105. default: true
  28106. },
  28107. ]
  28108. ))
  28109. characterMakers.push(() => makeCharacter(
  28110. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28111. {
  28112. front: {
  28113. height: math.unit(5 + 6 / 12, "feet"),
  28114. name: "Front",
  28115. image: {
  28116. source: "./media/characters/cat/front.svg",
  28117. extra: 1374 / 1257,
  28118. bottom: 59 / 1433
  28119. }
  28120. },
  28121. back: {
  28122. height: math.unit(5 + 6 / 12, "feet"),
  28123. name: "Back",
  28124. image: {
  28125. source: "./media/characters/cat/back.svg",
  28126. extra: 1337 / 1226,
  28127. bottom: 34 / 1371
  28128. }
  28129. },
  28130. taur: {
  28131. height: math.unit(7, "feet"),
  28132. name: "Taur",
  28133. image: {
  28134. source: "./media/characters/cat/taur.svg",
  28135. extra: 1345 / 1231,
  28136. bottom: 66 / 1411
  28137. }
  28138. },
  28139. lucario: {
  28140. height: math.unit(4, "feet"),
  28141. name: "Lucario",
  28142. image: {
  28143. source: "./media/characters/cat/lucario.svg",
  28144. extra: 1470 / 1318,
  28145. bottom: 65 / 1535
  28146. }
  28147. },
  28148. megaLucario: {
  28149. height: math.unit(4, "feet"),
  28150. name: "Mega Lucario",
  28151. image: {
  28152. source: "./media/characters/cat/mega-lucario.svg",
  28153. extra: 1515 / 1319,
  28154. bottom: 63 / 1578
  28155. }
  28156. },
  28157. nickit: {
  28158. height: math.unit(2, "feet"),
  28159. name: "Nickit",
  28160. image: {
  28161. source: "./media/characters/cat/nickit.svg",
  28162. extra: 1980 / 1585,
  28163. bottom: 102 / 2082
  28164. }
  28165. },
  28166. lopunnyFront: {
  28167. height: math.unit(5, "feet"),
  28168. name: "Lopunny (Front)",
  28169. image: {
  28170. source: "./media/characters/cat/lopunny-front.svg",
  28171. extra: 1782 / 1469,
  28172. bottom: 38 / 1820
  28173. }
  28174. },
  28175. lopunnyBack: {
  28176. height: math.unit(5, "feet"),
  28177. name: "Lopunny (Back)",
  28178. image: {
  28179. source: "./media/characters/cat/lopunny-back.svg",
  28180. extra: 1660 / 1490,
  28181. bottom: 25 / 1685
  28182. }
  28183. },
  28184. },
  28185. [
  28186. {
  28187. name: "Really small",
  28188. height: math.unit(1, "nm")
  28189. },
  28190. {
  28191. name: "Micro",
  28192. height: math.unit(5, "inches")
  28193. },
  28194. {
  28195. name: "Normal",
  28196. height: math.unit(5 + 6 / 12, "feet"),
  28197. default: true
  28198. },
  28199. {
  28200. name: "Macro",
  28201. height: math.unit(50, "feet")
  28202. },
  28203. {
  28204. name: "Macro+",
  28205. height: math.unit(150, "feet")
  28206. },
  28207. {
  28208. name: "Megamacro",
  28209. height: math.unit(100, "miles")
  28210. },
  28211. ]
  28212. ))
  28213. characterMakers.push(() => makeCharacter(
  28214. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28215. {
  28216. front: {
  28217. height: math.unit(63.4, "meters"),
  28218. weight: math.unit(3.28349e+6, "kilograms"),
  28219. name: "Front",
  28220. image: {
  28221. source: "./media/characters/kirina-violet/front.svg",
  28222. extra: 2812 / 2725,
  28223. bottom: 0 / 2812
  28224. }
  28225. },
  28226. back: {
  28227. height: math.unit(63.4, "meters"),
  28228. weight: math.unit(3.28349e+6, "kilograms"),
  28229. name: "Back",
  28230. image: {
  28231. source: "./media/characters/kirina-violet/back.svg",
  28232. extra: 2812 / 2725,
  28233. bottom: 0 / 2812
  28234. }
  28235. },
  28236. mouth: {
  28237. height: math.unit(4.35, "meters"),
  28238. name: "Mouth",
  28239. image: {
  28240. source: "./media/characters/kirina-violet/mouth.svg"
  28241. }
  28242. },
  28243. paw: {
  28244. height: math.unit(5.6, "meters"),
  28245. name: "Paw",
  28246. image: {
  28247. source: "./media/characters/kirina-violet/paw.svg"
  28248. }
  28249. },
  28250. tail: {
  28251. height: math.unit(18, "meters"),
  28252. name: "Tail",
  28253. image: {
  28254. source: "./media/characters/kirina-violet/tail.svg"
  28255. }
  28256. },
  28257. },
  28258. [
  28259. {
  28260. name: "Macro",
  28261. height: math.unit(63.4, "meters"),
  28262. default: true
  28263. },
  28264. ]
  28265. ))
  28266. characterMakers.push(() => makeCharacter(
  28267. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28268. {
  28269. front: {
  28270. height: math.unit(60, "feet"),
  28271. name: "Front",
  28272. image: {
  28273. source: "./media/characters/cat-gigachu/front.svg",
  28274. extra: 1024 / 780,
  28275. bottom: 23 / 1047
  28276. }
  28277. },
  28278. back: {
  28279. height: math.unit(60, "feet"),
  28280. name: "Back",
  28281. image: {
  28282. source: "./media/characters/cat-gigachu/back.svg",
  28283. extra: 1024 / 780,
  28284. bottom: 23 / 1047
  28285. }
  28286. },
  28287. },
  28288. [
  28289. {
  28290. name: "Dynamax",
  28291. height: math.unit(60, "feet"),
  28292. default: true
  28293. },
  28294. ]
  28295. ))
  28296. characterMakers.push(() => makeCharacter(
  28297. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28298. {
  28299. front: {
  28300. height: math.unit(6, "feet"),
  28301. weight: math.unit(150, "lb"),
  28302. name: "Front",
  28303. image: {
  28304. source: "./media/characters/sfaiyan/front.svg",
  28305. extra: 999 / 978,
  28306. bottom: 5 / 1004
  28307. }
  28308. },
  28309. },
  28310. [
  28311. {
  28312. name: "Normal",
  28313. height: math.unit(1.82, "meters")
  28314. },
  28315. {
  28316. name: "Giant",
  28317. height: math.unit(2.27, "km"),
  28318. default: true
  28319. },
  28320. ]
  28321. ))
  28322. characterMakers.push(() => makeCharacter(
  28323. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28324. {
  28325. front: {
  28326. height: math.unit(179, "cm"),
  28327. weight: math.unit(100, "kg"),
  28328. name: "Front",
  28329. image: {
  28330. source: "./media/characters/raunehkeli/front.svg",
  28331. extra: 1934 / 1926,
  28332. bottom: 0 / 1934
  28333. }
  28334. },
  28335. },
  28336. [
  28337. {
  28338. name: "Normal",
  28339. height: math.unit(179, "cm")
  28340. },
  28341. {
  28342. name: "Maximum",
  28343. height: math.unit(575, "meters"),
  28344. default: true
  28345. },
  28346. ]
  28347. ))
  28348. characterMakers.push(() => makeCharacter(
  28349. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28350. {
  28351. front: {
  28352. height: math.unit(6, "feet"),
  28353. weight: math.unit(150, "lb"),
  28354. name: "Front",
  28355. image: {
  28356. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28357. extra: 2625 / 2518,
  28358. bottom: 60 / 2685
  28359. }
  28360. },
  28361. },
  28362. [
  28363. {
  28364. name: "Normal",
  28365. height: math.unit(6 + 2 / 12, "feet")
  28366. },
  28367. {
  28368. name: "Macro",
  28369. height: math.unit(1180, "feet"),
  28370. default: true
  28371. },
  28372. ]
  28373. ))
  28374. characterMakers.push(() => makeCharacter(
  28375. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28376. {
  28377. front: {
  28378. height: math.unit(5 + 6 / 12, "feet"),
  28379. weight: math.unit(108, "lb"),
  28380. name: "Front",
  28381. image: {
  28382. source: "./media/characters/lilith-zott/front.svg",
  28383. extra: 2510 / 2238,
  28384. bottom: 100 / 2610
  28385. }
  28386. },
  28387. frontDressed: {
  28388. height: math.unit(5 + 6 / 12, "feet"),
  28389. weight: math.unit(108, "lb"),
  28390. name: "Front (Dressed)",
  28391. image: {
  28392. source: "./media/characters/lilith-zott/front-dressed.svg",
  28393. extra: 2510 / 2238,
  28394. bottom: 100 / 2610
  28395. }
  28396. },
  28397. },
  28398. [
  28399. {
  28400. name: "Normal",
  28401. height: math.unit(5 + 6 / 12, "feet")
  28402. },
  28403. {
  28404. name: "Macro",
  28405. height: math.unit(1030, "feet"),
  28406. default: true
  28407. },
  28408. ]
  28409. ))
  28410. characterMakers.push(() => makeCharacter(
  28411. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28412. {
  28413. front: {
  28414. height: math.unit(6, "feet"),
  28415. weight: math.unit(150, "lb"),
  28416. name: "Front",
  28417. image: {
  28418. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28419. extra: 2567 / 2435,
  28420. bottom: 39 / 2606
  28421. }
  28422. },
  28423. frontSuper: {
  28424. height: math.unit(6, "feet"),
  28425. name: "Front (Super)",
  28426. image: {
  28427. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28428. extra: 2567 / 2435,
  28429. bottom: 39 / 2606
  28430. }
  28431. },
  28432. },
  28433. [
  28434. {
  28435. name: "Normal",
  28436. height: math.unit(5 + 10 / 12, "feet")
  28437. },
  28438. {
  28439. name: "Macro",
  28440. height: math.unit(1100, "feet"),
  28441. default: true
  28442. },
  28443. ]
  28444. ))
  28445. characterMakers.push(() => makeCharacter(
  28446. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28447. {
  28448. front: {
  28449. height: math.unit(100, "miles"),
  28450. name: "Front",
  28451. image: {
  28452. source: "./media/characters/sona/front.svg",
  28453. extra: 2433 / 2201,
  28454. bottom: 53 / 2486
  28455. }
  28456. },
  28457. foot: {
  28458. height: math.unit(16.1, "miles"),
  28459. name: "Foot",
  28460. image: {
  28461. source: "./media/characters/sona/foot.svg"
  28462. }
  28463. },
  28464. },
  28465. [
  28466. {
  28467. name: "Macro",
  28468. height: math.unit(100, "miles"),
  28469. default: true
  28470. },
  28471. ]
  28472. ))
  28473. characterMakers.push(() => makeCharacter(
  28474. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28475. {
  28476. front: {
  28477. height: math.unit(6, "feet"),
  28478. weight: math.unit(150, "lb"),
  28479. name: "Front",
  28480. image: {
  28481. source: "./media/characters/bailey/front.svg",
  28482. extra: 1778 / 1724,
  28483. bottom: 30 / 1808
  28484. }
  28485. },
  28486. },
  28487. [
  28488. {
  28489. name: "Micro",
  28490. height: math.unit(4, "inches")
  28491. },
  28492. {
  28493. name: "Normal",
  28494. height: math.unit(5 + 5 / 12, "feet"),
  28495. default: true
  28496. },
  28497. {
  28498. name: "Macro",
  28499. height: math.unit(250, "feet")
  28500. },
  28501. {
  28502. name: "Megamacro",
  28503. height: math.unit(100, "miles")
  28504. },
  28505. ]
  28506. ))
  28507. characterMakers.push(() => makeCharacter(
  28508. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28509. {
  28510. front: {
  28511. height: math.unit(5 + 2 / 12, "feet"),
  28512. weight: math.unit(120, "lb"),
  28513. name: "Front",
  28514. image: {
  28515. source: "./media/characters/snaps/front.svg",
  28516. extra: 2370 / 2177,
  28517. bottom: 48 / 2418
  28518. }
  28519. },
  28520. back: {
  28521. height: math.unit(5 + 2 / 12, "feet"),
  28522. weight: math.unit(120, "lb"),
  28523. name: "Back",
  28524. image: {
  28525. source: "./media/characters/snaps/back.svg",
  28526. extra: 2408 / 2258,
  28527. bottom: 15 / 2423
  28528. }
  28529. },
  28530. },
  28531. [
  28532. {
  28533. name: "Micro",
  28534. height: math.unit(9, "inches")
  28535. },
  28536. {
  28537. name: "Normal",
  28538. height: math.unit(5 + 2 / 12, "feet"),
  28539. default: true
  28540. },
  28541. {
  28542. name: "Mini Macro",
  28543. height: math.unit(10, "feet")
  28544. },
  28545. ]
  28546. ))
  28547. characterMakers.push(() => makeCharacter(
  28548. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28549. {
  28550. front: {
  28551. height: math.unit(1.8, "meters"),
  28552. weight: math.unit(85, "kg"),
  28553. name: "Front",
  28554. image: {
  28555. source: "./media/characters/azteck/front.svg",
  28556. extra: 2815 / 2625,
  28557. bottom: 89 / 2904
  28558. }
  28559. },
  28560. back: {
  28561. height: math.unit(1.8, "meters"),
  28562. weight: math.unit(85, "kg"),
  28563. name: "Back",
  28564. image: {
  28565. source: "./media/characters/azteck/back.svg",
  28566. extra: 2856 / 2648,
  28567. bottom: 85 / 2941
  28568. }
  28569. },
  28570. frontDressed: {
  28571. height: math.unit(1.8, "meters"),
  28572. weight: math.unit(85, "kg"),
  28573. name: "Front (Dressed)",
  28574. image: {
  28575. source: "./media/characters/azteck/front-dressed.svg",
  28576. extra: 2147 / 2003,
  28577. bottom: 68 / 2215
  28578. }
  28579. },
  28580. head: {
  28581. height: math.unit(0.47, "meters"),
  28582. weight: math.unit(85, "kg"),
  28583. name: "Head",
  28584. image: {
  28585. source: "./media/characters/azteck/head.svg"
  28586. }
  28587. },
  28588. },
  28589. [
  28590. {
  28591. name: "Bite sized",
  28592. height: math.unit(16, "cm")
  28593. },
  28594. {
  28595. name: "Normal",
  28596. height: math.unit(1.8, "meters"),
  28597. default: true
  28598. },
  28599. ]
  28600. ))
  28601. characterMakers.push(() => makeCharacter(
  28602. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28603. {
  28604. front: {
  28605. height: math.unit(6, "feet"),
  28606. weight: math.unit(150, "lb"),
  28607. name: "Front",
  28608. image: {
  28609. source: "./media/characters/pidge/front.svg",
  28610. extra: 620 / 588,
  28611. bottom: 9 / 629
  28612. }
  28613. },
  28614. back: {
  28615. height: math.unit(6, "feet"),
  28616. weight: math.unit(150, "lb"),
  28617. name: "Back",
  28618. image: {
  28619. source: "./media/characters/pidge/back.svg",
  28620. extra: 620 / 588,
  28621. bottom: 9 / 629
  28622. }
  28623. },
  28624. },
  28625. [
  28626. {
  28627. name: "Macro",
  28628. height: math.unit(1, "mile"),
  28629. default: true
  28630. },
  28631. ]
  28632. ))
  28633. characterMakers.push(() => makeCharacter(
  28634. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28635. {
  28636. front: {
  28637. height: math.unit(6, "feet"),
  28638. weight: math.unit(150, "lb"),
  28639. name: "Front",
  28640. image: {
  28641. source: "./media/characters/en/front.svg",
  28642. extra: 1697 / 1563,
  28643. bottom: 103 / 1800
  28644. }
  28645. },
  28646. back: {
  28647. height: math.unit(6, "feet"),
  28648. weight: math.unit(150, "lb"),
  28649. name: "Back",
  28650. image: {
  28651. source: "./media/characters/en/back.svg",
  28652. extra: 1700 / 1570,
  28653. bottom: 51 / 1751
  28654. }
  28655. },
  28656. frontDressed: {
  28657. height: math.unit(6, "feet"),
  28658. weight: math.unit(150, "lb"),
  28659. name: "Front (Dressed)",
  28660. image: {
  28661. source: "./media/characters/en/front-dressed.svg",
  28662. extra: 1697 / 1563,
  28663. bottom: 103 / 1800
  28664. }
  28665. },
  28666. backDressed: {
  28667. height: math.unit(6, "feet"),
  28668. weight: math.unit(150, "lb"),
  28669. name: "Back (Dressed)",
  28670. image: {
  28671. source: "./media/characters/en/back-dressed.svg",
  28672. extra: 1700 / 1570,
  28673. bottom: 51 / 1751
  28674. }
  28675. },
  28676. },
  28677. [
  28678. {
  28679. name: "Macro",
  28680. height: math.unit(210, "feet"),
  28681. default: true
  28682. },
  28683. ]
  28684. ))
  28685. characterMakers.push(() => makeCharacter(
  28686. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28687. {
  28688. front: {
  28689. height: math.unit(6, "feet"),
  28690. weight: math.unit(150, "lb"),
  28691. name: "Front",
  28692. image: {
  28693. source: "./media/characters/haze-orris/front.svg",
  28694. extra: 3975 / 3525,
  28695. bottom: 137 / 4112
  28696. }
  28697. },
  28698. },
  28699. [
  28700. {
  28701. name: "Micro",
  28702. height: math.unit(150, "mm"),
  28703. default: true
  28704. },
  28705. ]
  28706. ))
  28707. characterMakers.push(() => makeCharacter(
  28708. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28709. {
  28710. front: {
  28711. height: math.unit(6, "feet"),
  28712. weight: math.unit(150, "lb"),
  28713. name: "Front",
  28714. image: {
  28715. source: "./media/characters/casselene-yaro/front.svg",
  28716. extra: 4721 / 4541,
  28717. bottom: 82 / 4803
  28718. }
  28719. },
  28720. back: {
  28721. height: math.unit(6, "feet"),
  28722. weight: math.unit(150, "lb"),
  28723. name: "Back",
  28724. image: {
  28725. source: "./media/characters/casselene-yaro/back.svg",
  28726. extra: 4569 / 4377,
  28727. bottom: 69 / 4638
  28728. }
  28729. },
  28730. frontDressed: {
  28731. height: math.unit(6, "feet"),
  28732. weight: math.unit(150, "lb"),
  28733. name: "Front-dressed",
  28734. image: {
  28735. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28736. extra: 4721 / 4541,
  28737. bottom: 82 / 4803
  28738. }
  28739. },
  28740. },
  28741. [
  28742. {
  28743. name: "Macro",
  28744. height: math.unit(190, "feet"),
  28745. default: true
  28746. },
  28747. ]
  28748. ))
  28749. characterMakers.push(() => makeCharacter(
  28750. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28751. {
  28752. front: {
  28753. height: math.unit(6, "feet"),
  28754. weight: math.unit(150, "lb"),
  28755. name: "Front",
  28756. image: {
  28757. source: "./media/characters/myra-rue-delore/front.svg",
  28758. extra: 1340 / 1308,
  28759. bottom: 67 / 1407
  28760. }
  28761. },
  28762. back: {
  28763. height: math.unit(6, "feet"),
  28764. weight: math.unit(150, "lb"),
  28765. name: "Back",
  28766. image: {
  28767. source: "./media/characters/myra-rue-delore/back.svg",
  28768. extra: 1341 / 1310,
  28769. bottom: 40 / 1381
  28770. }
  28771. },
  28772. frontDressed: {
  28773. height: math.unit(6, "feet"),
  28774. weight: math.unit(150, "lb"),
  28775. name: "Front (Dressed)",
  28776. image: {
  28777. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28778. extra: 1340 / 1308,
  28779. bottom: 67 / 1407
  28780. }
  28781. },
  28782. },
  28783. [
  28784. {
  28785. name: "Macro",
  28786. height: math.unit(150, "feet"),
  28787. default: true
  28788. },
  28789. ]
  28790. ))
  28791. characterMakers.push(() => makeCharacter(
  28792. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28793. {
  28794. front: {
  28795. height: math.unit(10, "feet"),
  28796. weight: math.unit(15015, "lb"),
  28797. name: "Front",
  28798. image: {
  28799. source: "./media/characters/fem!plat/front.svg",
  28800. extra: 2799 / 2604,
  28801. bottom: 149 / 2948
  28802. }
  28803. },
  28804. },
  28805. [
  28806. {
  28807. name: "Normal",
  28808. height: math.unit(10, "feet"),
  28809. default: true
  28810. },
  28811. {
  28812. name: "Macro",
  28813. height: math.unit(100, "feet")
  28814. },
  28815. {
  28816. name: "Megamacro",
  28817. height: math.unit(1000, "feet")
  28818. },
  28819. ]
  28820. ))
  28821. characterMakers.push(() => makeCharacter(
  28822. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28823. {
  28824. front: {
  28825. height: math.unit(15 + 5 / 12, "feet"),
  28826. weight: math.unit(4600, "lb"),
  28827. name: "Front",
  28828. image: {
  28829. source: "./media/characters/neapolitan-ananassa/front.svg",
  28830. extra: 2903 / 2736,
  28831. bottom: 0 / 2903
  28832. }
  28833. },
  28834. side: {
  28835. height: math.unit(15 + 5 / 12, "feet"),
  28836. weight: math.unit(4600, "lb"),
  28837. name: "Side",
  28838. image: {
  28839. source: "./media/characters/neapolitan-ananassa/side.svg",
  28840. extra: 2925 / 2719,
  28841. bottom: 0 / 2925
  28842. }
  28843. },
  28844. back: {
  28845. height: math.unit(15 + 5 / 12, "feet"),
  28846. weight: math.unit(4600, "lb"),
  28847. name: "Back",
  28848. image: {
  28849. source: "./media/characters/neapolitan-ananassa/back.svg",
  28850. extra: 2903 / 2736,
  28851. bottom: 0 / 2903
  28852. }
  28853. },
  28854. },
  28855. [
  28856. {
  28857. name: "Normal",
  28858. height: math.unit(15 + 5 / 12, "feet"),
  28859. default: true
  28860. },
  28861. {
  28862. name: "Post-Millenium",
  28863. height: math.unit(35 + 5 / 12, "feet")
  28864. },
  28865. {
  28866. name: "Post-Era",
  28867. height: math.unit(450 + 5 / 12, "feet")
  28868. },
  28869. ]
  28870. ))
  28871. characterMakers.push(() => makeCharacter(
  28872. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28873. {
  28874. front: {
  28875. height: math.unit(300, "meters"),
  28876. weight: math.unit(125000, "tonnes"),
  28877. name: "Front",
  28878. image: {
  28879. source: "./media/characters/pazuzu/front.svg",
  28880. extra: 877 / 794,
  28881. bottom: 47 / 924
  28882. }
  28883. },
  28884. },
  28885. [
  28886. {
  28887. name: "Macro",
  28888. height: math.unit(300, "meters"),
  28889. default: true
  28890. },
  28891. ]
  28892. ))
  28893. characterMakers.push(() => makeCharacter(
  28894. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28895. {
  28896. side: {
  28897. height: math.unit(10 + 7 / 12, "feet"),
  28898. weight: math.unit(2.5, "tons"),
  28899. name: "Side",
  28900. image: {
  28901. source: "./media/characters/aasha/side.svg",
  28902. extra: 1345 / 1245,
  28903. bottom: 111 / 1456
  28904. }
  28905. },
  28906. back: {
  28907. height: math.unit(10 + 7 / 12, "feet"),
  28908. weight: math.unit(2.5, "tons"),
  28909. name: "Back",
  28910. image: {
  28911. source: "./media/characters/aasha/back.svg",
  28912. extra: 1133 / 1057,
  28913. bottom: 257 / 1390
  28914. }
  28915. },
  28916. },
  28917. [
  28918. {
  28919. name: "Normal",
  28920. height: math.unit(10 + 7 / 12, "feet"),
  28921. default: true
  28922. },
  28923. ]
  28924. ))
  28925. characterMakers.push(() => makeCharacter(
  28926. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28927. {
  28928. front: {
  28929. height: math.unit(6 + 3 / 12, "feet"),
  28930. name: "Front",
  28931. image: {
  28932. source: "./media/characters/nevan/front.svg",
  28933. extra: 704 / 704,
  28934. bottom: 28 / 732
  28935. }
  28936. },
  28937. back: {
  28938. height: math.unit(6 + 3 / 12, "feet"),
  28939. name: "Back",
  28940. image: {
  28941. source: "./media/characters/nevan/back.svg",
  28942. extra: 714 / 714,
  28943. bottom: 21 / 735
  28944. }
  28945. },
  28946. frontFlaccid: {
  28947. height: math.unit(6 + 3 / 12, "feet"),
  28948. name: "Front (Flaccid)",
  28949. image: {
  28950. source: "./media/characters/nevan/front-flaccid.svg",
  28951. extra: 704 / 704,
  28952. bottom: 28 / 732
  28953. }
  28954. },
  28955. frontErect: {
  28956. height: math.unit(6 + 3 / 12, "feet"),
  28957. name: "Front (Erect)",
  28958. image: {
  28959. source: "./media/characters/nevan/front-erect.svg",
  28960. extra: 704 / 704,
  28961. bottom: 28 / 732
  28962. }
  28963. },
  28964. backFlaccid: {
  28965. height: math.unit(6 + 3 / 12, "feet"),
  28966. name: "Back (Flaccid)",
  28967. image: {
  28968. source: "./media/characters/nevan/back-flaccid.svg",
  28969. extra: 714 / 714,
  28970. bottom: 21 / 735
  28971. }
  28972. },
  28973. },
  28974. [
  28975. {
  28976. name: "Normal",
  28977. height: math.unit(6 + 3 / 12, "feet"),
  28978. default: true
  28979. },
  28980. ]
  28981. ))
  28982. characterMakers.push(() => makeCharacter(
  28983. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28984. {
  28985. front: {
  28986. height: math.unit(4, "feet"),
  28987. name: "Front",
  28988. image: {
  28989. source: "./media/characters/arhan/front.svg",
  28990. extra: 3368 / 3133,
  28991. bottom: 0 / 3368
  28992. }
  28993. },
  28994. side: {
  28995. height: math.unit(4, "feet"),
  28996. name: "Side",
  28997. image: {
  28998. source: "./media/characters/arhan/side.svg",
  28999. extra: 3347 / 3105,
  29000. bottom: 0 / 3347
  29001. }
  29002. },
  29003. tongue: {
  29004. height: math.unit(1.42, "feet"),
  29005. name: "Tongue",
  29006. image: {
  29007. source: "./media/characters/arhan/tongue.svg"
  29008. }
  29009. },
  29010. head: {
  29011. height: math.unit(0.85, "feet"),
  29012. name: "Head",
  29013. image: {
  29014. source: "./media/characters/arhan/head.svg"
  29015. }
  29016. },
  29017. },
  29018. [
  29019. {
  29020. name: "Normal",
  29021. height: math.unit(4, "feet"),
  29022. default: true
  29023. },
  29024. ]
  29025. ))
  29026. characterMakers.push(() => makeCharacter(
  29027. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29028. {
  29029. front: {
  29030. height: math.unit(5 + 7.5 / 12, "feet"),
  29031. weight: math.unit(120, "lb"),
  29032. name: "Front",
  29033. image: {
  29034. source: "./media/characters/digi-duncan/front.svg",
  29035. extra: 330 / 326,
  29036. bottom: 16 / 346
  29037. }
  29038. },
  29039. side: {
  29040. height: math.unit(5 + 7.5 / 12, "feet"),
  29041. weight: math.unit(120, "lb"),
  29042. name: "Side",
  29043. image: {
  29044. source: "./media/characters/digi-duncan/side.svg",
  29045. extra: 341 / 337,
  29046. bottom: 1 / 342
  29047. }
  29048. },
  29049. back: {
  29050. height: math.unit(5 + 7.5 / 12, "feet"),
  29051. weight: math.unit(120, "lb"),
  29052. name: "Back",
  29053. image: {
  29054. source: "./media/characters/digi-duncan/back.svg",
  29055. extra: 330 / 326,
  29056. bottom: 12 / 342
  29057. }
  29058. },
  29059. },
  29060. [
  29061. {
  29062. name: "Speck",
  29063. height: math.unit(0.25, "mm")
  29064. },
  29065. {
  29066. name: "Micro",
  29067. height: math.unit(5, "mm")
  29068. },
  29069. {
  29070. name: "Tiny",
  29071. height: math.unit(0.5, "inches"),
  29072. default: true
  29073. },
  29074. {
  29075. name: "Human",
  29076. height: math.unit(5 + 7.5 / 12, "feet")
  29077. },
  29078. {
  29079. name: "Minigiant",
  29080. height: math.unit(8 + 5.25, "feet")
  29081. },
  29082. {
  29083. name: "Giant",
  29084. height: math.unit(2000, "feet")
  29085. },
  29086. {
  29087. name: "Mega",
  29088. height: math.unit(371.1, "miles")
  29089. },
  29090. ]
  29091. ))
  29092. characterMakers.push(() => makeCharacter(
  29093. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29094. {
  29095. front: {
  29096. height: math.unit(2, "meters"),
  29097. weight: math.unit(350, "kg"),
  29098. name: "Front",
  29099. image: {
  29100. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29101. extra: 898 / 838,
  29102. bottom: 9 / 907
  29103. }
  29104. },
  29105. },
  29106. [
  29107. {
  29108. name: "Micro",
  29109. height: math.unit(8, "meters")
  29110. },
  29111. {
  29112. name: "Normal",
  29113. height: math.unit(50, "meters"),
  29114. default: true
  29115. },
  29116. {
  29117. name: "Macro",
  29118. height: math.unit(500, "meters")
  29119. },
  29120. ]
  29121. ))
  29122. characterMakers.push(() => makeCharacter(
  29123. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29124. {
  29125. front: {
  29126. height: math.unit(6 + 6 / 12, "feet"),
  29127. name: "Front",
  29128. image: {
  29129. source: "./media/characters/khardesh/front.svg",
  29130. extra: 888 / 797,
  29131. bottom: 25 / 913
  29132. }
  29133. },
  29134. },
  29135. [
  29136. {
  29137. name: "Normal",
  29138. height: math.unit(6 + 6 / 12, "feet"),
  29139. default: true
  29140. },
  29141. {
  29142. name: "Normal+",
  29143. height: math.unit(4, "meters")
  29144. },
  29145. {
  29146. name: "Macro",
  29147. height: math.unit(50, "meters")
  29148. },
  29149. {
  29150. name: "Macro+",
  29151. height: math.unit(100, "meters")
  29152. },
  29153. {
  29154. name: "Megamacro",
  29155. height: math.unit(20, "km")
  29156. },
  29157. ]
  29158. ))
  29159. characterMakers.push(() => makeCharacter(
  29160. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29161. {
  29162. front: {
  29163. height: math.unit(6, "feet"),
  29164. weight: math.unit(150, "lb"),
  29165. name: "Front",
  29166. image: {
  29167. source: "./media/characters/kosho/front.svg",
  29168. extra: 1847 / 1847,
  29169. bottom: 86 / 1933
  29170. }
  29171. },
  29172. },
  29173. [
  29174. {
  29175. name: "Second-stage micro",
  29176. height: math.unit(0.5, "inches")
  29177. },
  29178. {
  29179. name: "First-stage micro",
  29180. height: math.unit(6, "inches")
  29181. },
  29182. {
  29183. name: "Normal",
  29184. height: math.unit(6, "feet"),
  29185. default: true
  29186. },
  29187. {
  29188. name: "First-stage macro",
  29189. height: math.unit(72, "feet")
  29190. },
  29191. {
  29192. name: "Second-stage macro",
  29193. height: math.unit(864, "feet")
  29194. },
  29195. ]
  29196. ))
  29197. characterMakers.push(() => makeCharacter(
  29198. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29199. {
  29200. normal: {
  29201. height: math.unit(4 + 6 / 12, "feet"),
  29202. name: "Normal",
  29203. image: {
  29204. source: "./media/characters/hydra/normal.svg",
  29205. extra: 2833 / 2634,
  29206. bottom: 68 / 2901
  29207. }
  29208. },
  29209. smol: {
  29210. height: math.unit(0.705, "inches"),
  29211. name: "Smol",
  29212. image: {
  29213. source: "./media/characters/hydra/smol.svg",
  29214. extra: 2715 / 2540,
  29215. bottom: 0 / 2715
  29216. }
  29217. },
  29218. },
  29219. [
  29220. {
  29221. name: "Normal",
  29222. height: math.unit(4 + 6 / 12, "feet"),
  29223. default: true
  29224. }
  29225. ]
  29226. ))
  29227. characterMakers.push(() => makeCharacter(
  29228. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29229. {
  29230. front: {
  29231. height: math.unit(0.6, "cm"),
  29232. name: "Front",
  29233. image: {
  29234. source: "./media/characters/daz/front.svg",
  29235. extra: 1682 / 1164,
  29236. bottom: 42 / 1724
  29237. }
  29238. },
  29239. },
  29240. [
  29241. {
  29242. name: "Normal",
  29243. height: math.unit(0.6, "cm"),
  29244. default: true
  29245. },
  29246. ]
  29247. ))
  29248. characterMakers.push(() => makeCharacter(
  29249. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29250. {
  29251. front: {
  29252. height: math.unit(6, "feet"),
  29253. weight: math.unit(235, "lb"),
  29254. name: "Front",
  29255. image: {
  29256. source: "./media/characters/theo-pangolin/front.svg",
  29257. extra: 1996 / 1969,
  29258. bottom: 115 / 2111
  29259. }
  29260. },
  29261. back: {
  29262. height: math.unit(6, "feet"),
  29263. weight: math.unit(235, "lb"),
  29264. name: "Back",
  29265. image: {
  29266. source: "./media/characters/theo-pangolin/back.svg",
  29267. extra: 1979 / 1979,
  29268. bottom: 40 / 2019
  29269. }
  29270. },
  29271. feral: {
  29272. height: math.unit(2, "feet"),
  29273. weight: math.unit(30, "lb"),
  29274. name: "Feral",
  29275. image: {
  29276. source: "./media/characters/theo-pangolin/feral.svg",
  29277. extra: 803 / 791,
  29278. bottom: 181 / 984
  29279. }
  29280. },
  29281. footFive: {
  29282. height: math.unit(1.43, "feet"),
  29283. name: "Foot (Five Toes)",
  29284. image: {
  29285. source: "./media/characters/theo-pangolin/foot-five.svg"
  29286. }
  29287. },
  29288. footFour: {
  29289. height: math.unit(1.43, "feet"),
  29290. name: "Foot (Four Toes)",
  29291. image: {
  29292. source: "./media/characters/theo-pangolin/foot-four.svg"
  29293. }
  29294. },
  29295. handFour: {
  29296. height: math.unit(0.81, "feet"),
  29297. name: "Hand (Four Fingers)",
  29298. image: {
  29299. source: "./media/characters/theo-pangolin/hand-four.svg"
  29300. }
  29301. },
  29302. handThree: {
  29303. height: math.unit(0.81, "feet"),
  29304. name: "Hand (Three Fingers)",
  29305. image: {
  29306. source: "./media/characters/theo-pangolin/hand-three.svg"
  29307. }
  29308. },
  29309. headFront: {
  29310. height: math.unit(1.37, "feet"),
  29311. name: "Head (Front)",
  29312. image: {
  29313. source: "./media/characters/theo-pangolin/head-front.svg"
  29314. }
  29315. },
  29316. headSide: {
  29317. height: math.unit(1.43, "feet"),
  29318. name: "Head (Side)",
  29319. image: {
  29320. source: "./media/characters/theo-pangolin/head-side.svg"
  29321. }
  29322. },
  29323. tongue: {
  29324. height: math.unit(2.29, "feet"),
  29325. name: "Tongue",
  29326. image: {
  29327. source: "./media/characters/theo-pangolin/tongue.svg"
  29328. }
  29329. },
  29330. },
  29331. [
  29332. {
  29333. name: "Normal",
  29334. height: math.unit(6, "feet")
  29335. },
  29336. {
  29337. name: "Macro",
  29338. height: math.unit(400, "feet"),
  29339. default: true
  29340. },
  29341. ]
  29342. ))
  29343. characterMakers.push(() => makeCharacter(
  29344. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29345. {
  29346. front: {
  29347. height: math.unit(6, "inches"),
  29348. weight: math.unit(0.036, "kg"),
  29349. name: "Front",
  29350. image: {
  29351. source: "./media/characters/renée/front.svg",
  29352. extra: 900 / 886,
  29353. bottom: 8 / 908
  29354. }
  29355. },
  29356. },
  29357. [
  29358. {
  29359. name: "Nano",
  29360. height: math.unit(1, "nm")
  29361. },
  29362. {
  29363. name: "Micro",
  29364. height: math.unit(1, "mm")
  29365. },
  29366. {
  29367. name: "Normal",
  29368. height: math.unit(6, "inches")
  29369. },
  29370. {
  29371. name: "Macro",
  29372. height: math.unit(2000, "feet"),
  29373. default: true
  29374. },
  29375. {
  29376. name: "Megamacro",
  29377. height: math.unit(2, "km")
  29378. },
  29379. {
  29380. name: "Gigamacro",
  29381. height: math.unit(2000, "km")
  29382. },
  29383. {
  29384. name: "Teramacro",
  29385. height: math.unit(250000, "km")
  29386. },
  29387. ]
  29388. ))
  29389. characterMakers.push(() => makeCharacter(
  29390. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29391. {
  29392. front: {
  29393. height: math.unit(4, "meters"),
  29394. weight: math.unit(150, "kg"),
  29395. name: "Front",
  29396. image: {
  29397. source: "./media/characters/caledvwlch/front.svg",
  29398. extra: 1760 / 1551,
  29399. bottom: 28 / 1788
  29400. }
  29401. },
  29402. side: {
  29403. height: math.unit(4, "meters"),
  29404. weight: math.unit(150, "kg"),
  29405. name: "Side",
  29406. image: {
  29407. source: "./media/characters/caledvwlch/side.svg",
  29408. extra: 1605 / 1536,
  29409. bottom: 31 / 1636
  29410. }
  29411. },
  29412. back: {
  29413. height: math.unit(4, "meters"),
  29414. weight: math.unit(150, "kg"),
  29415. name: "Back",
  29416. image: {
  29417. source: "./media/characters/caledvwlch/back.svg",
  29418. extra: 1635 / 1565,
  29419. bottom: 27 / 1662
  29420. }
  29421. },
  29422. },
  29423. [
  29424. {
  29425. name: "\"Incognito\"",
  29426. height: math.unit(4, "meters")
  29427. },
  29428. {
  29429. name: "Small rampage",
  29430. height: math.unit(600, "meters")
  29431. },
  29432. {
  29433. name: "Mega",
  29434. height: math.unit(30, "km")
  29435. },
  29436. {
  29437. name: "Home-size",
  29438. height: math.unit(50, "km"),
  29439. default: true
  29440. },
  29441. {
  29442. name: "Giga",
  29443. height: math.unit(300, "km")
  29444. },
  29445. {
  29446. name: "Lounging",
  29447. height: math.unit(11000, "km")
  29448. },
  29449. {
  29450. name: "Planet snacking",
  29451. height: math.unit(2000000, "km")
  29452. },
  29453. ]
  29454. ))
  29455. characterMakers.push(() => makeCharacter(
  29456. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29457. {
  29458. front: {
  29459. height: math.unit(6, "feet"),
  29460. weight: math.unit(215, "lb"),
  29461. name: "Front",
  29462. image: {
  29463. source: "./media/characters/sapphire-svell/front.svg",
  29464. extra: 495 / 455,
  29465. bottom: 20 / 515
  29466. }
  29467. },
  29468. back: {
  29469. height: math.unit(6, "feet"),
  29470. weight: math.unit(216, "lb"),
  29471. name: "Back",
  29472. image: {
  29473. source: "./media/characters/sapphire-svell/back.svg",
  29474. extra: 497 / 477,
  29475. bottom: 7 / 504
  29476. }
  29477. },
  29478. maw: {
  29479. height: math.unit(1.57, "feet"),
  29480. name: "Maw",
  29481. image: {
  29482. source: "./media/characters/sapphire-svell/maw.svg"
  29483. }
  29484. },
  29485. foot: {
  29486. height: math.unit(1.07, "feet"),
  29487. name: "Foot",
  29488. image: {
  29489. source: "./media/characters/sapphire-svell/foot.svg"
  29490. }
  29491. },
  29492. toering: {
  29493. height: math.unit(1.7, "inch"),
  29494. name: "Toering",
  29495. image: {
  29496. source: "./media/characters/sapphire-svell/toering.svg"
  29497. }
  29498. },
  29499. },
  29500. [
  29501. {
  29502. name: "Normal",
  29503. height: math.unit(300, "feet"),
  29504. default: true
  29505. },
  29506. {
  29507. name: "Augmented",
  29508. height: math.unit(1250, "feet")
  29509. },
  29510. {
  29511. name: "Unleashed",
  29512. height: math.unit(3000, "feet")
  29513. },
  29514. ]
  29515. ))
  29516. characterMakers.push(() => makeCharacter(
  29517. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29518. {
  29519. side: {
  29520. height: math.unit(2 + 3 / 12, "feet"),
  29521. weight: math.unit(110, "lb"),
  29522. name: "Side",
  29523. image: {
  29524. source: "./media/characters/glitch-flux/side.svg",
  29525. extra: 997 / 805,
  29526. bottom: 20 / 1017
  29527. }
  29528. },
  29529. },
  29530. [
  29531. {
  29532. name: "Normal",
  29533. height: math.unit(2 + 3 / 12, "feet"),
  29534. default: true
  29535. },
  29536. ]
  29537. ))
  29538. characterMakers.push(() => makeCharacter(
  29539. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29540. {
  29541. front: {
  29542. height: math.unit(4, "meters"),
  29543. name: "Front",
  29544. image: {
  29545. source: "./media/characters/mid/front.svg",
  29546. extra: 507 / 476,
  29547. bottom: 17 / 524
  29548. }
  29549. },
  29550. back: {
  29551. height: math.unit(4, "meters"),
  29552. name: "Back",
  29553. image: {
  29554. source: "./media/characters/mid/back.svg",
  29555. extra: 519 / 487,
  29556. bottom: 7 / 526
  29557. }
  29558. },
  29559. stuck: {
  29560. height: math.unit(2.2, "meters"),
  29561. name: "Stuck",
  29562. image: {
  29563. source: "./media/characters/mid/stuck.svg",
  29564. extra: 1951 / 1869,
  29565. bottom: 88 / 2039
  29566. }
  29567. }
  29568. },
  29569. [
  29570. {
  29571. name: "Normal",
  29572. height: math.unit(4, "meters"),
  29573. default: true
  29574. },
  29575. {
  29576. name: "Big",
  29577. height: math.unit(10, "meters")
  29578. },
  29579. {
  29580. name: "Macro",
  29581. height: math.unit(800, "meters")
  29582. },
  29583. {
  29584. name: "Megamacro",
  29585. height: math.unit(100, "km")
  29586. },
  29587. {
  29588. name: "Overgrown",
  29589. height: math.unit(1, "parsec")
  29590. },
  29591. ]
  29592. ))
  29593. characterMakers.push(() => makeCharacter(
  29594. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29595. {
  29596. front: {
  29597. height: math.unit(2.5, "meters"),
  29598. weight: math.unit(225, "kg"),
  29599. name: "Front",
  29600. image: {
  29601. source: "./media/characters/iris/front.svg",
  29602. extra: 3348 / 3251,
  29603. bottom: 205 / 3553
  29604. }
  29605. },
  29606. maw: {
  29607. height: math.unit(0.56, "meter"),
  29608. name: "Maw",
  29609. image: {
  29610. source: "./media/characters/iris/maw.svg"
  29611. }
  29612. },
  29613. },
  29614. [
  29615. {
  29616. name: "Mewter cat",
  29617. height: math.unit(1.2, "meters")
  29618. },
  29619. {
  29620. name: "Minimacro",
  29621. height: math.unit(2.5, "meters"),
  29622. default: true
  29623. },
  29624. {
  29625. name: "Macro",
  29626. height: math.unit(180, "meters")
  29627. },
  29628. {
  29629. name: "Megamacro",
  29630. height: math.unit(2746, "meters")
  29631. },
  29632. ]
  29633. ))
  29634. characterMakers.push(() => makeCharacter(
  29635. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29636. {
  29637. front: {
  29638. height: math.unit(6, "feet"),
  29639. weight: math.unit(135, "lb"),
  29640. name: "Front",
  29641. image: {
  29642. source: "./media/characters/axel/front.svg",
  29643. extra: 908 / 908,
  29644. bottom: 58 / 966
  29645. }
  29646. },
  29647. side: {
  29648. height: math.unit(6, "feet"),
  29649. weight: math.unit(135, "lb"),
  29650. name: "Side",
  29651. image: {
  29652. source: "./media/characters/axel/side.svg",
  29653. extra: 958 / 958,
  29654. bottom: 11 / 969
  29655. }
  29656. },
  29657. back: {
  29658. height: math.unit(6, "feet"),
  29659. weight: math.unit(135, "lb"),
  29660. name: "Back",
  29661. image: {
  29662. source: "./media/characters/axel/back.svg",
  29663. extra: 887 / 887,
  29664. bottom: 34 / 921
  29665. }
  29666. },
  29667. head: {
  29668. height: math.unit(1.07, "feet"),
  29669. name: "Head",
  29670. image: {
  29671. source: "./media/characters/axel/head.svg"
  29672. }
  29673. },
  29674. beak: {
  29675. height: math.unit(1.4, "feet"),
  29676. name: "Beak",
  29677. image: {
  29678. source: "./media/characters/axel/beak.svg"
  29679. }
  29680. },
  29681. beakSide: {
  29682. height: math.unit(1.4, "feet"),
  29683. name: "Beak Side",
  29684. image: {
  29685. source: "./media/characters/axel/beak-side.svg"
  29686. }
  29687. },
  29688. sheath: {
  29689. height: math.unit(0.5, "feet"),
  29690. name: "Sheath",
  29691. image: {
  29692. source: "./media/characters/axel/sheath.svg"
  29693. }
  29694. },
  29695. dick: {
  29696. height: math.unit(0.98, "feet"),
  29697. name: "Dick",
  29698. image: {
  29699. source: "./media/characters/axel/dick.svg"
  29700. }
  29701. },
  29702. },
  29703. [
  29704. {
  29705. name: "Macro",
  29706. height: math.unit(68, "meters"),
  29707. default: true
  29708. },
  29709. ]
  29710. ))
  29711. characterMakers.push(() => makeCharacter(
  29712. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29713. {
  29714. front: {
  29715. height: math.unit(3.5, "meters"),
  29716. weight: math.unit(1200, "kg"),
  29717. name: "Front",
  29718. image: {
  29719. source: "./media/characters/joanna/front.svg",
  29720. extra: 1596 / 1488,
  29721. bottom: 29 / 1625
  29722. }
  29723. },
  29724. back: {
  29725. height: math.unit(3.5, "meters"),
  29726. weight: math.unit(1200, "kg"),
  29727. name: "Back",
  29728. image: {
  29729. source: "./media/characters/joanna/back.svg",
  29730. extra: 1594 / 1495,
  29731. bottom: 26 / 1620
  29732. }
  29733. },
  29734. frontShorts: {
  29735. height: math.unit(3.5, "meters"),
  29736. weight: math.unit(1200, "kg"),
  29737. name: "Front (Shorts)",
  29738. image: {
  29739. source: "./media/characters/joanna/front-shorts.svg",
  29740. extra: 1596 / 1488,
  29741. bottom: 29 / 1625
  29742. }
  29743. },
  29744. frontBiker: {
  29745. height: math.unit(3.5, "meters"),
  29746. weight: math.unit(1200, "kg"),
  29747. name: "Front (Biker)",
  29748. image: {
  29749. source: "./media/characters/joanna/front-biker.svg",
  29750. extra: 1596 / 1488,
  29751. bottom: 29 / 1625
  29752. }
  29753. },
  29754. backBiker: {
  29755. height: math.unit(3.5, "meters"),
  29756. weight: math.unit(1200, "kg"),
  29757. name: "Back (Biker)",
  29758. image: {
  29759. source: "./media/characters/joanna/back-biker.svg",
  29760. extra: 1594 / 1495,
  29761. bottom: 88 / 1682
  29762. }
  29763. },
  29764. bikeLeft: {
  29765. height: math.unit(2.4, "meters"),
  29766. weight: math.unit(1600, "kg"),
  29767. name: "Bike (Left)",
  29768. image: {
  29769. source: "./media/characters/joanna/bike-left.svg",
  29770. extra: 720 / 720,
  29771. bottom: 8 / 728
  29772. }
  29773. },
  29774. bikeRight: {
  29775. height: math.unit(2.4, "meters"),
  29776. weight: math.unit(1600, "kg"),
  29777. name: "Bike (Right)",
  29778. image: {
  29779. source: "./media/characters/joanna/bike-right.svg",
  29780. extra: 720 / 720,
  29781. bottom: 8 / 728
  29782. }
  29783. },
  29784. },
  29785. [
  29786. {
  29787. name: "Incognito",
  29788. height: math.unit(3.5, "meters")
  29789. },
  29790. {
  29791. name: "Casual Big",
  29792. height: math.unit(200, "meters")
  29793. },
  29794. {
  29795. name: "Macro",
  29796. height: math.unit(600, "meters")
  29797. },
  29798. {
  29799. name: "Original",
  29800. height: math.unit(20, "km"),
  29801. default: true
  29802. },
  29803. {
  29804. name: "Giga",
  29805. height: math.unit(400, "km")
  29806. },
  29807. {
  29808. name: "Lounging",
  29809. height: math.unit(1500, "km")
  29810. },
  29811. {
  29812. name: "Planetary",
  29813. height: math.unit(200000, "km")
  29814. },
  29815. ]
  29816. ))
  29817. characterMakers.push(() => makeCharacter(
  29818. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29819. {
  29820. front: {
  29821. height: math.unit(6, "feet"),
  29822. weight: math.unit(150, "lb"),
  29823. name: "Front",
  29824. image: {
  29825. source: "./media/characters/hugo-sigil/front.svg",
  29826. extra: 522 / 500,
  29827. bottom: 2 / 524
  29828. }
  29829. },
  29830. back: {
  29831. height: math.unit(6, "feet"),
  29832. weight: math.unit(150, "lb"),
  29833. name: "Back",
  29834. image: {
  29835. source: "./media/characters/hugo-sigil/back.svg",
  29836. extra: 519 / 495,
  29837. bottom: 5 / 524
  29838. }
  29839. },
  29840. maw: {
  29841. height: math.unit(1.4, "feet"),
  29842. weight: math.unit(150, "lb"),
  29843. name: "Maw",
  29844. image: {
  29845. source: "./media/characters/hugo-sigil/maw.svg"
  29846. }
  29847. },
  29848. feet: {
  29849. height: math.unit(1.56, "feet"),
  29850. weight: math.unit(150, "lb"),
  29851. name: "Feet",
  29852. image: {
  29853. source: "./media/characters/hugo-sigil/feet.svg",
  29854. extra: 177 / 177,
  29855. bottom: 12 / 189
  29856. }
  29857. },
  29858. },
  29859. [
  29860. {
  29861. name: "Normal",
  29862. height: math.unit(6, "feet")
  29863. },
  29864. {
  29865. name: "Macro",
  29866. height: math.unit(200, "feet"),
  29867. default: true
  29868. },
  29869. ]
  29870. ))
  29871. characterMakers.push(() => makeCharacter(
  29872. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29873. {
  29874. front: {
  29875. height: math.unit(6, "feet"),
  29876. weight: math.unit(150, "lb"),
  29877. name: "Front",
  29878. image: {
  29879. source: "./media/characters/peri/front.svg",
  29880. extra: 2354 / 2233,
  29881. bottom: 49 / 2403
  29882. }
  29883. },
  29884. },
  29885. [
  29886. {
  29887. name: "Really Small",
  29888. height: math.unit(1, "nm")
  29889. },
  29890. {
  29891. name: "Micro",
  29892. height: math.unit(4, "inches")
  29893. },
  29894. {
  29895. name: "Normal",
  29896. height: math.unit(7, "inches"),
  29897. default: true
  29898. },
  29899. {
  29900. name: "Macro",
  29901. height: math.unit(400, "feet")
  29902. },
  29903. {
  29904. name: "Megamacro",
  29905. height: math.unit(100, "miles")
  29906. },
  29907. ]
  29908. ))
  29909. characterMakers.push(() => makeCharacter(
  29910. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29911. {
  29912. frontSlim: {
  29913. height: math.unit(7, "feet"),
  29914. name: "Front (Slim)",
  29915. image: {
  29916. source: "./media/characters/issilora/front-slim.svg",
  29917. extra: 529 / 449,
  29918. bottom: 53 / 582
  29919. }
  29920. },
  29921. sideSlim: {
  29922. height: math.unit(7, "feet"),
  29923. name: "Side (Slim)",
  29924. image: {
  29925. source: "./media/characters/issilora/side-slim.svg",
  29926. extra: 570 / 480,
  29927. bottom: 30 / 600
  29928. }
  29929. },
  29930. backSlim: {
  29931. height: math.unit(7, "feet"),
  29932. name: "Back (Slim)",
  29933. image: {
  29934. source: "./media/characters/issilora/back-slim.svg",
  29935. extra: 537 / 455,
  29936. bottom: 46 / 583
  29937. }
  29938. },
  29939. frontBuff: {
  29940. height: math.unit(7, "feet"),
  29941. name: "Front (Buff)",
  29942. image: {
  29943. source: "./media/characters/issilora/front-buff.svg",
  29944. extra: 2310 / 2035,
  29945. bottom: 335 / 2645
  29946. }
  29947. },
  29948. head: {
  29949. height: math.unit(1.94, "feet"),
  29950. name: "Head",
  29951. image: {
  29952. source: "./media/characters/issilora/head.svg"
  29953. }
  29954. },
  29955. },
  29956. [
  29957. {
  29958. name: "Minimum",
  29959. height: math.unit(7, "feet")
  29960. },
  29961. {
  29962. name: "Comfortable",
  29963. height: math.unit(17, "feet")
  29964. },
  29965. {
  29966. name: "Fun Size",
  29967. height: math.unit(47, "feet")
  29968. },
  29969. {
  29970. name: "Natural Macro",
  29971. height: math.unit(137, "feet"),
  29972. default: true
  29973. },
  29974. {
  29975. name: "Maximum Kaiju",
  29976. height: math.unit(397, "feet")
  29977. },
  29978. ]
  29979. ))
  29980. characterMakers.push(() => makeCharacter(
  29981. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29982. {
  29983. front: {
  29984. height: math.unit(50 + 9/12, "feet"),
  29985. weight: math.unit(32.8, "tons"),
  29986. name: "Front",
  29987. image: {
  29988. source: "./media/characters/irb'iiritaahn/front.svg",
  29989. extra: 1878/1826,
  29990. bottom: 326/2204
  29991. }
  29992. },
  29993. back: {
  29994. height: math.unit(50 + 9/12, "feet"),
  29995. weight: math.unit(32.8, "tons"),
  29996. name: "Back",
  29997. image: {
  29998. source: "./media/characters/irb'iiritaahn/back.svg",
  29999. extra: 2052/2018,
  30000. bottom: 152/2204
  30001. }
  30002. },
  30003. head: {
  30004. height: math.unit(12.86, "feet"),
  30005. name: "Head",
  30006. image: {
  30007. source: "./media/characters/irb'iiritaahn/head.svg"
  30008. }
  30009. },
  30010. maw: {
  30011. height: math.unit(9.66, "feet"),
  30012. name: "Maw",
  30013. image: {
  30014. source: "./media/characters/irb'iiritaahn/maw.svg"
  30015. }
  30016. },
  30017. frontDick: {
  30018. height: math.unit(8.78461, "feet"),
  30019. name: "Front Dick",
  30020. image: {
  30021. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30022. }
  30023. },
  30024. rearDick: {
  30025. height: math.unit(8.78461, "feet"),
  30026. name: "Rear Dick",
  30027. image: {
  30028. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30029. }
  30030. },
  30031. rearDickUnfolded: {
  30032. height: math.unit(8.78, "feet"),
  30033. name: "Rear Dick (Unfolded)",
  30034. image: {
  30035. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30036. }
  30037. },
  30038. wings: {
  30039. height: math.unit(43, "feet"),
  30040. name: "Wings",
  30041. image: {
  30042. source: "./media/characters/irb'iiritaahn/wings.svg"
  30043. }
  30044. },
  30045. },
  30046. [
  30047. {
  30048. name: "Macro",
  30049. height: math.unit(50 + 9/12, "feet"),
  30050. default: true
  30051. },
  30052. ]
  30053. ))
  30054. characterMakers.push(() => makeCharacter(
  30055. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30056. {
  30057. front: {
  30058. height: math.unit(205, "cm"),
  30059. weight: math.unit(102, "kg"),
  30060. name: "Front",
  30061. image: {
  30062. source: "./media/characters/irbisgreif/front.svg",
  30063. extra: 785/706,
  30064. bottom: 13/798
  30065. }
  30066. },
  30067. back: {
  30068. height: math.unit(205, "cm"),
  30069. weight: math.unit(102, "kg"),
  30070. name: "Back",
  30071. image: {
  30072. source: "./media/characters/irbisgreif/back.svg",
  30073. extra: 713/701,
  30074. bottom: 26/739
  30075. }
  30076. },
  30077. frontDressed: {
  30078. height: math.unit(216, "cm"),
  30079. weight: math.unit(102, "kg"),
  30080. name: "Front-dressed",
  30081. image: {
  30082. source: "./media/characters/irbisgreif/front-dressed.svg",
  30083. extra: 902/776,
  30084. bottom: 14/916
  30085. }
  30086. },
  30087. sideDressed: {
  30088. height: math.unit(195, "cm"),
  30089. weight: math.unit(102, "kg"),
  30090. name: "Side-dressed",
  30091. image: {
  30092. source: "./media/characters/irbisgreif/side-dressed.svg",
  30093. extra: 788/688,
  30094. bottom: 21/809
  30095. }
  30096. },
  30097. backDressed: {
  30098. height: math.unit(216, "cm"),
  30099. weight: math.unit(102, "kg"),
  30100. name: "Back-dressed",
  30101. image: {
  30102. source: "./media/characters/irbisgreif/back-dressed.svg",
  30103. extra: 901/783,
  30104. bottom: 10/911
  30105. }
  30106. },
  30107. dick: {
  30108. height: math.unit(0.49, "feet"),
  30109. name: "Dick",
  30110. image: {
  30111. source: "./media/characters/irbisgreif/dick.svg"
  30112. }
  30113. },
  30114. wingTop: {
  30115. height: math.unit(1.93 , "feet"),
  30116. name: "Wing-top",
  30117. image: {
  30118. source: "./media/characters/irbisgreif/wing-top.svg"
  30119. }
  30120. },
  30121. wingBottom: {
  30122. height: math.unit(1.93 , "feet"),
  30123. name: "Wing-bottom",
  30124. image: {
  30125. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30126. }
  30127. },
  30128. },
  30129. [
  30130. {
  30131. name: "Normal",
  30132. height: math.unit(216, "cm"),
  30133. default: true
  30134. },
  30135. ]
  30136. ))
  30137. characterMakers.push(() => makeCharacter(
  30138. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30139. {
  30140. front: {
  30141. height: math.unit(6, "feet"),
  30142. weight: math.unit(150, "lb"),
  30143. name: "Front",
  30144. image: {
  30145. source: "./media/characters/pride/front.svg",
  30146. extra: 1299/1230,
  30147. bottom: 18/1317
  30148. }
  30149. },
  30150. },
  30151. [
  30152. {
  30153. name: "Normal",
  30154. height: math.unit(7, "feet")
  30155. },
  30156. {
  30157. name: "Mini-macro",
  30158. height: math.unit(11, "feet")
  30159. },
  30160. {
  30161. name: "Macro",
  30162. height: math.unit(15, "meters"),
  30163. default: true
  30164. },
  30165. {
  30166. name: "Macro+",
  30167. height: math.unit(40, "meters")
  30168. },
  30169. ]
  30170. ))
  30171. characterMakers.push(() => makeCharacter(
  30172. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30173. {
  30174. front: {
  30175. height: math.unit(4 + 2 / 12, "feet"),
  30176. weight: math.unit(95, "lb"),
  30177. name: "Front",
  30178. image: {
  30179. source: "./media/characters/vaelophis-nyx/front.svg",
  30180. extra: 2532/2330,
  30181. bottom: 0/2532
  30182. }
  30183. },
  30184. back: {
  30185. height: math.unit(4 + 2 / 12, "feet"),
  30186. weight: math.unit(95, "lb"),
  30187. name: "Back",
  30188. image: {
  30189. source: "./media/characters/vaelophis-nyx/back.svg",
  30190. extra: 2484/2361,
  30191. bottom: 0/2484
  30192. }
  30193. },
  30194. feralSide: {
  30195. height: math.unit(2 + 1/12, "feet"),
  30196. weight: math.unit(20, "lb"),
  30197. name: "Feral (Side)",
  30198. image: {
  30199. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30200. extra: 1721/1581,
  30201. bottom: 70/1791
  30202. }
  30203. },
  30204. feralLazing: {
  30205. height: math.unit(1.08, "feet"),
  30206. weight: math.unit(20, "lb"),
  30207. name: "Feral (Lazing)",
  30208. image: {
  30209. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30210. extra: 822/822,
  30211. bottom: 248/1070
  30212. }
  30213. },
  30214. ear: {
  30215. height: math.unit(0.416, "feet"),
  30216. name: "Ear",
  30217. image: {
  30218. source: "./media/characters/vaelophis-nyx/ear.svg"
  30219. }
  30220. },
  30221. eye: {
  30222. height: math.unit(0.0748, "feet"),
  30223. name: "Eye",
  30224. image: {
  30225. source: "./media/characters/vaelophis-nyx/eye.svg"
  30226. }
  30227. },
  30228. mouth: {
  30229. height: math.unit(0.378, "feet"),
  30230. name: "Mouth",
  30231. image: {
  30232. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30233. }
  30234. },
  30235. spade: {
  30236. height: math.unit(0.55, "feet"),
  30237. name: "Spade",
  30238. image: {
  30239. source: "./media/characters/vaelophis-nyx/spade.svg"
  30240. }
  30241. },
  30242. },
  30243. [
  30244. {
  30245. name: "Normal",
  30246. height: math.unit(4 + 2/12, "feet"),
  30247. default: true
  30248. },
  30249. ]
  30250. ))
  30251. characterMakers.push(() => makeCharacter(
  30252. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30253. {
  30254. front: {
  30255. height: math.unit(7, "feet"),
  30256. weight: math.unit(231, "lb"),
  30257. name: "Front",
  30258. image: {
  30259. source: "./media/characters/flux/front.svg",
  30260. extra: 919/871,
  30261. bottom: 0/919
  30262. }
  30263. },
  30264. back: {
  30265. height: math.unit(7, "feet"),
  30266. weight: math.unit(231, "lb"),
  30267. name: "Back",
  30268. image: {
  30269. source: "./media/characters/flux/back.svg",
  30270. extra: 1040/992,
  30271. bottom: 0/1040
  30272. }
  30273. },
  30274. frontDressed: {
  30275. height: math.unit(7, "feet"),
  30276. weight: math.unit(231, "lb"),
  30277. name: "Front (Dressed)",
  30278. image: {
  30279. source: "./media/characters/flux/front-dressed.svg",
  30280. extra: 919/871,
  30281. bottom: 0/919
  30282. }
  30283. },
  30284. feralSide: {
  30285. height: math.unit(5, "feet"),
  30286. weight: math.unit(150, "lb"),
  30287. name: "Feral (Side)",
  30288. image: {
  30289. source: "./media/characters/flux/feral-side.svg",
  30290. extra: 598/528,
  30291. bottom: 28/626
  30292. }
  30293. },
  30294. head: {
  30295. height: math.unit(1.585, "feet"),
  30296. name: "Head",
  30297. image: {
  30298. source: "./media/characters/flux/head.svg"
  30299. }
  30300. },
  30301. headSide: {
  30302. height: math.unit(1.74, "feet"),
  30303. name: "Head (Side)",
  30304. image: {
  30305. source: "./media/characters/flux/head-side.svg"
  30306. }
  30307. },
  30308. headSideFire: {
  30309. height: math.unit(1.76, "feet"),
  30310. name: "Head (Side, Fire)",
  30311. image: {
  30312. source: "./media/characters/flux/head-side-fire.svg"
  30313. }
  30314. },
  30315. },
  30316. [
  30317. {
  30318. name: "Normal",
  30319. height: math.unit(7, "feet"),
  30320. default: true
  30321. },
  30322. ]
  30323. ))
  30324. characterMakers.push(() => makeCharacter(
  30325. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30326. {
  30327. front: {
  30328. height: math.unit(9, "feet"),
  30329. weight: math.unit(1012, "lb"),
  30330. name: "Front",
  30331. image: {
  30332. source: "./media/characters/ulfra-lupae/front.svg",
  30333. extra: 1083/1011,
  30334. bottom: 67/1150
  30335. }
  30336. },
  30337. },
  30338. [
  30339. {
  30340. name: "Micro",
  30341. height: math.unit(6, "inches")
  30342. },
  30343. {
  30344. name: "Socializing",
  30345. height: math.unit(6 + 5/12, "feet")
  30346. },
  30347. {
  30348. name: "Normal",
  30349. height: math.unit(9, "feet"),
  30350. default: true
  30351. },
  30352. {
  30353. name: "Macro",
  30354. height: math.unit(150, "feet")
  30355. },
  30356. ]
  30357. ))
  30358. characterMakers.push(() => makeCharacter(
  30359. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30360. {
  30361. front: {
  30362. height: math.unit(5 + 2/12, "feet"),
  30363. weight: math.unit(120, "lb"),
  30364. name: "Front",
  30365. image: {
  30366. source: "./media/characters/timber/front.svg",
  30367. extra: 2814/2705,
  30368. bottom: 181/2995
  30369. }
  30370. },
  30371. },
  30372. [
  30373. {
  30374. name: "Normal",
  30375. height: math.unit(5 + 2/12, "feet"),
  30376. default: true
  30377. },
  30378. ]
  30379. ))
  30380. characterMakers.push(() => makeCharacter(
  30381. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30382. {
  30383. front: {
  30384. height: math.unit(5 + 7/12, "feet"),
  30385. weight: math.unit(220, "lb"),
  30386. name: "Front",
  30387. image: {
  30388. source: "./media/characters/nicki/front.svg",
  30389. extra: 453/419,
  30390. bottom: 7/460
  30391. }
  30392. },
  30393. frontAlt: {
  30394. height: math.unit(5 + 7/12, "feet"),
  30395. weight: math.unit(220, "lb"),
  30396. name: "Front-alt",
  30397. image: {
  30398. source: "./media/characters/nicki/front-alt.svg",
  30399. extra: 435/411,
  30400. bottom: 12/447
  30401. }
  30402. },
  30403. back: {
  30404. height: math.unit(5 + 7/12, "feet"),
  30405. weight: math.unit(220, "lb"),
  30406. name: "Back",
  30407. image: {
  30408. source: "./media/characters/nicki/back.svg",
  30409. extra: 440/413,
  30410. bottom: 19/459
  30411. }
  30412. },
  30413. taur: {
  30414. height: math.unit(7 + 6/12, "feet"),
  30415. weight: math.unit(700, "lb"),
  30416. name: "Taur",
  30417. image: {
  30418. source: "./media/characters/nicki/taur.svg",
  30419. extra: 975/773,
  30420. bottom: 0/975
  30421. }
  30422. },
  30423. frontNsfw: {
  30424. height: math.unit(5 + 7/12, "feet"),
  30425. weight: math.unit(220, "lb"),
  30426. name: "Front (NSFW)",
  30427. image: {
  30428. source: "./media/characters/nicki/front-nsfw.svg",
  30429. extra: 453/419,
  30430. bottom: 7/460
  30431. }
  30432. },
  30433. frontNsfwAlt: {
  30434. height: math.unit(5 + 7/12, "feet"),
  30435. weight: math.unit(220, "lb"),
  30436. name: "Front (Alt, NSFW)",
  30437. image: {
  30438. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30439. extra: 435/411,
  30440. bottom: 12/447
  30441. }
  30442. },
  30443. backNsfw: {
  30444. height: math.unit(5 + 7/12, "feet"),
  30445. weight: math.unit(220, "lb"),
  30446. name: "Back (NSFW)",
  30447. image: {
  30448. source: "./media/characters/nicki/back-nsfw.svg",
  30449. extra: 440/413,
  30450. bottom: 19/459
  30451. }
  30452. },
  30453. head: {
  30454. height: math.unit(2.1, "feet"),
  30455. name: "Head",
  30456. image: {
  30457. source: "./media/characters/nicki/head.svg"
  30458. }
  30459. },
  30460. paw: {
  30461. height: math.unit(1.88, "feet"),
  30462. name: "Paw",
  30463. image: {
  30464. source: "./media/characters/nicki/paw.svg"
  30465. }
  30466. },
  30467. },
  30468. [
  30469. {
  30470. name: "Normal",
  30471. height: math.unit(5 + 7/12, "feet"),
  30472. default: true
  30473. },
  30474. ]
  30475. ))
  30476. characterMakers.push(() => makeCharacter(
  30477. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30478. {
  30479. front: {
  30480. height: math.unit(7 + 10/12, "feet"),
  30481. weight: math.unit(3.5, "tons"),
  30482. name: "Front",
  30483. image: {
  30484. source: "./media/characters/lee/front.svg",
  30485. extra: 1773/1615,
  30486. bottom: 86/1859
  30487. }
  30488. },
  30489. hand: {
  30490. height: math.unit(1.78, "feet"),
  30491. name: "Hand",
  30492. image: {
  30493. source: "./media/characters/lee/hand.svg"
  30494. }
  30495. },
  30496. maw: {
  30497. height: math.unit(1.18, "feet"),
  30498. name: "Maw",
  30499. image: {
  30500. source: "./media/characters/lee/maw.svg"
  30501. }
  30502. },
  30503. },
  30504. [
  30505. {
  30506. name: "Normal",
  30507. height: math.unit(7 + 10/12, "feet"),
  30508. default: true
  30509. },
  30510. ]
  30511. ))
  30512. characterMakers.push(() => makeCharacter(
  30513. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30514. {
  30515. front: {
  30516. height: math.unit(9, "feet"),
  30517. name: "Front",
  30518. image: {
  30519. source: "./media/characters/guti/front.svg",
  30520. extra: 4551/4355,
  30521. bottom: 123/4674
  30522. }
  30523. },
  30524. tongue: {
  30525. height: math.unit(1, "feet"),
  30526. name: "Tongue",
  30527. image: {
  30528. source: "./media/characters/guti/tongue.svg"
  30529. }
  30530. },
  30531. paw: {
  30532. height: math.unit(1.18, "feet"),
  30533. name: "Paw",
  30534. image: {
  30535. source: "./media/characters/guti/paw.svg"
  30536. }
  30537. },
  30538. },
  30539. [
  30540. {
  30541. name: "Normal",
  30542. height: math.unit(9, "feet"),
  30543. default: true
  30544. },
  30545. ]
  30546. ))
  30547. characterMakers.push(() => makeCharacter(
  30548. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30549. {
  30550. side: {
  30551. height: math.unit(5, "meters"),
  30552. name: "Side",
  30553. image: {
  30554. source: "./media/characters/vesper/side.svg",
  30555. extra: 1605/1518,
  30556. bottom: 0/1605
  30557. }
  30558. },
  30559. },
  30560. [
  30561. {
  30562. name: "Small",
  30563. height: math.unit(5, "meters")
  30564. },
  30565. {
  30566. name: "Sage",
  30567. height: math.unit(100, "meters"),
  30568. default: true
  30569. },
  30570. {
  30571. name: "Fun Size",
  30572. height: math.unit(600, "meters")
  30573. },
  30574. {
  30575. name: "Goddess",
  30576. height: math.unit(20000, "km")
  30577. },
  30578. {
  30579. name: "Maximum",
  30580. height: math.unit(5, "galaxies")
  30581. },
  30582. ]
  30583. ))
  30584. characterMakers.push(() => makeCharacter(
  30585. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30586. {
  30587. front: {
  30588. height: math.unit(6 + 3/12, "feet"),
  30589. weight: math.unit(190, "lb"),
  30590. name: "Front",
  30591. image: {
  30592. source: "./media/characters/gawain/front.svg",
  30593. extra: 2222/2139,
  30594. bottom: 90/2312
  30595. }
  30596. },
  30597. back: {
  30598. height: math.unit(6 + 3/12, "feet"),
  30599. weight: math.unit(190, "lb"),
  30600. name: "Back",
  30601. image: {
  30602. source: "./media/characters/gawain/back.svg",
  30603. extra: 2199/2111,
  30604. bottom: 73/2272
  30605. }
  30606. },
  30607. },
  30608. [
  30609. {
  30610. name: "Normal",
  30611. height: math.unit(6 + 3/12, "feet"),
  30612. default: true
  30613. },
  30614. ]
  30615. ))
  30616. characterMakers.push(() => makeCharacter(
  30617. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30618. {
  30619. side: {
  30620. height: math.unit(3.5, "meters"),
  30621. weight: math.unit(16000, "lb"),
  30622. name: "Side",
  30623. image: {
  30624. source: "./media/characters/dascalti/side.svg",
  30625. extra: 392/273,
  30626. bottom: 47/439
  30627. }
  30628. },
  30629. breath: {
  30630. height: math.unit(7.4, "feet"),
  30631. name: "Breath",
  30632. image: {
  30633. source: "./media/characters/dascalti/breath.svg"
  30634. }
  30635. },
  30636. fed: {
  30637. height: math.unit(3.6, "meters"),
  30638. weight: math.unit(16000, "lb"),
  30639. name: "Fed",
  30640. image: {
  30641. source: "./media/characters/dascalti/fed.svg",
  30642. extra: 1419/820,
  30643. bottom: 95/1514
  30644. }
  30645. },
  30646. },
  30647. [
  30648. {
  30649. name: "Normal",
  30650. height: math.unit(3.5, "meters"),
  30651. default: true
  30652. },
  30653. ]
  30654. ))
  30655. characterMakers.push(() => makeCharacter(
  30656. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30657. {
  30658. front: {
  30659. height: math.unit(3 + 5/12, "feet"),
  30660. name: "Front",
  30661. image: {
  30662. source: "./media/characters/mauve/front.svg",
  30663. extra: 1126/1033,
  30664. bottom: 65/1191
  30665. }
  30666. },
  30667. side: {
  30668. height: math.unit(3 + 5/12, "feet"),
  30669. name: "Side",
  30670. image: {
  30671. source: "./media/characters/mauve/side.svg",
  30672. extra: 1089/1001,
  30673. bottom: 29/1118
  30674. }
  30675. },
  30676. back: {
  30677. height: math.unit(3 + 5/12, "feet"),
  30678. name: "Back",
  30679. image: {
  30680. source: "./media/characters/mauve/back.svg",
  30681. extra: 1173/1053,
  30682. bottom: 109/1282
  30683. }
  30684. },
  30685. },
  30686. [
  30687. {
  30688. name: "Normal",
  30689. height: math.unit(3 + 5/12, "feet"),
  30690. default: true
  30691. },
  30692. ]
  30693. ))
  30694. characterMakers.push(() => makeCharacter(
  30695. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30696. {
  30697. front: {
  30698. height: math.unit(6 + 3/12, "feet"),
  30699. weight: math.unit(430, "lb"),
  30700. name: "Front",
  30701. image: {
  30702. source: "./media/characters/carlos/front.svg",
  30703. extra: 1964/1913,
  30704. bottom: 70/2034
  30705. }
  30706. },
  30707. },
  30708. [
  30709. {
  30710. name: "Normal",
  30711. height: math.unit(6 + 3/12, "feet"),
  30712. default: true
  30713. },
  30714. ]
  30715. ))
  30716. characterMakers.push(() => makeCharacter(
  30717. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30718. {
  30719. back: {
  30720. height: math.unit(5 + 10/12, "feet"),
  30721. weight: math.unit(200, "lb"),
  30722. name: "Back",
  30723. image: {
  30724. source: "./media/characters/jax/back.svg",
  30725. extra: 764/739,
  30726. bottom: 25/789
  30727. }
  30728. },
  30729. },
  30730. [
  30731. {
  30732. name: "Normal",
  30733. height: math.unit(5 + 10/12, "feet"),
  30734. default: true
  30735. },
  30736. ]
  30737. ))
  30738. characterMakers.push(() => makeCharacter(
  30739. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30740. {
  30741. front: {
  30742. height: math.unit(8, "feet"),
  30743. weight: math.unit(250, "lb"),
  30744. name: "Front",
  30745. image: {
  30746. source: "./media/characters/eikthynir/front.svg",
  30747. extra: 1332/1166,
  30748. bottom: 82/1414
  30749. }
  30750. },
  30751. back: {
  30752. height: math.unit(8, "feet"),
  30753. weight: math.unit(250, "lb"),
  30754. name: "Back",
  30755. image: {
  30756. source: "./media/characters/eikthynir/back.svg",
  30757. extra: 1342/1190,
  30758. bottom: 19/1361
  30759. }
  30760. },
  30761. dick: {
  30762. height: math.unit(2.35, "feet"),
  30763. name: "Dick",
  30764. image: {
  30765. source: "./media/characters/eikthynir/dick.svg"
  30766. }
  30767. },
  30768. },
  30769. [
  30770. {
  30771. name: "Normal",
  30772. height: math.unit(8, "feet"),
  30773. default: true
  30774. },
  30775. ]
  30776. ))
  30777. characterMakers.push(() => makeCharacter(
  30778. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30779. {
  30780. front: {
  30781. height: math.unit(99, "meters"),
  30782. weight: math.unit(13000, "tons"),
  30783. name: "Front",
  30784. image: {
  30785. source: "./media/characters/zlmos/front.svg",
  30786. extra: 2202/1992,
  30787. bottom: 315/2517
  30788. }
  30789. },
  30790. },
  30791. [
  30792. {
  30793. name: "Macro",
  30794. height: math.unit(99, "meters"),
  30795. default: true
  30796. },
  30797. ]
  30798. ))
  30799. characterMakers.push(() => makeCharacter(
  30800. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30801. {
  30802. front: {
  30803. height: math.unit(6 + 5/12, "feet"),
  30804. name: "Front",
  30805. image: {
  30806. source: "./media/characters/purri/front.svg",
  30807. extra: 1698/1610,
  30808. bottom: 32/1730
  30809. }
  30810. },
  30811. frontAlt: {
  30812. height: math.unit(6 + 5/12, "feet"),
  30813. name: "Front (Alt)",
  30814. image: {
  30815. source: "./media/characters/purri/front-alt.svg",
  30816. extra: 450/420,
  30817. bottom: 26/476
  30818. }
  30819. },
  30820. boots: {
  30821. height: math.unit(5.5, "feet"),
  30822. name: "Boots",
  30823. image: {
  30824. source: "./media/characters/purri/boots.svg",
  30825. extra: 905/853,
  30826. bottom: 18/923
  30827. }
  30828. },
  30829. lying: {
  30830. height: math.unit(2, "feet"),
  30831. name: "Lying",
  30832. image: {
  30833. source: "./media/characters/purri/lying.svg",
  30834. extra: 940/843,
  30835. bottom: 146/1086
  30836. }
  30837. },
  30838. devious: {
  30839. height: math.unit(1.77, "feet"),
  30840. name: "Devious",
  30841. image: {
  30842. source: "./media/characters/purri/devious.svg",
  30843. extra: 1440/1155,
  30844. bottom: 147/1587
  30845. }
  30846. },
  30847. bean: {
  30848. height: math.unit(1.94, "feet"),
  30849. name: "Bean",
  30850. image: {
  30851. source: "./media/characters/purri/bean.svg"
  30852. }
  30853. },
  30854. },
  30855. [
  30856. {
  30857. name: "Micro",
  30858. height: math.unit(1, "mm")
  30859. },
  30860. {
  30861. name: "Normal",
  30862. height: math.unit(6 + 5/12, "feet"),
  30863. default: true
  30864. },
  30865. {
  30866. name: "Macro :3c",
  30867. height: math.unit(2, "miles")
  30868. },
  30869. ]
  30870. ))
  30871. characterMakers.push(() => makeCharacter(
  30872. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30873. {
  30874. front: {
  30875. height: math.unit(6 + 2/12, "feet"),
  30876. weight: math.unit(250, "lb"),
  30877. name: "Front",
  30878. image: {
  30879. source: "./media/characters/moonlight/front.svg",
  30880. extra: 1044/908,
  30881. bottom: 56/1100
  30882. }
  30883. },
  30884. feral: {
  30885. height: math.unit(3 + 1/12, "feet"),
  30886. weight: math.unit(50, "kg"),
  30887. name: "Feral",
  30888. image: {
  30889. source: "./media/characters/moonlight/feral.svg",
  30890. extra: 3705/2791,
  30891. bottom: 145/3850
  30892. }
  30893. },
  30894. paw: {
  30895. height: math.unit(1, "feet"),
  30896. name: "Paw",
  30897. image: {
  30898. source: "./media/characters/moonlight/paw.svg"
  30899. }
  30900. },
  30901. paws: {
  30902. height: math.unit(0.98, "feet"),
  30903. name: "Paws",
  30904. image: {
  30905. source: "./media/characters/moonlight/paws.svg",
  30906. extra: 939/939,
  30907. bottom: 50/989
  30908. }
  30909. },
  30910. mouth: {
  30911. height: math.unit(0.48, "feet"),
  30912. name: "Mouth",
  30913. image: {
  30914. source: "./media/characters/moonlight/mouth.svg"
  30915. }
  30916. },
  30917. dick: {
  30918. height: math.unit(1.46, "feet"),
  30919. name: "Dick",
  30920. image: {
  30921. source: "./media/characters/moonlight/dick.svg"
  30922. }
  30923. },
  30924. },
  30925. [
  30926. {
  30927. name: "Normal",
  30928. height: math.unit(6 + 2/12, "feet"),
  30929. default: true
  30930. },
  30931. {
  30932. name: "Macro",
  30933. height: math.unit(300, "feet")
  30934. },
  30935. {
  30936. name: "Macro+",
  30937. height: math.unit(1, "mile")
  30938. },
  30939. {
  30940. name: "Mt. Moon",
  30941. height: math.unit(5, "miles")
  30942. },
  30943. {
  30944. name: "Megamacro",
  30945. height: math.unit(15, "miles")
  30946. },
  30947. ]
  30948. ))
  30949. characterMakers.push(() => makeCharacter(
  30950. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30951. {
  30952. back: {
  30953. height: math.unit(6, "feet"),
  30954. weight: math.unit(150, "lb"),
  30955. name: "Back",
  30956. image: {
  30957. source: "./media/characters/sylen/back.svg",
  30958. extra: 1335/1273,
  30959. bottom: 107/1442
  30960. }
  30961. },
  30962. },
  30963. [
  30964. {
  30965. name: "Normal",
  30966. height: math.unit(5 + 5/12, "feet")
  30967. },
  30968. {
  30969. name: "Megamacro",
  30970. height: math.unit(3, "miles"),
  30971. default: true
  30972. },
  30973. ]
  30974. ))
  30975. characterMakers.push(() => makeCharacter(
  30976. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30977. {
  30978. front: {
  30979. height: math.unit(6, "feet"),
  30980. weight: math.unit(190, "lb"),
  30981. name: "Front",
  30982. image: {
  30983. source: "./media/characters/huttser/front.svg",
  30984. extra: 1152/1058,
  30985. bottom: 23/1175
  30986. }
  30987. },
  30988. side: {
  30989. height: math.unit(6, "feet"),
  30990. weight: math.unit(190, "lb"),
  30991. name: "Side",
  30992. image: {
  30993. source: "./media/characters/huttser/side.svg",
  30994. extra: 1174/1065,
  30995. bottom: 18/1192
  30996. }
  30997. },
  30998. back: {
  30999. height: math.unit(6, "feet"),
  31000. weight: math.unit(190, "lb"),
  31001. name: "Back",
  31002. image: {
  31003. source: "./media/characters/huttser/back.svg",
  31004. extra: 1158/1056,
  31005. bottom: 12/1170
  31006. }
  31007. },
  31008. },
  31009. [
  31010. ]
  31011. ))
  31012. characterMakers.push(() => makeCharacter(
  31013. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31014. {
  31015. side: {
  31016. height: math.unit(12 + 9/12, "feet"),
  31017. weight: math.unit(15000, "lb"),
  31018. name: "Side",
  31019. image: {
  31020. source: "./media/characters/faan/side.svg",
  31021. extra: 2747/2697,
  31022. bottom: 0/2747
  31023. }
  31024. },
  31025. front: {
  31026. height: math.unit(12 + 9/12, "feet"),
  31027. weight: math.unit(15000, "lb"),
  31028. name: "Front",
  31029. image: {
  31030. source: "./media/characters/faan/front.svg",
  31031. extra: 607/571,
  31032. bottom: 24/631
  31033. }
  31034. },
  31035. head: {
  31036. height: math.unit(2.85, "feet"),
  31037. name: "Head",
  31038. image: {
  31039. source: "./media/characters/faan/head.svg"
  31040. }
  31041. },
  31042. headAlt: {
  31043. height: math.unit(3.13, "feet"),
  31044. name: "Head-alt",
  31045. image: {
  31046. source: "./media/characters/faan/head-alt.svg"
  31047. }
  31048. },
  31049. },
  31050. [
  31051. {
  31052. name: "Normal",
  31053. height: math.unit(12 + 9/12, "feet"),
  31054. default: true
  31055. },
  31056. ]
  31057. ))
  31058. characterMakers.push(() => makeCharacter(
  31059. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31060. {
  31061. front: {
  31062. height: math.unit(6, "feet"),
  31063. weight: math.unit(300, "lb"),
  31064. name: "Front",
  31065. image: {
  31066. source: "./media/characters/tanio/front.svg",
  31067. extra: 711/673,
  31068. bottom: 25/736
  31069. }
  31070. },
  31071. },
  31072. [
  31073. {
  31074. name: "Normal",
  31075. height: math.unit(6, "feet"),
  31076. default: true
  31077. },
  31078. ]
  31079. ))
  31080. characterMakers.push(() => makeCharacter(
  31081. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31082. {
  31083. front: {
  31084. height: math.unit(3, "inches"),
  31085. name: "Front",
  31086. image: {
  31087. source: "./media/characters/noboru/front.svg",
  31088. extra: 1039/932,
  31089. bottom: 18/1057
  31090. }
  31091. },
  31092. },
  31093. [
  31094. {
  31095. name: "Micro",
  31096. height: math.unit(3, "inches"),
  31097. default: true
  31098. },
  31099. ]
  31100. ))
  31101. characterMakers.push(() => makeCharacter(
  31102. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31103. {
  31104. front: {
  31105. height: math.unit(1.85, "meters"),
  31106. weight: math.unit(80, "kg"),
  31107. name: "Front",
  31108. image: {
  31109. source: "./media/characters/daniel-barrett/front.svg",
  31110. extra: 355/337,
  31111. bottom: 9/364
  31112. }
  31113. },
  31114. },
  31115. [
  31116. {
  31117. name: "Pico",
  31118. height: math.unit(0.0433, "mm")
  31119. },
  31120. {
  31121. name: "Nano",
  31122. height: math.unit(1.5, "mm")
  31123. },
  31124. {
  31125. name: "Micro",
  31126. height: math.unit(5.3, "cm"),
  31127. default: true
  31128. },
  31129. {
  31130. name: "Normal",
  31131. height: math.unit(1.85, "meters")
  31132. },
  31133. {
  31134. name: "Macro",
  31135. height: math.unit(64.7, "meters")
  31136. },
  31137. {
  31138. name: "Megamacro",
  31139. height: math.unit(2.26, "km")
  31140. },
  31141. {
  31142. name: "Gigamacro",
  31143. height: math.unit(79, "km")
  31144. },
  31145. {
  31146. name: "Teramacro",
  31147. height: math.unit(2765, "km")
  31148. },
  31149. {
  31150. name: "Petamacro",
  31151. height: math.unit(96678, "km")
  31152. },
  31153. ]
  31154. ))
  31155. characterMakers.push(() => makeCharacter(
  31156. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31157. {
  31158. front: {
  31159. height: math.unit(30, "meters"),
  31160. weight: math.unit(400, "tons"),
  31161. name: "Front",
  31162. image: {
  31163. source: "./media/characters/zeel/front.svg",
  31164. extra: 2599/2599,
  31165. bottom: 226/2825
  31166. }
  31167. },
  31168. },
  31169. [
  31170. {
  31171. name: "Macro",
  31172. height: math.unit(30, "meters"),
  31173. default: true
  31174. },
  31175. ]
  31176. ))
  31177. characterMakers.push(() => makeCharacter(
  31178. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31179. {
  31180. front: {
  31181. height: math.unit(6 + 7/12, "feet"),
  31182. weight: math.unit(210, "lb"),
  31183. name: "Front",
  31184. image: {
  31185. source: "./media/characters/tarn/front.svg",
  31186. extra: 3517/3220,
  31187. bottom: 91/3608
  31188. }
  31189. },
  31190. back: {
  31191. height: math.unit(6 + 7/12, "feet"),
  31192. weight: math.unit(210, "lb"),
  31193. name: "Back",
  31194. image: {
  31195. source: "./media/characters/tarn/back.svg",
  31196. extra: 3566/3241,
  31197. bottom: 34/3600
  31198. }
  31199. },
  31200. dick: {
  31201. height: math.unit(1.65, "feet"),
  31202. name: "Dick",
  31203. image: {
  31204. source: "./media/characters/tarn/dick.svg"
  31205. }
  31206. },
  31207. paw: {
  31208. height: math.unit(1.80, "feet"),
  31209. name: "Paw",
  31210. image: {
  31211. source: "./media/characters/tarn/paw.svg"
  31212. }
  31213. },
  31214. tongue: {
  31215. height: math.unit(0.97, "feet"),
  31216. name: "Tongue",
  31217. image: {
  31218. source: "./media/characters/tarn/tongue.svg"
  31219. }
  31220. },
  31221. },
  31222. [
  31223. {
  31224. name: "Micro",
  31225. height: math.unit(4, "inches")
  31226. },
  31227. {
  31228. name: "Normal",
  31229. height: math.unit(6 + 7/12, "feet"),
  31230. default: true
  31231. },
  31232. {
  31233. name: "Macro",
  31234. height: math.unit(300, "feet")
  31235. },
  31236. ]
  31237. ))
  31238. characterMakers.push(() => makeCharacter(
  31239. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31240. {
  31241. front: {
  31242. height: math.unit(5 + 7/12, "feet"),
  31243. weight: math.unit(80, "kg"),
  31244. name: "Front",
  31245. image: {
  31246. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31247. extra: 3023/2865,
  31248. bottom: 33/3056
  31249. }
  31250. },
  31251. back: {
  31252. height: math.unit(5 + 7/12, "feet"),
  31253. weight: math.unit(80, "kg"),
  31254. name: "Back",
  31255. image: {
  31256. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31257. extra: 3020/2886,
  31258. bottom: 30/3050
  31259. }
  31260. },
  31261. dick: {
  31262. height: math.unit(0.98, "feet"),
  31263. name: "Dick",
  31264. image: {
  31265. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31266. }
  31267. },
  31268. anatomy: {
  31269. height: math.unit(2.86, "feet"),
  31270. name: "Anatomy",
  31271. image: {
  31272. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31273. }
  31274. },
  31275. },
  31276. [
  31277. {
  31278. name: "Really Small",
  31279. height: math.unit(2, "inches")
  31280. },
  31281. {
  31282. name: "Micro",
  31283. height: math.unit(5.583, "inches")
  31284. },
  31285. {
  31286. name: "Normal",
  31287. height: math.unit(5 + 7/12, "feet"),
  31288. default: true
  31289. },
  31290. {
  31291. name: "Macro",
  31292. height: math.unit(67, "feet")
  31293. },
  31294. {
  31295. name: "Megamacro",
  31296. height: math.unit(134, "feet")
  31297. },
  31298. ]
  31299. ))
  31300. characterMakers.push(() => makeCharacter(
  31301. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31302. {
  31303. front: {
  31304. height: math.unit(9, "feet"),
  31305. weight: math.unit(120, "lb"),
  31306. name: "Front",
  31307. image: {
  31308. source: "./media/characters/sally/front.svg",
  31309. extra: 1506/1349,
  31310. bottom: 66/1572
  31311. }
  31312. },
  31313. },
  31314. [
  31315. {
  31316. name: "Normal",
  31317. height: math.unit(9, "feet"),
  31318. default: true
  31319. },
  31320. ]
  31321. ))
  31322. characterMakers.push(() => makeCharacter(
  31323. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31324. {
  31325. front: {
  31326. height: math.unit(8, "feet"),
  31327. weight: math.unit(900, "lb"),
  31328. name: "Front",
  31329. image: {
  31330. source: "./media/characters/owen/front.svg",
  31331. extra: 1761/1657,
  31332. bottom: 74/1835
  31333. }
  31334. },
  31335. side: {
  31336. height: math.unit(8, "feet"),
  31337. weight: math.unit(900, "lb"),
  31338. name: "Side",
  31339. image: {
  31340. source: "./media/characters/owen/side.svg",
  31341. extra: 1797/1734,
  31342. bottom: 30/1827
  31343. }
  31344. },
  31345. back: {
  31346. height: math.unit(8, "feet"),
  31347. weight: math.unit(900, "lb"),
  31348. name: "Back",
  31349. image: {
  31350. source: "./media/characters/owen/back.svg",
  31351. extra: 1796/1706,
  31352. bottom: 59/1855
  31353. }
  31354. },
  31355. maw: {
  31356. height: math.unit(1.76, "feet"),
  31357. name: "Maw",
  31358. image: {
  31359. source: "./media/characters/owen/maw.svg"
  31360. }
  31361. },
  31362. },
  31363. [
  31364. {
  31365. name: "Normal",
  31366. height: math.unit(8, "feet"),
  31367. default: true
  31368. },
  31369. ]
  31370. ))
  31371. characterMakers.push(() => makeCharacter(
  31372. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31373. {
  31374. front: {
  31375. height: math.unit(4, "feet"),
  31376. weight: math.unit(400, "lb"),
  31377. name: "Front",
  31378. image: {
  31379. source: "./media/characters/ryth/front.svg",
  31380. extra: 876/691,
  31381. bottom: 25/901
  31382. }
  31383. },
  31384. goia: {
  31385. height: math.unit(12, "feet"),
  31386. weight: math.unit(10800, "lb"),
  31387. name: "Goia",
  31388. image: {
  31389. source: "./media/characters/ryth/goia.svg",
  31390. extra: 3450/3198,
  31391. bottom: 61/3511
  31392. }
  31393. },
  31394. },
  31395. [
  31396. {
  31397. name: "Normal",
  31398. height: math.unit(4, "feet"),
  31399. default: true
  31400. },
  31401. ]
  31402. ))
  31403. characterMakers.push(() => makeCharacter(
  31404. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31405. {
  31406. front: {
  31407. height: math.unit(7, "feet"),
  31408. weight: math.unit(180, "lb"),
  31409. name: "Front",
  31410. image: {
  31411. source: "./media/characters/necrolance/front.svg",
  31412. extra: 1062/947,
  31413. bottom: 41/1103
  31414. }
  31415. },
  31416. back: {
  31417. height: math.unit(7, "feet"),
  31418. weight: math.unit(180, "lb"),
  31419. name: "Back",
  31420. image: {
  31421. source: "./media/characters/necrolance/back.svg",
  31422. extra: 1045/984,
  31423. bottom: 14/1059
  31424. }
  31425. },
  31426. wing: {
  31427. height: math.unit(2.67, "feet"),
  31428. name: "Wing",
  31429. image: {
  31430. source: "./media/characters/necrolance/wing.svg"
  31431. }
  31432. },
  31433. },
  31434. [
  31435. {
  31436. name: "Normal",
  31437. height: math.unit(7, "feet"),
  31438. default: true
  31439. },
  31440. ]
  31441. ))
  31442. characterMakers.push(() => makeCharacter(
  31443. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31444. {
  31445. front: {
  31446. height: math.unit(76, "meters"),
  31447. weight: math.unit(30000, "tons"),
  31448. name: "Front",
  31449. image: {
  31450. source: "./media/characters/tyler/front.svg",
  31451. extra: 1640/1640,
  31452. bottom: 114/1754
  31453. }
  31454. },
  31455. },
  31456. [
  31457. {
  31458. name: "Macro",
  31459. height: math.unit(76, "meters"),
  31460. default: true
  31461. },
  31462. ]
  31463. ))
  31464. characterMakers.push(() => makeCharacter(
  31465. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31466. {
  31467. front: {
  31468. height: math.unit(4 + 11/12, "feet"),
  31469. weight: math.unit(132, "lb"),
  31470. name: "Front",
  31471. image: {
  31472. source: "./media/characters/icey/front.svg",
  31473. extra: 2750/2550,
  31474. bottom: 33/2783
  31475. }
  31476. },
  31477. back: {
  31478. height: math.unit(4 + 11/12, "feet"),
  31479. weight: math.unit(132, "lb"),
  31480. name: "Back",
  31481. image: {
  31482. source: "./media/characters/icey/back.svg",
  31483. extra: 2624/2481,
  31484. bottom: 35/2659
  31485. }
  31486. },
  31487. },
  31488. [
  31489. {
  31490. name: "Normal",
  31491. height: math.unit(4 + 11/12, "feet"),
  31492. default: true
  31493. },
  31494. ]
  31495. ))
  31496. characterMakers.push(() => makeCharacter(
  31497. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31498. {
  31499. front: {
  31500. height: math.unit(100, "feet"),
  31501. weight: math.unit(0, "lb"),
  31502. name: "Front",
  31503. image: {
  31504. source: "./media/characters/smile/front.svg",
  31505. extra: 2983/2912,
  31506. bottom: 162/3145
  31507. }
  31508. },
  31509. back: {
  31510. height: math.unit(100, "feet"),
  31511. weight: math.unit(0, "lb"),
  31512. name: "Back",
  31513. image: {
  31514. source: "./media/characters/smile/back.svg",
  31515. extra: 3143/3031,
  31516. bottom: 91/3234
  31517. }
  31518. },
  31519. head: {
  31520. height: math.unit(26.3, "feet"),
  31521. weight: math.unit(0, "lb"),
  31522. name: "Head",
  31523. image: {
  31524. source: "./media/characters/smile/head.svg"
  31525. }
  31526. },
  31527. collar: {
  31528. height: math.unit(5.3, "feet"),
  31529. weight: math.unit(0, "lb"),
  31530. name: "Collar",
  31531. image: {
  31532. source: "./media/characters/smile/collar.svg"
  31533. }
  31534. },
  31535. },
  31536. [
  31537. {
  31538. name: "Macro",
  31539. height: math.unit(100, "feet"),
  31540. default: true
  31541. },
  31542. ]
  31543. ))
  31544. characterMakers.push(() => makeCharacter(
  31545. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31546. {
  31547. dragon: {
  31548. height: math.unit(26, "feet"),
  31549. weight: math.unit(36, "tons"),
  31550. name: "Dragon",
  31551. image: {
  31552. source: "./media/characters/arimphae/dragon.svg",
  31553. extra: 1574/983,
  31554. bottom: 357/1931
  31555. }
  31556. },
  31557. drake: {
  31558. height: math.unit(9, "feet"),
  31559. weight: math.unit(1.5, "tons"),
  31560. name: "Drake",
  31561. image: {
  31562. source: "./media/characters/arimphae/drake.svg",
  31563. extra: 1120/925,
  31564. bottom: 435/1555
  31565. }
  31566. },
  31567. },
  31568. [
  31569. {
  31570. name: "Small",
  31571. height: math.unit(26*5/9, "feet")
  31572. },
  31573. {
  31574. name: "Normal",
  31575. height: math.unit(26, "feet"),
  31576. default: true
  31577. },
  31578. ]
  31579. ))
  31580. characterMakers.push(() => makeCharacter(
  31581. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31582. {
  31583. front: {
  31584. height: math.unit(8 + 9/12, "feet"),
  31585. name: "Front",
  31586. image: {
  31587. source: "./media/characters/xander/front.svg",
  31588. extra: 848/673,
  31589. bottom: 62/910
  31590. }
  31591. },
  31592. },
  31593. [
  31594. {
  31595. name: "Normal",
  31596. height: math.unit(8 + 9/12, "feet"),
  31597. default: true
  31598. },
  31599. {
  31600. name: "Gaze Grabber",
  31601. height: math.unit(13 + 8/12, "feet")
  31602. },
  31603. {
  31604. name: "Jaw Dropper",
  31605. height: math.unit(27, "feet")
  31606. },
  31607. {
  31608. name: "Show Stopper",
  31609. height: math.unit(136, "feet")
  31610. },
  31611. {
  31612. name: "Superstar",
  31613. height: math.unit(1.9e6, "miles")
  31614. },
  31615. ]
  31616. ))
  31617. characterMakers.push(() => makeCharacter(
  31618. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31619. {
  31620. side: {
  31621. height: math.unit(2100, "feet"),
  31622. name: "Side",
  31623. image: {
  31624. source: "./media/characters/osiris/side.svg",
  31625. extra: 1105/939,
  31626. bottom: 167/1272
  31627. }
  31628. },
  31629. },
  31630. [
  31631. {
  31632. name: "Macro",
  31633. height: math.unit(2100, "feet"),
  31634. default: true
  31635. },
  31636. ]
  31637. ))
  31638. characterMakers.push(() => makeCharacter(
  31639. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31640. {
  31641. front: {
  31642. height: math.unit(6 + 8/12, "feet"),
  31643. weight: math.unit(225, "lb"),
  31644. name: "Front",
  31645. image: {
  31646. source: "./media/characters/rhys-londe/front.svg",
  31647. extra: 2258/2141,
  31648. bottom: 188/2446
  31649. }
  31650. },
  31651. back: {
  31652. height: math.unit(6 + 8/12, "feet"),
  31653. weight: math.unit(225, "lb"),
  31654. name: "Back",
  31655. image: {
  31656. source: "./media/characters/rhys-londe/back.svg",
  31657. extra: 2237/2137,
  31658. bottom: 63/2300
  31659. }
  31660. },
  31661. frontNsfw: {
  31662. height: math.unit(6 + 8/12, "feet"),
  31663. weight: math.unit(225, "lb"),
  31664. name: "Front (NSFW)",
  31665. image: {
  31666. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31667. extra: 2258/2141,
  31668. bottom: 188/2446
  31669. }
  31670. },
  31671. backNsfw: {
  31672. height: math.unit(6 + 8/12, "feet"),
  31673. weight: math.unit(225, "lb"),
  31674. name: "Back (NSFW)",
  31675. image: {
  31676. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31677. extra: 2237/2137,
  31678. bottom: 63/2300
  31679. }
  31680. },
  31681. dick: {
  31682. height: math.unit(30, "inches"),
  31683. name: "Dick",
  31684. image: {
  31685. source: "./media/characters/rhys-londe/dick.svg"
  31686. }
  31687. },
  31688. maw: {
  31689. height: math.unit(1.6, "feet"),
  31690. name: "Maw",
  31691. image: {
  31692. source: "./media/characters/rhys-londe/maw.svg"
  31693. }
  31694. },
  31695. },
  31696. [
  31697. {
  31698. name: "Normal",
  31699. height: math.unit(6 + 8/12, "feet"),
  31700. default: true
  31701. },
  31702. ]
  31703. ))
  31704. characterMakers.push(() => makeCharacter(
  31705. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31706. {
  31707. front: {
  31708. height: math.unit(3 + 10/12, "feet"),
  31709. weight: math.unit(90, "lb"),
  31710. name: "Front",
  31711. image: {
  31712. source: "./media/characters/taivas-ensim/front.svg",
  31713. extra: 1327/1216,
  31714. bottom: 96/1423
  31715. }
  31716. },
  31717. back: {
  31718. height: math.unit(3 + 10/12, "feet"),
  31719. weight: math.unit(90, "lb"),
  31720. name: "Back",
  31721. image: {
  31722. source: "./media/characters/taivas-ensim/back.svg",
  31723. extra: 1355/1247,
  31724. bottom: 11/1366
  31725. }
  31726. },
  31727. frontNsfw: {
  31728. height: math.unit(3 + 10/12, "feet"),
  31729. weight: math.unit(90, "lb"),
  31730. name: "Front (NSFW)",
  31731. image: {
  31732. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31733. extra: 1327/1216,
  31734. bottom: 96/1423
  31735. }
  31736. },
  31737. backNsfw: {
  31738. height: math.unit(3 + 10/12, "feet"),
  31739. weight: math.unit(90, "lb"),
  31740. name: "Back (NSFW)",
  31741. image: {
  31742. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31743. extra: 1355/1247,
  31744. bottom: 11/1366
  31745. }
  31746. },
  31747. },
  31748. [
  31749. {
  31750. name: "Normal",
  31751. height: math.unit(3 + 10/12, "feet"),
  31752. default: true
  31753. },
  31754. ]
  31755. ))
  31756. characterMakers.push(() => makeCharacter(
  31757. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31758. {
  31759. front: {
  31760. height: math.unit(9 + 6/12, "feet"),
  31761. weight: math.unit(940, "lb"),
  31762. name: "Front",
  31763. image: {
  31764. source: "./media/characters/byliss/front.svg",
  31765. extra: 1327/1290,
  31766. bottom: 82/1409
  31767. }
  31768. },
  31769. back: {
  31770. height: math.unit(9 + 6/12, "feet"),
  31771. weight: math.unit(940, "lb"),
  31772. name: "Back",
  31773. image: {
  31774. source: "./media/characters/byliss/back.svg",
  31775. extra: 1376/1349,
  31776. bottom: 9/1385
  31777. }
  31778. },
  31779. frontNsfw: {
  31780. height: math.unit(9 + 6/12, "feet"),
  31781. weight: math.unit(940, "lb"),
  31782. name: "Front (NSFW)",
  31783. image: {
  31784. source: "./media/characters/byliss/front-nsfw.svg",
  31785. extra: 1327/1290,
  31786. bottom: 82/1409
  31787. }
  31788. },
  31789. backNsfw: {
  31790. height: math.unit(9 + 6/12, "feet"),
  31791. weight: math.unit(940, "lb"),
  31792. name: "Back (NSFW)",
  31793. image: {
  31794. source: "./media/characters/byliss/back-nsfw.svg",
  31795. extra: 1376/1349,
  31796. bottom: 9/1385
  31797. }
  31798. },
  31799. },
  31800. [
  31801. {
  31802. name: "Normal",
  31803. height: math.unit(9 + 6/12, "feet"),
  31804. default: true
  31805. },
  31806. ]
  31807. ))
  31808. characterMakers.push(() => makeCharacter(
  31809. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31810. {
  31811. front: {
  31812. height: math.unit(5 + 2/12, "feet"),
  31813. weight: math.unit(200, "lb"),
  31814. name: "Front",
  31815. image: {
  31816. source: "./media/characters/noraly/front.svg",
  31817. extra: 4985/4773,
  31818. bottom: 150/5135
  31819. }
  31820. },
  31821. full: {
  31822. height: math.unit(5 + 2/12, "feet"),
  31823. weight: math.unit(164, "lb"),
  31824. name: "Full",
  31825. image: {
  31826. source: "./media/characters/noraly/full.svg",
  31827. extra: 1114/1059,
  31828. bottom: 35/1149
  31829. }
  31830. },
  31831. fuller: {
  31832. height: math.unit(5 + 2/12, "feet"),
  31833. weight: math.unit(230, "lb"),
  31834. name: "Fuller",
  31835. image: {
  31836. source: "./media/characters/noraly/fuller.svg",
  31837. extra: 1114/1059,
  31838. bottom: 35/1149
  31839. }
  31840. },
  31841. fullest: {
  31842. height: math.unit(5 + 2/12, "feet"),
  31843. weight: math.unit(300, "lb"),
  31844. name: "Fullest",
  31845. image: {
  31846. source: "./media/characters/noraly/fullest.svg",
  31847. extra: 1114/1059,
  31848. bottom: 35/1149
  31849. }
  31850. },
  31851. },
  31852. [
  31853. {
  31854. name: "Normal",
  31855. height: math.unit(5 + 2/12, "feet"),
  31856. default: true
  31857. },
  31858. ]
  31859. ))
  31860. characterMakers.push(() => makeCharacter(
  31861. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31862. {
  31863. front: {
  31864. height: math.unit(5 + 2/12, "feet"),
  31865. weight: math.unit(210, "lb"),
  31866. name: "Front",
  31867. image: {
  31868. source: "./media/characters/pera/front.svg",
  31869. extra: 1560/1531,
  31870. bottom: 165/1725
  31871. }
  31872. },
  31873. back: {
  31874. height: math.unit(5 + 2/12, "feet"),
  31875. weight: math.unit(210, "lb"),
  31876. name: "Back",
  31877. image: {
  31878. source: "./media/characters/pera/back.svg",
  31879. extra: 1523/1493,
  31880. bottom: 152/1675
  31881. }
  31882. },
  31883. dick: {
  31884. height: math.unit(2.4, "feet"),
  31885. name: "Dick",
  31886. image: {
  31887. source: "./media/characters/pera/dick.svg"
  31888. }
  31889. },
  31890. },
  31891. [
  31892. {
  31893. name: "Normal",
  31894. height: math.unit(5 + 2/12, "feet"),
  31895. default: true
  31896. },
  31897. ]
  31898. ))
  31899. characterMakers.push(() => makeCharacter(
  31900. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31901. {
  31902. front: {
  31903. height: math.unit(12, "feet"),
  31904. weight: math.unit(3200, "lb"),
  31905. name: "Front",
  31906. image: {
  31907. source: "./media/characters/julian/front.svg",
  31908. extra: 2962/2701,
  31909. bottom: 184/3146
  31910. }
  31911. },
  31912. maw: {
  31913. height: math.unit(5.35, "feet"),
  31914. name: "Maw",
  31915. image: {
  31916. source: "./media/characters/julian/maw.svg"
  31917. }
  31918. },
  31919. paw: {
  31920. height: math.unit(3.07, "feet"),
  31921. name: "Paw",
  31922. image: {
  31923. source: "./media/characters/julian/paw.svg"
  31924. }
  31925. },
  31926. },
  31927. [
  31928. {
  31929. name: "Default",
  31930. height: math.unit(12, "feet"),
  31931. default: true
  31932. },
  31933. {
  31934. name: "Big",
  31935. height: math.unit(50, "feet")
  31936. },
  31937. {
  31938. name: "Really Big",
  31939. height: math.unit(1, "mile")
  31940. },
  31941. {
  31942. name: "Extremely Big",
  31943. height: math.unit(100, "miles")
  31944. },
  31945. {
  31946. name: "Planet Hugger",
  31947. height: math.unit(200, "megameters")
  31948. },
  31949. {
  31950. name: "Unreasonably Big",
  31951. height: math.unit(1e300, "meters")
  31952. },
  31953. ]
  31954. ))
  31955. characterMakers.push(() => makeCharacter(
  31956. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31957. {
  31958. solgooleo: {
  31959. height: math.unit(4, "meters"),
  31960. weight: math.unit(6000*1.5, "kg"),
  31961. volume: math.unit(6000, "liters"),
  31962. name: "Solgooleo",
  31963. image: {
  31964. source: "./media/characters/pi/solgooleo.svg",
  31965. extra: 388/331,
  31966. bottom: 29/417
  31967. }
  31968. },
  31969. },
  31970. [
  31971. {
  31972. name: "Normal",
  31973. height: math.unit(4, "meters"),
  31974. default: true
  31975. },
  31976. ]
  31977. ))
  31978. characterMakers.push(() => makeCharacter(
  31979. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31980. {
  31981. front: {
  31982. height: math.unit(8 + 2/12, "feet"),
  31983. weight: math.unit(4, "tons"),
  31984. name: "Front",
  31985. image: {
  31986. source: "./media/characters/shaun/front.svg",
  31987. extra: 1550/1505,
  31988. bottom: 353/1903
  31989. }
  31990. },
  31991. },
  31992. [
  31993. {
  31994. name: "Lorg",
  31995. height: math.unit(8 + 2/12, "feet"),
  31996. default: true
  31997. },
  31998. ]
  31999. ))
  32000. characterMakers.push(() => makeCharacter(
  32001. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  32002. {
  32003. front: {
  32004. height: math.unit(7, "feet"),
  32005. name: "Front",
  32006. image: {
  32007. source: "./media/characters/sini/front.svg",
  32008. extra: 726/678,
  32009. bottom: 35/761
  32010. }
  32011. },
  32012. back: {
  32013. height: math.unit(7, "feet"),
  32014. name: "Back",
  32015. image: {
  32016. source: "./media/characters/sini/back.svg",
  32017. extra: 743/701,
  32018. bottom: 12/755
  32019. }
  32020. },
  32021. mawAnthro: {
  32022. height: math.unit(2.14, "feet"),
  32023. name: "Maw (Anthro)",
  32024. image: {
  32025. source: "./media/characters/sini/maw-anthro.svg"
  32026. }
  32027. },
  32028. dick: {
  32029. height: math.unit(1.45, "feet"),
  32030. name: "Dick (Anthro)",
  32031. image: {
  32032. source: "./media/characters/sini/dick-anthro.svg"
  32033. }
  32034. },
  32035. feral: {
  32036. height: math.unit(13, "feet"),
  32037. name: "Feral",
  32038. image: {
  32039. source: "./media/characters/sini/feral.svg",
  32040. extra: 814/605,
  32041. bottom: 11/825
  32042. }
  32043. },
  32044. mawFeral: {
  32045. height: math.unit(4.6, "feet"),
  32046. name: "Maw-feral",
  32047. image: {
  32048. source: "./media/characters/sini/maw-feral.svg"
  32049. }
  32050. },
  32051. footFeral: {
  32052. height: math.unit(4.2, "feet"),
  32053. name: "Foot-feral",
  32054. image: {
  32055. source: "./media/characters/sini/foot-feral.svg"
  32056. }
  32057. },
  32058. },
  32059. [
  32060. {
  32061. name: "Normal",
  32062. height: math.unit(7, "feet"),
  32063. default: true
  32064. },
  32065. ]
  32066. ))
  32067. characterMakers.push(() => makeCharacter(
  32068. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32069. {
  32070. side: {
  32071. height: math.unit(13, "meters"),
  32072. weight: math.unit(9072, "kg"),
  32073. name: "Side",
  32074. image: {
  32075. source: "./media/characters/raylldo/side.svg",
  32076. extra: 403/344,
  32077. bottom: 42/445
  32078. }
  32079. },
  32080. leaping: {
  32081. height: math.unit(12.3, "meters"),
  32082. weight: math.unit(9072, "kg"),
  32083. name: "Leaping",
  32084. image: {
  32085. source: "./media/characters/raylldo/leaping.svg",
  32086. extra: 470/249,
  32087. bottom: 13/483
  32088. }
  32089. },
  32090. flying: {
  32091. height: math.unit(18, "meters"),
  32092. weight: math.unit(9072, "kg"),
  32093. name: "Flying",
  32094. image: {
  32095. source: "./media/characters/raylldo/flying.svg"
  32096. }
  32097. },
  32098. head: {
  32099. height: math.unit(5.85, "meters"),
  32100. name: "Head",
  32101. image: {
  32102. source: "./media/characters/raylldo/head.svg"
  32103. }
  32104. },
  32105. maw: {
  32106. height: math.unit(5.32, "meters"),
  32107. name: "Maw",
  32108. image: {
  32109. source: "./media/characters/raylldo/maw.svg"
  32110. }
  32111. },
  32112. eye: {
  32113. height: math.unit(0.54, "meters"),
  32114. name: "Eye",
  32115. image: {
  32116. source: "./media/characters/raylldo/eye.svg"
  32117. }
  32118. },
  32119. },
  32120. [
  32121. {
  32122. name: "Normal",
  32123. height: math.unit(13, "meters"),
  32124. default: true
  32125. },
  32126. ]
  32127. ))
  32128. characterMakers.push(() => makeCharacter(
  32129. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32130. {
  32131. anthroFront: {
  32132. height: math.unit(9, "feet"),
  32133. weight: math.unit(600, "lb"),
  32134. name: "Anthro (Front)",
  32135. image: {
  32136. source: "./media/characters/glint/anthro-front.svg",
  32137. extra: 1097/1018,
  32138. bottom: 28/1125
  32139. }
  32140. },
  32141. anthroBack: {
  32142. height: math.unit(9, "feet"),
  32143. weight: math.unit(600, "lb"),
  32144. name: "Anthro (Back)",
  32145. image: {
  32146. source: "./media/characters/glint/anthro-back.svg",
  32147. extra: 1154/997,
  32148. bottom: 36/1190
  32149. }
  32150. },
  32151. feral: {
  32152. height: math.unit(11, "feet"),
  32153. weight: math.unit(50000, "lb"),
  32154. name: "Feral",
  32155. image: {
  32156. source: "./media/characters/glint/feral.svg",
  32157. extra: 3035/1585,
  32158. bottom: 1169/4204
  32159. }
  32160. },
  32161. dickAnthro: {
  32162. height: math.unit(0.7, "meters"),
  32163. name: "Dick (Anthro)",
  32164. image: {
  32165. source: "./media/characters/glint/dick-anthro.svg"
  32166. }
  32167. },
  32168. dickFeral: {
  32169. height: math.unit(2.65, "meters"),
  32170. name: "Dick (Feral)",
  32171. image: {
  32172. source: "./media/characters/glint/dick-feral.svg"
  32173. }
  32174. },
  32175. slitHidden: {
  32176. height: math.unit(5.85, "meters"),
  32177. name: "Slit (Hidden)",
  32178. image: {
  32179. source: "./media/characters/glint/slit-hidden.svg"
  32180. }
  32181. },
  32182. slitErect: {
  32183. height: math.unit(5.85, "meters"),
  32184. name: "Slit (Erect)",
  32185. image: {
  32186. source: "./media/characters/glint/slit-erect.svg"
  32187. }
  32188. },
  32189. mawAnthro: {
  32190. height: math.unit(0.63, "meters"),
  32191. name: "Maw (Anthro)",
  32192. image: {
  32193. source: "./media/characters/glint/maw.svg"
  32194. }
  32195. },
  32196. mawFeral: {
  32197. height: math.unit(2.89, "meters"),
  32198. name: "Maw (Feral)",
  32199. image: {
  32200. source: "./media/characters/glint/maw.svg"
  32201. }
  32202. },
  32203. },
  32204. [
  32205. {
  32206. name: "Normal",
  32207. height: math.unit(9, "feet"),
  32208. default: true
  32209. },
  32210. ]
  32211. ))
  32212. characterMakers.push(() => makeCharacter(
  32213. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32214. {
  32215. side: {
  32216. height: math.unit(15, "feet"),
  32217. weight: math.unit(5000, "kg"),
  32218. name: "Side",
  32219. image: {
  32220. source: "./media/characters/kairne/side.svg",
  32221. extra: 979/811,
  32222. bottom: 13/992
  32223. }
  32224. },
  32225. front: {
  32226. height: math.unit(15, "feet"),
  32227. weight: math.unit(5000, "kg"),
  32228. name: "Front",
  32229. image: {
  32230. source: "./media/characters/kairne/front.svg",
  32231. extra: 908/814,
  32232. bottom: 26/934
  32233. }
  32234. },
  32235. sideNsfw: {
  32236. height: math.unit(15, "feet"),
  32237. weight: math.unit(5000, "kg"),
  32238. name: "Side (NSFW)",
  32239. image: {
  32240. source: "./media/characters/kairne/side-nsfw.svg",
  32241. extra: 979/811,
  32242. bottom: 13/992
  32243. }
  32244. },
  32245. frontNsfw: {
  32246. height: math.unit(15, "feet"),
  32247. weight: math.unit(5000, "kg"),
  32248. name: "Front (NSFW)",
  32249. image: {
  32250. source: "./media/characters/kairne/front-nsfw.svg",
  32251. extra: 908/814,
  32252. bottom: 26/934
  32253. }
  32254. },
  32255. dickCaged: {
  32256. height: math.unit(0.65, "meters"),
  32257. name: "Dick-caged",
  32258. image: {
  32259. source: "./media/characters/kairne/dick-caged.svg"
  32260. }
  32261. },
  32262. dick: {
  32263. height: math.unit(0.79, "meters"),
  32264. name: "Dick",
  32265. image: {
  32266. source: "./media/characters/kairne/dick.svg"
  32267. }
  32268. },
  32269. genitals: {
  32270. height: math.unit(1.29, "meters"),
  32271. name: "Genitals",
  32272. image: {
  32273. source: "./media/characters/kairne/genitals.svg"
  32274. }
  32275. },
  32276. maw: {
  32277. height: math.unit(1.73, "meters"),
  32278. name: "Maw",
  32279. image: {
  32280. source: "./media/characters/kairne/maw.svg"
  32281. }
  32282. },
  32283. },
  32284. [
  32285. {
  32286. name: "Normal",
  32287. height: math.unit(15, "feet"),
  32288. default: true
  32289. },
  32290. ]
  32291. ))
  32292. characterMakers.push(() => makeCharacter(
  32293. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32294. {
  32295. front: {
  32296. height: math.unit(5 + 8/12, "feet"),
  32297. weight: math.unit(139, "lb"),
  32298. name: "Front",
  32299. image: {
  32300. source: "./media/characters/biscuit-jackal/front.svg",
  32301. extra: 2106/1961,
  32302. bottom: 58/2164
  32303. }
  32304. },
  32305. back: {
  32306. height: math.unit(5 + 8/12, "feet"),
  32307. weight: math.unit(139, "lb"),
  32308. name: "Back",
  32309. image: {
  32310. source: "./media/characters/biscuit-jackal/back.svg",
  32311. extra: 2132/1976,
  32312. bottom: 57/2189
  32313. }
  32314. },
  32315. werejackal: {
  32316. height: math.unit(6 + 3/12, "feet"),
  32317. weight: math.unit(188, "lb"),
  32318. name: "Werejackal",
  32319. image: {
  32320. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32321. extra: 2373/2178,
  32322. bottom: 53/2426
  32323. }
  32324. },
  32325. },
  32326. [
  32327. {
  32328. name: "Normal",
  32329. height: math.unit(5 + 8/12, "feet"),
  32330. default: true
  32331. },
  32332. ]
  32333. ))
  32334. characterMakers.push(() => makeCharacter(
  32335. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32336. {
  32337. front: {
  32338. height: math.unit(140, "cm"),
  32339. weight: math.unit(45, "kg"),
  32340. name: "Front",
  32341. image: {
  32342. source: "./media/characters/tayra-white/front.svg",
  32343. extra: 2229/2192,
  32344. bottom: 75/2304
  32345. }
  32346. },
  32347. },
  32348. [
  32349. {
  32350. name: "Normal",
  32351. height: math.unit(140, "cm"),
  32352. default: true
  32353. },
  32354. ]
  32355. ))
  32356. characterMakers.push(() => makeCharacter(
  32357. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32358. {
  32359. front: {
  32360. height: math.unit(4 + 5/12, "feet"),
  32361. name: "Front",
  32362. image: {
  32363. source: "./media/characters/scoop/front.svg",
  32364. extra: 1257/1136,
  32365. bottom: 69/1326
  32366. }
  32367. },
  32368. back: {
  32369. height: math.unit(4 + 5/12, "feet"),
  32370. name: "Back",
  32371. image: {
  32372. source: "./media/characters/scoop/back.svg",
  32373. extra: 1321/1152,
  32374. bottom: 32/1353
  32375. }
  32376. },
  32377. maw: {
  32378. height: math.unit(0.68, "feet"),
  32379. name: "Maw",
  32380. image: {
  32381. source: "./media/characters/scoop/maw.svg"
  32382. }
  32383. },
  32384. },
  32385. [
  32386. {
  32387. name: "Really Small",
  32388. height: math.unit(1, "mm")
  32389. },
  32390. {
  32391. name: "Micro",
  32392. height: math.unit(1, "inch")
  32393. },
  32394. {
  32395. name: "Normal",
  32396. height: math.unit(4 + 5/12, "feet"),
  32397. default: true
  32398. },
  32399. {
  32400. name: "Macro",
  32401. height: math.unit(200, "feet")
  32402. },
  32403. {
  32404. name: "Megamacro",
  32405. height: math.unit(3240, "feet")
  32406. },
  32407. {
  32408. name: "Teramacro",
  32409. height: math.unit(2500, "miles")
  32410. },
  32411. ]
  32412. ))
  32413. characterMakers.push(() => makeCharacter(
  32414. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32415. {
  32416. front: {
  32417. height: math.unit(15 + 7/12, "feet"),
  32418. name: "Front",
  32419. image: {
  32420. source: "./media/characters/saphinara/front.svg",
  32421. extra: 604/546,
  32422. bottom: 19/623
  32423. }
  32424. },
  32425. side: {
  32426. height: math.unit(15 + 7/12, "feet"),
  32427. name: "Side",
  32428. image: {
  32429. source: "./media/characters/saphinara/side.svg",
  32430. extra: 605/547,
  32431. bottom: 6/611
  32432. }
  32433. },
  32434. back: {
  32435. height: math.unit(15 + 7/12, "feet"),
  32436. name: "Back",
  32437. image: {
  32438. source: "./media/characters/saphinara/back.svg",
  32439. extra: 591/531,
  32440. bottom: 13/604
  32441. }
  32442. },
  32443. frontTail: {
  32444. height: math.unit(15 + 7/12, "feet"),
  32445. name: "Front (Full Tail)",
  32446. image: {
  32447. source: "./media/characters/saphinara/front-tail.svg",
  32448. extra: 748/547,
  32449. bottom: 66/814
  32450. }
  32451. },
  32452. },
  32453. [
  32454. {
  32455. name: "Normal",
  32456. height: math.unit(15 + 7/12, "feet"),
  32457. default: true
  32458. },
  32459. {
  32460. name: "Angry",
  32461. height: math.unit(30 + 6/12, "feet")
  32462. },
  32463. {
  32464. name: "Enraged",
  32465. height: math.unit(102 + 1/12, "feet")
  32466. },
  32467. ]
  32468. ))
  32469. characterMakers.push(() => makeCharacter(
  32470. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32471. {
  32472. front: {
  32473. height: math.unit(6 + 8/12, "feet"),
  32474. weight: math.unit(300, "lb"),
  32475. name: "Front",
  32476. image: {
  32477. source: "./media/characters/jrain/front.svg",
  32478. extra: 3039/2865,
  32479. bottom: 399/3438
  32480. }
  32481. },
  32482. back: {
  32483. height: math.unit(6 + 8/12, "feet"),
  32484. weight: math.unit(300, "lb"),
  32485. name: "Back",
  32486. image: {
  32487. source: "./media/characters/jrain/back.svg",
  32488. extra: 3089/2938,
  32489. bottom: 172/3261
  32490. }
  32491. },
  32492. head: {
  32493. height: math.unit(2.14, "feet"),
  32494. name: "Head",
  32495. image: {
  32496. source: "./media/characters/jrain/head.svg"
  32497. }
  32498. },
  32499. maw: {
  32500. height: math.unit(1.77, "feet"),
  32501. name: "Maw",
  32502. image: {
  32503. source: "./media/characters/jrain/maw.svg"
  32504. }
  32505. },
  32506. leftHand: {
  32507. height: math.unit(1.1, "feet"),
  32508. name: "Left Hand",
  32509. image: {
  32510. source: "./media/characters/jrain/left-hand.svg"
  32511. }
  32512. },
  32513. rightHand: {
  32514. height: math.unit(1.1, "feet"),
  32515. name: "Right Hand",
  32516. image: {
  32517. source: "./media/characters/jrain/right-hand.svg"
  32518. }
  32519. },
  32520. eye: {
  32521. height: math.unit(0.35, "feet"),
  32522. name: "Eye",
  32523. image: {
  32524. source: "./media/characters/jrain/eye.svg"
  32525. }
  32526. },
  32527. },
  32528. [
  32529. {
  32530. name: "Normal",
  32531. height: math.unit(6 + 8/12, "feet"),
  32532. default: true
  32533. },
  32534. {
  32535. name: "Casually Large",
  32536. height: math.unit(25, "feet")
  32537. },
  32538. {
  32539. name: "Giant",
  32540. height: math.unit(100, "feet")
  32541. },
  32542. {
  32543. name: "Kaiju",
  32544. height: math.unit(300, "feet")
  32545. },
  32546. ]
  32547. ))
  32548. characterMakers.push(() => makeCharacter(
  32549. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32550. {
  32551. dragon: {
  32552. height: math.unit(5, "meters"),
  32553. name: "Dragon",
  32554. image: {
  32555. source: "./media/characters/sabrina/dragon.svg",
  32556. extra: 3670 / 2365,
  32557. bottom: 333 / 4003
  32558. }
  32559. },
  32560. gryphon: {
  32561. height: math.unit(3, "meters"),
  32562. name: "Gryphon",
  32563. image: {
  32564. source: "./media/characters/sabrina/gryphon.svg",
  32565. extra: 1576 / 945,
  32566. bottom: 71 / 1647
  32567. }
  32568. },
  32569. snake: {
  32570. height: math.unit(12, "meters"),
  32571. name: "Snake",
  32572. image: {
  32573. source: "./media/characters/sabrina/snake.svg",
  32574. extra: 1758 / 1320,
  32575. bottom: 186 / 1944
  32576. }
  32577. },
  32578. collar: {
  32579. height: math.unit(1.86, "meters"),
  32580. name: "Collar",
  32581. image: {
  32582. source: "./media/characters/sabrina/collar.svg"
  32583. }
  32584. },
  32585. eye: {
  32586. height: math.unit(0.53, "meters"),
  32587. name: "Eye",
  32588. image: {
  32589. source: "./media/characters/sabrina/eye.svg"
  32590. }
  32591. },
  32592. foot: {
  32593. height: math.unit(1.86, "meters"),
  32594. name: "Foot",
  32595. image: {
  32596. source: "./media/characters/sabrina/foot.svg"
  32597. }
  32598. },
  32599. hand: {
  32600. height: math.unit(1.32, "meters"),
  32601. name: "Hand",
  32602. image: {
  32603. source: "./media/characters/sabrina/hand.svg"
  32604. }
  32605. },
  32606. head: {
  32607. height: math.unit(2.44, "meters"),
  32608. name: "Head",
  32609. image: {
  32610. source: "./media/characters/sabrina/head.svg"
  32611. }
  32612. },
  32613. headAngry: {
  32614. height: math.unit(2.44, "meters"),
  32615. name: "Head (Angry))",
  32616. image: {
  32617. source: "./media/characters/sabrina/head-angry.svg"
  32618. }
  32619. },
  32620. maw: {
  32621. height: math.unit(1.65, "meters"),
  32622. name: "Maw",
  32623. image: {
  32624. source: "./media/characters/sabrina/maw.svg"
  32625. }
  32626. },
  32627. spikes: {
  32628. height: math.unit(1.69, "meters"),
  32629. name: "Spikes",
  32630. image: {
  32631. source: "./media/characters/sabrina/spikes.svg"
  32632. }
  32633. },
  32634. stomach: {
  32635. height: math.unit(1.15, "meters"),
  32636. name: "Stomach",
  32637. image: {
  32638. source: "./media/characters/sabrina/stomach.svg"
  32639. }
  32640. },
  32641. tongue: {
  32642. height: math.unit(1.27, "meters"),
  32643. name: "Tongue",
  32644. image: {
  32645. source: "./media/characters/sabrina/tongue.svg"
  32646. }
  32647. },
  32648. wingDorsal: {
  32649. height: math.unit(4.85, "meters"),
  32650. name: "Wing (Dorsal)",
  32651. image: {
  32652. source: "./media/characters/sabrina/wing-dorsal.svg"
  32653. }
  32654. },
  32655. wingVentral: {
  32656. height: math.unit(4.85, "meters"),
  32657. name: "Wing (Ventral)",
  32658. image: {
  32659. source: "./media/characters/sabrina/wing-ventral.svg"
  32660. }
  32661. },
  32662. },
  32663. [
  32664. {
  32665. name: "Normal",
  32666. height: math.unit(5, "meters"),
  32667. default: true
  32668. },
  32669. ]
  32670. ))
  32671. characterMakers.push(() => makeCharacter(
  32672. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32673. {
  32674. frontMaid: {
  32675. height: math.unit(5 + 5/12, "feet"),
  32676. weight: math.unit(130, "lb"),
  32677. name: "Front (Maid)",
  32678. image: {
  32679. source: "./media/characters/midnight-tales/front-maid.svg",
  32680. extra: 489/454,
  32681. bottom: 61/550
  32682. }
  32683. },
  32684. frontFormal: {
  32685. height: math.unit(5 + 5/12, "feet"),
  32686. weight: math.unit(130, "lb"),
  32687. name: "Front (Formal)",
  32688. image: {
  32689. source: "./media/characters/midnight-tales/front-formal.svg",
  32690. extra: 489/454,
  32691. bottom: 61/550
  32692. }
  32693. },
  32694. back: {
  32695. height: math.unit(5 + 5/12, "feet"),
  32696. weight: math.unit(130, "lb"),
  32697. name: "Back",
  32698. image: {
  32699. source: "./media/characters/midnight-tales/back.svg",
  32700. extra: 498/456,
  32701. bottom: 33/531
  32702. }
  32703. },
  32704. frontBeast: {
  32705. height: math.unit(40, "feet"),
  32706. weight: math.unit(64000, "lb"),
  32707. name: "Front (Beast)",
  32708. image: {
  32709. source: "./media/characters/midnight-tales/front-beast.svg",
  32710. extra: 927/860,
  32711. bottom: 53/980
  32712. }
  32713. },
  32714. backBeast: {
  32715. height: math.unit(40, "feet"),
  32716. weight: math.unit(64000, "lb"),
  32717. name: "Back (Beast)",
  32718. image: {
  32719. source: "./media/characters/midnight-tales/back-beast.svg",
  32720. extra: 929/855,
  32721. bottom: 16/945
  32722. }
  32723. },
  32724. footBeast: {
  32725. height: math.unit(6.7, "feet"),
  32726. name: "Foot (Beast)",
  32727. image: {
  32728. source: "./media/characters/midnight-tales/foot-beast.svg"
  32729. }
  32730. },
  32731. headBeast: {
  32732. height: math.unit(8, "feet"),
  32733. name: "Head (Beast)",
  32734. image: {
  32735. source: "./media/characters/midnight-tales/head-beast.svg"
  32736. }
  32737. },
  32738. },
  32739. [
  32740. {
  32741. name: "Normal",
  32742. height: math.unit(5 + 5 / 12, "feet"),
  32743. default: true
  32744. },
  32745. {
  32746. name: "Macro",
  32747. height: math.unit(25, "feet")
  32748. },
  32749. ]
  32750. ))
  32751. characterMakers.push(() => makeCharacter(
  32752. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32753. {
  32754. front: {
  32755. height: math.unit(5 + 10/12, "feet"),
  32756. name: "Front",
  32757. image: {
  32758. source: "./media/characters/argon/front.svg",
  32759. extra: 2009/1935,
  32760. bottom: 118/2127
  32761. }
  32762. },
  32763. back: {
  32764. height: math.unit(5 + 10/12, "feet"),
  32765. name: "Back",
  32766. image: {
  32767. source: "./media/characters/argon/back.svg",
  32768. extra: 2047/1992,
  32769. bottom: 20/2067
  32770. }
  32771. },
  32772. frontDressed: {
  32773. height: math.unit(5 + 10/12, "feet"),
  32774. name: "Front (Dressed)",
  32775. image: {
  32776. source: "./media/characters/argon/front-dressed.svg",
  32777. extra: 2009/1935,
  32778. bottom: 118/2127
  32779. }
  32780. },
  32781. },
  32782. [
  32783. {
  32784. name: "Normal",
  32785. height: math.unit(5 + 10/12, "feet"),
  32786. default: true
  32787. },
  32788. ]
  32789. ))
  32790. characterMakers.push(() => makeCharacter(
  32791. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32792. {
  32793. front: {
  32794. height: math.unit(8 + 6/12, "feet"),
  32795. weight: math.unit(1150, "lb"),
  32796. name: "Front",
  32797. image: {
  32798. source: "./media/characters/kichi/front.svg",
  32799. extra: 1267/1164,
  32800. bottom: 61/1328
  32801. }
  32802. },
  32803. back: {
  32804. height: math.unit(8 + 6/12, "feet"),
  32805. weight: math.unit(1150, "lb"),
  32806. name: "Back",
  32807. image: {
  32808. source: "./media/characters/kichi/back.svg",
  32809. extra: 1273/1166,
  32810. bottom: 33/1306
  32811. }
  32812. },
  32813. },
  32814. [
  32815. {
  32816. name: "Normal",
  32817. height: math.unit(8 + 6/12, "feet"),
  32818. default: true
  32819. },
  32820. ]
  32821. ))
  32822. characterMakers.push(() => makeCharacter(
  32823. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32824. {
  32825. front: {
  32826. height: math.unit(6, "feet"),
  32827. weight: math.unit(210, "lb"),
  32828. name: "Front",
  32829. image: {
  32830. source: "./media/characters/manetel-greyscale/front.svg",
  32831. extra: 350/312,
  32832. bottom: 8/358
  32833. }
  32834. },
  32835. },
  32836. [
  32837. {
  32838. name: "Micro",
  32839. height: math.unit(2, "inches")
  32840. },
  32841. {
  32842. name: "Normal",
  32843. height: math.unit(6, "feet"),
  32844. default: true
  32845. },
  32846. {
  32847. name: "Minimacro",
  32848. height: math.unit(17, "feet")
  32849. },
  32850. {
  32851. name: "Macro",
  32852. height: math.unit(117, "feet")
  32853. },
  32854. ]
  32855. ))
  32856. characterMakers.push(() => makeCharacter(
  32857. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32858. {
  32859. side: {
  32860. height: math.unit(5 + 1/12, "feet"),
  32861. weight: math.unit(418, "lb"),
  32862. name: "Side",
  32863. image: {
  32864. source: "./media/characters/softpurr/side.svg",
  32865. extra: 1993/1945,
  32866. bottom: 134/2127
  32867. }
  32868. },
  32869. front: {
  32870. height: math.unit(5 + 1/12, "feet"),
  32871. weight: math.unit(418, "lb"),
  32872. name: "Front",
  32873. image: {
  32874. source: "./media/characters/softpurr/front.svg",
  32875. extra: 1950/1856,
  32876. bottom: 174/2124
  32877. }
  32878. },
  32879. paw: {
  32880. height: math.unit(1, "feet"),
  32881. name: "Paw",
  32882. image: {
  32883. source: "./media/characters/softpurr/paw.svg"
  32884. }
  32885. },
  32886. },
  32887. [
  32888. {
  32889. name: "Normal",
  32890. height: math.unit(5 + 1/12, "feet"),
  32891. default: true
  32892. },
  32893. ]
  32894. ))
  32895. characterMakers.push(() => makeCharacter(
  32896. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32897. {
  32898. front: {
  32899. height: math.unit(260, "meters"),
  32900. name: "Front",
  32901. image: {
  32902. source: "./media/characters/anahita/front.svg",
  32903. extra: 665/635,
  32904. bottom: 89/754
  32905. }
  32906. },
  32907. },
  32908. [
  32909. {
  32910. name: "Macro",
  32911. height: math.unit(260, "meters"),
  32912. default: true
  32913. },
  32914. ]
  32915. ))
  32916. characterMakers.push(() => makeCharacter(
  32917. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32918. {
  32919. front: {
  32920. height: math.unit(4 + 10/12, "feet"),
  32921. weight: math.unit(160, "lb"),
  32922. name: "Front",
  32923. image: {
  32924. source: "./media/characters/chip-mouse/front.svg",
  32925. extra: 3528/3408,
  32926. bottom: 0/3528
  32927. }
  32928. },
  32929. frontNsfw: {
  32930. height: math.unit(4 + 10/12, "feet"),
  32931. weight: math.unit(160, "lb"),
  32932. name: "Front (NSFW)",
  32933. image: {
  32934. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32935. extra: 3528/3408,
  32936. bottom: 0/3528
  32937. }
  32938. },
  32939. },
  32940. [
  32941. {
  32942. name: "Normal",
  32943. height: math.unit(4 + 10/12, "feet"),
  32944. default: true
  32945. },
  32946. ]
  32947. ))
  32948. characterMakers.push(() => makeCharacter(
  32949. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32950. {
  32951. side: {
  32952. height: math.unit(10, "feet"),
  32953. weight: math.unit(14000, "lb"),
  32954. name: "Side",
  32955. image: {
  32956. source: "./media/characters/kremm/side.svg",
  32957. extra: 1390/1053,
  32958. bottom: 90/1480
  32959. }
  32960. },
  32961. gut: {
  32962. height: math.unit(5.8, "feet"),
  32963. name: "Gut",
  32964. image: {
  32965. source: "./media/characters/kremm/gut.svg"
  32966. }
  32967. },
  32968. ass: {
  32969. height: math.unit(6.1, "feet"),
  32970. name: "Ass",
  32971. image: {
  32972. source: "./media/characters/kremm/ass.svg"
  32973. }
  32974. },
  32975. jaws: {
  32976. height: math.unit(2.2, "feet"),
  32977. name: "Jaws",
  32978. image: {
  32979. source: "./media/characters/kremm/jaws.svg"
  32980. }
  32981. },
  32982. dick: {
  32983. height: math.unit(4.26, "feet"),
  32984. name: "Dick",
  32985. image: {
  32986. source: "./media/characters/kremm/dick.svg"
  32987. }
  32988. },
  32989. },
  32990. [
  32991. {
  32992. name: "Normal",
  32993. height: math.unit(10, "feet"),
  32994. default: true
  32995. },
  32996. ]
  32997. ))
  32998. characterMakers.push(() => makeCharacter(
  32999. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  33000. {
  33001. front: {
  33002. height: math.unit(30, "stories"),
  33003. name: "Front",
  33004. image: {
  33005. source: "./media/characters/kai/front.svg",
  33006. extra: 1892/1718,
  33007. bottom: 162/2054
  33008. }
  33009. },
  33010. },
  33011. [
  33012. {
  33013. name: "Macro",
  33014. height: math.unit(30, "stories"),
  33015. default: true
  33016. },
  33017. ]
  33018. ))
  33019. characterMakers.push(() => makeCharacter(
  33020. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33021. {
  33022. front: {
  33023. height: math.unit(6 + 4/12, "feet"),
  33024. weight: math.unit(145, "lb"),
  33025. name: "Front",
  33026. image: {
  33027. source: "./media/characters/sykes/front.svg",
  33028. extra: 1321 / 1187,
  33029. bottom: 66 / 1387
  33030. }
  33031. },
  33032. back: {
  33033. height: math.unit(6 + 4/12, "feet"),
  33034. weight: math.unit(145, "lb"),
  33035. name: "Back",
  33036. image: {
  33037. source: "./media/characters/sykes/back.svg",
  33038. extra: 1326/1181,
  33039. bottom: 31/1357
  33040. }
  33041. },
  33042. handBack: {
  33043. height: math.unit(0.9, "feet"),
  33044. name: "Hand (Back)",
  33045. image: {
  33046. source: "./media/characters/sykes/hand-back.svg"
  33047. }
  33048. },
  33049. handFront: {
  33050. height: math.unit(0.839, "feet"),
  33051. name: "Hand (Front)",
  33052. image: {
  33053. source: "./media/characters/sykes/hand-front.svg"
  33054. }
  33055. },
  33056. leftFoot: {
  33057. height: math.unit(1.2, "feet"),
  33058. name: "Foot (Left)",
  33059. image: {
  33060. source: "./media/characters/sykes/foot-left.svg"
  33061. }
  33062. },
  33063. rightFoot: {
  33064. height: math.unit(1.2, "feet"),
  33065. name: "Foot (Right)",
  33066. image: {
  33067. source: "./media/characters/sykes/foot-right.svg"
  33068. }
  33069. },
  33070. maw: {
  33071. height: math.unit(1.93, "feet"),
  33072. name: "Maw",
  33073. image: {
  33074. source: "./media/characters/sykes/maw.svg"
  33075. }
  33076. },
  33077. teeth: {
  33078. height: math.unit(0.51, "feet"),
  33079. name: "Teeth",
  33080. image: {
  33081. source: "./media/characters/sykes/teeth.svg"
  33082. }
  33083. },
  33084. tongue: {
  33085. height: math.unit(2.13, "feet"),
  33086. name: "Tongue",
  33087. image: {
  33088. source: "./media/characters/sykes/tongue.svg"
  33089. }
  33090. },
  33091. uvula: {
  33092. height: math.unit(0.16, "feet"),
  33093. name: "Uvula",
  33094. image: {
  33095. source: "./media/characters/sykes/uvula.svg"
  33096. }
  33097. },
  33098. collar: {
  33099. height: math.unit(0.287, "feet"),
  33100. name: "Collar",
  33101. image: {
  33102. source: "./media/characters/sykes/collar.svg"
  33103. }
  33104. },
  33105. },
  33106. [
  33107. {
  33108. name: "Shrunken",
  33109. height: math.unit(5, "inches")
  33110. },
  33111. {
  33112. name: "Normal",
  33113. height: math.unit(6 + 4 / 12, "feet"),
  33114. default: true
  33115. },
  33116. {
  33117. name: "Big",
  33118. height: math.unit(15, "feet")
  33119. },
  33120. ]
  33121. ))
  33122. characterMakers.push(() => makeCharacter(
  33123. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33124. {
  33125. front: {
  33126. height: math.unit(5 + 8/12, "feet"),
  33127. weight: math.unit(190, "lb"),
  33128. name: "Front",
  33129. image: {
  33130. source: "./media/characters/oven-otter/front.svg",
  33131. extra: 1809/1740,
  33132. bottom: 181/1990
  33133. }
  33134. },
  33135. back: {
  33136. height: math.unit(5 + 8/12, "feet"),
  33137. weight: math.unit(190, "lb"),
  33138. name: "Back",
  33139. image: {
  33140. source: "./media/characters/oven-otter/back.svg",
  33141. extra: 1709/1635,
  33142. bottom: 118/1827
  33143. }
  33144. },
  33145. hand: {
  33146. height: math.unit(1.07, "feet"),
  33147. name: "Hand",
  33148. image: {
  33149. source: "./media/characters/oven-otter/hand.svg"
  33150. }
  33151. },
  33152. beans: {
  33153. height: math.unit(1.74, "feet"),
  33154. name: "Beans",
  33155. image: {
  33156. source: "./media/characters/oven-otter/beans.svg"
  33157. }
  33158. },
  33159. },
  33160. [
  33161. {
  33162. name: "Micro",
  33163. height: math.unit(0.5, "inches")
  33164. },
  33165. {
  33166. name: "Normal",
  33167. height: math.unit(5 + 8/12, "feet"),
  33168. default: true
  33169. },
  33170. {
  33171. name: "Macro",
  33172. height: math.unit(250, "feet")
  33173. },
  33174. {
  33175. name: "Really High",
  33176. height: math.unit(420, "feet")
  33177. },
  33178. ]
  33179. ))
  33180. characterMakers.push(() => makeCharacter(
  33181. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33182. {
  33183. front: {
  33184. height: math.unit(5, "meters"),
  33185. weight: math.unit(292000000000000, "kg"),
  33186. name: "Front",
  33187. image: {
  33188. source: "./media/characters/devourer/front.svg",
  33189. extra: 1800/1733,
  33190. bottom: 211/2011
  33191. }
  33192. },
  33193. maw: {
  33194. height: math.unit(1.1, "meter"),
  33195. name: "Maw",
  33196. image: {
  33197. source: "./media/characters/devourer/maw.svg"
  33198. }
  33199. },
  33200. },
  33201. [
  33202. {
  33203. name: "Small",
  33204. height: math.unit(3, "meters")
  33205. },
  33206. {
  33207. name: "Large",
  33208. height: math.unit(5, "meters"),
  33209. default: true
  33210. },
  33211. ]
  33212. ))
  33213. characterMakers.push(() => makeCharacter(
  33214. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33215. {
  33216. front: {
  33217. height: math.unit(6, "feet"),
  33218. weight: math.unit(400, "lb"),
  33219. name: "Front",
  33220. image: {
  33221. source: "./media/characters/ellarby/front.svg",
  33222. extra: 1909/1763,
  33223. bottom: 80/1989
  33224. }
  33225. },
  33226. back: {
  33227. height: math.unit(6, "feet"),
  33228. weight: math.unit(400, "lb"),
  33229. name: "Back",
  33230. image: {
  33231. source: "./media/characters/ellarby/back.svg",
  33232. extra: 1914/1784,
  33233. bottom: 172/2086
  33234. }
  33235. },
  33236. },
  33237. [
  33238. {
  33239. name: "Mischief",
  33240. height: math.unit(18, "inches")
  33241. },
  33242. {
  33243. name: "Trouble",
  33244. height: math.unit(12, "feet")
  33245. },
  33246. {
  33247. name: "Havoc",
  33248. height: math.unit(200, "feet"),
  33249. default: true
  33250. },
  33251. {
  33252. name: "Pandemonium",
  33253. height: math.unit(1, "mile")
  33254. },
  33255. {
  33256. name: "Catastrophe",
  33257. height: math.unit(100, "miles")
  33258. },
  33259. ]
  33260. ))
  33261. characterMakers.push(() => makeCharacter(
  33262. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33263. {
  33264. front: {
  33265. height: math.unit(4.7, "meters"),
  33266. weight: math.unit(6500, "kg"),
  33267. name: "Front",
  33268. image: {
  33269. source: "./media/characters/vex/front.svg",
  33270. extra: 1288/1140,
  33271. bottom: 100/1388
  33272. }
  33273. },
  33274. },
  33275. [
  33276. {
  33277. name: "Normal",
  33278. height: math.unit(4.7, "meters"),
  33279. default: true
  33280. },
  33281. ]
  33282. ))
  33283. characterMakers.push(() => makeCharacter(
  33284. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33285. {
  33286. normal: {
  33287. height: math.unit(6, "feet"),
  33288. weight: math.unit(350, "lb"),
  33289. name: "Normal",
  33290. image: {
  33291. source: "./media/characters/teshy/normal.svg",
  33292. extra: 1795/1735,
  33293. bottom: 16/1811
  33294. }
  33295. },
  33296. monsterFront: {
  33297. height: math.unit(12, "feet"),
  33298. weight: math.unit(4700, "lb"),
  33299. name: "Monster (Front)",
  33300. image: {
  33301. source: "./media/characters/teshy/monster-front.svg",
  33302. extra: 2042/2034,
  33303. bottom: 128/2170
  33304. }
  33305. },
  33306. monsterSide: {
  33307. height: math.unit(12, "feet"),
  33308. weight: math.unit(4700, "lb"),
  33309. name: "Monster (Side)",
  33310. image: {
  33311. source: "./media/characters/teshy/monster-side.svg",
  33312. extra: 2067/2056,
  33313. bottom: 70/2137
  33314. }
  33315. },
  33316. monsterBack: {
  33317. height: math.unit(12, "feet"),
  33318. weight: math.unit(4700, "lb"),
  33319. name: "Monster (Back)",
  33320. image: {
  33321. source: "./media/characters/teshy/monster-back.svg",
  33322. extra: 1921/1914,
  33323. bottom: 171/2092
  33324. }
  33325. },
  33326. },
  33327. [
  33328. {
  33329. name: "Normal",
  33330. height: math.unit(6, "feet"),
  33331. default: true
  33332. },
  33333. ]
  33334. ))
  33335. characterMakers.push(() => makeCharacter(
  33336. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33337. {
  33338. front: {
  33339. height: math.unit(6, "feet"),
  33340. name: "Front",
  33341. image: {
  33342. source: "./media/characters/ramey/front.svg",
  33343. extra: 790/787,
  33344. bottom: 27/817
  33345. }
  33346. },
  33347. },
  33348. [
  33349. {
  33350. name: "Normal",
  33351. height: math.unit(6, "feet"),
  33352. default: true
  33353. },
  33354. ]
  33355. ))
  33356. characterMakers.push(() => makeCharacter(
  33357. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33358. {
  33359. front: {
  33360. height: math.unit(5 + 5/12, "feet"),
  33361. weight: math.unit(120, "lb"),
  33362. name: "Front",
  33363. image: {
  33364. source: "./media/characters/phirae/front.svg",
  33365. extra: 2491/2436,
  33366. bottom: 38/2529
  33367. }
  33368. },
  33369. },
  33370. [
  33371. {
  33372. name: "Normal",
  33373. height: math.unit(5 + 5/12, "feet"),
  33374. default: true
  33375. },
  33376. ]
  33377. ))
  33378. characterMakers.push(() => makeCharacter(
  33379. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33380. {
  33381. front: {
  33382. height: math.unit(6, "feet"),
  33383. weight: math.unit(150, "lb"),
  33384. name: "Front",
  33385. image: {
  33386. source: "./media/characters/stagglas/front.svg",
  33387. extra: 962/882,
  33388. bottom: 53/1015
  33389. }
  33390. },
  33391. },
  33392. [
  33393. {
  33394. name: "Normal",
  33395. height: math.unit(5 + 3/12, "feet"),
  33396. default: true
  33397. },
  33398. ]
  33399. ))
  33400. characterMakers.push(() => makeCharacter(
  33401. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33402. {
  33403. front: {
  33404. height: math.unit(5 + 4/12, "feet"),
  33405. weight: math.unit(145, "lb"),
  33406. name: "Front",
  33407. image: {
  33408. source: "./media/characters/starra/front.svg",
  33409. extra: 1790/1691,
  33410. bottom: 91/1881
  33411. }
  33412. },
  33413. },
  33414. [
  33415. {
  33416. name: "Normal",
  33417. height: math.unit(5 + 4/12, "feet"),
  33418. default: true
  33419. },
  33420. ]
  33421. ))
  33422. characterMakers.push(() => makeCharacter(
  33423. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33424. {
  33425. front: {
  33426. height: math.unit(2.2, "meters"),
  33427. name: "Front",
  33428. image: {
  33429. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33430. extra: 1194/1005,
  33431. bottom: 25/1219
  33432. }
  33433. },
  33434. },
  33435. [
  33436. {
  33437. name: "Normal",
  33438. height: math.unit(2.2, "meters"),
  33439. default: true
  33440. },
  33441. ]
  33442. ))
  33443. characterMakers.push(() => makeCharacter(
  33444. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33445. {
  33446. side: {
  33447. height: math.unit(8 + 2/12, "feet"),
  33448. weight: math.unit(1240, "lb"),
  33449. name: "Side",
  33450. image: {
  33451. source: "./media/characters/mika-valentine/side.svg",
  33452. extra: 2670/2501,
  33453. bottom: 250/2920
  33454. }
  33455. },
  33456. },
  33457. [
  33458. {
  33459. name: "Normal",
  33460. height: math.unit(8 + 2/12, "feet"),
  33461. default: true
  33462. },
  33463. ]
  33464. ))
  33465. characterMakers.push(() => makeCharacter(
  33466. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33467. {
  33468. front: {
  33469. height: math.unit(7 + 2/12, "feet"),
  33470. name: "Front",
  33471. image: {
  33472. source: "./media/characters/xoltol/front.svg",
  33473. extra: 2212/2124,
  33474. bottom: 84/2296
  33475. }
  33476. },
  33477. side: {
  33478. height: math.unit(7 + 2/12, "feet"),
  33479. name: "Side",
  33480. image: {
  33481. source: "./media/characters/xoltol/side.svg",
  33482. extra: 2273/2197,
  33483. bottom: 26/2299
  33484. }
  33485. },
  33486. hand: {
  33487. height: math.unit(2.5, "feet"),
  33488. name: "Hand",
  33489. image: {
  33490. source: "./media/characters/xoltol/hand.svg"
  33491. }
  33492. },
  33493. },
  33494. [
  33495. {
  33496. name: "Small-ish",
  33497. height: math.unit(5 + 11/12, "feet")
  33498. },
  33499. {
  33500. name: "Normal",
  33501. height: math.unit(7 + 2/12, "feet")
  33502. },
  33503. {
  33504. name: "\"Macro\"",
  33505. height: math.unit(14 + 9/12, "feet"),
  33506. default: true
  33507. },
  33508. {
  33509. name: "Alternate Height",
  33510. height: math.unit(20, "feet")
  33511. },
  33512. {
  33513. name: "Actually Macro",
  33514. height: math.unit(100, "feet")
  33515. },
  33516. ]
  33517. ))
  33518. characterMakers.push(() => makeCharacter(
  33519. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33520. {
  33521. front: {
  33522. height: math.unit(5 + 2/12, "feet"),
  33523. name: "Front",
  33524. image: {
  33525. source: "./media/characters/kotetsu-redwood/front.svg",
  33526. extra: 1053/942,
  33527. bottom: 60/1113
  33528. }
  33529. },
  33530. },
  33531. [
  33532. {
  33533. name: "Normal",
  33534. height: math.unit(5 + 2/12, "feet"),
  33535. default: true
  33536. },
  33537. ]
  33538. ))
  33539. characterMakers.push(() => makeCharacter(
  33540. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33541. {
  33542. front: {
  33543. height: math.unit(2.4, "meters"),
  33544. weight: math.unit(125, "kg"),
  33545. name: "Front",
  33546. image: {
  33547. source: "./media/characters/lilith/front.svg",
  33548. extra: 1590/1513,
  33549. bottom: 203/1793
  33550. }
  33551. },
  33552. },
  33553. [
  33554. {
  33555. name: "Humanoid",
  33556. height: math.unit(2.4, "meters")
  33557. },
  33558. {
  33559. name: "Normal",
  33560. height: math.unit(6, "meters"),
  33561. default: true
  33562. },
  33563. {
  33564. name: "Largest",
  33565. height: math.unit(55, "meters")
  33566. },
  33567. ]
  33568. ))
  33569. characterMakers.push(() => makeCharacter(
  33570. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33571. {
  33572. front: {
  33573. height: math.unit(8 + 4/12, "feet"),
  33574. weight: math.unit(535, "lb"),
  33575. name: "Front",
  33576. image: {
  33577. source: "./media/characters/beh'kah-bolger/front.svg",
  33578. extra: 1660/1603,
  33579. bottom: 37/1697
  33580. }
  33581. },
  33582. },
  33583. [
  33584. {
  33585. name: "Normal",
  33586. height: math.unit(8 + 4/12, "feet"),
  33587. default: true
  33588. },
  33589. {
  33590. name: "Kaiju",
  33591. height: math.unit(250, "feet")
  33592. },
  33593. {
  33594. name: "Still Growing",
  33595. height: math.unit(10, "miles")
  33596. },
  33597. {
  33598. name: "Continental",
  33599. height: math.unit(5000, "miles")
  33600. },
  33601. {
  33602. name: "Final Form",
  33603. height: math.unit(2500000, "miles")
  33604. },
  33605. ]
  33606. ))
  33607. characterMakers.push(() => makeCharacter(
  33608. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33609. {
  33610. front: {
  33611. height: math.unit(7 + 2/12, "feet"),
  33612. weight: math.unit(230, "kg"),
  33613. name: "Front",
  33614. image: {
  33615. source: "./media/characters/tatyana-milewska/front.svg",
  33616. extra: 1199/1150,
  33617. bottom: 86/1285
  33618. }
  33619. },
  33620. },
  33621. [
  33622. {
  33623. name: "Normal",
  33624. height: math.unit(7 + 2/12, "feet"),
  33625. default: true
  33626. },
  33627. {
  33628. name: "Big",
  33629. height: math.unit(12, "feet")
  33630. },
  33631. {
  33632. name: "Minimacro",
  33633. height: math.unit(20, "feet")
  33634. },
  33635. {
  33636. name: "Macro",
  33637. height: math.unit(120, "feet")
  33638. },
  33639. ]
  33640. ))
  33641. characterMakers.push(() => makeCharacter(
  33642. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33643. {
  33644. front: {
  33645. height: math.unit(7 + 8/12, "feet"),
  33646. weight: math.unit(152, "kg"),
  33647. name: "Front",
  33648. image: {
  33649. source: "./media/characters/helen-arri/front.svg",
  33650. extra: 440/423,
  33651. bottom: 14/454
  33652. }
  33653. },
  33654. back: {
  33655. height: math.unit(7 + 8/12, "feet"),
  33656. weight: math.unit(152, "kg"),
  33657. name: "Back",
  33658. image: {
  33659. source: "./media/characters/helen-arri/back.svg",
  33660. extra: 443/426,
  33661. bottom: 8/451
  33662. }
  33663. },
  33664. },
  33665. [
  33666. {
  33667. name: "Normal",
  33668. height: math.unit(7 + 8/12, "feet"),
  33669. default: true
  33670. },
  33671. {
  33672. name: "Big",
  33673. height: math.unit(14, "feet")
  33674. },
  33675. {
  33676. name: "Minimacro",
  33677. height: math.unit(24, "feet")
  33678. },
  33679. {
  33680. name: "Macro",
  33681. height: math.unit(140, "feet")
  33682. },
  33683. ]
  33684. ))
  33685. characterMakers.push(() => makeCharacter(
  33686. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33687. {
  33688. front: {
  33689. height: math.unit(6, "meters"),
  33690. name: "Front",
  33691. image: {
  33692. source: "./media/characters/ehanu-rehu/front.svg",
  33693. extra: 1800/1800,
  33694. bottom: 59/1859
  33695. }
  33696. },
  33697. },
  33698. [
  33699. {
  33700. name: "Normal",
  33701. height: math.unit(6, "meters"),
  33702. default: true
  33703. },
  33704. ]
  33705. ))
  33706. characterMakers.push(() => makeCharacter(
  33707. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33708. {
  33709. front: {
  33710. height: math.unit(7 + 3/12, "feet"),
  33711. name: "Front",
  33712. image: {
  33713. source: "./media/characters/renholder/front.svg",
  33714. extra: 3096/2960,
  33715. bottom: 250/3346
  33716. }
  33717. },
  33718. },
  33719. [
  33720. {
  33721. name: "Normal Bat",
  33722. height: math.unit(7 + 3/12, "feet"),
  33723. default: true
  33724. },
  33725. {
  33726. name: "Slightly Tall Bat",
  33727. height: math.unit(100, "feet")
  33728. },
  33729. {
  33730. name: "Big Bat",
  33731. height: math.unit(1000, "feet")
  33732. },
  33733. {
  33734. name: "City-Sized Bat",
  33735. height: math.unit(200000, "feet")
  33736. },
  33737. {
  33738. name: "Bigger Bat",
  33739. height: math.unit(10000, "miles")
  33740. },
  33741. {
  33742. name: "Solar Sized Bat",
  33743. height: math.unit(100, "AU")
  33744. },
  33745. {
  33746. name: "Galactic Bat",
  33747. height: math.unit(200000, "lightyears")
  33748. },
  33749. {
  33750. name: "Universally Known Bat",
  33751. height: math.unit(1, "universe")
  33752. },
  33753. ]
  33754. ))
  33755. characterMakers.push(() => makeCharacter(
  33756. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33757. {
  33758. front: {
  33759. height: math.unit(6 + 11/12, "feet"),
  33760. weight: math.unit(250, "lb"),
  33761. name: "Front",
  33762. image: {
  33763. source: "./media/characters/cookiecat/front.svg",
  33764. extra: 893/827,
  33765. bottom: 14/907
  33766. }
  33767. },
  33768. },
  33769. [
  33770. {
  33771. name: "Micro",
  33772. height: math.unit(3, "inches")
  33773. },
  33774. {
  33775. name: "Normal",
  33776. height: math.unit(6 + 11/12, "feet"),
  33777. default: true
  33778. },
  33779. {
  33780. name: "Macro",
  33781. height: math.unit(100, "feet")
  33782. },
  33783. {
  33784. name: "Macro+",
  33785. height: math.unit(404, "feet")
  33786. },
  33787. {
  33788. name: "Megamacro",
  33789. height: math.unit(165, "miles")
  33790. },
  33791. {
  33792. name: "Planetary",
  33793. height: math.unit(4600, "miles")
  33794. },
  33795. ]
  33796. ))
  33797. characterMakers.push(() => makeCharacter(
  33798. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33799. {
  33800. front: {
  33801. height: math.unit(10 + 3/12, "feet"),
  33802. weight: math.unit(1500, "lb"),
  33803. name: "Front",
  33804. image: {
  33805. source: "./media/characters/tux-kusanagi/front.svg",
  33806. extra: 944/840,
  33807. bottom: 39/983
  33808. }
  33809. },
  33810. back: {
  33811. height: math.unit(10 + 3/12, "feet"),
  33812. weight: math.unit(1500, "lb"),
  33813. name: "Back",
  33814. image: {
  33815. source: "./media/characters/tux-kusanagi/back.svg",
  33816. extra: 941/842,
  33817. bottom: 28/969
  33818. }
  33819. },
  33820. rump: {
  33821. height: math.unit(5.25, "feet"),
  33822. name: "Rump",
  33823. image: {
  33824. source: "./media/characters/tux-kusanagi/rump.svg"
  33825. }
  33826. },
  33827. beak: {
  33828. height: math.unit(1.54, "feet"),
  33829. name: "Beak",
  33830. image: {
  33831. source: "./media/characters/tux-kusanagi/beak.svg"
  33832. }
  33833. },
  33834. },
  33835. [
  33836. {
  33837. name: "Normal",
  33838. height: math.unit(10 + 3/12, "feet"),
  33839. default: true
  33840. },
  33841. ]
  33842. ))
  33843. characterMakers.push(() => makeCharacter(
  33844. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33845. {
  33846. front: {
  33847. height: math.unit(58, "feet"),
  33848. weight: math.unit(200, "tons"),
  33849. name: "Front",
  33850. image: {
  33851. source: "./media/characters/uzarmazari/front.svg",
  33852. extra: 1575/1455,
  33853. bottom: 152/1727
  33854. }
  33855. },
  33856. back: {
  33857. height: math.unit(58, "feet"),
  33858. weight: math.unit(200, "tons"),
  33859. name: "Back",
  33860. image: {
  33861. source: "./media/characters/uzarmazari/back.svg",
  33862. extra: 1585/1510,
  33863. bottom: 157/1742
  33864. }
  33865. },
  33866. head: {
  33867. height: math.unit(26, "feet"),
  33868. name: "Head",
  33869. image: {
  33870. source: "./media/characters/uzarmazari/head.svg"
  33871. }
  33872. },
  33873. },
  33874. [
  33875. {
  33876. name: "Normal",
  33877. height: math.unit(58, "feet"),
  33878. default: true
  33879. },
  33880. ]
  33881. ))
  33882. characterMakers.push(() => makeCharacter(
  33883. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33884. {
  33885. side: {
  33886. height: math.unit(15, "feet"),
  33887. name: "Side",
  33888. image: {
  33889. source: "./media/characters/akitu/side.svg",
  33890. extra: 1421/1321,
  33891. bottom: 157/1578
  33892. }
  33893. },
  33894. front: {
  33895. height: math.unit(15, "feet"),
  33896. name: "Front",
  33897. image: {
  33898. source: "./media/characters/akitu/front.svg",
  33899. extra: 1435/1326,
  33900. bottom: 232/1667
  33901. }
  33902. },
  33903. },
  33904. [
  33905. {
  33906. name: "Normal",
  33907. height: math.unit(15, "feet"),
  33908. default: true
  33909. },
  33910. ]
  33911. ))
  33912. characterMakers.push(() => makeCharacter(
  33913. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33914. {
  33915. front: {
  33916. height: math.unit(10 + 8/12, "feet"),
  33917. name: "Front",
  33918. image: {
  33919. source: "./media/characters/azalie-croixland/front.svg",
  33920. extra: 1972/1856,
  33921. bottom: 31/2003
  33922. }
  33923. },
  33924. },
  33925. [
  33926. {
  33927. name: "Original Height",
  33928. height: math.unit(5 + 4/12, "feet")
  33929. },
  33930. {
  33931. name: "Normal Height",
  33932. height: math.unit(10 + 8/12, "feet"),
  33933. default: true
  33934. },
  33935. ]
  33936. ))
  33937. characterMakers.push(() => makeCharacter(
  33938. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33939. {
  33940. side: {
  33941. height: math.unit(7 + 1/12, "feet"),
  33942. weight: math.unit(245, "lb"),
  33943. name: "Side",
  33944. image: {
  33945. source: "./media/characters/kavus-kazian/side.svg",
  33946. extra: 349/342,
  33947. bottom: 15/364
  33948. }
  33949. },
  33950. },
  33951. [
  33952. {
  33953. name: "Normal",
  33954. height: math.unit(7 + 1/12, "feet"),
  33955. default: true
  33956. },
  33957. ]
  33958. ))
  33959. characterMakers.push(() => makeCharacter(
  33960. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  33961. {
  33962. normal: {
  33963. height: math.unit(5 + 11/12, "feet"),
  33964. name: "Normal",
  33965. image: {
  33966. source: "./media/characters/moonlight-rose/normal.svg",
  33967. extra: 1979/1835,
  33968. bottom: 14/1993
  33969. }
  33970. },
  33971. demon: {
  33972. height: math.unit(5, "km"),
  33973. name: "Demon",
  33974. image: {
  33975. source: "./media/characters/moonlight-rose/demon.svg",
  33976. extra: 986/916,
  33977. bottom: 28/1014
  33978. }
  33979. },
  33980. },
  33981. [
  33982. {
  33983. name: "\"Natural\" height",
  33984. height: math.unit(5 + 11/12, "feet")
  33985. },
  33986. {
  33987. name: "Comfortable Size",
  33988. height: math.unit(40, "meters")
  33989. },
  33990. {
  33991. name: "Common Size",
  33992. height: math.unit(50, "km"),
  33993. default: true
  33994. },
  33995. {
  33996. name: "Demonic",
  33997. height: math.unit(1.24415e+21, "meters")
  33998. },
  33999. ]
  34000. ))
  34001. characterMakers.push(() => makeCharacter(
  34002. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  34003. {
  34004. front: {
  34005. height: math.unit(16, "feet"),
  34006. weight: math.unit(610, "kg"),
  34007. name: "Front",
  34008. image: {
  34009. source: "./media/characters/huckle/front.svg",
  34010. extra: 1731/1625,
  34011. bottom: 33/1764
  34012. }
  34013. },
  34014. back: {
  34015. height: math.unit(16, "feet"),
  34016. weight: math.unit(610, "kg"),
  34017. name: "Back",
  34018. image: {
  34019. source: "./media/characters/huckle/back.svg",
  34020. extra: 1738/1651,
  34021. bottom: 37/1775
  34022. }
  34023. },
  34024. laughing: {
  34025. height: math.unit(3.75, "feet"),
  34026. name: "Laughing",
  34027. image: {
  34028. source: "./media/characters/huckle/laughing.svg"
  34029. }
  34030. },
  34031. angry: {
  34032. height: math.unit(4.15, "feet"),
  34033. name: "Angry",
  34034. image: {
  34035. source: "./media/characters/huckle/angry.svg"
  34036. }
  34037. },
  34038. },
  34039. [
  34040. {
  34041. name: "Normal",
  34042. height: math.unit(16, "feet"),
  34043. default: true
  34044. },
  34045. {
  34046. name: "Mini Macro",
  34047. height: math.unit(463, "feet")
  34048. },
  34049. {
  34050. name: "Macro",
  34051. height: math.unit(1680, "meters")
  34052. },
  34053. {
  34054. name: "Mega Macro",
  34055. height: math.unit(175, "km")
  34056. },
  34057. {
  34058. name: "Terra Macro",
  34059. height: math.unit(32, "gigameters")
  34060. },
  34061. {
  34062. name: "Multiverse+",
  34063. height: math.unit(2.56e23, "yottameters")
  34064. },
  34065. ]
  34066. ))
  34067. characterMakers.push(() => makeCharacter(
  34068. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34069. {
  34070. front: {
  34071. height: math.unit(6 + 9/12, "feet"),
  34072. weight: math.unit(280, "lb"),
  34073. name: "Front",
  34074. image: {
  34075. source: "./media/characters/candy/front.svg",
  34076. extra: 234/217,
  34077. bottom: 11/245
  34078. }
  34079. },
  34080. },
  34081. [
  34082. {
  34083. name: "Really Small",
  34084. height: math.unit(0.1, "nm")
  34085. },
  34086. {
  34087. name: "Micro",
  34088. height: math.unit(2, "inches")
  34089. },
  34090. {
  34091. name: "Normal",
  34092. height: math.unit(6 + 9/12, "feet"),
  34093. default: true
  34094. },
  34095. {
  34096. name: "Small Macro",
  34097. height: math.unit(69, "feet")
  34098. },
  34099. {
  34100. name: "Macro",
  34101. height: math.unit(160, "feet")
  34102. },
  34103. {
  34104. name: "Megamacro",
  34105. height: math.unit(22000, "miles")
  34106. },
  34107. {
  34108. name: "Gigamacro",
  34109. height: math.unit(50000, "miles")
  34110. },
  34111. ]
  34112. ))
  34113. characterMakers.push(() => makeCharacter(
  34114. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34115. {
  34116. front: {
  34117. height: math.unit(4, "feet"),
  34118. weight: math.unit(90, "lb"),
  34119. name: "Front",
  34120. image: {
  34121. source: "./media/characters/joey-mcdonald/front.svg",
  34122. extra: 1059/852,
  34123. bottom: 33/1092
  34124. }
  34125. },
  34126. back: {
  34127. height: math.unit(4, "feet"),
  34128. weight: math.unit(90, "lb"),
  34129. name: "Back",
  34130. image: {
  34131. source: "./media/characters/joey-mcdonald/back.svg",
  34132. extra: 1077/879,
  34133. bottom: 5/1082
  34134. }
  34135. },
  34136. },
  34137. [
  34138. {
  34139. name: "Normal",
  34140. height: math.unit(4, "feet"),
  34141. default: true
  34142. },
  34143. ]
  34144. ))
  34145. characterMakers.push(() => makeCharacter(
  34146. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34147. {
  34148. front: {
  34149. height: math.unit(12 + 6/12, "feet"),
  34150. name: "Front",
  34151. image: {
  34152. source: "./media/characters/kass-lockheed/front.svg",
  34153. extra: 354/343,
  34154. bottom: 9/363
  34155. }
  34156. },
  34157. back: {
  34158. height: math.unit(12 + 6/12, "feet"),
  34159. name: "Back",
  34160. image: {
  34161. source: "./media/characters/kass-lockheed/back.svg",
  34162. extra: 364/352,
  34163. bottom: 3/367
  34164. }
  34165. },
  34166. dick: {
  34167. height: math.unit(3.12, "feet"),
  34168. name: "Dick",
  34169. image: {
  34170. source: "./media/characters/kass-lockheed/dick.svg"
  34171. }
  34172. },
  34173. head: {
  34174. height: math.unit(2.6, "feet"),
  34175. name: "Head",
  34176. image: {
  34177. source: "./media/characters/kass-lockheed/head.svg"
  34178. }
  34179. },
  34180. bleh: {
  34181. height: math.unit(2.85, "feet"),
  34182. name: "Bleh",
  34183. image: {
  34184. source: "./media/characters/kass-lockheed/bleh.svg"
  34185. }
  34186. },
  34187. smug: {
  34188. height: math.unit(2.85, "feet"),
  34189. name: "Smug",
  34190. image: {
  34191. source: "./media/characters/kass-lockheed/smug.svg"
  34192. }
  34193. },
  34194. },
  34195. [
  34196. {
  34197. name: "Normal",
  34198. height: math.unit(12 + 6/12, "feet"),
  34199. default: true
  34200. },
  34201. ]
  34202. ))
  34203. characterMakers.push(() => makeCharacter(
  34204. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34205. {
  34206. front: {
  34207. height: math.unit(6 + 2/12, "feet"),
  34208. name: "Front",
  34209. image: {
  34210. source: "./media/characters/taylor/front.svg",
  34211. extra: 639/495,
  34212. bottom: 12/651
  34213. }
  34214. },
  34215. },
  34216. [
  34217. {
  34218. name: "Normal",
  34219. height: math.unit(6 + 2/12, "feet"),
  34220. default: true
  34221. },
  34222. {
  34223. name: "Big",
  34224. height: math.unit(15, "feet")
  34225. },
  34226. {
  34227. name: "Lorg",
  34228. height: math.unit(80, "feet")
  34229. },
  34230. {
  34231. name: "Too Lorg",
  34232. height: math.unit(120, "feet")
  34233. },
  34234. ]
  34235. ))
  34236. characterMakers.push(() => makeCharacter(
  34237. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34238. {
  34239. front: {
  34240. height: math.unit(15, "feet"),
  34241. name: "Front",
  34242. image: {
  34243. source: "./media/characters/kaizer/front.svg",
  34244. extra: 1612/1436,
  34245. bottom: 43/1655
  34246. }
  34247. },
  34248. },
  34249. [
  34250. {
  34251. name: "Normal",
  34252. height: math.unit(15, "feet"),
  34253. default: true
  34254. },
  34255. ]
  34256. ))
  34257. characterMakers.push(() => makeCharacter(
  34258. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34259. {
  34260. front: {
  34261. height: math.unit(2, "feet"),
  34262. weight: math.unit(30, "lb"),
  34263. name: "Front",
  34264. image: {
  34265. source: "./media/characters/sandy/front.svg",
  34266. extra: 1439/1307,
  34267. bottom: 194/1633
  34268. }
  34269. },
  34270. },
  34271. [
  34272. {
  34273. name: "Normal",
  34274. height: math.unit(2, "feet"),
  34275. default: true
  34276. },
  34277. ]
  34278. ))
  34279. characterMakers.push(() => makeCharacter(
  34280. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34281. {
  34282. front: {
  34283. height: math.unit(3, "feet"),
  34284. name: "Front",
  34285. image: {
  34286. source: "./media/characters/mellvi/front.svg",
  34287. extra: 1831/1630,
  34288. bottom: 58/1889
  34289. }
  34290. },
  34291. },
  34292. [
  34293. {
  34294. name: "Normal",
  34295. height: math.unit(3, "feet"),
  34296. default: true
  34297. },
  34298. ]
  34299. ))
  34300. characterMakers.push(() => makeCharacter(
  34301. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34302. {
  34303. front: {
  34304. height: math.unit(5 + 11/12, "feet"),
  34305. weight: math.unit(200, "lb"),
  34306. name: "Front",
  34307. image: {
  34308. source: "./media/characters/shirou/front.svg",
  34309. extra: 2491/2383,
  34310. bottom: 189/2680
  34311. }
  34312. },
  34313. back: {
  34314. height: math.unit(5 + 11/12, "feet"),
  34315. weight: math.unit(200, "lb"),
  34316. name: "Back",
  34317. image: {
  34318. source: "./media/characters/shirou/back.svg",
  34319. extra: 2554/2450,
  34320. bottom: 76/2630
  34321. }
  34322. },
  34323. },
  34324. [
  34325. {
  34326. name: "Normal",
  34327. height: math.unit(5 + 11/12, "feet"),
  34328. default: true
  34329. },
  34330. ]
  34331. ))
  34332. characterMakers.push(() => makeCharacter(
  34333. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34334. {
  34335. front: {
  34336. height: math.unit(6 + 3/12, "feet"),
  34337. weight: math.unit(177, "lb"),
  34338. name: "Front",
  34339. image: {
  34340. source: "./media/characters/noryu/front.svg",
  34341. extra: 973/885,
  34342. bottom: 10/983
  34343. }
  34344. },
  34345. },
  34346. [
  34347. {
  34348. name: "Normal",
  34349. height: math.unit(6 + 3/12, "feet"),
  34350. default: true
  34351. },
  34352. ]
  34353. ))
  34354. characterMakers.push(() => makeCharacter(
  34355. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34356. {
  34357. front: {
  34358. height: math.unit(5 + 6/12, "feet"),
  34359. weight: math.unit(170, "lb"),
  34360. name: "Front",
  34361. image: {
  34362. source: "./media/characters/mevolas-rubenido/front.svg",
  34363. extra: 2109/1901,
  34364. bottom: 96/2205
  34365. }
  34366. },
  34367. },
  34368. [
  34369. {
  34370. name: "Normal",
  34371. height: math.unit(5 + 6/12, "feet"),
  34372. default: true
  34373. },
  34374. ]
  34375. ))
  34376. characterMakers.push(() => makeCharacter(
  34377. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34378. {
  34379. front: {
  34380. height: math.unit(100, "feet"),
  34381. name: "Front",
  34382. image: {
  34383. source: "./media/characters/dee/front.svg",
  34384. extra: 2153/2036,
  34385. bottom: 59/2212
  34386. }
  34387. },
  34388. back: {
  34389. height: math.unit(100, "feet"),
  34390. name: "Back",
  34391. image: {
  34392. source: "./media/characters/dee/back.svg",
  34393. extra: 2183/2058,
  34394. bottom: 75/2258
  34395. }
  34396. },
  34397. foot: {
  34398. height: math.unit(19.43, "feet"),
  34399. name: "Foot",
  34400. image: {
  34401. source: "./media/characters/dee/foot.svg"
  34402. }
  34403. },
  34404. hoof: {
  34405. height: math.unit(20.6, "feet"),
  34406. name: "Hoof",
  34407. image: {
  34408. source: "./media/characters/dee/hoof.svg"
  34409. }
  34410. },
  34411. },
  34412. [
  34413. {
  34414. name: "Macro",
  34415. height: math.unit(100, "feet"),
  34416. default: true
  34417. },
  34418. ]
  34419. ))
  34420. characterMakers.push(() => makeCharacter(
  34421. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34422. {
  34423. front: {
  34424. height: math.unit(5 + 6/12, "feet"),
  34425. name: "Front",
  34426. image: {
  34427. source: "./media/characters/teh/front.svg",
  34428. extra: 1002/847,
  34429. bottom: 62/1064
  34430. }
  34431. },
  34432. },
  34433. [
  34434. {
  34435. name: "Normal",
  34436. height: math.unit(5 + 6/12, "feet"),
  34437. default: true
  34438. },
  34439. ]
  34440. ))
  34441. characterMakers.push(() => makeCharacter(
  34442. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34443. {
  34444. side: {
  34445. height: math.unit(6 + 1/12, "feet"),
  34446. weight: math.unit(204, "lb"),
  34447. name: "Side",
  34448. image: {
  34449. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34450. extra: 974/775,
  34451. bottom: 169/1143
  34452. }
  34453. },
  34454. sitting: {
  34455. height: math.unit(6 + 2/12, "feet"),
  34456. weight: math.unit(204, "lb"),
  34457. name: "Sitting",
  34458. image: {
  34459. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34460. extra: 1175/964,
  34461. bottom: 378/1553
  34462. }
  34463. },
  34464. },
  34465. [
  34466. {
  34467. name: "Normal",
  34468. height: math.unit(6 + 1/12, "feet"),
  34469. default: true
  34470. },
  34471. ]
  34472. ))
  34473. characterMakers.push(() => makeCharacter(
  34474. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34475. {
  34476. front: {
  34477. height: math.unit(6, "inches"),
  34478. name: "Front",
  34479. image: {
  34480. source: "./media/characters/tululi/front.svg",
  34481. extra: 1997/1876,
  34482. bottom: 20/2017
  34483. }
  34484. },
  34485. },
  34486. [
  34487. {
  34488. name: "Normal",
  34489. height: math.unit(6, "inches"),
  34490. default: true
  34491. },
  34492. ]
  34493. ))
  34494. characterMakers.push(() => makeCharacter(
  34495. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34496. {
  34497. front: {
  34498. height: math.unit(4 + 1/12, "feet"),
  34499. name: "Front",
  34500. image: {
  34501. source: "./media/characters/star/front.svg",
  34502. extra: 1493/1189,
  34503. bottom: 48/1541
  34504. }
  34505. },
  34506. },
  34507. [
  34508. {
  34509. name: "Normal",
  34510. height: math.unit(4 + 1/12, "feet"),
  34511. default: true
  34512. },
  34513. ]
  34514. ))
  34515. characterMakers.push(() => makeCharacter(
  34516. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34517. {
  34518. front: {
  34519. height: math.unit(6 + 3/12, "feet"),
  34520. name: "Front",
  34521. image: {
  34522. source: "./media/characters/comet/front.svg",
  34523. extra: 1681/1462,
  34524. bottom: 26/1707
  34525. }
  34526. },
  34527. },
  34528. [
  34529. {
  34530. name: "Normal",
  34531. height: math.unit(6 + 3/12, "feet"),
  34532. default: true
  34533. },
  34534. ]
  34535. ))
  34536. characterMakers.push(() => makeCharacter(
  34537. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34538. {
  34539. front: {
  34540. height: math.unit(950, "feet"),
  34541. name: "Front",
  34542. image: {
  34543. source: "./media/characters/vortex/front.svg",
  34544. extra: 1497/1434,
  34545. bottom: 56/1553
  34546. }
  34547. },
  34548. maw: {
  34549. height: math.unit(285, "feet"),
  34550. name: "Maw",
  34551. image: {
  34552. source: "./media/characters/vortex/maw.svg"
  34553. }
  34554. },
  34555. },
  34556. [
  34557. {
  34558. name: "Macro",
  34559. height: math.unit(950, "feet"),
  34560. default: true
  34561. },
  34562. ]
  34563. ))
  34564. characterMakers.push(() => makeCharacter(
  34565. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34566. {
  34567. front: {
  34568. height: math.unit(600, "feet"),
  34569. weight: math.unit(0.02, "grams"),
  34570. name: "Front",
  34571. image: {
  34572. source: "./media/characters/doodle/front.svg",
  34573. extra: 1578/1413,
  34574. bottom: 37/1615
  34575. }
  34576. },
  34577. },
  34578. [
  34579. {
  34580. name: "Macro",
  34581. height: math.unit(600, "feet"),
  34582. default: true
  34583. },
  34584. ]
  34585. ))
  34586. characterMakers.push(() => makeCharacter(
  34587. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34588. {
  34589. front: {
  34590. height: math.unit(6 + 6/12, "feet"),
  34591. name: "Front",
  34592. image: {
  34593. source: "./media/characters/jai/front.svg",
  34594. extra: 1645/1534,
  34595. bottom: 115/1760
  34596. }
  34597. },
  34598. },
  34599. [
  34600. {
  34601. name: "Normal",
  34602. height: math.unit(6 + 6/12, "feet"),
  34603. default: true
  34604. },
  34605. ]
  34606. ))
  34607. characterMakers.push(() => makeCharacter(
  34608. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34609. {
  34610. front: {
  34611. height: math.unit(6 + 8/12, "feet"),
  34612. name: "Front",
  34613. image: {
  34614. source: "./media/characters/pixel/front.svg",
  34615. extra: 1900/1735,
  34616. bottom: 63/1963
  34617. }
  34618. },
  34619. },
  34620. [
  34621. {
  34622. name: "Normal",
  34623. height: math.unit(6 + 8/12, "feet"),
  34624. default: true
  34625. },
  34626. ]
  34627. ))
  34628. characterMakers.push(() => makeCharacter(
  34629. { name: "Rhett", species: ["deer"], tags: ["anthro"] },
  34630. {
  34631. front: {
  34632. height: math.unit(4 + 11/12, "feet"),
  34633. weight: math.unit(111, "lb"),
  34634. name: "Front",
  34635. image: {
  34636. source: "./media/characters/rhett/front.svg",
  34637. extra: 1682/1586,
  34638. bottom: 92/1774
  34639. }
  34640. },
  34641. },
  34642. [
  34643. {
  34644. name: "Mini",
  34645. height: math.unit(1 + 1/12, "feet")
  34646. },
  34647. {
  34648. name: "Normal",
  34649. height: math.unit(4 + 11/12, "feet"),
  34650. default: true
  34651. },
  34652. ]
  34653. ))
  34654. characterMakers.push(() => makeCharacter(
  34655. { name: "Penny", species: ["mouse"], tags: ["anthro"] },
  34656. {
  34657. front: {
  34658. height: math.unit(3 + 3/12, "feet"),
  34659. name: "Front",
  34660. image: {
  34661. source: "./media/characters/penny/front.svg",
  34662. extra: 1406/1311,
  34663. bottom: 26/1432
  34664. }
  34665. },
  34666. },
  34667. [
  34668. {
  34669. name: "Normal",
  34670. height: math.unit(3 + 3/12, "feet"),
  34671. default: true
  34672. },
  34673. ]
  34674. ))
  34675. characterMakers.push(() => makeCharacter(
  34676. { name: "Monty", species: ["cat", "kangaroo"], tags: ["anthro"] },
  34677. {
  34678. front: {
  34679. height: math.unit(4 + 11/12, "feet"),
  34680. name: "Front",
  34681. image: {
  34682. source: "./media/characters/monty/front.svg",
  34683. extra: 1479/1209,
  34684. bottom: 0/1479
  34685. }
  34686. },
  34687. },
  34688. [
  34689. {
  34690. name: "Normal",
  34691. height: math.unit(4 + 11/12, "feet"),
  34692. default: true
  34693. },
  34694. ]
  34695. ))
  34696. characterMakers.push(() => makeCharacter(
  34697. { name: "Sterling", species: ["lunaral-dragon"], tags: ["anthro"] },
  34698. {
  34699. front: {
  34700. height: math.unit(8 + 4/12, "feet"),
  34701. name: "Front",
  34702. image: {
  34703. source: "./media/characters/sterling/front.svg",
  34704. extra: 1417/1234,
  34705. bottom: 60/1477
  34706. }
  34707. },
  34708. },
  34709. [
  34710. {
  34711. name: "Normal",
  34712. height: math.unit(8 + 4/12, "feet"),
  34713. default: true
  34714. },
  34715. ]
  34716. ))
  34717. characterMakers.push(() => makeCharacter(
  34718. { name: "Marble", species: ["tiger"], tags: ["anthro"] },
  34719. {
  34720. front: {
  34721. height: math.unit(15, "feet"),
  34722. name: "Front",
  34723. image: {
  34724. source: "./media/characters/marble/front.svg",
  34725. extra: 973/937,
  34726. bottom: 32/1005
  34727. }
  34728. },
  34729. },
  34730. [
  34731. {
  34732. name: "Normal",
  34733. height: math.unit(15, "feet"),
  34734. default: true
  34735. },
  34736. ]
  34737. ))
  34738. characterMakers.push(() => makeCharacter(
  34739. { name: "Powder", species: ["sugar-glider"], tags: ["feral"] },
  34740. {
  34741. front: {
  34742. height: math.unit(3, "inches"),
  34743. name: "Front",
  34744. image: {
  34745. source: "./media/characters/powder/front.svg",
  34746. extra: 1504/1334,
  34747. bottom: 518/2022
  34748. }
  34749. },
  34750. },
  34751. [
  34752. {
  34753. name: "Normal",
  34754. height: math.unit(3, "inches"),
  34755. default: true
  34756. },
  34757. ]
  34758. ))
  34759. characterMakers.push(() => makeCharacter(
  34760. { name: "Joey (Raccoon)", species: ["raccoon"], tags: ["anthro"] },
  34761. {
  34762. front: {
  34763. height: math.unit(4 + 5/12, "feet"),
  34764. name: "Front",
  34765. image: {
  34766. source: "./media/characters/joey-raccoon/front.svg",
  34767. extra: 1273/1197,
  34768. bottom: 0/1273
  34769. }
  34770. },
  34771. },
  34772. [
  34773. {
  34774. name: "Normal",
  34775. height: math.unit(4 + 5/12, "feet"),
  34776. default: true
  34777. },
  34778. ]
  34779. ))
  34780. characterMakers.push(() => makeCharacter(
  34781. { name: "Vick", species: ["hyena"], tags: ["anthro"] },
  34782. {
  34783. front: {
  34784. height: math.unit(8 + 4/12, "feet"),
  34785. name: "Front",
  34786. image: {
  34787. source: "./media/characters/vick/front.svg",
  34788. extra: 2187/2118,
  34789. bottom: 47/2234
  34790. }
  34791. },
  34792. },
  34793. [
  34794. {
  34795. name: "Normal",
  34796. height: math.unit(8 + 4/12, "feet"),
  34797. default: true
  34798. },
  34799. ]
  34800. ))
  34801. characterMakers.push(() => makeCharacter(
  34802. { name: "Mitsy", species: ["mouse"], tags: ["anthro"] },
  34803. {
  34804. front: {
  34805. height: math.unit(5 + 5/12, "feet"),
  34806. name: "Front",
  34807. image: {
  34808. source: "./media/characters/mitsy/front.svg",
  34809. extra: 1842/1695,
  34810. bottom: 0/1842
  34811. }
  34812. },
  34813. },
  34814. [
  34815. {
  34816. name: "Normal",
  34817. height: math.unit(5 + 5/12, "feet"),
  34818. default: true
  34819. },
  34820. ]
  34821. ))
  34822. characterMakers.push(() => makeCharacter(
  34823. { name: "Silvy", species: ["ninetales"], tags: ["anthro"] },
  34824. {
  34825. front: {
  34826. height: math.unit(6 + 3/12, "feet"),
  34827. name: "Front",
  34828. image: {
  34829. source: "./media/characters/silvy/front.svg",
  34830. extra: 1995/1836,
  34831. bottom: 225/2220
  34832. }
  34833. },
  34834. },
  34835. [
  34836. {
  34837. name: "Normal",
  34838. height: math.unit(6 + 3/12, "feet"),
  34839. default: true
  34840. },
  34841. ]
  34842. ))
  34843. characterMakers.push(() => makeCharacter(
  34844. { name: "Rodney", species: ["mammal"], tags: ["anthro"] },
  34845. {
  34846. front: {
  34847. height: math.unit(3 + 8/12, "feet"),
  34848. name: "Front",
  34849. image: {
  34850. source: "./media/characters/rodney/front.svg",
  34851. extra: 1956/1747,
  34852. bottom: 31/1987
  34853. }
  34854. },
  34855. frontDressed: {
  34856. height: math.unit(2.9, "feet"),
  34857. name: "Front (Dressed)",
  34858. image: {
  34859. source: "./media/characters/rodney/front-dressed.svg",
  34860. extra: 1382/1241,
  34861. bottom: 385/1767
  34862. }
  34863. },
  34864. },
  34865. [
  34866. {
  34867. name: "Normal",
  34868. height: math.unit(3 + 8/12, "feet"),
  34869. default: true
  34870. },
  34871. ]
  34872. ))
  34873. characterMakers.push(() => makeCharacter(
  34874. { name: "Zakail Sudekai", species: ["arctic-wolf"], tags: ["anthro"] },
  34875. {
  34876. front: {
  34877. height: math.unit(5 + 9/12, "feet"),
  34878. weight: math.unit(194, "lbs"),
  34879. name: "Front",
  34880. image: {
  34881. source: "./media/characters/zakail-sudekai/front.svg",
  34882. extra: 2696/2533,
  34883. bottom: 248/2944
  34884. }
  34885. },
  34886. maw: {
  34887. height: math.unit(1.35, "feet"),
  34888. name: "Maw",
  34889. image: {
  34890. source: "./media/characters/zakail-sudekai/maw.svg"
  34891. }
  34892. },
  34893. },
  34894. [
  34895. {
  34896. name: "Normal",
  34897. height: math.unit(5 + 9/12, "feet"),
  34898. default: true
  34899. },
  34900. ]
  34901. ))
  34902. characterMakers.push(() => makeCharacter(
  34903. { name: "Eleanor", species: ["cow"], tags: ["anthro"] },
  34904. {
  34905. front: {
  34906. height: math.unit(8 + 4/12, "feet"),
  34907. weight: math.unit(1200, "lb"),
  34908. name: "Front",
  34909. image: {
  34910. source: "./media/characters/eleanor/front.svg",
  34911. extra: 1226/1192,
  34912. bottom: 52/1278
  34913. }
  34914. },
  34915. back: {
  34916. height: math.unit(8 + 4/12, "feet"),
  34917. weight: math.unit(1200, "lb"),
  34918. name: "Back",
  34919. image: {
  34920. source: "./media/characters/eleanor/back.svg",
  34921. extra: 1242/1184,
  34922. bottom: 60/1302
  34923. }
  34924. },
  34925. head: {
  34926. height: math.unit(2.62, "feet"),
  34927. name: "Head",
  34928. image: {
  34929. source: "./media/characters/eleanor/head.svg"
  34930. }
  34931. },
  34932. },
  34933. [
  34934. {
  34935. name: "Normal",
  34936. height: math.unit(8 + 4/12, "feet"),
  34937. default: true
  34938. },
  34939. ]
  34940. ))
  34941. characterMakers.push(() => makeCharacter(
  34942. { name: "Tanya", species: ["shark"], tags: ["anthro"] },
  34943. {
  34944. front: {
  34945. height: math.unit(8 + 4/12, "feet"),
  34946. weight: math.unit(750, "lb"),
  34947. name: "Front",
  34948. image: {
  34949. source: "./media/characters/tanya/front.svg",
  34950. extra: 1749/1615,
  34951. bottom: 33/1782
  34952. }
  34953. },
  34954. },
  34955. [
  34956. {
  34957. name: "Normal",
  34958. height: math.unit(8 + 4/12, "feet"),
  34959. default: true
  34960. },
  34961. ]
  34962. ))
  34963. characterMakers.push(() => makeCharacter(
  34964. { name: "Cindy", species: ["dragon"], tags: ["anthro"] },
  34965. {
  34966. front: {
  34967. height: math.unit(5, "feet"),
  34968. weight: math.unit(225, "lb"),
  34969. name: "Front",
  34970. image: {
  34971. source: "./media/characters/cindy/front.svg",
  34972. extra: 1320/1250,
  34973. bottom: 42/1362
  34974. }
  34975. },
  34976. frontDressed: {
  34977. height: math.unit(5, "feet"),
  34978. weight: math.unit(225, "lb"),
  34979. name: "Front (Dressed)",
  34980. image: {
  34981. source: "./media/characters/cindy/front-dressed.svg",
  34982. extra: 1320/1250,
  34983. bottom: 42/1362
  34984. }
  34985. },
  34986. back: {
  34987. height: math.unit(5, "feet"),
  34988. weight: math.unit(225, "lb"),
  34989. name: "Back",
  34990. image: {
  34991. source: "./media/characters/cindy/back.svg",
  34992. extra: 1384/1346,
  34993. bottom: 14/1398
  34994. }
  34995. },
  34996. },
  34997. [
  34998. {
  34999. name: "Normal",
  35000. height: math.unit(5, "feet"),
  35001. default: true
  35002. },
  35003. ]
  35004. ))
  35005. //characters
  35006. function makeCharacters() {
  35007. const results = [];
  35008. characterMakers.forEach(character => {
  35009. results.push(character());
  35010. });
  35011. return results;
  35012. }