less copy protection, more size visualization
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 

35510 lignes
892 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. }
  1544. //species
  1545. function getSpeciesInfo(speciesList) {
  1546. let result = new Set();
  1547. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1548. result.add(entry)
  1549. });
  1550. return Array.from(result);
  1551. };
  1552. function getSpeciesInfoHelper(species) {
  1553. if (!speciesData[species]) {
  1554. console.warn(species + " doesn't exist");
  1555. return [];
  1556. }
  1557. if (speciesData[species].parents) {
  1558. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1559. } else {
  1560. return [species];
  1561. }
  1562. }
  1563. characterMakers.push(() => makeCharacter(
  1564. {
  1565. name: "Fen",
  1566. species: ["crux"],
  1567. description: {
  1568. title: "Bio",
  1569. text: "Very furry. Sheds on everything."
  1570. },
  1571. tags: [
  1572. "anthro",
  1573. "goo"
  1574. ]
  1575. },
  1576. {
  1577. back: {
  1578. height: math.unit(2.2428, "meter"),
  1579. weight: math.unit(124.738, "kg"),
  1580. name: "Back",
  1581. image: {
  1582. source: "./media/characters/fen/back.svg",
  1583. extra: 2024 / 1867,
  1584. bottom: 13 / 2037
  1585. },
  1586. info: {
  1587. description: {
  1588. mode: "append",
  1589. text: "\n\nHe is not currently looking at you."
  1590. }
  1591. }
  1592. },
  1593. full: {
  1594. height: math.unit(1.34, "meter"),
  1595. weight: math.unit(225, "kg"),
  1596. name: "Full",
  1597. image: {
  1598. source: "./media/characters/fen/full.svg"
  1599. },
  1600. info: {
  1601. description: {
  1602. mode: "append",
  1603. text: "\n\nMunch."
  1604. }
  1605. }
  1606. },
  1607. kneeling: {
  1608. height: math.unit(5.4, "feet"),
  1609. weight: math.unit(124.738, "kg"),
  1610. name: "Kneeling",
  1611. image: {
  1612. source: "./media/characters/fen/kneeling.svg",
  1613. extra: 563 / 507
  1614. }
  1615. },
  1616. goo: {
  1617. height: math.unit(2.8, "feet"),
  1618. weight: math.unit(125, "kg"),
  1619. capacity: math.unit(1, "people"),
  1620. name: "Goo",
  1621. image: {
  1622. source: "./media/characters/fen/goo.svg",
  1623. bottom: 116 / 613
  1624. }
  1625. },
  1626. lounging: {
  1627. height: math.unit(6.5, "feet"),
  1628. weight: math.unit(125, "kg"),
  1629. name: "Lounging",
  1630. image: {
  1631. source: "./media/characters/fen/lounging.svg"
  1632. }
  1633. },
  1634. },
  1635. [
  1636. {
  1637. name: "Normal",
  1638. height: math.unit(2.2428, "meter")
  1639. },
  1640. {
  1641. name: "Big",
  1642. height: math.unit(12, "feet")
  1643. },
  1644. {
  1645. name: "Minimacro",
  1646. height: math.unit(40, "feet"),
  1647. default: true,
  1648. info: {
  1649. description: {
  1650. mode: "append",
  1651. text: "\n\nTOO DAMN BIG"
  1652. }
  1653. }
  1654. },
  1655. {
  1656. name: "Macro",
  1657. height: math.unit(100, "feet"),
  1658. info: {
  1659. description: {
  1660. mode: "append",
  1661. text: "\n\nTOO DAMN BIG"
  1662. }
  1663. }
  1664. },
  1665. {
  1666. name: "Macro+",
  1667. height: math.unit(300, "feet")
  1668. },
  1669. {
  1670. name: "Megamacro",
  1671. height: math.unit(2, "miles")
  1672. }
  1673. ]
  1674. ))
  1675. characterMakers.push(() => makeCharacter(
  1676. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1677. {
  1678. front: {
  1679. height: math.unit(183, "cm"),
  1680. weight: math.unit(80, "kg"),
  1681. name: "Front",
  1682. image: {
  1683. source: "./media/characters/sofia-fluttertail/front.svg",
  1684. bottom: 0.01,
  1685. extra: 2154 / 2081
  1686. }
  1687. },
  1688. frontAlt: {
  1689. height: math.unit(183, "cm"),
  1690. weight: math.unit(80, "kg"),
  1691. name: "Front (alt)",
  1692. image: {
  1693. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1694. }
  1695. },
  1696. back: {
  1697. height: math.unit(183, "cm"),
  1698. weight: math.unit(80, "kg"),
  1699. name: "Back",
  1700. image: {
  1701. source: "./media/characters/sofia-fluttertail/back.svg"
  1702. }
  1703. },
  1704. kneeling: {
  1705. height: math.unit(125, "cm"),
  1706. weight: math.unit(80, "kg"),
  1707. name: "Kneeling",
  1708. image: {
  1709. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1710. extra: 1033 / 977,
  1711. bottom: 23.7 / 1057
  1712. }
  1713. },
  1714. maw: {
  1715. height: math.unit(183 / 5, "cm"),
  1716. name: "Maw",
  1717. image: {
  1718. source: "./media/characters/sofia-fluttertail/maw.svg"
  1719. }
  1720. },
  1721. mawcloseup: {
  1722. height: math.unit(183 / 5 * 0.41, "cm"),
  1723. name: "Maw (Closeup)",
  1724. image: {
  1725. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1726. }
  1727. },
  1728. paws: {
  1729. height: math.unit(1.17, "feet"),
  1730. name: "Paws",
  1731. image: {
  1732. source: "./media/characters/sofia-fluttertail/paws.svg",
  1733. extra: 851 / 851,
  1734. bottom: 17 / 868
  1735. }
  1736. },
  1737. },
  1738. [
  1739. {
  1740. name: "Normal",
  1741. height: math.unit(1.83, "meter")
  1742. },
  1743. {
  1744. name: "Size Thief",
  1745. height: math.unit(18, "feet")
  1746. },
  1747. {
  1748. name: "50 Foot Collie",
  1749. height: math.unit(50, "feet")
  1750. },
  1751. {
  1752. name: "Macro",
  1753. height: math.unit(96, "feet"),
  1754. default: true
  1755. },
  1756. {
  1757. name: "Megamerger",
  1758. height: math.unit(650, "feet")
  1759. },
  1760. ]
  1761. ))
  1762. characterMakers.push(() => makeCharacter(
  1763. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1764. {
  1765. front: {
  1766. height: math.unit(7, "feet"),
  1767. weight: math.unit(100, "kg"),
  1768. name: "Front",
  1769. image: {
  1770. source: "./media/characters/march/front.svg",
  1771. extra: 1,
  1772. bottom: 0.015
  1773. }
  1774. },
  1775. foot: {
  1776. height: math.unit(0.9, "feet"),
  1777. name: "Foot",
  1778. image: {
  1779. source: "./media/characters/march/foot.svg"
  1780. }
  1781. },
  1782. },
  1783. [
  1784. {
  1785. name: "Normal",
  1786. height: math.unit(7.9, "feet")
  1787. },
  1788. {
  1789. name: "Macro",
  1790. height: math.unit(220, "meters")
  1791. },
  1792. {
  1793. name: "Megamacro",
  1794. height: math.unit(2.98, "km"),
  1795. default: true
  1796. },
  1797. {
  1798. name: "Gigamacro",
  1799. height: math.unit(15963, "km")
  1800. },
  1801. {
  1802. name: "Teramacro",
  1803. height: math.unit(2980000000, "km")
  1804. },
  1805. {
  1806. name: "Examacro",
  1807. height: math.unit(250, "parsecs")
  1808. },
  1809. ]
  1810. ))
  1811. characterMakers.push(() => makeCharacter(
  1812. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1813. {
  1814. front: {
  1815. height: math.unit(6, "feet"),
  1816. weight: math.unit(60, "kg"),
  1817. name: "Front",
  1818. image: {
  1819. source: "./media/characters/noir/front.svg",
  1820. extra: 1,
  1821. bottom: 0.032
  1822. }
  1823. },
  1824. },
  1825. [
  1826. {
  1827. name: "Normal",
  1828. height: math.unit(6.6, "feet")
  1829. },
  1830. {
  1831. name: "Macro",
  1832. height: math.unit(500, "feet")
  1833. },
  1834. {
  1835. name: "Megamacro",
  1836. height: math.unit(2.5, "km"),
  1837. default: true
  1838. },
  1839. {
  1840. name: "Gigamacro",
  1841. height: math.unit(22500, "km")
  1842. },
  1843. {
  1844. name: "Teramacro",
  1845. height: math.unit(2500000000, "km")
  1846. },
  1847. {
  1848. name: "Examacro",
  1849. height: math.unit(200, "parsecs")
  1850. },
  1851. ]
  1852. ))
  1853. characterMakers.push(() => makeCharacter(
  1854. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1855. {
  1856. front: {
  1857. height: math.unit(7, "feet"),
  1858. weight: math.unit(100, "kg"),
  1859. name: "Front",
  1860. image: {
  1861. source: "./media/characters/okuri/front.svg",
  1862. extra: 1,
  1863. bottom: 0.037
  1864. }
  1865. },
  1866. back: {
  1867. height: math.unit(7, "feet"),
  1868. weight: math.unit(100, "kg"),
  1869. name: "Back",
  1870. image: {
  1871. source: "./media/characters/okuri/back.svg",
  1872. extra: 1,
  1873. bottom: 0.007
  1874. }
  1875. },
  1876. },
  1877. [
  1878. {
  1879. name: "Megamacro",
  1880. height: math.unit(100, "miles"),
  1881. default: true
  1882. },
  1883. ]
  1884. ))
  1885. characterMakers.push(() => makeCharacter(
  1886. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1887. {
  1888. front: {
  1889. height: math.unit(7, "feet"),
  1890. weight: math.unit(100, "kg"),
  1891. name: "Front",
  1892. image: {
  1893. source: "./media/characters/manny/front.svg",
  1894. extra: 1,
  1895. bottom: 0.06
  1896. }
  1897. },
  1898. back: {
  1899. height: math.unit(7, "feet"),
  1900. weight: math.unit(100, "kg"),
  1901. name: "Back",
  1902. image: {
  1903. source: "./media/characters/manny/back.svg",
  1904. extra: 1,
  1905. bottom: 0.014
  1906. }
  1907. },
  1908. },
  1909. [
  1910. {
  1911. name: "Normal",
  1912. height: math.unit(7, "feet"),
  1913. },
  1914. {
  1915. name: "Macro",
  1916. height: math.unit(78, "feet"),
  1917. default: true
  1918. },
  1919. {
  1920. name: "Macro+",
  1921. height: math.unit(300, "meters")
  1922. },
  1923. {
  1924. name: "Macro++",
  1925. height: math.unit(2400, "meters")
  1926. },
  1927. {
  1928. name: "Megamacro",
  1929. height: math.unit(5167, "meters")
  1930. },
  1931. {
  1932. name: "Gigamacro",
  1933. height: math.unit(41769, "miles")
  1934. },
  1935. ]
  1936. ))
  1937. characterMakers.push(() => makeCharacter(
  1938. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1939. {
  1940. front: {
  1941. height: math.unit(7, "feet"),
  1942. weight: math.unit(100, "kg"),
  1943. name: "Front",
  1944. image: {
  1945. source: "./media/characters/adake/front-1.svg"
  1946. }
  1947. },
  1948. frontAlt: {
  1949. height: math.unit(7, "feet"),
  1950. weight: math.unit(100, "kg"),
  1951. name: "Front (Alt)",
  1952. image: {
  1953. source: "./media/characters/adake/front-2.svg",
  1954. extra: 1,
  1955. bottom: 0.01
  1956. }
  1957. },
  1958. back: {
  1959. height: math.unit(7, "feet"),
  1960. weight: math.unit(100, "kg"),
  1961. name: "Back",
  1962. image: {
  1963. source: "./media/characters/adake/back.svg",
  1964. }
  1965. },
  1966. kneel: {
  1967. height: math.unit(5.385, "feet"),
  1968. weight: math.unit(100, "kg"),
  1969. name: "Kneeling",
  1970. image: {
  1971. source: "./media/characters/adake/kneel.svg",
  1972. bottom: 0.052
  1973. }
  1974. },
  1975. },
  1976. [
  1977. {
  1978. name: "Normal",
  1979. height: math.unit(7, "feet"),
  1980. },
  1981. {
  1982. name: "Macro",
  1983. height: math.unit(78, "feet"),
  1984. default: true
  1985. },
  1986. {
  1987. name: "Macro+",
  1988. height: math.unit(300, "meters")
  1989. },
  1990. {
  1991. name: "Macro++",
  1992. height: math.unit(2400, "meters")
  1993. },
  1994. {
  1995. name: "Megamacro",
  1996. height: math.unit(5167, "meters")
  1997. },
  1998. {
  1999. name: "Gigamacro",
  2000. height: math.unit(41769, "miles")
  2001. },
  2002. ]
  2003. ))
  2004. characterMakers.push(() => makeCharacter(
  2005. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  2006. {
  2007. front: {
  2008. height: math.unit(1.65, "meters"),
  2009. weight: math.unit(50, "kg"),
  2010. name: "Front",
  2011. image: {
  2012. source: "./media/characters/elijah/front.svg",
  2013. extra: 858 / 830,
  2014. bottom: 95.5 / 953.8559
  2015. }
  2016. },
  2017. back: {
  2018. height: math.unit(1.65, "meters"),
  2019. weight: math.unit(50, "kg"),
  2020. name: "Back",
  2021. image: {
  2022. source: "./media/characters/elijah/back.svg",
  2023. extra: 895 / 850,
  2024. bottom: 5.3 / 897.956
  2025. }
  2026. },
  2027. frontNsfw: {
  2028. height: math.unit(1.65, "meters"),
  2029. weight: math.unit(50, "kg"),
  2030. name: "Front (NSFW)",
  2031. image: {
  2032. source: "./media/characters/elijah/front-nsfw.svg",
  2033. extra: 858 / 830,
  2034. bottom: 95.5 / 953.8559
  2035. }
  2036. },
  2037. backNsfw: {
  2038. height: math.unit(1.65, "meters"),
  2039. weight: math.unit(50, "kg"),
  2040. name: "Back (NSFW)",
  2041. image: {
  2042. source: "./media/characters/elijah/back-nsfw.svg",
  2043. extra: 895 / 850,
  2044. bottom: 5.3 / 897.956
  2045. }
  2046. },
  2047. dick: {
  2048. height: math.unit(1, "feet"),
  2049. name: "Dick",
  2050. image: {
  2051. source: "./media/characters/elijah/dick.svg"
  2052. }
  2053. },
  2054. beakOpen: {
  2055. height: math.unit(1.25, "feet"),
  2056. name: "Beak (Open)",
  2057. image: {
  2058. source: "./media/characters/elijah/beak-open.svg"
  2059. }
  2060. },
  2061. beakShut: {
  2062. height: math.unit(1.25, "feet"),
  2063. name: "Beak (Shut)",
  2064. image: {
  2065. source: "./media/characters/elijah/beak-shut.svg"
  2066. }
  2067. },
  2068. footFlexing: {
  2069. height: math.unit(1.61, "feet"),
  2070. name: "Foot (Flexing)",
  2071. image: {
  2072. source: "./media/characters/elijah/foot-flexing.svg"
  2073. }
  2074. },
  2075. footStepping: {
  2076. height: math.unit(1.44, "feet"),
  2077. name: "Foot (Stepping)",
  2078. image: {
  2079. source: "./media/characters/elijah/foot-stepping.svg"
  2080. }
  2081. },
  2082. plantigradeLeg: {
  2083. height: math.unit(2.34, "feet"),
  2084. name: "Plantigrade Leg",
  2085. image: {
  2086. source: "./media/characters/elijah/plantigrade-leg.svg"
  2087. }
  2088. },
  2089. plantigradeFootLeft: {
  2090. height: math.unit(0.9, "feet"),
  2091. name: "Plantigrade Foot (Left)",
  2092. image: {
  2093. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2094. }
  2095. },
  2096. plantigradeFootRight: {
  2097. height: math.unit(0.9, "feet"),
  2098. name: "Plantigrade Foot (Right)",
  2099. image: {
  2100. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2101. }
  2102. },
  2103. },
  2104. [
  2105. {
  2106. name: "Normal",
  2107. height: math.unit(1.65, "meters")
  2108. },
  2109. {
  2110. name: "Macro",
  2111. height: math.unit(55, "meters"),
  2112. default: true
  2113. },
  2114. {
  2115. name: "Macro+",
  2116. height: math.unit(105, "meters")
  2117. },
  2118. ]
  2119. ))
  2120. characterMakers.push(() => makeCharacter(
  2121. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2122. {
  2123. front: {
  2124. height: math.unit(11, "feet"),
  2125. weight: math.unit(80, "kg"),
  2126. name: "Front",
  2127. image: {
  2128. source: "./media/characters/rai/front.svg",
  2129. extra: 1,
  2130. bottom: 0.03
  2131. }
  2132. },
  2133. side: {
  2134. height: math.unit(11, "feet"),
  2135. weight: math.unit(80, "kg"),
  2136. name: "Side",
  2137. image: {
  2138. source: "./media/characters/rai/side.svg"
  2139. }
  2140. },
  2141. back: {
  2142. height: math.unit(11, "feet"),
  2143. weight: math.unit(80, "lb"),
  2144. name: "Back",
  2145. image: {
  2146. source: "./media/characters/rai/back.svg",
  2147. extra: 1,
  2148. bottom: 0.01
  2149. }
  2150. },
  2151. feral: {
  2152. height: math.unit(11, "feet"),
  2153. weight: math.unit(800, "lb"),
  2154. name: "Feral",
  2155. image: {
  2156. source: "./media/characters/rai/feral.svg",
  2157. extra: 1050 / 659,
  2158. bottom: 0.07
  2159. }
  2160. },
  2161. dragon: {
  2162. height: math.unit(23, "feet"),
  2163. weight: math.unit(50000, "lb"),
  2164. name: "Dragon",
  2165. image: {
  2166. source: "./media/characters/rai/dragon.svg",
  2167. extra: 2498 / 2030,
  2168. bottom: 85.2 / 2584
  2169. }
  2170. },
  2171. maw: {
  2172. height: math.unit(6 / 3.81416, "feet"),
  2173. name: "Maw",
  2174. image: {
  2175. source: "./media/characters/rai/maw.svg"
  2176. }
  2177. },
  2178. },
  2179. [
  2180. {
  2181. name: "Normal",
  2182. height: math.unit(11, "feet")
  2183. },
  2184. {
  2185. name: "Macro",
  2186. height: math.unit(302, "feet"),
  2187. default: true
  2188. },
  2189. ]
  2190. ))
  2191. characterMakers.push(() => makeCharacter(
  2192. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2193. {
  2194. frontDressed: {
  2195. height: math.unit(216, "feet"),
  2196. weight: math.unit(7000000, "lb"),
  2197. name: "Front (Dressed)",
  2198. image: {
  2199. source: "./media/characters/jazzy/front-dressed.svg",
  2200. extra: 2738 / 2651,
  2201. bottom: 41.8 / 2786
  2202. }
  2203. },
  2204. backDressed: {
  2205. height: math.unit(216, "feet"),
  2206. weight: math.unit(7000000, "lb"),
  2207. name: "Back (Dressed)",
  2208. image: {
  2209. source: "./media/characters/jazzy/back-dressed.svg",
  2210. extra: 2775 / 2673,
  2211. bottom: 36.8 / 2817
  2212. }
  2213. },
  2214. front: {
  2215. height: math.unit(216, "feet"),
  2216. weight: math.unit(7000000, "lb"),
  2217. name: "Front",
  2218. image: {
  2219. source: "./media/characters/jazzy/front.svg",
  2220. extra: 2738 / 2651,
  2221. bottom: 41.8 / 2786
  2222. }
  2223. },
  2224. back: {
  2225. height: math.unit(216, "feet"),
  2226. weight: math.unit(7000000, "lb"),
  2227. name: "Back",
  2228. image: {
  2229. source: "./media/characters/jazzy/back.svg",
  2230. extra: 2775 / 2673,
  2231. bottom: 36.8 / 2817
  2232. }
  2233. },
  2234. maw: {
  2235. height: math.unit(20, "feet"),
  2236. name: "Maw",
  2237. image: {
  2238. source: "./media/characters/jazzy/maw.svg"
  2239. }
  2240. },
  2241. paws: {
  2242. height: math.unit(27.5, "feet"),
  2243. name: "Paws",
  2244. image: {
  2245. source: "./media/characters/jazzy/paws.svg"
  2246. }
  2247. },
  2248. eye: {
  2249. height: math.unit(4.4, "feet"),
  2250. name: "Eye",
  2251. image: {
  2252. source: "./media/characters/jazzy/eye.svg"
  2253. }
  2254. },
  2255. droneOffense: {
  2256. height: math.unit(9.5, "inches"),
  2257. name: "Drone (Offense)",
  2258. image: {
  2259. source: "./media/characters/jazzy/drone-offense.svg"
  2260. }
  2261. },
  2262. droneRecon: {
  2263. height: math.unit(9.5, "inches"),
  2264. name: "Drone (Recon)",
  2265. image: {
  2266. source: "./media/characters/jazzy/drone-recon.svg"
  2267. }
  2268. },
  2269. droneDefense: {
  2270. height: math.unit(9.5, "inches"),
  2271. name: "Drone (Defense)",
  2272. image: {
  2273. source: "./media/characters/jazzy/drone-defense.svg"
  2274. }
  2275. },
  2276. },
  2277. [
  2278. {
  2279. name: "Macro",
  2280. height: math.unit(216, "feet"),
  2281. default: true
  2282. },
  2283. ]
  2284. ))
  2285. characterMakers.push(() => makeCharacter(
  2286. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2287. {
  2288. front: {
  2289. height: math.unit(7, "feet"),
  2290. weight: math.unit(80, "kg"),
  2291. name: "Front",
  2292. image: {
  2293. source: "./media/characters/flamm/front.svg",
  2294. extra: 1794 / 1677,
  2295. bottom: 31.7 / 1828.5
  2296. }
  2297. },
  2298. },
  2299. [
  2300. {
  2301. name: "Normal",
  2302. height: math.unit(9.5, "feet")
  2303. },
  2304. {
  2305. name: "Macro",
  2306. height: math.unit(200, "feet"),
  2307. default: true
  2308. },
  2309. ]
  2310. ))
  2311. characterMakers.push(() => makeCharacter(
  2312. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2313. {
  2314. front: {
  2315. height: math.unit(5 + 3/12, "feet"),
  2316. weight: math.unit(60, "kg"),
  2317. name: "Front",
  2318. image: {
  2319. source: "./media/characters/zephiro/front.svg",
  2320. extra: 2309 / 2162,
  2321. bottom: 0.069
  2322. }
  2323. },
  2324. side: {
  2325. height: math.unit(5 + 3/12, "feet"),
  2326. weight: math.unit(60, "kg"),
  2327. name: "Side",
  2328. image: {
  2329. source: "./media/characters/zephiro/side.svg",
  2330. extra: 2403 / 2279,
  2331. bottom: 0.015
  2332. }
  2333. },
  2334. back: {
  2335. height: math.unit(5 + 3/12, "feet"),
  2336. weight: math.unit(60, "kg"),
  2337. name: "Back",
  2338. image: {
  2339. source: "./media/characters/zephiro/back.svg",
  2340. extra: 2373 / 2244,
  2341. bottom: 0.013
  2342. }
  2343. },
  2344. hand: {
  2345. height: math.unit(0.68, "feet"),
  2346. name: "Hand",
  2347. image: {
  2348. source: "./media/characters/zephiro/hand.svg"
  2349. }
  2350. },
  2351. paw: {
  2352. height: math.unit(1, "feet"),
  2353. name: "Paw",
  2354. image: {
  2355. source: "./media/characters/zephiro/paw.svg"
  2356. }
  2357. },
  2358. beans: {
  2359. height: math.unit(0.93, "feet"),
  2360. name: "Beans",
  2361. image: {
  2362. source: "./media/characters/zephiro/beans.svg"
  2363. }
  2364. },
  2365. },
  2366. [
  2367. {
  2368. name: "Micro",
  2369. height: math.unit(3, "inches")
  2370. },
  2371. {
  2372. name: "Normal",
  2373. height: math.unit(5 + 3 / 12, "feet"),
  2374. default: true
  2375. },
  2376. {
  2377. name: "Macro",
  2378. height: math.unit(118, "feet")
  2379. },
  2380. ]
  2381. ))
  2382. characterMakers.push(() => makeCharacter(
  2383. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2384. {
  2385. front: {
  2386. height: math.unit(5, "feet"),
  2387. weight: math.unit(90, "kg"),
  2388. name: "Front",
  2389. image: {
  2390. source: "./media/characters/fory/front.svg",
  2391. extra: 2862 / 2674,
  2392. bottom: 180 / 3043.8
  2393. }
  2394. },
  2395. back: {
  2396. height: math.unit(5, "feet"),
  2397. weight: math.unit(90, "kg"),
  2398. name: "Back",
  2399. image: {
  2400. source: "./media/characters/fory/back.svg",
  2401. extra: 2962 / 2791,
  2402. bottom: 106 / 3071.8
  2403. }
  2404. },
  2405. foot: {
  2406. height: math.unit(2.14, "feet"),
  2407. name: "Foot",
  2408. image: {
  2409. source: "./media/characters/fory/foot.svg"
  2410. }
  2411. },
  2412. },
  2413. [
  2414. {
  2415. name: "Normal",
  2416. height: math.unit(5, "feet")
  2417. },
  2418. {
  2419. name: "Macro",
  2420. height: math.unit(50, "feet"),
  2421. default: true
  2422. },
  2423. {
  2424. name: "Megamacro",
  2425. height: math.unit(10, "miles")
  2426. },
  2427. {
  2428. name: "Gigamacro",
  2429. height: math.unit(5, "earths")
  2430. },
  2431. ]
  2432. ))
  2433. characterMakers.push(() => makeCharacter(
  2434. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2435. {
  2436. front: {
  2437. height: math.unit(7, "feet"),
  2438. weight: math.unit(90, "kg"),
  2439. name: "Front",
  2440. image: {
  2441. source: "./media/characters/kurrikage/front.svg",
  2442. extra: 1,
  2443. bottom: 0.035
  2444. }
  2445. },
  2446. back: {
  2447. height: math.unit(7, "feet"),
  2448. weight: math.unit(90, "lb"),
  2449. name: "Back",
  2450. image: {
  2451. source: "./media/characters/kurrikage/back.svg"
  2452. }
  2453. },
  2454. paw: {
  2455. height: math.unit(1.5, "feet"),
  2456. name: "Paw",
  2457. image: {
  2458. source: "./media/characters/kurrikage/paw.svg"
  2459. }
  2460. },
  2461. staff: {
  2462. height: math.unit(6.7, "feet"),
  2463. name: "Staff",
  2464. image: {
  2465. source: "./media/characters/kurrikage/staff.svg"
  2466. }
  2467. },
  2468. peek: {
  2469. height: math.unit(1.05, "feet"),
  2470. name: "Peeking",
  2471. image: {
  2472. source: "./media/characters/kurrikage/peek.svg",
  2473. bottom: 0.08
  2474. }
  2475. },
  2476. },
  2477. [
  2478. {
  2479. name: "Normal",
  2480. height: math.unit(12, "feet"),
  2481. default: true
  2482. },
  2483. {
  2484. name: "Big",
  2485. height: math.unit(20, "feet")
  2486. },
  2487. {
  2488. name: "Macro",
  2489. height: math.unit(500, "feet")
  2490. },
  2491. {
  2492. name: "Megamacro",
  2493. height: math.unit(20, "miles")
  2494. },
  2495. ]
  2496. ))
  2497. characterMakers.push(() => makeCharacter(
  2498. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2499. {
  2500. front: {
  2501. height: math.unit(6, "feet"),
  2502. weight: math.unit(75, "kg"),
  2503. name: "Front",
  2504. image: {
  2505. source: "./media/characters/shingo/front.svg",
  2506. extra: 706/681,
  2507. bottom: 11/717
  2508. }
  2509. },
  2510. frontAlt: {
  2511. height: math.unit(6, "feet"),
  2512. weight: math.unit(75, "kg"),
  2513. name: "Front (Alt)",
  2514. image: {
  2515. source: "./media/characters/shingo/front-alt.svg",
  2516. extra: 3511 / 3338,
  2517. bottom: 0.005
  2518. }
  2519. },
  2520. paw: {
  2521. height: math.unit(1, "feet"),
  2522. name: "Paw",
  2523. image: {
  2524. source: "./media/characters/shingo/paw.svg"
  2525. }
  2526. },
  2527. },
  2528. [
  2529. {
  2530. name: "Micro",
  2531. height: math.unit(4, "inches")
  2532. },
  2533. {
  2534. name: "Normal",
  2535. height: math.unit(6, "feet"),
  2536. default: true
  2537. },
  2538. {
  2539. name: "Macro",
  2540. height: math.unit(108, "feet")
  2541. },
  2542. {
  2543. name: "Macro+",
  2544. height: math.unit(1500, "feet")
  2545. },
  2546. ]
  2547. ))
  2548. characterMakers.push(() => makeCharacter(
  2549. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2550. {
  2551. side: {
  2552. height: math.unit(6, "feet"),
  2553. weight: math.unit(75, "kg"),
  2554. name: "Side",
  2555. image: {
  2556. source: "./media/characters/aigey/side.svg"
  2557. }
  2558. },
  2559. },
  2560. [
  2561. {
  2562. name: "Macro",
  2563. height: math.unit(200, "feet"),
  2564. default: true
  2565. },
  2566. {
  2567. name: "Megamacro",
  2568. height: math.unit(100, "miles")
  2569. },
  2570. ]
  2571. )
  2572. )
  2573. characterMakers.push(() => makeCharacter(
  2574. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2575. {
  2576. front: {
  2577. height: math.unit(5 + 5 / 12, "feet"),
  2578. weight: math.unit(75, "kg"),
  2579. name: "Front",
  2580. image: {
  2581. source: "./media/characters/natasha/front.svg",
  2582. extra: 859 / 824,
  2583. bottom: 23 / 879.6
  2584. }
  2585. },
  2586. frontNsfw: {
  2587. height: math.unit(5 + 5 / 12, "feet"),
  2588. weight: math.unit(75, "kg"),
  2589. name: "Front (NSFW)",
  2590. image: {
  2591. source: "./media/characters/natasha/front-nsfw.svg",
  2592. extra: 859 / 824,
  2593. bottom: 23 / 879.6
  2594. }
  2595. },
  2596. frontErect: {
  2597. height: math.unit(5 + 5 / 12, "feet"),
  2598. weight: math.unit(75, "kg"),
  2599. name: "Front (Erect)",
  2600. image: {
  2601. source: "./media/characters/natasha/front-erect.svg",
  2602. extra: 859 / 824,
  2603. bottom: 23 / 879.6
  2604. }
  2605. },
  2606. back: {
  2607. height: math.unit(5 + 5 / 12, "feet"),
  2608. weight: math.unit(75, "kg"),
  2609. name: "Back",
  2610. image: {
  2611. source: "./media/characters/natasha/back.svg",
  2612. extra: 887.9 / 852.6,
  2613. bottom: 9.7 / 896.4
  2614. }
  2615. },
  2616. backAlt: {
  2617. height: math.unit(5 + 5 / 12, "feet"),
  2618. weight: math.unit(75, "kg"),
  2619. name: "Back (Alt)",
  2620. image: {
  2621. source: "./media/characters/natasha/back-alt.svg",
  2622. extra: 1236.7 / 1192,
  2623. bottom: 22.3 / 1258.2
  2624. }
  2625. },
  2626. dick: {
  2627. height: math.unit(1.772, "feet"),
  2628. name: "Dick",
  2629. image: {
  2630. source: "./media/characters/natasha/dick.svg"
  2631. }
  2632. },
  2633. paw: {
  2634. height: math.unit(0.250, "meters"),
  2635. name: "Paw",
  2636. image: {
  2637. source: "./media/characters/natasha/paw.svg"
  2638. }
  2639. },
  2640. },
  2641. [
  2642. {
  2643. name: "Normal",
  2644. height: math.unit(5 + 5 / 12, "feet")
  2645. },
  2646. {
  2647. name: "Large",
  2648. height: math.unit(12, "feet")
  2649. },
  2650. {
  2651. name: "Macro",
  2652. height: math.unit(100, "feet"),
  2653. default: true
  2654. },
  2655. {
  2656. name: "Macro+",
  2657. height: math.unit(260, "feet")
  2658. },
  2659. {
  2660. name: "Macro++",
  2661. height: math.unit(1, "mile")
  2662. },
  2663. ]
  2664. ))
  2665. characterMakers.push(() => makeCharacter(
  2666. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2667. {
  2668. front: {
  2669. height: math.unit(6, "feet"),
  2670. weight: math.unit(75, "kg"),
  2671. name: "Front",
  2672. image: {
  2673. source: "./media/characters/malik/front.svg"
  2674. }
  2675. },
  2676. side: {
  2677. height: math.unit(6, "feet"),
  2678. weight: math.unit(75, "kg"),
  2679. name: "Side",
  2680. image: {
  2681. source: "./media/characters/malik/side.svg",
  2682. extra: 1.1539
  2683. }
  2684. },
  2685. back: {
  2686. height: math.unit(6, "feet"),
  2687. weight: math.unit(75, "kg"),
  2688. name: "Back",
  2689. image: {
  2690. source: "./media/characters/malik/back.svg"
  2691. }
  2692. },
  2693. },
  2694. [
  2695. {
  2696. name: "Macro",
  2697. height: math.unit(156, "feet"),
  2698. default: true
  2699. },
  2700. {
  2701. name: "Macro+",
  2702. height: math.unit(1188, "feet")
  2703. },
  2704. ]
  2705. ))
  2706. characterMakers.push(() => makeCharacter(
  2707. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2708. {
  2709. front: {
  2710. height: math.unit(6, "feet"),
  2711. weight: math.unit(75, "kg"),
  2712. name: "Front",
  2713. image: {
  2714. source: "./media/characters/sefer/front.svg",
  2715. extra: 848 / 659,
  2716. bottom: 28.3 / 876.442
  2717. }
  2718. },
  2719. back: {
  2720. height: math.unit(6, "feet"),
  2721. weight: math.unit(75, "kg"),
  2722. name: "Back",
  2723. image: {
  2724. source: "./media/characters/sefer/back.svg",
  2725. extra: 864 / 695,
  2726. bottom: 10 / 871
  2727. }
  2728. },
  2729. frontDressed: {
  2730. height: math.unit(6, "feet"),
  2731. weight: math.unit(75, "kg"),
  2732. name: "Front (Dressed)",
  2733. image: {
  2734. source: "./media/characters/sefer/front-dressed.svg",
  2735. extra: 839 / 653,
  2736. bottom: 37.6 / 878
  2737. }
  2738. },
  2739. },
  2740. [
  2741. {
  2742. name: "Normal",
  2743. height: math.unit(6, "feet"),
  2744. default: true
  2745. },
  2746. ]
  2747. ))
  2748. characterMakers.push(() => makeCharacter(
  2749. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2750. {
  2751. body: {
  2752. height: math.unit(2.2428, "meter"),
  2753. weight: math.unit(124.738, "kg"),
  2754. name: "Body",
  2755. image: {
  2756. extra: 1225 / 1050,
  2757. source: "./media/characters/north/front.svg"
  2758. }
  2759. }
  2760. },
  2761. [
  2762. {
  2763. name: "Micro",
  2764. height: math.unit(4, "inches")
  2765. },
  2766. {
  2767. name: "Macro",
  2768. height: math.unit(63, "meters")
  2769. },
  2770. {
  2771. name: "Megamacro",
  2772. height: math.unit(101, "miles"),
  2773. default: true
  2774. }
  2775. ]
  2776. ))
  2777. characterMakers.push(() => makeCharacter(
  2778. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2779. {
  2780. angled: {
  2781. height: math.unit(4, "meter"),
  2782. weight: math.unit(150, "kg"),
  2783. name: "Angled",
  2784. image: {
  2785. source: "./media/characters/talan/angled-sfw.svg",
  2786. bottom: 29 / 3734
  2787. }
  2788. },
  2789. angledNsfw: {
  2790. height: math.unit(4, "meter"),
  2791. weight: math.unit(150, "kg"),
  2792. name: "Angled (NSFW)",
  2793. image: {
  2794. source: "./media/characters/talan/angled-nsfw.svg",
  2795. bottom: 29 / 3734
  2796. }
  2797. },
  2798. frontNsfw: {
  2799. height: math.unit(4, "meter"),
  2800. weight: math.unit(150, "kg"),
  2801. name: "Front (NSFW)",
  2802. image: {
  2803. source: "./media/characters/talan/front-nsfw.svg",
  2804. bottom: 29 / 3734
  2805. }
  2806. },
  2807. sideNsfw: {
  2808. height: math.unit(4, "meter"),
  2809. weight: math.unit(150, "kg"),
  2810. name: "Side (NSFW)",
  2811. image: {
  2812. source: "./media/characters/talan/side-nsfw.svg",
  2813. bottom: 29 / 3734
  2814. }
  2815. },
  2816. back: {
  2817. height: math.unit(4, "meter"),
  2818. weight: math.unit(150, "kg"),
  2819. name: "Back",
  2820. image: {
  2821. source: "./media/characters/talan/back.svg"
  2822. }
  2823. },
  2824. dickBottom: {
  2825. height: math.unit(0.621, "meter"),
  2826. name: "Dick (Bottom)",
  2827. image: {
  2828. source: "./media/characters/talan/dick-bottom.svg"
  2829. }
  2830. },
  2831. dickTop: {
  2832. height: math.unit(0.621, "meter"),
  2833. name: "Dick (Top)",
  2834. image: {
  2835. source: "./media/characters/talan/dick-top.svg"
  2836. }
  2837. },
  2838. dickSide: {
  2839. height: math.unit(0.305, "meter"),
  2840. name: "Dick (Side)",
  2841. image: {
  2842. source: "./media/characters/talan/dick-side.svg"
  2843. }
  2844. },
  2845. dickFront: {
  2846. height: math.unit(0.305, "meter"),
  2847. name: "Dick (Front)",
  2848. image: {
  2849. source: "./media/characters/talan/dick-front.svg"
  2850. }
  2851. },
  2852. },
  2853. [
  2854. {
  2855. name: "Normal",
  2856. height: math.unit(4, "meters")
  2857. },
  2858. {
  2859. name: "Macro",
  2860. height: math.unit(100, "meters")
  2861. },
  2862. {
  2863. name: "Megamacro",
  2864. height: math.unit(2, "miles"),
  2865. default: true
  2866. },
  2867. {
  2868. name: "Gigamacro",
  2869. height: math.unit(5000, "miles")
  2870. },
  2871. {
  2872. name: "Teramacro",
  2873. height: math.unit(100, "parsecs")
  2874. }
  2875. ]
  2876. ))
  2877. characterMakers.push(() => makeCharacter(
  2878. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2879. {
  2880. front: {
  2881. height: math.unit(2, "meter"),
  2882. weight: math.unit(90, "kg"),
  2883. name: "Front",
  2884. image: {
  2885. source: "./media/characters/gael'rathus/front.svg"
  2886. }
  2887. },
  2888. frontAlt: {
  2889. height: math.unit(2, "meter"),
  2890. weight: math.unit(90, "kg"),
  2891. name: "Front (alt)",
  2892. image: {
  2893. source: "./media/characters/gael'rathus/front-alt.svg"
  2894. }
  2895. },
  2896. frontAlt2: {
  2897. height: math.unit(2, "meter"),
  2898. weight: math.unit(90, "kg"),
  2899. name: "Front (alt 2)",
  2900. image: {
  2901. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2902. }
  2903. }
  2904. },
  2905. [
  2906. {
  2907. name: "Normal",
  2908. height: math.unit(9, "feet"),
  2909. default: true
  2910. },
  2911. {
  2912. name: "Large",
  2913. height: math.unit(25, "feet")
  2914. },
  2915. {
  2916. name: "Macro",
  2917. height: math.unit(0.25, "miles")
  2918. },
  2919. {
  2920. name: "Megamacro",
  2921. height: math.unit(10, "miles")
  2922. }
  2923. ]
  2924. ))
  2925. characterMakers.push(() => makeCharacter(
  2926. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2927. {
  2928. side: {
  2929. height: math.unit(2, "meter"),
  2930. weight: math.unit(140, "kg"),
  2931. name: "Side",
  2932. image: {
  2933. source: "./media/characters/sosha/side.svg",
  2934. bottom: 0.042
  2935. }
  2936. },
  2937. },
  2938. [
  2939. {
  2940. name: "Normal",
  2941. height: math.unit(12, "feet"),
  2942. default: true
  2943. }
  2944. ]
  2945. ))
  2946. characterMakers.push(() => makeCharacter(
  2947. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2948. {
  2949. side: {
  2950. height: math.unit(5 + 5 / 12, "feet"),
  2951. weight: math.unit(170, "kg"),
  2952. name: "Side",
  2953. image: {
  2954. source: "./media/characters/runnola/side.svg",
  2955. extra: 741 / 448,
  2956. bottom: 0.05
  2957. }
  2958. },
  2959. },
  2960. [
  2961. {
  2962. name: "Small",
  2963. height: math.unit(3, "feet")
  2964. },
  2965. {
  2966. name: "Normal",
  2967. height: math.unit(5 + 5 / 12, "feet"),
  2968. default: true
  2969. },
  2970. {
  2971. name: "Big",
  2972. height: math.unit(10, "feet")
  2973. },
  2974. ]
  2975. ))
  2976. characterMakers.push(() => makeCharacter(
  2977. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2978. {
  2979. front: {
  2980. height: math.unit(2, "meter"),
  2981. weight: math.unit(50, "kg"),
  2982. name: "Front",
  2983. image: {
  2984. source: "./media/characters/kurribird/front.svg",
  2985. bottom: 0.015
  2986. }
  2987. },
  2988. frontAlt: {
  2989. height: math.unit(1.5, "meter"),
  2990. weight: math.unit(50, "kg"),
  2991. name: "Front (Alt)",
  2992. image: {
  2993. source: "./media/characters/kurribird/front-alt.svg",
  2994. extra: 1.45
  2995. }
  2996. },
  2997. },
  2998. [
  2999. {
  3000. name: "Normal",
  3001. height: math.unit(7, "feet")
  3002. },
  3003. {
  3004. name: "Big",
  3005. height: math.unit(12, "feet"),
  3006. default: true
  3007. },
  3008. {
  3009. name: "Macro",
  3010. height: math.unit(1500, "feet")
  3011. },
  3012. {
  3013. name: "Megamacro",
  3014. height: math.unit(2, "miles")
  3015. }
  3016. ]
  3017. ))
  3018. characterMakers.push(() => makeCharacter(
  3019. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3020. {
  3021. front: {
  3022. height: math.unit(2, "meter"),
  3023. weight: math.unit(80, "kg"),
  3024. name: "Front",
  3025. image: {
  3026. source: "./media/characters/elbial/front.svg",
  3027. extra: 1643 / 1556,
  3028. bottom: 60.2 / 1696
  3029. }
  3030. },
  3031. side: {
  3032. height: math.unit(2, "meter"),
  3033. weight: math.unit(80, "kg"),
  3034. name: "Side",
  3035. image: {
  3036. source: "./media/characters/elbial/side.svg",
  3037. extra: 1630 / 1565,
  3038. bottom: 71.5 / 1697
  3039. }
  3040. },
  3041. back: {
  3042. height: math.unit(2, "meter"),
  3043. weight: math.unit(80, "kg"),
  3044. name: "Back",
  3045. image: {
  3046. source: "./media/characters/elbial/back.svg",
  3047. extra: 1668 / 1595,
  3048. bottom: 5.6 / 1672
  3049. }
  3050. },
  3051. frontDressed: {
  3052. height: math.unit(2, "meter"),
  3053. weight: math.unit(80, "kg"),
  3054. name: "Front (Dressed)",
  3055. image: {
  3056. source: "./media/characters/elbial/front-dressed.svg",
  3057. extra: 1653 / 1584,
  3058. bottom: 57 / 1708
  3059. }
  3060. },
  3061. genitals: {
  3062. height: math.unit(2 / 3.367, "meter"),
  3063. name: "Genitals",
  3064. image: {
  3065. source: "./media/characters/elbial/genitals.svg"
  3066. }
  3067. },
  3068. },
  3069. [
  3070. {
  3071. name: "Large",
  3072. height: math.unit(100, "feet")
  3073. },
  3074. {
  3075. name: "Macro",
  3076. height: math.unit(500, "feet"),
  3077. default: true
  3078. },
  3079. {
  3080. name: "Megamacro",
  3081. height: math.unit(10, "miles")
  3082. },
  3083. {
  3084. name: "Gigamacro",
  3085. height: math.unit(25000, "miles")
  3086. },
  3087. {
  3088. name: "Full-Size",
  3089. height: math.unit(8000000, "gigaparsecs")
  3090. }
  3091. ]
  3092. ))
  3093. characterMakers.push(() => makeCharacter(
  3094. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3095. {
  3096. front: {
  3097. height: math.unit(2, "meter"),
  3098. weight: math.unit(60, "kg"),
  3099. name: "Front",
  3100. image: {
  3101. source: "./media/characters/noah/front.svg"
  3102. }
  3103. },
  3104. talons: {
  3105. height: math.unit(0.315, "meter"),
  3106. name: "Talons",
  3107. image: {
  3108. source: "./media/characters/noah/talons.svg"
  3109. }
  3110. }
  3111. },
  3112. [
  3113. {
  3114. name: "Large",
  3115. height: math.unit(50, "feet")
  3116. },
  3117. {
  3118. name: "Macro",
  3119. height: math.unit(750, "feet"),
  3120. default: true
  3121. },
  3122. {
  3123. name: "Megamacro",
  3124. height: math.unit(50, "miles")
  3125. },
  3126. {
  3127. name: "Gigamacro",
  3128. height: math.unit(100000, "miles")
  3129. },
  3130. {
  3131. name: "Full-Size",
  3132. height: math.unit(3000000000, "miles")
  3133. }
  3134. ]
  3135. ))
  3136. characterMakers.push(() => makeCharacter(
  3137. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3138. {
  3139. front: {
  3140. height: math.unit(2, "meter"),
  3141. weight: math.unit(80, "kg"),
  3142. name: "Front",
  3143. image: {
  3144. source: "./media/characters/natalya/front.svg"
  3145. }
  3146. },
  3147. back: {
  3148. height: math.unit(2, "meter"),
  3149. weight: math.unit(80, "kg"),
  3150. name: "Back",
  3151. image: {
  3152. source: "./media/characters/natalya/back.svg"
  3153. }
  3154. }
  3155. },
  3156. [
  3157. {
  3158. name: "Normal",
  3159. height: math.unit(150, "feet"),
  3160. default: true
  3161. },
  3162. {
  3163. name: "Megamacro",
  3164. height: math.unit(5, "miles")
  3165. },
  3166. {
  3167. name: "Full-Size",
  3168. height: math.unit(600, "kiloparsecs")
  3169. }
  3170. ]
  3171. ))
  3172. characterMakers.push(() => makeCharacter(
  3173. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3174. {
  3175. front: {
  3176. height: math.unit(2, "meter"),
  3177. weight: math.unit(50, "kg"),
  3178. name: "Front",
  3179. image: {
  3180. source: "./media/characters/erestrebah/front.svg",
  3181. extra: 208 / 193,
  3182. bottom: 0.055
  3183. }
  3184. },
  3185. back: {
  3186. height: math.unit(2, "meter"),
  3187. weight: math.unit(50, "kg"),
  3188. name: "Back",
  3189. image: {
  3190. source: "./media/characters/erestrebah/back.svg",
  3191. extra: 1.3
  3192. }
  3193. }
  3194. },
  3195. [
  3196. {
  3197. name: "Normal",
  3198. height: math.unit(10, "feet")
  3199. },
  3200. {
  3201. name: "Large",
  3202. height: math.unit(50, "feet"),
  3203. default: true
  3204. },
  3205. {
  3206. name: "Macro",
  3207. height: math.unit(300, "feet")
  3208. },
  3209. {
  3210. name: "Macro+",
  3211. height: math.unit(750, "feet")
  3212. },
  3213. {
  3214. name: "Megamacro",
  3215. height: math.unit(3, "miles")
  3216. }
  3217. ]
  3218. ))
  3219. characterMakers.push(() => makeCharacter(
  3220. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3221. {
  3222. front: {
  3223. height: math.unit(2, "meter"),
  3224. weight: math.unit(80, "kg"),
  3225. name: "Front",
  3226. image: {
  3227. source: "./media/characters/jennifer/front.svg",
  3228. bottom: 0.11,
  3229. extra: 1.16
  3230. }
  3231. },
  3232. frontAlt: {
  3233. height: math.unit(2, "meter"),
  3234. weight: math.unit(80, "kg"),
  3235. name: "Front (Alt)",
  3236. image: {
  3237. source: "./media/characters/jennifer/front-alt.svg"
  3238. }
  3239. }
  3240. },
  3241. [
  3242. {
  3243. name: "Canon Height",
  3244. height: math.unit(120, "feet"),
  3245. default: true
  3246. },
  3247. {
  3248. name: "Macro+",
  3249. height: math.unit(300, "feet")
  3250. },
  3251. {
  3252. name: "Megamacro",
  3253. height: math.unit(20000, "feet")
  3254. }
  3255. ]
  3256. ))
  3257. characterMakers.push(() => makeCharacter(
  3258. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3259. {
  3260. front: {
  3261. height: math.unit(2, "meter"),
  3262. weight: math.unit(50, "kg"),
  3263. name: "Front",
  3264. image: {
  3265. source: "./media/characters/kalista/front.svg",
  3266. extra: 1947 / 1700,
  3267. bottom: 76.6 / 1412.98
  3268. }
  3269. },
  3270. back: {
  3271. height: math.unit(2, "meter"),
  3272. weight: math.unit(50, "kg"),
  3273. name: "Back",
  3274. image: {
  3275. source: "./media/characters/kalista/back.svg",
  3276. extra: 1366 / 1156,
  3277. bottom: 33.9 / 1362.78
  3278. }
  3279. }
  3280. },
  3281. [
  3282. {
  3283. name: "Uncomfortably Small",
  3284. height: math.unit(10, "feet")
  3285. },
  3286. {
  3287. name: "Small",
  3288. height: math.unit(30, "feet")
  3289. },
  3290. {
  3291. name: "Macro",
  3292. height: math.unit(100, "feet"),
  3293. default: true
  3294. },
  3295. {
  3296. name: "Macro+",
  3297. height: math.unit(2000, "feet")
  3298. },
  3299. {
  3300. name: "True Form",
  3301. height: math.unit(8924, "miles")
  3302. }
  3303. ]
  3304. ))
  3305. characterMakers.push(() => makeCharacter(
  3306. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3307. {
  3308. front: {
  3309. height: math.unit(2, "meter"),
  3310. weight: math.unit(120, "kg"),
  3311. name: "Front",
  3312. image: {
  3313. source: "./media/characters/ggv/front.svg"
  3314. }
  3315. },
  3316. side: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(120, "kg"),
  3319. name: "Side",
  3320. image: {
  3321. source: "./media/characters/ggv/side.svg"
  3322. }
  3323. }
  3324. },
  3325. [
  3326. {
  3327. name: "Extremely Puny",
  3328. height: math.unit(9 + 5 / 12, "feet")
  3329. },
  3330. {
  3331. name: "Horribly Small",
  3332. height: math.unit(47.7, "miles"),
  3333. default: true
  3334. },
  3335. {
  3336. name: "Reasonably Sized",
  3337. height: math.unit(25000, "parsecs")
  3338. },
  3339. {
  3340. name: "Slightly Uncompressed",
  3341. height: math.unit(7.77e31, "parsecs")
  3342. },
  3343. {
  3344. name: "Omniversal",
  3345. height: math.unit(1e300, "meters")
  3346. },
  3347. ]
  3348. ))
  3349. characterMakers.push(() => makeCharacter(
  3350. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3351. {
  3352. front: {
  3353. height: math.unit(2, "meter"),
  3354. weight: math.unit(75, "lb"),
  3355. name: "Front",
  3356. image: {
  3357. source: "./media/characters/napalm/front.svg"
  3358. }
  3359. },
  3360. back: {
  3361. height: math.unit(2, "meter"),
  3362. weight: math.unit(75, "lb"),
  3363. name: "Back",
  3364. image: {
  3365. source: "./media/characters/napalm/back.svg"
  3366. }
  3367. }
  3368. },
  3369. [
  3370. {
  3371. name: "Standard",
  3372. height: math.unit(55, "feet"),
  3373. default: true
  3374. }
  3375. ]
  3376. ))
  3377. characterMakers.push(() => makeCharacter(
  3378. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3379. {
  3380. front: {
  3381. height: math.unit(7 + 5 / 6, "feet"),
  3382. weight: math.unit(325, "lb"),
  3383. name: "Front",
  3384. image: {
  3385. source: "./media/characters/asana/front.svg",
  3386. extra: 1133 / 1060,
  3387. bottom: 15.2 / 1148.6
  3388. }
  3389. },
  3390. back: {
  3391. height: math.unit(7 + 5 / 6, "feet"),
  3392. weight: math.unit(325, "lb"),
  3393. name: "Back",
  3394. image: {
  3395. source: "./media/characters/asana/back.svg",
  3396. extra: 1114 / 1043,
  3397. bottom: 5 / 1120
  3398. }
  3399. },
  3400. dressedDark: {
  3401. height: math.unit(7 + 5 / 6, "feet"),
  3402. weight: math.unit(325, "lb"),
  3403. name: "Dressed (Dark)",
  3404. image: {
  3405. source: "./media/characters/asana/dressed-dark.svg",
  3406. extra: 1133 / 1060,
  3407. bottom: 15.2 / 1148.6
  3408. }
  3409. },
  3410. dressedLight: {
  3411. height: math.unit(7 + 5 / 6, "feet"),
  3412. weight: math.unit(325, "lb"),
  3413. name: "Dressed (Light)",
  3414. image: {
  3415. source: "./media/characters/asana/dressed-light.svg",
  3416. extra: 1133 / 1060,
  3417. bottom: 15.2 / 1148.6
  3418. }
  3419. },
  3420. },
  3421. [
  3422. {
  3423. name: "Standard",
  3424. height: math.unit(7 + 5 / 6, "feet"),
  3425. default: true
  3426. },
  3427. {
  3428. name: "Large",
  3429. height: math.unit(10, "meters")
  3430. },
  3431. {
  3432. name: "Macro",
  3433. height: math.unit(2500, "meters")
  3434. },
  3435. {
  3436. name: "Megamacro",
  3437. height: math.unit(5e6, "meters")
  3438. },
  3439. {
  3440. name: "Examacro",
  3441. height: math.unit(5e12, "lightyears")
  3442. },
  3443. {
  3444. name: "Max Size",
  3445. height: math.unit(1e31, "lightyears")
  3446. }
  3447. ]
  3448. ))
  3449. characterMakers.push(() => makeCharacter(
  3450. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3451. {
  3452. front: {
  3453. height: math.unit(2, "meter"),
  3454. weight: math.unit(60, "kg"),
  3455. name: "Front",
  3456. image: {
  3457. source: "./media/characters/ebony/front.svg",
  3458. bottom: 0.03,
  3459. extra: 1045 / 810 + 0.03
  3460. }
  3461. },
  3462. side: {
  3463. height: math.unit(2, "meter"),
  3464. weight: math.unit(60, "kg"),
  3465. name: "Side",
  3466. image: {
  3467. source: "./media/characters/ebony/side.svg",
  3468. bottom: 0.03,
  3469. extra: 1045 / 810 + 0.03
  3470. }
  3471. },
  3472. back: {
  3473. height: math.unit(2, "meter"),
  3474. weight: math.unit(60, "kg"),
  3475. name: "Back",
  3476. image: {
  3477. source: "./media/characters/ebony/back.svg",
  3478. bottom: 0.01,
  3479. extra: 1045 / 810 + 0.01
  3480. }
  3481. },
  3482. },
  3483. [
  3484. // TODO check why I did this lol
  3485. {
  3486. name: "Standard",
  3487. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3488. default: true
  3489. },
  3490. {
  3491. name: "Macro",
  3492. height: math.unit(200, "feet")
  3493. },
  3494. {
  3495. name: "Gigamacro",
  3496. height: math.unit(13000, "km")
  3497. }
  3498. ]
  3499. ))
  3500. characterMakers.push(() => makeCharacter(
  3501. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3502. {
  3503. front: {
  3504. height: math.unit(6, "feet"),
  3505. weight: math.unit(175, "lb"),
  3506. name: "Front",
  3507. image: {
  3508. source: "./media/characters/mountain/front.svg",
  3509. extra: 972 / 955,
  3510. bottom: 64 / 1036.6
  3511. }
  3512. },
  3513. back: {
  3514. height: math.unit(6, "feet"),
  3515. weight: math.unit(175, "lb"),
  3516. name: "Back",
  3517. image: {
  3518. source: "./media/characters/mountain/back.svg",
  3519. extra: 970 / 950,
  3520. bottom: 28.25 / 999
  3521. }
  3522. },
  3523. },
  3524. [
  3525. {
  3526. name: "Large",
  3527. height: math.unit(20, "meters")
  3528. },
  3529. {
  3530. name: "Macro",
  3531. height: math.unit(300, "meters")
  3532. },
  3533. {
  3534. name: "Gigamacro",
  3535. height: math.unit(10000, "km"),
  3536. default: true
  3537. },
  3538. {
  3539. name: "Examacro",
  3540. height: math.unit(10e9, "lightyears")
  3541. }
  3542. ]
  3543. ))
  3544. characterMakers.push(() => makeCharacter(
  3545. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3546. {
  3547. front: {
  3548. height: math.unit(8, "feet"),
  3549. weight: math.unit(500, "lb"),
  3550. name: "Front",
  3551. image: {
  3552. source: "./media/characters/rick/front.svg"
  3553. }
  3554. }
  3555. },
  3556. [
  3557. {
  3558. name: "Normal",
  3559. height: math.unit(8, "feet"),
  3560. default: true
  3561. },
  3562. {
  3563. name: "Macro",
  3564. height: math.unit(5, "km")
  3565. }
  3566. ]
  3567. ))
  3568. characterMakers.push(() => makeCharacter(
  3569. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3570. {
  3571. front: {
  3572. height: math.unit(8, "feet"),
  3573. weight: math.unit(120, "lb"),
  3574. name: "Front",
  3575. image: {
  3576. source: "./media/characters/ona/front.svg"
  3577. }
  3578. },
  3579. frontAlt: {
  3580. height: math.unit(8, "feet"),
  3581. weight: math.unit(120, "lb"),
  3582. name: "Front (Alt)",
  3583. image: {
  3584. source: "./media/characters/ona/front-alt.svg"
  3585. }
  3586. },
  3587. back: {
  3588. height: math.unit(8, "feet"),
  3589. weight: math.unit(120, "lb"),
  3590. name: "Back",
  3591. image: {
  3592. source: "./media/characters/ona/back.svg"
  3593. }
  3594. },
  3595. foot: {
  3596. height: math.unit(1.1, "feet"),
  3597. name: "Foot",
  3598. image: {
  3599. source: "./media/characters/ona/foot.svg"
  3600. }
  3601. }
  3602. },
  3603. [
  3604. {
  3605. name: "Megamacro",
  3606. height: math.unit(70, "km"),
  3607. default: true
  3608. },
  3609. {
  3610. name: "Gigamacro",
  3611. height: math.unit(681818, "miles")
  3612. },
  3613. {
  3614. name: "Examacro",
  3615. height: math.unit(3800000, "lightyears")
  3616. },
  3617. ]
  3618. ))
  3619. characterMakers.push(() => makeCharacter(
  3620. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3621. {
  3622. front: {
  3623. height: math.unit(12, "feet"),
  3624. weight: math.unit(3000, "lb"),
  3625. name: "Front",
  3626. image: {
  3627. source: "./media/characters/mech/front.svg",
  3628. extra: 2900 / 2770,
  3629. bottom: 110 / 3010
  3630. }
  3631. },
  3632. back: {
  3633. height: math.unit(12, "feet"),
  3634. weight: math.unit(3000, "lb"),
  3635. name: "Back",
  3636. image: {
  3637. source: "./media/characters/mech/back.svg",
  3638. extra: 3011 / 2890,
  3639. bottom: 94 / 3105
  3640. }
  3641. },
  3642. maw: {
  3643. height: math.unit(3.07, "feet"),
  3644. name: "Maw",
  3645. image: {
  3646. source: "./media/characters/mech/maw.svg"
  3647. }
  3648. },
  3649. head: {
  3650. height: math.unit(2.82, "feet"),
  3651. name: "Head",
  3652. image: {
  3653. source: "./media/characters/mech/head.svg"
  3654. }
  3655. },
  3656. dick: {
  3657. height: math.unit(1.43, "feet"),
  3658. name: "Dick",
  3659. image: {
  3660. source: "./media/characters/mech/dick.svg"
  3661. }
  3662. },
  3663. },
  3664. [
  3665. {
  3666. name: "Normal",
  3667. height: math.unit(12, "feet")
  3668. },
  3669. {
  3670. name: "Macro",
  3671. height: math.unit(300, "feet"),
  3672. default: true
  3673. },
  3674. {
  3675. name: "Macro+",
  3676. height: math.unit(1500, "feet")
  3677. },
  3678. ]
  3679. ))
  3680. characterMakers.push(() => makeCharacter(
  3681. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3682. {
  3683. front: {
  3684. height: math.unit(1.3, "meter"),
  3685. weight: math.unit(30, "kg"),
  3686. name: "Front",
  3687. image: {
  3688. source: "./media/characters/gregory/front.svg",
  3689. }
  3690. }
  3691. },
  3692. [
  3693. {
  3694. name: "Normal",
  3695. height: math.unit(1.3, "meter"),
  3696. default: true
  3697. },
  3698. {
  3699. name: "Macro",
  3700. height: math.unit(20, "meter")
  3701. }
  3702. ]
  3703. ))
  3704. characterMakers.push(() => makeCharacter(
  3705. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3706. {
  3707. front: {
  3708. height: math.unit(2.8, "meter"),
  3709. weight: math.unit(200, "kg"),
  3710. name: "Front",
  3711. image: {
  3712. source: "./media/characters/elory/front.svg",
  3713. }
  3714. }
  3715. },
  3716. [
  3717. {
  3718. name: "Normal",
  3719. height: math.unit(2.8, "meter"),
  3720. default: true
  3721. },
  3722. {
  3723. name: "Macro",
  3724. height: math.unit(38, "meter")
  3725. }
  3726. ]
  3727. ))
  3728. characterMakers.push(() => makeCharacter(
  3729. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3730. {
  3731. front: {
  3732. height: math.unit(470, "feet"),
  3733. weight: math.unit(924, "tons"),
  3734. name: "Front",
  3735. image: {
  3736. source: "./media/characters/angelpatamon/front.svg",
  3737. }
  3738. }
  3739. },
  3740. [
  3741. {
  3742. name: "Normal",
  3743. height: math.unit(470, "feet"),
  3744. default: true
  3745. },
  3746. {
  3747. name: "Deity Size I",
  3748. height: math.unit(28651.2, "km")
  3749. },
  3750. {
  3751. name: "Deity Size II",
  3752. height: math.unit(171907.2, "km")
  3753. }
  3754. ]
  3755. ))
  3756. characterMakers.push(() => makeCharacter(
  3757. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3758. {
  3759. side: {
  3760. height: math.unit(7.2, "meter"),
  3761. weight: math.unit(8.2, "tons"),
  3762. name: "Side",
  3763. image: {
  3764. source: "./media/characters/cryae/side.svg",
  3765. extra: 3500 / 1500
  3766. }
  3767. }
  3768. },
  3769. [
  3770. {
  3771. name: "Normal",
  3772. height: math.unit(7.2, "meter"),
  3773. default: true
  3774. }
  3775. ]
  3776. ))
  3777. characterMakers.push(() => makeCharacter(
  3778. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3779. {
  3780. front: {
  3781. height: math.unit(6, "feet"),
  3782. weight: math.unit(175, "lb"),
  3783. name: "Front",
  3784. image: {
  3785. source: "./media/characters/xera/front.svg",
  3786. extra: 2377 / 1972,
  3787. bottom: 75.5 / 2452
  3788. }
  3789. },
  3790. side: {
  3791. height: math.unit(6, "feet"),
  3792. weight: math.unit(175, "lb"),
  3793. name: "Side",
  3794. image: {
  3795. source: "./media/characters/xera/side.svg",
  3796. extra: 2345 / 2019,
  3797. bottom: 39.7 / 2384
  3798. }
  3799. },
  3800. back: {
  3801. height: math.unit(6, "feet"),
  3802. weight: math.unit(175, "lb"),
  3803. name: "Back",
  3804. image: {
  3805. source: "./media/characters/xera/back.svg",
  3806. extra: 2095 / 1984,
  3807. bottom: 67 / 2166
  3808. }
  3809. },
  3810. },
  3811. [
  3812. {
  3813. name: "Small",
  3814. height: math.unit(10, "feet")
  3815. },
  3816. {
  3817. name: "Macro",
  3818. height: math.unit(500, "meters"),
  3819. default: true
  3820. },
  3821. {
  3822. name: "Macro+",
  3823. height: math.unit(10, "km")
  3824. },
  3825. {
  3826. name: "Gigamacro",
  3827. height: math.unit(25000, "km")
  3828. },
  3829. {
  3830. name: "Teramacro",
  3831. height: math.unit(3e6, "km")
  3832. }
  3833. ]
  3834. ))
  3835. characterMakers.push(() => makeCharacter(
  3836. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3837. {
  3838. front: {
  3839. height: math.unit(6, "feet"),
  3840. weight: math.unit(175, "lb"),
  3841. name: "Front",
  3842. image: {
  3843. source: "./media/characters/nebula/front.svg",
  3844. extra: 2566 / 2362,
  3845. bottom: 81 / 2644
  3846. }
  3847. }
  3848. },
  3849. [
  3850. {
  3851. name: "Small",
  3852. height: math.unit(4.5, "meters")
  3853. },
  3854. {
  3855. name: "Macro",
  3856. height: math.unit(1500, "meters"),
  3857. default: true
  3858. },
  3859. {
  3860. name: "Megamacro",
  3861. height: math.unit(150, "km")
  3862. },
  3863. {
  3864. name: "Gigamacro",
  3865. height: math.unit(27000, "km")
  3866. }
  3867. ]
  3868. ))
  3869. characterMakers.push(() => makeCharacter(
  3870. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3871. {
  3872. front: {
  3873. height: math.unit(6, "feet"),
  3874. weight: math.unit(225, "lb"),
  3875. name: "Front",
  3876. image: {
  3877. source: "./media/characters/abysgar/front.svg"
  3878. }
  3879. }
  3880. },
  3881. [
  3882. {
  3883. name: "Small",
  3884. height: math.unit(4.5, "meters")
  3885. },
  3886. {
  3887. name: "Macro",
  3888. height: math.unit(1250, "meters"),
  3889. default: true
  3890. },
  3891. {
  3892. name: "Megamacro",
  3893. height: math.unit(125, "km")
  3894. },
  3895. {
  3896. name: "Gigamacro",
  3897. height: math.unit(26000, "km")
  3898. }
  3899. ]
  3900. ))
  3901. characterMakers.push(() => makeCharacter(
  3902. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3903. {
  3904. front: {
  3905. height: math.unit(6, "feet"),
  3906. weight: math.unit(180, "lb"),
  3907. name: "Front",
  3908. image: {
  3909. source: "./media/characters/yakuz/front.svg"
  3910. }
  3911. }
  3912. },
  3913. [
  3914. {
  3915. name: "Small",
  3916. height: math.unit(5, "meters")
  3917. },
  3918. {
  3919. name: "Macro",
  3920. height: math.unit(1500, "meters"),
  3921. default: true
  3922. },
  3923. {
  3924. name: "Megamacro",
  3925. height: math.unit(200, "km")
  3926. },
  3927. {
  3928. name: "Gigamacro",
  3929. height: math.unit(100000, "km")
  3930. }
  3931. ]
  3932. ))
  3933. characterMakers.push(() => makeCharacter(
  3934. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3935. {
  3936. front: {
  3937. height: math.unit(6, "feet"),
  3938. weight: math.unit(175, "lb"),
  3939. name: "Front",
  3940. image: {
  3941. source: "./media/characters/mirova/front.svg",
  3942. extra: 3334 / 3071,
  3943. bottom: 42 / 3375.6
  3944. }
  3945. }
  3946. },
  3947. [
  3948. {
  3949. name: "Small",
  3950. height: math.unit(5, "meters")
  3951. },
  3952. {
  3953. name: "Macro",
  3954. height: math.unit(900, "meters"),
  3955. default: true
  3956. },
  3957. {
  3958. name: "Megamacro",
  3959. height: math.unit(135, "km")
  3960. },
  3961. {
  3962. name: "Gigamacro",
  3963. height: math.unit(20000, "km")
  3964. }
  3965. ]
  3966. ))
  3967. characterMakers.push(() => makeCharacter(
  3968. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3969. {
  3970. side: {
  3971. height: math.unit(28.35, "feet"),
  3972. weight: math.unit(99.75, "tons"),
  3973. name: "Side",
  3974. image: {
  3975. source: "./media/characters/asana-mech/side.svg",
  3976. extra: 923 / 699,
  3977. bottom: 50 / 975
  3978. }
  3979. },
  3980. chaingun: {
  3981. height: math.unit(7, "feet"),
  3982. weight: math.unit(2400, "lb"),
  3983. name: "Chaingun",
  3984. image: {
  3985. source: "./media/characters/asana-mech/chaingun.svg"
  3986. }
  3987. },
  3988. laser: {
  3989. height: math.unit(7.12, "feet"),
  3990. weight: math.unit(2000, "lb"),
  3991. name: "Laser",
  3992. image: {
  3993. source: "./media/characters/asana-mech/laser.svg"
  3994. }
  3995. },
  3996. },
  3997. [
  3998. {
  3999. name: "Normal",
  4000. height: math.unit(28.35, "feet"),
  4001. default: true
  4002. },
  4003. {
  4004. name: "Macro",
  4005. height: math.unit(2500, "feet")
  4006. },
  4007. {
  4008. name: "Megamacro",
  4009. height: math.unit(25, "miles")
  4010. },
  4011. {
  4012. name: "Examacro",
  4013. height: math.unit(6e8, "lightyears")
  4014. },
  4015. ]
  4016. ))
  4017. characterMakers.push(() => makeCharacter(
  4018. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4019. {
  4020. front: {
  4021. height: math.unit(5, "meters"),
  4022. weight: math.unit(1000, "kg"),
  4023. name: "Front",
  4024. image: {
  4025. source: "./media/characters/asche/front.svg",
  4026. extra: 1258 / 1190,
  4027. bottom: 47 / 1305
  4028. }
  4029. },
  4030. frontUnderwear: {
  4031. height: math.unit(5, "meters"),
  4032. weight: math.unit(1000, "kg"),
  4033. name: "Front (Underwear)",
  4034. image: {
  4035. source: "./media/characters/asche/front-underwear.svg",
  4036. extra: 1258 / 1190,
  4037. bottom: 47 / 1305
  4038. }
  4039. },
  4040. frontDressed: {
  4041. height: math.unit(5, "meters"),
  4042. weight: math.unit(1000, "kg"),
  4043. name: "Front (Dressed)",
  4044. image: {
  4045. source: "./media/characters/asche/front-dressed.svg",
  4046. extra: 1258 / 1190,
  4047. bottom: 47 / 1305
  4048. }
  4049. },
  4050. frontArmor: {
  4051. height: math.unit(5, "meters"),
  4052. weight: math.unit(1000, "kg"),
  4053. name: "Front (Armored)",
  4054. image: {
  4055. source: "./media/characters/asche/front-armored.svg",
  4056. extra: 1374 / 1308,
  4057. bottom: 23 / 1397
  4058. }
  4059. },
  4060. mp724: {
  4061. height: math.unit(0.96, "meters"),
  4062. weight: math.unit(38, "kg"),
  4063. name: "H&K MP724",
  4064. image: {
  4065. source: "./media/characters/asche/h&k-mp724.svg"
  4066. }
  4067. },
  4068. side: {
  4069. height: math.unit(5, "meters"),
  4070. weight: math.unit(1000, "kg"),
  4071. name: "Side",
  4072. image: {
  4073. source: "./media/characters/asche/side.svg",
  4074. extra: 1717 / 1609,
  4075. bottom: 0.005
  4076. }
  4077. },
  4078. back: {
  4079. height: math.unit(5, "meters"),
  4080. weight: math.unit(1000, "kg"),
  4081. name: "Back",
  4082. image: {
  4083. source: "./media/characters/asche/back.svg",
  4084. extra: 1570 / 1501
  4085. }
  4086. },
  4087. },
  4088. [
  4089. {
  4090. name: "DEFCON 5",
  4091. height: math.unit(5, "meters")
  4092. },
  4093. {
  4094. name: "DEFCON 4",
  4095. height: math.unit(500, "meters"),
  4096. default: true
  4097. },
  4098. {
  4099. name: "DEFCON 3",
  4100. height: math.unit(5, "km")
  4101. },
  4102. {
  4103. name: "DEFCON 2",
  4104. height: math.unit(500, "km")
  4105. },
  4106. {
  4107. name: "DEFCON 1",
  4108. height: math.unit(500000, "km")
  4109. },
  4110. {
  4111. name: "DEFCON 0",
  4112. height: math.unit(3, "gigaparsecs")
  4113. },
  4114. ]
  4115. ))
  4116. characterMakers.push(() => makeCharacter(
  4117. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4118. {
  4119. front: {
  4120. height: math.unit(2, "meters"),
  4121. weight: math.unit(76, "kg"),
  4122. name: "Front",
  4123. image: {
  4124. source: "./media/characters/gale/front.svg"
  4125. }
  4126. },
  4127. frontAlt1: {
  4128. height: math.unit(2, "meters"),
  4129. weight: math.unit(76, "kg"),
  4130. name: "Front (Alt 1)",
  4131. image: {
  4132. source: "./media/characters/gale/front-alt-1.svg"
  4133. }
  4134. },
  4135. frontAlt2: {
  4136. height: math.unit(2, "meters"),
  4137. weight: math.unit(76, "kg"),
  4138. name: "Front (Alt 2)",
  4139. image: {
  4140. source: "./media/characters/gale/front-alt-2.svg"
  4141. }
  4142. },
  4143. },
  4144. [
  4145. {
  4146. name: "Normal",
  4147. height: math.unit(7, "feet")
  4148. },
  4149. {
  4150. name: "Macro",
  4151. height: math.unit(150, "feet"),
  4152. default: true
  4153. },
  4154. {
  4155. name: "Macro+",
  4156. height: math.unit(300, "feet")
  4157. },
  4158. ]
  4159. ))
  4160. characterMakers.push(() => makeCharacter(
  4161. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4162. {
  4163. front: {
  4164. height: math.unit(2, "meters"),
  4165. weight: math.unit(76, "kg"),
  4166. name: "Front",
  4167. image: {
  4168. source: "./media/characters/draylen/front.svg"
  4169. }
  4170. }
  4171. },
  4172. [
  4173. {
  4174. name: "Macro",
  4175. height: math.unit(150, "feet"),
  4176. default: true
  4177. }
  4178. ]
  4179. ))
  4180. characterMakers.push(() => makeCharacter(
  4181. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4182. {
  4183. front: {
  4184. height: math.unit(7 + 9 / 12, "feet"),
  4185. weight: math.unit(379, "lbs"),
  4186. name: "Front",
  4187. image: {
  4188. source: "./media/characters/chez/front.svg"
  4189. }
  4190. },
  4191. side: {
  4192. height: math.unit(7 + 9 / 12, "feet"),
  4193. weight: math.unit(379, "lbs"),
  4194. name: "Side",
  4195. image: {
  4196. source: "./media/characters/chez/side.svg"
  4197. }
  4198. }
  4199. },
  4200. [
  4201. {
  4202. name: "Normal",
  4203. height: math.unit(7 + 9 / 12, "feet"),
  4204. default: true
  4205. },
  4206. {
  4207. name: "God King",
  4208. height: math.unit(9750000, "meters")
  4209. }
  4210. ]
  4211. ))
  4212. characterMakers.push(() => makeCharacter(
  4213. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4214. {
  4215. front: {
  4216. height: math.unit(6, "feet"),
  4217. weight: math.unit(275, "lbs"),
  4218. name: "Front",
  4219. image: {
  4220. source: "./media/characters/kaylum/front.svg",
  4221. bottom: 0.01,
  4222. extra: 1166 / 1031
  4223. }
  4224. },
  4225. frontWingless: {
  4226. height: math.unit(6, "feet"),
  4227. weight: math.unit(275, "lbs"),
  4228. name: "Front (Wingless)",
  4229. image: {
  4230. source: "./media/characters/kaylum/front-wingless.svg",
  4231. bottom: 0.01,
  4232. extra: 1117 / 1031
  4233. }
  4234. }
  4235. },
  4236. [
  4237. {
  4238. name: "Normal",
  4239. height: math.unit(3.05, "meters")
  4240. },
  4241. {
  4242. name: "Master",
  4243. height: math.unit(5.5, "meters")
  4244. },
  4245. {
  4246. name: "Rampage",
  4247. height: math.unit(19, "meters")
  4248. },
  4249. {
  4250. name: "Macro Lite",
  4251. height: math.unit(37, "meters")
  4252. },
  4253. {
  4254. name: "Hyper Predator",
  4255. height: math.unit(61, "meters")
  4256. },
  4257. {
  4258. name: "Macro",
  4259. height: math.unit(138, "meters"),
  4260. default: true
  4261. }
  4262. ]
  4263. ))
  4264. characterMakers.push(() => makeCharacter(
  4265. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4266. {
  4267. front: {
  4268. height: math.unit(6, "feet"),
  4269. weight: math.unit(150, "lbs"),
  4270. name: "Front",
  4271. image: {
  4272. source: "./media/characters/geta/front.svg"
  4273. }
  4274. }
  4275. },
  4276. [
  4277. {
  4278. name: "Micro",
  4279. height: math.unit(3, "inches"),
  4280. default: true
  4281. },
  4282. {
  4283. name: "Normal",
  4284. height: math.unit(5 + 5 / 12, "feet")
  4285. }
  4286. ]
  4287. ))
  4288. characterMakers.push(() => makeCharacter(
  4289. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4290. {
  4291. front: {
  4292. height: math.unit(6, "feet"),
  4293. weight: math.unit(300, "lbs"),
  4294. name: "Front",
  4295. image: {
  4296. source: "./media/characters/tyrnn/front.svg"
  4297. }
  4298. }
  4299. },
  4300. [
  4301. {
  4302. name: "Main Height",
  4303. height: math.unit(355, "feet"),
  4304. default: true
  4305. },
  4306. {
  4307. name: "Fave. Height",
  4308. height: math.unit(2400, "feet")
  4309. }
  4310. ]
  4311. ))
  4312. characterMakers.push(() => makeCharacter(
  4313. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4314. {
  4315. front: {
  4316. height: math.unit(6, "feet"),
  4317. weight: math.unit(300, "lbs"),
  4318. name: "Front",
  4319. image: {
  4320. source: "./media/characters/appledectomy/front.svg"
  4321. }
  4322. }
  4323. },
  4324. [
  4325. {
  4326. name: "Macro",
  4327. height: math.unit(2500, "feet")
  4328. },
  4329. {
  4330. name: "Megamacro",
  4331. height: math.unit(50, "miles"),
  4332. default: true
  4333. },
  4334. {
  4335. name: "Gigamacro",
  4336. height: math.unit(5000, "miles")
  4337. },
  4338. {
  4339. name: "Teramacro",
  4340. height: math.unit(250000, "miles")
  4341. },
  4342. ]
  4343. ))
  4344. characterMakers.push(() => makeCharacter(
  4345. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4346. {
  4347. front: {
  4348. height: math.unit(6, "feet"),
  4349. weight: math.unit(200, "lbs"),
  4350. name: "Front",
  4351. image: {
  4352. source: "./media/characters/vulpes/front.svg",
  4353. extra: 573 / 543,
  4354. bottom: 0.033
  4355. }
  4356. },
  4357. side: {
  4358. height: math.unit(6, "feet"),
  4359. weight: math.unit(200, "lbs"),
  4360. name: "Side",
  4361. image: {
  4362. source: "./media/characters/vulpes/side.svg",
  4363. extra: 577 / 549,
  4364. bottom: 11 / 588
  4365. }
  4366. },
  4367. back: {
  4368. height: math.unit(6, "feet"),
  4369. weight: math.unit(200, "lbs"),
  4370. name: "Back",
  4371. image: {
  4372. source: "./media/characters/vulpes/back.svg",
  4373. extra: 573 / 549,
  4374. bottom: 20 / 593
  4375. }
  4376. },
  4377. feet: {
  4378. height: math.unit(1.276, "feet"),
  4379. name: "Feet",
  4380. image: {
  4381. source: "./media/characters/vulpes/feet.svg"
  4382. }
  4383. },
  4384. maw: {
  4385. height: math.unit(1.18, "feet"),
  4386. name: "Maw",
  4387. image: {
  4388. source: "./media/characters/vulpes/maw.svg"
  4389. }
  4390. },
  4391. },
  4392. [
  4393. {
  4394. name: "Micro",
  4395. height: math.unit(2, "inches")
  4396. },
  4397. {
  4398. name: "Normal",
  4399. height: math.unit(6.3, "feet")
  4400. },
  4401. {
  4402. name: "Macro",
  4403. height: math.unit(850, "feet")
  4404. },
  4405. {
  4406. name: "Megamacro",
  4407. height: math.unit(7500, "feet"),
  4408. default: true
  4409. },
  4410. {
  4411. name: "Gigamacro",
  4412. height: math.unit(570000, "miles")
  4413. }
  4414. ]
  4415. ))
  4416. characterMakers.push(() => makeCharacter(
  4417. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4418. {
  4419. front: {
  4420. height: math.unit(6, "feet"),
  4421. weight: math.unit(210, "lbs"),
  4422. name: "Front",
  4423. image: {
  4424. source: "./media/characters/rain-fallen/front.svg"
  4425. }
  4426. },
  4427. side: {
  4428. height: math.unit(6, "feet"),
  4429. weight: math.unit(210, "lbs"),
  4430. name: "Side",
  4431. image: {
  4432. source: "./media/characters/rain-fallen/side.svg"
  4433. }
  4434. },
  4435. back: {
  4436. height: math.unit(6, "feet"),
  4437. weight: math.unit(210, "lbs"),
  4438. name: "Back",
  4439. image: {
  4440. source: "./media/characters/rain-fallen/back.svg"
  4441. }
  4442. },
  4443. feral: {
  4444. height: math.unit(9, "feet"),
  4445. weight: math.unit(700, "lbs"),
  4446. name: "Feral",
  4447. image: {
  4448. source: "./media/characters/rain-fallen/feral.svg"
  4449. }
  4450. },
  4451. },
  4452. [
  4453. {
  4454. name: "Meddling with Mortals",
  4455. height: math.unit(8 + 8/12, "feet")
  4456. },
  4457. {
  4458. name: "Normal",
  4459. height: math.unit(5, "meter")
  4460. },
  4461. {
  4462. name: "Macro",
  4463. height: math.unit(150, "meter"),
  4464. default: true
  4465. },
  4466. {
  4467. name: "Megamacro",
  4468. height: math.unit(278e6, "meter")
  4469. },
  4470. {
  4471. name: "Gigamacro",
  4472. height: math.unit(2e9, "meter")
  4473. },
  4474. {
  4475. name: "Teramacro",
  4476. height: math.unit(8e12, "meter")
  4477. },
  4478. {
  4479. name: "Devourer",
  4480. height: math.unit(14, "zettameters")
  4481. },
  4482. {
  4483. name: "Scarlet King",
  4484. height: math.unit(18, "yottameters")
  4485. },
  4486. {
  4487. name: "Void",
  4488. height: math.unit(1e88, "yottameters")
  4489. }
  4490. ]
  4491. ))
  4492. characterMakers.push(() => makeCharacter(
  4493. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4494. {
  4495. standing: {
  4496. height: math.unit(6, "feet"),
  4497. weight: math.unit(180, "lbs"),
  4498. name: "Standing",
  4499. image: {
  4500. source: "./media/characters/zaakira/standing.svg"
  4501. }
  4502. },
  4503. laying: {
  4504. height: math.unit(3, "feet"),
  4505. weight: math.unit(180, "lbs"),
  4506. name: "Laying",
  4507. image: {
  4508. source: "./media/characters/zaakira/laying.svg"
  4509. }
  4510. },
  4511. },
  4512. [
  4513. {
  4514. name: "Normal",
  4515. height: math.unit(12, "feet")
  4516. },
  4517. {
  4518. name: "Macro",
  4519. height: math.unit(279, "feet"),
  4520. default: true
  4521. }
  4522. ]
  4523. ))
  4524. characterMakers.push(() => makeCharacter(
  4525. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4526. {
  4527. femSfw: {
  4528. height: math.unit(8, "feet"),
  4529. weight: math.unit(350, "lb"),
  4530. name: "Fem",
  4531. image: {
  4532. source: "./media/characters/sigvald/fem-sfw.svg",
  4533. extra: 182 / 164,
  4534. bottom: 8.7 / 190.5
  4535. }
  4536. },
  4537. femNsfw: {
  4538. height: math.unit(8, "feet"),
  4539. weight: math.unit(350, "lb"),
  4540. name: "Fem (NSFW)",
  4541. image: {
  4542. source: "./media/characters/sigvald/fem-nsfw.svg",
  4543. extra: 182 / 164,
  4544. bottom: 8.7 / 190.5
  4545. }
  4546. },
  4547. maleNsfw: {
  4548. height: math.unit(8, "feet"),
  4549. weight: math.unit(350, "lb"),
  4550. name: "Male (NSFW)",
  4551. image: {
  4552. source: "./media/characters/sigvald/male-nsfw.svg",
  4553. extra: 182 / 164,
  4554. bottom: 8.7 / 190.5
  4555. }
  4556. },
  4557. hermNsfw: {
  4558. height: math.unit(8, "feet"),
  4559. weight: math.unit(350, "lb"),
  4560. name: "Herm (NSFW)",
  4561. image: {
  4562. source: "./media/characters/sigvald/herm-nsfw.svg",
  4563. extra: 182 / 164,
  4564. bottom: 8.7 / 190.5
  4565. }
  4566. },
  4567. dick: {
  4568. height: math.unit(2.36, "feet"),
  4569. name: "Dick",
  4570. image: {
  4571. source: "./media/characters/sigvald/dick.svg"
  4572. }
  4573. },
  4574. eye: {
  4575. height: math.unit(0.31, "feet"),
  4576. name: "Eye",
  4577. image: {
  4578. source: "./media/characters/sigvald/eye.svg"
  4579. }
  4580. },
  4581. mouth: {
  4582. height: math.unit(0.92, "feet"),
  4583. name: "Mouth",
  4584. image: {
  4585. source: "./media/characters/sigvald/mouth.svg"
  4586. }
  4587. },
  4588. paws: {
  4589. height: math.unit(2.2, "feet"),
  4590. name: "Paws",
  4591. image: {
  4592. source: "./media/characters/sigvald/paws.svg"
  4593. }
  4594. }
  4595. },
  4596. [
  4597. {
  4598. name: "Normal",
  4599. height: math.unit(8, "feet")
  4600. },
  4601. {
  4602. name: "Large",
  4603. height: math.unit(12, "feet")
  4604. },
  4605. {
  4606. name: "Larger",
  4607. height: math.unit(20, "feet")
  4608. },
  4609. {
  4610. name: "Macro",
  4611. height: math.unit(150, "feet")
  4612. },
  4613. {
  4614. name: "Macro+",
  4615. height: math.unit(200, "feet"),
  4616. default: true
  4617. },
  4618. ]
  4619. ))
  4620. characterMakers.push(() => makeCharacter(
  4621. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4622. {
  4623. side: {
  4624. height: math.unit(12, "feet"),
  4625. weight: math.unit(2000, "kg"),
  4626. name: "Side",
  4627. image: {
  4628. source: "./media/characters/scott/side.svg",
  4629. extra: 754 / 724,
  4630. bottom: 0.069
  4631. }
  4632. },
  4633. upright: {
  4634. height: math.unit(12, "feet"),
  4635. weight: math.unit(2000, "kg"),
  4636. name: "Upright",
  4637. image: {
  4638. source: "./media/characters/scott/upright.svg",
  4639. extra: 3881 / 3722,
  4640. bottom: 0.05
  4641. }
  4642. },
  4643. },
  4644. [
  4645. {
  4646. name: "Normal",
  4647. height: math.unit(12, "feet"),
  4648. default: true
  4649. },
  4650. ]
  4651. ))
  4652. characterMakers.push(() => makeCharacter(
  4653. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4654. {
  4655. side: {
  4656. height: math.unit(8, "meters"),
  4657. weight: math.unit(84755, "lbs"),
  4658. name: "Side",
  4659. image: {
  4660. source: "./media/characters/tobias/side.svg",
  4661. extra: 1474 / 1096,
  4662. bottom: 38.9 / 1513.1235
  4663. }
  4664. },
  4665. },
  4666. [
  4667. {
  4668. name: "Normal",
  4669. height: math.unit(8, "meters"),
  4670. default: true
  4671. },
  4672. ]
  4673. ))
  4674. characterMakers.push(() => makeCharacter(
  4675. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4676. {
  4677. front: {
  4678. height: math.unit(5.5, "feet"),
  4679. weight: math.unit(400, "lbs"),
  4680. name: "Front",
  4681. image: {
  4682. source: "./media/characters/kieran/front.svg",
  4683. extra: 2694 / 2364,
  4684. bottom: 217 / 2908
  4685. }
  4686. },
  4687. side: {
  4688. height: math.unit(5.5, "feet"),
  4689. weight: math.unit(400, "lbs"),
  4690. name: "Side",
  4691. image: {
  4692. source: "./media/characters/kieran/side.svg",
  4693. extra: 875 / 777,
  4694. bottom: 84.6 / 959
  4695. }
  4696. },
  4697. },
  4698. [
  4699. {
  4700. name: "Normal",
  4701. height: math.unit(5.5, "feet"),
  4702. default: true
  4703. },
  4704. ]
  4705. ))
  4706. characterMakers.push(() => makeCharacter(
  4707. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4708. {
  4709. side: {
  4710. height: math.unit(2, "meters"),
  4711. weight: math.unit(70, "kg"),
  4712. name: "Side",
  4713. image: {
  4714. source: "./media/characters/sanya/side.svg",
  4715. bottom: 0.02,
  4716. extra: 1.02
  4717. }
  4718. },
  4719. },
  4720. [
  4721. {
  4722. name: "Small",
  4723. height: math.unit(2, "meters")
  4724. },
  4725. {
  4726. name: "Normal",
  4727. height: math.unit(3, "meters")
  4728. },
  4729. {
  4730. name: "Macro",
  4731. height: math.unit(16, "meters"),
  4732. default: true
  4733. },
  4734. ]
  4735. ))
  4736. characterMakers.push(() => makeCharacter(
  4737. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4738. {
  4739. front: {
  4740. height: math.unit(2, "meters"),
  4741. weight: math.unit(120, "kg"),
  4742. name: "Front",
  4743. image: {
  4744. source: "./media/characters/miranda/front.svg",
  4745. extra: 195 / 185,
  4746. bottom: 10.9 / 206.5
  4747. }
  4748. },
  4749. back: {
  4750. height: math.unit(2, "meters"),
  4751. weight: math.unit(120, "kg"),
  4752. name: "Back",
  4753. image: {
  4754. source: "./media/characters/miranda/back.svg",
  4755. extra: 201 / 193,
  4756. bottom: 2.3 / 203.7
  4757. }
  4758. },
  4759. },
  4760. [
  4761. {
  4762. name: "Normal",
  4763. height: math.unit(10, "feet"),
  4764. default: true
  4765. }
  4766. ]
  4767. ))
  4768. characterMakers.push(() => makeCharacter(
  4769. { name: "James", species: ["deer"], tags: ["anthro"] },
  4770. {
  4771. side: {
  4772. height: math.unit(2, "meters"),
  4773. weight: math.unit(100, "kg"),
  4774. name: "Front",
  4775. image: {
  4776. source: "./media/characters/james/front.svg",
  4777. extra: 10 / 8.5
  4778. }
  4779. },
  4780. },
  4781. [
  4782. {
  4783. name: "Normal",
  4784. height: math.unit(8.5, "feet"),
  4785. default: true
  4786. }
  4787. ]
  4788. ))
  4789. characterMakers.push(() => makeCharacter(
  4790. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4791. {
  4792. side: {
  4793. height: math.unit(9.5, "feet"),
  4794. weight: math.unit(2500, "lbs"),
  4795. name: "Side",
  4796. image: {
  4797. source: "./media/characters/heather/side.svg"
  4798. }
  4799. },
  4800. },
  4801. [
  4802. {
  4803. name: "Normal",
  4804. height: math.unit(9.5, "feet"),
  4805. default: true
  4806. }
  4807. ]
  4808. ))
  4809. characterMakers.push(() => makeCharacter(
  4810. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4811. {
  4812. side: {
  4813. height: math.unit(6.5, "feet"),
  4814. weight: math.unit(400, "lbs"),
  4815. name: "Side",
  4816. image: {
  4817. source: "./media/characters/lukas/side.svg",
  4818. extra: 7.25 / 6.5
  4819. }
  4820. },
  4821. },
  4822. [
  4823. {
  4824. name: "Normal",
  4825. height: math.unit(6.5, "feet"),
  4826. default: true
  4827. }
  4828. ]
  4829. ))
  4830. characterMakers.push(() => makeCharacter(
  4831. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4832. {
  4833. side: {
  4834. height: math.unit(5, "feet"),
  4835. weight: math.unit(3000, "lbs"),
  4836. name: "Side",
  4837. image: {
  4838. source: "./media/characters/louise/side.svg"
  4839. }
  4840. },
  4841. },
  4842. [
  4843. {
  4844. name: "Normal",
  4845. height: math.unit(5, "feet"),
  4846. default: true
  4847. }
  4848. ]
  4849. ))
  4850. characterMakers.push(() => makeCharacter(
  4851. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4852. {
  4853. side: {
  4854. height: math.unit(6, "feet"),
  4855. weight: math.unit(150, "lbs"),
  4856. name: "Side",
  4857. image: {
  4858. source: "./media/characters/ramona/side.svg"
  4859. }
  4860. },
  4861. },
  4862. [
  4863. {
  4864. name: "Normal",
  4865. height: math.unit(5.3, "meters"),
  4866. default: true
  4867. },
  4868. {
  4869. name: "Macro",
  4870. height: math.unit(20, "stories")
  4871. },
  4872. {
  4873. name: "Macro+",
  4874. height: math.unit(50, "stories")
  4875. },
  4876. ]
  4877. ))
  4878. characterMakers.push(() => makeCharacter(
  4879. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4880. {
  4881. standing: {
  4882. height: math.unit(5.75, "feet"),
  4883. weight: math.unit(160, "lbs"),
  4884. name: "Standing",
  4885. image: {
  4886. source: "./media/characters/deerpuff/standing.svg",
  4887. extra: 682 / 624
  4888. }
  4889. },
  4890. sitting: {
  4891. height: math.unit(5.75 / 1.79, "feet"),
  4892. weight: math.unit(160, "lbs"),
  4893. name: "Sitting",
  4894. image: {
  4895. source: "./media/characters/deerpuff/sitting.svg",
  4896. bottom: 44 / 400,
  4897. extra: 1
  4898. }
  4899. },
  4900. taurLaying: {
  4901. height: math.unit(6, "feet"),
  4902. weight: math.unit(400, "lbs"),
  4903. name: "Taur (Laying)",
  4904. image: {
  4905. source: "./media/characters/deerpuff/taur-laying.svg"
  4906. }
  4907. },
  4908. },
  4909. [
  4910. {
  4911. name: "Puffball",
  4912. height: math.unit(6, "inches")
  4913. },
  4914. {
  4915. name: "Normalpuff",
  4916. height: math.unit(5.75, "feet")
  4917. },
  4918. {
  4919. name: "Macropuff",
  4920. height: math.unit(1500, "feet"),
  4921. default: true
  4922. },
  4923. {
  4924. name: "Megapuff",
  4925. height: math.unit(500, "miles")
  4926. },
  4927. {
  4928. name: "Gigapuff",
  4929. height: math.unit(250000, "miles")
  4930. },
  4931. {
  4932. name: "Omegapuff",
  4933. height: math.unit(1000, "lightyears")
  4934. },
  4935. ]
  4936. ))
  4937. characterMakers.push(() => makeCharacter(
  4938. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4939. {
  4940. stomping: {
  4941. height: math.unit(6, "feet"),
  4942. weight: math.unit(170, "lbs"),
  4943. name: "Stomping",
  4944. image: {
  4945. source: "./media/characters/vivian/stomping.svg"
  4946. }
  4947. },
  4948. sitting: {
  4949. height: math.unit(6 / 1.75, "feet"),
  4950. weight: math.unit(170, "lbs"),
  4951. name: "Sitting",
  4952. image: {
  4953. source: "./media/characters/vivian/sitting.svg",
  4954. bottom: 1 / 6.4,
  4955. extra: 1,
  4956. }
  4957. },
  4958. },
  4959. [
  4960. {
  4961. name: "Normal",
  4962. height: math.unit(7, "feet"),
  4963. default: true
  4964. },
  4965. {
  4966. name: "Macro",
  4967. height: math.unit(10, "stories")
  4968. },
  4969. {
  4970. name: "Macro+",
  4971. height: math.unit(30, "stories")
  4972. },
  4973. {
  4974. name: "Megamacro",
  4975. height: math.unit(10, "miles")
  4976. },
  4977. {
  4978. name: "Megamacro+",
  4979. height: math.unit(2750000, "meters")
  4980. },
  4981. ]
  4982. ))
  4983. characterMakers.push(() => makeCharacter(
  4984. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4985. {
  4986. front: {
  4987. height: math.unit(6, "feet"),
  4988. weight: math.unit(160, "lbs"),
  4989. name: "Front",
  4990. image: {
  4991. source: "./media/characters/prince/front.svg",
  4992. extra: 3400 / 3000
  4993. }
  4994. },
  4995. jumping: {
  4996. height: math.unit(6, "feet"),
  4997. weight: math.unit(160, "lbs"),
  4998. name: "Jumping",
  4999. image: {
  5000. source: "./media/characters/prince/jump.svg",
  5001. extra: 2555 / 2134
  5002. }
  5003. },
  5004. },
  5005. [
  5006. {
  5007. name: "Normal",
  5008. height: math.unit(7.75, "feet"),
  5009. default: true
  5010. },
  5011. {
  5012. name: "Not cute",
  5013. height: math.unit(17, "feet")
  5014. },
  5015. {
  5016. name: "I said NOT",
  5017. height: math.unit(91, "feet")
  5018. },
  5019. {
  5020. name: "Please stop",
  5021. height: math.unit(560, "feet")
  5022. },
  5023. {
  5024. name: "What have you done",
  5025. height: math.unit(2200, "feet")
  5026. },
  5027. {
  5028. name: "Deer God",
  5029. height: math.unit(3.6, "miles")
  5030. },
  5031. ]
  5032. ))
  5033. characterMakers.push(() => makeCharacter(
  5034. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5035. {
  5036. standing: {
  5037. height: math.unit(6, "feet"),
  5038. weight: math.unit(300, "lbs"),
  5039. name: "Standing",
  5040. image: {
  5041. source: "./media/characters/psymon/standing.svg",
  5042. extra: 1888 / 1810,
  5043. bottom: 0.05
  5044. }
  5045. },
  5046. slithering: {
  5047. height: math.unit(6, "feet"),
  5048. weight: math.unit(300, "lbs"),
  5049. name: "Slithering",
  5050. image: {
  5051. source: "./media/characters/psymon/slithering.svg",
  5052. extra: 1330 / 1224
  5053. }
  5054. },
  5055. slitheringAlt: {
  5056. height: math.unit(6, "feet"),
  5057. weight: math.unit(300, "lbs"),
  5058. name: "Slithering (Alt)",
  5059. image: {
  5060. source: "./media/characters/psymon/slithering-alt.svg",
  5061. extra: 1330 / 1224
  5062. }
  5063. },
  5064. },
  5065. [
  5066. {
  5067. name: "Normal",
  5068. height: math.unit(11.25, "feet"),
  5069. default: true
  5070. },
  5071. {
  5072. name: "Large",
  5073. height: math.unit(27, "feet")
  5074. },
  5075. {
  5076. name: "Giant",
  5077. height: math.unit(87, "feet")
  5078. },
  5079. {
  5080. name: "Macro",
  5081. height: math.unit(365, "feet")
  5082. },
  5083. {
  5084. name: "Megamacro",
  5085. height: math.unit(3, "miles")
  5086. },
  5087. {
  5088. name: "World Serpent",
  5089. height: math.unit(8000, "miles")
  5090. },
  5091. ]
  5092. ))
  5093. characterMakers.push(() => makeCharacter(
  5094. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5095. {
  5096. front: {
  5097. height: math.unit(6, "feet"),
  5098. weight: math.unit(180, "lbs"),
  5099. name: "Front",
  5100. image: {
  5101. source: "./media/characters/daimos/front.svg",
  5102. extra: 4160 / 3897,
  5103. bottom: 0.021
  5104. }
  5105. }
  5106. },
  5107. [
  5108. {
  5109. name: "Normal",
  5110. height: math.unit(8, "feet"),
  5111. default: true
  5112. },
  5113. {
  5114. name: "Big Dog",
  5115. height: math.unit(22, "feet")
  5116. },
  5117. {
  5118. name: "Macro",
  5119. height: math.unit(127, "feet")
  5120. },
  5121. {
  5122. name: "Megamacro",
  5123. height: math.unit(3600, "feet")
  5124. },
  5125. ]
  5126. ))
  5127. characterMakers.push(() => makeCharacter(
  5128. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5129. {
  5130. side: {
  5131. height: math.unit(6, "feet"),
  5132. weight: math.unit(180, "lbs"),
  5133. name: "Side",
  5134. image: {
  5135. source: "./media/characters/blake/side.svg",
  5136. extra: 1212 / 1120,
  5137. bottom: 0.05
  5138. }
  5139. },
  5140. crouched: {
  5141. height: math.unit(6 * 0.57, "feet"),
  5142. weight: math.unit(180, "lbs"),
  5143. name: "Crouched",
  5144. image: {
  5145. source: "./media/characters/blake/crouched.svg",
  5146. extra: 840 / 587,
  5147. bottom: 0.04
  5148. }
  5149. },
  5150. bent: {
  5151. height: math.unit(6 * 0.75, "feet"),
  5152. weight: math.unit(180, "lbs"),
  5153. name: "Bent",
  5154. image: {
  5155. source: "./media/characters/blake/bent.svg",
  5156. extra: 592 / 544,
  5157. bottom: 0.035
  5158. }
  5159. },
  5160. },
  5161. [
  5162. {
  5163. name: "Normal",
  5164. height: math.unit(8 + 1 / 6, "feet"),
  5165. default: true
  5166. },
  5167. {
  5168. name: "Big Backside",
  5169. height: math.unit(37, "feet")
  5170. },
  5171. {
  5172. name: "Subway Shredder",
  5173. height: math.unit(72, "feet")
  5174. },
  5175. {
  5176. name: "City Carver",
  5177. height: math.unit(1675, "feet")
  5178. },
  5179. {
  5180. name: "Tectonic Tweaker",
  5181. height: math.unit(2300, "miles")
  5182. },
  5183. ]
  5184. ))
  5185. characterMakers.push(() => makeCharacter(
  5186. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5187. {
  5188. front: {
  5189. height: math.unit(6, "feet"),
  5190. weight: math.unit(180, "lbs"),
  5191. name: "Front",
  5192. image: {
  5193. source: "./media/characters/guisetto/front.svg",
  5194. extra: 856 / 817,
  5195. bottom: 0.06
  5196. }
  5197. },
  5198. airborne: {
  5199. height: math.unit(6, "feet"),
  5200. weight: math.unit(180, "lbs"),
  5201. name: "Airborne",
  5202. image: {
  5203. source: "./media/characters/guisetto/airborne.svg",
  5204. extra: 584 / 525
  5205. }
  5206. },
  5207. },
  5208. [
  5209. {
  5210. name: "Normal",
  5211. height: math.unit(10 + 11 / 12, "feet"),
  5212. default: true
  5213. },
  5214. {
  5215. name: "Large",
  5216. height: math.unit(35, "feet")
  5217. },
  5218. {
  5219. name: "Macro",
  5220. height: math.unit(475, "feet")
  5221. },
  5222. ]
  5223. ))
  5224. characterMakers.push(() => makeCharacter(
  5225. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5226. {
  5227. front: {
  5228. height: math.unit(6, "feet"),
  5229. weight: math.unit(180, "lbs"),
  5230. name: "Front",
  5231. image: {
  5232. source: "./media/characters/luxor/front.svg",
  5233. extra: 2940 / 2152
  5234. }
  5235. },
  5236. back: {
  5237. height: math.unit(6, "feet"),
  5238. weight: math.unit(180, "lbs"),
  5239. name: "Back",
  5240. image: {
  5241. source: "./media/characters/luxor/back.svg",
  5242. extra: 1083 / 960
  5243. }
  5244. },
  5245. },
  5246. [
  5247. {
  5248. name: "Normal",
  5249. height: math.unit(5 + 5 / 6, "feet"),
  5250. default: true
  5251. },
  5252. {
  5253. name: "Lamp",
  5254. height: math.unit(50, "feet")
  5255. },
  5256. {
  5257. name: "Lämp",
  5258. height: math.unit(300, "feet")
  5259. },
  5260. {
  5261. name: "The sun is a lamp",
  5262. height: math.unit(250000, "miles")
  5263. },
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5268. {
  5269. front: {
  5270. height: math.unit(6, "feet"),
  5271. weight: math.unit(50, "lbs"),
  5272. name: "Front",
  5273. image: {
  5274. source: "./media/characters/huoyan/front.svg"
  5275. }
  5276. },
  5277. side: {
  5278. height: math.unit(6, "feet"),
  5279. weight: math.unit(180, "lbs"),
  5280. name: "Side",
  5281. image: {
  5282. source: "./media/characters/huoyan/side.svg"
  5283. }
  5284. },
  5285. },
  5286. [
  5287. {
  5288. name: "Chef",
  5289. height: math.unit(9, "feet")
  5290. },
  5291. {
  5292. name: "Normal",
  5293. height: math.unit(65, "feet"),
  5294. default: true
  5295. },
  5296. {
  5297. name: "Macro",
  5298. height: math.unit(780, "feet")
  5299. },
  5300. {
  5301. name: "Flaming Mountain",
  5302. height: math.unit(4.8, "miles")
  5303. },
  5304. {
  5305. name: "Celestial",
  5306. height: math.unit(765000, "miles")
  5307. },
  5308. ]
  5309. ))
  5310. characterMakers.push(() => makeCharacter(
  5311. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5312. {
  5313. front: {
  5314. height: math.unit(5 + 3 / 4, "feet"),
  5315. weight: math.unit(120, "lbs"),
  5316. name: "Front",
  5317. image: {
  5318. source: "./media/characters/tails/front.svg"
  5319. }
  5320. }
  5321. },
  5322. [
  5323. {
  5324. name: "Normal",
  5325. height: math.unit(5 + 3 / 4, "feet"),
  5326. default: true
  5327. }
  5328. ]
  5329. ))
  5330. characterMakers.push(() => makeCharacter(
  5331. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5332. {
  5333. front: {
  5334. height: math.unit(4, "feet"),
  5335. weight: math.unit(50, "lbs"),
  5336. name: "Front",
  5337. image: {
  5338. source: "./media/characters/rainy/front.svg"
  5339. }
  5340. }
  5341. },
  5342. [
  5343. {
  5344. name: "Macro",
  5345. height: math.unit(800, "feet"),
  5346. default: true
  5347. }
  5348. ]
  5349. ))
  5350. characterMakers.push(() => makeCharacter(
  5351. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5352. {
  5353. front: {
  5354. height: math.unit(6, "feet"),
  5355. weight: math.unit(150, "lbs"),
  5356. name: "Front",
  5357. image: {
  5358. source: "./media/characters/rainier/front.svg"
  5359. }
  5360. }
  5361. },
  5362. [
  5363. {
  5364. name: "Micro",
  5365. height: math.unit(2, "mm"),
  5366. default: true
  5367. }
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5372. {
  5373. front: {
  5374. height: math.unit(6, "feet"),
  5375. weight: math.unit(180, "lbs"),
  5376. name: "Front",
  5377. image: {
  5378. source: "./media/characters/andy/front.svg"
  5379. }
  5380. }
  5381. },
  5382. [
  5383. {
  5384. name: "Normal",
  5385. height: math.unit(8, "feet"),
  5386. default: true
  5387. },
  5388. {
  5389. name: "Macro",
  5390. height: math.unit(1000, "feet")
  5391. },
  5392. {
  5393. name: "Megamacro",
  5394. height: math.unit(5, "miles")
  5395. },
  5396. {
  5397. name: "Gigamacro",
  5398. height: math.unit(5000, "miles")
  5399. },
  5400. ]
  5401. ))
  5402. characterMakers.push(() => makeCharacter(
  5403. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5404. {
  5405. front: {
  5406. height: math.unit(6, "feet"),
  5407. weight: math.unit(210, "lbs"),
  5408. name: "Front",
  5409. image: {
  5410. source: "./media/characters/cimmaron/front-sfw.svg",
  5411. extra: 701 / 676,
  5412. bottom: 0.046
  5413. }
  5414. },
  5415. back: {
  5416. height: math.unit(6, "feet"),
  5417. weight: math.unit(210, "lbs"),
  5418. name: "Back",
  5419. image: {
  5420. source: "./media/characters/cimmaron/back-sfw.svg",
  5421. extra: 701 / 676,
  5422. bottom: 0.046
  5423. }
  5424. },
  5425. frontNsfw: {
  5426. height: math.unit(6, "feet"),
  5427. weight: math.unit(210, "lbs"),
  5428. name: "Front (NSFW)",
  5429. image: {
  5430. source: "./media/characters/cimmaron/front-nsfw.svg",
  5431. extra: 701 / 676,
  5432. bottom: 0.046
  5433. }
  5434. },
  5435. backNsfw: {
  5436. height: math.unit(6, "feet"),
  5437. weight: math.unit(210, "lbs"),
  5438. name: "Back (NSFW)",
  5439. image: {
  5440. source: "./media/characters/cimmaron/back-nsfw.svg",
  5441. extra: 701 / 676,
  5442. bottom: 0.046
  5443. }
  5444. },
  5445. dick: {
  5446. height: math.unit(1.714, "feet"),
  5447. name: "Dick",
  5448. image: {
  5449. source: "./media/characters/cimmaron/dick.svg"
  5450. }
  5451. },
  5452. },
  5453. [
  5454. {
  5455. name: "Normal",
  5456. height: math.unit(6, "feet"),
  5457. default: true
  5458. },
  5459. {
  5460. name: "Macro Mayor",
  5461. height: math.unit(350, "meters")
  5462. },
  5463. ]
  5464. ))
  5465. characterMakers.push(() => makeCharacter(
  5466. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5467. {
  5468. front: {
  5469. height: math.unit(6, "feet"),
  5470. weight: math.unit(200, "lbs"),
  5471. name: "Front",
  5472. image: {
  5473. source: "./media/characters/akari/front.svg",
  5474. extra: 962 / 901,
  5475. bottom: 0.04
  5476. }
  5477. }
  5478. },
  5479. [
  5480. {
  5481. name: "Micro",
  5482. height: math.unit(5, "inches"),
  5483. default: true
  5484. },
  5485. {
  5486. name: "Normal",
  5487. height: math.unit(7, "feet")
  5488. },
  5489. ]
  5490. ))
  5491. characterMakers.push(() => makeCharacter(
  5492. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5493. {
  5494. front: {
  5495. height: math.unit(6, "feet"),
  5496. weight: math.unit(140, "lbs"),
  5497. name: "Front",
  5498. image: {
  5499. source: "./media/characters/cynosura/front.svg",
  5500. extra: 896 / 847
  5501. }
  5502. },
  5503. back: {
  5504. height: math.unit(6, "feet"),
  5505. weight: math.unit(140, "lbs"),
  5506. name: "Back",
  5507. image: {
  5508. source: "./media/characters/cynosura/back.svg",
  5509. extra: 1365 / 1250
  5510. }
  5511. },
  5512. },
  5513. [
  5514. {
  5515. name: "Micro",
  5516. height: math.unit(4, "inches")
  5517. },
  5518. {
  5519. name: "Normal",
  5520. height: math.unit(5.75, "feet"),
  5521. default: true
  5522. },
  5523. {
  5524. name: "Tall",
  5525. height: math.unit(10, "feet")
  5526. },
  5527. {
  5528. name: "Big",
  5529. height: math.unit(20, "feet")
  5530. },
  5531. {
  5532. name: "Macro",
  5533. height: math.unit(50, "feet")
  5534. },
  5535. ]
  5536. ))
  5537. characterMakers.push(() => makeCharacter(
  5538. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5539. {
  5540. front: {
  5541. height: math.unit(6, "feet"),
  5542. weight: math.unit(170, "lbs"),
  5543. name: "Front",
  5544. image: {
  5545. source: "./media/characters/gin/front.svg",
  5546. extra: 1.053,
  5547. bottom: 0.025
  5548. }
  5549. },
  5550. foot: {
  5551. height: math.unit(6 / 4.25, "feet"),
  5552. name: "Foot",
  5553. image: {
  5554. source: "./media/characters/gin/foot.svg"
  5555. }
  5556. },
  5557. sole: {
  5558. height: math.unit(6 / 4.40, "feet"),
  5559. name: "Sole",
  5560. image: {
  5561. source: "./media/characters/gin/sole.svg"
  5562. }
  5563. },
  5564. },
  5565. [
  5566. {
  5567. name: "Normal",
  5568. height: math.unit(13 + 2 / 12, "feet")
  5569. },
  5570. {
  5571. name: "Macro",
  5572. height: math.unit(1500, "feet")
  5573. },
  5574. {
  5575. name: "Megamacro",
  5576. height: math.unit(200, "miles"),
  5577. default: true
  5578. },
  5579. {
  5580. name: "Gigamacro",
  5581. height: math.unit(500, "megameters")
  5582. },
  5583. {
  5584. name: "Teramacro",
  5585. height: math.unit(15, "lightyears")
  5586. }
  5587. ]
  5588. ))
  5589. characterMakers.push(() => makeCharacter(
  5590. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5591. {
  5592. front: {
  5593. height: math.unit(6 + 1 / 6, "feet"),
  5594. weight: math.unit(178, "lbs"),
  5595. name: "Front",
  5596. image: {
  5597. source: "./media/characters/guy/front.svg"
  5598. }
  5599. }
  5600. },
  5601. [
  5602. {
  5603. name: "Normal",
  5604. height: math.unit(6 + 1 / 6, "feet"),
  5605. default: true
  5606. },
  5607. {
  5608. name: "Large",
  5609. height: math.unit(25 + 7 / 12, "feet")
  5610. },
  5611. {
  5612. name: "Macro",
  5613. height: math.unit(60 + 9 / 12, "feet")
  5614. },
  5615. {
  5616. name: "Macro+",
  5617. height: math.unit(246, "feet")
  5618. },
  5619. {
  5620. name: "Macro++",
  5621. height: math.unit(878, "feet")
  5622. }
  5623. ]
  5624. ))
  5625. characterMakers.push(() => makeCharacter(
  5626. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5627. {
  5628. front: {
  5629. height: math.unit(9, "feet"),
  5630. weight: math.unit(800, "lbs"),
  5631. name: "Front",
  5632. image: {
  5633. source: "./media/characters/tiberius/front.svg",
  5634. extra: 2295 / 2071
  5635. }
  5636. },
  5637. back: {
  5638. height: math.unit(9, "feet"),
  5639. weight: math.unit(800, "lbs"),
  5640. name: "Back",
  5641. image: {
  5642. source: "./media/characters/tiberius/back.svg",
  5643. extra: 2373 / 2160
  5644. }
  5645. },
  5646. },
  5647. [
  5648. {
  5649. name: "Normal",
  5650. height: math.unit(9, "feet"),
  5651. default: true
  5652. }
  5653. ]
  5654. ))
  5655. characterMakers.push(() => makeCharacter(
  5656. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5657. {
  5658. front: {
  5659. height: math.unit(6, "feet"),
  5660. weight: math.unit(600, "lbs"),
  5661. name: "Front",
  5662. image: {
  5663. source: "./media/characters/surgo/front.svg",
  5664. extra: 3591 / 2227
  5665. }
  5666. },
  5667. back: {
  5668. height: math.unit(6, "feet"),
  5669. weight: math.unit(600, "lbs"),
  5670. name: "Back",
  5671. image: {
  5672. source: "./media/characters/surgo/back.svg",
  5673. extra: 3557 / 2228
  5674. }
  5675. },
  5676. laying: {
  5677. height: math.unit(6 * 0.85, "feet"),
  5678. weight: math.unit(600, "lbs"),
  5679. name: "Laying",
  5680. image: {
  5681. source: "./media/characters/surgo/laying.svg"
  5682. }
  5683. },
  5684. },
  5685. [
  5686. {
  5687. name: "Normal",
  5688. height: math.unit(6, "feet"),
  5689. default: true
  5690. }
  5691. ]
  5692. ))
  5693. characterMakers.push(() => makeCharacter(
  5694. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5695. {
  5696. side: {
  5697. height: math.unit(6, "feet"),
  5698. weight: math.unit(150, "lbs"),
  5699. name: "Side",
  5700. image: {
  5701. source: "./media/characters/cibus/side.svg",
  5702. extra: 800 / 400
  5703. }
  5704. },
  5705. },
  5706. [
  5707. {
  5708. name: "Normal",
  5709. height: math.unit(6, "feet"),
  5710. default: true
  5711. }
  5712. ]
  5713. ))
  5714. characterMakers.push(() => makeCharacter(
  5715. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5716. {
  5717. front: {
  5718. height: math.unit(6, "feet"),
  5719. weight: math.unit(240, "lbs"),
  5720. name: "Front",
  5721. image: {
  5722. source: "./media/characters/nibbles/front.svg"
  5723. }
  5724. },
  5725. side: {
  5726. height: math.unit(6, "feet"),
  5727. weight: math.unit(240, "lbs"),
  5728. name: "Side",
  5729. image: {
  5730. source: "./media/characters/nibbles/side.svg"
  5731. }
  5732. },
  5733. },
  5734. [
  5735. {
  5736. name: "Normal",
  5737. height: math.unit(9, "feet"),
  5738. default: true
  5739. }
  5740. ]
  5741. ))
  5742. characterMakers.push(() => makeCharacter(
  5743. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5744. {
  5745. side: {
  5746. height: math.unit(5 + 1 / 6, "feet"),
  5747. weight: math.unit(130, "lbs"),
  5748. name: "Side",
  5749. image: {
  5750. source: "./media/characters/rikky/side.svg",
  5751. extra: 851 / 801
  5752. }
  5753. },
  5754. },
  5755. [
  5756. {
  5757. name: "Normal",
  5758. height: math.unit(5 + 1 / 6, "feet")
  5759. },
  5760. {
  5761. name: "Macro",
  5762. height: math.unit(152, "feet"),
  5763. default: true
  5764. },
  5765. {
  5766. name: "Megamacro",
  5767. height: math.unit(7, "miles")
  5768. }
  5769. ]
  5770. ))
  5771. characterMakers.push(() => makeCharacter(
  5772. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5773. {
  5774. side: {
  5775. height: math.unit(370, "cm"),
  5776. weight: math.unit(350, "lbs"),
  5777. name: "Side",
  5778. image: {
  5779. source: "./media/characters/malfressa/side.svg"
  5780. }
  5781. },
  5782. walking: {
  5783. height: math.unit(370, "cm"),
  5784. weight: math.unit(350, "lbs"),
  5785. name: "Walking",
  5786. image: {
  5787. source: "./media/characters/malfressa/walking.svg"
  5788. }
  5789. },
  5790. feral: {
  5791. height: math.unit(2500, "cm"),
  5792. weight: math.unit(100000, "lbs"),
  5793. name: "Feral",
  5794. image: {
  5795. source: "./media/characters/malfressa/feral.svg",
  5796. extra: 2108 / 837,
  5797. bottom: 0.02
  5798. }
  5799. },
  5800. },
  5801. [
  5802. {
  5803. name: "Normal",
  5804. height: math.unit(370, "cm")
  5805. },
  5806. {
  5807. name: "Macro",
  5808. height: math.unit(300, "meters"),
  5809. default: true
  5810. }
  5811. ]
  5812. ))
  5813. characterMakers.push(() => makeCharacter(
  5814. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5815. {
  5816. front: {
  5817. height: math.unit(6, "feet"),
  5818. weight: math.unit(60, "kg"),
  5819. name: "Front",
  5820. image: {
  5821. source: "./media/characters/jaro/front.svg"
  5822. }
  5823. },
  5824. back: {
  5825. height: math.unit(6, "feet"),
  5826. weight: math.unit(60, "kg"),
  5827. name: "Back",
  5828. image: {
  5829. source: "./media/characters/jaro/back.svg"
  5830. }
  5831. },
  5832. },
  5833. [
  5834. {
  5835. name: "Micro",
  5836. height: math.unit(7, "inches")
  5837. },
  5838. {
  5839. name: "Normal",
  5840. height: math.unit(5.5, "feet"),
  5841. default: true
  5842. },
  5843. {
  5844. name: "Minimacro",
  5845. height: math.unit(20, "feet")
  5846. },
  5847. {
  5848. name: "Macro",
  5849. height: math.unit(200, "meters")
  5850. }
  5851. ]
  5852. ))
  5853. characterMakers.push(() => makeCharacter(
  5854. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5855. {
  5856. front: {
  5857. height: math.unit(6, "feet"),
  5858. weight: math.unit(195, "lb"),
  5859. name: "Front",
  5860. image: {
  5861. source: "./media/characters/rogue/front.svg"
  5862. }
  5863. },
  5864. },
  5865. [
  5866. {
  5867. name: "Macro",
  5868. height: math.unit(90, "feet"),
  5869. default: true
  5870. },
  5871. ]
  5872. ))
  5873. characterMakers.push(() => makeCharacter(
  5874. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5875. {
  5876. front: {
  5877. height: math.unit(5 + 8 / 12, "feet"),
  5878. weight: math.unit(140, "lb"),
  5879. name: "Front",
  5880. image: {
  5881. source: "./media/characters/piper/front.svg",
  5882. extra: 3948/3655,
  5883. bottom: 0/3948
  5884. }
  5885. },
  5886. },
  5887. [
  5888. {
  5889. name: "Micro",
  5890. height: math.unit(2, "inches")
  5891. },
  5892. {
  5893. name: "Normal",
  5894. height: math.unit(5 + 8 / 12, "feet")
  5895. },
  5896. {
  5897. name: "Macro",
  5898. height: math.unit(250, "feet"),
  5899. default: true
  5900. },
  5901. {
  5902. name: "Megamacro",
  5903. height: math.unit(7, "miles")
  5904. },
  5905. ]
  5906. ))
  5907. characterMakers.push(() => makeCharacter(
  5908. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5909. {
  5910. front: {
  5911. height: math.unit(6, "feet"),
  5912. weight: math.unit(220, "lb"),
  5913. name: "Front",
  5914. image: {
  5915. source: "./media/characters/gemini/front.svg"
  5916. }
  5917. },
  5918. back: {
  5919. height: math.unit(6, "feet"),
  5920. weight: math.unit(220, "lb"),
  5921. name: "Back",
  5922. image: {
  5923. source: "./media/characters/gemini/back.svg"
  5924. }
  5925. },
  5926. kneeling: {
  5927. height: math.unit(6 / 1.5, "feet"),
  5928. weight: math.unit(220, "lb"),
  5929. name: "Kneeling",
  5930. image: {
  5931. source: "./media/characters/gemini/kneeling.svg",
  5932. bottom: 0.02
  5933. }
  5934. },
  5935. },
  5936. [
  5937. {
  5938. name: "Macro",
  5939. height: math.unit(300, "meters"),
  5940. default: true
  5941. },
  5942. {
  5943. name: "Megamacro",
  5944. height: math.unit(6900, "meters")
  5945. },
  5946. ]
  5947. ))
  5948. characterMakers.push(() => makeCharacter(
  5949. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5950. {
  5951. anthro: {
  5952. height: math.unit(2.35, "meters"),
  5953. weight: math.unit(73, "kg"),
  5954. name: "Anthro",
  5955. image: {
  5956. source: "./media/characters/alicia/anthro.svg",
  5957. extra: 2571 / 2385,
  5958. bottom: 75 / 2648
  5959. }
  5960. },
  5961. paw: {
  5962. height: math.unit(1.32, "feet"),
  5963. name: "Paw",
  5964. image: {
  5965. source: "./media/characters/alicia/paw.svg"
  5966. }
  5967. },
  5968. feral: {
  5969. height: math.unit(1.69, "meters"),
  5970. weight: math.unit(73, "kg"),
  5971. name: "Feral",
  5972. image: {
  5973. source: "./media/characters/alicia/feral.svg",
  5974. extra: 2123 / 1715,
  5975. bottom: 222 / 2349
  5976. }
  5977. },
  5978. },
  5979. [
  5980. {
  5981. name: "Normal",
  5982. height: math.unit(2.35, "meters")
  5983. },
  5984. {
  5985. name: "Macro",
  5986. height: math.unit(60, "meters"),
  5987. default: true
  5988. },
  5989. {
  5990. name: "Megamacro",
  5991. height: math.unit(10000, "kilometers")
  5992. },
  5993. ]
  5994. ))
  5995. characterMakers.push(() => makeCharacter(
  5996. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5997. {
  5998. front: {
  5999. height: math.unit(7, "feet"),
  6000. weight: math.unit(250, "lbs"),
  6001. name: "Front",
  6002. image: {
  6003. source: "./media/characters/archy/front.svg"
  6004. }
  6005. }
  6006. },
  6007. [
  6008. {
  6009. name: "Micro",
  6010. height: math.unit(1, "inch")
  6011. },
  6012. {
  6013. name: "Shorty",
  6014. height: math.unit(5, "feet")
  6015. },
  6016. {
  6017. name: "Normal",
  6018. height: math.unit(7, "feet")
  6019. },
  6020. {
  6021. name: "Macro",
  6022. height: math.unit(600, "meters"),
  6023. default: true
  6024. },
  6025. {
  6026. name: "Megamacro",
  6027. height: math.unit(1, "mile")
  6028. },
  6029. ]
  6030. ))
  6031. characterMakers.push(() => makeCharacter(
  6032. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6033. {
  6034. front: {
  6035. height: math.unit(1.65, "meters"),
  6036. weight: math.unit(74, "kg"),
  6037. name: "Front",
  6038. image: {
  6039. source: "./media/characters/berri/front.svg",
  6040. extra: 857 / 837,
  6041. bottom: 18 / 877
  6042. }
  6043. },
  6044. bum: {
  6045. height: math.unit(1.46, "feet"),
  6046. name: "Bum",
  6047. image: {
  6048. source: "./media/characters/berri/bum.svg"
  6049. }
  6050. },
  6051. mouth: {
  6052. height: math.unit(0.44, "feet"),
  6053. name: "Mouth",
  6054. image: {
  6055. source: "./media/characters/berri/mouth.svg"
  6056. }
  6057. },
  6058. paw: {
  6059. height: math.unit(0.826, "feet"),
  6060. name: "Paw",
  6061. image: {
  6062. source: "./media/characters/berri/paw.svg"
  6063. }
  6064. },
  6065. },
  6066. [
  6067. {
  6068. name: "Normal",
  6069. height: math.unit(1.65, "meters")
  6070. },
  6071. {
  6072. name: "Macro",
  6073. height: math.unit(60, "m"),
  6074. default: true
  6075. },
  6076. {
  6077. name: "Megamacro",
  6078. height: math.unit(9.213, "km")
  6079. },
  6080. {
  6081. name: "Planet Eater",
  6082. height: math.unit(489, "megameters")
  6083. },
  6084. {
  6085. name: "Teramacro",
  6086. height: math.unit(2471635000000, "meters")
  6087. },
  6088. {
  6089. name: "Examacro",
  6090. height: math.unit(8.0624e+26, "meters")
  6091. }
  6092. ]
  6093. ))
  6094. characterMakers.push(() => makeCharacter(
  6095. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6096. {
  6097. front: {
  6098. height: math.unit(1.72, "meters"),
  6099. weight: math.unit(68, "kg"),
  6100. name: "Front",
  6101. image: {
  6102. source: "./media/characters/lexi/front.svg"
  6103. }
  6104. }
  6105. },
  6106. [
  6107. {
  6108. name: "Very Smol",
  6109. height: math.unit(10, "mm")
  6110. },
  6111. {
  6112. name: "Micro",
  6113. height: math.unit(6.8, "cm"),
  6114. default: true
  6115. },
  6116. {
  6117. name: "Normal",
  6118. height: math.unit(1.72, "m")
  6119. }
  6120. ]
  6121. ))
  6122. characterMakers.push(() => makeCharacter(
  6123. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6124. {
  6125. front: {
  6126. height: math.unit(1.69, "meters"),
  6127. weight: math.unit(68, "kg"),
  6128. name: "Front",
  6129. image: {
  6130. source: "./media/characters/martin/front.svg",
  6131. extra: 596 / 581
  6132. }
  6133. }
  6134. },
  6135. [
  6136. {
  6137. name: "Micro",
  6138. height: math.unit(6.85, "cm"),
  6139. default: true
  6140. },
  6141. {
  6142. name: "Normal",
  6143. height: math.unit(1.69, "m")
  6144. }
  6145. ]
  6146. ))
  6147. characterMakers.push(() => makeCharacter(
  6148. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6149. {
  6150. front: {
  6151. height: math.unit(1.69, "meters"),
  6152. weight: math.unit(68, "kg"),
  6153. name: "Front",
  6154. image: {
  6155. source: "./media/characters/juno/front.svg"
  6156. }
  6157. }
  6158. },
  6159. [
  6160. {
  6161. name: "Micro",
  6162. height: math.unit(7, "cm")
  6163. },
  6164. {
  6165. name: "Normal",
  6166. height: math.unit(1.89, "m")
  6167. },
  6168. {
  6169. name: "Macro",
  6170. height: math.unit(353, "meters"),
  6171. default: true
  6172. }
  6173. ]
  6174. ))
  6175. characterMakers.push(() => makeCharacter(
  6176. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6177. {
  6178. front: {
  6179. height: math.unit(1.93, "meters"),
  6180. weight: math.unit(83, "kg"),
  6181. name: "Front",
  6182. image: {
  6183. source: "./media/characters/samantha/front.svg"
  6184. }
  6185. },
  6186. frontClothed: {
  6187. height: math.unit(1.93, "meters"),
  6188. weight: math.unit(83, "kg"),
  6189. name: "Front (Clothed)",
  6190. image: {
  6191. source: "./media/characters/samantha/front-clothed.svg"
  6192. }
  6193. },
  6194. back: {
  6195. height: math.unit(1.93, "meters"),
  6196. weight: math.unit(83, "kg"),
  6197. name: "Back",
  6198. image: {
  6199. source: "./media/characters/samantha/back.svg"
  6200. }
  6201. },
  6202. },
  6203. [
  6204. {
  6205. name: "Normal",
  6206. height: math.unit(1.93, "m")
  6207. },
  6208. {
  6209. name: "Macro",
  6210. height: math.unit(74, "meters"),
  6211. default: true
  6212. },
  6213. {
  6214. name: "Macro+",
  6215. height: math.unit(223, "meters"),
  6216. },
  6217. {
  6218. name: "Megamacro",
  6219. height: math.unit(8381, "meters"),
  6220. },
  6221. {
  6222. name: "Megamacro+",
  6223. height: math.unit(12000, "kilometers")
  6224. },
  6225. ]
  6226. ))
  6227. characterMakers.push(() => makeCharacter(
  6228. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6229. {
  6230. front: {
  6231. height: math.unit(1.92, "meters"),
  6232. weight: math.unit(80, "kg"),
  6233. name: "Front",
  6234. image: {
  6235. source: "./media/characters/dr-clay/front.svg"
  6236. }
  6237. },
  6238. frontClothed: {
  6239. height: math.unit(1.92, "meters"),
  6240. weight: math.unit(80, "kg"),
  6241. name: "Front (Clothed)",
  6242. image: {
  6243. source: "./media/characters/dr-clay/front-clothed.svg"
  6244. }
  6245. }
  6246. },
  6247. [
  6248. {
  6249. name: "Normal",
  6250. height: math.unit(1.92, "m")
  6251. },
  6252. {
  6253. name: "Macro",
  6254. height: math.unit(214, "meters"),
  6255. default: true
  6256. },
  6257. {
  6258. name: "Macro+",
  6259. height: math.unit(12.237, "meters"),
  6260. },
  6261. {
  6262. name: "Megamacro",
  6263. height: math.unit(557, "megameters"),
  6264. },
  6265. {
  6266. name: "Unimaginable",
  6267. height: math.unit(120e9, "lightyears")
  6268. },
  6269. ]
  6270. ))
  6271. characterMakers.push(() => makeCharacter(
  6272. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6273. {
  6274. front: {
  6275. height: math.unit(2, "meters"),
  6276. weight: math.unit(80, "kg"),
  6277. name: "Front",
  6278. image: {
  6279. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6280. }
  6281. }
  6282. },
  6283. [
  6284. {
  6285. name: "Teramacro",
  6286. height: math.unit(500000, "lightyears"),
  6287. default: true
  6288. },
  6289. ]
  6290. ))
  6291. characterMakers.push(() => makeCharacter(
  6292. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6293. {
  6294. front: {
  6295. height: math.unit(2, "meters"),
  6296. weight: math.unit(150, "kg"),
  6297. name: "Front",
  6298. image: {
  6299. source: "./media/characters/vemus/front.svg",
  6300. extra: 2384 / 2084,
  6301. bottom: 0.0123
  6302. }
  6303. }
  6304. },
  6305. [
  6306. {
  6307. name: "Normal",
  6308. height: math.unit(3.75, "meters"),
  6309. default: true
  6310. },
  6311. {
  6312. name: "Big",
  6313. height: math.unit(8, "meters")
  6314. },
  6315. {
  6316. name: "Macro",
  6317. height: math.unit(100, "meters")
  6318. },
  6319. {
  6320. name: "Macro+",
  6321. height: math.unit(1500, "meters")
  6322. },
  6323. {
  6324. name: "Stellar",
  6325. height: math.unit(14e8, "meters")
  6326. },
  6327. ]
  6328. ))
  6329. characterMakers.push(() => makeCharacter(
  6330. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6331. {
  6332. front: {
  6333. height: math.unit(2, "meters"),
  6334. weight: math.unit(70, "kg"),
  6335. name: "Front",
  6336. image: {
  6337. source: "./media/characters/beherit/front.svg",
  6338. extra: 1408 / 1242
  6339. }
  6340. }
  6341. },
  6342. [
  6343. {
  6344. name: "Normal",
  6345. height: math.unit(6, "feet")
  6346. },
  6347. {
  6348. name: "Lorg",
  6349. height: math.unit(25, "feet"),
  6350. default: true
  6351. },
  6352. {
  6353. name: "Lorger",
  6354. height: math.unit(75, "feet")
  6355. },
  6356. {
  6357. name: "Macro",
  6358. height: math.unit(200, "meters")
  6359. },
  6360. ]
  6361. ))
  6362. characterMakers.push(() => makeCharacter(
  6363. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6364. {
  6365. front: {
  6366. height: math.unit(2, "meters"),
  6367. weight: math.unit(150, "kg"),
  6368. name: "Front",
  6369. image: {
  6370. source: "./media/characters/everett/front.svg",
  6371. extra: 2038 / 1737,
  6372. bottom: 0.03
  6373. }
  6374. },
  6375. paw: {
  6376. height: math.unit(2 / 3.6, "meters"),
  6377. name: "Paw",
  6378. image: {
  6379. source: "./media/characters/everett/paw.svg"
  6380. }
  6381. },
  6382. },
  6383. [
  6384. {
  6385. name: "Normal",
  6386. height: math.unit(15, "feet"),
  6387. default: true
  6388. },
  6389. {
  6390. name: "Lorg",
  6391. height: math.unit(70, "feet"),
  6392. default: true
  6393. },
  6394. {
  6395. name: "Lorger",
  6396. height: math.unit(250, "feet")
  6397. },
  6398. {
  6399. name: "Macro",
  6400. height: math.unit(500, "meters")
  6401. },
  6402. ]
  6403. ))
  6404. characterMakers.push(() => makeCharacter(
  6405. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6406. {
  6407. front: {
  6408. height: math.unit(2, "meters"),
  6409. weight: math.unit(86, "kg"),
  6410. name: "Front",
  6411. image: {
  6412. source: "./media/characters/rose/front.svg",
  6413. extra: 350/335,
  6414. bottom: 10/360
  6415. }
  6416. },
  6417. frontAlt: {
  6418. height: math.unit(1.6, "meters"),
  6419. weight: math.unit(86, "kg"),
  6420. name: "Front (Alt)",
  6421. image: {
  6422. source: "./media/characters/rose/front-alt.svg",
  6423. extra: 299/283,
  6424. bottom: 3/302
  6425. }
  6426. },
  6427. plush: {
  6428. height: math.unit(2, "meters"),
  6429. weight: math.unit(86/3, "kg"),
  6430. name: "Plush",
  6431. image: {
  6432. source: "./media/characters/rose/plush.svg",
  6433. extra: 361/337,
  6434. bottom: 11/372
  6435. }
  6436. },
  6437. },
  6438. [
  6439. {
  6440. name: "Mini-Micro",
  6441. height: math.unit(1, "cm")
  6442. },
  6443. {
  6444. name: "Micro",
  6445. height: math.unit(3.5, "inches"),
  6446. default: true
  6447. },
  6448. {
  6449. name: "Normal",
  6450. height: math.unit(6 + 1 / 6, "feet")
  6451. },
  6452. {
  6453. name: "Mini-Macro",
  6454. height: math.unit(9 + 10 / 12, "feet")
  6455. },
  6456. ]
  6457. ))
  6458. characterMakers.push(() => makeCharacter(
  6459. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6460. {
  6461. front: {
  6462. height: math.unit(2, "meters"),
  6463. weight: math.unit(350, "lbs"),
  6464. name: "Front",
  6465. image: {
  6466. source: "./media/characters/regal/front.svg"
  6467. }
  6468. },
  6469. back: {
  6470. height: math.unit(2, "meters"),
  6471. weight: math.unit(350, "lbs"),
  6472. name: "Back",
  6473. image: {
  6474. source: "./media/characters/regal/back.svg"
  6475. }
  6476. },
  6477. },
  6478. [
  6479. {
  6480. name: "Macro",
  6481. height: math.unit(350, "feet"),
  6482. default: true
  6483. }
  6484. ]
  6485. ))
  6486. characterMakers.push(() => makeCharacter(
  6487. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6488. {
  6489. front: {
  6490. height: math.unit(4 + 11 / 12, "feet"),
  6491. weight: math.unit(100, "lbs"),
  6492. name: "Front",
  6493. image: {
  6494. source: "./media/characters/opal/front.svg"
  6495. }
  6496. },
  6497. frontAlt: {
  6498. height: math.unit(4 + 11 / 12, "feet"),
  6499. weight: math.unit(100, "lbs"),
  6500. name: "Front (Alt)",
  6501. image: {
  6502. source: "./media/characters/opal/front-alt.svg"
  6503. }
  6504. },
  6505. },
  6506. [
  6507. {
  6508. name: "Small",
  6509. height: math.unit(4 + 11 / 12, "feet")
  6510. },
  6511. {
  6512. name: "Normal",
  6513. height: math.unit(20, "feet"),
  6514. default: true
  6515. },
  6516. {
  6517. name: "Macro",
  6518. height: math.unit(120, "feet")
  6519. },
  6520. {
  6521. name: "Megamacro",
  6522. height: math.unit(80, "miles")
  6523. },
  6524. {
  6525. name: "True Size",
  6526. height: math.unit(100000, "lightyears")
  6527. },
  6528. ]
  6529. ))
  6530. characterMakers.push(() => makeCharacter(
  6531. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6532. {
  6533. front: {
  6534. height: math.unit(6, "feet"),
  6535. weight: math.unit(200, "lbs"),
  6536. name: "Front",
  6537. image: {
  6538. source: "./media/characters/vector-wuff/front.svg"
  6539. }
  6540. }
  6541. },
  6542. [
  6543. {
  6544. name: "Normal",
  6545. height: math.unit(2.8, "meters")
  6546. },
  6547. {
  6548. name: "Macro",
  6549. height: math.unit(450, "meters"),
  6550. default: true
  6551. },
  6552. {
  6553. name: "Megamacro",
  6554. height: math.unit(15, "kilometers")
  6555. }
  6556. ]
  6557. ))
  6558. characterMakers.push(() => makeCharacter(
  6559. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6560. {
  6561. front: {
  6562. height: math.unit(6, "feet"),
  6563. weight: math.unit(256, "lbs"),
  6564. name: "Front",
  6565. image: {
  6566. source: "./media/characters/dannik/front.svg"
  6567. }
  6568. }
  6569. },
  6570. [
  6571. {
  6572. name: "Macro",
  6573. height: math.unit(69.57, "meters"),
  6574. default: true
  6575. },
  6576. ]
  6577. ))
  6578. characterMakers.push(() => makeCharacter(
  6579. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6580. {
  6581. front: {
  6582. height: math.unit(6, "feet"),
  6583. weight: math.unit(120, "lbs"),
  6584. name: "Front",
  6585. image: {
  6586. source: "./media/characters/azura-saharah/front.svg"
  6587. }
  6588. },
  6589. back: {
  6590. height: math.unit(6, "feet"),
  6591. weight: math.unit(120, "lbs"),
  6592. name: "Back",
  6593. image: {
  6594. source: "./media/characters/azura-saharah/back.svg"
  6595. }
  6596. },
  6597. },
  6598. [
  6599. {
  6600. name: "Macro",
  6601. height: math.unit(100, "feet"),
  6602. default: true
  6603. },
  6604. ]
  6605. ))
  6606. characterMakers.push(() => makeCharacter(
  6607. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6608. {
  6609. side: {
  6610. height: math.unit(5 + 4 / 12, "feet"),
  6611. weight: math.unit(163, "lbs"),
  6612. name: "Side",
  6613. image: {
  6614. source: "./media/characters/kennedy/side.svg"
  6615. }
  6616. }
  6617. },
  6618. [
  6619. {
  6620. name: "Standard Doggo",
  6621. height: math.unit(5 + 4 / 12, "feet")
  6622. },
  6623. {
  6624. name: "Big Doggo",
  6625. height: math.unit(25 + 3 / 12, "feet"),
  6626. default: true
  6627. },
  6628. ]
  6629. ))
  6630. characterMakers.push(() => makeCharacter(
  6631. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6632. {
  6633. front: {
  6634. height: math.unit(6, "feet"),
  6635. weight: math.unit(90, "lbs"),
  6636. name: "Front",
  6637. image: {
  6638. source: "./media/characters/odi-lunar/front.svg"
  6639. }
  6640. }
  6641. },
  6642. [
  6643. {
  6644. name: "Micro",
  6645. height: math.unit(3, "inches"),
  6646. default: true
  6647. },
  6648. {
  6649. name: "Normal",
  6650. height: math.unit(5.5, "feet")
  6651. }
  6652. ]
  6653. ))
  6654. characterMakers.push(() => makeCharacter(
  6655. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6656. {
  6657. back: {
  6658. height: math.unit(6, "feet"),
  6659. weight: math.unit(220, "lbs"),
  6660. name: "Back",
  6661. image: {
  6662. source: "./media/characters/mandake/back.svg"
  6663. }
  6664. }
  6665. },
  6666. [
  6667. {
  6668. name: "Normal",
  6669. height: math.unit(7, "feet"),
  6670. default: true
  6671. },
  6672. {
  6673. name: "Macro",
  6674. height: math.unit(78, "feet")
  6675. },
  6676. {
  6677. name: "Macro+",
  6678. height: math.unit(300, "meters")
  6679. },
  6680. {
  6681. name: "Macro++",
  6682. height: math.unit(2400, "feet")
  6683. },
  6684. {
  6685. name: "Megamacro",
  6686. height: math.unit(5167, "meters")
  6687. },
  6688. {
  6689. name: "Gigamacro",
  6690. height: math.unit(41769, "miles")
  6691. },
  6692. ]
  6693. ))
  6694. characterMakers.push(() => makeCharacter(
  6695. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6696. {
  6697. front: {
  6698. height: math.unit(6, "feet"),
  6699. weight: math.unit(120, "lbs"),
  6700. name: "Front",
  6701. image: {
  6702. source: "./media/characters/yozey/front.svg"
  6703. }
  6704. },
  6705. frontAlt: {
  6706. height: math.unit(6, "feet"),
  6707. weight: math.unit(120, "lbs"),
  6708. name: "Front (Alt)",
  6709. image: {
  6710. source: "./media/characters/yozey/front-alt.svg"
  6711. }
  6712. },
  6713. side: {
  6714. height: math.unit(6, "feet"),
  6715. weight: math.unit(120, "lbs"),
  6716. name: "Side",
  6717. image: {
  6718. source: "./media/characters/yozey/side.svg"
  6719. }
  6720. },
  6721. },
  6722. [
  6723. {
  6724. name: "Micro",
  6725. height: math.unit(3, "inches"),
  6726. default: true
  6727. },
  6728. {
  6729. name: "Normal",
  6730. height: math.unit(6, "feet")
  6731. }
  6732. ]
  6733. ))
  6734. characterMakers.push(() => makeCharacter(
  6735. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6736. {
  6737. front: {
  6738. height: math.unit(6, "feet"),
  6739. weight: math.unit(103, "lbs"),
  6740. name: "Front",
  6741. image: {
  6742. source: "./media/characters/valeska-voss/front.svg"
  6743. }
  6744. }
  6745. },
  6746. [
  6747. {
  6748. name: "Mini-Sized Sub",
  6749. height: math.unit(3.1, "inches")
  6750. },
  6751. {
  6752. name: "Mid-Sized Sub",
  6753. height: math.unit(6.2, "inches")
  6754. },
  6755. {
  6756. name: "Full-Sized Sub",
  6757. height: math.unit(9.3, "inches")
  6758. },
  6759. {
  6760. name: "Normal",
  6761. height: math.unit(5 + 2 / 12, "foot"),
  6762. default: true
  6763. },
  6764. ]
  6765. ))
  6766. characterMakers.push(() => makeCharacter(
  6767. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6768. {
  6769. front: {
  6770. height: math.unit(6, "feet"),
  6771. weight: math.unit(160, "lbs"),
  6772. name: "Front",
  6773. image: {
  6774. source: "./media/characters/gene-zeta/front.svg",
  6775. extra: 3006 / 2826,
  6776. bottom: 182 / 3188
  6777. }
  6778. }
  6779. },
  6780. [
  6781. {
  6782. name: "Micro",
  6783. height: math.unit(6, "inches")
  6784. },
  6785. {
  6786. name: "Normal",
  6787. height: math.unit(5 + 11 / 12, "foot"),
  6788. default: true
  6789. },
  6790. {
  6791. name: "Macro",
  6792. height: math.unit(140, "feet")
  6793. },
  6794. {
  6795. name: "Supercharged",
  6796. height: math.unit(2500, "feet")
  6797. },
  6798. ]
  6799. ))
  6800. characterMakers.push(() => makeCharacter(
  6801. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6802. {
  6803. front: {
  6804. height: math.unit(6, "feet"),
  6805. weight: math.unit(350, "lbs"),
  6806. name: "Front",
  6807. image: {
  6808. source: "./media/characters/razinox/front.svg",
  6809. extra: 1686 / 1548,
  6810. bottom: 28.2 / 1868
  6811. }
  6812. },
  6813. back: {
  6814. height: math.unit(6, "feet"),
  6815. weight: math.unit(350, "lbs"),
  6816. name: "Back",
  6817. image: {
  6818. source: "./media/characters/razinox/back.svg",
  6819. extra: 1660 / 1590,
  6820. bottom: 15 / 1665
  6821. }
  6822. },
  6823. },
  6824. [
  6825. {
  6826. name: "Normal",
  6827. height: math.unit(10 + 8 / 12, "foot")
  6828. },
  6829. {
  6830. name: "Minimacro",
  6831. height: math.unit(15, "foot")
  6832. },
  6833. {
  6834. name: "Macro",
  6835. height: math.unit(60, "foot"),
  6836. default: true
  6837. },
  6838. {
  6839. name: "Megamacro",
  6840. height: math.unit(5, "miles")
  6841. },
  6842. {
  6843. name: "Gigamacro",
  6844. height: math.unit(6000, "miles")
  6845. },
  6846. ]
  6847. ))
  6848. characterMakers.push(() => makeCharacter(
  6849. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6850. {
  6851. front: {
  6852. height: math.unit(6, "feet"),
  6853. weight: math.unit(150, "lbs"),
  6854. name: "Front",
  6855. image: {
  6856. source: "./media/characters/cobalt/front.svg"
  6857. }
  6858. }
  6859. },
  6860. [
  6861. {
  6862. name: "Normal",
  6863. height: math.unit(8 + 1 / 12, "foot")
  6864. },
  6865. {
  6866. name: "Macro",
  6867. height: math.unit(111, "foot"),
  6868. default: true
  6869. },
  6870. {
  6871. name: "Supracosmic",
  6872. height: math.unit(1e42, "feet")
  6873. },
  6874. ]
  6875. ))
  6876. characterMakers.push(() => makeCharacter(
  6877. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6878. {
  6879. front: {
  6880. height: math.unit(6, "feet"),
  6881. weight: math.unit(140, "lbs"),
  6882. name: "Front",
  6883. image: {
  6884. source: "./media/characters/amanda/front.svg"
  6885. }
  6886. }
  6887. },
  6888. [
  6889. {
  6890. name: "Micro",
  6891. height: math.unit(5, "inches"),
  6892. default: true
  6893. },
  6894. ]
  6895. ))
  6896. characterMakers.push(() => makeCharacter(
  6897. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6898. {
  6899. front: {
  6900. height: math.unit(2.75, "meters"),
  6901. weight: math.unit(1200, "lb"),
  6902. name: "Front",
  6903. image: {
  6904. source: "./media/characters/teal/front.svg",
  6905. extra: 2463 / 2320,
  6906. bottom: 166 / 2629
  6907. }
  6908. },
  6909. back: {
  6910. height: math.unit(2.75, "meters"),
  6911. weight: math.unit(1200, "lb"),
  6912. name: "Back",
  6913. image: {
  6914. source: "./media/characters/teal/back.svg",
  6915. extra: 2580 / 2489,
  6916. bottom: 151 / 2731
  6917. }
  6918. },
  6919. sitting: {
  6920. height: math.unit(1.9, "meters"),
  6921. weight: math.unit(1200, "lb"),
  6922. name: "Sitting",
  6923. image: {
  6924. source: "./media/characters/teal/sitting.svg",
  6925. extra: 623 / 590,
  6926. bottom: 121 / 744
  6927. }
  6928. },
  6929. standing: {
  6930. height: math.unit(2.75, "meters"),
  6931. weight: math.unit(1200, "lb"),
  6932. name: "Standing",
  6933. image: {
  6934. source: "./media/characters/teal/standing.svg",
  6935. extra: 923 / 893,
  6936. bottom: 60 / 983
  6937. }
  6938. },
  6939. stretching: {
  6940. height: math.unit(3.65, "meters"),
  6941. weight: math.unit(1200, "lb"),
  6942. name: "Stretching",
  6943. image: {
  6944. source: "./media/characters/teal/stretching.svg",
  6945. extra: 1276 / 1244,
  6946. bottom: 0 / 1276
  6947. }
  6948. },
  6949. legged: {
  6950. height: math.unit(1.3, "meters"),
  6951. weight: math.unit(100, "lb"),
  6952. name: "Legged",
  6953. image: {
  6954. source: "./media/characters/teal/legged.svg",
  6955. extra: 462 / 437,
  6956. bottom: 24 / 486
  6957. }
  6958. },
  6959. naga: {
  6960. height: math.unit(5.4, "meters"),
  6961. weight: math.unit(4000, "lb"),
  6962. name: "Naga",
  6963. image: {
  6964. source: "./media/characters/teal/naga.svg",
  6965. extra: 1902 / 1858,
  6966. bottom: 0 / 1902
  6967. }
  6968. },
  6969. hand: {
  6970. height: math.unit(0.52, "meters"),
  6971. name: "Hand",
  6972. image: {
  6973. source: "./media/characters/teal/hand.svg"
  6974. }
  6975. },
  6976. maw: {
  6977. height: math.unit(0.43, "meters"),
  6978. name: "Maw",
  6979. image: {
  6980. source: "./media/characters/teal/maw.svg"
  6981. }
  6982. },
  6983. slit: {
  6984. height: math.unit(0.25, "meters"),
  6985. name: "Slit",
  6986. image: {
  6987. source: "./media/characters/teal/slit.svg"
  6988. }
  6989. },
  6990. },
  6991. [
  6992. {
  6993. name: "Normal",
  6994. height: math.unit(2.75, "meters"),
  6995. default: true
  6996. },
  6997. {
  6998. name: "Macro",
  6999. height: math.unit(300, "feet")
  7000. },
  7001. {
  7002. name: "Macro+",
  7003. height: math.unit(2000, "feet")
  7004. },
  7005. ]
  7006. ))
  7007. characterMakers.push(() => makeCharacter(
  7008. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  7009. {
  7010. frontCat: {
  7011. height: math.unit(6, "feet"),
  7012. weight: math.unit(180, "lbs"),
  7013. name: "Front (Cat)",
  7014. image: {
  7015. source: "./media/characters/ravin-amulet/front-cat.svg"
  7016. }
  7017. },
  7018. frontCatAlt: {
  7019. height: math.unit(6, "feet"),
  7020. weight: math.unit(180, "lbs"),
  7021. name: "Front (Alt, Cat)",
  7022. image: {
  7023. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7024. }
  7025. },
  7026. frontWerewolf: {
  7027. height: math.unit(6 * 1.2, "feet"),
  7028. weight: math.unit(225, "lbs"),
  7029. name: "Front (Werewolf)",
  7030. image: {
  7031. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7032. }
  7033. },
  7034. backWerewolf: {
  7035. height: math.unit(6 * 1.2, "feet"),
  7036. weight: math.unit(225, "lbs"),
  7037. name: "Back (Werewolf)",
  7038. image: {
  7039. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7040. }
  7041. },
  7042. },
  7043. [
  7044. {
  7045. name: "Nano",
  7046. height: math.unit(1, "micrometer")
  7047. },
  7048. {
  7049. name: "Micro",
  7050. height: math.unit(1, "inch")
  7051. },
  7052. {
  7053. name: "Normal",
  7054. height: math.unit(6, "feet"),
  7055. default: true
  7056. },
  7057. {
  7058. name: "Macro",
  7059. height: math.unit(60, "feet")
  7060. }
  7061. ]
  7062. ))
  7063. characterMakers.push(() => makeCharacter(
  7064. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7065. {
  7066. front: {
  7067. height: math.unit(6, "feet"),
  7068. weight: math.unit(165, "lbs"),
  7069. name: "Front",
  7070. image: {
  7071. source: "./media/characters/fluoresce/front.svg"
  7072. }
  7073. }
  7074. },
  7075. [
  7076. {
  7077. name: "Micro",
  7078. height: math.unit(6, "cm")
  7079. },
  7080. {
  7081. name: "Normal",
  7082. height: math.unit(5 + 7 / 12, "feet"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Macro",
  7087. height: math.unit(56, "feet")
  7088. },
  7089. {
  7090. name: "Megamacro",
  7091. height: math.unit(1.9, "miles")
  7092. },
  7093. ]
  7094. ))
  7095. characterMakers.push(() => makeCharacter(
  7096. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7097. {
  7098. front: {
  7099. height: math.unit(9 + 6 / 12, "feet"),
  7100. weight: math.unit(523, "lbs"),
  7101. name: "Side",
  7102. image: {
  7103. source: "./media/characters/aurora/side.svg"
  7104. }
  7105. }
  7106. },
  7107. [
  7108. {
  7109. name: "Normal",
  7110. height: math.unit(9 + 6 / 12, "feet")
  7111. },
  7112. {
  7113. name: "Macro",
  7114. height: math.unit(96, "feet"),
  7115. default: true
  7116. },
  7117. {
  7118. name: "Macro+",
  7119. height: math.unit(243, "feet")
  7120. },
  7121. ]
  7122. ))
  7123. characterMakers.push(() => makeCharacter(
  7124. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7125. {
  7126. front: {
  7127. height: math.unit(194, "cm"),
  7128. weight: math.unit(90, "kg"),
  7129. name: "Front",
  7130. image: {
  7131. source: "./media/characters/ranek/front.svg"
  7132. }
  7133. },
  7134. side: {
  7135. height: math.unit(194, "cm"),
  7136. weight: math.unit(90, "kg"),
  7137. name: "Side",
  7138. image: {
  7139. source: "./media/characters/ranek/side.svg"
  7140. }
  7141. },
  7142. back: {
  7143. height: math.unit(194, "cm"),
  7144. weight: math.unit(90, "kg"),
  7145. name: "Back",
  7146. image: {
  7147. source: "./media/characters/ranek/back.svg"
  7148. }
  7149. },
  7150. feral: {
  7151. height: math.unit(30, "cm"),
  7152. weight: math.unit(1.6, "lbs"),
  7153. name: "Feral",
  7154. image: {
  7155. source: "./media/characters/ranek/feral.svg"
  7156. }
  7157. },
  7158. },
  7159. [
  7160. {
  7161. name: "Normal",
  7162. height: math.unit(194, "cm"),
  7163. default: true
  7164. },
  7165. {
  7166. name: "Macro",
  7167. height: math.unit(100, "meters")
  7168. },
  7169. ]
  7170. ))
  7171. characterMakers.push(() => makeCharacter(
  7172. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7173. {
  7174. front: {
  7175. height: math.unit(5 + 6 / 12, "feet"),
  7176. weight: math.unit(153, "lbs"),
  7177. name: "Front",
  7178. image: {
  7179. source: "./media/characters/andrew-cooper/front.svg"
  7180. }
  7181. },
  7182. },
  7183. [
  7184. {
  7185. name: "Nano",
  7186. height: math.unit(1, "mm")
  7187. },
  7188. {
  7189. name: "Micro",
  7190. height: math.unit(2, "inches")
  7191. },
  7192. {
  7193. name: "Normal",
  7194. height: math.unit(5 + 6 / 12, "feet"),
  7195. default: true
  7196. }
  7197. ]
  7198. ))
  7199. characterMakers.push(() => makeCharacter(
  7200. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7201. {
  7202. front: {
  7203. height: math.unit(6, "feet"),
  7204. weight: math.unit(180, "lbs"),
  7205. name: "Front",
  7206. image: {
  7207. source: "./media/characters/akane-sato/front.svg",
  7208. extra: 1219 / 1140
  7209. }
  7210. },
  7211. back: {
  7212. height: math.unit(6, "feet"),
  7213. weight: math.unit(180, "lbs"),
  7214. name: "Back",
  7215. image: {
  7216. source: "./media/characters/akane-sato/back.svg",
  7217. extra: 1219 / 1170
  7218. }
  7219. },
  7220. },
  7221. [
  7222. {
  7223. name: "Normal",
  7224. height: math.unit(2.5, "meters")
  7225. },
  7226. {
  7227. name: "Macro",
  7228. height: math.unit(250, "meters"),
  7229. default: true
  7230. },
  7231. {
  7232. name: "Megamacro",
  7233. height: math.unit(25, "km")
  7234. },
  7235. ]
  7236. ))
  7237. characterMakers.push(() => makeCharacter(
  7238. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7239. {
  7240. front: {
  7241. height: math.unit(6, "feet"),
  7242. weight: math.unit(65, "kg"),
  7243. name: "Front",
  7244. image: {
  7245. source: "./media/characters/rook/front.svg",
  7246. extra: 960 / 950
  7247. }
  7248. }
  7249. },
  7250. [
  7251. {
  7252. name: "Normal",
  7253. height: math.unit(8.8, "feet")
  7254. },
  7255. {
  7256. name: "Macro",
  7257. height: math.unit(88, "feet"),
  7258. default: true
  7259. },
  7260. {
  7261. name: "Megamacro",
  7262. height: math.unit(8, "miles")
  7263. },
  7264. ]
  7265. ))
  7266. characterMakers.push(() => makeCharacter(
  7267. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7268. {
  7269. front: {
  7270. height: math.unit(12 + 2 / 12, "feet"),
  7271. weight: math.unit(808, "lbs"),
  7272. name: "Front",
  7273. image: {
  7274. source: "./media/characters/prodigy/front.svg"
  7275. }
  7276. }
  7277. },
  7278. [
  7279. {
  7280. name: "Normal",
  7281. height: math.unit(12 + 2 / 12, "feet"),
  7282. default: true
  7283. },
  7284. {
  7285. name: "Macro",
  7286. height: math.unit(143, "feet")
  7287. },
  7288. {
  7289. name: "Macro+",
  7290. height: math.unit(400, "feet")
  7291. },
  7292. ]
  7293. ))
  7294. characterMakers.push(() => makeCharacter(
  7295. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7296. {
  7297. front: {
  7298. height: math.unit(6, "feet"),
  7299. weight: math.unit(225, "lbs"),
  7300. name: "Front",
  7301. image: {
  7302. source: "./media/characters/daniel/front.svg"
  7303. }
  7304. },
  7305. leaning: {
  7306. height: math.unit(6, "feet"),
  7307. weight: math.unit(225, "lbs"),
  7308. name: "Leaning",
  7309. image: {
  7310. source: "./media/characters/daniel/leaning.svg"
  7311. }
  7312. },
  7313. },
  7314. [
  7315. {
  7316. name: "Macro",
  7317. height: math.unit(1000, "feet"),
  7318. default: true
  7319. },
  7320. ]
  7321. ))
  7322. characterMakers.push(() => makeCharacter(
  7323. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7324. {
  7325. front: {
  7326. height: math.unit(6, "feet"),
  7327. weight: math.unit(88, "lbs"),
  7328. name: "Front",
  7329. image: {
  7330. source: "./media/characters/chiros/front.svg",
  7331. extra: 306 / 226
  7332. }
  7333. },
  7334. side: {
  7335. height: math.unit(6, "feet"),
  7336. weight: math.unit(88, "lbs"),
  7337. name: "Side",
  7338. image: {
  7339. source: "./media/characters/chiros/side.svg",
  7340. extra: 306 / 226
  7341. }
  7342. },
  7343. },
  7344. [
  7345. {
  7346. name: "Normal",
  7347. height: math.unit(6, "cm"),
  7348. default: true
  7349. },
  7350. ]
  7351. ))
  7352. characterMakers.push(() => makeCharacter(
  7353. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7354. {
  7355. front: {
  7356. height: math.unit(6, "feet"),
  7357. weight: math.unit(100, "lbs"),
  7358. name: "Front",
  7359. image: {
  7360. source: "./media/characters/selka/front.svg",
  7361. extra: 947 / 887
  7362. }
  7363. }
  7364. },
  7365. [
  7366. {
  7367. name: "Normal",
  7368. height: math.unit(5, "cm"),
  7369. default: true
  7370. },
  7371. ]
  7372. ))
  7373. characterMakers.push(() => makeCharacter(
  7374. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7375. {
  7376. front: {
  7377. height: math.unit(8 + 3 / 12, "feet"),
  7378. weight: math.unit(424, "lbs"),
  7379. name: "Front",
  7380. image: {
  7381. source: "./media/characters/verin/front.svg",
  7382. extra: 1845 / 1550
  7383. }
  7384. },
  7385. frontArmored: {
  7386. height: math.unit(8 + 3 / 12, "feet"),
  7387. weight: math.unit(424, "lbs"),
  7388. name: "Front (Armored)",
  7389. image: {
  7390. source: "./media/characters/verin/front-armor.svg",
  7391. extra: 1845 / 1550,
  7392. bottom: 0.01
  7393. }
  7394. },
  7395. back: {
  7396. height: math.unit(8 + 3 / 12, "feet"),
  7397. weight: math.unit(424, "lbs"),
  7398. name: "Back",
  7399. image: {
  7400. source: "./media/characters/verin/back.svg",
  7401. bottom: 0.1,
  7402. extra: 1
  7403. }
  7404. },
  7405. foot: {
  7406. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7407. name: "Foot",
  7408. image: {
  7409. source: "./media/characters/verin/foot.svg"
  7410. }
  7411. },
  7412. },
  7413. [
  7414. {
  7415. name: "Normal",
  7416. height: math.unit(8 + 3 / 12, "feet")
  7417. },
  7418. {
  7419. name: "Minimacro",
  7420. height: math.unit(21, "feet"),
  7421. default: true
  7422. },
  7423. {
  7424. name: "Macro",
  7425. height: math.unit(626, "feet")
  7426. },
  7427. ]
  7428. ))
  7429. characterMakers.push(() => makeCharacter(
  7430. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7431. {
  7432. front: {
  7433. height: math.unit(2.718, "meters"),
  7434. weight: math.unit(150, "lbs"),
  7435. name: "Front",
  7436. image: {
  7437. source: "./media/characters/sovrim-terraquian/front.svg"
  7438. }
  7439. },
  7440. back: {
  7441. height: math.unit(2.718, "meters"),
  7442. weight: math.unit(150, "lbs"),
  7443. name: "Back",
  7444. image: {
  7445. source: "./media/characters/sovrim-terraquian/back.svg"
  7446. }
  7447. }
  7448. },
  7449. [
  7450. {
  7451. name: "Micro",
  7452. height: math.unit(2, "inches")
  7453. },
  7454. {
  7455. name: "Small",
  7456. height: math.unit(1, "meter")
  7457. },
  7458. {
  7459. name: "Normal",
  7460. height: math.unit(Math.E, "meters"),
  7461. default: true
  7462. },
  7463. {
  7464. name: "Macro",
  7465. height: math.unit(20, "meters")
  7466. },
  7467. {
  7468. name: "Macro+",
  7469. height: math.unit(400, "meters")
  7470. },
  7471. ]
  7472. ))
  7473. characterMakers.push(() => makeCharacter(
  7474. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7475. {
  7476. front: {
  7477. height: math.unit(7, "feet"),
  7478. weight: math.unit(489, "lbs"),
  7479. name: "Front",
  7480. image: {
  7481. source: "./media/characters/reece-silvermane/front.svg",
  7482. bottom: 0.02,
  7483. extra: 1
  7484. }
  7485. },
  7486. },
  7487. [
  7488. {
  7489. name: "Macro",
  7490. height: math.unit(1.5, "miles"),
  7491. default: true
  7492. },
  7493. ]
  7494. ))
  7495. characterMakers.push(() => makeCharacter(
  7496. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7497. {
  7498. front: {
  7499. height: math.unit(6, "feet"),
  7500. weight: math.unit(78, "kg"),
  7501. name: "Front",
  7502. image: {
  7503. source: "./media/characters/kane/front.svg",
  7504. extra: 978 / 899
  7505. }
  7506. },
  7507. },
  7508. [
  7509. {
  7510. name: "Normal",
  7511. height: math.unit(2.1, "m"),
  7512. },
  7513. {
  7514. name: "Macro",
  7515. height: math.unit(1, "km"),
  7516. default: true
  7517. },
  7518. ]
  7519. ))
  7520. characterMakers.push(() => makeCharacter(
  7521. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7522. {
  7523. front: {
  7524. height: math.unit(6, "feet"),
  7525. weight: math.unit(200, "kg"),
  7526. name: "Front",
  7527. image: {
  7528. source: "./media/characters/tegon/front.svg",
  7529. bottom: 0.01,
  7530. extra: 1
  7531. }
  7532. },
  7533. },
  7534. [
  7535. {
  7536. name: "Micro",
  7537. height: math.unit(1, "inch")
  7538. },
  7539. {
  7540. name: "Normal",
  7541. height: math.unit(6 + 3 / 12, "feet"),
  7542. default: true
  7543. },
  7544. {
  7545. name: "Macro",
  7546. height: math.unit(300, "feet")
  7547. },
  7548. {
  7549. name: "Megamacro",
  7550. height: math.unit(69, "miles")
  7551. },
  7552. ]
  7553. ))
  7554. characterMakers.push(() => makeCharacter(
  7555. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7556. {
  7557. side: {
  7558. height: math.unit(6, "feet"),
  7559. weight: math.unit(2304, "lbs"),
  7560. name: "Side",
  7561. image: {
  7562. source: "./media/characters/arcturax/side.svg",
  7563. extra: 790 / 376,
  7564. bottom: 0.01
  7565. }
  7566. },
  7567. },
  7568. [
  7569. {
  7570. name: "Micro",
  7571. height: math.unit(2, "inch")
  7572. },
  7573. {
  7574. name: "Normal",
  7575. height: math.unit(6, "feet")
  7576. },
  7577. {
  7578. name: "Macro",
  7579. height: math.unit(39, "feet"),
  7580. default: true
  7581. },
  7582. {
  7583. name: "Megamacro",
  7584. height: math.unit(7, "miles")
  7585. },
  7586. ]
  7587. ))
  7588. characterMakers.push(() => makeCharacter(
  7589. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7590. {
  7591. front: {
  7592. height: math.unit(6, "feet"),
  7593. weight: math.unit(50, "lbs"),
  7594. name: "Front",
  7595. image: {
  7596. source: "./media/characters/sentri/front.svg",
  7597. extra: 1750 / 1570,
  7598. bottom: 0.025
  7599. }
  7600. },
  7601. frontAlt: {
  7602. height: math.unit(6, "feet"),
  7603. weight: math.unit(50, "lbs"),
  7604. name: "Front (Alt)",
  7605. image: {
  7606. source: "./media/characters/sentri/front-alt.svg",
  7607. extra: 1750 / 1570,
  7608. bottom: 0.025
  7609. }
  7610. },
  7611. },
  7612. [
  7613. {
  7614. name: "Normal",
  7615. height: math.unit(15, "feet"),
  7616. default: true
  7617. },
  7618. {
  7619. name: "Macro",
  7620. height: math.unit(2500, "feet")
  7621. }
  7622. ]
  7623. ))
  7624. characterMakers.push(() => makeCharacter(
  7625. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7626. {
  7627. front: {
  7628. height: math.unit(5 + 8 / 12, "feet"),
  7629. weight: math.unit(130, "lbs"),
  7630. name: "Front",
  7631. image: {
  7632. source: "./media/characters/corvin/front.svg",
  7633. extra: 1803 / 1629
  7634. }
  7635. },
  7636. frontShirt: {
  7637. height: math.unit(5 + 8 / 12, "feet"),
  7638. weight: math.unit(130, "lbs"),
  7639. name: "Front (Shirt)",
  7640. image: {
  7641. source: "./media/characters/corvin/front-shirt.svg",
  7642. extra: 1803 / 1629
  7643. }
  7644. },
  7645. frontPoncho: {
  7646. height: math.unit(5 + 8 / 12, "feet"),
  7647. weight: math.unit(130, "lbs"),
  7648. name: "Front (Poncho)",
  7649. image: {
  7650. source: "./media/characters/corvin/front-poncho.svg",
  7651. extra: 1803 / 1629
  7652. }
  7653. },
  7654. side: {
  7655. height: math.unit(5 + 8 / 12, "feet"),
  7656. weight: math.unit(130, "lbs"),
  7657. name: "Side",
  7658. image: {
  7659. source: "./media/characters/corvin/side.svg",
  7660. extra: 1012 / 945
  7661. }
  7662. },
  7663. back: {
  7664. height: math.unit(5 + 8 / 12, "feet"),
  7665. weight: math.unit(130, "lbs"),
  7666. name: "Back",
  7667. image: {
  7668. source: "./media/characters/corvin/back.svg",
  7669. extra: 1803 / 1629
  7670. }
  7671. },
  7672. },
  7673. [
  7674. {
  7675. name: "Micro",
  7676. height: math.unit(3, "inches")
  7677. },
  7678. {
  7679. name: "Normal",
  7680. height: math.unit(5 + 8 / 12, "feet")
  7681. },
  7682. {
  7683. name: "Macro",
  7684. height: math.unit(300, "feet"),
  7685. default: true
  7686. },
  7687. {
  7688. name: "Megamacro",
  7689. height: math.unit(500, "miles")
  7690. }
  7691. ]
  7692. ))
  7693. characterMakers.push(() => makeCharacter(
  7694. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7695. {
  7696. front: {
  7697. height: math.unit(6, "feet"),
  7698. weight: math.unit(135, "lbs"),
  7699. name: "Front",
  7700. image: {
  7701. source: "./media/characters/q/front.svg",
  7702. extra: 854 / 752,
  7703. bottom: 0.005
  7704. }
  7705. },
  7706. back: {
  7707. height: math.unit(6, "feet"),
  7708. weight: math.unit(130, "lbs"),
  7709. name: "Back",
  7710. image: {
  7711. source: "./media/characters/q/back.svg",
  7712. extra: 854 / 752
  7713. }
  7714. },
  7715. },
  7716. [
  7717. {
  7718. name: "Macro",
  7719. height: math.unit(90, "feet"),
  7720. default: true
  7721. },
  7722. {
  7723. name: "Extra Macro",
  7724. height: math.unit(300, "feet"),
  7725. },
  7726. {
  7727. name: "BIG WALF",
  7728. height: math.unit(750, "feet"),
  7729. },
  7730. ]
  7731. ))
  7732. characterMakers.push(() => makeCharacter(
  7733. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7734. {
  7735. front: {
  7736. height: math.unit(6, "feet"),
  7737. weight: math.unit(150, "lbs"),
  7738. name: "Front",
  7739. image: {
  7740. source: "./media/characters/carley/front.svg",
  7741. extra: 3927 / 3540,
  7742. bottom: 29.2 / 735
  7743. }
  7744. }
  7745. },
  7746. [
  7747. {
  7748. name: "Normal",
  7749. height: math.unit(6 + 3 / 12, "feet")
  7750. },
  7751. {
  7752. name: "Macro",
  7753. height: math.unit(185, "feet"),
  7754. default: true
  7755. },
  7756. {
  7757. name: "Megamacro",
  7758. height: math.unit(8, "miles"),
  7759. },
  7760. ]
  7761. ))
  7762. characterMakers.push(() => makeCharacter(
  7763. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7764. {
  7765. front: {
  7766. height: math.unit(3, "feet"),
  7767. weight: math.unit(28, "lbs"),
  7768. name: "Front",
  7769. image: {
  7770. source: "./media/characters/citrine/front.svg"
  7771. }
  7772. }
  7773. },
  7774. [
  7775. {
  7776. name: "Normal",
  7777. height: math.unit(3, "feet"),
  7778. default: true
  7779. }
  7780. ]
  7781. ))
  7782. characterMakers.push(() => makeCharacter(
  7783. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7784. {
  7785. front: {
  7786. height: math.unit(14, "feet"),
  7787. weight: math.unit(1450, "kg"),
  7788. capacity: math.unit(15, "people"),
  7789. name: "Front",
  7790. image: {
  7791. source: "./media/characters/aura-starwind/front.svg",
  7792. extra: 1455 / 1335
  7793. }
  7794. },
  7795. side: {
  7796. height: math.unit(14, "feet"),
  7797. weight: math.unit(1450, "kg"),
  7798. capacity: math.unit(15, "people"),
  7799. name: "Side",
  7800. image: {
  7801. source: "./media/characters/aura-starwind/side.svg",
  7802. extra: 1654 / 1497
  7803. }
  7804. },
  7805. taur: {
  7806. height: math.unit(18, "feet"),
  7807. weight: math.unit(5500, "kg"),
  7808. capacity: math.unit(50, "people"),
  7809. name: "Taur",
  7810. image: {
  7811. source: "./media/characters/aura-starwind/taur.svg",
  7812. extra: 1760 / 1650
  7813. }
  7814. },
  7815. feral: {
  7816. height: math.unit(46, "feet"),
  7817. weight: math.unit(25000, "kg"),
  7818. capacity: math.unit(120, "people"),
  7819. name: "Feral",
  7820. image: {
  7821. source: "./media/characters/aura-starwind/feral.svg"
  7822. }
  7823. },
  7824. },
  7825. [
  7826. {
  7827. name: "Normal",
  7828. height: math.unit(14, "feet"),
  7829. default: true
  7830. },
  7831. {
  7832. name: "Macro",
  7833. height: math.unit(50, "meters")
  7834. },
  7835. {
  7836. name: "Megamacro",
  7837. height: math.unit(5000, "meters")
  7838. },
  7839. {
  7840. name: "Gigamacro",
  7841. height: math.unit(100000, "kilometers")
  7842. },
  7843. ]
  7844. ))
  7845. characterMakers.push(() => makeCharacter(
  7846. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7847. {
  7848. front: {
  7849. height: math.unit(2 + 7 / 12, "feet"),
  7850. weight: math.unit(32, "lbs"),
  7851. name: "Front",
  7852. image: {
  7853. source: "./media/characters/rivet/front.svg",
  7854. extra: 1716 / 1658,
  7855. bottom: 0.03
  7856. }
  7857. },
  7858. foot: {
  7859. height: math.unit(0.551, "feet"),
  7860. name: "Rivet's Foot",
  7861. image: {
  7862. source: "./media/characters/rivet/foot.svg"
  7863. },
  7864. rename: true
  7865. }
  7866. },
  7867. [
  7868. {
  7869. name: "Micro",
  7870. height: math.unit(1.5, "inches"),
  7871. },
  7872. {
  7873. name: "Normal",
  7874. height: math.unit(2 + 7 / 12, "feet"),
  7875. default: true
  7876. },
  7877. {
  7878. name: "Macro",
  7879. height: math.unit(85, "feet")
  7880. },
  7881. {
  7882. name: "Megamacro",
  7883. height: math.unit(2.2, "km")
  7884. }
  7885. ]
  7886. ))
  7887. characterMakers.push(() => makeCharacter(
  7888. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7889. {
  7890. front: {
  7891. height: math.unit(5 + 9 / 12, "feet"),
  7892. weight: math.unit(150, "lbs"),
  7893. name: "Front",
  7894. image: {
  7895. source: "./media/characters/coffee/front.svg",
  7896. extra: 3666 / 3032,
  7897. bottom: 0.04
  7898. }
  7899. },
  7900. foot: {
  7901. height: math.unit(1.29, "feet"),
  7902. name: "Foot",
  7903. image: {
  7904. source: "./media/characters/coffee/foot.svg"
  7905. }
  7906. },
  7907. },
  7908. [
  7909. {
  7910. name: "Micro",
  7911. height: math.unit(2, "inches"),
  7912. },
  7913. {
  7914. name: "Normal",
  7915. height: math.unit(5 + 9 / 12, "feet"),
  7916. default: true
  7917. },
  7918. {
  7919. name: "Macro",
  7920. height: math.unit(800, "feet")
  7921. },
  7922. {
  7923. name: "Megamacro",
  7924. height: math.unit(25, "miles")
  7925. }
  7926. ]
  7927. ))
  7928. characterMakers.push(() => makeCharacter(
  7929. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7930. {
  7931. front: {
  7932. height: math.unit(6, "feet"),
  7933. weight: math.unit(200, "lbs"),
  7934. name: "Front",
  7935. image: {
  7936. source: "./media/characters/chari-gal/front.svg",
  7937. extra: 1568 / 1385,
  7938. bottom: 0.047
  7939. }
  7940. },
  7941. gigantamax: {
  7942. height: math.unit(6 * 16, "feet"),
  7943. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7944. name: "Gigantamax",
  7945. image: {
  7946. source: "./media/characters/chari-gal/gigantamax.svg",
  7947. extra: 1124 / 888,
  7948. bottom: 0.03
  7949. }
  7950. },
  7951. },
  7952. [
  7953. {
  7954. name: "Normal",
  7955. height: math.unit(5 + 7 / 12, "feet")
  7956. },
  7957. {
  7958. name: "Macro",
  7959. height: math.unit(200, "feet"),
  7960. default: true
  7961. }
  7962. ]
  7963. ))
  7964. characterMakers.push(() => makeCharacter(
  7965. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7966. {
  7967. front: {
  7968. height: math.unit(6, "feet"),
  7969. weight: math.unit(150, "lbs"),
  7970. name: "Front",
  7971. image: {
  7972. source: "./media/characters/nova/front.svg",
  7973. extra: 5000 / 4722,
  7974. bottom: 0.02
  7975. }
  7976. }
  7977. },
  7978. [
  7979. {
  7980. name: "Micro-",
  7981. height: math.unit(0.8, "inches")
  7982. },
  7983. {
  7984. name: "Micro",
  7985. height: math.unit(2, "inches"),
  7986. default: true
  7987. },
  7988. ]
  7989. ))
  7990. characterMakers.push(() => makeCharacter(
  7991. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7992. {
  7993. front: {
  7994. height: math.unit(3 + 1 / 12, "feet"),
  7995. weight: math.unit(21.7, "lbs"),
  7996. name: "Front",
  7997. image: {
  7998. source: "./media/characters/argent/front.svg",
  7999. extra: 1471 / 1331,
  8000. bottom: 100.8 / 1575.5
  8001. }
  8002. }
  8003. },
  8004. [
  8005. {
  8006. name: "Micro",
  8007. height: math.unit(2, "inches")
  8008. },
  8009. {
  8010. name: "Normal",
  8011. height: math.unit(3 + 1 / 12, "feet"),
  8012. default: true
  8013. },
  8014. {
  8015. name: "Macro",
  8016. height: math.unit(120, "feet")
  8017. },
  8018. ]
  8019. ))
  8020. characterMakers.push(() => makeCharacter(
  8021. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8022. {
  8023. lamp: {
  8024. height: math.unit(7 * 1559 / 989, "feet"),
  8025. name: "Magic Lamp",
  8026. image: {
  8027. source: "./media/characters/mira-al-cul/lamp.svg",
  8028. extra: 1617 / 1559
  8029. }
  8030. },
  8031. front: {
  8032. height: math.unit(7, "feet"),
  8033. name: "Front",
  8034. image: {
  8035. source: "./media/characters/mira-al-cul/front.svg",
  8036. extra: 1044 / 990
  8037. }
  8038. },
  8039. },
  8040. [
  8041. {
  8042. name: "Heavily Restricted",
  8043. height: math.unit(7 * 1559 / 989, "feet")
  8044. },
  8045. {
  8046. name: "Freshly Freed",
  8047. height: math.unit(50 * 1559 / 989, "feet")
  8048. },
  8049. {
  8050. name: "World Encompassing",
  8051. height: math.unit(10000 * 1559 / 989, "miles")
  8052. },
  8053. {
  8054. name: "Galactic",
  8055. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8056. },
  8057. {
  8058. name: "Palmed Universe",
  8059. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8060. default: true
  8061. },
  8062. {
  8063. name: "Multiversal Matriarch",
  8064. height: math.unit(8.87e10, "yottameters")
  8065. },
  8066. {
  8067. name: "Void Mother",
  8068. height: math.unit(3.14e110, "yottaparsecs")
  8069. },
  8070. {
  8071. name: "Toying with Transcendence",
  8072. height: math.unit(1e307, "meters")
  8073. },
  8074. ]
  8075. ))
  8076. characterMakers.push(() => makeCharacter(
  8077. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8078. {
  8079. front: {
  8080. height: math.unit(17 + 1 / 12, "feet"),
  8081. weight: math.unit(476.2 * 5, "lbs"),
  8082. name: "Front",
  8083. image: {
  8084. source: "./media/characters/kuro-shi-uchū/front.svg",
  8085. extra: 2329 / 1835,
  8086. bottom: 0.02
  8087. }
  8088. },
  8089. },
  8090. [
  8091. {
  8092. name: "Micro",
  8093. height: math.unit(2, "inches")
  8094. },
  8095. {
  8096. name: "Normal",
  8097. height: math.unit(12, "meters")
  8098. },
  8099. {
  8100. name: "Planetary",
  8101. height: math.unit(0.00929, "AU"),
  8102. default: true
  8103. },
  8104. {
  8105. name: "Universal",
  8106. height: math.unit(20, "gigaparsecs")
  8107. },
  8108. ]
  8109. ))
  8110. characterMakers.push(() => makeCharacter(
  8111. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8112. {
  8113. front: {
  8114. height: math.unit(5 + 2 / 12, "feet"),
  8115. weight: math.unit(120, "lbs"),
  8116. name: "Front",
  8117. image: {
  8118. source: "./media/characters/katherine/front.svg",
  8119. extra: 2075 / 1969
  8120. }
  8121. },
  8122. dress: {
  8123. height: math.unit(5 + 2 / 12, "feet"),
  8124. weight: math.unit(120, "lbs"),
  8125. name: "Dress",
  8126. image: {
  8127. source: "./media/characters/katherine/dress.svg",
  8128. extra: 2258 / 2064
  8129. }
  8130. },
  8131. },
  8132. [
  8133. {
  8134. name: "Micro",
  8135. height: math.unit(1, "inches"),
  8136. default: true
  8137. },
  8138. {
  8139. name: "Normal",
  8140. height: math.unit(5 + 2 / 12, "feet")
  8141. },
  8142. {
  8143. name: "Macro",
  8144. height: math.unit(100, "meters")
  8145. },
  8146. {
  8147. name: "Megamacro",
  8148. height: math.unit(80, "miles")
  8149. },
  8150. ]
  8151. ))
  8152. characterMakers.push(() => makeCharacter(
  8153. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8154. {
  8155. front: {
  8156. height: math.unit(7 + 8 / 12, "feet"),
  8157. weight: math.unit(250, "lbs"),
  8158. name: "Front",
  8159. image: {
  8160. source: "./media/characters/yevis/front.svg",
  8161. extra: 1938 / 1755
  8162. }
  8163. }
  8164. },
  8165. [
  8166. {
  8167. name: "Mortal",
  8168. height: math.unit(7 + 8 / 12, "feet")
  8169. },
  8170. {
  8171. name: "Battle",
  8172. height: math.unit(25 + 11 / 12, "feet")
  8173. },
  8174. {
  8175. name: "Wrath",
  8176. height: math.unit(1654 + 11 / 12, "feet")
  8177. },
  8178. {
  8179. name: "Planet Destroyer",
  8180. height: math.unit(12000, "miles")
  8181. },
  8182. {
  8183. name: "Galaxy Conqueror",
  8184. height: math.unit(1.45, "zettameters"),
  8185. default: true
  8186. },
  8187. {
  8188. name: "Universal War",
  8189. height: math.unit(184, "gigaparsecs")
  8190. },
  8191. {
  8192. name: "Eternity War",
  8193. height: math.unit(1.98e55, "yottaparsecs")
  8194. },
  8195. ]
  8196. ))
  8197. characterMakers.push(() => makeCharacter(
  8198. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8199. {
  8200. front: {
  8201. height: math.unit(5 + 8 / 12, "feet"),
  8202. weight: math.unit(63, "kg"),
  8203. name: "Front",
  8204. image: {
  8205. source: "./media/characters/xavier/front.svg",
  8206. extra: 944 / 883
  8207. }
  8208. },
  8209. frontStretch: {
  8210. height: math.unit(5 + 8 / 12, "feet"),
  8211. weight: math.unit(63, "kg"),
  8212. name: "Stretching",
  8213. image: {
  8214. source: "./media/characters/xavier/front-stretch.svg",
  8215. extra: 962 / 820
  8216. }
  8217. },
  8218. },
  8219. [
  8220. {
  8221. name: "Normal",
  8222. height: math.unit(5 + 8 / 12, "feet")
  8223. },
  8224. {
  8225. name: "Macro",
  8226. height: math.unit(100, "meters"),
  8227. default: true
  8228. },
  8229. {
  8230. name: "McLargeHuge",
  8231. height: math.unit(10, "miles")
  8232. },
  8233. ]
  8234. ))
  8235. characterMakers.push(() => makeCharacter(
  8236. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8237. {
  8238. front: {
  8239. height: math.unit(5 + 5 / 12, "feet"),
  8240. weight: math.unit(150, "lb"),
  8241. name: "Front",
  8242. image: {
  8243. source: "./media/characters/joshii/front.svg",
  8244. extra: 765 / 653,
  8245. bottom: 51 / 816
  8246. }
  8247. },
  8248. foot: {
  8249. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8250. name: "Foot",
  8251. image: {
  8252. source: "./media/characters/joshii/foot.svg"
  8253. }
  8254. },
  8255. },
  8256. [
  8257. {
  8258. name: "Micro",
  8259. height: math.unit(2, "inches"),
  8260. default: true
  8261. },
  8262. {
  8263. name: "Normal",
  8264. height: math.unit(5 + 5 / 12, "feet")
  8265. },
  8266. {
  8267. name: "Macro",
  8268. height: math.unit(785, "feet")
  8269. },
  8270. {
  8271. name: "Megamacro",
  8272. height: math.unit(24.5, "miles")
  8273. },
  8274. ]
  8275. ))
  8276. characterMakers.push(() => makeCharacter(
  8277. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8278. {
  8279. front: {
  8280. height: math.unit(6, "feet"),
  8281. weight: math.unit(150, "lb"),
  8282. name: "Front",
  8283. image: {
  8284. source: "./media/characters/goddess-elizabeth/front.svg",
  8285. extra: 1800 / 1525,
  8286. bottom: 0.005
  8287. }
  8288. },
  8289. foot: {
  8290. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8291. name: "Foot",
  8292. image: {
  8293. source: "./media/characters/goddess-elizabeth/foot.svg"
  8294. }
  8295. },
  8296. mouth: {
  8297. height: math.unit(6, "feet"),
  8298. name: "Mouth",
  8299. image: {
  8300. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8301. }
  8302. },
  8303. },
  8304. [
  8305. {
  8306. name: "Micro",
  8307. height: math.unit(12, "feet")
  8308. },
  8309. {
  8310. name: "Normal",
  8311. height: math.unit(80, "miles"),
  8312. default: true
  8313. },
  8314. {
  8315. name: "Macro",
  8316. height: math.unit(15000, "parsecs")
  8317. },
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8322. {
  8323. front: {
  8324. height: math.unit(5 + 9 / 12, "feet"),
  8325. weight: math.unit(144, "lb"),
  8326. name: "Front",
  8327. image: {
  8328. source: "./media/characters/kara/front.svg"
  8329. }
  8330. },
  8331. feet: {
  8332. height: math.unit(6 / 6.765, "feet"),
  8333. name: "Kara's Feet",
  8334. rename: true,
  8335. image: {
  8336. source: "./media/characters/kara/feet.svg"
  8337. }
  8338. },
  8339. },
  8340. [
  8341. {
  8342. name: "Normal",
  8343. height: math.unit(5 + 9 / 12, "feet")
  8344. },
  8345. {
  8346. name: "Macro",
  8347. height: math.unit(174, "feet"),
  8348. default: true
  8349. },
  8350. ]
  8351. ))
  8352. characterMakers.push(() => makeCharacter(
  8353. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8354. {
  8355. front: {
  8356. height: math.unit(18, "feet"),
  8357. weight: math.unit(4050, "lb"),
  8358. name: "Front",
  8359. image: {
  8360. source: "./media/characters/tyrone/front.svg",
  8361. extra: 2405 / 2270,
  8362. bottom: 182 / 2587
  8363. }
  8364. },
  8365. },
  8366. [
  8367. {
  8368. name: "Normal",
  8369. height: math.unit(18, "feet"),
  8370. default: true
  8371. },
  8372. {
  8373. name: "Macro",
  8374. height: math.unit(300, "feet")
  8375. },
  8376. {
  8377. name: "Megamacro",
  8378. height: math.unit(15, "km")
  8379. },
  8380. {
  8381. name: "Gigamacro",
  8382. height: math.unit(500, "km")
  8383. },
  8384. {
  8385. name: "Teramacro",
  8386. height: math.unit(0.5, "gigameters")
  8387. },
  8388. {
  8389. name: "Omnimacro",
  8390. height: math.unit(1e252, "yottauniverse")
  8391. },
  8392. ]
  8393. ))
  8394. characterMakers.push(() => makeCharacter(
  8395. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8396. {
  8397. front: {
  8398. height: math.unit(7 + 8 / 12, "feet"),
  8399. weight: math.unit(120, "lb"),
  8400. name: "Front",
  8401. image: {
  8402. source: "./media/characters/danny/front.svg",
  8403. extra: 1490 / 1350
  8404. }
  8405. },
  8406. back: {
  8407. height: math.unit(7 + 8 / 12, "feet"),
  8408. weight: math.unit(120, "lb"),
  8409. name: "Back",
  8410. image: {
  8411. source: "./media/characters/danny/back.svg",
  8412. extra: 1490 / 1350
  8413. }
  8414. },
  8415. },
  8416. [
  8417. {
  8418. name: "Normal",
  8419. height: math.unit(7 + 8 / 12, "feet"),
  8420. default: true
  8421. },
  8422. ]
  8423. ))
  8424. characterMakers.push(() => makeCharacter(
  8425. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8426. {
  8427. front: {
  8428. height: math.unit(3.5, "inches"),
  8429. weight: math.unit(19, "grams"),
  8430. name: "Front",
  8431. image: {
  8432. source: "./media/characters/mallow/front.svg",
  8433. extra: 471 / 431
  8434. }
  8435. },
  8436. back: {
  8437. height: math.unit(3.5, "inches"),
  8438. weight: math.unit(19, "grams"),
  8439. name: "Back",
  8440. image: {
  8441. source: "./media/characters/mallow/back.svg",
  8442. extra: 471 / 431
  8443. }
  8444. },
  8445. },
  8446. [
  8447. {
  8448. name: "Normal",
  8449. height: math.unit(3.5, "inches"),
  8450. default: true
  8451. },
  8452. ]
  8453. ))
  8454. characterMakers.push(() => makeCharacter(
  8455. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8456. {
  8457. front: {
  8458. height: math.unit(9, "feet"),
  8459. weight: math.unit(230, "kg"),
  8460. name: "Front",
  8461. image: {
  8462. source: "./media/characters/starry-aqua/front.svg"
  8463. }
  8464. },
  8465. back: {
  8466. height: math.unit(9, "feet"),
  8467. weight: math.unit(230, "kg"),
  8468. name: "Back",
  8469. image: {
  8470. source: "./media/characters/starry-aqua/back.svg"
  8471. }
  8472. },
  8473. hand: {
  8474. height: math.unit(9 * 0.1168, "feet"),
  8475. name: "Hand",
  8476. image: {
  8477. source: "./media/characters/starry-aqua/hand.svg"
  8478. }
  8479. },
  8480. foot: {
  8481. height: math.unit(9 * 0.18, "feet"),
  8482. name: "Foot",
  8483. image: {
  8484. source: "./media/characters/starry-aqua/foot.svg"
  8485. }
  8486. }
  8487. },
  8488. [
  8489. {
  8490. name: "Micro",
  8491. height: math.unit(3, "inches")
  8492. },
  8493. {
  8494. name: "Normal",
  8495. height: math.unit(9, "feet")
  8496. },
  8497. {
  8498. name: "Macro",
  8499. height: math.unit(300, "feet"),
  8500. default: true
  8501. },
  8502. {
  8503. name: "Megamacro",
  8504. height: math.unit(3200, "feet")
  8505. }
  8506. ]
  8507. ))
  8508. characterMakers.push(() => makeCharacter(
  8509. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8510. {
  8511. front: {
  8512. height: math.unit(6, "feet"),
  8513. weight: math.unit(230, "lb"),
  8514. name: "Front",
  8515. image: {
  8516. source: "./media/characters/luka/front.svg",
  8517. extra: 1,
  8518. bottom: 0.025
  8519. }
  8520. },
  8521. },
  8522. [
  8523. {
  8524. name: "Normal",
  8525. height: math.unit(12 + 8 / 12, "feet"),
  8526. default: true
  8527. },
  8528. {
  8529. name: "Minimacro",
  8530. height: math.unit(20, "feet")
  8531. },
  8532. {
  8533. name: "Macro",
  8534. height: math.unit(250, "feet")
  8535. },
  8536. {
  8537. name: "Megamacro",
  8538. height: math.unit(5, "miles")
  8539. },
  8540. {
  8541. name: "Gigamacro",
  8542. height: math.unit(8000, "miles")
  8543. },
  8544. ]
  8545. ))
  8546. characterMakers.push(() => makeCharacter(
  8547. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8548. {
  8549. front: {
  8550. height: math.unit(6, "feet"),
  8551. weight: math.unit(150, "lb"),
  8552. name: "Front",
  8553. image: {
  8554. source: "./media/characters/natalie-nightring/front.svg",
  8555. extra: 1,
  8556. bottom: 0.06
  8557. }
  8558. },
  8559. },
  8560. [
  8561. {
  8562. name: "Uh Oh",
  8563. height: math.unit(0.1, "mm")
  8564. },
  8565. {
  8566. name: "Small",
  8567. height: math.unit(3, "inches")
  8568. },
  8569. {
  8570. name: "Human Scale",
  8571. height: math.unit(6, "feet")
  8572. },
  8573. {
  8574. name: "Librarian",
  8575. height: math.unit(50, "feet"),
  8576. default: true
  8577. },
  8578. {
  8579. name: "Immense",
  8580. height: math.unit(200, "miles")
  8581. },
  8582. ]
  8583. ))
  8584. characterMakers.push(() => makeCharacter(
  8585. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8586. {
  8587. front: {
  8588. height: math.unit(6, "feet"),
  8589. weight: math.unit(180, "lbs"),
  8590. name: "Front",
  8591. image: {
  8592. source: "./media/characters/danni-rosie/front.svg",
  8593. extra: 1260 / 1128,
  8594. bottom: 0.022
  8595. }
  8596. },
  8597. },
  8598. [
  8599. {
  8600. name: "Micro",
  8601. height: math.unit(2, "inches"),
  8602. default: true
  8603. },
  8604. ]
  8605. ))
  8606. characterMakers.push(() => makeCharacter(
  8607. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8608. {
  8609. front: {
  8610. height: math.unit(5 + 9 / 12, "feet"),
  8611. weight: math.unit(220, "lb"),
  8612. name: "Front",
  8613. image: {
  8614. source: "./media/characters/samantha-kruse/front.svg",
  8615. extra: (985 / 935),
  8616. bottom: 0.03
  8617. }
  8618. },
  8619. frontUndressed: {
  8620. height: math.unit(5 + 9 / 12, "feet"),
  8621. weight: math.unit(220, "lb"),
  8622. name: "Front (Undressed)",
  8623. image: {
  8624. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8625. extra: (973 / 923),
  8626. bottom: 0.025
  8627. }
  8628. },
  8629. fat: {
  8630. height: math.unit(5 + 9 / 12, "feet"),
  8631. weight: math.unit(900, "lb"),
  8632. name: "Front (Fat)",
  8633. image: {
  8634. source: "./media/characters/samantha-kruse/fat.svg",
  8635. extra: 2688 / 2561
  8636. }
  8637. },
  8638. },
  8639. [
  8640. {
  8641. name: "Normal",
  8642. height: math.unit(5 + 9 / 12, "feet"),
  8643. default: true
  8644. }
  8645. ]
  8646. ))
  8647. characterMakers.push(() => makeCharacter(
  8648. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8649. {
  8650. back: {
  8651. height: math.unit(5 + 4 / 12, "feet"),
  8652. weight: math.unit(4963, "lb"),
  8653. name: "Back",
  8654. image: {
  8655. source: "./media/characters/amelia-rosie/back.svg",
  8656. extra: 1113 / 963,
  8657. bottom: 0.01
  8658. }
  8659. },
  8660. },
  8661. [
  8662. {
  8663. name: "Level 0",
  8664. height: math.unit(5 + 4 / 12, "feet")
  8665. },
  8666. {
  8667. name: "Level 1",
  8668. height: math.unit(164597, "feet"),
  8669. default: true
  8670. },
  8671. {
  8672. name: "Level 2",
  8673. height: math.unit(956243, "miles")
  8674. },
  8675. {
  8676. name: "Level 3",
  8677. height: math.unit(29421709423, "miles")
  8678. },
  8679. {
  8680. name: "Level 4",
  8681. height: math.unit(154, "lightyears")
  8682. },
  8683. {
  8684. name: "Level 5",
  8685. height: math.unit(4738272, "lightyears")
  8686. },
  8687. {
  8688. name: "Level 6",
  8689. height: math.unit(145787152896, "lightyears")
  8690. },
  8691. ]
  8692. ))
  8693. characterMakers.push(() => makeCharacter(
  8694. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8695. {
  8696. front: {
  8697. height: math.unit(5 + 11 / 12, "feet"),
  8698. weight: math.unit(65, "kg"),
  8699. name: "Front",
  8700. image: {
  8701. source: "./media/characters/rook-kitara/front.svg",
  8702. extra: 1347 / 1274,
  8703. bottom: 0.005
  8704. }
  8705. },
  8706. },
  8707. [
  8708. {
  8709. name: "Totally Unfair",
  8710. height: math.unit(1.8, "mm")
  8711. },
  8712. {
  8713. name: "Lap Rookie",
  8714. height: math.unit(1.4, "feet")
  8715. },
  8716. {
  8717. name: "Normal",
  8718. height: math.unit(5 + 11 / 12, "feet"),
  8719. default: true
  8720. },
  8721. {
  8722. name: "How Did This Happen",
  8723. height: math.unit(80, "miles")
  8724. }
  8725. ]
  8726. ))
  8727. characterMakers.push(() => makeCharacter(
  8728. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8729. {
  8730. front: {
  8731. height: math.unit(7, "feet"),
  8732. weight: math.unit(300, "lb"),
  8733. name: "Front",
  8734. image: {
  8735. source: "./media/characters/pisces/front.svg",
  8736. extra: 2255 / 2115,
  8737. bottom: 0.03
  8738. }
  8739. },
  8740. back: {
  8741. height: math.unit(7, "feet"),
  8742. weight: math.unit(300, "lb"),
  8743. name: "Back",
  8744. image: {
  8745. source: "./media/characters/pisces/back.svg",
  8746. extra: 2146 / 2055,
  8747. bottom: 0.04
  8748. }
  8749. },
  8750. },
  8751. [
  8752. {
  8753. name: "Normal",
  8754. height: math.unit(7, "feet"),
  8755. default: true
  8756. },
  8757. {
  8758. name: "Swimming Pool",
  8759. height: math.unit(12.2, "meters")
  8760. },
  8761. {
  8762. name: "Olympic Swimming Pool",
  8763. height: math.unit(56.3, "meters")
  8764. },
  8765. {
  8766. name: "Lake Superior",
  8767. height: math.unit(93900, "meters")
  8768. },
  8769. {
  8770. name: "Mediterranean Sea",
  8771. height: math.unit(644457, "meters")
  8772. },
  8773. {
  8774. name: "World's Oceans",
  8775. height: math.unit(4567491, "meters")
  8776. },
  8777. ]
  8778. ))
  8779. characterMakers.push(() => makeCharacter(
  8780. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8781. {
  8782. front: {
  8783. height: math.unit(2.3, "meters"),
  8784. weight: math.unit(120, "kg"),
  8785. name: "Front",
  8786. image: {
  8787. source: "./media/characters/zelas/front.svg"
  8788. }
  8789. },
  8790. side: {
  8791. height: math.unit(2.3, "meters"),
  8792. weight: math.unit(120, "kg"),
  8793. name: "Side",
  8794. image: {
  8795. source: "./media/characters/zelas/side.svg"
  8796. }
  8797. },
  8798. back: {
  8799. height: math.unit(2.3, "meters"),
  8800. weight: math.unit(120, "kg"),
  8801. name: "Back",
  8802. image: {
  8803. source: "./media/characters/zelas/back.svg"
  8804. }
  8805. },
  8806. foot: {
  8807. height: math.unit(1.116, "feet"),
  8808. name: "Foot",
  8809. image: {
  8810. source: "./media/characters/zelas/foot.svg"
  8811. }
  8812. },
  8813. },
  8814. [
  8815. {
  8816. name: "Normal",
  8817. height: math.unit(2.3, "meters")
  8818. },
  8819. {
  8820. name: "Macro",
  8821. height: math.unit(30, "meters"),
  8822. default: true
  8823. },
  8824. ]
  8825. ))
  8826. characterMakers.push(() => makeCharacter(
  8827. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8828. {
  8829. front: {
  8830. height: math.unit(1, "inch"),
  8831. weight: math.unit(0.21, "grams"),
  8832. name: "Front",
  8833. image: {
  8834. source: "./media/characters/talbot/front.svg",
  8835. extra: 594 / 544
  8836. }
  8837. },
  8838. },
  8839. [
  8840. {
  8841. name: "Micro",
  8842. height: math.unit(1, "inch"),
  8843. default: true
  8844. },
  8845. ]
  8846. ))
  8847. characterMakers.push(() => makeCharacter(
  8848. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8849. {
  8850. front: {
  8851. height: math.unit(3 + 3 / 12, "feet"),
  8852. weight: math.unit(51.8, "lb"),
  8853. name: "Front",
  8854. image: {
  8855. source: "./media/characters/fliss/front.svg",
  8856. extra: 840 / 640
  8857. }
  8858. },
  8859. },
  8860. [
  8861. {
  8862. name: "Teeny Tiny",
  8863. height: math.unit(1, "mm")
  8864. },
  8865. {
  8866. name: "Small",
  8867. height: math.unit(1, "inch"),
  8868. default: true
  8869. },
  8870. {
  8871. name: "Standard Sylveon",
  8872. height: math.unit(3 + 3 / 12, "feet")
  8873. },
  8874. {
  8875. name: "Large Nuisance",
  8876. height: math.unit(33, "feet")
  8877. },
  8878. {
  8879. name: "City Filler",
  8880. height: math.unit(3000, "feet")
  8881. },
  8882. {
  8883. name: "New Horizon",
  8884. height: math.unit(6000, "miles")
  8885. },
  8886. ]
  8887. ))
  8888. characterMakers.push(() => makeCharacter(
  8889. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8890. {
  8891. front: {
  8892. height: math.unit(5, "cm"),
  8893. weight: math.unit(1.94, "g"),
  8894. name: "Front",
  8895. image: {
  8896. source: "./media/characters/fleta/front.svg",
  8897. extra: 835 / 803
  8898. }
  8899. },
  8900. back: {
  8901. height: math.unit(5, "cm"),
  8902. weight: math.unit(1.94, "g"),
  8903. name: "Back",
  8904. image: {
  8905. source: "./media/characters/fleta/back.svg",
  8906. extra: 835 / 803
  8907. }
  8908. },
  8909. },
  8910. [
  8911. {
  8912. name: "Micro",
  8913. height: math.unit(5, "cm"),
  8914. default: true
  8915. },
  8916. ]
  8917. ))
  8918. characterMakers.push(() => makeCharacter(
  8919. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8920. {
  8921. front: {
  8922. height: math.unit(6, "feet"),
  8923. weight: math.unit(225, "lb"),
  8924. name: "Front",
  8925. image: {
  8926. source: "./media/characters/dominic/front.svg",
  8927. extra: 1770 / 1620,
  8928. bottom: 0.025
  8929. }
  8930. },
  8931. back: {
  8932. height: math.unit(6, "feet"),
  8933. weight: math.unit(225, "lb"),
  8934. name: "Back",
  8935. image: {
  8936. source: "./media/characters/dominic/back.svg",
  8937. extra: 1745 / 1620,
  8938. bottom: 0.065
  8939. }
  8940. },
  8941. },
  8942. [
  8943. {
  8944. name: "Nano",
  8945. height: math.unit(0.1, "mm")
  8946. },
  8947. {
  8948. name: "Micro-",
  8949. height: math.unit(1, "mm")
  8950. },
  8951. {
  8952. name: "Micro",
  8953. height: math.unit(4, "inches")
  8954. },
  8955. {
  8956. name: "Normal",
  8957. height: math.unit(6 + 4 / 12, "feet"),
  8958. default: true
  8959. },
  8960. {
  8961. name: "Macro",
  8962. height: math.unit(115, "feet")
  8963. },
  8964. {
  8965. name: "Macro+",
  8966. height: math.unit(955, "feet")
  8967. },
  8968. {
  8969. name: "Megamacro",
  8970. height: math.unit(8990, "feet")
  8971. },
  8972. {
  8973. name: "Gigmacro",
  8974. height: math.unit(9310, "miles")
  8975. },
  8976. {
  8977. name: "Teramacro",
  8978. height: math.unit(1567005010, "miles")
  8979. },
  8980. {
  8981. name: "Examacro",
  8982. height: math.unit(1425, "parsecs")
  8983. },
  8984. ]
  8985. ))
  8986. characterMakers.push(() => makeCharacter(
  8987. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8988. {
  8989. front: {
  8990. height: math.unit(400, "feet"),
  8991. weight: math.unit(44444444, "lb"),
  8992. name: "Front",
  8993. image: {
  8994. source: "./media/characters/major-colonel/front.svg"
  8995. }
  8996. },
  8997. back: {
  8998. height: math.unit(400, "feet"),
  8999. weight: math.unit(44444444, "lb"),
  9000. name: "Back",
  9001. image: {
  9002. source: "./media/characters/major-colonel/back.svg"
  9003. }
  9004. },
  9005. },
  9006. [
  9007. {
  9008. name: "Macro",
  9009. height: math.unit(400, "feet"),
  9010. default: true
  9011. },
  9012. ]
  9013. ))
  9014. characterMakers.push(() => makeCharacter(
  9015. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9016. {
  9017. catFront: {
  9018. height: math.unit(6, "feet"),
  9019. weight: math.unit(120, "lb"),
  9020. name: "Front (Cat Side)",
  9021. image: {
  9022. source: "./media/characters/axel-lycan/cat-front.svg",
  9023. extra: 430 / 402,
  9024. bottom: 43 / 472.35
  9025. }
  9026. },
  9027. catBack: {
  9028. height: math.unit(6, "feet"),
  9029. weight: math.unit(120, "lb"),
  9030. name: "Back (Cat Side)",
  9031. image: {
  9032. source: "./media/characters/axel-lycan/cat-back.svg",
  9033. extra: 447 / 419,
  9034. bottom: 23.3 / 469
  9035. }
  9036. },
  9037. wolfFront: {
  9038. height: math.unit(6, "feet"),
  9039. weight: math.unit(120, "lb"),
  9040. name: "Front (Wolf Side)",
  9041. image: {
  9042. source: "./media/characters/axel-lycan/wolf-front.svg",
  9043. extra: 485 / 456,
  9044. bottom: 19 / 504
  9045. }
  9046. },
  9047. wolfBack: {
  9048. height: math.unit(6, "feet"),
  9049. weight: math.unit(120, "lb"),
  9050. name: "Back (Wolf Side)",
  9051. image: {
  9052. source: "./media/characters/axel-lycan/wolf-back.svg",
  9053. extra: 475 / 438,
  9054. bottom: 39.2 / 514
  9055. }
  9056. },
  9057. },
  9058. [
  9059. {
  9060. name: "Macro",
  9061. height: math.unit(1, "km"),
  9062. default: true
  9063. },
  9064. ]
  9065. ))
  9066. characterMakers.push(() => makeCharacter(
  9067. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9068. {
  9069. front: {
  9070. height: math.unit(5 + 9 / 12, "feet"),
  9071. weight: math.unit(175, "lb"),
  9072. name: "Front",
  9073. image: {
  9074. source: "./media/characters/vanrel-hyena/front.svg",
  9075. extra: 1086 / 1010,
  9076. bottom: 0.04
  9077. }
  9078. },
  9079. },
  9080. [
  9081. {
  9082. name: "Normal",
  9083. height: math.unit(5 + 9 / 12, "feet"),
  9084. default: true
  9085. },
  9086. ]
  9087. ))
  9088. characterMakers.push(() => makeCharacter(
  9089. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9090. {
  9091. front: {
  9092. height: math.unit(6, "feet"),
  9093. weight: math.unit(103, "lb"),
  9094. name: "Front",
  9095. image: {
  9096. source: "./media/characters/abbott-absol/front.svg",
  9097. extra: 2010 / 1842
  9098. }
  9099. },
  9100. },
  9101. [
  9102. {
  9103. name: "Megamicro",
  9104. height: math.unit(0.1, "mm")
  9105. },
  9106. {
  9107. name: "Micro",
  9108. height: math.unit(1, "inch")
  9109. },
  9110. {
  9111. name: "Normal",
  9112. height: math.unit(6, "feet"),
  9113. default: true
  9114. },
  9115. ]
  9116. ))
  9117. characterMakers.push(() => makeCharacter(
  9118. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9119. {
  9120. front: {
  9121. height: math.unit(6, "feet"),
  9122. weight: math.unit(264, "lb"),
  9123. name: "Front",
  9124. image: {
  9125. source: "./media/characters/hector/front.svg",
  9126. extra: 2280 / 2130,
  9127. bottom: 0.07
  9128. }
  9129. },
  9130. },
  9131. [
  9132. {
  9133. name: "Normal",
  9134. height: math.unit(12.25, "foot"),
  9135. default: true
  9136. },
  9137. {
  9138. name: "Macro",
  9139. height: math.unit(160, "feet")
  9140. },
  9141. ]
  9142. ))
  9143. characterMakers.push(() => makeCharacter(
  9144. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9145. {
  9146. front: {
  9147. height: math.unit(6, "feet"),
  9148. weight: math.unit(150, "lb"),
  9149. name: "Front",
  9150. image: {
  9151. source: "./media/characters/sal/front.svg",
  9152. extra: 1846 / 1699,
  9153. bottom: 0.04
  9154. }
  9155. },
  9156. },
  9157. [
  9158. {
  9159. name: "Megamacro",
  9160. height: math.unit(10, "miles"),
  9161. default: true
  9162. },
  9163. ]
  9164. ))
  9165. characterMakers.push(() => makeCharacter(
  9166. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9167. {
  9168. front: {
  9169. height: math.unit(3, "meters"),
  9170. weight: math.unit(450, "kg"),
  9171. name: "front",
  9172. image: {
  9173. source: "./media/characters/ranger/front.svg",
  9174. extra: 2401 / 2243,
  9175. bottom: 0.05
  9176. }
  9177. },
  9178. },
  9179. [
  9180. {
  9181. name: "Normal",
  9182. height: math.unit(3, "meters"),
  9183. default: true
  9184. },
  9185. ]
  9186. ))
  9187. characterMakers.push(() => makeCharacter(
  9188. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9189. {
  9190. front: {
  9191. height: math.unit(14, "feet"),
  9192. weight: math.unit(800, "kg"),
  9193. name: "Front",
  9194. image: {
  9195. source: "./media/characters/theresa/front.svg",
  9196. extra: 3575 / 3346,
  9197. bottom: 0.03
  9198. }
  9199. },
  9200. },
  9201. [
  9202. {
  9203. name: "Normal",
  9204. height: math.unit(14, "feet"),
  9205. default: true
  9206. },
  9207. ]
  9208. ))
  9209. characterMakers.push(() => makeCharacter(
  9210. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9211. {
  9212. front: {
  9213. height: math.unit(6, "feet"),
  9214. weight: math.unit(3, "kg"),
  9215. name: "Front",
  9216. image: {
  9217. source: "./media/characters/ine/front.svg",
  9218. extra: 678 / 539,
  9219. bottom: 0.023
  9220. }
  9221. },
  9222. },
  9223. [
  9224. {
  9225. name: "Normal",
  9226. height: math.unit(2.265, "feet"),
  9227. default: true
  9228. },
  9229. ]
  9230. ))
  9231. characterMakers.push(() => makeCharacter(
  9232. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9233. {
  9234. front: {
  9235. height: math.unit(5, "feet"),
  9236. weight: math.unit(30, "kg"),
  9237. name: "Front",
  9238. image: {
  9239. source: "./media/characters/vial/front.svg",
  9240. extra: 1365 / 1277,
  9241. bottom: 0.04
  9242. }
  9243. },
  9244. },
  9245. [
  9246. {
  9247. name: "Normal",
  9248. height: math.unit(5, "feet"),
  9249. default: true
  9250. },
  9251. ]
  9252. ))
  9253. characterMakers.push(() => makeCharacter(
  9254. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9255. {
  9256. side: {
  9257. height: math.unit(3.4, "meters"),
  9258. weight: math.unit(1000, "lb"),
  9259. name: "Side",
  9260. image: {
  9261. source: "./media/characters/rovoska/side.svg",
  9262. extra: 4403 / 1515
  9263. }
  9264. },
  9265. },
  9266. [
  9267. {
  9268. name: "Normal",
  9269. height: math.unit(3.4, "meters"),
  9270. default: true
  9271. },
  9272. ]
  9273. ))
  9274. characterMakers.push(() => makeCharacter(
  9275. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9276. {
  9277. front: {
  9278. height: math.unit(8, "feet"),
  9279. weight: math.unit(315, "lb"),
  9280. name: "Front",
  9281. image: {
  9282. source: "./media/characters/gunner-rotthbauer/front.svg"
  9283. }
  9284. },
  9285. back: {
  9286. height: math.unit(8, "feet"),
  9287. weight: math.unit(315, "lb"),
  9288. name: "Back",
  9289. image: {
  9290. source: "./media/characters/gunner-rotthbauer/back.svg"
  9291. }
  9292. },
  9293. },
  9294. [
  9295. {
  9296. name: "Micro",
  9297. height: math.unit(3.5, "inches")
  9298. },
  9299. {
  9300. name: "Normal",
  9301. height: math.unit(8, "feet"),
  9302. default: true
  9303. },
  9304. {
  9305. name: "Macro",
  9306. height: math.unit(250, "feet")
  9307. },
  9308. {
  9309. name: "Megamacro",
  9310. height: math.unit(1, "AU")
  9311. },
  9312. ]
  9313. ))
  9314. characterMakers.push(() => makeCharacter(
  9315. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9316. {
  9317. front: {
  9318. height: math.unit(5 + 5 / 12, "feet"),
  9319. weight: math.unit(140, "lb"),
  9320. name: "Front",
  9321. image: {
  9322. source: "./media/characters/allatia/front.svg",
  9323. extra: 1227 / 1180,
  9324. bottom: 0.027
  9325. }
  9326. },
  9327. },
  9328. [
  9329. {
  9330. name: "Normal",
  9331. height: math.unit(5 + 5 / 12, "feet")
  9332. },
  9333. {
  9334. name: "Macro",
  9335. height: math.unit(250, "feet"),
  9336. default: true
  9337. },
  9338. {
  9339. name: "Megamacro",
  9340. height: math.unit(8, "miles")
  9341. }
  9342. ]
  9343. ))
  9344. characterMakers.push(() => makeCharacter(
  9345. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9346. {
  9347. front: {
  9348. height: math.unit(6, "feet"),
  9349. weight: math.unit(120, "lb"),
  9350. name: "Front",
  9351. image: {
  9352. source: "./media/characters/tene/front.svg",
  9353. extra: 1728 / 1578,
  9354. bottom: 0.022
  9355. }
  9356. },
  9357. stomping: {
  9358. height: math.unit(2.025, "meters"),
  9359. weight: math.unit(120, "lb"),
  9360. name: "Stomping",
  9361. image: {
  9362. source: "./media/characters/tene/stomping.svg",
  9363. extra: 938 / 873,
  9364. bottom: 0.01
  9365. }
  9366. },
  9367. sitting: {
  9368. height: math.unit(1, "meter"),
  9369. weight: math.unit(120, "lb"),
  9370. name: "Sitting",
  9371. image: {
  9372. source: "./media/characters/tene/sitting.svg",
  9373. extra: 437 / 415,
  9374. bottom: 0.1
  9375. }
  9376. },
  9377. feral: {
  9378. height: math.unit(3.9, "feet"),
  9379. weight: math.unit(250, "lb"),
  9380. name: "Feral",
  9381. image: {
  9382. source: "./media/characters/tene/feral.svg",
  9383. extra: 717 / 458,
  9384. bottom: 0.179
  9385. }
  9386. },
  9387. },
  9388. [
  9389. {
  9390. name: "Normal",
  9391. height: math.unit(6, "feet")
  9392. },
  9393. {
  9394. name: "Macro",
  9395. height: math.unit(300, "feet"),
  9396. default: true
  9397. },
  9398. {
  9399. name: "Megamacro",
  9400. height: math.unit(5, "miles")
  9401. },
  9402. ]
  9403. ))
  9404. characterMakers.push(() => makeCharacter(
  9405. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9406. {
  9407. side: {
  9408. height: math.unit(6, "feet"),
  9409. name: "Side",
  9410. image: {
  9411. source: "./media/characters/evander/side.svg",
  9412. extra: 877 / 477
  9413. }
  9414. },
  9415. },
  9416. [
  9417. {
  9418. name: "Normal",
  9419. height: math.unit(0.83, "meters"),
  9420. default: true
  9421. },
  9422. ]
  9423. ))
  9424. characterMakers.push(() => makeCharacter(
  9425. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9426. {
  9427. front: {
  9428. height: math.unit(12, "feet"),
  9429. weight: math.unit(1000, "lb"),
  9430. name: "Front",
  9431. image: {
  9432. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9433. extra: 1762 / 1611
  9434. }
  9435. },
  9436. back: {
  9437. height: math.unit(12, "feet"),
  9438. weight: math.unit(1000, "lb"),
  9439. name: "Back",
  9440. image: {
  9441. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9442. extra: 1762 / 1611
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(12, "feet"),
  9450. default: true
  9451. },
  9452. {
  9453. name: "Kaiju",
  9454. height: math.unit(150, "feet")
  9455. },
  9456. ]
  9457. ))
  9458. characterMakers.push(() => makeCharacter(
  9459. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9460. {
  9461. front: {
  9462. height: math.unit(6, "feet"),
  9463. weight: math.unit(150, "lb"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/zero-alurus/front.svg"
  9467. }
  9468. },
  9469. back: {
  9470. height: math.unit(6, "feet"),
  9471. weight: math.unit(150, "lb"),
  9472. name: "Back",
  9473. image: {
  9474. source: "./media/characters/zero-alurus/back.svg"
  9475. }
  9476. },
  9477. },
  9478. [
  9479. {
  9480. name: "Normal",
  9481. height: math.unit(5 + 10 / 12, "feet")
  9482. },
  9483. {
  9484. name: "Macro",
  9485. height: math.unit(60, "feet"),
  9486. default: true
  9487. },
  9488. {
  9489. name: "Macro+",
  9490. height: math.unit(450, "feet")
  9491. },
  9492. ]
  9493. ))
  9494. characterMakers.push(() => makeCharacter(
  9495. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9496. {
  9497. front: {
  9498. height: math.unit(6, "feet"),
  9499. weight: math.unit(200, "lb"),
  9500. name: "Front",
  9501. image: {
  9502. source: "./media/characters/mega-shi/front.svg",
  9503. extra: 1279 / 1250,
  9504. bottom: 0.02
  9505. }
  9506. },
  9507. back: {
  9508. height: math.unit(6, "feet"),
  9509. weight: math.unit(200, "lb"),
  9510. name: "Back",
  9511. image: {
  9512. source: "./media/characters/mega-shi/back.svg",
  9513. extra: 1279 / 1250,
  9514. bottom: 0.02
  9515. }
  9516. },
  9517. },
  9518. [
  9519. {
  9520. name: "Micro",
  9521. height: math.unit(16 + 6 / 12, "feet")
  9522. },
  9523. {
  9524. name: "Third Dimension",
  9525. height: math.unit(40, "meters")
  9526. },
  9527. {
  9528. name: "Normal",
  9529. height: math.unit(660, "feet"),
  9530. default: true
  9531. },
  9532. {
  9533. name: "Megamacro",
  9534. height: math.unit(10, "miles")
  9535. },
  9536. {
  9537. name: "Planetary Launch",
  9538. height: math.unit(500, "miles")
  9539. },
  9540. {
  9541. name: "Interstellar",
  9542. height: math.unit(1e9, "miles")
  9543. },
  9544. {
  9545. name: "Leaving the Universe",
  9546. height: math.unit(1, "gigaparsec")
  9547. },
  9548. {
  9549. name: "Travelling Universes",
  9550. height: math.unit(30e15, "parsecs")
  9551. },
  9552. ]
  9553. ))
  9554. characterMakers.push(() => makeCharacter(
  9555. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9556. {
  9557. front: {
  9558. height: math.unit(6, "feet"),
  9559. weight: math.unit(150, "lb"),
  9560. name: "Front",
  9561. image: {
  9562. source: "./media/characters/odyssey/front.svg",
  9563. extra: 1782 / 1582,
  9564. bottom: 0.01
  9565. }
  9566. },
  9567. side: {
  9568. height: math.unit(5.7, "feet"),
  9569. weight: math.unit(140, "lb"),
  9570. name: "Side",
  9571. image: {
  9572. source: "./media/characters/odyssey/side.svg",
  9573. extra: 6462 / 5700
  9574. }
  9575. },
  9576. },
  9577. [
  9578. {
  9579. name: "Normal",
  9580. height: math.unit(5 + 4 / 12, "feet")
  9581. },
  9582. {
  9583. name: "Macro",
  9584. height: math.unit(1, "km")
  9585. },
  9586. {
  9587. name: "Megamacro",
  9588. height: math.unit(3000, "km")
  9589. },
  9590. {
  9591. name: "Gigamacro",
  9592. height: math.unit(1, "AU"),
  9593. default: true
  9594. },
  9595. {
  9596. name: "Omniversal",
  9597. height: math.unit(100e14, "lightyears")
  9598. },
  9599. ]
  9600. ))
  9601. characterMakers.push(() => makeCharacter(
  9602. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9603. {
  9604. front: {
  9605. height: math.unit(6, "feet"),
  9606. weight: math.unit(300, "lb"),
  9607. name: "Front",
  9608. image: {
  9609. source: "./media/characters/mekuto/front.svg",
  9610. extra: 921 / 832,
  9611. bottom: 0.03
  9612. }
  9613. },
  9614. hand: {
  9615. height: math.unit(6 / 10.24, "feet"),
  9616. name: "Hand",
  9617. image: {
  9618. source: "./media/characters/mekuto/hand.svg"
  9619. }
  9620. },
  9621. foot: {
  9622. height: math.unit(6 / 5.05, "feet"),
  9623. name: "Foot",
  9624. image: {
  9625. source: "./media/characters/mekuto/foot.svg"
  9626. }
  9627. },
  9628. },
  9629. [
  9630. {
  9631. name: "Minimicro",
  9632. height: math.unit(0.2, "inches")
  9633. },
  9634. {
  9635. name: "Micro",
  9636. height: math.unit(1.5, "inches")
  9637. },
  9638. {
  9639. name: "Normal",
  9640. height: math.unit(5 + 11 / 12, "feet"),
  9641. default: true
  9642. },
  9643. {
  9644. name: "Minimacro",
  9645. height: math.unit(17 + 9 / 12, "feet")
  9646. },
  9647. {
  9648. name: "Macro",
  9649. height: math.unit(177.5, "feet")
  9650. },
  9651. {
  9652. name: "Megamacro",
  9653. height: math.unit(152, "miles")
  9654. },
  9655. ]
  9656. ))
  9657. characterMakers.push(() => makeCharacter(
  9658. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9659. {
  9660. front: {
  9661. height: math.unit(6.5, "inches"),
  9662. weight: math.unit(13, "oz"),
  9663. name: "Front",
  9664. image: {
  9665. source: "./media/characters/dafydd-tomos/front.svg",
  9666. extra: 2990 / 2603,
  9667. bottom: 0.03
  9668. }
  9669. },
  9670. },
  9671. [
  9672. {
  9673. name: "Micro",
  9674. height: math.unit(6.5, "inches"),
  9675. default: true
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9681. {
  9682. front: {
  9683. height: math.unit(6, "feet"),
  9684. weight: math.unit(150, "lb"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/splinter/front.svg",
  9688. extra: 2990 / 2882,
  9689. bottom: 0.04
  9690. }
  9691. },
  9692. back: {
  9693. height: math.unit(6, "feet"),
  9694. weight: math.unit(150, "lb"),
  9695. name: "Back",
  9696. image: {
  9697. source: "./media/characters/splinter/back.svg",
  9698. extra: 2990 / 2882,
  9699. bottom: 0.04
  9700. }
  9701. },
  9702. },
  9703. [
  9704. {
  9705. name: "Normal",
  9706. height: math.unit(6, "feet")
  9707. },
  9708. {
  9709. name: "Macro",
  9710. height: math.unit(230, "meters"),
  9711. default: true
  9712. },
  9713. ]
  9714. ))
  9715. characterMakers.push(() => makeCharacter(
  9716. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9717. {
  9718. front: {
  9719. height: math.unit(4 + 10 / 12, "feet"),
  9720. weight: math.unit(480, "lb"),
  9721. name: "Front",
  9722. image: {
  9723. source: "./media/characters/snow-gabumon/front.svg",
  9724. extra: 1140 / 963,
  9725. bottom: 0.058
  9726. }
  9727. },
  9728. back: {
  9729. height: math.unit(4 + 10 / 12, "feet"),
  9730. weight: math.unit(480, "lb"),
  9731. name: "Back",
  9732. image: {
  9733. source: "./media/characters/snow-gabumon/back.svg",
  9734. extra: 1115 / 962,
  9735. bottom: 0.041
  9736. }
  9737. },
  9738. frontUndresed: {
  9739. height: math.unit(4 + 10 / 12, "feet"),
  9740. weight: math.unit(480, "lb"),
  9741. name: "Front (Undressed)",
  9742. image: {
  9743. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9744. extra: 1061 / 960,
  9745. bottom: 0.045
  9746. }
  9747. },
  9748. },
  9749. [
  9750. {
  9751. name: "Micro",
  9752. height: math.unit(1, "inch")
  9753. },
  9754. {
  9755. name: "Normal",
  9756. height: math.unit(4 + 10 / 12, "feet"),
  9757. default: true
  9758. },
  9759. {
  9760. name: "Macro",
  9761. height: math.unit(200, "feet")
  9762. },
  9763. {
  9764. name: "Megamacro",
  9765. height: math.unit(120, "miles")
  9766. },
  9767. {
  9768. name: "Gigamacro",
  9769. height: math.unit(9800, "miles")
  9770. },
  9771. ]
  9772. ))
  9773. characterMakers.push(() => makeCharacter(
  9774. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9775. {
  9776. front: {
  9777. height: math.unit(1.7, "meters"),
  9778. weight: math.unit(140, "lb"),
  9779. name: "Front",
  9780. image: {
  9781. source: "./media/characters/moody/front.svg",
  9782. extra: 3226 / 3007,
  9783. bottom: 0.087
  9784. }
  9785. },
  9786. },
  9787. [
  9788. {
  9789. name: "Micro",
  9790. height: math.unit(1, "mm")
  9791. },
  9792. {
  9793. name: "Normal",
  9794. height: math.unit(1.7, "meters"),
  9795. default: true
  9796. },
  9797. {
  9798. name: "Macro",
  9799. height: math.unit(80, "meters")
  9800. },
  9801. {
  9802. name: "Macro+",
  9803. height: math.unit(500, "meters")
  9804. },
  9805. ]
  9806. ))
  9807. characterMakers.push(() => makeCharacter(
  9808. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9809. {
  9810. front: {
  9811. height: math.unit(6, "feet"),
  9812. weight: math.unit(150, "lb"),
  9813. name: "Front",
  9814. image: {
  9815. source: "./media/characters/zyas/front.svg",
  9816. extra: 1180 / 1120,
  9817. bottom: 0.045
  9818. }
  9819. },
  9820. },
  9821. [
  9822. {
  9823. name: "Normal",
  9824. height: math.unit(10, "feet"),
  9825. default: true
  9826. },
  9827. {
  9828. name: "Macro",
  9829. height: math.unit(500, "feet")
  9830. },
  9831. {
  9832. name: "Megamacro",
  9833. height: math.unit(5, "miles")
  9834. },
  9835. {
  9836. name: "Teramacro",
  9837. height: math.unit(150000, "miles")
  9838. },
  9839. ]
  9840. ))
  9841. characterMakers.push(() => makeCharacter(
  9842. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9843. {
  9844. front: {
  9845. height: math.unit(6, "feet"),
  9846. weight: math.unit(150, "lb"),
  9847. name: "Front",
  9848. image: {
  9849. source: "./media/characters/cuon/front.svg",
  9850. extra: 1390 / 1320,
  9851. bottom: 0.008
  9852. }
  9853. },
  9854. },
  9855. [
  9856. {
  9857. name: "Micro",
  9858. height: math.unit(3, "inches")
  9859. },
  9860. {
  9861. name: "Normal",
  9862. height: math.unit(18 + 9 / 12, "feet"),
  9863. default: true
  9864. },
  9865. {
  9866. name: "Macro",
  9867. height: math.unit(360, "feet")
  9868. },
  9869. {
  9870. name: "Megamacro",
  9871. height: math.unit(360, "miles")
  9872. },
  9873. ]
  9874. ))
  9875. characterMakers.push(() => makeCharacter(
  9876. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9877. {
  9878. front: {
  9879. height: math.unit(2.4, "meters"),
  9880. weight: math.unit(70, "kg"),
  9881. name: "Front",
  9882. image: {
  9883. source: "./media/characters/nyanuxk/front.svg",
  9884. extra: 1172 / 1084,
  9885. bottom: 0.065
  9886. }
  9887. },
  9888. side: {
  9889. height: math.unit(2.4, "meters"),
  9890. weight: math.unit(70, "kg"),
  9891. name: "Side",
  9892. image: {
  9893. source: "./media/characters/nyanuxk/side.svg",
  9894. extra: 1190 / 1132,
  9895. bottom: 0.007
  9896. }
  9897. },
  9898. back: {
  9899. height: math.unit(2.4, "meters"),
  9900. weight: math.unit(70, "kg"),
  9901. name: "Back",
  9902. image: {
  9903. source: "./media/characters/nyanuxk/back.svg",
  9904. extra: 1200 / 1141,
  9905. bottom: 0.015
  9906. }
  9907. },
  9908. foot: {
  9909. height: math.unit(0.52, "meters"),
  9910. name: "Foot",
  9911. image: {
  9912. source: "./media/characters/nyanuxk/foot.svg"
  9913. }
  9914. },
  9915. },
  9916. [
  9917. {
  9918. name: "Micro",
  9919. height: math.unit(2, "cm")
  9920. },
  9921. {
  9922. name: "Normal",
  9923. height: math.unit(2.4, "meters"),
  9924. default: true
  9925. },
  9926. {
  9927. name: "Smaller Macro",
  9928. height: math.unit(120, "meters")
  9929. },
  9930. {
  9931. name: "Bigger Macro",
  9932. height: math.unit(1.2, "km")
  9933. },
  9934. {
  9935. name: "Megamacro",
  9936. height: math.unit(15, "kilometers")
  9937. },
  9938. {
  9939. name: "Gigamacro",
  9940. height: math.unit(2000, "km")
  9941. },
  9942. {
  9943. name: "Teramacro",
  9944. height: math.unit(500000, "km")
  9945. },
  9946. ]
  9947. ))
  9948. characterMakers.push(() => makeCharacter(
  9949. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9950. {
  9951. side: {
  9952. height: math.unit(6, "feet"),
  9953. name: "Side",
  9954. image: {
  9955. source: "./media/characters/ailbhe/side.svg",
  9956. extra: 757 / 464,
  9957. bottom: 0.041
  9958. }
  9959. },
  9960. },
  9961. [
  9962. {
  9963. name: "Normal",
  9964. height: math.unit(1.07, "meters"),
  9965. default: true
  9966. },
  9967. ]
  9968. ))
  9969. characterMakers.push(() => makeCharacter(
  9970. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9971. {
  9972. front: {
  9973. height: math.unit(6, "feet"),
  9974. weight: math.unit(120, "kg"),
  9975. name: "Front",
  9976. image: {
  9977. source: "./media/characters/zevulfius/front.svg",
  9978. extra: 965 / 903
  9979. }
  9980. },
  9981. side: {
  9982. height: math.unit(6, "feet"),
  9983. weight: math.unit(120, "kg"),
  9984. name: "Side",
  9985. image: {
  9986. source: "./media/characters/zevulfius/side.svg",
  9987. extra: 939 / 900
  9988. }
  9989. },
  9990. back: {
  9991. height: math.unit(6, "feet"),
  9992. weight: math.unit(120, "kg"),
  9993. name: "Back",
  9994. image: {
  9995. source: "./media/characters/zevulfius/back.svg",
  9996. extra: 918 / 854,
  9997. bottom: 0.005
  9998. }
  9999. },
  10000. foot: {
  10001. height: math.unit(6 / 3.72, "feet"),
  10002. name: "Foot",
  10003. image: {
  10004. source: "./media/characters/zevulfius/foot.svg"
  10005. }
  10006. },
  10007. },
  10008. [
  10009. {
  10010. name: "Macro",
  10011. height: math.unit(750, "meters")
  10012. },
  10013. {
  10014. name: "Megamacro",
  10015. height: math.unit(20, "km"),
  10016. default: true
  10017. },
  10018. {
  10019. name: "Gigamacro",
  10020. height: math.unit(2000, "km")
  10021. },
  10022. {
  10023. name: "Teramacro",
  10024. height: math.unit(250000, "km")
  10025. },
  10026. ]
  10027. ))
  10028. characterMakers.push(() => makeCharacter(
  10029. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10030. {
  10031. front: {
  10032. height: math.unit(100, "feet"),
  10033. weight: math.unit(350, "kg"),
  10034. name: "Front",
  10035. image: {
  10036. source: "./media/characters/rikes/front.svg",
  10037. extra: 1565 / 1483,
  10038. bottom: 0.017
  10039. }
  10040. },
  10041. },
  10042. [
  10043. {
  10044. name: "Macro",
  10045. height: math.unit(100, "feet"),
  10046. default: true
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10052. {
  10053. anthro: {
  10054. height: math.unit(8, "feet"),
  10055. weight: math.unit(120, "kg"),
  10056. name: "Anthro",
  10057. image: {
  10058. source: "./media/characters/adam-silver-mane/anthro.svg",
  10059. extra: 5743 / 5339,
  10060. bottom: 0.07
  10061. }
  10062. },
  10063. taur: {
  10064. height: math.unit(16, "feet"),
  10065. weight: math.unit(1500, "kg"),
  10066. name: "Taur",
  10067. image: {
  10068. source: "./media/characters/adam-silver-mane/taur.svg",
  10069. extra: 1713 / 1571,
  10070. bottom: 0.01
  10071. }
  10072. },
  10073. },
  10074. [
  10075. {
  10076. name: "Normal",
  10077. height: math.unit(8, "feet")
  10078. },
  10079. {
  10080. name: "Minimacro",
  10081. height: math.unit(80, "feet")
  10082. },
  10083. {
  10084. name: "Macro",
  10085. height: math.unit(800, "feet"),
  10086. default: true
  10087. },
  10088. {
  10089. name: "Megamacro",
  10090. height: math.unit(8000, "feet")
  10091. },
  10092. {
  10093. name: "Gigamacro",
  10094. height: math.unit(800, "miles")
  10095. },
  10096. {
  10097. name: "Teramacro",
  10098. height: math.unit(80000, "miles")
  10099. },
  10100. {
  10101. name: "Celestial",
  10102. height: math.unit(8e6, "miles")
  10103. },
  10104. {
  10105. name: "Star Dragon",
  10106. height: math.unit(800000, "parsecs")
  10107. },
  10108. {
  10109. name: "Godly",
  10110. height: math.unit(800, "teraparsecs")
  10111. },
  10112. ]
  10113. ))
  10114. characterMakers.push(() => makeCharacter(
  10115. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10116. {
  10117. front: {
  10118. height: math.unit(6, "feet"),
  10119. weight: math.unit(150, "lb"),
  10120. name: "Front",
  10121. image: {
  10122. source: "./media/characters/ky'owin/front.svg",
  10123. extra: 3888 / 3068,
  10124. bottom: 0.015
  10125. }
  10126. },
  10127. },
  10128. [
  10129. {
  10130. name: "Normal",
  10131. height: math.unit(6 + 8 / 12, "feet")
  10132. },
  10133. {
  10134. name: "Large",
  10135. height: math.unit(68, "feet")
  10136. },
  10137. {
  10138. name: "Macro",
  10139. height: math.unit(132, "feet")
  10140. },
  10141. {
  10142. name: "Macro+",
  10143. height: math.unit(340, "feet")
  10144. },
  10145. {
  10146. name: "Macro++",
  10147. height: math.unit(680, "feet"),
  10148. default: true
  10149. },
  10150. {
  10151. name: "Megamacro",
  10152. height: math.unit(1, "mile")
  10153. },
  10154. {
  10155. name: "Megamacro+",
  10156. height: math.unit(10, "miles")
  10157. },
  10158. ]
  10159. ))
  10160. characterMakers.push(() => makeCharacter(
  10161. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10162. {
  10163. front: {
  10164. height: math.unit(4, "feet"),
  10165. weight: math.unit(50, "lb"),
  10166. name: "Front",
  10167. image: {
  10168. source: "./media/characters/mal/front.svg",
  10169. extra: 785 / 724,
  10170. bottom: 0.07
  10171. }
  10172. },
  10173. },
  10174. [
  10175. {
  10176. name: "Micro",
  10177. height: math.unit(4, "inches")
  10178. },
  10179. {
  10180. name: "Normal",
  10181. height: math.unit(4, "feet"),
  10182. default: true
  10183. },
  10184. {
  10185. name: "Macro",
  10186. height: math.unit(200, "feet")
  10187. },
  10188. ]
  10189. ))
  10190. characterMakers.push(() => makeCharacter(
  10191. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10192. {
  10193. front: {
  10194. height: math.unit(6, "feet"),
  10195. weight: math.unit(150, "lb"),
  10196. name: "Front",
  10197. image: {
  10198. source: "./media/characters/jordan-deware/front.svg",
  10199. extra: 1191 / 1012
  10200. }
  10201. },
  10202. },
  10203. [
  10204. {
  10205. name: "Nano",
  10206. height: math.unit(0.01, "mm")
  10207. },
  10208. {
  10209. name: "Minimicro",
  10210. height: math.unit(1, "mm")
  10211. },
  10212. {
  10213. name: "Micro",
  10214. height: math.unit(0.5, "inches")
  10215. },
  10216. {
  10217. name: "Normal",
  10218. height: math.unit(4, "feet"),
  10219. default: true
  10220. },
  10221. {
  10222. name: "Minimacro",
  10223. height: math.unit(40, "meters")
  10224. },
  10225. {
  10226. name: "Small Macro",
  10227. height: math.unit(400, "meters")
  10228. },
  10229. {
  10230. name: "Macro",
  10231. height: math.unit(4, "miles")
  10232. },
  10233. {
  10234. name: "Megamacro",
  10235. height: math.unit(40, "miles")
  10236. },
  10237. {
  10238. name: "Megamacro+",
  10239. height: math.unit(400, "miles")
  10240. },
  10241. {
  10242. name: "Gigamacro",
  10243. height: math.unit(400000, "miles")
  10244. },
  10245. ]
  10246. ))
  10247. characterMakers.push(() => makeCharacter(
  10248. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10249. {
  10250. side: {
  10251. height: math.unit(6, "feet"),
  10252. weight: math.unit(150, "lb"),
  10253. name: "Side",
  10254. image: {
  10255. source: "./media/characters/kimiko/side.svg",
  10256. extra: 600 / 358
  10257. }
  10258. },
  10259. },
  10260. [
  10261. {
  10262. name: "Normal",
  10263. height: math.unit(15, "feet"),
  10264. default: true
  10265. },
  10266. {
  10267. name: "Macro",
  10268. height: math.unit(220, "feet")
  10269. },
  10270. {
  10271. name: "Macro+",
  10272. height: math.unit(1450, "feet")
  10273. },
  10274. {
  10275. name: "Megamacro",
  10276. height: math.unit(11500, "feet")
  10277. },
  10278. {
  10279. name: "Gigamacro",
  10280. height: math.unit(9500, "miles")
  10281. },
  10282. {
  10283. name: "Teramacro",
  10284. height: math.unit(2208005005, "miles")
  10285. },
  10286. {
  10287. name: "Examacro",
  10288. height: math.unit(2750, "parsecs")
  10289. },
  10290. {
  10291. name: "Zettamacro",
  10292. height: math.unit(101500, "parsecs")
  10293. },
  10294. ]
  10295. ))
  10296. characterMakers.push(() => makeCharacter(
  10297. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10298. {
  10299. front: {
  10300. height: math.unit(6, "feet"),
  10301. weight: math.unit(70, "kg"),
  10302. name: "Front",
  10303. image: {
  10304. source: "./media/characters/andrew-sleepy/front.svg"
  10305. }
  10306. },
  10307. side: {
  10308. height: math.unit(6, "feet"),
  10309. weight: math.unit(70, "kg"),
  10310. name: "Side",
  10311. image: {
  10312. source: "./media/characters/andrew-sleepy/side.svg"
  10313. }
  10314. },
  10315. },
  10316. [
  10317. {
  10318. name: "Micro",
  10319. height: math.unit(1, "mm"),
  10320. default: true
  10321. },
  10322. ]
  10323. ))
  10324. characterMakers.push(() => makeCharacter(
  10325. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10326. {
  10327. front: {
  10328. height: math.unit(6, "feet"),
  10329. weight: math.unit(150, "lb"),
  10330. name: "Front",
  10331. image: {
  10332. source: "./media/characters/judio/front.svg",
  10333. extra: 1258 / 1110
  10334. }
  10335. },
  10336. },
  10337. [
  10338. {
  10339. name: "Normal",
  10340. height: math.unit(5 + 6 / 12, "feet")
  10341. },
  10342. {
  10343. name: "Macro",
  10344. height: math.unit(1000, "feet"),
  10345. default: true
  10346. },
  10347. {
  10348. name: "Megamacro",
  10349. height: math.unit(10, "miles")
  10350. },
  10351. ]
  10352. ))
  10353. characterMakers.push(() => makeCharacter(
  10354. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10355. {
  10356. front: {
  10357. height: math.unit(6, "feet"),
  10358. weight: math.unit(68, "kg"),
  10359. name: "Front",
  10360. image: {
  10361. source: "./media/characters/nomaxice/front.svg",
  10362. extra: 1498 / 1073,
  10363. bottom: 0.075
  10364. }
  10365. },
  10366. foot: {
  10367. height: math.unit(1.1, "feet"),
  10368. name: "Foot",
  10369. image: {
  10370. source: "./media/characters/nomaxice/foot.svg"
  10371. }
  10372. },
  10373. },
  10374. [
  10375. {
  10376. name: "Micro",
  10377. height: math.unit(8, "cm")
  10378. },
  10379. {
  10380. name: "Norm",
  10381. height: math.unit(1.82, "m")
  10382. },
  10383. {
  10384. name: "Norm+",
  10385. height: math.unit(8.8, "feet")
  10386. },
  10387. {
  10388. name: "Big",
  10389. height: math.unit(8, "meters"),
  10390. default: true
  10391. },
  10392. {
  10393. name: "Macro",
  10394. height: math.unit(18, "meters")
  10395. },
  10396. {
  10397. name: "Macro+",
  10398. height: math.unit(88, "meters")
  10399. },
  10400. ]
  10401. ))
  10402. characterMakers.push(() => makeCharacter(
  10403. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10404. {
  10405. front: {
  10406. height: math.unit(12, "feet"),
  10407. weight: math.unit(1.5, "tons"),
  10408. name: "Front",
  10409. image: {
  10410. source: "./media/characters/dydros/front.svg",
  10411. extra: 863 / 800,
  10412. bottom: 0.015
  10413. }
  10414. },
  10415. back: {
  10416. height: math.unit(12, "feet"),
  10417. weight: math.unit(1.5, "tons"),
  10418. name: "Back",
  10419. image: {
  10420. source: "./media/characters/dydros/back.svg",
  10421. extra: 900 / 843,
  10422. bottom: 0.005
  10423. }
  10424. },
  10425. },
  10426. [
  10427. {
  10428. name: "Normal",
  10429. height: math.unit(12, "feet"),
  10430. default: true
  10431. },
  10432. ]
  10433. ))
  10434. characterMakers.push(() => makeCharacter(
  10435. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10436. {
  10437. front: {
  10438. height: math.unit(6, "feet"),
  10439. weight: math.unit(100, "kg"),
  10440. name: "Front",
  10441. image: {
  10442. source: "./media/characters/riggi/front.svg",
  10443. extra: 5787 / 5303
  10444. }
  10445. },
  10446. hyper: {
  10447. height: math.unit(6 * 5 / 3, "feet"),
  10448. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10449. name: "Hyper",
  10450. image: {
  10451. source: "./media/characters/riggi/hyper.svg",
  10452. extra: 3595 / 3485
  10453. }
  10454. },
  10455. },
  10456. [
  10457. {
  10458. name: "Small Macro",
  10459. height: math.unit(50, "feet")
  10460. },
  10461. {
  10462. name: "Default",
  10463. height: math.unit(200, "feet"),
  10464. default: true
  10465. },
  10466. {
  10467. name: "Loom",
  10468. height: math.unit(10000, "feet")
  10469. },
  10470. {
  10471. name: "Cruising Altitude",
  10472. height: math.unit(30000, "feet")
  10473. },
  10474. {
  10475. name: "Megamacro",
  10476. height: math.unit(100, "miles")
  10477. },
  10478. {
  10479. name: "Continent Sized",
  10480. height: math.unit(2800, "miles")
  10481. },
  10482. {
  10483. name: "Earth Sized",
  10484. height: math.unit(8000, "miles")
  10485. },
  10486. ]
  10487. ))
  10488. characterMakers.push(() => makeCharacter(
  10489. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10490. {
  10491. front: {
  10492. height: math.unit(6, "feet"),
  10493. weight: math.unit(250, "lb"),
  10494. name: "Front",
  10495. image: {
  10496. source: "./media/characters/alexi/front.svg",
  10497. extra: 3483 / 3291,
  10498. bottom: 0.04
  10499. }
  10500. },
  10501. back: {
  10502. height: math.unit(6, "feet"),
  10503. weight: math.unit(250, "lb"),
  10504. name: "Back",
  10505. image: {
  10506. source: "./media/characters/alexi/back.svg",
  10507. extra: 3533 / 3356,
  10508. bottom: 0.021
  10509. }
  10510. },
  10511. frontTransforming: {
  10512. height: math.unit(8.58, "feet"),
  10513. weight: math.unit(1300, "lb"),
  10514. name: "Transforming",
  10515. image: {
  10516. source: "./media/characters/alexi/front-transforming.svg",
  10517. extra: 437 / 409,
  10518. bottom: 19 / 458.66
  10519. }
  10520. },
  10521. frontTransformed: {
  10522. height: math.unit(12.5, "feet"),
  10523. weight: math.unit(4000, "lb"),
  10524. name: "Transformed",
  10525. image: {
  10526. source: "./media/characters/alexi/front-transformed.svg",
  10527. extra: 639 / 614,
  10528. bottom: 30.55 / 671
  10529. }
  10530. },
  10531. },
  10532. [
  10533. {
  10534. name: "Normal",
  10535. height: math.unit(14, "feet"),
  10536. default: true
  10537. },
  10538. {
  10539. name: "Minimacro",
  10540. height: math.unit(30, "meters")
  10541. },
  10542. {
  10543. name: "Macro",
  10544. height: math.unit(500, "meters")
  10545. },
  10546. {
  10547. name: "Megamacro",
  10548. height: math.unit(9000, "km")
  10549. },
  10550. {
  10551. name: "Teramacro",
  10552. height: math.unit(384000, "km")
  10553. },
  10554. ]
  10555. ))
  10556. characterMakers.push(() => makeCharacter(
  10557. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10558. {
  10559. front: {
  10560. height: math.unit(6, "feet"),
  10561. weight: math.unit(150, "lb"),
  10562. name: "Front",
  10563. image: {
  10564. source: "./media/characters/kayroo/front.svg",
  10565. extra: 1153 / 1038,
  10566. bottom: 0.06
  10567. }
  10568. },
  10569. foot: {
  10570. height: math.unit(6, "feet"),
  10571. weight: math.unit(150, "lb"),
  10572. name: "Foot",
  10573. image: {
  10574. source: "./media/characters/kayroo/foot.svg"
  10575. }
  10576. },
  10577. },
  10578. [
  10579. {
  10580. name: "Normal",
  10581. height: math.unit(8, "feet"),
  10582. default: true
  10583. },
  10584. {
  10585. name: "Minimacro",
  10586. height: math.unit(250, "feet")
  10587. },
  10588. {
  10589. name: "Macro",
  10590. height: math.unit(2800, "feet")
  10591. },
  10592. {
  10593. name: "Megamacro",
  10594. height: math.unit(5200, "feet")
  10595. },
  10596. {
  10597. name: "Gigamacro",
  10598. height: math.unit(27000, "feet")
  10599. },
  10600. {
  10601. name: "Omega",
  10602. height: math.unit(45000, "feet")
  10603. },
  10604. ]
  10605. ))
  10606. characterMakers.push(() => makeCharacter(
  10607. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10608. {
  10609. front: {
  10610. height: math.unit(18, "feet"),
  10611. weight: math.unit(5800, "lb"),
  10612. name: "Front",
  10613. image: {
  10614. source: "./media/characters/rhys/front.svg",
  10615. extra: 3386 / 3090,
  10616. bottom: 0.07
  10617. }
  10618. },
  10619. },
  10620. [
  10621. {
  10622. name: "Normal",
  10623. height: math.unit(18, "feet"),
  10624. default: true
  10625. },
  10626. {
  10627. name: "Working Size",
  10628. height: math.unit(200, "feet")
  10629. },
  10630. {
  10631. name: "Demolition Size",
  10632. height: math.unit(2000, "feet")
  10633. },
  10634. {
  10635. name: "Maximum Licensed Size",
  10636. height: math.unit(5, "miles")
  10637. },
  10638. {
  10639. name: "Maximum Observed Size",
  10640. height: math.unit(10, "yottameters")
  10641. },
  10642. ]
  10643. ))
  10644. characterMakers.push(() => makeCharacter(
  10645. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10646. {
  10647. front: {
  10648. height: math.unit(6, "feet"),
  10649. weight: math.unit(250, "lb"),
  10650. name: "Front",
  10651. image: {
  10652. source: "./media/characters/toto/front.svg",
  10653. extra: 527 / 479,
  10654. bottom: 0.05
  10655. }
  10656. },
  10657. },
  10658. [
  10659. {
  10660. name: "Micro",
  10661. height: math.unit(3, "feet")
  10662. },
  10663. {
  10664. name: "Normal",
  10665. height: math.unit(10, "feet")
  10666. },
  10667. {
  10668. name: "Macro",
  10669. height: math.unit(150, "feet"),
  10670. default: true
  10671. },
  10672. {
  10673. name: "Megamacro",
  10674. height: math.unit(1200, "feet")
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "King", species: ["lion"], tags: ["anthro"] },
  10680. {
  10681. back: {
  10682. height: math.unit(6, "feet"),
  10683. weight: math.unit(150, "lb"),
  10684. name: "Back",
  10685. image: {
  10686. source: "./media/characters/king/back.svg"
  10687. }
  10688. },
  10689. },
  10690. [
  10691. {
  10692. name: "Micro",
  10693. height: math.unit(2, "inches")
  10694. },
  10695. {
  10696. name: "Normal",
  10697. height: math.unit(8, "feet")
  10698. },
  10699. {
  10700. name: "Macro",
  10701. height: math.unit(200, "feet"),
  10702. default: true
  10703. },
  10704. {
  10705. name: "Megamacro",
  10706. height: math.unit(50, "miles")
  10707. },
  10708. ]
  10709. ))
  10710. characterMakers.push(() => makeCharacter(
  10711. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10712. {
  10713. anthro: {
  10714. height: math.unit(6 + 5 / 12, "feet"),
  10715. weight: math.unit(280, "lb"),
  10716. name: "Anthro",
  10717. image: {
  10718. source: "./media/characters/cordite/anthro.svg",
  10719. extra: 1986 / 1905,
  10720. bottom: 0.025
  10721. }
  10722. },
  10723. feral: {
  10724. height: math.unit(2, "feet"),
  10725. weight: math.unit(90, "lb"),
  10726. name: "Feral",
  10727. image: {
  10728. source: "./media/characters/cordite/feral.svg",
  10729. extra: 1260 / 755,
  10730. bottom: 0.05
  10731. }
  10732. },
  10733. },
  10734. [
  10735. {
  10736. name: "Normal",
  10737. height: math.unit(6 + 5 / 12, "feet"),
  10738. default: true
  10739. },
  10740. ]
  10741. ))
  10742. characterMakers.push(() => makeCharacter(
  10743. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10744. {
  10745. front: {
  10746. height: math.unit(6, "feet"),
  10747. weight: math.unit(150, "lb"),
  10748. name: "Front",
  10749. image: {
  10750. source: "./media/characters/pianostrong/front.svg",
  10751. extra: 6577 / 6254,
  10752. bottom: 0.02
  10753. }
  10754. },
  10755. side: {
  10756. height: math.unit(6, "feet"),
  10757. weight: math.unit(150, "lb"),
  10758. name: "Side",
  10759. image: {
  10760. source: "./media/characters/pianostrong/side.svg",
  10761. extra: 6106 / 5730
  10762. }
  10763. },
  10764. back: {
  10765. height: math.unit(6, "feet"),
  10766. weight: math.unit(150, "lb"),
  10767. name: "Back",
  10768. image: {
  10769. source: "./media/characters/pianostrong/back.svg",
  10770. extra: 6085 / 5733,
  10771. bottom: 0.01
  10772. }
  10773. },
  10774. },
  10775. [
  10776. {
  10777. name: "Macro",
  10778. height: math.unit(100, "feet")
  10779. },
  10780. {
  10781. name: "Macro+",
  10782. height: math.unit(300, "feet"),
  10783. default: true
  10784. },
  10785. {
  10786. name: "Macro++",
  10787. height: math.unit(1000, "feet")
  10788. },
  10789. ]
  10790. ))
  10791. characterMakers.push(() => makeCharacter(
  10792. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10793. {
  10794. front: {
  10795. height: math.unit(6, "feet"),
  10796. weight: math.unit(150, "lb"),
  10797. name: "Front",
  10798. image: {
  10799. source: "./media/characters/kona/front.svg",
  10800. extra: 2960 / 2629,
  10801. bottom: 0.005
  10802. }
  10803. },
  10804. },
  10805. [
  10806. {
  10807. name: "Normal",
  10808. height: math.unit(11 + 8 / 12, "feet")
  10809. },
  10810. {
  10811. name: "Macro",
  10812. height: math.unit(850, "feet"),
  10813. default: true
  10814. },
  10815. {
  10816. name: "Macro+",
  10817. height: math.unit(1.5, "km"),
  10818. default: true
  10819. },
  10820. {
  10821. name: "Megamacro",
  10822. height: math.unit(80, "miles")
  10823. },
  10824. {
  10825. name: "Gigamacro",
  10826. height: math.unit(3500, "miles")
  10827. },
  10828. ]
  10829. ))
  10830. characterMakers.push(() => makeCharacter(
  10831. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10832. {
  10833. side: {
  10834. height: math.unit(1.9, "meters"),
  10835. weight: math.unit(326, "kg"),
  10836. name: "Side",
  10837. image: {
  10838. source: "./media/characters/levi/side.svg",
  10839. extra: 1704 / 1334,
  10840. bottom: 0.02
  10841. }
  10842. },
  10843. },
  10844. [
  10845. {
  10846. name: "Normal",
  10847. height: math.unit(1.9, "meters"),
  10848. default: true
  10849. },
  10850. {
  10851. name: "Macro",
  10852. height: math.unit(20, "meters")
  10853. },
  10854. {
  10855. name: "Macro+",
  10856. height: math.unit(200, "meters")
  10857. },
  10858. {
  10859. name: "Megamacro",
  10860. height: math.unit(2, "km")
  10861. },
  10862. {
  10863. name: "Megamacro+",
  10864. height: math.unit(20, "km")
  10865. },
  10866. {
  10867. name: "Gigamacro",
  10868. height: math.unit(2500, "km")
  10869. },
  10870. {
  10871. name: "Gigamacro+",
  10872. height: math.unit(120000, "km")
  10873. },
  10874. {
  10875. name: "Teramacro",
  10876. height: math.unit(7.77e6, "km")
  10877. },
  10878. ]
  10879. ))
  10880. characterMakers.push(() => makeCharacter(
  10881. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10882. {
  10883. front: {
  10884. height: math.unit(6 + 4 / 12, "feet"),
  10885. weight: math.unit(188, "lb"),
  10886. name: "Front",
  10887. image: {
  10888. source: "./media/characters/bmc/front.svg",
  10889. extra: 1067 / 1022,
  10890. bottom: 0.047
  10891. }
  10892. },
  10893. },
  10894. [
  10895. {
  10896. name: "Human-sized",
  10897. height: math.unit(6 + 4 / 12, "feet")
  10898. },
  10899. {
  10900. name: "Small",
  10901. height: math.unit(250, "feet")
  10902. },
  10903. {
  10904. name: "Normal",
  10905. height: math.unit(1250, "feet"),
  10906. default: true
  10907. },
  10908. {
  10909. name: "Good Day",
  10910. height: math.unit(88, "miles")
  10911. },
  10912. {
  10913. name: "Largest Measured Size",
  10914. height: math.unit(11.2e6, "lightyears")
  10915. },
  10916. ]
  10917. ))
  10918. characterMakers.push(() => makeCharacter(
  10919. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10920. {
  10921. front: {
  10922. height: math.unit(20, "feet"),
  10923. weight: math.unit(2016, "kg"),
  10924. name: "Front",
  10925. image: {
  10926. source: "./media/characters/sven-the-kaiju/front.svg",
  10927. extra: 1479 / 1449,
  10928. bottom: 0.05
  10929. }
  10930. },
  10931. },
  10932. [
  10933. {
  10934. name: "Fairy",
  10935. height: math.unit(6, "inches")
  10936. },
  10937. {
  10938. name: "Normal",
  10939. height: math.unit(20, "feet"),
  10940. default: true
  10941. },
  10942. {
  10943. name: "Rampage",
  10944. height: math.unit(200, "feet")
  10945. },
  10946. {
  10947. name: "Archfey Forest Guardian",
  10948. height: math.unit(1, "mile")
  10949. },
  10950. ]
  10951. ))
  10952. characterMakers.push(() => makeCharacter(
  10953. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10954. {
  10955. front: {
  10956. height: math.unit(4, "meters"),
  10957. weight: math.unit(2, "tons"),
  10958. name: "Front",
  10959. image: {
  10960. source: "./media/characters/marik/front.svg",
  10961. extra: 1057 / 1003,
  10962. bottom: 0.08
  10963. }
  10964. },
  10965. },
  10966. [
  10967. {
  10968. name: "Normal",
  10969. height: math.unit(4, "meters"),
  10970. default: true
  10971. },
  10972. {
  10973. name: "Macro",
  10974. height: math.unit(20, "meters")
  10975. },
  10976. {
  10977. name: "Megamacro",
  10978. height: math.unit(50, "km")
  10979. },
  10980. {
  10981. name: "Gigamacro",
  10982. height: math.unit(100, "km")
  10983. },
  10984. {
  10985. name: "Alpha Macro",
  10986. height: math.unit(7.88e7, "yottameters")
  10987. },
  10988. ]
  10989. ))
  10990. characterMakers.push(() => makeCharacter(
  10991. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10992. {
  10993. front: {
  10994. height: math.unit(6, "feet"),
  10995. weight: math.unit(110, "lb"),
  10996. name: "Front",
  10997. image: {
  10998. source: "./media/characters/mel/front.svg",
  10999. extra: 736 / 617,
  11000. bottom: 0.017
  11001. }
  11002. },
  11003. },
  11004. [
  11005. {
  11006. name: "Pico",
  11007. height: math.unit(3, "pm")
  11008. },
  11009. {
  11010. name: "Nano",
  11011. height: math.unit(3, "nm")
  11012. },
  11013. {
  11014. name: "Micro",
  11015. height: math.unit(0.3, "mm"),
  11016. default: true
  11017. },
  11018. {
  11019. name: "Micro+",
  11020. height: math.unit(3, "mm")
  11021. },
  11022. {
  11023. name: "Normal",
  11024. height: math.unit(5 + 10.5 / 12, "feet")
  11025. },
  11026. ]
  11027. ))
  11028. characterMakers.push(() => makeCharacter(
  11029. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11030. {
  11031. kaiju: {
  11032. height: math.unit(1.75, "meters"),
  11033. weight: math.unit(55, "kg"),
  11034. name: "Kaiju",
  11035. image: {
  11036. source: "./media/characters/lykonous/kaiju.svg",
  11037. extra: 1055 / 946,
  11038. bottom: 0.135
  11039. }
  11040. },
  11041. },
  11042. [
  11043. {
  11044. name: "Normal",
  11045. height: math.unit(2.5, "meters"),
  11046. default: true
  11047. },
  11048. {
  11049. name: "Kaiju Dragon",
  11050. height: math.unit(60, "meters")
  11051. },
  11052. {
  11053. name: "Mega Kaiju",
  11054. height: math.unit(120, "km")
  11055. },
  11056. {
  11057. name: "Giga Kaiju",
  11058. height: math.unit(200, "megameters")
  11059. },
  11060. {
  11061. name: "Terra Kaiju",
  11062. height: math.unit(400, "gigameters")
  11063. },
  11064. {
  11065. name: "Kaiju Dragon God",
  11066. height: math.unit(13000, "exaparsecs")
  11067. },
  11068. ]
  11069. ))
  11070. characterMakers.push(() => makeCharacter(
  11071. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11072. {
  11073. front: {
  11074. height: math.unit(6, "feet"),
  11075. weight: math.unit(150, "lb"),
  11076. name: "Front",
  11077. image: {
  11078. source: "./media/characters/blü/front.svg",
  11079. extra: 1883 / 1564,
  11080. bottom: 0.031
  11081. }
  11082. },
  11083. },
  11084. [
  11085. {
  11086. name: "Normal",
  11087. height: math.unit(13, "feet"),
  11088. default: true
  11089. },
  11090. {
  11091. name: "Big Boi",
  11092. height: math.unit(150, "meters")
  11093. },
  11094. {
  11095. name: "Mini Stomper",
  11096. height: math.unit(300, "meters")
  11097. },
  11098. {
  11099. name: "Macro",
  11100. height: math.unit(1000, "meters")
  11101. },
  11102. {
  11103. name: "Megamacro",
  11104. height: math.unit(11000, "meters")
  11105. },
  11106. {
  11107. name: "Gigamacro",
  11108. height: math.unit(11000, "km")
  11109. },
  11110. {
  11111. name: "Teramacro",
  11112. height: math.unit(420000, "km")
  11113. },
  11114. {
  11115. name: "Examacro",
  11116. height: math.unit(120, "parsecs")
  11117. },
  11118. {
  11119. name: "God Tho",
  11120. height: math.unit(98000000000, "parsecs")
  11121. },
  11122. ]
  11123. ))
  11124. characterMakers.push(() => makeCharacter(
  11125. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11126. {
  11127. taurFront: {
  11128. height: math.unit(6, "feet"),
  11129. weight: math.unit(200, "lb"),
  11130. name: "Taur (Front)",
  11131. image: {
  11132. source: "./media/characters/scales/taur-front.svg",
  11133. extra: 1,
  11134. bottom: 0.05
  11135. }
  11136. },
  11137. taurBack: {
  11138. height: math.unit(6, "feet"),
  11139. weight: math.unit(200, "lb"),
  11140. name: "Taur (Back)",
  11141. image: {
  11142. source: "./media/characters/scales/taur-back.svg",
  11143. extra: 1,
  11144. bottom: 0.08
  11145. }
  11146. },
  11147. anthro: {
  11148. height: math.unit(6 * 7 / 12, "feet"),
  11149. weight: math.unit(100, "lb"),
  11150. name: "Anthro",
  11151. image: {
  11152. source: "./media/characters/scales/anthro.svg",
  11153. extra: 1,
  11154. bottom: 0.06
  11155. }
  11156. },
  11157. },
  11158. [
  11159. {
  11160. name: "Normal",
  11161. height: math.unit(12, "feet"),
  11162. default: true
  11163. },
  11164. ]
  11165. ))
  11166. characterMakers.push(() => makeCharacter(
  11167. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11168. {
  11169. front: {
  11170. height: math.unit(6, "feet"),
  11171. weight: math.unit(150, "lb"),
  11172. name: "Front",
  11173. image: {
  11174. source: "./media/characters/koragos/front.svg",
  11175. extra: 841 / 794,
  11176. bottom: 0.035
  11177. }
  11178. },
  11179. back: {
  11180. height: math.unit(6, "feet"),
  11181. weight: math.unit(150, "lb"),
  11182. name: "Back",
  11183. image: {
  11184. source: "./media/characters/koragos/back.svg",
  11185. extra: 841 / 810,
  11186. bottom: 0.022
  11187. }
  11188. },
  11189. },
  11190. [
  11191. {
  11192. name: "Normal",
  11193. height: math.unit(6 + 11 / 12, "feet"),
  11194. default: true
  11195. },
  11196. {
  11197. name: "Macro",
  11198. height: math.unit(490, "feet")
  11199. },
  11200. {
  11201. name: "Megamacro",
  11202. height: math.unit(10, "miles")
  11203. },
  11204. {
  11205. name: "Gigamacro",
  11206. height: math.unit(50, "miles")
  11207. },
  11208. ]
  11209. ))
  11210. characterMakers.push(() => makeCharacter(
  11211. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11212. {
  11213. front: {
  11214. height: math.unit(6, "feet"),
  11215. weight: math.unit(250, "lb"),
  11216. name: "Front",
  11217. image: {
  11218. source: "./media/characters/xylrem/front.svg",
  11219. extra: 3323 / 3050,
  11220. bottom: 0.065
  11221. }
  11222. },
  11223. },
  11224. [
  11225. {
  11226. name: "Micro",
  11227. height: math.unit(4, "feet")
  11228. },
  11229. {
  11230. name: "Normal",
  11231. height: math.unit(16, "feet"),
  11232. default: true
  11233. },
  11234. {
  11235. name: "Macro",
  11236. height: math.unit(2720, "feet")
  11237. },
  11238. {
  11239. name: "Megamacro",
  11240. height: math.unit(25000, "miles")
  11241. },
  11242. ]
  11243. ))
  11244. characterMakers.push(() => makeCharacter(
  11245. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11246. {
  11247. front: {
  11248. height: math.unit(8, "feet"),
  11249. weight: math.unit(250, "kg"),
  11250. name: "Front",
  11251. image: {
  11252. source: "./media/characters/ikideru/front.svg",
  11253. extra: 930 / 870,
  11254. bottom: 0.087
  11255. }
  11256. },
  11257. back: {
  11258. height: math.unit(8, "feet"),
  11259. weight: math.unit(250, "kg"),
  11260. name: "Back",
  11261. image: {
  11262. source: "./media/characters/ikideru/back.svg",
  11263. extra: 919 / 852,
  11264. bottom: 0.055
  11265. }
  11266. },
  11267. },
  11268. [
  11269. {
  11270. name: "Rare",
  11271. height: math.unit(8, "feet"),
  11272. default: true
  11273. },
  11274. {
  11275. name: "Playful Loom",
  11276. height: math.unit(80, "feet")
  11277. },
  11278. {
  11279. name: "City Leaner",
  11280. height: math.unit(230, "feet")
  11281. },
  11282. {
  11283. name: "Megamacro",
  11284. height: math.unit(2500, "feet")
  11285. },
  11286. {
  11287. name: "Gigamacro",
  11288. height: math.unit(26400, "feet")
  11289. },
  11290. {
  11291. name: "Tectonic Shifter",
  11292. height: math.unit(1.7, "megameters")
  11293. },
  11294. {
  11295. name: "Planet Carer",
  11296. height: math.unit(21, "megameters")
  11297. },
  11298. {
  11299. name: "God",
  11300. height: math.unit(11157.22, "parsecs")
  11301. },
  11302. ]
  11303. ))
  11304. characterMakers.push(() => makeCharacter(
  11305. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11306. {
  11307. front: {
  11308. height: math.unit(6, "feet"),
  11309. weight: math.unit(120, "lb"),
  11310. name: "Front",
  11311. image: {
  11312. source: "./media/characters/neo/front.svg"
  11313. }
  11314. },
  11315. },
  11316. [
  11317. {
  11318. name: "Micro",
  11319. height: math.unit(2, "inches"),
  11320. default: true
  11321. },
  11322. {
  11323. name: "Human Size",
  11324. height: math.unit(5 + 8 / 12, "feet")
  11325. },
  11326. ]
  11327. ))
  11328. characterMakers.push(() => makeCharacter(
  11329. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11330. {
  11331. front: {
  11332. height: math.unit(13 + 10 / 12, "feet"),
  11333. weight: math.unit(5320, "lb"),
  11334. name: "Front",
  11335. image: {
  11336. source: "./media/characters/chauncey-chantz/front.svg",
  11337. extra: 1587 / 1435,
  11338. bottom: 0.02
  11339. }
  11340. },
  11341. },
  11342. [
  11343. {
  11344. name: "Normal",
  11345. height: math.unit(13 + 10 / 12, "feet"),
  11346. default: true
  11347. },
  11348. {
  11349. name: "Macro",
  11350. height: math.unit(45, "feet")
  11351. },
  11352. {
  11353. name: "Megamacro",
  11354. height: math.unit(250, "miles")
  11355. },
  11356. {
  11357. name: "Planetary",
  11358. height: math.unit(10000, "miles")
  11359. },
  11360. {
  11361. name: "Galactic",
  11362. height: math.unit(40000, "parsecs")
  11363. },
  11364. {
  11365. name: "Universal",
  11366. height: math.unit(1, "yottameter")
  11367. },
  11368. ]
  11369. ))
  11370. characterMakers.push(() => makeCharacter(
  11371. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11372. {
  11373. front: {
  11374. height: math.unit(6, "feet"),
  11375. weight: math.unit(150, "lb"),
  11376. name: "Front",
  11377. image: {
  11378. source: "./media/characters/epifox/front.svg",
  11379. extra: 1,
  11380. bottom: 0.075
  11381. }
  11382. },
  11383. },
  11384. [
  11385. {
  11386. name: "Micro",
  11387. height: math.unit(6, "inches")
  11388. },
  11389. {
  11390. name: "Normal",
  11391. height: math.unit(12, "feet"),
  11392. default: true
  11393. },
  11394. {
  11395. name: "Macro",
  11396. height: math.unit(3810, "feet")
  11397. },
  11398. {
  11399. name: "Megamacro",
  11400. height: math.unit(500, "miles")
  11401. },
  11402. ]
  11403. ))
  11404. characterMakers.push(() => makeCharacter(
  11405. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11406. {
  11407. front: {
  11408. height: math.unit(1.8796, "m"),
  11409. weight: math.unit(230, "lb"),
  11410. name: "Front",
  11411. image: {
  11412. source: "./media/characters/colin-t/front.svg",
  11413. extra: 1272 / 1193,
  11414. bottom: 0.07
  11415. }
  11416. },
  11417. },
  11418. [
  11419. {
  11420. name: "Micro",
  11421. height: math.unit(0.571, "meters")
  11422. },
  11423. {
  11424. name: "Normal",
  11425. height: math.unit(1.8796, "meters"),
  11426. default: true
  11427. },
  11428. {
  11429. name: "Tall",
  11430. height: math.unit(4, "meters")
  11431. },
  11432. {
  11433. name: "Macro",
  11434. height: math.unit(67.241, "meters")
  11435. },
  11436. {
  11437. name: "Megamacro",
  11438. height: math.unit(371.856, "meters")
  11439. },
  11440. {
  11441. name: "Planetary",
  11442. height: math.unit(12631.5689, "km")
  11443. },
  11444. ]
  11445. ))
  11446. characterMakers.push(() => makeCharacter(
  11447. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11448. {
  11449. front: {
  11450. height: math.unit(1.85, "meters"),
  11451. weight: math.unit(80, "kg"),
  11452. name: "Front",
  11453. image: {
  11454. source: "./media/characters/matvei/front.svg",
  11455. extra: 614 / 594,
  11456. bottom: 0.01
  11457. }
  11458. },
  11459. },
  11460. [
  11461. {
  11462. name: "Normal",
  11463. height: math.unit(1.85, "meters"),
  11464. default: true
  11465. },
  11466. ]
  11467. ))
  11468. characterMakers.push(() => makeCharacter(
  11469. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11470. {
  11471. front: {
  11472. height: math.unit(5 + 9 / 12, "feet"),
  11473. weight: math.unit(70, "lb"),
  11474. name: "Front",
  11475. image: {
  11476. source: "./media/characters/quincy/front.svg",
  11477. extra: 3041 / 2751
  11478. }
  11479. },
  11480. back: {
  11481. height: math.unit(5 + 9 / 12, "feet"),
  11482. weight: math.unit(70, "lb"),
  11483. name: "Back",
  11484. image: {
  11485. source: "./media/characters/quincy/back.svg",
  11486. extra: 3041 / 2751
  11487. }
  11488. },
  11489. flying: {
  11490. height: math.unit(5 + 4 / 12, "feet"),
  11491. weight: math.unit(70, "lb"),
  11492. name: "Flying",
  11493. image: {
  11494. source: "./media/characters/quincy/flying.svg",
  11495. extra: 1044 / 930
  11496. }
  11497. },
  11498. },
  11499. [
  11500. {
  11501. name: "Micro",
  11502. height: math.unit(3, "cm")
  11503. },
  11504. {
  11505. name: "Normal",
  11506. height: math.unit(5 + 9 / 12, "feet")
  11507. },
  11508. {
  11509. name: "Macro",
  11510. height: math.unit(200, "meters"),
  11511. default: true
  11512. },
  11513. {
  11514. name: "Megamacro",
  11515. height: math.unit(1000, "meters")
  11516. },
  11517. ]
  11518. ))
  11519. characterMakers.push(() => makeCharacter(
  11520. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11521. {
  11522. front: {
  11523. height: math.unit(4 + 7 / 12, "feet"),
  11524. weight: math.unit(50, "lb"),
  11525. name: "Front",
  11526. image: {
  11527. source: "./media/characters/vanrel/front.svg",
  11528. extra: 1,
  11529. bottom: 0.02
  11530. }
  11531. },
  11532. frontAlt: {
  11533. height: math.unit(4 + 7 / 12, "feet"),
  11534. weight: math.unit(50, "lb"),
  11535. name: "Front-alt",
  11536. image: {
  11537. source: "./media/characters/vanrel/front-alt.svg",
  11538. extra: 1,
  11539. bottom: 15 / 1511
  11540. }
  11541. },
  11542. elemental: {
  11543. height: math.unit(3, "feet"),
  11544. weight: math.unit(50, "lb"),
  11545. name: "Elemental",
  11546. image: {
  11547. source: "./media/characters/vanrel/elemental.svg",
  11548. extra: 192.3 / 162.8,
  11549. bottom: 1.79 / 194.17
  11550. }
  11551. },
  11552. side: {
  11553. height: math.unit(4 + 7 / 12, "feet"),
  11554. weight: math.unit(50, "lb"),
  11555. name: "Side",
  11556. image: {
  11557. source: "./media/characters/vanrel/side.svg",
  11558. extra: 1,
  11559. bottom: 0.025
  11560. }
  11561. },
  11562. tome: {
  11563. height: math.unit(1.35, "feet"),
  11564. weight: math.unit(10, "lb"),
  11565. name: "Vanrel's Tome",
  11566. rename: true,
  11567. image: {
  11568. source: "./media/characters/vanrel/tome.svg"
  11569. }
  11570. },
  11571. beans: {
  11572. height: math.unit(0.89, "feet"),
  11573. name: "Beans",
  11574. image: {
  11575. source: "./media/characters/vanrel/beans.svg"
  11576. }
  11577. },
  11578. },
  11579. [
  11580. {
  11581. name: "Normal",
  11582. height: math.unit(4 + 7 / 12, "feet"),
  11583. default: true
  11584. },
  11585. ]
  11586. ))
  11587. characterMakers.push(() => makeCharacter(
  11588. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11589. {
  11590. front: {
  11591. height: math.unit(7 + 5 / 12, "feet"),
  11592. weight: math.unit(150, "lb"),
  11593. name: "Front",
  11594. image: {
  11595. source: "./media/characters/kuiper-vanrel/front.svg",
  11596. extra: 1118 / 1068,
  11597. bottom: 0.09
  11598. }
  11599. },
  11600. foot: {
  11601. height: math.unit(0.55, "meters"),
  11602. name: "Foot",
  11603. image: {
  11604. source: "./media/characters/kuiper-vanrel/foot.svg",
  11605. }
  11606. },
  11607. battle: {
  11608. height: math.unit(6.824, "feet"),
  11609. weight: math.unit(150, "lb"),
  11610. name: "Battle",
  11611. image: {
  11612. source: "./media/characters/kuiper-vanrel/battle.svg",
  11613. extra: 1466 / 1327,
  11614. bottom: 29 / 1492.5
  11615. }
  11616. },
  11617. battleAlt: {
  11618. height: math.unit(6.824, "feet"),
  11619. weight: math.unit(150, "lb"),
  11620. name: "Battle (Alt)",
  11621. image: {
  11622. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11623. extra: 2081 / 1965,
  11624. bottom: 40 / 2121
  11625. }
  11626. },
  11627. },
  11628. [
  11629. {
  11630. name: "Normal",
  11631. height: math.unit(7 + 5 / 12, "feet"),
  11632. default: true
  11633. },
  11634. ]
  11635. ))
  11636. characterMakers.push(() => makeCharacter(
  11637. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11638. {
  11639. front: {
  11640. height: math.unit(8 + 5 / 12, "feet"),
  11641. weight: math.unit(150, "lb"),
  11642. name: "Front",
  11643. image: {
  11644. source: "./media/characters/keset-vanrel/front.svg",
  11645. extra: 1150 / 1084,
  11646. bottom: 0.05
  11647. }
  11648. },
  11649. hand: {
  11650. height: math.unit(0.6, "meters"),
  11651. name: "Hand",
  11652. image: {
  11653. source: "./media/characters/keset-vanrel/hand.svg"
  11654. }
  11655. },
  11656. foot: {
  11657. height: math.unit(0.94978, "meters"),
  11658. name: "Foot",
  11659. image: {
  11660. source: "./media/characters/keset-vanrel/foot.svg"
  11661. }
  11662. },
  11663. battle: {
  11664. height: math.unit(7.408, "feet"),
  11665. weight: math.unit(150, "lb"),
  11666. name: "Battle",
  11667. image: {
  11668. source: "./media/characters/keset-vanrel/battle.svg",
  11669. extra: 1890 / 1386,
  11670. bottom: 73.28 / 1970
  11671. }
  11672. },
  11673. },
  11674. [
  11675. {
  11676. name: "Normal",
  11677. height: math.unit(8 + 5 / 12, "feet"),
  11678. default: true
  11679. },
  11680. ]
  11681. ))
  11682. characterMakers.push(() => makeCharacter(
  11683. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11684. {
  11685. front: {
  11686. height: math.unit(6, "feet"),
  11687. weight: math.unit(150, "lb"),
  11688. name: "Front",
  11689. image: {
  11690. source: "./media/characters/neos/front.svg",
  11691. extra: 1696 / 992,
  11692. bottom: 0.14
  11693. }
  11694. },
  11695. },
  11696. [
  11697. {
  11698. name: "Normal",
  11699. height: math.unit(54, "cm"),
  11700. default: true
  11701. },
  11702. {
  11703. name: "Macro",
  11704. height: math.unit(100, "m")
  11705. },
  11706. {
  11707. name: "Megamacro",
  11708. height: math.unit(10, "km")
  11709. },
  11710. {
  11711. name: "Megamacro+",
  11712. height: math.unit(100, "km")
  11713. },
  11714. {
  11715. name: "Gigamacro",
  11716. height: math.unit(100, "Mm")
  11717. },
  11718. {
  11719. name: "Teramacro",
  11720. height: math.unit(100, "Gm")
  11721. },
  11722. {
  11723. name: "Examacro",
  11724. height: math.unit(100, "Em")
  11725. },
  11726. {
  11727. name: "Godly",
  11728. height: math.unit(10000, "Ym")
  11729. },
  11730. {
  11731. name: "Beyond Godly",
  11732. height: math.unit(25, "multiverses")
  11733. },
  11734. ]
  11735. ))
  11736. characterMakers.push(() => makeCharacter(
  11737. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11738. {
  11739. feminine: {
  11740. height: math.unit(5, "feet"),
  11741. weight: math.unit(100, "lb"),
  11742. name: "Feminine",
  11743. image: {
  11744. source: "./media/characters/sammy-mouse/feminine.svg",
  11745. extra: 2526 / 2425,
  11746. bottom: 0.123
  11747. }
  11748. },
  11749. masculine: {
  11750. height: math.unit(5, "feet"),
  11751. weight: math.unit(100, "lb"),
  11752. name: "Masculine",
  11753. image: {
  11754. source: "./media/characters/sammy-mouse/masculine.svg",
  11755. extra: 2526 / 2425,
  11756. bottom: 0.123
  11757. }
  11758. },
  11759. },
  11760. [
  11761. {
  11762. name: "Micro",
  11763. height: math.unit(5, "inches")
  11764. },
  11765. {
  11766. name: "Normal",
  11767. height: math.unit(5, "feet"),
  11768. default: true
  11769. },
  11770. {
  11771. name: "Macro",
  11772. height: math.unit(60, "feet")
  11773. },
  11774. ]
  11775. ))
  11776. characterMakers.push(() => makeCharacter(
  11777. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11778. {
  11779. front: {
  11780. height: math.unit(4, "feet"),
  11781. weight: math.unit(50, "lb"),
  11782. name: "Front",
  11783. image: {
  11784. source: "./media/characters/kole/front.svg",
  11785. extra: 1423 / 1303,
  11786. bottom: 0.025
  11787. }
  11788. },
  11789. back: {
  11790. height: math.unit(4, "feet"),
  11791. weight: math.unit(50, "lb"),
  11792. name: "Back",
  11793. image: {
  11794. source: "./media/characters/kole/back.svg",
  11795. extra: 1426 / 1280,
  11796. bottom: 0.02
  11797. }
  11798. },
  11799. },
  11800. [
  11801. {
  11802. name: "Normal",
  11803. height: math.unit(4, "feet"),
  11804. default: true
  11805. },
  11806. ]
  11807. ))
  11808. characterMakers.push(() => makeCharacter(
  11809. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11810. {
  11811. front: {
  11812. height: math.unit(2 + 6 / 12, "feet"),
  11813. weight: math.unit(20, "lb"),
  11814. name: "Front",
  11815. image: {
  11816. source: "./media/characters/rufran/front.svg",
  11817. extra: 2041 / 1839,
  11818. bottom: 0.055
  11819. }
  11820. },
  11821. back: {
  11822. height: math.unit(2 + 6 / 12, "feet"),
  11823. weight: math.unit(20, "lb"),
  11824. name: "Back",
  11825. image: {
  11826. source: "./media/characters/rufran/back.svg",
  11827. extra: 2054 / 1839,
  11828. bottom: 0.01
  11829. }
  11830. },
  11831. hand: {
  11832. height: math.unit(0.2166, "meters"),
  11833. name: "Hand",
  11834. image: {
  11835. source: "./media/characters/rufran/hand.svg"
  11836. }
  11837. },
  11838. foot: {
  11839. height: math.unit(0.185, "meters"),
  11840. name: "Foot",
  11841. image: {
  11842. source: "./media/characters/rufran/foot.svg"
  11843. }
  11844. },
  11845. },
  11846. [
  11847. {
  11848. name: "Micro",
  11849. height: math.unit(1, "inch")
  11850. },
  11851. {
  11852. name: "Normal",
  11853. height: math.unit(2 + 6 / 12, "feet"),
  11854. default: true
  11855. },
  11856. {
  11857. name: "Big",
  11858. height: math.unit(60, "feet")
  11859. },
  11860. {
  11861. name: "Macro",
  11862. height: math.unit(325, "feet")
  11863. },
  11864. ]
  11865. ))
  11866. characterMakers.push(() => makeCharacter(
  11867. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11868. {
  11869. front: {
  11870. height: math.unit(0.3, "meters"),
  11871. weight: math.unit(3.5, "kg"),
  11872. name: "Front",
  11873. image: {
  11874. source: "./media/characters/chip/front.svg",
  11875. extra: 748 / 674
  11876. }
  11877. },
  11878. },
  11879. [
  11880. {
  11881. name: "Micro",
  11882. height: math.unit(1, "inch"),
  11883. default: true
  11884. },
  11885. ]
  11886. ))
  11887. characterMakers.push(() => makeCharacter(
  11888. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11889. {
  11890. side: {
  11891. height: math.unit(2.3, "meters"),
  11892. weight: math.unit(3500, "lb"),
  11893. name: "Side",
  11894. image: {
  11895. source: "./media/characters/torvid/side.svg",
  11896. extra: 1972 / 722,
  11897. bottom: 0.035
  11898. }
  11899. },
  11900. },
  11901. [
  11902. {
  11903. name: "Normal",
  11904. height: math.unit(2.3, "meters"),
  11905. default: true
  11906. },
  11907. ]
  11908. ))
  11909. characterMakers.push(() => makeCharacter(
  11910. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11911. {
  11912. front: {
  11913. height: math.unit(2, "meters"),
  11914. weight: math.unit(150.5, "kg"),
  11915. name: "Front",
  11916. image: {
  11917. source: "./media/characters/susan/front.svg",
  11918. extra: 693 / 635,
  11919. bottom: 0.05
  11920. }
  11921. },
  11922. },
  11923. [
  11924. {
  11925. name: "Megamacro",
  11926. height: math.unit(505, "miles"),
  11927. default: true
  11928. },
  11929. ]
  11930. ))
  11931. characterMakers.push(() => makeCharacter(
  11932. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11933. {
  11934. front: {
  11935. height: math.unit(6, "feet"),
  11936. weight: math.unit(150, "lb"),
  11937. name: "Front",
  11938. image: {
  11939. source: "./media/characters/raindrops/front.svg",
  11940. extra: 2655 / 2461,
  11941. bottom: 49 / 2705
  11942. }
  11943. },
  11944. back: {
  11945. height: math.unit(6, "feet"),
  11946. weight: math.unit(150, "lb"),
  11947. name: "Back",
  11948. image: {
  11949. source: "./media/characters/raindrops/back.svg",
  11950. extra: 2574 / 2400,
  11951. bottom: 65 / 2634
  11952. }
  11953. },
  11954. },
  11955. [
  11956. {
  11957. name: "Micro",
  11958. height: math.unit(6, "inches")
  11959. },
  11960. {
  11961. name: "Normal",
  11962. height: math.unit(6 + 2 / 12, "feet")
  11963. },
  11964. {
  11965. name: "Macro",
  11966. height: math.unit(131, "feet"),
  11967. default: true
  11968. },
  11969. {
  11970. name: "Megamacro",
  11971. height: math.unit(15, "miles")
  11972. },
  11973. {
  11974. name: "Gigamacro",
  11975. height: math.unit(4000, "miles")
  11976. },
  11977. {
  11978. name: "Teramacro",
  11979. height: math.unit(315000, "miles")
  11980. },
  11981. ]
  11982. ))
  11983. characterMakers.push(() => makeCharacter(
  11984. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11985. {
  11986. front: {
  11987. height: math.unit(2.794, "meters"),
  11988. weight: math.unit(325, "kg"),
  11989. name: "Front",
  11990. image: {
  11991. source: "./media/characters/tezwa/front.svg",
  11992. extra: 2083 / 1906,
  11993. bottom: 0.031
  11994. }
  11995. },
  11996. foot: {
  11997. height: math.unit(0.687, "meters"),
  11998. name: "Foot",
  11999. image: {
  12000. source: "./media/characters/tezwa/foot.svg"
  12001. }
  12002. },
  12003. },
  12004. [
  12005. {
  12006. name: "Normal",
  12007. height: math.unit(9 + 2 / 12, "feet"),
  12008. default: true
  12009. },
  12010. ]
  12011. ))
  12012. characterMakers.push(() => makeCharacter(
  12013. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12014. {
  12015. front: {
  12016. height: math.unit(58, "feet"),
  12017. weight: math.unit(89000, "lb"),
  12018. name: "Front",
  12019. image: {
  12020. source: "./media/characters/typhus/front.svg",
  12021. extra: 816 / 800,
  12022. bottom: 0.065
  12023. }
  12024. },
  12025. },
  12026. [
  12027. {
  12028. name: "Macro",
  12029. height: math.unit(58, "feet"),
  12030. default: true
  12031. },
  12032. ]
  12033. ))
  12034. characterMakers.push(() => makeCharacter(
  12035. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12036. {
  12037. front: {
  12038. height: math.unit(12, "feet"),
  12039. weight: math.unit(6, "tonnes"),
  12040. name: "Front",
  12041. image: {
  12042. source: "./media/characters/lyra-von-wulf/front.svg",
  12043. extra: 1,
  12044. bottom: 0.10
  12045. }
  12046. },
  12047. frontMecha: {
  12048. height: math.unit(12, "feet"),
  12049. weight: math.unit(12, "tonnes"),
  12050. name: "Front (Mecha)",
  12051. image: {
  12052. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12053. extra: 1,
  12054. bottom: 0.042
  12055. }
  12056. },
  12057. maw: {
  12058. height: math.unit(2.2, "feet"),
  12059. name: "Maw",
  12060. image: {
  12061. source: "./media/characters/lyra-von-wulf/maw.svg"
  12062. }
  12063. },
  12064. },
  12065. [
  12066. {
  12067. name: "Normal",
  12068. height: math.unit(12, "feet"),
  12069. default: true
  12070. },
  12071. {
  12072. name: "Classic",
  12073. height: math.unit(50, "feet")
  12074. },
  12075. {
  12076. name: "Macro",
  12077. height: math.unit(500, "feet")
  12078. },
  12079. {
  12080. name: "Megamacro",
  12081. height: math.unit(1, "mile")
  12082. },
  12083. {
  12084. name: "Gigamacro",
  12085. height: math.unit(400, "miles")
  12086. },
  12087. {
  12088. name: "Teramacro",
  12089. height: math.unit(22000, "miles")
  12090. },
  12091. {
  12092. name: "Solarmacro",
  12093. height: math.unit(8600000, "miles")
  12094. },
  12095. {
  12096. name: "Galactic",
  12097. height: math.unit(1057000, "lightyears")
  12098. },
  12099. ]
  12100. ))
  12101. characterMakers.push(() => makeCharacter(
  12102. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12103. {
  12104. front: {
  12105. height: math.unit(6 + 10 / 12, "feet"),
  12106. weight: math.unit(150, "lb"),
  12107. name: "Front",
  12108. image: {
  12109. source: "./media/characters/dixon/front.svg",
  12110. extra: 3361 / 3209,
  12111. bottom: 0.01
  12112. }
  12113. },
  12114. },
  12115. [
  12116. {
  12117. name: "Normal",
  12118. height: math.unit(6 + 10 / 12, "feet"),
  12119. default: true
  12120. },
  12121. {
  12122. name: "Big",
  12123. height: math.unit(12, "meters")
  12124. },
  12125. {
  12126. name: "Macro",
  12127. height: math.unit(500, "meters")
  12128. },
  12129. {
  12130. name: "Megamacro",
  12131. height: math.unit(2, "km")
  12132. },
  12133. ]
  12134. ))
  12135. characterMakers.push(() => makeCharacter(
  12136. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12137. {
  12138. front: {
  12139. height: math.unit(185, "cm"),
  12140. weight: math.unit(68, "kg"),
  12141. name: "Front",
  12142. image: {
  12143. source: "./media/characters/kauko/front.svg",
  12144. extra: 1455 / 1421,
  12145. bottom: 0.03
  12146. }
  12147. },
  12148. back: {
  12149. height: math.unit(185, "cm"),
  12150. weight: math.unit(68, "kg"),
  12151. name: "Back",
  12152. image: {
  12153. source: "./media/characters/kauko/back.svg",
  12154. extra: 1455 / 1421,
  12155. bottom: 0.004
  12156. }
  12157. },
  12158. },
  12159. [
  12160. {
  12161. name: "Normal",
  12162. height: math.unit(185, "cm"),
  12163. default: true
  12164. },
  12165. ]
  12166. ))
  12167. characterMakers.push(() => makeCharacter(
  12168. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12169. {
  12170. front: {
  12171. height: math.unit(6, "feet"),
  12172. weight: math.unit(150, "kg"),
  12173. name: "Front",
  12174. image: {
  12175. source: "./media/characters/varg/front.svg",
  12176. extra: 1108 / 1018,
  12177. bottom: 0.0375
  12178. }
  12179. },
  12180. },
  12181. [
  12182. {
  12183. name: "Normal",
  12184. height: math.unit(5, "meters")
  12185. },
  12186. {
  12187. name: "Macro",
  12188. height: math.unit(200, "meters")
  12189. },
  12190. {
  12191. name: "Megamacro",
  12192. height: math.unit(20, "kilometers")
  12193. },
  12194. {
  12195. name: "True Size",
  12196. height: math.unit(211, "km"),
  12197. default: true
  12198. },
  12199. {
  12200. name: "Gigamacro",
  12201. height: math.unit(1000, "km")
  12202. },
  12203. {
  12204. name: "Gigamacro+",
  12205. height: math.unit(8000, "km")
  12206. },
  12207. {
  12208. name: "Teramacro",
  12209. height: math.unit(1000000, "km")
  12210. },
  12211. ]
  12212. ))
  12213. characterMakers.push(() => makeCharacter(
  12214. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12215. {
  12216. front: {
  12217. height: math.unit(7 + 7 / 12, "feet"),
  12218. weight: math.unit(267, "lb"),
  12219. name: "Front",
  12220. image: {
  12221. source: "./media/characters/dayza/front.svg",
  12222. extra: 1262 / 1200,
  12223. bottom: 0.035
  12224. }
  12225. },
  12226. side: {
  12227. height: math.unit(7 + 7 / 12, "feet"),
  12228. weight: math.unit(267, "lb"),
  12229. name: "Side",
  12230. image: {
  12231. source: "./media/characters/dayza/side.svg",
  12232. extra: 1295 / 1245,
  12233. bottom: 0.05
  12234. }
  12235. },
  12236. back: {
  12237. height: math.unit(7 + 7 / 12, "feet"),
  12238. weight: math.unit(267, "lb"),
  12239. name: "Back",
  12240. image: {
  12241. source: "./media/characters/dayza/back.svg",
  12242. extra: 1241 / 1170
  12243. }
  12244. },
  12245. },
  12246. [
  12247. {
  12248. name: "Normal",
  12249. height: math.unit(7 + 7 / 12, "feet"),
  12250. default: true
  12251. },
  12252. {
  12253. name: "Macro",
  12254. height: math.unit(155, "feet")
  12255. },
  12256. ]
  12257. ))
  12258. characterMakers.push(() => makeCharacter(
  12259. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12260. {
  12261. front: {
  12262. height: math.unit(6 + 5 / 12, "feet"),
  12263. weight: math.unit(160, "lb"),
  12264. name: "Front",
  12265. image: {
  12266. source: "./media/characters/xanthos/front.svg",
  12267. extra: 1,
  12268. bottom: 0.04
  12269. }
  12270. },
  12271. back: {
  12272. height: math.unit(6 + 5 / 12, "feet"),
  12273. weight: math.unit(160, "lb"),
  12274. name: "Back",
  12275. image: {
  12276. source: "./media/characters/xanthos/back.svg",
  12277. extra: 1,
  12278. bottom: 0.03
  12279. }
  12280. },
  12281. hand: {
  12282. height: math.unit(0.928, "feet"),
  12283. name: "Hand",
  12284. image: {
  12285. source: "./media/characters/xanthos/hand.svg"
  12286. }
  12287. },
  12288. foot: {
  12289. height: math.unit(1.286, "feet"),
  12290. name: "Foot",
  12291. image: {
  12292. source: "./media/characters/xanthos/foot.svg"
  12293. }
  12294. },
  12295. },
  12296. [
  12297. {
  12298. name: "Normal",
  12299. height: math.unit(6 + 5 / 12, "feet"),
  12300. default: true
  12301. },
  12302. {
  12303. name: "Normal+",
  12304. height: math.unit(6, "meters")
  12305. },
  12306. {
  12307. name: "Macro",
  12308. height: math.unit(40, "feet")
  12309. },
  12310. {
  12311. name: "Macro+",
  12312. height: math.unit(200, "meters")
  12313. },
  12314. {
  12315. name: "Megamacro",
  12316. height: math.unit(20, "km")
  12317. },
  12318. {
  12319. name: "Megamacro+",
  12320. height: math.unit(100, "km")
  12321. },
  12322. ]
  12323. ))
  12324. characterMakers.push(() => makeCharacter(
  12325. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12326. {
  12327. front: {
  12328. height: math.unit(6 + 3 / 12, "feet"),
  12329. weight: math.unit(215, "lb"),
  12330. name: "Front",
  12331. image: {
  12332. source: "./media/characters/grynn/front.svg",
  12333. extra: 4627 / 4209,
  12334. bottom: 0.047
  12335. }
  12336. },
  12337. },
  12338. [
  12339. {
  12340. name: "Micro",
  12341. height: math.unit(6, "inches")
  12342. },
  12343. {
  12344. name: "Normal",
  12345. height: math.unit(6 + 3 / 12, "feet"),
  12346. default: true
  12347. },
  12348. {
  12349. name: "Big",
  12350. height: math.unit(104, "feet")
  12351. },
  12352. {
  12353. name: "Macro",
  12354. height: math.unit(944, "feet")
  12355. },
  12356. {
  12357. name: "Macro+",
  12358. height: math.unit(9480, "feet")
  12359. },
  12360. {
  12361. name: "Megamacro",
  12362. height: math.unit(78752, "feet")
  12363. },
  12364. {
  12365. name: "Megamacro+",
  12366. height: math.unit(630128, "feet")
  12367. },
  12368. {
  12369. name: "Megamacro++",
  12370. height: math.unit(3150695, "feet")
  12371. },
  12372. ]
  12373. ))
  12374. characterMakers.push(() => makeCharacter(
  12375. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12376. {
  12377. front: {
  12378. height: math.unit(7 + 5 / 12, "feet"),
  12379. weight: math.unit(450, "lb"),
  12380. name: "Front",
  12381. image: {
  12382. source: "./media/characters/mocha-aura/front.svg",
  12383. extra: 1907 / 1817,
  12384. bottom: 0.04
  12385. }
  12386. },
  12387. back: {
  12388. height: math.unit(7 + 5 / 12, "feet"),
  12389. weight: math.unit(450, "lb"),
  12390. name: "Back",
  12391. image: {
  12392. source: "./media/characters/mocha-aura/back.svg",
  12393. extra: 1900 / 1825,
  12394. bottom: 0.045
  12395. }
  12396. },
  12397. },
  12398. [
  12399. {
  12400. name: "Nano",
  12401. height: math.unit(1, "nm")
  12402. },
  12403. {
  12404. name: "Megamicro",
  12405. height: math.unit(1, "mm")
  12406. },
  12407. {
  12408. name: "Micro",
  12409. height: math.unit(3, "inches")
  12410. },
  12411. {
  12412. name: "Normal",
  12413. height: math.unit(7 + 5 / 12, "feet"),
  12414. default: true
  12415. },
  12416. {
  12417. name: "Macro",
  12418. height: math.unit(30, "feet")
  12419. },
  12420. {
  12421. name: "Megamacro",
  12422. height: math.unit(3500, "feet")
  12423. },
  12424. {
  12425. name: "Teramacro",
  12426. height: math.unit(500000, "miles")
  12427. },
  12428. {
  12429. name: "Petamacro",
  12430. height: math.unit(50000000000000000, "parsecs")
  12431. },
  12432. ]
  12433. ))
  12434. characterMakers.push(() => makeCharacter(
  12435. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12436. {
  12437. front: {
  12438. height: math.unit(6, "feet"),
  12439. weight: math.unit(150, "lb"),
  12440. name: "Front",
  12441. image: {
  12442. source: "./media/characters/ilisha-devya/front.svg",
  12443. extra: 1,
  12444. bottom: 0.175
  12445. }
  12446. },
  12447. back: {
  12448. height: math.unit(6, "feet"),
  12449. weight: math.unit(150, "lb"),
  12450. name: "Back",
  12451. image: {
  12452. source: "./media/characters/ilisha-devya/back.svg",
  12453. extra: 1,
  12454. bottom: 0.015
  12455. }
  12456. },
  12457. },
  12458. [
  12459. {
  12460. name: "Macro",
  12461. height: math.unit(500, "feet"),
  12462. default: true
  12463. },
  12464. {
  12465. name: "Megamacro",
  12466. height: math.unit(10, "miles")
  12467. },
  12468. {
  12469. name: "Gigamacro",
  12470. height: math.unit(100000, "miles")
  12471. },
  12472. {
  12473. name: "Examacro",
  12474. height: math.unit(1e9, "lightyears")
  12475. },
  12476. {
  12477. name: "Omniversal",
  12478. height: math.unit(1e33, "lightyears")
  12479. },
  12480. {
  12481. name: "Beyond Infinite",
  12482. height: math.unit(1e100, "lightyears")
  12483. },
  12484. ]
  12485. ))
  12486. characterMakers.push(() => makeCharacter(
  12487. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12488. {
  12489. Side: {
  12490. height: math.unit(6, "feet"),
  12491. weight: math.unit(150, "lb"),
  12492. name: "Side",
  12493. image: {
  12494. source: "./media/characters/mira/side.svg",
  12495. extra: 900 / 799,
  12496. bottom: 0.02
  12497. }
  12498. },
  12499. },
  12500. [
  12501. {
  12502. name: "Human Size",
  12503. height: math.unit(6, "feet")
  12504. },
  12505. {
  12506. name: "Macro",
  12507. height: math.unit(100, "feet"),
  12508. default: true
  12509. },
  12510. {
  12511. name: "Megamacro",
  12512. height: math.unit(10, "miles")
  12513. },
  12514. {
  12515. name: "Gigamacro",
  12516. height: math.unit(25000, "miles")
  12517. },
  12518. {
  12519. name: "Teramacro",
  12520. height: math.unit(300, "AU")
  12521. },
  12522. {
  12523. name: "Full Size",
  12524. height: math.unit(4.5e10, "lightyears")
  12525. },
  12526. ]
  12527. ))
  12528. characterMakers.push(() => makeCharacter(
  12529. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12530. {
  12531. front: {
  12532. height: math.unit(6, "feet"),
  12533. weight: math.unit(150, "lb"),
  12534. name: "Front",
  12535. image: {
  12536. source: "./media/characters/holly/front.svg",
  12537. extra: 639 / 606
  12538. }
  12539. },
  12540. back: {
  12541. height: math.unit(6, "feet"),
  12542. weight: math.unit(150, "lb"),
  12543. name: "Back",
  12544. image: {
  12545. source: "./media/characters/holly/back.svg",
  12546. extra: 623 / 598
  12547. }
  12548. },
  12549. frontWorking: {
  12550. height: math.unit(6, "feet"),
  12551. weight: math.unit(150, "lb"),
  12552. name: "Front (Working)",
  12553. image: {
  12554. source: "./media/characters/holly/front-working.svg",
  12555. extra: 607 / 577,
  12556. bottom: 0.048
  12557. }
  12558. },
  12559. },
  12560. [
  12561. {
  12562. name: "Normal",
  12563. height: math.unit(12 + 3 / 12, "feet"),
  12564. default: true
  12565. },
  12566. ]
  12567. ))
  12568. characterMakers.push(() => makeCharacter(
  12569. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12570. {
  12571. front: {
  12572. height: math.unit(6, "feet"),
  12573. weight: math.unit(150, "lb"),
  12574. name: "Front",
  12575. image: {
  12576. source: "./media/characters/porter/front.svg",
  12577. extra: 1,
  12578. bottom: 0.01
  12579. }
  12580. },
  12581. frontRobes: {
  12582. height: math.unit(6, "feet"),
  12583. weight: math.unit(150, "lb"),
  12584. name: "Front (Robes)",
  12585. image: {
  12586. source: "./media/characters/porter/front-robes.svg",
  12587. extra: 1.01,
  12588. bottom: 0.01
  12589. }
  12590. },
  12591. },
  12592. [
  12593. {
  12594. name: "Normal",
  12595. height: math.unit(11 + 9 / 12, "feet"),
  12596. default: true
  12597. },
  12598. ]
  12599. ))
  12600. characterMakers.push(() => makeCharacter(
  12601. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12602. {
  12603. legendary: {
  12604. height: math.unit(6, "feet"),
  12605. weight: math.unit(150, "lb"),
  12606. name: "Legendary",
  12607. image: {
  12608. source: "./media/characters/lucy/legendary.svg",
  12609. extra: 1355 / 1100,
  12610. bottom: 0.045
  12611. }
  12612. },
  12613. },
  12614. [
  12615. {
  12616. name: "Legendary",
  12617. height: math.unit(86882 * 2, "miles"),
  12618. default: true
  12619. },
  12620. ]
  12621. ))
  12622. characterMakers.push(() => makeCharacter(
  12623. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12624. {
  12625. front: {
  12626. height: math.unit(6, "feet"),
  12627. weight: math.unit(150, "lb"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/drusilla/front.svg",
  12631. extra: 678 / 635,
  12632. bottom: 0.03
  12633. }
  12634. },
  12635. back: {
  12636. height: math.unit(6, "feet"),
  12637. weight: math.unit(150, "lb"),
  12638. name: "Back",
  12639. image: {
  12640. source: "./media/characters/drusilla/back.svg",
  12641. extra: 678 / 635,
  12642. bottom: 0.005
  12643. }
  12644. },
  12645. },
  12646. [
  12647. {
  12648. name: "Macro",
  12649. height: math.unit(100, "feet")
  12650. },
  12651. {
  12652. name: "Canon Height",
  12653. height: math.unit(2000, "feet"),
  12654. default: true
  12655. },
  12656. ]
  12657. ))
  12658. characterMakers.push(() => makeCharacter(
  12659. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12660. {
  12661. front: {
  12662. height: math.unit(6, "feet"),
  12663. weight: math.unit(180, "lb"),
  12664. name: "Front",
  12665. image: {
  12666. source: "./media/characters/renard-thatch/front.svg",
  12667. extra: 2411 / 2275,
  12668. bottom: 0.01
  12669. }
  12670. },
  12671. frontPosing: {
  12672. height: math.unit(6, "feet"),
  12673. weight: math.unit(180, "lb"),
  12674. name: "Front (Posing)",
  12675. image: {
  12676. source: "./media/characters/renard-thatch/front-posing.svg",
  12677. extra: 2381 / 2261,
  12678. bottom: 0.01
  12679. }
  12680. },
  12681. back: {
  12682. height: math.unit(6, "feet"),
  12683. weight: math.unit(180, "lb"),
  12684. name: "Back",
  12685. image: {
  12686. source: "./media/characters/renard-thatch/back.svg",
  12687. extra: 2428 / 2288
  12688. }
  12689. },
  12690. },
  12691. [
  12692. {
  12693. name: "Micro",
  12694. height: math.unit(3, "inches")
  12695. },
  12696. {
  12697. name: "Default",
  12698. height: math.unit(6, "feet"),
  12699. default: true
  12700. },
  12701. {
  12702. name: "Macro",
  12703. height: math.unit(75, "feet")
  12704. },
  12705. ]
  12706. ))
  12707. characterMakers.push(() => makeCharacter(
  12708. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12709. {
  12710. front: {
  12711. height: math.unit(1450, "feet"),
  12712. weight: math.unit(1.21e6, "tons"),
  12713. name: "Front",
  12714. image: {
  12715. source: "./media/characters/sekvra/front.svg",
  12716. extra: 1,
  12717. bottom: 0.03
  12718. }
  12719. },
  12720. frontClothed: {
  12721. height: math.unit(1450, "feet"),
  12722. weight: math.unit(1.21e6, "tons"),
  12723. name: "Front (Clothed)",
  12724. image: {
  12725. source: "./media/characters/sekvra/front-clothed.svg",
  12726. extra: 1,
  12727. bottom: 0.03
  12728. }
  12729. },
  12730. side: {
  12731. height: math.unit(1450, "feet"),
  12732. weight: math.unit(1.21e6, "tons"),
  12733. name: "Side",
  12734. image: {
  12735. source: "./media/characters/sekvra/side.svg",
  12736. extra: 1,
  12737. bottom: 0.025
  12738. }
  12739. },
  12740. back: {
  12741. height: math.unit(1450, "feet"),
  12742. weight: math.unit(1.21e6, "tons"),
  12743. name: "Back",
  12744. image: {
  12745. source: "./media/characters/sekvra/back.svg",
  12746. extra: 1,
  12747. bottom: 0.005
  12748. }
  12749. },
  12750. },
  12751. [
  12752. {
  12753. name: "Macro",
  12754. height: math.unit(1450, "feet"),
  12755. default: true
  12756. },
  12757. {
  12758. name: "Megamacro",
  12759. height: math.unit(15000, "feet")
  12760. },
  12761. ]
  12762. ))
  12763. characterMakers.push(() => makeCharacter(
  12764. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12765. {
  12766. front: {
  12767. height: math.unit(6, "feet"),
  12768. weight: math.unit(150, "lb"),
  12769. name: "Front",
  12770. image: {
  12771. source: "./media/characters/carmine/front.svg",
  12772. extra: 1,
  12773. bottom: 0.035
  12774. }
  12775. },
  12776. frontArmor: {
  12777. height: math.unit(6, "feet"),
  12778. weight: math.unit(150, "lb"),
  12779. name: "Front (Armor)",
  12780. image: {
  12781. source: "./media/characters/carmine/front-armor.svg",
  12782. extra: 1,
  12783. bottom: 0.035
  12784. }
  12785. },
  12786. },
  12787. [
  12788. {
  12789. name: "Large",
  12790. height: math.unit(1, "mile")
  12791. },
  12792. {
  12793. name: "Huge",
  12794. height: math.unit(40, "miles"),
  12795. default: true
  12796. },
  12797. {
  12798. name: "Colossal",
  12799. height: math.unit(2500, "miles")
  12800. },
  12801. ]
  12802. ))
  12803. characterMakers.push(() => makeCharacter(
  12804. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12805. {
  12806. front: {
  12807. height: math.unit(6, "feet"),
  12808. weight: math.unit(150, "lb"),
  12809. name: "Front",
  12810. image: {
  12811. source: "./media/characters/elyssia/front.svg",
  12812. extra: 2201 / 2035,
  12813. bottom: 0.05
  12814. }
  12815. },
  12816. frontClothed: {
  12817. height: math.unit(6, "feet"),
  12818. weight: math.unit(150, "lb"),
  12819. name: "Front (Clothed)",
  12820. image: {
  12821. source: "./media/characters/elyssia/front-clothed.svg",
  12822. extra: 2201 / 2035,
  12823. bottom: 0.05
  12824. }
  12825. },
  12826. back: {
  12827. height: math.unit(6, "feet"),
  12828. weight: math.unit(150, "lb"),
  12829. name: "Back",
  12830. image: {
  12831. source: "./media/characters/elyssia/back.svg",
  12832. extra: 2201 / 2035,
  12833. bottom: 0.013
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Smaller",
  12840. height: math.unit(150, "feet")
  12841. },
  12842. {
  12843. name: "Standard",
  12844. height: math.unit(1400, "feet"),
  12845. default: true
  12846. },
  12847. {
  12848. name: "Distracted",
  12849. height: math.unit(15000, "feet")
  12850. },
  12851. ]
  12852. ))
  12853. characterMakers.push(() => makeCharacter(
  12854. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12855. {
  12856. front: {
  12857. height: math.unit(7 + 4 / 12, "feet"),
  12858. weight: math.unit(500, "lb"),
  12859. name: "Front",
  12860. image: {
  12861. source: "./media/characters/geno-maxwell/front.svg",
  12862. extra: 2207 / 2040,
  12863. bottom: 0.015
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Micro",
  12870. height: math.unit(3, "inches")
  12871. },
  12872. {
  12873. name: "Normal",
  12874. height: math.unit(7 + 4 / 12, "feet"),
  12875. default: true
  12876. },
  12877. {
  12878. name: "Macro",
  12879. height: math.unit(220, "feet")
  12880. },
  12881. {
  12882. name: "Megamacro",
  12883. height: math.unit(11, "miles")
  12884. },
  12885. ]
  12886. ))
  12887. characterMakers.push(() => makeCharacter(
  12888. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12889. {
  12890. front: {
  12891. height: math.unit(7 + 4 / 12, "feet"),
  12892. weight: math.unit(500, "lb"),
  12893. name: "Front",
  12894. image: {
  12895. source: "./media/characters/regena-maxwell/front.svg",
  12896. extra: 3115 / 2770,
  12897. bottom: 0.02
  12898. }
  12899. },
  12900. },
  12901. [
  12902. {
  12903. name: "Normal",
  12904. height: math.unit(7 + 4 / 12, "feet"),
  12905. default: true
  12906. },
  12907. {
  12908. name: "Macro",
  12909. height: math.unit(220, "feet")
  12910. },
  12911. {
  12912. name: "Megamacro",
  12913. height: math.unit(11, "miles")
  12914. },
  12915. ]
  12916. ))
  12917. characterMakers.push(() => makeCharacter(
  12918. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12919. {
  12920. front: {
  12921. height: math.unit(6, "feet"),
  12922. weight: math.unit(150, "lb"),
  12923. name: "Front",
  12924. image: {
  12925. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12926. extra: 860 / 690,
  12927. bottom: 0.03
  12928. }
  12929. },
  12930. },
  12931. [
  12932. {
  12933. name: "Normal",
  12934. height: math.unit(1.7, "meters"),
  12935. default: true
  12936. },
  12937. ]
  12938. ))
  12939. characterMakers.push(() => makeCharacter(
  12940. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12941. {
  12942. front: {
  12943. height: math.unit(6, "feet"),
  12944. weight: math.unit(150, "lb"),
  12945. name: "Front",
  12946. image: {
  12947. source: "./media/characters/quilly/front.svg",
  12948. extra: 890 / 776
  12949. }
  12950. },
  12951. },
  12952. [
  12953. {
  12954. name: "Gigamacro",
  12955. height: math.unit(404090, "miles"),
  12956. default: true
  12957. },
  12958. ]
  12959. ))
  12960. characterMakers.push(() => makeCharacter(
  12961. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12962. {
  12963. front: {
  12964. height: math.unit(7 + 8 / 12, "feet"),
  12965. weight: math.unit(350, "lb"),
  12966. name: "Front",
  12967. image: {
  12968. source: "./media/characters/tempest/front.svg",
  12969. extra: 1175 / 1086,
  12970. bottom: 0.02
  12971. }
  12972. },
  12973. },
  12974. [
  12975. {
  12976. name: "Normal",
  12977. height: math.unit(7 + 8 / 12, "feet"),
  12978. default: true
  12979. },
  12980. ]
  12981. ))
  12982. characterMakers.push(() => makeCharacter(
  12983. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12984. {
  12985. side: {
  12986. height: math.unit(4 + 5 / 12, "feet"),
  12987. weight: math.unit(80, "lb"),
  12988. name: "Side",
  12989. image: {
  12990. source: "./media/characters/rodger/side.svg",
  12991. extra: 1235 / 1118
  12992. }
  12993. },
  12994. },
  12995. [
  12996. {
  12997. name: "Micro",
  12998. height: math.unit(1, "inch")
  12999. },
  13000. {
  13001. name: "Normal",
  13002. height: math.unit(4 + 5 / 12, "feet"),
  13003. default: true
  13004. },
  13005. {
  13006. name: "Macro",
  13007. height: math.unit(120, "feet")
  13008. },
  13009. ]
  13010. ))
  13011. characterMakers.push(() => makeCharacter(
  13012. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13013. {
  13014. front: {
  13015. height: math.unit(6, "feet"),
  13016. weight: math.unit(150, "lb"),
  13017. name: "Front",
  13018. image: {
  13019. source: "./media/characters/danyel/front.svg",
  13020. extra: 1185 / 1123,
  13021. bottom: 0.05
  13022. }
  13023. },
  13024. },
  13025. [
  13026. {
  13027. name: "Shrunken",
  13028. height: math.unit(0.5, "mm")
  13029. },
  13030. {
  13031. name: "Micro",
  13032. height: math.unit(1, "mm"),
  13033. default: true
  13034. },
  13035. {
  13036. name: "Upsized",
  13037. height: math.unit(5 + 5 / 12, "feet")
  13038. },
  13039. ]
  13040. ))
  13041. characterMakers.push(() => makeCharacter(
  13042. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13043. {
  13044. front: {
  13045. height: math.unit(5 + 6 / 12, "feet"),
  13046. weight: math.unit(200, "lb"),
  13047. name: "Front",
  13048. image: {
  13049. source: "./media/characters/vivian-bijoux/front.svg",
  13050. extra: 1,
  13051. bottom: 0.072
  13052. }
  13053. },
  13054. },
  13055. [
  13056. {
  13057. name: "Normal",
  13058. height: math.unit(5 + 6 / 12, "feet"),
  13059. default: true
  13060. },
  13061. {
  13062. name: "Bad Dream",
  13063. height: math.unit(500, "feet")
  13064. },
  13065. {
  13066. name: "Nightmare",
  13067. height: math.unit(500, "miles")
  13068. },
  13069. ]
  13070. ))
  13071. characterMakers.push(() => makeCharacter(
  13072. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13073. {
  13074. front: {
  13075. height: math.unit(6 + 1 / 12, "feet"),
  13076. weight: math.unit(260, "lb"),
  13077. name: "Front",
  13078. image: {
  13079. source: "./media/characters/zeta/front.svg",
  13080. extra: 1968 / 1889,
  13081. bottom: 0.06
  13082. }
  13083. },
  13084. back: {
  13085. height: math.unit(6 + 1 / 12, "feet"),
  13086. weight: math.unit(260, "lb"),
  13087. name: "Back",
  13088. image: {
  13089. source: "./media/characters/zeta/back.svg",
  13090. extra: 1944 / 1858,
  13091. bottom: 0.03
  13092. }
  13093. },
  13094. hand: {
  13095. height: math.unit(1.112, "feet"),
  13096. name: "Hand",
  13097. image: {
  13098. source: "./media/characters/zeta/hand.svg"
  13099. }
  13100. },
  13101. foot: {
  13102. height: math.unit(1.48, "feet"),
  13103. name: "Foot",
  13104. image: {
  13105. source: "./media/characters/zeta/foot.svg"
  13106. }
  13107. },
  13108. },
  13109. [
  13110. {
  13111. name: "Micro",
  13112. height: math.unit(6, "inches")
  13113. },
  13114. {
  13115. name: "Normal",
  13116. height: math.unit(6 + 1 / 12, "feet"),
  13117. default: true
  13118. },
  13119. {
  13120. name: "Macro",
  13121. height: math.unit(20, "feet")
  13122. },
  13123. ]
  13124. ))
  13125. characterMakers.push(() => makeCharacter(
  13126. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13127. {
  13128. front: {
  13129. height: math.unit(6, "feet"),
  13130. weight: math.unit(150, "lb"),
  13131. name: "Front",
  13132. image: {
  13133. source: "./media/characters/jamie-larsen/front.svg",
  13134. extra: 962 / 933,
  13135. bottom: 0.02
  13136. }
  13137. },
  13138. back: {
  13139. height: math.unit(6, "feet"),
  13140. weight: math.unit(150, "lb"),
  13141. name: "Back",
  13142. image: {
  13143. source: "./media/characters/jamie-larsen/back.svg",
  13144. extra: 997 / 946
  13145. }
  13146. },
  13147. },
  13148. [
  13149. {
  13150. name: "Macro",
  13151. height: math.unit(28 + 7 / 12, "feet"),
  13152. default: true
  13153. },
  13154. {
  13155. name: "Macro+",
  13156. height: math.unit(180, "feet")
  13157. },
  13158. {
  13159. name: "Megamacro",
  13160. height: math.unit(10, "miles")
  13161. },
  13162. {
  13163. name: "Gigamacro",
  13164. height: math.unit(200000, "miles")
  13165. },
  13166. ]
  13167. ))
  13168. characterMakers.push(() => makeCharacter(
  13169. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13170. {
  13171. front: {
  13172. height: math.unit(6, "feet"),
  13173. weight: math.unit(120, "lb"),
  13174. name: "Front",
  13175. image: {
  13176. source: "./media/characters/vance/front.svg",
  13177. extra: 1980 / 1890,
  13178. bottom: 0.09
  13179. }
  13180. },
  13181. back: {
  13182. height: math.unit(6, "feet"),
  13183. weight: math.unit(120, "lb"),
  13184. name: "Back",
  13185. image: {
  13186. source: "./media/characters/vance/back.svg",
  13187. extra: 2081 / 1994,
  13188. bottom: 0.014
  13189. }
  13190. },
  13191. hand: {
  13192. height: math.unit(0.88, "feet"),
  13193. name: "Hand",
  13194. image: {
  13195. source: "./media/characters/vance/hand.svg"
  13196. }
  13197. },
  13198. foot: {
  13199. height: math.unit(0.64, "feet"),
  13200. name: "Foot",
  13201. image: {
  13202. source: "./media/characters/vance/foot.svg"
  13203. }
  13204. },
  13205. },
  13206. [
  13207. {
  13208. name: "Small",
  13209. height: math.unit(90, "feet"),
  13210. default: true
  13211. },
  13212. {
  13213. name: "Macro",
  13214. height: math.unit(100, "meters")
  13215. },
  13216. {
  13217. name: "Megamacro",
  13218. height: math.unit(15, "miles")
  13219. },
  13220. ]
  13221. ))
  13222. characterMakers.push(() => makeCharacter(
  13223. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13224. {
  13225. front: {
  13226. height: math.unit(6, "feet"),
  13227. weight: math.unit(180, "lb"),
  13228. name: "Front",
  13229. image: {
  13230. source: "./media/characters/xochitl/front.svg",
  13231. extra: 2297 / 2261,
  13232. bottom: 0.065
  13233. }
  13234. },
  13235. back: {
  13236. height: math.unit(6, "feet"),
  13237. weight: math.unit(180, "lb"),
  13238. name: "Back",
  13239. image: {
  13240. source: "./media/characters/xochitl/back.svg",
  13241. extra: 2386 / 2354,
  13242. bottom: 0.01
  13243. }
  13244. },
  13245. foot: {
  13246. height: math.unit(6 / 5 * 1.15, "feet"),
  13247. weight: math.unit(150, "lb"),
  13248. name: "Foot",
  13249. image: {
  13250. source: "./media/characters/xochitl/foot.svg"
  13251. }
  13252. },
  13253. },
  13254. [
  13255. {
  13256. name: "Macro",
  13257. height: math.unit(80, "feet")
  13258. },
  13259. {
  13260. name: "Macro+",
  13261. height: math.unit(400, "feet"),
  13262. default: true
  13263. },
  13264. {
  13265. name: "Gigamacro",
  13266. height: math.unit(80000, "miles")
  13267. },
  13268. {
  13269. name: "Gigamacro+",
  13270. height: math.unit(400000, "miles")
  13271. },
  13272. {
  13273. name: "Teramacro",
  13274. height: math.unit(300, "AU")
  13275. },
  13276. ]
  13277. ))
  13278. characterMakers.push(() => makeCharacter(
  13279. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13280. {
  13281. front: {
  13282. height: math.unit(6, "feet"),
  13283. weight: math.unit(150, "lb"),
  13284. name: "Front",
  13285. image: {
  13286. source: "./media/characters/vincent/front.svg",
  13287. extra: 1130 / 1080,
  13288. bottom: 0.055
  13289. }
  13290. },
  13291. beak: {
  13292. height: math.unit(6 * 0.1, "feet"),
  13293. name: "Beak",
  13294. image: {
  13295. source: "./media/characters/vincent/beak.svg"
  13296. }
  13297. },
  13298. hand: {
  13299. height: math.unit(6 * 0.85, "feet"),
  13300. weight: math.unit(150, "lb"),
  13301. name: "Hand",
  13302. image: {
  13303. source: "./media/characters/vincent/hand.svg"
  13304. }
  13305. },
  13306. foot: {
  13307. height: math.unit(6 * 0.19, "feet"),
  13308. weight: math.unit(150, "lb"),
  13309. name: "Foot",
  13310. image: {
  13311. source: "./media/characters/vincent/foot.svg"
  13312. }
  13313. },
  13314. },
  13315. [
  13316. {
  13317. name: "Base",
  13318. height: math.unit(6 + 5 / 12, "feet"),
  13319. default: true
  13320. },
  13321. {
  13322. name: "Macro",
  13323. height: math.unit(300, "feet")
  13324. },
  13325. {
  13326. name: "Megamacro",
  13327. height: math.unit(2, "miles")
  13328. },
  13329. {
  13330. name: "Gigamacro",
  13331. height: math.unit(1000, "miles")
  13332. },
  13333. ]
  13334. ))
  13335. characterMakers.push(() => makeCharacter(
  13336. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13337. {
  13338. front: {
  13339. height: math.unit(6 + 2 / 12, "feet"),
  13340. weight: math.unit(265, "lb"),
  13341. name: "Front",
  13342. image: {
  13343. source: "./media/characters/jay/front.svg",
  13344. extra: 1510 / 1430,
  13345. bottom: 0.042
  13346. }
  13347. },
  13348. back: {
  13349. height: math.unit(6 + 2 / 12, "feet"),
  13350. weight: math.unit(265, "lb"),
  13351. name: "Back",
  13352. image: {
  13353. source: "./media/characters/jay/back.svg",
  13354. extra: 1510 / 1430,
  13355. bottom: 0.025
  13356. }
  13357. },
  13358. clothed: {
  13359. height: math.unit(6 + 2 / 12, "feet"),
  13360. weight: math.unit(265, "lb"),
  13361. name: "Front (Clothed)",
  13362. image: {
  13363. source: "./media/characters/jay/clothed.svg",
  13364. extra: 744 / 699,
  13365. bottom: 0.043
  13366. }
  13367. },
  13368. head: {
  13369. height: math.unit(1.772, "feet"),
  13370. name: "Head",
  13371. image: {
  13372. source: "./media/characters/jay/head.svg"
  13373. }
  13374. },
  13375. sizeRay: {
  13376. height: math.unit(1.331, "feet"),
  13377. name: "Size Ray",
  13378. image: {
  13379. source: "./media/characters/jay/size-ray.svg"
  13380. }
  13381. },
  13382. },
  13383. [
  13384. {
  13385. name: "Micro",
  13386. height: math.unit(1, "inch")
  13387. },
  13388. {
  13389. name: "Normal",
  13390. height: math.unit(6 + 2 / 12, "feet"),
  13391. default: true
  13392. },
  13393. {
  13394. name: "Macro",
  13395. height: math.unit(1, "mile")
  13396. },
  13397. {
  13398. name: "Megamacro",
  13399. height: math.unit(100, "miles")
  13400. },
  13401. ]
  13402. ))
  13403. characterMakers.push(() => makeCharacter(
  13404. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13405. {
  13406. front: {
  13407. height: math.unit(2, "meters"),
  13408. weight: math.unit(500, "kg"),
  13409. name: "Front",
  13410. image: {
  13411. source: "./media/characters/coatl/front.svg",
  13412. extra: 3948 / 3500,
  13413. bottom: 0.082
  13414. }
  13415. },
  13416. },
  13417. [
  13418. {
  13419. name: "Normal",
  13420. height: math.unit(4, "meters")
  13421. },
  13422. {
  13423. name: "Macro",
  13424. height: math.unit(100, "meters"),
  13425. default: true
  13426. },
  13427. {
  13428. name: "Macro+",
  13429. height: math.unit(300, "meters")
  13430. },
  13431. {
  13432. name: "Megamacro",
  13433. height: math.unit(3, "gigameters")
  13434. },
  13435. {
  13436. name: "Megamacro+",
  13437. height: math.unit(300, "terameters")
  13438. },
  13439. {
  13440. name: "Megamacro++",
  13441. height: math.unit(3, "lightyears")
  13442. },
  13443. ]
  13444. ))
  13445. characterMakers.push(() => makeCharacter(
  13446. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13447. {
  13448. front: {
  13449. height: math.unit(6, "feet"),
  13450. weight: math.unit(50, "kg"),
  13451. name: "front",
  13452. image: {
  13453. source: "./media/characters/shiroryu/front.svg",
  13454. extra: 1990 / 1935
  13455. }
  13456. },
  13457. },
  13458. [
  13459. {
  13460. name: "Mortal Mingling",
  13461. height: math.unit(3, "meters")
  13462. },
  13463. {
  13464. name: "Kaiju-ish",
  13465. height: math.unit(250, "meters")
  13466. },
  13467. {
  13468. name: "Somewhat Godly",
  13469. height: math.unit(400, "km"),
  13470. default: true
  13471. },
  13472. {
  13473. name: "Planetary",
  13474. height: math.unit(300, "megameters")
  13475. },
  13476. {
  13477. name: "Galaxy-dwarfing",
  13478. height: math.unit(450, "kiloparsecs")
  13479. },
  13480. {
  13481. name: "Universe Eater",
  13482. height: math.unit(150, "gigaparsecs")
  13483. },
  13484. {
  13485. name: "Almost Immeasurable",
  13486. height: math.unit(1.3e266, "yottaparsecs")
  13487. },
  13488. ]
  13489. ))
  13490. characterMakers.push(() => makeCharacter(
  13491. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13492. {
  13493. front: {
  13494. height: math.unit(6, "feet"),
  13495. weight: math.unit(150, "lb"),
  13496. name: "Front",
  13497. image: {
  13498. source: "./media/characters/umeko/front.svg",
  13499. extra: 1,
  13500. bottom: 0.019
  13501. }
  13502. },
  13503. frontArmored: {
  13504. height: math.unit(6, "feet"),
  13505. weight: math.unit(150, "lb"),
  13506. name: "Front (Armored)",
  13507. image: {
  13508. source: "./media/characters/umeko/front-armored.svg",
  13509. extra: 1,
  13510. bottom: 0.021
  13511. }
  13512. },
  13513. },
  13514. [
  13515. {
  13516. name: "Macro",
  13517. height: math.unit(220, "feet"),
  13518. default: true
  13519. },
  13520. {
  13521. name: "Guardian Dragon",
  13522. height: math.unit(50, "miles")
  13523. },
  13524. {
  13525. name: "Cosmic",
  13526. height: math.unit(800000, "miles")
  13527. },
  13528. ]
  13529. ))
  13530. characterMakers.push(() => makeCharacter(
  13531. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13532. {
  13533. front: {
  13534. height: math.unit(6, "feet"),
  13535. weight: math.unit(150, "lb"),
  13536. name: "Front",
  13537. image: {
  13538. source: "./media/characters/cassidy/front.svg",
  13539. extra: 1,
  13540. bottom: 0.043
  13541. }
  13542. },
  13543. },
  13544. [
  13545. {
  13546. name: "Canon Height",
  13547. height: math.unit(120, "feet"),
  13548. default: true
  13549. },
  13550. {
  13551. name: "Macro+",
  13552. height: math.unit(400, "feet")
  13553. },
  13554. {
  13555. name: "Macro++",
  13556. height: math.unit(4000, "feet")
  13557. },
  13558. {
  13559. name: "Megamacro",
  13560. height: math.unit(3, "miles")
  13561. },
  13562. ]
  13563. ))
  13564. characterMakers.push(() => makeCharacter(
  13565. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13566. {
  13567. front: {
  13568. height: math.unit(6, "feet"),
  13569. weight: math.unit(150, "lb"),
  13570. name: "Front",
  13571. image: {
  13572. source: "./media/characters/isaac/front.svg",
  13573. extra: 896 / 815,
  13574. bottom: 0.11
  13575. }
  13576. },
  13577. },
  13578. [
  13579. {
  13580. name: "Human Size",
  13581. height: math.unit(8, "feet"),
  13582. default: true
  13583. },
  13584. {
  13585. name: "Macro",
  13586. height: math.unit(400, "feet")
  13587. },
  13588. {
  13589. name: "Megamacro",
  13590. height: math.unit(50, "miles")
  13591. },
  13592. {
  13593. name: "Canon Height",
  13594. height: math.unit(200, "AU")
  13595. },
  13596. ]
  13597. ))
  13598. characterMakers.push(() => makeCharacter(
  13599. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13600. {
  13601. front: {
  13602. height: math.unit(6, "feet"),
  13603. weight: math.unit(72, "kg"),
  13604. name: "Front",
  13605. image: {
  13606. source: "./media/characters/sleekit/front.svg",
  13607. extra: 4693 / 4487,
  13608. bottom: 0.012
  13609. }
  13610. },
  13611. },
  13612. [
  13613. {
  13614. name: "Minimum Height",
  13615. height: math.unit(10, "meters")
  13616. },
  13617. {
  13618. name: "Smaller",
  13619. height: math.unit(25, "meters")
  13620. },
  13621. {
  13622. name: "Larger",
  13623. height: math.unit(38, "meters"),
  13624. default: true
  13625. },
  13626. {
  13627. name: "Maximum height",
  13628. height: math.unit(100, "meters")
  13629. },
  13630. ]
  13631. ))
  13632. characterMakers.push(() => makeCharacter(
  13633. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13634. {
  13635. front: {
  13636. height: math.unit(6, "feet"),
  13637. weight: math.unit(150, "lb"),
  13638. name: "Front",
  13639. image: {
  13640. source: "./media/characters/nillia/front.svg",
  13641. extra: 2195 / 2037,
  13642. bottom: 0.005
  13643. }
  13644. },
  13645. back: {
  13646. height: math.unit(6, "feet"),
  13647. weight: math.unit(150, "lb"),
  13648. name: "Back",
  13649. image: {
  13650. source: "./media/characters/nillia/back.svg",
  13651. extra: 2195 / 2037,
  13652. bottom: 0.005
  13653. }
  13654. },
  13655. },
  13656. [
  13657. {
  13658. name: "Canon Height",
  13659. height: math.unit(489, "feet"),
  13660. default: true
  13661. }
  13662. ]
  13663. ))
  13664. characterMakers.push(() => makeCharacter(
  13665. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13666. {
  13667. front: {
  13668. height: math.unit(6, "feet"),
  13669. weight: math.unit(150, "lb"),
  13670. name: "Front",
  13671. image: {
  13672. source: "./media/characters/mesmyriza/front.svg",
  13673. extra: 2067 / 1784,
  13674. bottom: 0.035
  13675. }
  13676. },
  13677. foot: {
  13678. height: math.unit(6 / (250 / 35), "feet"),
  13679. name: "Foot",
  13680. image: {
  13681. source: "./media/characters/mesmyriza/foot.svg"
  13682. }
  13683. },
  13684. },
  13685. [
  13686. {
  13687. name: "Macro",
  13688. height: math.unit(457, "meters"),
  13689. default: true
  13690. },
  13691. {
  13692. name: "Megamacro",
  13693. height: math.unit(8, "megameters")
  13694. },
  13695. ]
  13696. ))
  13697. characterMakers.push(() => makeCharacter(
  13698. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13699. {
  13700. front: {
  13701. height: math.unit(6, "feet"),
  13702. weight: math.unit(250, "lb"),
  13703. name: "Front",
  13704. image: {
  13705. source: "./media/characters/saudade/front.svg",
  13706. extra: 1172 / 1139,
  13707. bottom: 0.035
  13708. }
  13709. },
  13710. },
  13711. [
  13712. {
  13713. name: "Micro",
  13714. height: math.unit(3, "inches")
  13715. },
  13716. {
  13717. name: "Normal",
  13718. height: math.unit(6, "feet"),
  13719. default: true
  13720. },
  13721. {
  13722. name: "Macro",
  13723. height: math.unit(50, "feet")
  13724. },
  13725. {
  13726. name: "Megamacro",
  13727. height: math.unit(2800, "feet")
  13728. },
  13729. ]
  13730. ))
  13731. characterMakers.push(() => makeCharacter(
  13732. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13733. {
  13734. front: {
  13735. height: math.unit(5 + 4 / 12, "feet"),
  13736. weight: math.unit(100, "lb"),
  13737. name: "Front",
  13738. image: {
  13739. source: "./media/characters/keireer/front.svg",
  13740. extra: 716 / 666,
  13741. bottom: 0.05
  13742. }
  13743. },
  13744. },
  13745. [
  13746. {
  13747. name: "Normal",
  13748. height: math.unit(5 + 4 / 12, "feet"),
  13749. default: true
  13750. },
  13751. ]
  13752. ))
  13753. characterMakers.push(() => makeCharacter(
  13754. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13755. {
  13756. front: {
  13757. height: math.unit(6, "feet"),
  13758. weight: math.unit(90, "kg"),
  13759. name: "Front",
  13760. image: {
  13761. source: "./media/characters/mirja/front.svg",
  13762. extra: 1789 / 1683,
  13763. bottom: 0.05
  13764. }
  13765. },
  13766. frontDressed: {
  13767. height: math.unit(6, "feet"),
  13768. weight: math.unit(90, "lb"),
  13769. name: "Front (Dressed)",
  13770. image: {
  13771. source: "./media/characters/mirja/front-dressed.svg",
  13772. extra: 1789 / 1683,
  13773. bottom: 0.05
  13774. }
  13775. },
  13776. back: {
  13777. height: math.unit(6, "feet"),
  13778. weight: math.unit(90, "lb"),
  13779. name: "Back",
  13780. image: {
  13781. source: "./media/characters/mirja/back.svg",
  13782. extra: 953 / 917,
  13783. bottom: 0.017
  13784. }
  13785. },
  13786. },
  13787. [
  13788. {
  13789. name: "\"Incognito\"",
  13790. height: math.unit(3, "meters")
  13791. },
  13792. {
  13793. name: "Strolling Size",
  13794. height: math.unit(15, "km")
  13795. },
  13796. {
  13797. name: "Larger Strolling Size",
  13798. height: math.unit(400, "km")
  13799. },
  13800. {
  13801. name: "Preferred Size",
  13802. height: math.unit(5000, "km")
  13803. },
  13804. {
  13805. name: "True Size",
  13806. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13807. default: true
  13808. },
  13809. ]
  13810. ))
  13811. characterMakers.push(() => makeCharacter(
  13812. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13813. {
  13814. front: {
  13815. height: math.unit(15, "feet"),
  13816. weight: math.unit(880, "kg"),
  13817. name: "Front",
  13818. image: {
  13819. source: "./media/characters/nightraver/front.svg",
  13820. extra: 2444 / 2160,
  13821. bottom: 0.027
  13822. }
  13823. },
  13824. back: {
  13825. height: math.unit(15, "feet"),
  13826. weight: math.unit(880, "kg"),
  13827. name: "Back",
  13828. image: {
  13829. source: "./media/characters/nightraver/back.svg",
  13830. extra: 2309 / 2180,
  13831. bottom: 0.005
  13832. }
  13833. },
  13834. sole: {
  13835. height: math.unit(2.878, "feet"),
  13836. name: "Sole",
  13837. image: {
  13838. source: "./media/characters/nightraver/sole.svg"
  13839. }
  13840. },
  13841. foot: {
  13842. height: math.unit(2.285, "feet"),
  13843. name: "Foot",
  13844. image: {
  13845. source: "./media/characters/nightraver/foot.svg"
  13846. }
  13847. },
  13848. maw: {
  13849. height: math.unit(2.67, "feet"),
  13850. name: "Maw",
  13851. image: {
  13852. source: "./media/characters/nightraver/maw.svg"
  13853. }
  13854. },
  13855. },
  13856. [
  13857. {
  13858. name: "Micro",
  13859. height: math.unit(1, "cm")
  13860. },
  13861. {
  13862. name: "Normal",
  13863. height: math.unit(15, "feet"),
  13864. default: true
  13865. },
  13866. {
  13867. name: "Macro",
  13868. height: math.unit(300, "feet")
  13869. },
  13870. {
  13871. name: "Megamacro",
  13872. height: math.unit(300, "miles")
  13873. },
  13874. {
  13875. name: "Gigamacro",
  13876. height: math.unit(10000, "miles")
  13877. },
  13878. ]
  13879. ))
  13880. characterMakers.push(() => makeCharacter(
  13881. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13882. {
  13883. side: {
  13884. height: math.unit(2, "inches"),
  13885. weight: math.unit(5, "grams"),
  13886. name: "Side",
  13887. image: {
  13888. source: "./media/characters/arc/side.svg"
  13889. }
  13890. },
  13891. },
  13892. [
  13893. {
  13894. name: "Micro",
  13895. height: math.unit(2, "inches"),
  13896. default: true
  13897. },
  13898. ]
  13899. ))
  13900. characterMakers.push(() => makeCharacter(
  13901. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13902. {
  13903. front: {
  13904. height: math.unit(1.1938, "meters"),
  13905. weight: math.unit(54, "kg"),
  13906. name: "Front",
  13907. image: {
  13908. source: "./media/characters/nebula-shahar/front.svg",
  13909. extra: 1642 / 1436,
  13910. bottom: 0.06
  13911. }
  13912. },
  13913. },
  13914. [
  13915. {
  13916. name: "Megamicro",
  13917. height: math.unit(0.3, "mm")
  13918. },
  13919. {
  13920. name: "Micro",
  13921. height: math.unit(3, "cm")
  13922. },
  13923. {
  13924. name: "Normal",
  13925. height: math.unit(138, "cm"),
  13926. default: true
  13927. },
  13928. {
  13929. name: "Macro",
  13930. height: math.unit(30, "m")
  13931. },
  13932. ]
  13933. ))
  13934. characterMakers.push(() => makeCharacter(
  13935. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13936. {
  13937. front: {
  13938. height: math.unit(5.24, "feet"),
  13939. weight: math.unit(150, "lb"),
  13940. name: "Front",
  13941. image: {
  13942. source: "./media/characters/shayla/front.svg",
  13943. extra: 1512 / 1414,
  13944. bottom: 0.01
  13945. }
  13946. },
  13947. back: {
  13948. height: math.unit(5.24, "feet"),
  13949. weight: math.unit(150, "lb"),
  13950. name: "Back",
  13951. image: {
  13952. source: "./media/characters/shayla/back.svg",
  13953. extra: 1512 / 1414
  13954. }
  13955. },
  13956. hand: {
  13957. height: math.unit(0.7781496062992126, "feet"),
  13958. name: "Hand",
  13959. image: {
  13960. source: "./media/characters/shayla/hand.svg"
  13961. }
  13962. },
  13963. foot: {
  13964. height: math.unit(1.4206036745406823, "feet"),
  13965. name: "Foot",
  13966. image: {
  13967. source: "./media/characters/shayla/foot.svg"
  13968. }
  13969. },
  13970. },
  13971. [
  13972. {
  13973. name: "Micro",
  13974. height: math.unit(0.32, "feet")
  13975. },
  13976. {
  13977. name: "Normal",
  13978. height: math.unit(5.24, "feet"),
  13979. default: true
  13980. },
  13981. {
  13982. name: "Macro",
  13983. height: math.unit(492.12, "feet")
  13984. },
  13985. {
  13986. name: "Megamacro",
  13987. height: math.unit(186.41, "miles")
  13988. },
  13989. ]
  13990. ))
  13991. characterMakers.push(() => makeCharacter(
  13992. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13993. {
  13994. front: {
  13995. height: math.unit(2.2, "m"),
  13996. weight: math.unit(120, "kg"),
  13997. name: "Front",
  13998. image: {
  13999. source: "./media/characters/pia-jr/front.svg",
  14000. extra: 1000 / 970,
  14001. bottom: 0.035
  14002. }
  14003. },
  14004. hand: {
  14005. height: math.unit(0.759 * 7.21 / 6, "feet"),
  14006. name: "Hand",
  14007. image: {
  14008. source: "./media/characters/pia-jr/hand.svg"
  14009. }
  14010. },
  14011. paw: {
  14012. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14013. name: "Paw",
  14014. image: {
  14015. source: "./media/characters/pia-jr/paw.svg"
  14016. }
  14017. },
  14018. },
  14019. [
  14020. {
  14021. name: "Micro",
  14022. height: math.unit(1.2, "cm")
  14023. },
  14024. {
  14025. name: "Normal",
  14026. height: math.unit(2.2, "m"),
  14027. default: true
  14028. },
  14029. {
  14030. name: "Macro",
  14031. height: math.unit(180, "m")
  14032. },
  14033. {
  14034. name: "Megamacro",
  14035. height: math.unit(420, "km")
  14036. },
  14037. ]
  14038. ))
  14039. characterMakers.push(() => makeCharacter(
  14040. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14041. {
  14042. front: {
  14043. height: math.unit(2, "m"),
  14044. weight: math.unit(115, "kg"),
  14045. name: "Front",
  14046. image: {
  14047. source: "./media/characters/pia-sr/front.svg",
  14048. extra: 760 / 730,
  14049. bottom: 0.015
  14050. }
  14051. },
  14052. back: {
  14053. height: math.unit(2, "m"),
  14054. weight: math.unit(115, "kg"),
  14055. name: "Back",
  14056. image: {
  14057. source: "./media/characters/pia-sr/back.svg",
  14058. extra: 760 / 730,
  14059. bottom: 0.01
  14060. }
  14061. },
  14062. hand: {
  14063. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14064. name: "Hand",
  14065. image: {
  14066. source: "./media/characters/pia-sr/hand.svg"
  14067. }
  14068. },
  14069. foot: {
  14070. height: math.unit(1.83, "feet"),
  14071. name: "Foot",
  14072. image: {
  14073. source: "./media/characters/pia-sr/foot.svg"
  14074. }
  14075. },
  14076. },
  14077. [
  14078. {
  14079. name: "Micro",
  14080. height: math.unit(88, "mm")
  14081. },
  14082. {
  14083. name: "Normal",
  14084. height: math.unit(2, "m"),
  14085. default: true
  14086. },
  14087. {
  14088. name: "Macro",
  14089. height: math.unit(200, "m")
  14090. },
  14091. {
  14092. name: "Megamacro",
  14093. height: math.unit(420, "km")
  14094. },
  14095. ]
  14096. ))
  14097. characterMakers.push(() => makeCharacter(
  14098. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14099. {
  14100. front: {
  14101. height: math.unit(8 + 2 / 12, "feet"),
  14102. weight: math.unit(300, "lb"),
  14103. name: "Front",
  14104. image: {
  14105. source: "./media/characters/kibibyte/front.svg",
  14106. extra: 2221 / 2098,
  14107. bottom: 0.04
  14108. }
  14109. },
  14110. },
  14111. [
  14112. {
  14113. name: "Normal",
  14114. height: math.unit(8 + 2 / 12, "feet"),
  14115. default: true
  14116. },
  14117. {
  14118. name: "Socialable Macro",
  14119. height: math.unit(50, "feet")
  14120. },
  14121. {
  14122. name: "Macro",
  14123. height: math.unit(300, "feet")
  14124. },
  14125. {
  14126. name: "Megamacro",
  14127. height: math.unit(500, "miles")
  14128. },
  14129. ]
  14130. ))
  14131. characterMakers.push(() => makeCharacter(
  14132. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14133. {
  14134. front: {
  14135. height: math.unit(6, "feet"),
  14136. weight: math.unit(150, "lb"),
  14137. name: "Front",
  14138. image: {
  14139. source: "./media/characters/felix/front.svg",
  14140. extra: 762 / 722,
  14141. bottom: 0.02
  14142. }
  14143. },
  14144. frontClothed: {
  14145. height: math.unit(6, "feet"),
  14146. weight: math.unit(150, "lb"),
  14147. name: "Front (Clothed)",
  14148. image: {
  14149. source: "./media/characters/felix/front-clothed.svg",
  14150. extra: 762 / 722,
  14151. bottom: 0.02
  14152. }
  14153. },
  14154. },
  14155. [
  14156. {
  14157. name: "Normal",
  14158. height: math.unit(6 + 8 / 12, "feet"),
  14159. default: true
  14160. },
  14161. {
  14162. name: "Macro",
  14163. height: math.unit(2600, "feet")
  14164. },
  14165. {
  14166. name: "Megamacro",
  14167. height: math.unit(450, "miles")
  14168. },
  14169. ]
  14170. ))
  14171. characterMakers.push(() => makeCharacter(
  14172. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14173. {
  14174. front: {
  14175. height: math.unit(6 + 1 / 12, "feet"),
  14176. weight: math.unit(250, "lb"),
  14177. name: "Front",
  14178. image: {
  14179. source: "./media/characters/tobo/front.svg",
  14180. extra: 608 / 586,
  14181. bottom: 0.023
  14182. }
  14183. },
  14184. back: {
  14185. height: math.unit(6 + 1 / 12, "feet"),
  14186. weight: math.unit(250, "lb"),
  14187. name: "Back",
  14188. image: {
  14189. source: "./media/characters/tobo/back.svg",
  14190. extra: 608 / 586
  14191. }
  14192. },
  14193. },
  14194. [
  14195. {
  14196. name: "Nano",
  14197. height: math.unit(2, "nm")
  14198. },
  14199. {
  14200. name: "Megamicro",
  14201. height: math.unit(0.1, "mm")
  14202. },
  14203. {
  14204. name: "Micro",
  14205. height: math.unit(1, "inch"),
  14206. default: true
  14207. },
  14208. {
  14209. name: "Human-sized",
  14210. height: math.unit(6 + 1 / 12, "feet")
  14211. },
  14212. {
  14213. name: "Macro",
  14214. height: math.unit(250, "feet")
  14215. },
  14216. {
  14217. name: "Megamacro",
  14218. height: math.unit(75, "miles")
  14219. },
  14220. {
  14221. name: "Texas-sized",
  14222. height: math.unit(750, "miles")
  14223. },
  14224. {
  14225. name: "Teramacro",
  14226. height: math.unit(50000, "miles")
  14227. },
  14228. ]
  14229. ))
  14230. characterMakers.push(() => makeCharacter(
  14231. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14232. {
  14233. front: {
  14234. height: math.unit(6, "feet"),
  14235. weight: math.unit(269, "lb"),
  14236. name: "Front",
  14237. image: {
  14238. source: "./media/characters/danny-kapowsky/front.svg",
  14239. extra: 766 / 736,
  14240. bottom: 0.044
  14241. }
  14242. },
  14243. back: {
  14244. height: math.unit(6, "feet"),
  14245. weight: math.unit(269, "lb"),
  14246. name: "Back",
  14247. image: {
  14248. source: "./media/characters/danny-kapowsky/back.svg",
  14249. extra: 797 / 760,
  14250. bottom: 0.025
  14251. }
  14252. },
  14253. },
  14254. [
  14255. {
  14256. name: "Macro",
  14257. height: math.unit(150, "feet"),
  14258. default: true
  14259. },
  14260. {
  14261. name: "Macro+",
  14262. height: math.unit(200, "feet")
  14263. },
  14264. {
  14265. name: "Macro++",
  14266. height: math.unit(300, "feet")
  14267. },
  14268. {
  14269. name: "Macro+++",
  14270. height: math.unit(400, "feet")
  14271. },
  14272. ]
  14273. ))
  14274. characterMakers.push(() => makeCharacter(
  14275. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14276. {
  14277. side: {
  14278. height: math.unit(6, "feet"),
  14279. weight: math.unit(170, "lb"),
  14280. name: "Side",
  14281. image: {
  14282. source: "./media/characters/finn/side.svg",
  14283. extra: 1953 / 1807,
  14284. bottom: 0.057
  14285. }
  14286. },
  14287. },
  14288. [
  14289. {
  14290. name: "Megamacro",
  14291. height: math.unit(14445, "feet"),
  14292. default: true
  14293. },
  14294. ]
  14295. ))
  14296. characterMakers.push(() => makeCharacter(
  14297. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14298. {
  14299. front: {
  14300. height: math.unit(5 + 6 / 12, "feet"),
  14301. weight: math.unit(125, "lb"),
  14302. name: "Front",
  14303. image: {
  14304. source: "./media/characters/roy/front.svg",
  14305. extra: 1,
  14306. bottom: 0.11
  14307. }
  14308. },
  14309. },
  14310. [
  14311. {
  14312. name: "Micro",
  14313. height: math.unit(3, "inches"),
  14314. default: true
  14315. },
  14316. {
  14317. name: "Normal",
  14318. height: math.unit(5 + 6 / 12, "feet")
  14319. },
  14320. {
  14321. name: "Lesser Macro",
  14322. height: math.unit(60, "feet")
  14323. },
  14324. {
  14325. name: "Greater Macro",
  14326. height: math.unit(120, "feet")
  14327. },
  14328. ]
  14329. ))
  14330. characterMakers.push(() => makeCharacter(
  14331. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14332. {
  14333. front: {
  14334. height: math.unit(6, "feet"),
  14335. weight: math.unit(100, "lb"),
  14336. name: "Front",
  14337. image: {
  14338. source: "./media/characters/aevsivs/front.svg",
  14339. extra: 1,
  14340. bottom: 0.03
  14341. }
  14342. },
  14343. back: {
  14344. height: math.unit(6, "feet"),
  14345. weight: math.unit(100, "lb"),
  14346. name: "Back",
  14347. image: {
  14348. source: "./media/characters/aevsivs/back.svg"
  14349. }
  14350. },
  14351. },
  14352. [
  14353. {
  14354. name: "Micro",
  14355. height: math.unit(2, "inches"),
  14356. default: true
  14357. },
  14358. {
  14359. name: "Normal",
  14360. height: math.unit(5, "feet")
  14361. },
  14362. ]
  14363. ))
  14364. characterMakers.push(() => makeCharacter(
  14365. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14366. {
  14367. front: {
  14368. height: math.unit(5 + 7 / 12, "feet"),
  14369. weight: math.unit(159, "lb"),
  14370. name: "Front",
  14371. image: {
  14372. source: "./media/characters/hildegard/front.svg",
  14373. extra: 289 / 269,
  14374. bottom: 7.63 / 297.8
  14375. }
  14376. },
  14377. back: {
  14378. height: math.unit(5 + 7 / 12, "feet"),
  14379. weight: math.unit(159, "lb"),
  14380. name: "Back",
  14381. image: {
  14382. source: "./media/characters/hildegard/back.svg",
  14383. extra: 280 / 260,
  14384. bottom: 2.3 / 282
  14385. }
  14386. },
  14387. },
  14388. [
  14389. {
  14390. name: "Normal",
  14391. height: math.unit(5 + 7 / 12, "feet"),
  14392. default: true
  14393. },
  14394. ]
  14395. ))
  14396. characterMakers.push(() => makeCharacter(
  14397. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14398. {
  14399. bernard: {
  14400. height: math.unit(2 + 7 / 12, "feet"),
  14401. weight: math.unit(66, "lb"),
  14402. name: "Bernard",
  14403. rename: true,
  14404. image: {
  14405. source: "./media/characters/bernard-wilder/bernard.svg",
  14406. extra: 192 / 128,
  14407. bottom: 0.05
  14408. }
  14409. },
  14410. wilder: {
  14411. height: math.unit(5 + 8 / 12, "feet"),
  14412. weight: math.unit(143, "lb"),
  14413. name: "Wilder",
  14414. rename: true,
  14415. image: {
  14416. source: "./media/characters/bernard-wilder/wilder.svg",
  14417. extra: 361 / 312,
  14418. bottom: 0.02
  14419. }
  14420. },
  14421. },
  14422. [
  14423. {
  14424. name: "Normal",
  14425. height: math.unit(2 + 7 / 12, "feet"),
  14426. default: true
  14427. },
  14428. ]
  14429. ))
  14430. characterMakers.push(() => makeCharacter(
  14431. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14432. {
  14433. anthro: {
  14434. height: math.unit(6 + 1 / 12, "feet"),
  14435. weight: math.unit(155, "lb"),
  14436. name: "Anthro",
  14437. image: {
  14438. source: "./media/characters/hearth/anthro.svg",
  14439. extra: 260 / 250,
  14440. bottom: 0.02
  14441. }
  14442. },
  14443. feral: {
  14444. height: math.unit(3.78, "feet"),
  14445. weight: math.unit(35, "kg"),
  14446. name: "Feral",
  14447. image: {
  14448. source: "./media/characters/hearth/feral.svg",
  14449. extra: 153 / 135,
  14450. bottom: 0.03
  14451. }
  14452. },
  14453. },
  14454. [
  14455. {
  14456. name: "Normal",
  14457. height: math.unit(6 + 1 / 12, "feet"),
  14458. default: true
  14459. },
  14460. ]
  14461. ))
  14462. characterMakers.push(() => makeCharacter(
  14463. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14464. {
  14465. front: {
  14466. height: math.unit(6, "feet"),
  14467. weight: math.unit(182, "lb"),
  14468. name: "Front",
  14469. image: {
  14470. source: "./media/characters/ingrid/front.svg",
  14471. extra: 294 / 268,
  14472. bottom: 0.027
  14473. }
  14474. },
  14475. },
  14476. [
  14477. {
  14478. name: "Normal",
  14479. height: math.unit(6, "feet"),
  14480. default: true
  14481. },
  14482. ]
  14483. ))
  14484. characterMakers.push(() => makeCharacter(
  14485. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14486. {
  14487. eevee: {
  14488. height: math.unit(2 + 10 / 12, "feet"),
  14489. weight: math.unit(86, "lb"),
  14490. name: "Malgam",
  14491. image: {
  14492. source: "./media/characters/malgam/eevee.svg",
  14493. extra: 218 / 180,
  14494. bottom: 0.2
  14495. }
  14496. },
  14497. sylveon: {
  14498. height: math.unit(4, "feet"),
  14499. weight: math.unit(101, "lb"),
  14500. name: "Future Malgam",
  14501. rename: true,
  14502. image: {
  14503. source: "./media/characters/malgam/sylveon.svg",
  14504. extra: 371 / 325,
  14505. bottom: 0.015
  14506. }
  14507. },
  14508. gigantamax: {
  14509. height: math.unit(50, "feet"),
  14510. name: "Gigantamax Malgam",
  14511. rename: true,
  14512. image: {
  14513. source: "./media/characters/malgam/gigantamax.svg"
  14514. }
  14515. },
  14516. },
  14517. [
  14518. {
  14519. name: "Normal",
  14520. height: math.unit(2 + 10 / 12, "feet"),
  14521. default: true
  14522. },
  14523. ]
  14524. ))
  14525. characterMakers.push(() => makeCharacter(
  14526. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14527. {
  14528. front: {
  14529. height: math.unit(5 + 11 / 12, "feet"),
  14530. weight: math.unit(188, "lb"),
  14531. name: "Front",
  14532. image: {
  14533. source: "./media/characters/fleur/front.svg",
  14534. extra: 309 / 283,
  14535. bottom: 0.007
  14536. }
  14537. },
  14538. },
  14539. [
  14540. {
  14541. name: "Normal",
  14542. height: math.unit(5 + 11 / 12, "feet"),
  14543. default: true
  14544. },
  14545. ]
  14546. ))
  14547. characterMakers.push(() => makeCharacter(
  14548. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14549. {
  14550. front: {
  14551. height: math.unit(5 + 4 / 12, "feet"),
  14552. weight: math.unit(122, "lb"),
  14553. name: "Front",
  14554. image: {
  14555. source: "./media/characters/jude/front.svg",
  14556. extra: 288 / 273,
  14557. bottom: 0.03
  14558. }
  14559. },
  14560. },
  14561. [
  14562. {
  14563. name: "Normal",
  14564. height: math.unit(5 + 4 / 12, "feet"),
  14565. default: true
  14566. },
  14567. ]
  14568. ))
  14569. characterMakers.push(() => makeCharacter(
  14570. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14571. {
  14572. front: {
  14573. height: math.unit(5 + 11 / 12, "feet"),
  14574. weight: math.unit(190, "lb"),
  14575. name: "Front",
  14576. image: {
  14577. source: "./media/characters/seara/front.svg",
  14578. extra: 1,
  14579. bottom: 0.05
  14580. }
  14581. },
  14582. },
  14583. [
  14584. {
  14585. name: "Normal",
  14586. height: math.unit(5 + 11 / 12, "feet"),
  14587. default: true
  14588. },
  14589. ]
  14590. ))
  14591. characterMakers.push(() => makeCharacter(
  14592. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14593. {
  14594. front: {
  14595. height: math.unit(16 + 5 / 12, "feet"),
  14596. weight: math.unit(524, "lb"),
  14597. name: "Front",
  14598. image: {
  14599. source: "./media/characters/caspian/front.svg",
  14600. extra: 1,
  14601. bottom: 0.04
  14602. }
  14603. },
  14604. },
  14605. [
  14606. {
  14607. name: "Normal",
  14608. height: math.unit(16 + 5 / 12, "feet"),
  14609. default: true
  14610. },
  14611. ]
  14612. ))
  14613. characterMakers.push(() => makeCharacter(
  14614. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14615. {
  14616. front: {
  14617. height: math.unit(5 + 7 / 12, "feet"),
  14618. weight: math.unit(170, "lb"),
  14619. name: "Front",
  14620. image: {
  14621. source: "./media/characters/mika/front.svg",
  14622. extra: 1,
  14623. bottom: 0.016
  14624. }
  14625. },
  14626. },
  14627. [
  14628. {
  14629. name: "Normal",
  14630. height: math.unit(5 + 7 / 12, "feet"),
  14631. default: true
  14632. },
  14633. ]
  14634. ))
  14635. characterMakers.push(() => makeCharacter(
  14636. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14637. {
  14638. front: {
  14639. height: math.unit(6 + 2 / 12, "feet"),
  14640. weight: math.unit(268, "lb"),
  14641. name: "Front",
  14642. image: {
  14643. source: "./media/characters/sol/front.svg",
  14644. extra: 247 / 231,
  14645. bottom: 0.05
  14646. }
  14647. },
  14648. },
  14649. [
  14650. {
  14651. name: "Normal",
  14652. height: math.unit(6 + 2 / 12, "feet"),
  14653. default: true
  14654. },
  14655. ]
  14656. ))
  14657. characterMakers.push(() => makeCharacter(
  14658. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14659. {
  14660. buizel: {
  14661. height: math.unit(2 + 5 / 12, "feet"),
  14662. weight: math.unit(87, "lb"),
  14663. name: "Buizel",
  14664. image: {
  14665. source: "./media/characters/umiko/buizel.svg",
  14666. extra: 172 / 157,
  14667. bottom: 0.01
  14668. }
  14669. },
  14670. floatzel: {
  14671. height: math.unit(5 + 9 / 12, "feet"),
  14672. weight: math.unit(250, "lb"),
  14673. name: "Floatzel",
  14674. image: {
  14675. source: "./media/characters/umiko/floatzel.svg",
  14676. extra: 262 / 248
  14677. }
  14678. },
  14679. },
  14680. [
  14681. {
  14682. name: "Normal",
  14683. height: math.unit(2 + 5 / 12, "feet"),
  14684. default: true
  14685. },
  14686. ]
  14687. ))
  14688. characterMakers.push(() => makeCharacter(
  14689. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14690. {
  14691. front: {
  14692. height: math.unit(6 + 2 / 12, "feet"),
  14693. weight: math.unit(146, "lb"),
  14694. name: "Front",
  14695. image: {
  14696. source: "./media/characters/iliac/front.svg",
  14697. extra: 389 / 365,
  14698. bottom: 0.035
  14699. }
  14700. },
  14701. },
  14702. [
  14703. {
  14704. name: "Normal",
  14705. height: math.unit(6 + 2 / 12, "feet"),
  14706. default: true
  14707. },
  14708. ]
  14709. ))
  14710. characterMakers.push(() => makeCharacter(
  14711. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14712. {
  14713. front: {
  14714. height: math.unit(6, "feet"),
  14715. weight: math.unit(170, "lb"),
  14716. name: "Front",
  14717. image: {
  14718. source: "./media/characters/topaz/front.svg",
  14719. extra: 317 / 303,
  14720. bottom: 0.055
  14721. }
  14722. },
  14723. },
  14724. [
  14725. {
  14726. name: "Normal",
  14727. height: math.unit(6, "feet"),
  14728. default: true
  14729. },
  14730. ]
  14731. ))
  14732. characterMakers.push(() => makeCharacter(
  14733. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14734. {
  14735. front: {
  14736. height: math.unit(5 + 11 / 12, "feet"),
  14737. weight: math.unit(144, "lb"),
  14738. name: "Front",
  14739. image: {
  14740. source: "./media/characters/gabriel/front.svg",
  14741. extra: 285 / 262,
  14742. bottom: 0.004
  14743. }
  14744. },
  14745. },
  14746. [
  14747. {
  14748. name: "Normal",
  14749. height: math.unit(5 + 11 / 12, "feet"),
  14750. default: true
  14751. },
  14752. ]
  14753. ))
  14754. characterMakers.push(() => makeCharacter(
  14755. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14756. {
  14757. side: {
  14758. height: math.unit(6 + 5 / 12, "feet"),
  14759. weight: math.unit(300, "lb"),
  14760. name: "Side",
  14761. image: {
  14762. source: "./media/characters/tempest-suicune/side.svg",
  14763. extra: 195 / 154,
  14764. bottom: 0.04
  14765. }
  14766. },
  14767. },
  14768. [
  14769. {
  14770. name: "Normal",
  14771. height: math.unit(6 + 5 / 12, "feet"),
  14772. default: true
  14773. },
  14774. ]
  14775. ))
  14776. characterMakers.push(() => makeCharacter(
  14777. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14778. {
  14779. front: {
  14780. height: math.unit(7 + 2 / 12, "feet"),
  14781. weight: math.unit(322, "lb"),
  14782. name: "Front",
  14783. image: {
  14784. source: "./media/characters/vulcan/front.svg",
  14785. extra: 154 / 147,
  14786. bottom: 0.04
  14787. }
  14788. },
  14789. },
  14790. [
  14791. {
  14792. name: "Normal",
  14793. height: math.unit(7 + 2 / 12, "feet"),
  14794. default: true
  14795. },
  14796. ]
  14797. ))
  14798. characterMakers.push(() => makeCharacter(
  14799. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14800. {
  14801. front: {
  14802. height: math.unit(5 + 10 / 12, "feet"),
  14803. weight: math.unit(264, "lb"),
  14804. name: "Front",
  14805. image: {
  14806. source: "./media/characters/gault/front.svg",
  14807. extra: 161 / 140,
  14808. bottom: 0.028
  14809. }
  14810. },
  14811. },
  14812. [
  14813. {
  14814. name: "Normal",
  14815. height: math.unit(5 + 10 / 12, "feet"),
  14816. default: true
  14817. },
  14818. ]
  14819. ))
  14820. characterMakers.push(() => makeCharacter(
  14821. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14822. {
  14823. front: {
  14824. height: math.unit(6, "feet"),
  14825. weight: math.unit(150, "lb"),
  14826. name: "Front",
  14827. image: {
  14828. source: "./media/characters/shard/front.svg",
  14829. extra: 273 / 238,
  14830. bottom: 0.02
  14831. }
  14832. },
  14833. },
  14834. [
  14835. {
  14836. name: "Normal",
  14837. height: math.unit(3 + 6 / 12, "feet"),
  14838. default: true
  14839. },
  14840. ]
  14841. ))
  14842. characterMakers.push(() => makeCharacter(
  14843. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14844. {
  14845. front: {
  14846. height: math.unit(5 + 11 / 12, "feet"),
  14847. weight: math.unit(146, "lb"),
  14848. name: "Front",
  14849. image: {
  14850. source: "./media/characters/ashe/front.svg",
  14851. extra: 400 / 373,
  14852. bottom: 0.01
  14853. }
  14854. },
  14855. },
  14856. [
  14857. {
  14858. name: "Normal",
  14859. height: math.unit(5 + 11 / 12, "feet"),
  14860. default: true
  14861. },
  14862. ]
  14863. ))
  14864. characterMakers.push(() => makeCharacter(
  14865. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14866. {
  14867. front: {
  14868. height: math.unit(5 + 5 / 12, "feet"),
  14869. weight: math.unit(135, "lb"),
  14870. name: "Front",
  14871. image: {
  14872. source: "./media/characters/beatrix/front.svg",
  14873. extra: 392 / 379,
  14874. bottom: 0.01
  14875. }
  14876. },
  14877. },
  14878. [
  14879. {
  14880. name: "Normal",
  14881. height: math.unit(6, "feet"),
  14882. default: true
  14883. },
  14884. ]
  14885. ))
  14886. characterMakers.push(() => makeCharacter(
  14887. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14888. {
  14889. front: {
  14890. height: math.unit(6, "feet"),
  14891. weight: math.unit(150, "lb"),
  14892. name: "Front",
  14893. image: {
  14894. source: "./media/characters/ignatius/front.svg",
  14895. extra: 245 / 222,
  14896. bottom: 0.01
  14897. }
  14898. },
  14899. },
  14900. [
  14901. {
  14902. name: "Normal",
  14903. height: math.unit(5 + 5 / 12, "feet"),
  14904. default: true
  14905. },
  14906. ]
  14907. ))
  14908. characterMakers.push(() => makeCharacter(
  14909. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14910. {
  14911. front: {
  14912. height: math.unit(6 + 2 / 12, "feet"),
  14913. weight: math.unit(138, "lb"),
  14914. name: "Front",
  14915. image: {
  14916. source: "./media/characters/mei-li/front.svg",
  14917. extra: 237 / 229,
  14918. bottom: 0.03
  14919. }
  14920. },
  14921. },
  14922. [
  14923. {
  14924. name: "Normal",
  14925. height: math.unit(6 + 2 / 12, "feet"),
  14926. default: true
  14927. },
  14928. ]
  14929. ))
  14930. characterMakers.push(() => makeCharacter(
  14931. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14932. {
  14933. front: {
  14934. height: math.unit(2 + 4 / 12, "feet"),
  14935. weight: math.unit(62, "lb"),
  14936. name: "Front",
  14937. image: {
  14938. source: "./media/characters/puru/front.svg",
  14939. extra: 206 / 149,
  14940. bottom: 0.06
  14941. }
  14942. },
  14943. },
  14944. [
  14945. {
  14946. name: "Normal",
  14947. height: math.unit(2 + 4 / 12, "feet"),
  14948. default: true
  14949. },
  14950. ]
  14951. ))
  14952. characterMakers.push(() => makeCharacter(
  14953. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14954. {
  14955. taur: {
  14956. height: math.unit(11, "feet"),
  14957. weight: math.unit(500, "lb"),
  14958. name: "Taur",
  14959. image: {
  14960. source: "./media/characters/kee/taur.svg",
  14961. extra: 1,
  14962. bottom: 0.04
  14963. }
  14964. },
  14965. },
  14966. [
  14967. {
  14968. name: "Normal",
  14969. height: math.unit(11, "feet"),
  14970. default: true
  14971. },
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14976. {
  14977. anthro: {
  14978. height: math.unit(7, "feet"),
  14979. weight: math.unit(190, "lb"),
  14980. name: "Anthro",
  14981. image: {
  14982. source: "./media/characters/cobalt-dracha/anthro.svg",
  14983. extra: 231 / 225,
  14984. bottom: 0.04
  14985. }
  14986. },
  14987. feral: {
  14988. height: math.unit(9 + 7 / 12, "feet"),
  14989. weight: math.unit(294, "lb"),
  14990. name: "Feral",
  14991. image: {
  14992. source: "./media/characters/cobalt-dracha/feral.svg",
  14993. extra: 692 / 633,
  14994. bottom: 0.05
  14995. }
  14996. },
  14997. },
  14998. [
  14999. {
  15000. name: "Normal",
  15001. height: math.unit(7, "feet"),
  15002. default: true
  15003. },
  15004. ]
  15005. ))
  15006. characterMakers.push(() => makeCharacter(
  15007. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  15008. {
  15009. fallen: {
  15010. height: math.unit(11 + 8 / 12, "feet"),
  15011. weight: math.unit(485, "lb"),
  15012. name: "Java (Fallen)",
  15013. rename: true,
  15014. image: {
  15015. source: "./media/characters/java/fallen.svg",
  15016. extra: 226 / 208,
  15017. bottom: 0.005
  15018. }
  15019. },
  15020. godkin: {
  15021. height: math.unit(10 + 6 / 12, "feet"),
  15022. weight: math.unit(328, "lb"),
  15023. name: "Java (Godkin)",
  15024. rename: true,
  15025. image: {
  15026. source: "./media/characters/java/godkin.svg",
  15027. extra: 270 / 262,
  15028. bottom: 0.02
  15029. }
  15030. },
  15031. },
  15032. [
  15033. {
  15034. name: "Normal",
  15035. height: math.unit(11 + 8 / 12, "feet"),
  15036. default: true
  15037. },
  15038. ]
  15039. ))
  15040. characterMakers.push(() => makeCharacter(
  15041. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15042. {
  15043. front: {
  15044. height: math.unit(7 + 8 / 12, "feet"),
  15045. weight: math.unit(320, "lb"),
  15046. name: "Front",
  15047. image: {
  15048. source: "./media/characters/skoll/front.svg",
  15049. extra: 232 / 220,
  15050. bottom: 0.02
  15051. }
  15052. },
  15053. },
  15054. [
  15055. {
  15056. name: "Normal",
  15057. height: math.unit(7 + 8 / 12, "feet"),
  15058. default: true
  15059. },
  15060. ]
  15061. ))
  15062. characterMakers.push(() => makeCharacter(
  15063. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15064. {
  15065. front: {
  15066. height: math.unit(5 + 9 / 12, "feet"),
  15067. weight: math.unit(170, "lb"),
  15068. name: "Front",
  15069. image: {
  15070. source: "./media/characters/purna/front.svg",
  15071. extra: 239 / 229,
  15072. bottom: 0.01
  15073. }
  15074. },
  15075. },
  15076. [
  15077. {
  15078. name: "Normal",
  15079. height: math.unit(5 + 9 / 12, "feet"),
  15080. default: true
  15081. },
  15082. ]
  15083. ))
  15084. characterMakers.push(() => makeCharacter(
  15085. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15086. {
  15087. front: {
  15088. height: math.unit(5 + 9 / 12, "feet"),
  15089. weight: math.unit(142, "lb"),
  15090. name: "Front",
  15091. image: {
  15092. source: "./media/characters/kuva/front.svg",
  15093. extra: 281 / 271,
  15094. bottom: 0.006
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Normal",
  15101. height: math.unit(5 + 9 / 12, "feet"),
  15102. default: true
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15108. {
  15109. anthro: {
  15110. height: math.unit(9 + 2 / 12, "feet"),
  15111. weight: math.unit(270, "lb"),
  15112. name: "Anthro",
  15113. image: {
  15114. source: "./media/characters/embra/anthro.svg",
  15115. extra: 200 / 187,
  15116. bottom: 0.02
  15117. }
  15118. },
  15119. feral: {
  15120. height: math.unit(18 + 8 / 12, "feet"),
  15121. weight: math.unit(576, "lb"),
  15122. name: "Feral",
  15123. image: {
  15124. source: "./media/characters/embra/feral.svg",
  15125. extra: 152 / 137,
  15126. bottom: 0.037
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Normal",
  15133. height: math.unit(9 + 2 / 12, "feet"),
  15134. default: true
  15135. },
  15136. ]
  15137. ))
  15138. characterMakers.push(() => makeCharacter(
  15139. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15140. {
  15141. anthro: {
  15142. height: math.unit(10 + 9 / 12, "feet"),
  15143. weight: math.unit(224, "lb"),
  15144. name: "Anthro",
  15145. image: {
  15146. source: "./media/characters/grottos/anthro.svg",
  15147. extra: 350 / 332,
  15148. bottom: 0.045
  15149. }
  15150. },
  15151. feral: {
  15152. height: math.unit(20 + 7 / 12, "feet"),
  15153. weight: math.unit(629, "lb"),
  15154. name: "Feral",
  15155. image: {
  15156. source: "./media/characters/grottos/feral.svg",
  15157. extra: 207 / 190,
  15158. bottom: 0.05
  15159. }
  15160. },
  15161. },
  15162. [
  15163. {
  15164. name: "Normal",
  15165. height: math.unit(10 + 9 / 12, "feet"),
  15166. default: true
  15167. },
  15168. ]
  15169. ))
  15170. characterMakers.push(() => makeCharacter(
  15171. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15172. {
  15173. anthro: {
  15174. height: math.unit(9 + 6 / 12, "feet"),
  15175. weight: math.unit(298, "lb"),
  15176. name: "Anthro",
  15177. image: {
  15178. source: "./media/characters/frifna/anthro.svg",
  15179. extra: 282 / 269,
  15180. bottom: 0.015
  15181. }
  15182. },
  15183. feral: {
  15184. height: math.unit(16 + 2 / 12, "feet"),
  15185. weight: math.unit(624, "lb"),
  15186. name: "Feral",
  15187. image: {
  15188. source: "./media/characters/frifna/feral.svg"
  15189. }
  15190. },
  15191. },
  15192. [
  15193. {
  15194. name: "Normal",
  15195. height: math.unit(9 + 6 / 12, "feet"),
  15196. default: true
  15197. },
  15198. ]
  15199. ))
  15200. characterMakers.push(() => makeCharacter(
  15201. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15202. {
  15203. front: {
  15204. height: math.unit(6 + 2 / 12, "feet"),
  15205. weight: math.unit(168, "lb"),
  15206. name: "Front",
  15207. image: {
  15208. source: "./media/characters/elise/front.svg",
  15209. extra: 276 / 271
  15210. }
  15211. },
  15212. },
  15213. [
  15214. {
  15215. name: "Normal",
  15216. height: math.unit(6 + 2 / 12, "feet"),
  15217. default: true
  15218. },
  15219. ]
  15220. ))
  15221. characterMakers.push(() => makeCharacter(
  15222. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15223. {
  15224. front: {
  15225. height: math.unit(5 + 10 / 12, "feet"),
  15226. weight: math.unit(210, "lb"),
  15227. name: "Front",
  15228. image: {
  15229. source: "./media/characters/glade/front.svg",
  15230. extra: 258 / 247,
  15231. bottom: 0.008
  15232. }
  15233. },
  15234. },
  15235. [
  15236. {
  15237. name: "Normal",
  15238. height: math.unit(5 + 10 / 12, "feet"),
  15239. default: true
  15240. },
  15241. ]
  15242. ))
  15243. characterMakers.push(() => makeCharacter(
  15244. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15245. {
  15246. front: {
  15247. height: math.unit(5 + 10 / 12, "feet"),
  15248. weight: math.unit(129, "lb"),
  15249. name: "Front",
  15250. image: {
  15251. source: "./media/characters/rina/front.svg",
  15252. extra: 266 / 255,
  15253. bottom: 0.005
  15254. }
  15255. },
  15256. },
  15257. [
  15258. {
  15259. name: "Normal",
  15260. height: math.unit(5 + 10 / 12, "feet"),
  15261. default: true
  15262. },
  15263. ]
  15264. ))
  15265. characterMakers.push(() => makeCharacter(
  15266. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15267. {
  15268. front: {
  15269. height: math.unit(6 + 1 / 12, "feet"),
  15270. weight: math.unit(192, "lb"),
  15271. name: "Front",
  15272. image: {
  15273. source: "./media/characters/veronica/front.svg",
  15274. extra: 319 / 309,
  15275. bottom: 0.005
  15276. }
  15277. },
  15278. },
  15279. [
  15280. {
  15281. name: "Normal",
  15282. height: math.unit(6 + 1 / 12, "feet"),
  15283. default: true
  15284. },
  15285. ]
  15286. ))
  15287. characterMakers.push(() => makeCharacter(
  15288. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15289. {
  15290. front: {
  15291. height: math.unit(9 + 3 / 12, "feet"),
  15292. weight: math.unit(1100, "lb"),
  15293. name: "Front",
  15294. image: {
  15295. source: "./media/characters/braxton/front.svg",
  15296. extra: 1057 / 984,
  15297. bottom: 0.05
  15298. }
  15299. },
  15300. },
  15301. [
  15302. {
  15303. name: "Normal",
  15304. height: math.unit(9 + 3 / 12, "feet")
  15305. },
  15306. {
  15307. name: "Giant",
  15308. height: math.unit(300, "feet"),
  15309. default: true
  15310. },
  15311. {
  15312. name: "Macro",
  15313. height: math.unit(700, "feet")
  15314. },
  15315. {
  15316. name: "Megamacro",
  15317. height: math.unit(6000, "feet")
  15318. },
  15319. ]
  15320. ))
  15321. characterMakers.push(() => makeCharacter(
  15322. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15323. {
  15324. front: {
  15325. height: math.unit(6 + 7 / 12, "feet"),
  15326. weight: math.unit(150, "lb"),
  15327. name: "Front",
  15328. image: {
  15329. source: "./media/characters/blue-feyonics/front.svg",
  15330. extra: 1403 / 1306,
  15331. bottom: 0.047
  15332. }
  15333. },
  15334. },
  15335. [
  15336. {
  15337. name: "Normal",
  15338. height: math.unit(6 + 7 / 12, "feet"),
  15339. default: true
  15340. },
  15341. ]
  15342. ))
  15343. characterMakers.push(() => makeCharacter(
  15344. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15345. {
  15346. front: {
  15347. height: math.unit(1.8, "meters"),
  15348. weight: math.unit(60, "kg"),
  15349. name: "Front",
  15350. image: {
  15351. source: "./media/characters/maxwell/front.svg",
  15352. extra: 2060 / 1873
  15353. }
  15354. },
  15355. },
  15356. [
  15357. {
  15358. name: "Micro",
  15359. height: math.unit(1, "mm")
  15360. },
  15361. {
  15362. name: "Normal",
  15363. height: math.unit(1.8, "meter"),
  15364. default: true
  15365. },
  15366. {
  15367. name: "Macro",
  15368. height: math.unit(30, "meters")
  15369. },
  15370. {
  15371. name: "Megamacro",
  15372. height: math.unit(10, "km")
  15373. },
  15374. ]
  15375. ))
  15376. characterMakers.push(() => makeCharacter(
  15377. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15378. {
  15379. front: {
  15380. height: math.unit(6, "feet"),
  15381. weight: math.unit(150, "lb"),
  15382. name: "Front",
  15383. image: {
  15384. source: "./media/characters/jack/front.svg",
  15385. extra: 1754 / 1640,
  15386. bottom: 0.01
  15387. }
  15388. },
  15389. },
  15390. [
  15391. {
  15392. name: "Normal",
  15393. height: math.unit(80000, "feet"),
  15394. default: true
  15395. },
  15396. {
  15397. name: "Max size",
  15398. height: math.unit(10, "lightyears")
  15399. },
  15400. ]
  15401. ))
  15402. characterMakers.push(() => makeCharacter(
  15403. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15404. {
  15405. upright: {
  15406. height: math.unit(7, "feet"),
  15407. weight: math.unit(170, "lb"),
  15408. name: "Upright",
  15409. image: {
  15410. source: "./media/characters/cafat/upright.svg",
  15411. bottom: 0.01
  15412. }
  15413. },
  15414. uprightFull: {
  15415. height: math.unit(7, "feet"),
  15416. weight: math.unit(170, "lb"),
  15417. name: "Upright (Full)",
  15418. image: {
  15419. source: "./media/characters/cafat/upright-full.svg",
  15420. bottom: 0.01
  15421. }
  15422. },
  15423. side: {
  15424. height: math.unit(5, "feet"),
  15425. weight: math.unit(150, "lb"),
  15426. name: "Side",
  15427. image: {
  15428. source: "./media/characters/cafat/side.svg"
  15429. }
  15430. },
  15431. },
  15432. [
  15433. {
  15434. name: "Small",
  15435. height: math.unit(7, "feet"),
  15436. default: true
  15437. },
  15438. {
  15439. name: "Large",
  15440. height: math.unit(15.5, "feet")
  15441. },
  15442. ]
  15443. ))
  15444. characterMakers.push(() => makeCharacter(
  15445. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15446. {
  15447. front: {
  15448. height: math.unit(6, "feet"),
  15449. weight: math.unit(150, "lb"),
  15450. name: "Front",
  15451. image: {
  15452. source: "./media/characters/verin-raharra/front.svg",
  15453. extra: 5019 / 4835,
  15454. bottom: 0.023
  15455. }
  15456. },
  15457. },
  15458. [
  15459. {
  15460. name: "Normal",
  15461. height: math.unit(7 + 5 / 12, "feet"),
  15462. default: true
  15463. },
  15464. {
  15465. name: "Upsized",
  15466. height: math.unit(20, "feet")
  15467. },
  15468. ]
  15469. ))
  15470. characterMakers.push(() => makeCharacter(
  15471. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15472. {
  15473. front: {
  15474. height: math.unit(7, "feet"),
  15475. weight: math.unit(230, "lb"),
  15476. name: "Front",
  15477. image: {
  15478. source: "./media/characters/nakata/front.svg",
  15479. extra: 1.005,
  15480. bottom: 0.01
  15481. }
  15482. },
  15483. },
  15484. [
  15485. {
  15486. name: "Normal",
  15487. height: math.unit(7, "feet"),
  15488. default: true
  15489. },
  15490. {
  15491. name: "Big",
  15492. height: math.unit(14, "feet")
  15493. },
  15494. {
  15495. name: "Macro",
  15496. height: math.unit(400, "feet")
  15497. },
  15498. ]
  15499. ))
  15500. characterMakers.push(() => makeCharacter(
  15501. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15502. {
  15503. front: {
  15504. height: math.unit(4.91, "feet"),
  15505. weight: math.unit(100, "lb"),
  15506. name: "Front",
  15507. image: {
  15508. source: "./media/characters/lily/front.svg",
  15509. extra: 1585 / 1415,
  15510. bottom: 0.02
  15511. }
  15512. },
  15513. },
  15514. [
  15515. {
  15516. name: "Normal",
  15517. height: math.unit(4.91, "feet"),
  15518. default: true
  15519. },
  15520. ]
  15521. ))
  15522. characterMakers.push(() => makeCharacter(
  15523. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15524. {
  15525. laying: {
  15526. height: math.unit(4 + 4 / 12, "feet"),
  15527. weight: math.unit(600, "lb"),
  15528. name: "Laying",
  15529. image: {
  15530. source: "./media/characters/sheila/laying.svg",
  15531. extra: 1333 / 1265,
  15532. bottom: 0.16
  15533. }
  15534. },
  15535. },
  15536. [
  15537. {
  15538. name: "Normal",
  15539. height: math.unit(4 + 4 / 12, "feet"),
  15540. default: true
  15541. },
  15542. ]
  15543. ))
  15544. characterMakers.push(() => makeCharacter(
  15545. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15546. {
  15547. front: {
  15548. height: math.unit(6, "feet"),
  15549. weight: math.unit(190, "lb"),
  15550. name: "Front",
  15551. image: {
  15552. source: "./media/characters/sax/front.svg",
  15553. extra: 1187 / 973,
  15554. bottom: 0.042
  15555. }
  15556. },
  15557. },
  15558. [
  15559. {
  15560. name: "Micro",
  15561. height: math.unit(4, "inches"),
  15562. default: true
  15563. },
  15564. ]
  15565. ))
  15566. characterMakers.push(() => makeCharacter(
  15567. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15568. {
  15569. front: {
  15570. height: math.unit(6, "feet"),
  15571. weight: math.unit(150, "lb"),
  15572. name: "Front",
  15573. image: {
  15574. source: "./media/characters/pandora/front.svg",
  15575. extra: 2720 / 2556,
  15576. bottom: 0.015
  15577. }
  15578. },
  15579. back: {
  15580. height: math.unit(6, "feet"),
  15581. weight: math.unit(150, "lb"),
  15582. name: "Back",
  15583. image: {
  15584. source: "./media/characters/pandora/back.svg",
  15585. extra: 2720 / 2556,
  15586. bottom: 0.01
  15587. }
  15588. },
  15589. beans: {
  15590. height: math.unit(6 / 8, "feet"),
  15591. name: "Beans",
  15592. image: {
  15593. source: "./media/characters/pandora/beans.svg"
  15594. }
  15595. },
  15596. skirt: {
  15597. height: math.unit(6, "feet"),
  15598. weight: math.unit(150, "lb"),
  15599. name: "Skirt",
  15600. image: {
  15601. source: "./media/characters/pandora/skirt.svg",
  15602. extra: 1622 / 1525,
  15603. bottom: 0.015
  15604. }
  15605. },
  15606. hoodie: {
  15607. height: math.unit(6, "feet"),
  15608. weight: math.unit(150, "lb"),
  15609. name: "Hoodie",
  15610. image: {
  15611. source: "./media/characters/pandora/hoodie.svg",
  15612. extra: 1622 / 1525,
  15613. bottom: 0.015
  15614. }
  15615. },
  15616. casual: {
  15617. height: math.unit(6, "feet"),
  15618. weight: math.unit(150, "lb"),
  15619. name: "Casual",
  15620. image: {
  15621. source: "./media/characters/pandora/casual.svg",
  15622. extra: 1622 / 1525,
  15623. bottom: 0.015
  15624. }
  15625. },
  15626. },
  15627. [
  15628. {
  15629. name: "Normal",
  15630. height: math.unit(6, "feet")
  15631. },
  15632. {
  15633. name: "Big Steppy",
  15634. height: math.unit(1, "km"),
  15635. default: true
  15636. },
  15637. ]
  15638. ))
  15639. characterMakers.push(() => makeCharacter(
  15640. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15641. {
  15642. side: {
  15643. height: math.unit(10, "feet"),
  15644. weight: math.unit(800, "kg"),
  15645. name: "Side",
  15646. image: {
  15647. source: "./media/characters/venio-darcony/side.svg",
  15648. extra: 1373 / 1003,
  15649. bottom: 0.037
  15650. }
  15651. },
  15652. front: {
  15653. height: math.unit(19, "feet"),
  15654. weight: math.unit(800, "kg"),
  15655. name: "Front",
  15656. image: {
  15657. source: "./media/characters/venio-darcony/front.svg"
  15658. }
  15659. },
  15660. back: {
  15661. height: math.unit(19, "feet"),
  15662. weight: math.unit(800, "kg"),
  15663. name: "Back",
  15664. image: {
  15665. source: "./media/characters/venio-darcony/back.svg"
  15666. }
  15667. },
  15668. sideNsfw: {
  15669. height: math.unit(10, "feet"),
  15670. weight: math.unit(800, "kg"),
  15671. name: "Side (NSFW)",
  15672. image: {
  15673. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15674. extra: 1373 / 1003,
  15675. bottom: 0.037
  15676. }
  15677. },
  15678. frontNsfw: {
  15679. height: math.unit(19, "feet"),
  15680. weight: math.unit(800, "kg"),
  15681. name: "Front (NSFW)",
  15682. image: {
  15683. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15684. }
  15685. },
  15686. backNsfw: {
  15687. height: math.unit(19, "feet"),
  15688. weight: math.unit(800, "kg"),
  15689. name: "Back (NSFW)",
  15690. image: {
  15691. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15692. }
  15693. },
  15694. sideArmored: {
  15695. height: math.unit(10, "feet"),
  15696. weight: math.unit(800, "kg"),
  15697. name: "Side (Armored)",
  15698. image: {
  15699. source: "./media/characters/venio-darcony/side-armored.svg",
  15700. extra: 1373 / 1003,
  15701. bottom: 0.037
  15702. }
  15703. },
  15704. frontArmored: {
  15705. height: math.unit(19, "feet"),
  15706. weight: math.unit(900, "kg"),
  15707. name: "Front (Armored)",
  15708. image: {
  15709. source: "./media/characters/venio-darcony/front-armored.svg"
  15710. }
  15711. },
  15712. backArmored: {
  15713. height: math.unit(19, "feet"),
  15714. weight: math.unit(900, "kg"),
  15715. name: "Back (Armored)",
  15716. image: {
  15717. source: "./media/characters/venio-darcony/back-armored.svg"
  15718. }
  15719. },
  15720. sword: {
  15721. height: math.unit(10, "feet"),
  15722. weight: math.unit(50, "lb"),
  15723. name: "Sword",
  15724. image: {
  15725. source: "./media/characters/venio-darcony/sword.svg"
  15726. }
  15727. },
  15728. },
  15729. [
  15730. {
  15731. name: "Normal",
  15732. height: math.unit(10, "feet")
  15733. },
  15734. {
  15735. name: "Macro",
  15736. height: math.unit(130, "feet"),
  15737. default: true
  15738. },
  15739. {
  15740. name: "Macro+",
  15741. height: math.unit(240, "feet")
  15742. },
  15743. ]
  15744. ))
  15745. characterMakers.push(() => makeCharacter(
  15746. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15747. {
  15748. front: {
  15749. height: math.unit(6, "feet"),
  15750. weight: math.unit(150, "lb"),
  15751. name: "Front",
  15752. image: {
  15753. source: "./media/characters/veski/front.svg",
  15754. extra: 1299 / 1225,
  15755. bottom: 0.04
  15756. }
  15757. },
  15758. back: {
  15759. height: math.unit(6, "feet"),
  15760. weight: math.unit(150, "lb"),
  15761. name: "Back",
  15762. image: {
  15763. source: "./media/characters/veski/back.svg",
  15764. extra: 1299 / 1225,
  15765. bottom: 0.008
  15766. }
  15767. },
  15768. maw: {
  15769. height: math.unit(1.5 * 1.21, "feet"),
  15770. name: "Maw",
  15771. image: {
  15772. source: "./media/characters/veski/maw.svg"
  15773. }
  15774. },
  15775. },
  15776. [
  15777. {
  15778. name: "Macro",
  15779. height: math.unit(2, "km"),
  15780. default: true
  15781. },
  15782. ]
  15783. ))
  15784. characterMakers.push(() => makeCharacter(
  15785. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15786. {
  15787. front: {
  15788. height: math.unit(5 + 7 / 12, "feet"),
  15789. name: "Front",
  15790. image: {
  15791. source: "./media/characters/isabelle/front.svg",
  15792. extra: 2130 / 1976,
  15793. bottom: 0.05
  15794. }
  15795. },
  15796. },
  15797. [
  15798. {
  15799. name: "Supermicro",
  15800. height: math.unit(10, "micrometers")
  15801. },
  15802. {
  15803. name: "Micro",
  15804. height: math.unit(1, "inch")
  15805. },
  15806. {
  15807. name: "Tiny",
  15808. height: math.unit(5, "inches")
  15809. },
  15810. {
  15811. name: "Standard",
  15812. height: math.unit(5 + 7 / 12, "inches")
  15813. },
  15814. {
  15815. name: "Macro",
  15816. height: math.unit(80, "meters"),
  15817. default: true
  15818. },
  15819. {
  15820. name: "Megamacro",
  15821. height: math.unit(250, "meters")
  15822. },
  15823. {
  15824. name: "Gigamacro",
  15825. height: math.unit(5, "km")
  15826. },
  15827. {
  15828. name: "Cosmic",
  15829. height: math.unit(2.5e6, "miles")
  15830. },
  15831. ]
  15832. ))
  15833. characterMakers.push(() => makeCharacter(
  15834. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15835. {
  15836. front: {
  15837. height: math.unit(6, "feet"),
  15838. weight: math.unit(150, "lb"),
  15839. name: "Front",
  15840. image: {
  15841. source: "./media/characters/hanzo/front.svg",
  15842. extra: 374 / 344,
  15843. bottom: 0.02
  15844. }
  15845. },
  15846. },
  15847. [
  15848. {
  15849. name: "Normal",
  15850. height: math.unit(8, "feet"),
  15851. default: true
  15852. },
  15853. ]
  15854. ))
  15855. characterMakers.push(() => makeCharacter(
  15856. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15857. {
  15858. front: {
  15859. height: math.unit(7, "feet"),
  15860. weight: math.unit(130, "lb"),
  15861. name: "Front",
  15862. image: {
  15863. source: "./media/characters/anna/front.svg",
  15864. extra: 169 / 145,
  15865. bottom: 0.06
  15866. }
  15867. },
  15868. full: {
  15869. height: math.unit(4.96, "feet"),
  15870. weight: math.unit(220, "lb"),
  15871. name: "Full",
  15872. image: {
  15873. source: "./media/characters/anna/full.svg",
  15874. extra: 138 / 114,
  15875. bottom: 0.15
  15876. }
  15877. },
  15878. tongue: {
  15879. height: math.unit(2.53, "feet"),
  15880. name: "Tongue",
  15881. image: {
  15882. source: "./media/characters/anna/tongue.svg"
  15883. }
  15884. },
  15885. },
  15886. [
  15887. {
  15888. name: "Normal",
  15889. height: math.unit(7, "feet"),
  15890. default: true
  15891. },
  15892. ]
  15893. ))
  15894. characterMakers.push(() => makeCharacter(
  15895. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15896. {
  15897. front: {
  15898. height: math.unit(7, "feet"),
  15899. weight: math.unit(150, "lb"),
  15900. name: "Front",
  15901. image: {
  15902. source: "./media/characters/ian-corvid/front.svg",
  15903. extra: 150 / 142,
  15904. bottom: 0.02
  15905. }
  15906. },
  15907. back: {
  15908. height: math.unit(7, "feet"),
  15909. weight: math.unit(150, "lb"),
  15910. name: "Back",
  15911. image: {
  15912. source: "./media/characters/ian-corvid/back.svg",
  15913. extra: 150 / 143,
  15914. bottom: 0.01
  15915. }
  15916. },
  15917. stomping: {
  15918. height: math.unit(7, "feet"),
  15919. weight: math.unit(150, "lb"),
  15920. name: "Stomping",
  15921. image: {
  15922. source: "./media/characters/ian-corvid/stomping.svg",
  15923. extra: 76 / 72
  15924. }
  15925. },
  15926. sitting: {
  15927. height: math.unit(7 / 1.8, "feet"),
  15928. weight: math.unit(150, "lb"),
  15929. name: "Sitting",
  15930. image: {
  15931. source: "./media/characters/ian-corvid/sitting.svg",
  15932. extra: 1400 / 1269,
  15933. bottom: 0.15
  15934. }
  15935. },
  15936. },
  15937. [
  15938. {
  15939. name: "Tiny Microw",
  15940. height: math.unit(1, "inch")
  15941. },
  15942. {
  15943. name: "Microw",
  15944. height: math.unit(6, "inches")
  15945. },
  15946. {
  15947. name: "Crow",
  15948. height: math.unit(7 + 1 / 12, "feet"),
  15949. default: true
  15950. },
  15951. {
  15952. name: "Macrow",
  15953. height: math.unit(176, "feet")
  15954. },
  15955. ]
  15956. ))
  15957. characterMakers.push(() => makeCharacter(
  15958. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15959. {
  15960. front: {
  15961. height: math.unit(5 + 7 / 12, "feet"),
  15962. weight: math.unit(147, "lb"),
  15963. name: "Front",
  15964. image: {
  15965. source: "./media/characters/natalie-kellon/front.svg",
  15966. extra: 1214 / 1141,
  15967. bottom: 0.02
  15968. }
  15969. },
  15970. },
  15971. [
  15972. {
  15973. name: "Micro",
  15974. height: math.unit(1 / 16, "inch")
  15975. },
  15976. {
  15977. name: "Tiny",
  15978. height: math.unit(4, "inches")
  15979. },
  15980. {
  15981. name: "Normal",
  15982. height: math.unit(5 + 7 / 12, "feet"),
  15983. default: true
  15984. },
  15985. {
  15986. name: "Amazon",
  15987. height: math.unit(12, "feet")
  15988. },
  15989. {
  15990. name: "Giantess",
  15991. height: math.unit(160, "meters")
  15992. },
  15993. {
  15994. name: "Titaness",
  15995. height: math.unit(800, "meters")
  15996. },
  15997. ]
  15998. ))
  15999. characterMakers.push(() => makeCharacter(
  16000. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  16001. {
  16002. front: {
  16003. height: math.unit(6, "feet"),
  16004. weight: math.unit(150, "lb"),
  16005. name: "Front",
  16006. image: {
  16007. source: "./media/characters/alluria/front.svg",
  16008. extra: 806 / 738,
  16009. bottom: 0.01
  16010. }
  16011. },
  16012. side: {
  16013. height: math.unit(6, "feet"),
  16014. weight: math.unit(150, "lb"),
  16015. name: "Side",
  16016. image: {
  16017. source: "./media/characters/alluria/side.svg",
  16018. extra: 800 / 750,
  16019. }
  16020. },
  16021. back: {
  16022. height: math.unit(6, "feet"),
  16023. weight: math.unit(150, "lb"),
  16024. name: "Back",
  16025. image: {
  16026. source: "./media/characters/alluria/back.svg",
  16027. extra: 806 / 738,
  16028. }
  16029. },
  16030. frontMaid: {
  16031. height: math.unit(6, "feet"),
  16032. weight: math.unit(150, "lb"),
  16033. name: "Front (Maid)",
  16034. image: {
  16035. source: "./media/characters/alluria/front-maid.svg",
  16036. extra: 806 / 738,
  16037. bottom: 0.01
  16038. }
  16039. },
  16040. sideMaid: {
  16041. height: math.unit(6, "feet"),
  16042. weight: math.unit(150, "lb"),
  16043. name: "Side (Maid)",
  16044. image: {
  16045. source: "./media/characters/alluria/side-maid.svg",
  16046. extra: 800 / 750,
  16047. bottom: 0.005
  16048. }
  16049. },
  16050. backMaid: {
  16051. height: math.unit(6, "feet"),
  16052. weight: math.unit(150, "lb"),
  16053. name: "Back (Maid)",
  16054. image: {
  16055. source: "./media/characters/alluria/back-maid.svg",
  16056. extra: 806 / 738,
  16057. }
  16058. },
  16059. },
  16060. [
  16061. {
  16062. name: "Micro",
  16063. height: math.unit(6, "inches"),
  16064. default: true
  16065. },
  16066. ]
  16067. ))
  16068. characterMakers.push(() => makeCharacter(
  16069. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16070. {
  16071. front: {
  16072. height: math.unit(6, "feet"),
  16073. weight: math.unit(150, "lb"),
  16074. name: "Front",
  16075. image: {
  16076. source: "./media/characters/kyle/front.svg",
  16077. extra: 1069 / 962,
  16078. bottom: 77.228 / 1727.45
  16079. }
  16080. },
  16081. },
  16082. [
  16083. {
  16084. name: "Macro",
  16085. height: math.unit(150, "feet"),
  16086. default: true
  16087. },
  16088. ]
  16089. ))
  16090. characterMakers.push(() => makeCharacter(
  16091. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16092. {
  16093. front: {
  16094. height: math.unit(6, "feet"),
  16095. weight: math.unit(300, "lb"),
  16096. name: "Front",
  16097. image: {
  16098. source: "./media/characters/duncan/front.svg",
  16099. extra: 1650 / 1482,
  16100. bottom: 0.05
  16101. }
  16102. },
  16103. },
  16104. [
  16105. {
  16106. name: "Macro",
  16107. height: math.unit(100, "feet"),
  16108. default: true
  16109. },
  16110. ]
  16111. ))
  16112. characterMakers.push(() => makeCharacter(
  16113. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16114. {
  16115. front: {
  16116. height: math.unit(5 + 4 / 12, "feet"),
  16117. weight: math.unit(220, "lb"),
  16118. name: "Front",
  16119. image: {
  16120. source: "./media/characters/memory/front.svg",
  16121. extra: 3641 / 3545,
  16122. bottom: 0.03
  16123. }
  16124. },
  16125. back: {
  16126. height: math.unit(5 + 4 / 12, "feet"),
  16127. weight: math.unit(220, "lb"),
  16128. name: "Back",
  16129. image: {
  16130. source: "./media/characters/memory/back.svg",
  16131. extra: 3641 / 3545,
  16132. bottom: 0.025
  16133. }
  16134. },
  16135. frontSkirt: {
  16136. height: math.unit(5 + 4 / 12, "feet"),
  16137. weight: math.unit(220, "lb"),
  16138. name: "Front (Skirt)",
  16139. image: {
  16140. source: "./media/characters/memory/front-skirt.svg",
  16141. extra: 3641 / 3545,
  16142. bottom: 0.03
  16143. }
  16144. },
  16145. frontDress: {
  16146. height: math.unit(5 + 4 / 12, "feet"),
  16147. weight: math.unit(220, "lb"),
  16148. name: "Front (Dress)",
  16149. image: {
  16150. source: "./media/characters/memory/front-dress.svg",
  16151. extra: 3641 / 3545,
  16152. bottom: 0.03
  16153. }
  16154. },
  16155. },
  16156. [
  16157. {
  16158. name: "Micro",
  16159. height: math.unit(6, "inches"),
  16160. default: true
  16161. },
  16162. {
  16163. name: "Normal",
  16164. height: math.unit(5 + 4 / 12, "feet")
  16165. },
  16166. ]
  16167. ))
  16168. characterMakers.push(() => makeCharacter(
  16169. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16170. {
  16171. front: {
  16172. height: math.unit(4 + 11 / 12, "feet"),
  16173. weight: math.unit(100, "lb"),
  16174. name: "Front",
  16175. image: {
  16176. source: "./media/characters/luno/front.svg",
  16177. extra: 1535 / 1487,
  16178. bottom: 0.03
  16179. }
  16180. },
  16181. },
  16182. [
  16183. {
  16184. name: "Micro",
  16185. height: math.unit(3, "inches")
  16186. },
  16187. {
  16188. name: "Normal",
  16189. height: math.unit(4 + 11 / 12, "feet"),
  16190. default: true
  16191. },
  16192. {
  16193. name: "Macro",
  16194. height: math.unit(300, "feet")
  16195. },
  16196. {
  16197. name: "Megamacro",
  16198. height: math.unit(700, "miles")
  16199. },
  16200. ]
  16201. ))
  16202. characterMakers.push(() => makeCharacter(
  16203. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16204. {
  16205. front: {
  16206. height: math.unit(6 + 2 / 12, "feet"),
  16207. weight: math.unit(170, "lb"),
  16208. name: "Front",
  16209. image: {
  16210. source: "./media/characters/jamesy/front.svg",
  16211. extra: 440 / 382,
  16212. bottom: 0.005
  16213. }
  16214. },
  16215. },
  16216. [
  16217. {
  16218. name: "Micro",
  16219. height: math.unit(3, "inches")
  16220. },
  16221. {
  16222. name: "Normal",
  16223. height: math.unit(6 + 2 / 12, "feet"),
  16224. default: true
  16225. },
  16226. {
  16227. name: "Macro",
  16228. height: math.unit(300, "feet")
  16229. },
  16230. {
  16231. name: "Megamacro",
  16232. height: math.unit(700, "miles")
  16233. },
  16234. ]
  16235. ))
  16236. characterMakers.push(() => makeCharacter(
  16237. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16238. {
  16239. front: {
  16240. height: math.unit(6, "feet"),
  16241. weight: math.unit(160, "lb"),
  16242. name: "Front",
  16243. image: {
  16244. source: "./media/characters/mark/front.svg",
  16245. extra: 3300 / 3100,
  16246. bottom: 136.42 / 3440.47
  16247. }
  16248. },
  16249. },
  16250. [
  16251. {
  16252. name: "Macro",
  16253. height: math.unit(120, "meters")
  16254. },
  16255. {
  16256. name: "Bigger Macro",
  16257. height: math.unit(350, "meters")
  16258. },
  16259. {
  16260. name: "Megamacro",
  16261. height: math.unit(8, "km"),
  16262. default: true
  16263. },
  16264. {
  16265. name: "Continental",
  16266. height: math.unit(4550, "km")
  16267. },
  16268. {
  16269. name: "Planetary",
  16270. height: math.unit(65000, "km")
  16271. },
  16272. ]
  16273. ))
  16274. characterMakers.push(() => makeCharacter(
  16275. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16276. {
  16277. front: {
  16278. height: math.unit(6, "feet"),
  16279. weight: math.unit(400, "lb"),
  16280. name: "Front",
  16281. image: {
  16282. source: "./media/characters/mac/front.svg",
  16283. extra: 1048 / 987.7,
  16284. bottom: 60 / 1107.6,
  16285. }
  16286. },
  16287. },
  16288. [
  16289. {
  16290. name: "Macro",
  16291. height: math.unit(500, "feet"),
  16292. default: true
  16293. },
  16294. ]
  16295. ))
  16296. characterMakers.push(() => makeCharacter(
  16297. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16298. {
  16299. front: {
  16300. height: math.unit(5 + 2 / 12, "feet"),
  16301. weight: math.unit(190, "lb"),
  16302. name: "Front",
  16303. image: {
  16304. source: "./media/characters/bari/front.svg",
  16305. extra: 3156 / 2880,
  16306. bottom: 0.03
  16307. }
  16308. },
  16309. back: {
  16310. height: math.unit(5 + 2 / 12, "feet"),
  16311. weight: math.unit(190, "lb"),
  16312. name: "Back",
  16313. image: {
  16314. source: "./media/characters/bari/back.svg",
  16315. extra: 3260 / 2834,
  16316. bottom: 0.025
  16317. }
  16318. },
  16319. frontPlush: {
  16320. height: math.unit(5 + 2 / 12, "feet"),
  16321. weight: math.unit(190, "lb"),
  16322. name: "Front (Plush)",
  16323. image: {
  16324. source: "./media/characters/bari/front-plush.svg",
  16325. extra: 1112 / 1061,
  16326. bottom: 0.002
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Micro",
  16333. height: math.unit(3, "inches")
  16334. },
  16335. {
  16336. name: "Normal",
  16337. height: math.unit(5 + 2 / 12, "feet"),
  16338. default: true
  16339. },
  16340. {
  16341. name: "Macro",
  16342. height: math.unit(20, "feet")
  16343. },
  16344. ]
  16345. ))
  16346. characterMakers.push(() => makeCharacter(
  16347. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16348. {
  16349. front: {
  16350. height: math.unit(6 + 1 / 12, "feet"),
  16351. weight: math.unit(275, "lb"),
  16352. name: "Front",
  16353. image: {
  16354. source: "./media/characters/hunter-misha-raven/front.svg"
  16355. }
  16356. },
  16357. },
  16358. [
  16359. {
  16360. name: "Mortal",
  16361. height: math.unit(6 + 1 / 12, "feet")
  16362. },
  16363. {
  16364. name: "Divine",
  16365. height: math.unit(1.12134e34, "parsecs"),
  16366. default: true
  16367. },
  16368. ]
  16369. ))
  16370. characterMakers.push(() => makeCharacter(
  16371. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16372. {
  16373. front: {
  16374. height: math.unit(6 + 3 / 12, "feet"),
  16375. weight: math.unit(220, "lb"),
  16376. name: "Front",
  16377. image: {
  16378. source: "./media/characters/max-calore/front.svg",
  16379. extra: 1700 / 1648,
  16380. bottom: 0.01
  16381. }
  16382. },
  16383. back: {
  16384. height: math.unit(6 + 3 / 12, "feet"),
  16385. weight: math.unit(220, "lb"),
  16386. name: "Back",
  16387. image: {
  16388. source: "./media/characters/max-calore/back.svg",
  16389. extra: 1700 / 1648,
  16390. bottom: 0.01
  16391. }
  16392. },
  16393. },
  16394. [
  16395. {
  16396. name: "Normal",
  16397. height: math.unit(6 + 3 / 12, "feet"),
  16398. default: true
  16399. },
  16400. ]
  16401. ))
  16402. characterMakers.push(() => makeCharacter(
  16403. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16404. {
  16405. side: {
  16406. height: math.unit(2 + 8 / 12, "feet"),
  16407. weight: math.unit(99, "lb"),
  16408. name: "Side",
  16409. image: {
  16410. source: "./media/characters/aspen/side.svg",
  16411. extra: 152 / 138,
  16412. bottom: 0.032
  16413. }
  16414. },
  16415. },
  16416. [
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(2 + 8 / 12, "feet"),
  16420. default: true
  16421. },
  16422. ]
  16423. ))
  16424. characterMakers.push(() => makeCharacter(
  16425. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16426. {
  16427. side: {
  16428. height: math.unit(3 + 2 / 12, "feet"),
  16429. weight: math.unit(224, "lb"),
  16430. name: "Side",
  16431. image: {
  16432. source: "./media/characters/sheila-feral-wolf/side.svg",
  16433. extra: 179 / 166,
  16434. bottom: 0.03
  16435. }
  16436. },
  16437. },
  16438. [
  16439. {
  16440. name: "Normal",
  16441. height: math.unit(3 + 2 / 12, "feet"),
  16442. default: true
  16443. },
  16444. ]
  16445. ))
  16446. characterMakers.push(() => makeCharacter(
  16447. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16448. {
  16449. side: {
  16450. height: math.unit(1 + 9 / 12, "feet"),
  16451. weight: math.unit(38, "lb"),
  16452. name: "Side",
  16453. image: {
  16454. source: "./media/characters/michelle/side.svg",
  16455. extra: 147 / 136.7,
  16456. bottom: 0.03
  16457. }
  16458. },
  16459. },
  16460. [
  16461. {
  16462. name: "Normal",
  16463. height: math.unit(1 + 9 / 12, "feet"),
  16464. default: true
  16465. },
  16466. ]
  16467. ))
  16468. characterMakers.push(() => makeCharacter(
  16469. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16470. {
  16471. front: {
  16472. height: math.unit(1 + 1 / 12, "feet"),
  16473. weight: math.unit(18, "lb"),
  16474. name: "Front",
  16475. image: {
  16476. source: "./media/characters/nino/front.svg"
  16477. }
  16478. },
  16479. },
  16480. [
  16481. {
  16482. name: "Normal",
  16483. height: math.unit(1 + 1 / 12, "feet"),
  16484. default: true
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16490. {
  16491. front: {
  16492. height: math.unit(1, "feet"),
  16493. weight: math.unit(16, "lb"),
  16494. name: "Front",
  16495. image: {
  16496. source: "./media/characters/viola/front.svg"
  16497. }
  16498. },
  16499. },
  16500. [
  16501. {
  16502. name: "Normal",
  16503. height: math.unit(1, "feet"),
  16504. default: true
  16505. },
  16506. ]
  16507. ))
  16508. characterMakers.push(() => makeCharacter(
  16509. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16510. {
  16511. front: {
  16512. height: math.unit(6 + 5 / 12, "feet"),
  16513. weight: math.unit(580, "lb"),
  16514. name: "Front",
  16515. image: {
  16516. source: "./media/characters/atlas/front.svg",
  16517. extra: 298.5 / 290,
  16518. bottom: 0.015
  16519. }
  16520. },
  16521. },
  16522. [
  16523. {
  16524. name: "Normal",
  16525. height: math.unit(6 + 5 / 12, "feet"),
  16526. default: true
  16527. },
  16528. ]
  16529. ))
  16530. characterMakers.push(() => makeCharacter(
  16531. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16532. {
  16533. side: {
  16534. height: math.unit(1 + 10 / 12, "feet"),
  16535. weight: math.unit(25, "lb"),
  16536. name: "Side",
  16537. image: {
  16538. source: "./media/characters/davy/side.svg",
  16539. extra: 200 / 170,
  16540. bottom: 0.01
  16541. }
  16542. },
  16543. },
  16544. [
  16545. {
  16546. name: "Normal",
  16547. height: math.unit(1 + 10 / 12, "feet"),
  16548. default: true
  16549. },
  16550. ]
  16551. ))
  16552. characterMakers.push(() => makeCharacter(
  16553. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16554. {
  16555. side: {
  16556. height: math.unit(4 + 8 / 12, "feet"),
  16557. weight: math.unit(166, "lb"),
  16558. name: "Side",
  16559. image: {
  16560. source: "./media/characters/fiona/side.svg",
  16561. extra: 232 / 220,
  16562. bottom: 0.03
  16563. }
  16564. },
  16565. },
  16566. [
  16567. {
  16568. name: "Normal",
  16569. height: math.unit(4 + 8 / 12, "feet"),
  16570. default: true
  16571. },
  16572. ]
  16573. ))
  16574. characterMakers.push(() => makeCharacter(
  16575. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16576. {
  16577. front: {
  16578. height: math.unit(2, "feet"),
  16579. weight: math.unit(62, "lb"),
  16580. name: "Front",
  16581. image: {
  16582. source: "./media/characters/lyla/front.svg",
  16583. bottom: 0.1
  16584. }
  16585. },
  16586. },
  16587. [
  16588. {
  16589. name: "Normal",
  16590. height: math.unit(2, "feet"),
  16591. default: true
  16592. },
  16593. ]
  16594. ))
  16595. characterMakers.push(() => makeCharacter(
  16596. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16597. {
  16598. side: {
  16599. height: math.unit(1.8, "feet"),
  16600. weight: math.unit(44, "lb"),
  16601. name: "Side",
  16602. image: {
  16603. source: "./media/characters/perseus/side.svg",
  16604. bottom: 0.21
  16605. }
  16606. },
  16607. },
  16608. [
  16609. {
  16610. name: "Normal",
  16611. height: math.unit(1.8, "feet"),
  16612. default: true
  16613. },
  16614. ]
  16615. ))
  16616. characterMakers.push(() => makeCharacter(
  16617. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16618. {
  16619. side: {
  16620. height: math.unit(4 + 2 / 12, "feet"),
  16621. weight: math.unit(20, "lb"),
  16622. name: "Side",
  16623. image: {
  16624. source: "./media/characters/remus/side.svg"
  16625. }
  16626. },
  16627. },
  16628. [
  16629. {
  16630. name: "Normal",
  16631. height: math.unit(4 + 2 / 12, "feet"),
  16632. default: true
  16633. },
  16634. ]
  16635. ))
  16636. characterMakers.push(() => makeCharacter(
  16637. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16638. {
  16639. front: {
  16640. height: math.unit(4 + 11 / 12, "feet"),
  16641. weight: math.unit(114, "lb"),
  16642. name: "Front",
  16643. image: {
  16644. source: "./media/characters/raf/front.svg",
  16645. bottom: 20.5 / 1863
  16646. }
  16647. },
  16648. side: {
  16649. height: math.unit(4 + 11 / 12, "feet"),
  16650. weight: math.unit(114, "lb"),
  16651. name: "Side",
  16652. image: {
  16653. source: "./media/characters/raf/side.svg",
  16654. bottom: 22 / 1822
  16655. }
  16656. },
  16657. },
  16658. [
  16659. {
  16660. name: "Micro",
  16661. height: math.unit(2, "inches")
  16662. },
  16663. {
  16664. name: "Normal",
  16665. height: math.unit(4 + 11 / 12, "feet"),
  16666. default: true
  16667. },
  16668. {
  16669. name: "Macro",
  16670. height: math.unit(70, "feet")
  16671. },
  16672. ]
  16673. ))
  16674. characterMakers.push(() => makeCharacter(
  16675. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16676. {
  16677. front: {
  16678. height: math.unit(1.5, "meters"),
  16679. weight: math.unit(68, "kg"),
  16680. name: "Front",
  16681. image: {
  16682. source: "./media/characters/liam-einarr/front.svg",
  16683. extra: 2822 / 2666
  16684. }
  16685. },
  16686. back: {
  16687. height: math.unit(1.5, "meters"),
  16688. weight: math.unit(68, "kg"),
  16689. name: "Back",
  16690. image: {
  16691. source: "./media/characters/liam-einarr/back.svg",
  16692. extra: 2822 / 2666,
  16693. bottom: 0.015
  16694. }
  16695. },
  16696. },
  16697. [
  16698. {
  16699. name: "Normal",
  16700. height: math.unit(1.5, "meters"),
  16701. default: true
  16702. },
  16703. {
  16704. name: "Macro",
  16705. height: math.unit(150, "meters")
  16706. },
  16707. {
  16708. name: "Megamacro",
  16709. height: math.unit(35, "km")
  16710. },
  16711. ]
  16712. ))
  16713. characterMakers.push(() => makeCharacter(
  16714. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16715. {
  16716. front: {
  16717. height: math.unit(6, "feet"),
  16718. weight: math.unit(75, "kg"),
  16719. name: "Front",
  16720. image: {
  16721. source: "./media/characters/linda/front.svg",
  16722. extra: 930 / 874,
  16723. bottom: 0.004
  16724. }
  16725. },
  16726. },
  16727. [
  16728. {
  16729. name: "Normal",
  16730. height: math.unit(6, "feet"),
  16731. default: true
  16732. },
  16733. ]
  16734. ))
  16735. characterMakers.push(() => makeCharacter(
  16736. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16737. {
  16738. front: {
  16739. height: math.unit(6 + 8 / 12, "feet"),
  16740. weight: math.unit(220, "lb"),
  16741. name: "Front",
  16742. image: {
  16743. source: "./media/characters/caylex/front.svg",
  16744. extra: 821 / 772,
  16745. bottom: 0.07
  16746. }
  16747. },
  16748. back: {
  16749. height: math.unit(6 + 8 / 12, "feet"),
  16750. weight: math.unit(220, "lb"),
  16751. name: "Back",
  16752. image: {
  16753. source: "./media/characters/caylex/back.svg",
  16754. extra: 821 / 772,
  16755. bottom: 0.022
  16756. }
  16757. },
  16758. hand: {
  16759. height: math.unit(1.25, "feet"),
  16760. name: "Hand",
  16761. image: {
  16762. source: "./media/characters/caylex/hand.svg"
  16763. }
  16764. },
  16765. foot: {
  16766. height: math.unit(1.6, "feet"),
  16767. name: "Foot",
  16768. image: {
  16769. source: "./media/characters/caylex/foot.svg"
  16770. }
  16771. },
  16772. armored: {
  16773. height: math.unit(6 + 8 / 12, "feet"),
  16774. weight: math.unit(250, "lb"),
  16775. name: "Armored",
  16776. image: {
  16777. source: "./media/characters/caylex/armored.svg",
  16778. extra: 1420 / 1310,
  16779. bottom: 0.045
  16780. }
  16781. },
  16782. },
  16783. [
  16784. {
  16785. name: "Normal",
  16786. height: math.unit(6 + 8 / 12, "feet"),
  16787. default: true
  16788. },
  16789. {
  16790. name: "Normal+",
  16791. height: math.unit(12, "feet")
  16792. },
  16793. ]
  16794. ))
  16795. characterMakers.push(() => makeCharacter(
  16796. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16797. {
  16798. front: {
  16799. height: math.unit(7 + 6 / 12, "feet"),
  16800. weight: math.unit(288, "lb"),
  16801. name: "Front",
  16802. image: {
  16803. source: "./media/characters/alana/front.svg",
  16804. extra: 679 / 653,
  16805. bottom: 22.5 / 701
  16806. }
  16807. },
  16808. },
  16809. [
  16810. {
  16811. name: "Normal",
  16812. height: math.unit(7 + 6 / 12, "feet")
  16813. },
  16814. {
  16815. name: "Large",
  16816. height: math.unit(50, "feet")
  16817. },
  16818. {
  16819. name: "Macro",
  16820. height: math.unit(100, "feet"),
  16821. default: true
  16822. },
  16823. {
  16824. name: "Macro+",
  16825. height: math.unit(200, "feet")
  16826. },
  16827. ]
  16828. ))
  16829. characterMakers.push(() => makeCharacter(
  16830. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16831. {
  16832. front: {
  16833. height: math.unit(6 + 1 / 12, "feet"),
  16834. weight: math.unit(210, "lb"),
  16835. name: "Front",
  16836. image: {
  16837. source: "./media/characters/hasani/front.svg",
  16838. extra: 244 / 232,
  16839. bottom: 0.01
  16840. }
  16841. },
  16842. back: {
  16843. height: math.unit(6 + 1 / 12, "feet"),
  16844. weight: math.unit(210, "lb"),
  16845. name: "Back",
  16846. image: {
  16847. source: "./media/characters/hasani/back.svg",
  16848. extra: 244 / 232,
  16849. bottom: 0.01
  16850. }
  16851. },
  16852. },
  16853. [
  16854. {
  16855. name: "Normal",
  16856. height: math.unit(6 + 1 / 12, "feet")
  16857. },
  16858. {
  16859. name: "Macro",
  16860. height: math.unit(175, "feet"),
  16861. default: true
  16862. },
  16863. ]
  16864. ))
  16865. characterMakers.push(() => makeCharacter(
  16866. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16867. {
  16868. front: {
  16869. height: math.unit(1.82, "meters"),
  16870. weight: math.unit(140, "lb"),
  16871. name: "Front",
  16872. image: {
  16873. source: "./media/characters/nita/front.svg",
  16874. extra: 2473 / 2363,
  16875. bottom: 0.01
  16876. }
  16877. },
  16878. },
  16879. [
  16880. {
  16881. name: "Normal",
  16882. height: math.unit(1.82, "m")
  16883. },
  16884. {
  16885. name: "Macro",
  16886. height: math.unit(300, "m")
  16887. },
  16888. {
  16889. name: "Mistake Canon",
  16890. height: math.unit(0.5, "miles"),
  16891. default: true
  16892. },
  16893. {
  16894. name: "Big Mistake",
  16895. height: math.unit(13, "miles")
  16896. },
  16897. {
  16898. name: "Playing God",
  16899. height: math.unit(2450, "miles")
  16900. },
  16901. ]
  16902. ))
  16903. characterMakers.push(() => makeCharacter(
  16904. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16905. {
  16906. front: {
  16907. height: math.unit(4, "feet"),
  16908. weight: math.unit(120, "lb"),
  16909. name: "Front",
  16910. image: {
  16911. source: "./media/characters/shiriko/front.svg",
  16912. extra: 195 / 188
  16913. }
  16914. },
  16915. },
  16916. [
  16917. {
  16918. name: "Normal",
  16919. height: math.unit(4, "feet"),
  16920. default: true
  16921. },
  16922. ]
  16923. ))
  16924. characterMakers.push(() => makeCharacter(
  16925. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16926. {
  16927. front: {
  16928. height: math.unit(6, "feet"),
  16929. name: "front",
  16930. image: {
  16931. source: "./media/characters/deja/front.svg",
  16932. extra: 926 / 840,
  16933. bottom: 0.07
  16934. }
  16935. },
  16936. },
  16937. [
  16938. {
  16939. name: "Planck Length",
  16940. height: math.unit(1.6e-35, "meters")
  16941. },
  16942. {
  16943. name: "Normal",
  16944. height: math.unit(30.48, "meters"),
  16945. default: true
  16946. },
  16947. {
  16948. name: "Universal",
  16949. height: math.unit(8.8e26, "meters")
  16950. },
  16951. ]
  16952. ))
  16953. characterMakers.push(() => makeCharacter(
  16954. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16955. {
  16956. side: {
  16957. height: math.unit(8, "feet"),
  16958. weight: math.unit(6300, "lb"),
  16959. name: "Side",
  16960. image: {
  16961. source: "./media/characters/anima/side.svg",
  16962. bottom: 0.035
  16963. }
  16964. },
  16965. },
  16966. [
  16967. {
  16968. name: "Normal",
  16969. height: math.unit(8, "feet"),
  16970. default: true
  16971. },
  16972. ]
  16973. ))
  16974. characterMakers.push(() => makeCharacter(
  16975. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16976. {
  16977. front: {
  16978. height: math.unit(8, "feet"),
  16979. weight: math.unit(350, "lb"),
  16980. name: "Front",
  16981. image: {
  16982. source: "./media/characters/bianca/front.svg",
  16983. extra: 234 / 225,
  16984. bottom: 0.03
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Normal",
  16991. height: math.unit(8, "feet"),
  16992. default: true
  16993. },
  16994. ]
  16995. ))
  16996. characterMakers.push(() => makeCharacter(
  16997. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16998. {
  16999. front: {
  17000. height: math.unit(6, "feet"),
  17001. weight: math.unit(150, "lb"),
  17002. name: "Front",
  17003. image: {
  17004. source: "./media/characters/adinia/front.svg",
  17005. extra: 1845 / 1672,
  17006. bottom: 0.02
  17007. }
  17008. },
  17009. back: {
  17010. height: math.unit(6, "feet"),
  17011. weight: math.unit(150, "lb"),
  17012. name: "Back",
  17013. image: {
  17014. source: "./media/characters/adinia/back.svg",
  17015. extra: 1845 / 1672,
  17016. bottom: 0.002
  17017. }
  17018. },
  17019. },
  17020. [
  17021. {
  17022. name: "Normal",
  17023. height: math.unit(11 + 5 / 12, "feet"),
  17024. default: true
  17025. },
  17026. ]
  17027. ))
  17028. characterMakers.push(() => makeCharacter(
  17029. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17030. {
  17031. front: {
  17032. height: math.unit(3, "meters"),
  17033. weight: math.unit(200, "kg"),
  17034. name: "Front",
  17035. image: {
  17036. source: "./media/characters/lykasa/front.svg",
  17037. extra: 1076 / 976,
  17038. bottom: 0.06
  17039. }
  17040. },
  17041. },
  17042. [
  17043. {
  17044. name: "Normal",
  17045. height: math.unit(3, "meters")
  17046. },
  17047. {
  17048. name: "Kaiju",
  17049. height: math.unit(120, "meters"),
  17050. default: true
  17051. },
  17052. {
  17053. name: "Mega Kaiju",
  17054. height: math.unit(240, "km")
  17055. },
  17056. {
  17057. name: "Giga Kaiju",
  17058. height: math.unit(400, "megameters")
  17059. },
  17060. {
  17061. name: "Tera Kaiju",
  17062. height: math.unit(800, "gigameters")
  17063. },
  17064. {
  17065. name: "Kaiju Dragon Goddess",
  17066. height: math.unit(26, "zettaparsecs")
  17067. },
  17068. ]
  17069. ))
  17070. characterMakers.push(() => makeCharacter(
  17071. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17072. {
  17073. side: {
  17074. height: math.unit(283 / 124 * 6, "feet"),
  17075. weight: math.unit(35000, "lb"),
  17076. name: "Side",
  17077. image: {
  17078. source: "./media/characters/malfaren/side.svg",
  17079. extra: 2500 / 1010,
  17080. bottom: 0.01
  17081. }
  17082. },
  17083. front: {
  17084. height: math.unit(22.36, "feet"),
  17085. weight: math.unit(35000, "lb"),
  17086. name: "Front",
  17087. image: {
  17088. source: "./media/characters/malfaren/front.svg",
  17089. extra: 1631 / 1476,
  17090. bottom: 0.01
  17091. }
  17092. },
  17093. maw: {
  17094. height: math.unit(6.9, "feet"),
  17095. name: "Maw",
  17096. image: {
  17097. source: "./media/characters/malfaren/maw.svg"
  17098. }
  17099. },
  17100. },
  17101. [
  17102. {
  17103. name: "Big",
  17104. height: math.unit(283 / 162 * 6, "feet"),
  17105. },
  17106. {
  17107. name: "Bigger",
  17108. height: math.unit(283 / 124 * 6, "feet")
  17109. },
  17110. {
  17111. name: "Massive",
  17112. height: math.unit(283 / 92 * 6, "feet"),
  17113. default: true
  17114. },
  17115. {
  17116. name: "👀💦",
  17117. height: math.unit(283 / 73 * 6, "feet"),
  17118. },
  17119. ]
  17120. ))
  17121. characterMakers.push(() => makeCharacter(
  17122. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17123. {
  17124. front: {
  17125. height: math.unit(1.7, "m"),
  17126. weight: math.unit(70, "kg"),
  17127. name: "Front",
  17128. image: {
  17129. source: "./media/characters/kernel/front.svg",
  17130. extra: 222 / 210,
  17131. bottom: 0.007
  17132. }
  17133. },
  17134. },
  17135. [
  17136. {
  17137. name: "Nano",
  17138. height: math.unit(17, "micrometers")
  17139. },
  17140. {
  17141. name: "Micro",
  17142. height: math.unit(1.7, "mm")
  17143. },
  17144. {
  17145. name: "Small",
  17146. height: math.unit(1.7, "cm")
  17147. },
  17148. {
  17149. name: "Normal",
  17150. height: math.unit(1.7, "m"),
  17151. default: true
  17152. },
  17153. ]
  17154. ))
  17155. characterMakers.push(() => makeCharacter(
  17156. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17157. {
  17158. front: {
  17159. height: math.unit(1.75, "meters"),
  17160. weight: math.unit(65, "kg"),
  17161. name: "Front",
  17162. image: {
  17163. source: "./media/characters/jayne-folest/front.svg",
  17164. extra: 2115 / 2007,
  17165. bottom: 0.02
  17166. }
  17167. },
  17168. back: {
  17169. height: math.unit(1.75, "meters"),
  17170. weight: math.unit(65, "kg"),
  17171. name: "Back",
  17172. image: {
  17173. source: "./media/characters/jayne-folest/back.svg",
  17174. extra: 2115 / 2007,
  17175. bottom: 0.005
  17176. }
  17177. },
  17178. frontClothed: {
  17179. height: math.unit(1.75, "meters"),
  17180. weight: math.unit(65, "kg"),
  17181. name: "Front (Clothed)",
  17182. image: {
  17183. source: "./media/characters/jayne-folest/front-clothed.svg",
  17184. extra: 2115 / 2007,
  17185. bottom: 0.035
  17186. }
  17187. },
  17188. hand: {
  17189. height: math.unit(1 / 1.260, "feet"),
  17190. name: "Hand",
  17191. image: {
  17192. source: "./media/characters/jayne-folest/hand.svg"
  17193. }
  17194. },
  17195. foot: {
  17196. height: math.unit(1 / 0.918, "feet"),
  17197. name: "Foot",
  17198. image: {
  17199. source: "./media/characters/jayne-folest/foot.svg"
  17200. }
  17201. },
  17202. },
  17203. [
  17204. {
  17205. name: "Micro",
  17206. height: math.unit(4, "cm")
  17207. },
  17208. {
  17209. name: "Normal",
  17210. height: math.unit(1.75, "meters")
  17211. },
  17212. {
  17213. name: "Macro",
  17214. height: math.unit(47.5, "meters"),
  17215. default: true
  17216. },
  17217. ]
  17218. ))
  17219. characterMakers.push(() => makeCharacter(
  17220. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17221. {
  17222. front: {
  17223. height: math.unit(180, "cm"),
  17224. weight: math.unit(70, "kg"),
  17225. name: "Front",
  17226. image: {
  17227. source: "./media/characters/algier/front.svg",
  17228. extra: 596 / 572,
  17229. bottom: 0.04
  17230. }
  17231. },
  17232. back: {
  17233. height: math.unit(180, "cm"),
  17234. weight: math.unit(70, "kg"),
  17235. name: "Back",
  17236. image: {
  17237. source: "./media/characters/algier/back.svg",
  17238. extra: 596 / 572,
  17239. bottom: 0.025
  17240. }
  17241. },
  17242. frontdressed: {
  17243. height: math.unit(180, "cm"),
  17244. weight: math.unit(150, "kg"),
  17245. name: "Front-dressed",
  17246. image: {
  17247. source: "./media/characters/algier/front-dressed.svg",
  17248. extra: 596 / 572,
  17249. bottom: 0.038
  17250. }
  17251. },
  17252. },
  17253. [
  17254. {
  17255. name: "Micro",
  17256. height: math.unit(5, "cm")
  17257. },
  17258. {
  17259. name: "Normal",
  17260. height: math.unit(180, "cm"),
  17261. default: true
  17262. },
  17263. {
  17264. name: "Macro",
  17265. height: math.unit(64, "m")
  17266. },
  17267. ]
  17268. ))
  17269. characterMakers.push(() => makeCharacter(
  17270. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17271. {
  17272. upright: {
  17273. height: math.unit(7, "feet"),
  17274. weight: math.unit(300, "lb"),
  17275. name: "Upright",
  17276. image: {
  17277. source: "./media/characters/pretzel/upright.svg",
  17278. extra: 534 / 522,
  17279. bottom: 0.065
  17280. }
  17281. },
  17282. sprawling: {
  17283. height: math.unit(3.75, "feet"),
  17284. weight: math.unit(300, "lb"),
  17285. name: "Sprawling",
  17286. image: {
  17287. source: "./media/characters/pretzel/sprawling.svg",
  17288. extra: 314 / 281,
  17289. bottom: 0.1
  17290. }
  17291. },
  17292. tongue: {
  17293. height: math.unit(2, "feet"),
  17294. name: "Tongue",
  17295. image: {
  17296. source: "./media/characters/pretzel/tongue.svg"
  17297. }
  17298. },
  17299. },
  17300. [
  17301. {
  17302. name: "Normal",
  17303. height: math.unit(7, "feet"),
  17304. default: true
  17305. },
  17306. {
  17307. name: "Oversized",
  17308. height: math.unit(15, "feet")
  17309. },
  17310. {
  17311. name: "Huge",
  17312. height: math.unit(30, "feet")
  17313. },
  17314. {
  17315. name: "Macro",
  17316. height: math.unit(250, "feet")
  17317. },
  17318. ]
  17319. ))
  17320. characterMakers.push(() => makeCharacter(
  17321. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17322. {
  17323. sideFront: {
  17324. height: math.unit(5 + 2 / 12, "feet"),
  17325. weight: math.unit(120, "lb"),
  17326. name: "Front Side",
  17327. image: {
  17328. source: "./media/characters/roxi/side-front.svg",
  17329. extra: 2924 / 2717,
  17330. bottom: 0.08
  17331. }
  17332. },
  17333. sideBack: {
  17334. height: math.unit(5 + 2 / 12, "feet"),
  17335. weight: math.unit(120, "lb"),
  17336. name: "Back Side",
  17337. image: {
  17338. source: "./media/characters/roxi/side-back.svg",
  17339. extra: 2904 / 2693,
  17340. bottom: 0.06
  17341. }
  17342. },
  17343. front: {
  17344. height: math.unit(5 + 2 / 12, "feet"),
  17345. weight: math.unit(120, "lb"),
  17346. name: "Front",
  17347. image: {
  17348. source: "./media/characters/roxi/front.svg",
  17349. extra: 2028 / 1907,
  17350. bottom: 0.01
  17351. }
  17352. },
  17353. frontAlt: {
  17354. height: math.unit(5 + 2 / 12, "feet"),
  17355. weight: math.unit(120, "lb"),
  17356. name: "Front (Alt)",
  17357. image: {
  17358. source: "./media/characters/roxi/front-alt.svg",
  17359. extra: 1828 / 1798,
  17360. bottom: 0.01
  17361. }
  17362. },
  17363. sitting: {
  17364. height: math.unit(2.8, "feet"),
  17365. weight: math.unit(120, "lb"),
  17366. name: "Sitting",
  17367. image: {
  17368. source: "./media/characters/roxi/sitting.svg",
  17369. extra: 2660 / 2462,
  17370. bottom: 0.1
  17371. }
  17372. },
  17373. },
  17374. [
  17375. {
  17376. name: "Normal",
  17377. height: math.unit(5 + 2 / 12, "feet"),
  17378. default: true
  17379. },
  17380. ]
  17381. ))
  17382. characterMakers.push(() => makeCharacter(
  17383. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17384. {
  17385. side: {
  17386. height: math.unit(55, "feet"),
  17387. weight: math.unit(153, "tons"),
  17388. name: "Side",
  17389. image: {
  17390. source: "./media/characters/shadow/side.svg",
  17391. extra: 701 / 628,
  17392. bottom: 0.02
  17393. }
  17394. },
  17395. flying: {
  17396. height: math.unit(145, "feet"),
  17397. weight: math.unit(153, "tons"),
  17398. name: "Flying",
  17399. image: {
  17400. source: "./media/characters/shadow/flying.svg"
  17401. }
  17402. },
  17403. },
  17404. [
  17405. {
  17406. name: "Normal",
  17407. height: math.unit(55, "feet"),
  17408. default: true
  17409. },
  17410. ]
  17411. ))
  17412. characterMakers.push(() => makeCharacter(
  17413. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17414. {
  17415. front: {
  17416. height: math.unit(6, "feet"),
  17417. weight: math.unit(200, "lb"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/marcie/front.svg",
  17421. extra: 960 / 876,
  17422. bottom: 58 / 1017.87
  17423. }
  17424. },
  17425. },
  17426. [
  17427. {
  17428. name: "Macro",
  17429. height: math.unit(1, "mile"),
  17430. default: true
  17431. },
  17432. ]
  17433. ))
  17434. characterMakers.push(() => makeCharacter(
  17435. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17436. {
  17437. front: {
  17438. height: math.unit(7, "feet"),
  17439. weight: math.unit(200, "lb"),
  17440. name: "Front",
  17441. image: {
  17442. source: "./media/characters/kachina/front.svg",
  17443. extra: 1290.68 / 1119,
  17444. bottom: 36.5 / 1327.18
  17445. }
  17446. },
  17447. },
  17448. [
  17449. {
  17450. name: "Normal",
  17451. height: math.unit(7, "feet"),
  17452. default: true
  17453. },
  17454. ]
  17455. ))
  17456. characterMakers.push(() => makeCharacter(
  17457. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17458. {
  17459. looking: {
  17460. height: math.unit(2, "meters"),
  17461. weight: math.unit(300, "kg"),
  17462. name: "Looking",
  17463. image: {
  17464. source: "./media/characters/kash/looking.svg",
  17465. extra: 474 / 344,
  17466. bottom: 0.03
  17467. }
  17468. },
  17469. side: {
  17470. height: math.unit(2, "meters"),
  17471. weight: math.unit(300, "kg"),
  17472. name: "Side",
  17473. image: {
  17474. source: "./media/characters/kash/side.svg",
  17475. extra: 302 / 251,
  17476. bottom: 0.03
  17477. }
  17478. },
  17479. front: {
  17480. height: math.unit(2, "meters"),
  17481. weight: math.unit(300, "kg"),
  17482. name: "Front",
  17483. image: {
  17484. source: "./media/characters/kash/front.svg",
  17485. extra: 495 / 360,
  17486. bottom: 0.015
  17487. }
  17488. },
  17489. },
  17490. [
  17491. {
  17492. name: "Normal",
  17493. height: math.unit(2, "meters"),
  17494. default: true
  17495. },
  17496. {
  17497. name: "Big",
  17498. height: math.unit(3, "meters")
  17499. },
  17500. {
  17501. name: "Large",
  17502. height: math.unit(5, "meters")
  17503. },
  17504. ]
  17505. ))
  17506. characterMakers.push(() => makeCharacter(
  17507. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17508. {
  17509. feeding: {
  17510. height: math.unit(6.7, "feet"),
  17511. weight: math.unit(350, "lb"),
  17512. name: "Feeding",
  17513. image: {
  17514. source: "./media/characters/lalim/feeding.svg",
  17515. }
  17516. },
  17517. },
  17518. [
  17519. {
  17520. name: "Normal",
  17521. height: math.unit(6.7, "feet"),
  17522. default: true
  17523. },
  17524. ]
  17525. ))
  17526. characterMakers.push(() => makeCharacter(
  17527. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17528. {
  17529. front: {
  17530. height: math.unit(9.5, "feet"),
  17531. weight: math.unit(600, "lb"),
  17532. name: "Front",
  17533. image: {
  17534. source: "./media/characters/de'vout/front.svg",
  17535. extra: 1443 / 1328,
  17536. bottom: 0.025
  17537. }
  17538. },
  17539. back: {
  17540. height: math.unit(9.5, "feet"),
  17541. weight: math.unit(600, "lb"),
  17542. name: "Back",
  17543. image: {
  17544. source: "./media/characters/de'vout/back.svg",
  17545. extra: 1443 / 1328
  17546. }
  17547. },
  17548. frontDressed: {
  17549. height: math.unit(9.5, "feet"),
  17550. weight: math.unit(600, "lb"),
  17551. name: "Front (Dressed",
  17552. image: {
  17553. source: "./media/characters/de'vout/front-dressed.svg",
  17554. extra: 1443 / 1328,
  17555. bottom: 0.025
  17556. }
  17557. },
  17558. backDressed: {
  17559. height: math.unit(9.5, "feet"),
  17560. weight: math.unit(600, "lb"),
  17561. name: "Back (Dressed",
  17562. image: {
  17563. source: "./media/characters/de'vout/back-dressed.svg",
  17564. extra: 1443 / 1328
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Normal",
  17571. height: math.unit(9.5, "feet"),
  17572. default: true
  17573. },
  17574. ]
  17575. ))
  17576. characterMakers.push(() => makeCharacter(
  17577. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17578. {
  17579. front: {
  17580. height: math.unit(8, "feet"),
  17581. weight: math.unit(225, "lb"),
  17582. name: "Front",
  17583. image: {
  17584. source: "./media/characters/talana/front.svg",
  17585. extra: 1410 / 1300,
  17586. bottom: 0.015
  17587. }
  17588. },
  17589. frontDressed: {
  17590. height: math.unit(8, "feet"),
  17591. weight: math.unit(225, "lb"),
  17592. name: "Front (Dressed",
  17593. image: {
  17594. source: "./media/characters/talana/front-dressed.svg",
  17595. extra: 1410 / 1300,
  17596. bottom: 0.015
  17597. }
  17598. },
  17599. },
  17600. [
  17601. {
  17602. name: "Normal",
  17603. height: math.unit(8, "feet"),
  17604. default: true
  17605. },
  17606. ]
  17607. ))
  17608. characterMakers.push(() => makeCharacter(
  17609. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17610. {
  17611. side: {
  17612. height: math.unit(7.2, "feet"),
  17613. weight: math.unit(150, "lb"),
  17614. name: "Side",
  17615. image: {
  17616. source: "./media/characters/xeauvok/side.svg",
  17617. extra: 1975 / 1523,
  17618. bottom: 0.07
  17619. }
  17620. },
  17621. },
  17622. [
  17623. {
  17624. name: "Normal",
  17625. height: math.unit(7.2, "feet"),
  17626. default: true
  17627. },
  17628. ]
  17629. ))
  17630. characterMakers.push(() => makeCharacter(
  17631. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17632. {
  17633. side: {
  17634. height: math.unit(10, "feet"),
  17635. weight: math.unit(900, "kg"),
  17636. name: "Side",
  17637. image: {
  17638. source: "./media/characters/zara/side.svg",
  17639. extra: 504 / 498
  17640. }
  17641. },
  17642. },
  17643. [
  17644. {
  17645. name: "Normal",
  17646. height: math.unit(10, "feet"),
  17647. default: true
  17648. },
  17649. ]
  17650. ))
  17651. characterMakers.push(() => makeCharacter(
  17652. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17653. {
  17654. side: {
  17655. height: math.unit(6, "feet"),
  17656. weight: math.unit(150, "lb"),
  17657. name: "Side",
  17658. image: {
  17659. source: "./media/characters/richard-dragon/side.svg",
  17660. extra: 845 / 340,
  17661. bottom: 0.017
  17662. }
  17663. },
  17664. maw: {
  17665. height: math.unit(2.97, "feet"),
  17666. name: "Maw",
  17667. image: {
  17668. source: "./media/characters/richard-dragon/maw.svg"
  17669. }
  17670. },
  17671. },
  17672. [
  17673. ]
  17674. ))
  17675. characterMakers.push(() => makeCharacter(
  17676. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17677. {
  17678. front: {
  17679. height: math.unit(4, "feet"),
  17680. weight: math.unit(100, "lb"),
  17681. name: "Front",
  17682. image: {
  17683. source: "./media/characters/richard-smeargle/front.svg",
  17684. extra: 2952 / 2820,
  17685. bottom: 0.028
  17686. }
  17687. },
  17688. },
  17689. [
  17690. {
  17691. name: "Normal",
  17692. height: math.unit(4, "feet"),
  17693. default: true
  17694. },
  17695. {
  17696. name: "Dynamax",
  17697. height: math.unit(20, "meters")
  17698. },
  17699. ]
  17700. ))
  17701. characterMakers.push(() => makeCharacter(
  17702. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17703. {
  17704. front: {
  17705. height: math.unit(6, "feet"),
  17706. weight: math.unit(110, "lb"),
  17707. name: "Front",
  17708. image: {
  17709. source: "./media/characters/klay/front.svg",
  17710. extra: 962 / 883,
  17711. bottom: 0.04
  17712. }
  17713. },
  17714. back: {
  17715. height: math.unit(6, "feet"),
  17716. weight: math.unit(110, "lb"),
  17717. name: "Back",
  17718. image: {
  17719. source: "./media/characters/klay/back.svg",
  17720. extra: 962 / 883
  17721. }
  17722. },
  17723. beans: {
  17724. height: math.unit(1.15, "feet"),
  17725. name: "Beans",
  17726. image: {
  17727. source: "./media/characters/klay/beans.svg"
  17728. }
  17729. },
  17730. },
  17731. [
  17732. {
  17733. name: "Micro",
  17734. height: math.unit(6, "inches")
  17735. },
  17736. {
  17737. name: "Mini",
  17738. height: math.unit(3, "feet")
  17739. },
  17740. {
  17741. name: "Normal",
  17742. height: math.unit(6, "feet"),
  17743. default: true
  17744. },
  17745. {
  17746. name: "Big",
  17747. height: math.unit(25, "feet")
  17748. },
  17749. {
  17750. name: "Macro",
  17751. height: math.unit(100, "feet")
  17752. },
  17753. {
  17754. name: "Megamacro",
  17755. height: math.unit(400, "feet")
  17756. },
  17757. ]
  17758. ))
  17759. characterMakers.push(() => makeCharacter(
  17760. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17761. {
  17762. front: {
  17763. height: math.unit(6, "feet"),
  17764. weight: math.unit(160, "lb"),
  17765. name: "Front",
  17766. image: {
  17767. source: "./media/characters/marcus/front.svg",
  17768. extra: 734 / 676,
  17769. bottom: 0.03
  17770. }
  17771. },
  17772. },
  17773. [
  17774. {
  17775. name: "Little",
  17776. height: math.unit(6, "feet")
  17777. },
  17778. {
  17779. name: "Normal",
  17780. height: math.unit(110, "feet"),
  17781. default: true
  17782. },
  17783. {
  17784. name: "Macro",
  17785. height: math.unit(250, "feet")
  17786. },
  17787. {
  17788. name: "Megamacro",
  17789. height: math.unit(1000, "feet")
  17790. },
  17791. ]
  17792. ))
  17793. characterMakers.push(() => makeCharacter(
  17794. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17795. {
  17796. front: {
  17797. height: math.unit(7, "feet"),
  17798. weight: math.unit(275, "lb"),
  17799. name: "Front",
  17800. image: {
  17801. source: "./media/characters/claude-delroute/front.svg",
  17802. extra: 230 / 214,
  17803. bottom: 0.007
  17804. }
  17805. },
  17806. side: {
  17807. height: math.unit(7, "feet"),
  17808. weight: math.unit(275, "lb"),
  17809. name: "Side",
  17810. image: {
  17811. source: "./media/characters/claude-delroute/side.svg",
  17812. extra: 222 / 214,
  17813. bottom: 0.01
  17814. }
  17815. },
  17816. back: {
  17817. height: math.unit(7, "feet"),
  17818. weight: math.unit(275, "lb"),
  17819. name: "Back",
  17820. image: {
  17821. source: "./media/characters/claude-delroute/back.svg",
  17822. extra: 230 / 214,
  17823. bottom: 0.015
  17824. }
  17825. },
  17826. maw: {
  17827. height: math.unit(0.6407, "meters"),
  17828. name: "Maw",
  17829. image: {
  17830. source: "./media/characters/claude-delroute/maw.svg"
  17831. }
  17832. },
  17833. },
  17834. [
  17835. {
  17836. name: "Normal",
  17837. height: math.unit(7, "feet"),
  17838. default: true
  17839. },
  17840. {
  17841. name: "Lorge",
  17842. height: math.unit(20, "feet")
  17843. },
  17844. ]
  17845. ))
  17846. characterMakers.push(() => makeCharacter(
  17847. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17848. {
  17849. front: {
  17850. height: math.unit(8 + 4 / 12, "feet"),
  17851. weight: math.unit(600, "lb"),
  17852. name: "Front",
  17853. image: {
  17854. source: "./media/characters/dragonien/front.svg",
  17855. extra: 100 / 94,
  17856. bottom: 3.3 / 103.3445
  17857. }
  17858. },
  17859. back: {
  17860. height: math.unit(8 + 4 / 12, "feet"),
  17861. weight: math.unit(600, "lb"),
  17862. name: "Back",
  17863. image: {
  17864. source: "./media/characters/dragonien/back.svg",
  17865. extra: 776 / 746,
  17866. bottom: 6.4 / 782.0616
  17867. }
  17868. },
  17869. foot: {
  17870. height: math.unit(1.54, "feet"),
  17871. name: "Foot",
  17872. image: {
  17873. source: "./media/characters/dragonien/foot.svg",
  17874. }
  17875. },
  17876. },
  17877. [
  17878. {
  17879. name: "Normal",
  17880. height: math.unit(8 + 4 / 12, "feet"),
  17881. default: true
  17882. },
  17883. {
  17884. name: "Macro",
  17885. height: math.unit(200, "feet")
  17886. },
  17887. {
  17888. name: "Megamacro",
  17889. height: math.unit(1, "mile")
  17890. },
  17891. {
  17892. name: "Gigamacro",
  17893. height: math.unit(1000, "miles")
  17894. },
  17895. ]
  17896. ))
  17897. characterMakers.push(() => makeCharacter(
  17898. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17899. {
  17900. front: {
  17901. height: math.unit(5 + 2 / 12, "feet"),
  17902. weight: math.unit(110, "lb"),
  17903. name: "Front",
  17904. image: {
  17905. source: "./media/characters/desta/front.svg",
  17906. extra: 767 / 726,
  17907. bottom: 11.7 / 779
  17908. }
  17909. },
  17910. back: {
  17911. height: math.unit(5 + 2 / 12, "feet"),
  17912. weight: math.unit(110, "lb"),
  17913. name: "Back",
  17914. image: {
  17915. source: "./media/characters/desta/back.svg",
  17916. extra: 777 / 728,
  17917. bottom: 6 / 784
  17918. }
  17919. },
  17920. frontAlt: {
  17921. height: math.unit(5 + 2 / 12, "feet"),
  17922. weight: math.unit(110, "lb"),
  17923. name: "Front",
  17924. image: {
  17925. source: "./media/characters/desta/front-alt.svg",
  17926. extra: 1482 / 1417
  17927. }
  17928. },
  17929. side: {
  17930. height: math.unit(5 + 2 / 12, "feet"),
  17931. weight: math.unit(110, "lb"),
  17932. name: "Side",
  17933. image: {
  17934. source: "./media/characters/desta/side.svg",
  17935. extra: 2579 / 2491,
  17936. bottom: 0.053
  17937. }
  17938. },
  17939. },
  17940. [
  17941. {
  17942. name: "Micro",
  17943. height: math.unit(6, "inches")
  17944. },
  17945. {
  17946. name: "Normal",
  17947. height: math.unit(5 + 2 / 12, "feet"),
  17948. default: true
  17949. },
  17950. {
  17951. name: "Macro",
  17952. height: math.unit(62, "feet")
  17953. },
  17954. {
  17955. name: "Megamacro",
  17956. height: math.unit(1800, "feet")
  17957. },
  17958. ]
  17959. ))
  17960. characterMakers.push(() => makeCharacter(
  17961. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17962. {
  17963. front: {
  17964. height: math.unit(10, "feet"),
  17965. weight: math.unit(700, "lb"),
  17966. name: "Front",
  17967. image: {
  17968. source: "./media/characters/storm-alystar/front.svg",
  17969. extra: 2112 / 1898,
  17970. bottom: 0.034
  17971. }
  17972. },
  17973. },
  17974. [
  17975. {
  17976. name: "Micro",
  17977. height: math.unit(3.5, "inches")
  17978. },
  17979. {
  17980. name: "Normal",
  17981. height: math.unit(10, "feet"),
  17982. default: true
  17983. },
  17984. {
  17985. name: "Macro",
  17986. height: math.unit(400, "feet")
  17987. },
  17988. {
  17989. name: "Deific",
  17990. height: math.unit(60, "miles")
  17991. },
  17992. ]
  17993. ))
  17994. characterMakers.push(() => makeCharacter(
  17995. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17996. {
  17997. front: {
  17998. height: math.unit(2.35, "meters"),
  17999. weight: math.unit(119, "kg"),
  18000. name: "Front",
  18001. image: {
  18002. source: "./media/characters/ilia/front.svg",
  18003. extra: 1285 / 1255,
  18004. bottom: 0.06
  18005. }
  18006. },
  18007. },
  18008. [
  18009. {
  18010. name: "Normal",
  18011. height: math.unit(2.35, "meters")
  18012. },
  18013. {
  18014. name: "Macro",
  18015. height: math.unit(140, "meters"),
  18016. default: true
  18017. },
  18018. {
  18019. name: "Megamacro",
  18020. height: math.unit(100, "miles")
  18021. },
  18022. ]
  18023. ))
  18024. characterMakers.push(() => makeCharacter(
  18025. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18026. {
  18027. front: {
  18028. height: math.unit(6 + 5 / 12, "feet"),
  18029. weight: math.unit(190, "lb"),
  18030. name: "Front",
  18031. image: {
  18032. source: "./media/characters/kingdead/front.svg",
  18033. extra: 1228 / 1177
  18034. }
  18035. },
  18036. },
  18037. [
  18038. {
  18039. name: "Micro",
  18040. height: math.unit(7, "inches")
  18041. },
  18042. {
  18043. name: "Normal",
  18044. height: math.unit(6 + 5 / 12, "feet")
  18045. },
  18046. {
  18047. name: "Macro",
  18048. height: math.unit(150, "feet"),
  18049. default: true
  18050. },
  18051. {
  18052. name: "Megamacro",
  18053. height: math.unit(200, "miles")
  18054. },
  18055. ]
  18056. ))
  18057. characterMakers.push(() => makeCharacter(
  18058. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18059. {
  18060. front: {
  18061. height: math.unit(8, "feet"),
  18062. weight: math.unit(600, "lb"),
  18063. name: "Front",
  18064. image: {
  18065. source: "./media/characters/kyrehx/front.svg",
  18066. extra: 1195 / 1095,
  18067. bottom: 0.034
  18068. }
  18069. },
  18070. },
  18071. [
  18072. {
  18073. name: "Micro",
  18074. height: math.unit(2, "inches")
  18075. },
  18076. {
  18077. name: "Normal",
  18078. height: math.unit(8, "feet"),
  18079. default: true
  18080. },
  18081. {
  18082. name: "Macro",
  18083. height: math.unit(255, "feet")
  18084. },
  18085. ]
  18086. ))
  18087. characterMakers.push(() => makeCharacter(
  18088. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18089. {
  18090. front: {
  18091. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18092. weight: math.unit(184, "lb"),
  18093. name: "Front",
  18094. image: {
  18095. source: "./media/characters/xang/front.svg",
  18096. extra: 845 / 755
  18097. }
  18098. },
  18099. },
  18100. [
  18101. {
  18102. name: "Normal",
  18103. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18104. default: true
  18105. },
  18106. {
  18107. name: "Macro",
  18108. height: math.unit(0.935 * 146, "feet")
  18109. },
  18110. {
  18111. name: "Megamacro",
  18112. height: math.unit(0.935 * 3, "miles")
  18113. },
  18114. ]
  18115. ))
  18116. characterMakers.push(() => makeCharacter(
  18117. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18118. {
  18119. frontDressed: {
  18120. height: math.unit(5 + 7 / 12, "feet"),
  18121. weight: math.unit(140, "lb"),
  18122. name: "Front (Dressed)",
  18123. image: {
  18124. source: "./media/characters/doc-weardno/front-dressed.svg",
  18125. extra: 263 / 234
  18126. }
  18127. },
  18128. backDressed: {
  18129. height: math.unit(5 + 7 / 12, "feet"),
  18130. weight: math.unit(140, "lb"),
  18131. name: "Back (Dressed)",
  18132. image: {
  18133. source: "./media/characters/doc-weardno/back-dressed.svg",
  18134. extra: 266 / 238
  18135. }
  18136. },
  18137. front: {
  18138. height: math.unit(5 + 7 / 12, "feet"),
  18139. weight: math.unit(140, "lb"),
  18140. name: "Front",
  18141. image: {
  18142. source: "./media/characters/doc-weardno/front.svg",
  18143. extra: 254 / 233
  18144. }
  18145. },
  18146. },
  18147. [
  18148. {
  18149. name: "Micro",
  18150. height: math.unit(3, "inches")
  18151. },
  18152. {
  18153. name: "Normal",
  18154. height: math.unit(5 + 7 / 12, "feet"),
  18155. default: true
  18156. },
  18157. {
  18158. name: "Macro",
  18159. height: math.unit(25, "feet")
  18160. },
  18161. {
  18162. name: "Megamacro",
  18163. height: math.unit(2, "miles")
  18164. },
  18165. ]
  18166. ))
  18167. characterMakers.push(() => makeCharacter(
  18168. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18169. {
  18170. front: {
  18171. height: math.unit(6 + 2 / 12, "feet"),
  18172. weight: math.unit(153, "lb"),
  18173. name: "Front",
  18174. image: {
  18175. source: "./media/characters/seth-whilst/front.svg",
  18176. bottom: 0.07
  18177. }
  18178. },
  18179. },
  18180. [
  18181. {
  18182. name: "Micro",
  18183. height: math.unit(5, "inches")
  18184. },
  18185. {
  18186. name: "Normal",
  18187. height: math.unit(6 + 2 / 12, "feet"),
  18188. default: true
  18189. },
  18190. ]
  18191. ))
  18192. characterMakers.push(() => makeCharacter(
  18193. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18194. {
  18195. front: {
  18196. height: math.unit(3, "inches"),
  18197. weight: math.unit(8, "grams"),
  18198. name: "Front",
  18199. image: {
  18200. source: "./media/characters/pocket-jabari/front.svg",
  18201. extra: 1024 / 974,
  18202. bottom: 0.039
  18203. }
  18204. },
  18205. },
  18206. [
  18207. {
  18208. name: "Minimicro",
  18209. height: math.unit(8, "mm")
  18210. },
  18211. {
  18212. name: "Micro",
  18213. height: math.unit(3, "inches"),
  18214. default: true
  18215. },
  18216. {
  18217. name: "Normal",
  18218. height: math.unit(3, "feet")
  18219. },
  18220. ]
  18221. ))
  18222. characterMakers.push(() => makeCharacter(
  18223. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18224. {
  18225. front: {
  18226. height: math.unit(15, "feet"),
  18227. weight: math.unit(3280, "lb"),
  18228. name: "Front",
  18229. image: {
  18230. source: "./media/characters/sapphy/front.svg",
  18231. extra: 671 / 577,
  18232. bottom: 0.085
  18233. }
  18234. },
  18235. back: {
  18236. height: math.unit(15, "feet"),
  18237. weight: math.unit(3280, "lb"),
  18238. name: "Back",
  18239. image: {
  18240. source: "./media/characters/sapphy/back.svg",
  18241. extra: 631 / 607,
  18242. bottom: 0.045
  18243. }
  18244. },
  18245. },
  18246. [
  18247. {
  18248. name: "Normal",
  18249. height: math.unit(15, "feet")
  18250. },
  18251. {
  18252. name: "Casual Macro",
  18253. height: math.unit(120, "feet")
  18254. },
  18255. {
  18256. name: "Macro",
  18257. height: math.unit(2150, "feet"),
  18258. default: true
  18259. },
  18260. {
  18261. name: "Megamacro",
  18262. height: math.unit(8, "miles")
  18263. },
  18264. {
  18265. name: "Galaxy Mom",
  18266. height: math.unit(6, "megalightyears")
  18267. },
  18268. ]
  18269. ))
  18270. characterMakers.push(() => makeCharacter(
  18271. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18272. {
  18273. front: {
  18274. height: math.unit(6, "feet"),
  18275. weight: math.unit(170, "lb"),
  18276. name: "Front",
  18277. image: {
  18278. source: "./media/characters/kiro/front.svg",
  18279. extra: 1064 / 1012,
  18280. bottom: 0.052
  18281. }
  18282. },
  18283. },
  18284. [
  18285. {
  18286. name: "Micro",
  18287. height: math.unit(6, "inches")
  18288. },
  18289. {
  18290. name: "Normal",
  18291. height: math.unit(6, "feet"),
  18292. default: true
  18293. },
  18294. {
  18295. name: "Macro",
  18296. height: math.unit(72, "feet")
  18297. },
  18298. ]
  18299. ))
  18300. characterMakers.push(() => makeCharacter(
  18301. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18302. {
  18303. front: {
  18304. height: math.unit(5 + 9 / 12, "feet"),
  18305. weight: math.unit(175, "lb"),
  18306. name: "Front",
  18307. image: {
  18308. source: "./media/characters/irishfox/front.svg",
  18309. extra: 1912 / 1680,
  18310. bottom: 0.02
  18311. }
  18312. },
  18313. },
  18314. [
  18315. {
  18316. name: "Nano",
  18317. height: math.unit(1, "mm")
  18318. },
  18319. {
  18320. name: "Micro",
  18321. height: math.unit(2, "inches")
  18322. },
  18323. {
  18324. name: "Normal",
  18325. height: math.unit(5 + 9 / 12, "feet"),
  18326. default: true
  18327. },
  18328. {
  18329. name: "Macro",
  18330. height: math.unit(45, "feet")
  18331. },
  18332. ]
  18333. ))
  18334. characterMakers.push(() => makeCharacter(
  18335. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18336. {
  18337. front: {
  18338. height: math.unit(6 + 1 / 12, "feet"),
  18339. weight: math.unit(75, "lb"),
  18340. name: "Front",
  18341. image: {
  18342. source: "./media/characters/aronai-sieyes/front.svg",
  18343. extra: 1556 / 1480,
  18344. bottom: 0.015
  18345. }
  18346. },
  18347. side: {
  18348. height: math.unit(6 + 1 / 12, "feet"),
  18349. weight: math.unit(75, "lb"),
  18350. name: "Side",
  18351. image: {
  18352. source: "./media/characters/aronai-sieyes/side.svg",
  18353. extra: 1433 / 1390,
  18354. bottom: 0.0393
  18355. }
  18356. },
  18357. back: {
  18358. height: math.unit(6 + 1 / 12, "feet"),
  18359. weight: math.unit(75, "lb"),
  18360. name: "Back",
  18361. image: {
  18362. source: "./media/characters/aronai-sieyes/back.svg",
  18363. extra: 1544 / 1494,
  18364. bottom: 0.02
  18365. }
  18366. },
  18367. frontClothed: {
  18368. height: math.unit(6 + 1 / 12, "feet"),
  18369. weight: math.unit(75, "lb"),
  18370. name: "Front (Clothed)",
  18371. image: {
  18372. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18373. extra: 1582 / 1527
  18374. }
  18375. },
  18376. feral: {
  18377. height: math.unit(18, "feet"),
  18378. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18379. name: "Feral",
  18380. image: {
  18381. source: "./media/characters/aronai-sieyes/feral.svg",
  18382. extra: 1530 / 1240,
  18383. bottom: 0.035
  18384. }
  18385. },
  18386. },
  18387. [
  18388. {
  18389. name: "Micro",
  18390. height: math.unit(2, "inches")
  18391. },
  18392. {
  18393. name: "Normal",
  18394. height: math.unit(6 + 1 / 12, "feet"),
  18395. default: true
  18396. }
  18397. ]
  18398. ))
  18399. characterMakers.push(() => makeCharacter(
  18400. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18401. {
  18402. front: {
  18403. height: math.unit(12, "feet"),
  18404. weight: math.unit(410, "kg"),
  18405. name: "Front",
  18406. image: {
  18407. source: "./media/characters/xuna/front.svg",
  18408. extra: 2184 / 1980
  18409. }
  18410. },
  18411. side: {
  18412. height: math.unit(12, "feet"),
  18413. weight: math.unit(410, "kg"),
  18414. name: "Side",
  18415. image: {
  18416. source: "./media/characters/xuna/side.svg",
  18417. extra: 2184 / 1980
  18418. }
  18419. },
  18420. back: {
  18421. height: math.unit(12, "feet"),
  18422. weight: math.unit(410, "kg"),
  18423. name: "Back",
  18424. image: {
  18425. source: "./media/characters/xuna/back.svg",
  18426. extra: 2184 / 1980
  18427. }
  18428. },
  18429. },
  18430. [
  18431. {
  18432. name: "Nano glow",
  18433. height: math.unit(10, "nm")
  18434. },
  18435. {
  18436. name: "Micro floof",
  18437. height: math.unit(0.3, "m")
  18438. },
  18439. {
  18440. name: "Huggable softy boi",
  18441. height: math.unit(3.6576, "m"),
  18442. default: true
  18443. },
  18444. {
  18445. name: "Admirable floof",
  18446. height: math.unit(80, "meters")
  18447. },
  18448. {
  18449. name: "Gentle macro",
  18450. height: math.unit(300, "meters")
  18451. },
  18452. {
  18453. name: "Very careful floof",
  18454. height: math.unit(3200, "meters")
  18455. },
  18456. {
  18457. name: "The mega floof",
  18458. height: math.unit(36000, "meters")
  18459. },
  18460. {
  18461. name: "Giga-fur-Wicker",
  18462. height: math.unit(4800000, "meters")
  18463. },
  18464. {
  18465. name: "Licky world",
  18466. height: math.unit(20000000, "meters")
  18467. },
  18468. {
  18469. name: "Floofy cyan sun",
  18470. height: math.unit(1500000000, "meters")
  18471. },
  18472. {
  18473. name: "Milky Wicker",
  18474. height: math.unit(1000000000000000000000, "meters")
  18475. },
  18476. {
  18477. name: "The observing Wicker",
  18478. height: math.unit(999999999999999999999999999, "meters")
  18479. },
  18480. ]
  18481. ))
  18482. characterMakers.push(() => makeCharacter(
  18483. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18484. {
  18485. front: {
  18486. height: math.unit(5 + 9 / 12, "feet"),
  18487. weight: math.unit(150, "lb"),
  18488. name: "Front",
  18489. image: {
  18490. source: "./media/characters/arokha-sieyes/front.svg",
  18491. extra: 1425 / 1284,
  18492. bottom: 0.05
  18493. }
  18494. },
  18495. },
  18496. [
  18497. {
  18498. name: "Normal",
  18499. height: math.unit(5 + 9 / 12, "feet")
  18500. },
  18501. {
  18502. name: "Macro",
  18503. height: math.unit(30, "meters"),
  18504. default: true
  18505. },
  18506. ]
  18507. ))
  18508. characterMakers.push(() => makeCharacter(
  18509. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18510. {
  18511. front: {
  18512. height: math.unit(6, "feet"),
  18513. weight: math.unit(180, "lb"),
  18514. name: "Front",
  18515. image: {
  18516. source: "./media/characters/arokh-sieyes/front.svg",
  18517. extra: 1830 / 1769,
  18518. bottom: 0.01
  18519. }
  18520. },
  18521. },
  18522. [
  18523. {
  18524. name: "Normal",
  18525. height: math.unit(6, "feet")
  18526. },
  18527. {
  18528. name: "Macro",
  18529. height: math.unit(30, "meters"),
  18530. default: true
  18531. },
  18532. ]
  18533. ))
  18534. characterMakers.push(() => makeCharacter(
  18535. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18536. {
  18537. side: {
  18538. height: math.unit(13 + 1 / 12, "feet"),
  18539. weight: math.unit(8.5, "tonnes"),
  18540. name: "Side",
  18541. image: {
  18542. source: "./media/characters/goldeneye/side.svg",
  18543. extra: 1182 / 778,
  18544. bottom: 0.067
  18545. }
  18546. },
  18547. paw: {
  18548. height: math.unit(3.4, "feet"),
  18549. name: "Paw",
  18550. image: {
  18551. source: "./media/characters/goldeneye/paw.svg"
  18552. }
  18553. },
  18554. },
  18555. [
  18556. {
  18557. name: "Normal",
  18558. height: math.unit(13 + 1 / 12, "feet"),
  18559. default: true
  18560. },
  18561. ]
  18562. ))
  18563. characterMakers.push(() => makeCharacter(
  18564. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18565. {
  18566. front: {
  18567. height: math.unit(6 + 1 / 12, "feet"),
  18568. weight: math.unit(210, "lb"),
  18569. name: "Front",
  18570. image: {
  18571. source: "./media/characters/leonardo-lycheborne/front.svg",
  18572. extra: 390 / 365,
  18573. bottom: 0.032
  18574. }
  18575. },
  18576. side: {
  18577. height: math.unit(6 + 1 / 12, "feet"),
  18578. weight: math.unit(210, "lb"),
  18579. name: "Side",
  18580. image: {
  18581. source: "./media/characters/leonardo-lycheborne/side.svg",
  18582. extra: 390 / 365,
  18583. bottom: 0.005
  18584. }
  18585. },
  18586. back: {
  18587. height: math.unit(6 + 1 / 12, "feet"),
  18588. weight: math.unit(210, "lb"),
  18589. name: "Back",
  18590. image: {
  18591. source: "./media/characters/leonardo-lycheborne/back.svg",
  18592. extra: 392 / 366,
  18593. bottom: 0.01
  18594. }
  18595. },
  18596. hand: {
  18597. height: math.unit(1.08, "feet"),
  18598. name: "Hand",
  18599. image: {
  18600. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18601. }
  18602. },
  18603. foot: {
  18604. height: math.unit(1.32, "feet"),
  18605. name: "Foot",
  18606. image: {
  18607. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18608. }
  18609. },
  18610. were: {
  18611. height: math.unit(20, "feet"),
  18612. weight: math.unit(7800, "lb"),
  18613. name: "Were",
  18614. image: {
  18615. source: "./media/characters/leonardo-lycheborne/were.svg",
  18616. extra: 308 / 294,
  18617. bottom: 0.048
  18618. }
  18619. },
  18620. feral: {
  18621. height: math.unit(7.5, "feet"),
  18622. weight: math.unit(600, "lb"),
  18623. name: "Feral",
  18624. image: {
  18625. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18626. extra: 210 / 186,
  18627. bottom: 0.108
  18628. }
  18629. },
  18630. taur: {
  18631. height: math.unit(11, "feet"),
  18632. weight: math.unit(3300, "lb"),
  18633. name: "Taur",
  18634. image: {
  18635. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18636. extra: 320 / 303,
  18637. bottom: 0.025
  18638. }
  18639. },
  18640. barghest: {
  18641. height: math.unit(11, "feet"),
  18642. weight: math.unit(1300, "lb"),
  18643. name: "Barghest",
  18644. image: {
  18645. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18646. extra: 323 / 302,
  18647. bottom: 0.027
  18648. }
  18649. },
  18650. dick: {
  18651. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18652. name: "Dick",
  18653. image: {
  18654. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18655. }
  18656. },
  18657. dickWere: {
  18658. height: math.unit((20) / 3.8, "feet"),
  18659. name: "Dick (Were)",
  18660. image: {
  18661. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18662. }
  18663. },
  18664. },
  18665. [
  18666. {
  18667. name: "Normal",
  18668. height: math.unit(6 + 1 / 12, "feet"),
  18669. default: true
  18670. },
  18671. ]
  18672. ))
  18673. characterMakers.push(() => makeCharacter(
  18674. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18675. {
  18676. front: {
  18677. height: math.unit(10, "feet"),
  18678. weight: math.unit(350, "lb"),
  18679. name: "Front",
  18680. image: {
  18681. source: "./media/characters/jet/front.svg",
  18682. extra: 2050 / 1980,
  18683. bottom: 0.013
  18684. }
  18685. },
  18686. back: {
  18687. height: math.unit(10, "feet"),
  18688. weight: math.unit(350, "lb"),
  18689. name: "Back",
  18690. image: {
  18691. source: "./media/characters/jet/back.svg",
  18692. extra: 2050 / 1980,
  18693. bottom: 0.013
  18694. }
  18695. },
  18696. },
  18697. [
  18698. {
  18699. name: "Micro",
  18700. height: math.unit(6, "inches")
  18701. },
  18702. {
  18703. name: "Normal",
  18704. height: math.unit(10, "feet"),
  18705. default: true
  18706. },
  18707. {
  18708. name: "Macro",
  18709. height: math.unit(100, "feet")
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18715. {
  18716. front: {
  18717. height: math.unit(15, "feet"),
  18718. weight: math.unit(2800, "lb"),
  18719. name: "Front",
  18720. image: {
  18721. source: "./media/characters/tanarath/front.svg",
  18722. extra: 2392 / 2220,
  18723. bottom: 0.03
  18724. }
  18725. },
  18726. back: {
  18727. height: math.unit(15, "feet"),
  18728. weight: math.unit(2800, "lb"),
  18729. name: "Back",
  18730. image: {
  18731. source: "./media/characters/tanarath/back.svg",
  18732. extra: 2392 / 2220,
  18733. bottom: 0.03
  18734. }
  18735. },
  18736. },
  18737. [
  18738. {
  18739. name: "Normal",
  18740. height: math.unit(15, "feet"),
  18741. default: true
  18742. },
  18743. ]
  18744. ))
  18745. characterMakers.push(() => makeCharacter(
  18746. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18747. {
  18748. front: {
  18749. height: math.unit(7 + 1 / 12, "feet"),
  18750. weight: math.unit(175, "lb"),
  18751. name: "Front",
  18752. image: {
  18753. source: "./media/characters/patty-cattybatty/front.svg",
  18754. extra: 908 / 874,
  18755. bottom: 0.025
  18756. }
  18757. },
  18758. },
  18759. [
  18760. {
  18761. name: "Micro",
  18762. height: math.unit(1, "inch")
  18763. },
  18764. {
  18765. name: "Normal",
  18766. height: math.unit(7 + 1 / 12, "feet")
  18767. },
  18768. {
  18769. name: "Mini Macro",
  18770. height: math.unit(155, "feet")
  18771. },
  18772. {
  18773. name: "Macro",
  18774. height: math.unit(1077, "feet")
  18775. },
  18776. {
  18777. name: "Mega Macro",
  18778. height: math.unit(47650, "feet"),
  18779. default: true
  18780. },
  18781. {
  18782. name: "Giga Macro",
  18783. height: math.unit(440, "miles")
  18784. },
  18785. {
  18786. name: "Tera Macro",
  18787. height: math.unit(8700, "miles")
  18788. },
  18789. {
  18790. name: "Planetary Macro",
  18791. height: math.unit(32700, "miles")
  18792. },
  18793. {
  18794. name: "Solar Macro",
  18795. height: math.unit(550000, "miles")
  18796. },
  18797. {
  18798. name: "Celestial Macro",
  18799. height: math.unit(2.5, "AU")
  18800. },
  18801. ]
  18802. ))
  18803. characterMakers.push(() => makeCharacter(
  18804. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18805. {
  18806. front: {
  18807. height: math.unit(4 + 5 / 12, "feet"),
  18808. weight: math.unit(90, "lb"),
  18809. name: "Front",
  18810. image: {
  18811. source: "./media/characters/cappu/front.svg",
  18812. extra: 1247 / 1152,
  18813. bottom: 0.012
  18814. }
  18815. },
  18816. },
  18817. [
  18818. {
  18819. name: "Normal",
  18820. height: math.unit(4 + 5 / 12, "feet"),
  18821. default: true
  18822. },
  18823. ]
  18824. ))
  18825. characterMakers.push(() => makeCharacter(
  18826. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18827. {
  18828. frontDressed: {
  18829. height: math.unit(70, "cm"),
  18830. weight: math.unit(6, "kg"),
  18831. name: "Front (Dressed)",
  18832. image: {
  18833. source: "./media/characters/sebi/front-dressed.svg",
  18834. extra: 713.5 / 686.5,
  18835. bottom: 0.003
  18836. }
  18837. },
  18838. front: {
  18839. height: math.unit(70, "cm"),
  18840. weight: math.unit(5, "kg"),
  18841. name: "Front",
  18842. image: {
  18843. source: "./media/characters/sebi/front.svg",
  18844. extra: 713.5 / 686.5,
  18845. bottom: 0.003
  18846. }
  18847. }
  18848. },
  18849. [
  18850. {
  18851. name: "Normal",
  18852. height: math.unit(70, "cm"),
  18853. default: true
  18854. },
  18855. {
  18856. name: "Macro",
  18857. height: math.unit(8, "meters")
  18858. },
  18859. ]
  18860. ))
  18861. characterMakers.push(() => makeCharacter(
  18862. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18863. {
  18864. front: {
  18865. height: math.unit(6, "feet"),
  18866. weight: math.unit(150, "lb"),
  18867. name: "Front",
  18868. image: {
  18869. source: "./media/characters/typhek/front.svg",
  18870. extra: 1948 / 1929,
  18871. bottom: 0.025
  18872. }
  18873. },
  18874. side: {
  18875. height: math.unit(6, "feet"),
  18876. weight: math.unit(150, "lb"),
  18877. name: "Side",
  18878. image: {
  18879. source: "./media/characters/typhek/side.svg",
  18880. extra: 2034 / 2010,
  18881. bottom: 0.003
  18882. }
  18883. },
  18884. back: {
  18885. height: math.unit(6, "feet"),
  18886. weight: math.unit(150, "lb"),
  18887. name: "Back",
  18888. image: {
  18889. source: "./media/characters/typhek/back.svg",
  18890. extra: 2005 / 1978,
  18891. bottom: 0.004
  18892. }
  18893. },
  18894. palm: {
  18895. height: math.unit(1.2, "feet"),
  18896. name: "Palm",
  18897. image: {
  18898. source: "./media/characters/typhek/palm.svg"
  18899. }
  18900. },
  18901. fist: {
  18902. height: math.unit(1.1, "feet"),
  18903. name: "Fist",
  18904. image: {
  18905. source: "./media/characters/typhek/fist.svg"
  18906. }
  18907. },
  18908. foot: {
  18909. height: math.unit(1.57, "feet"),
  18910. name: "Foot",
  18911. image: {
  18912. source: "./media/characters/typhek/foot.svg"
  18913. }
  18914. },
  18915. sole: {
  18916. height: math.unit(2.05, "feet"),
  18917. name: "Sole",
  18918. image: {
  18919. source: "./media/characters/typhek/sole.svg"
  18920. }
  18921. },
  18922. },
  18923. [
  18924. {
  18925. name: "Macro",
  18926. height: math.unit(40, "stories"),
  18927. default: true
  18928. },
  18929. {
  18930. name: "Megamacro",
  18931. height: math.unit(1, "mile")
  18932. },
  18933. {
  18934. name: "Gigamacro",
  18935. height: math.unit(4000, "solarradii")
  18936. },
  18937. {
  18938. name: "Universal",
  18939. height: math.unit(1.1, "universes")
  18940. }
  18941. ]
  18942. ))
  18943. characterMakers.push(() => makeCharacter(
  18944. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18945. {
  18946. side: {
  18947. height: math.unit(5 + 7 / 12, "feet"),
  18948. weight: math.unit(150, "lb"),
  18949. name: "Side",
  18950. image: {
  18951. source: "./media/characters/kassy/side.svg",
  18952. extra: 1280 / 1225,
  18953. bottom: 0.002
  18954. }
  18955. },
  18956. front: {
  18957. height: math.unit(5 + 7 / 12, "feet"),
  18958. weight: math.unit(150, "lb"),
  18959. name: "Front",
  18960. image: {
  18961. source: "./media/characters/kassy/front.svg",
  18962. extra: 1280 / 1225,
  18963. bottom: 0.025
  18964. }
  18965. },
  18966. back: {
  18967. height: math.unit(5 + 7 / 12, "feet"),
  18968. weight: math.unit(150, "lb"),
  18969. name: "Back",
  18970. image: {
  18971. source: "./media/characters/kassy/back.svg",
  18972. extra: 1280 / 1225,
  18973. bottom: 0.002
  18974. }
  18975. },
  18976. foot: {
  18977. height: math.unit(1.266, "feet"),
  18978. name: "Foot",
  18979. image: {
  18980. source: "./media/characters/kassy/foot.svg"
  18981. }
  18982. },
  18983. },
  18984. [
  18985. {
  18986. name: "Normal",
  18987. height: math.unit(5 + 7 / 12, "feet")
  18988. },
  18989. {
  18990. name: "Macro",
  18991. height: math.unit(137, "feet"),
  18992. default: true
  18993. },
  18994. {
  18995. name: "Megamacro",
  18996. height: math.unit(1, "mile")
  18997. },
  18998. ]
  18999. ))
  19000. characterMakers.push(() => makeCharacter(
  19001. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  19002. {
  19003. front: {
  19004. height: math.unit(6 + 1 / 12, "feet"),
  19005. weight: math.unit(200, "lb"),
  19006. name: "Front",
  19007. image: {
  19008. source: "./media/characters/neil/front.svg",
  19009. extra: 1326 / 1250,
  19010. bottom: 0.023
  19011. }
  19012. },
  19013. },
  19014. [
  19015. {
  19016. name: "Normal",
  19017. height: math.unit(6 + 1 / 12, "feet"),
  19018. default: true
  19019. },
  19020. {
  19021. name: "Macro",
  19022. height: math.unit(200, "feet")
  19023. },
  19024. ]
  19025. ))
  19026. characterMakers.push(() => makeCharacter(
  19027. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19028. {
  19029. front: {
  19030. height: math.unit(5 + 9 / 12, "feet"),
  19031. weight: math.unit(190, "lb"),
  19032. name: "Front",
  19033. image: {
  19034. source: "./media/characters/atticus/front.svg",
  19035. extra: 2934 / 2785,
  19036. bottom: 0.025
  19037. }
  19038. },
  19039. },
  19040. [
  19041. {
  19042. name: "Normal",
  19043. height: math.unit(5 + 9 / 12, "feet"),
  19044. default: true
  19045. },
  19046. {
  19047. name: "Macro",
  19048. height: math.unit(180, "feet")
  19049. },
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19054. {
  19055. side: {
  19056. height: math.unit(9, "feet"),
  19057. weight: math.unit(650, "lb"),
  19058. name: "Side",
  19059. image: {
  19060. source: "./media/characters/milo/side.svg",
  19061. extra: 2644 / 2310,
  19062. bottom: 0.032
  19063. }
  19064. },
  19065. },
  19066. [
  19067. {
  19068. name: "Normal",
  19069. height: math.unit(9, "feet"),
  19070. default: true
  19071. },
  19072. {
  19073. name: "Macro",
  19074. height: math.unit(300, "feet")
  19075. },
  19076. ]
  19077. ))
  19078. characterMakers.push(() => makeCharacter(
  19079. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19080. {
  19081. side: {
  19082. height: math.unit(8, "meters"),
  19083. weight: math.unit(90000, "kg"),
  19084. name: "Side",
  19085. image: {
  19086. source: "./media/characters/ijzer/side.svg",
  19087. extra: 2756 / 1600,
  19088. bottom: 0.01
  19089. }
  19090. },
  19091. },
  19092. [
  19093. {
  19094. name: "Small",
  19095. height: math.unit(3, "meters")
  19096. },
  19097. {
  19098. name: "Normal",
  19099. height: math.unit(8, "meters"),
  19100. default: true
  19101. },
  19102. {
  19103. name: "Normal+",
  19104. height: math.unit(10, "meters")
  19105. },
  19106. {
  19107. name: "Bigger",
  19108. height: math.unit(24, "meters")
  19109. },
  19110. {
  19111. name: "Huge",
  19112. height: math.unit(80, "meters")
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19118. {
  19119. front: {
  19120. height: math.unit(6 + 2 / 12, "feet"),
  19121. weight: math.unit(153, "lb"),
  19122. name: "Front",
  19123. image: {
  19124. source: "./media/characters/luca-cervicum/front.svg",
  19125. extra: 370 / 327,
  19126. bottom: 0.015
  19127. }
  19128. },
  19129. back: {
  19130. height: math.unit(6 + 2 / 12, "feet"),
  19131. weight: math.unit(153, "lb"),
  19132. name: "Back",
  19133. image: {
  19134. source: "./media/characters/luca-cervicum/back.svg",
  19135. extra: 367 / 333,
  19136. bottom: 0.005
  19137. }
  19138. },
  19139. frontGear: {
  19140. height: math.unit(6 + 2 / 12, "feet"),
  19141. weight: math.unit(173, "lb"),
  19142. name: "Front (Gear)",
  19143. image: {
  19144. source: "./media/characters/luca-cervicum/front-gear.svg",
  19145. extra: 377 / 333,
  19146. bottom: 0.006
  19147. }
  19148. },
  19149. },
  19150. [
  19151. {
  19152. name: "Normal",
  19153. height: math.unit(6 + 2 / 12, "feet"),
  19154. default: true
  19155. },
  19156. ]
  19157. ))
  19158. characterMakers.push(() => makeCharacter(
  19159. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19160. {
  19161. front: {
  19162. height: math.unit(6 + 1 / 12, "feet"),
  19163. weight: math.unit(304, "lb"),
  19164. name: "Front",
  19165. image: {
  19166. source: "./media/characters/oliver/front.svg",
  19167. extra: 157 / 143,
  19168. bottom: 0.08
  19169. }
  19170. },
  19171. },
  19172. [
  19173. {
  19174. name: "Normal",
  19175. height: math.unit(6 + 1 / 12, "feet"),
  19176. default: true
  19177. },
  19178. ]
  19179. ))
  19180. characterMakers.push(() => makeCharacter(
  19181. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19182. {
  19183. front: {
  19184. height: math.unit(5 + 7 / 12, "feet"),
  19185. weight: math.unit(140, "lb"),
  19186. name: "Front",
  19187. image: {
  19188. source: "./media/characters/shane/front.svg",
  19189. extra: 304 / 289,
  19190. bottom: 0.005
  19191. }
  19192. },
  19193. },
  19194. [
  19195. {
  19196. name: "Normal",
  19197. height: math.unit(5 + 7 / 12, "feet"),
  19198. default: true
  19199. },
  19200. ]
  19201. ))
  19202. characterMakers.push(() => makeCharacter(
  19203. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19204. {
  19205. front: {
  19206. height: math.unit(5 + 9 / 12, "feet"),
  19207. weight: math.unit(178, "lb"),
  19208. name: "Front",
  19209. image: {
  19210. source: "./media/characters/shin/front.svg",
  19211. extra: 159 / 151,
  19212. bottom: 0.015
  19213. }
  19214. },
  19215. },
  19216. [
  19217. {
  19218. name: "Normal",
  19219. height: math.unit(5 + 9 / 12, "feet"),
  19220. default: true
  19221. },
  19222. ]
  19223. ))
  19224. characterMakers.push(() => makeCharacter(
  19225. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19226. {
  19227. front: {
  19228. height: math.unit(5 + 10 / 12, "feet"),
  19229. weight: math.unit(168, "lb"),
  19230. name: "Front",
  19231. image: {
  19232. source: "./media/characters/xerxes/front.svg",
  19233. extra: 282 / 260,
  19234. bottom: 0.045
  19235. }
  19236. },
  19237. },
  19238. [
  19239. {
  19240. name: "Normal",
  19241. height: math.unit(5 + 10 / 12, "feet"),
  19242. default: true
  19243. },
  19244. ]
  19245. ))
  19246. characterMakers.push(() => makeCharacter(
  19247. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19248. {
  19249. front: {
  19250. height: math.unit(6 + 7 / 12, "feet"),
  19251. weight: math.unit(208, "lb"),
  19252. name: "Front",
  19253. image: {
  19254. source: "./media/characters/chaska/front.svg",
  19255. extra: 332 / 319,
  19256. bottom: 0.015
  19257. }
  19258. },
  19259. },
  19260. [
  19261. {
  19262. name: "Normal",
  19263. height: math.unit(6 + 7 / 12, "feet"),
  19264. default: true
  19265. },
  19266. ]
  19267. ))
  19268. characterMakers.push(() => makeCharacter(
  19269. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19270. {
  19271. front: {
  19272. height: math.unit(5 + 8 / 12, "feet"),
  19273. weight: math.unit(208, "lb"),
  19274. name: "Front",
  19275. image: {
  19276. source: "./media/characters/enuk/front.svg",
  19277. extra: 437 / 406,
  19278. bottom: 0.02
  19279. }
  19280. },
  19281. },
  19282. [
  19283. {
  19284. name: "Normal",
  19285. height: math.unit(5 + 8 / 12, "feet"),
  19286. default: true
  19287. },
  19288. ]
  19289. ))
  19290. characterMakers.push(() => makeCharacter(
  19291. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19292. {
  19293. front: {
  19294. height: math.unit(5 + 10 / 12, "feet"),
  19295. weight: math.unit(252, "lb"),
  19296. name: "Front",
  19297. image: {
  19298. source: "./media/characters/bruun/front.svg",
  19299. extra: 197 / 187,
  19300. bottom: 0.012
  19301. }
  19302. },
  19303. },
  19304. [
  19305. {
  19306. name: "Normal",
  19307. height: math.unit(5 + 10 / 12, "feet"),
  19308. default: true
  19309. },
  19310. ]
  19311. ))
  19312. characterMakers.push(() => makeCharacter(
  19313. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19314. {
  19315. front: {
  19316. height: math.unit(6 + 10 / 12, "feet"),
  19317. weight: math.unit(255, "lb"),
  19318. name: "Front",
  19319. image: {
  19320. source: "./media/characters/alexeev/front.svg",
  19321. extra: 213 / 200,
  19322. bottom: 0.05
  19323. }
  19324. },
  19325. },
  19326. [
  19327. {
  19328. name: "Normal",
  19329. height: math.unit(6 + 10 / 12, "feet"),
  19330. default: true
  19331. },
  19332. ]
  19333. ))
  19334. characterMakers.push(() => makeCharacter(
  19335. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19336. {
  19337. front: {
  19338. height: math.unit(2 + 8 / 12, "feet"),
  19339. weight: math.unit(22, "lb"),
  19340. name: "Front",
  19341. image: {
  19342. source: "./media/characters/evelyn/front.svg",
  19343. extra: 208 / 180
  19344. }
  19345. },
  19346. },
  19347. [
  19348. {
  19349. name: "Normal",
  19350. height: math.unit(2 + 8 / 12, "feet"),
  19351. default: true
  19352. },
  19353. ]
  19354. ))
  19355. characterMakers.push(() => makeCharacter(
  19356. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19357. {
  19358. front: {
  19359. height: math.unit(5 + 9 / 12, "feet"),
  19360. weight: math.unit(139, "lb"),
  19361. name: "Front",
  19362. image: {
  19363. source: "./media/characters/inca/front.svg",
  19364. extra: 294 / 291,
  19365. bottom: 0.03
  19366. }
  19367. },
  19368. },
  19369. [
  19370. {
  19371. name: "Normal",
  19372. height: math.unit(5 + 9 / 12, "feet"),
  19373. default: true
  19374. },
  19375. ]
  19376. ))
  19377. characterMakers.push(() => makeCharacter(
  19378. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19379. {
  19380. front: {
  19381. height: math.unit(5 + 1 / 12, "feet"),
  19382. weight: math.unit(84, "lb"),
  19383. name: "Front",
  19384. image: {
  19385. source: "./media/characters/magdalene/front.svg",
  19386. extra: 293 / 273
  19387. }
  19388. },
  19389. },
  19390. [
  19391. {
  19392. name: "Normal",
  19393. height: math.unit(5 + 1 / 12, "feet"),
  19394. default: true
  19395. },
  19396. ]
  19397. ))
  19398. characterMakers.push(() => makeCharacter(
  19399. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19400. {
  19401. front: {
  19402. height: math.unit(6 + 3 / 12, "feet"),
  19403. weight: math.unit(185, "lb"),
  19404. name: "Front",
  19405. image: {
  19406. source: "./media/characters/mera/front.svg",
  19407. extra: 291 / 277,
  19408. bottom: 0.03
  19409. }
  19410. },
  19411. },
  19412. [
  19413. {
  19414. name: "Normal",
  19415. height: math.unit(6 + 3 / 12, "feet"),
  19416. default: true
  19417. },
  19418. ]
  19419. ))
  19420. characterMakers.push(() => makeCharacter(
  19421. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19422. {
  19423. front: {
  19424. height: math.unit(6 + 7 / 12, "feet"),
  19425. weight: math.unit(160, "lb"),
  19426. name: "Front",
  19427. image: {
  19428. source: "./media/characters/ceres/front.svg",
  19429. extra: 1023 / 950,
  19430. bottom: 0.027
  19431. }
  19432. },
  19433. back: {
  19434. height: math.unit(6 + 7 / 12, "feet"),
  19435. weight: math.unit(160, "lb"),
  19436. name: "Back",
  19437. image: {
  19438. source: "./media/characters/ceres/back.svg",
  19439. extra: 1023 / 950
  19440. }
  19441. },
  19442. },
  19443. [
  19444. {
  19445. name: "Normal",
  19446. height: math.unit(6 + 7 / 12, "feet"),
  19447. default: true
  19448. },
  19449. ]
  19450. ))
  19451. characterMakers.push(() => makeCharacter(
  19452. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19453. {
  19454. front: {
  19455. height: math.unit(5 + 10 / 12, "feet"),
  19456. weight: math.unit(150, "lb"),
  19457. name: "Front",
  19458. image: {
  19459. source: "./media/characters/kris/front.svg",
  19460. extra: 885 / 803,
  19461. bottom: 0.03
  19462. }
  19463. },
  19464. },
  19465. [
  19466. {
  19467. name: "Normal",
  19468. height: math.unit(5 + 10 / 12, "feet"),
  19469. default: true
  19470. },
  19471. ]
  19472. ))
  19473. characterMakers.push(() => makeCharacter(
  19474. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19475. {
  19476. front: {
  19477. height: math.unit(7, "feet"),
  19478. weight: math.unit(120, "kg"),
  19479. name: "Front",
  19480. image: {
  19481. source: "./media/characters/taluthus/front.svg",
  19482. extra: 903 / 833,
  19483. bottom: 0.015
  19484. }
  19485. },
  19486. },
  19487. [
  19488. {
  19489. name: "Normal",
  19490. height: math.unit(7, "feet"),
  19491. default: true
  19492. },
  19493. {
  19494. name: "Macro",
  19495. height: math.unit(300, "feet")
  19496. },
  19497. ]
  19498. ))
  19499. characterMakers.push(() => makeCharacter(
  19500. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19501. {
  19502. front: {
  19503. height: math.unit(5 + 9 / 12, "feet"),
  19504. weight: math.unit(145, "lb"),
  19505. name: "Front",
  19506. image: {
  19507. source: "./media/characters/dawn/front.svg",
  19508. extra: 2094 / 2016,
  19509. bottom: 0.025
  19510. }
  19511. },
  19512. back: {
  19513. height: math.unit(5 + 9 / 12, "feet"),
  19514. weight: math.unit(160, "lb"),
  19515. name: "Back",
  19516. image: {
  19517. source: "./media/characters/dawn/back.svg",
  19518. extra: 2112 / 2080,
  19519. bottom: 0.005
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Normal",
  19526. height: math.unit(6 + 7 / 12, "feet"),
  19527. default: true
  19528. },
  19529. ]
  19530. ))
  19531. characterMakers.push(() => makeCharacter(
  19532. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19533. {
  19534. anthro: {
  19535. height: math.unit(8 + 3 / 12, "feet"),
  19536. weight: math.unit(450, "lb"),
  19537. name: "Anthro",
  19538. image: {
  19539. source: "./media/characters/arador/anthro.svg",
  19540. extra: 1835 / 1718,
  19541. bottom: 0.025
  19542. }
  19543. },
  19544. feral: {
  19545. height: math.unit(4, "feet"),
  19546. weight: math.unit(200, "lb"),
  19547. name: "Feral",
  19548. image: {
  19549. source: "./media/characters/arador/feral.svg",
  19550. extra: 1683 / 1514,
  19551. bottom: 0.07
  19552. }
  19553. },
  19554. },
  19555. [
  19556. {
  19557. name: "Normal",
  19558. height: math.unit(8 + 3 / 12, "feet")
  19559. },
  19560. {
  19561. name: "Macro",
  19562. height: math.unit(82.5, "feet"),
  19563. default: true
  19564. },
  19565. ]
  19566. ))
  19567. characterMakers.push(() => makeCharacter(
  19568. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19569. {
  19570. front: {
  19571. height: math.unit(5 + 10 / 12, "feet"),
  19572. weight: math.unit(125, "lb"),
  19573. name: "Front",
  19574. image: {
  19575. source: "./media/characters/dharsi/front.svg",
  19576. extra: 716 / 630,
  19577. bottom: 0.035
  19578. }
  19579. },
  19580. },
  19581. [
  19582. {
  19583. name: "Nano",
  19584. height: math.unit(100, "nm")
  19585. },
  19586. {
  19587. name: "Micro",
  19588. height: math.unit(2, "inches")
  19589. },
  19590. {
  19591. name: "Normal",
  19592. height: math.unit(5 + 10 / 12, "feet"),
  19593. default: true
  19594. },
  19595. {
  19596. name: "Macro",
  19597. height: math.unit(1000, "feet")
  19598. },
  19599. {
  19600. name: "Megamacro",
  19601. height: math.unit(10, "miles")
  19602. },
  19603. {
  19604. name: "Gigamacro",
  19605. height: math.unit(3000, "miles")
  19606. },
  19607. {
  19608. name: "Teramacro",
  19609. height: math.unit(500000, "miles")
  19610. },
  19611. {
  19612. name: "Teramacro+",
  19613. height: math.unit(30, "galaxies")
  19614. },
  19615. ]
  19616. ))
  19617. characterMakers.push(() => makeCharacter(
  19618. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19619. {
  19620. front: {
  19621. height: math.unit(6, "feet"),
  19622. weight: math.unit(150, "lb"),
  19623. name: "Front",
  19624. image: {
  19625. source: "./media/characters/deathy/front.svg",
  19626. extra: 1552 / 1463,
  19627. bottom: 0.025
  19628. }
  19629. },
  19630. side: {
  19631. height: math.unit(6, "feet"),
  19632. weight: math.unit(150, "lb"),
  19633. name: "Side",
  19634. image: {
  19635. source: "./media/characters/deathy/side.svg",
  19636. extra: 1604 / 1455,
  19637. bottom: 0.025
  19638. }
  19639. },
  19640. back: {
  19641. height: math.unit(6, "feet"),
  19642. weight: math.unit(150, "lb"),
  19643. name: "Back",
  19644. image: {
  19645. source: "./media/characters/deathy/back.svg",
  19646. extra: 1580 / 1463,
  19647. bottom: 0.005
  19648. }
  19649. },
  19650. },
  19651. [
  19652. {
  19653. name: "Micro",
  19654. height: math.unit(5, "millimeters")
  19655. },
  19656. {
  19657. name: "Normal",
  19658. height: math.unit(6 + 5 / 12, "feet"),
  19659. default: true
  19660. },
  19661. ]
  19662. ))
  19663. characterMakers.push(() => makeCharacter(
  19664. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19665. {
  19666. front: {
  19667. height: math.unit(16, "feet"),
  19668. weight: math.unit(4000, "lb"),
  19669. name: "Front",
  19670. image: {
  19671. source: "./media/characters/juniper/front.svg",
  19672. bottom: 0.04
  19673. }
  19674. },
  19675. },
  19676. [
  19677. {
  19678. name: "Normal",
  19679. height: math.unit(16, "feet"),
  19680. default: true
  19681. },
  19682. ]
  19683. ))
  19684. characterMakers.push(() => makeCharacter(
  19685. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19686. {
  19687. front: {
  19688. height: math.unit(6, "feet"),
  19689. weight: math.unit(150, "lb"),
  19690. name: "Front",
  19691. image: {
  19692. source: "./media/characters/hipster/front.svg",
  19693. extra: 1312 / 1209,
  19694. bottom: 0.025
  19695. }
  19696. },
  19697. back: {
  19698. height: math.unit(6, "feet"),
  19699. weight: math.unit(150, "lb"),
  19700. name: "Back",
  19701. image: {
  19702. source: "./media/characters/hipster/back.svg",
  19703. extra: 1281 / 1196,
  19704. bottom: 0.01
  19705. }
  19706. },
  19707. },
  19708. [
  19709. {
  19710. name: "Micro",
  19711. height: math.unit(1, "mm")
  19712. },
  19713. {
  19714. name: "Normal",
  19715. height: math.unit(4, "inches"),
  19716. default: true
  19717. },
  19718. {
  19719. name: "Macro",
  19720. height: math.unit(500, "feet")
  19721. },
  19722. {
  19723. name: "Megamacro",
  19724. height: math.unit(1000, "miles")
  19725. },
  19726. ]
  19727. ))
  19728. characterMakers.push(() => makeCharacter(
  19729. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19730. {
  19731. front: {
  19732. height: math.unit(6, "feet"),
  19733. weight: math.unit(150, "lb"),
  19734. name: "Front",
  19735. image: {
  19736. source: "./media/characters/tendirmuldr/front.svg",
  19737. extra: 1878 / 1772,
  19738. bottom: 0.015
  19739. }
  19740. },
  19741. },
  19742. [
  19743. {
  19744. name: "Megamacro",
  19745. height: math.unit(1500, "miles"),
  19746. default: true
  19747. },
  19748. ]
  19749. ))
  19750. characterMakers.push(() => makeCharacter(
  19751. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19752. {
  19753. front: {
  19754. height: math.unit(14, "feet"),
  19755. weight: math.unit(12000, "lb"),
  19756. name: "Front",
  19757. image: {
  19758. source: "./media/characters/mort/front.svg",
  19759. extra: 365 / 318,
  19760. bottom: 0.01
  19761. }
  19762. },
  19763. side: {
  19764. height: math.unit(14, "feet"),
  19765. weight: math.unit(12000, "lb"),
  19766. name: "Side",
  19767. image: {
  19768. source: "./media/characters/mort/side.svg",
  19769. extra: 365 / 318,
  19770. bottom: 0.052
  19771. },
  19772. default: true
  19773. },
  19774. back: {
  19775. height: math.unit(14, "feet"),
  19776. weight: math.unit(12000, "lb"),
  19777. name: "Back",
  19778. image: {
  19779. source: "./media/characters/mort/back.svg",
  19780. extra: 371 / 332,
  19781. bottom: 0.18
  19782. }
  19783. },
  19784. },
  19785. [
  19786. {
  19787. name: "Normal",
  19788. height: math.unit(14, "feet"),
  19789. default: true
  19790. },
  19791. ]
  19792. ))
  19793. characterMakers.push(() => makeCharacter(
  19794. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19795. {
  19796. front: {
  19797. height: math.unit(8, "feet"),
  19798. weight: math.unit(1, "ton"),
  19799. name: "Front",
  19800. image: {
  19801. source: "./media/characters/lycoa/front.svg",
  19802. extra: 1875 / 1789,
  19803. bottom: 0.022
  19804. }
  19805. },
  19806. back: {
  19807. height: math.unit(8, "feet"),
  19808. weight: math.unit(1, "ton"),
  19809. name: "Back",
  19810. image: {
  19811. source: "./media/characters/lycoa/back.svg",
  19812. extra: 1835 / 1781,
  19813. bottom: 0.03
  19814. }
  19815. },
  19816. head: {
  19817. height: math.unit(2.1, "feet"),
  19818. name: "Head",
  19819. image: {
  19820. source: "./media/characters/lycoa/head.svg"
  19821. }
  19822. },
  19823. tailmaw: {
  19824. height: math.unit(1.9, "feet"),
  19825. name: "Tailmaw",
  19826. image: {
  19827. source: "./media/characters/lycoa/tailmaw.svg"
  19828. }
  19829. },
  19830. tentacles: {
  19831. height: math.unit(2.1, "feet"),
  19832. name: "Tentacles",
  19833. image: {
  19834. source: "./media/characters/lycoa/tentacles.svg"
  19835. }
  19836. },
  19837. dick: {
  19838. height: math.unit(1.73, "feet"),
  19839. name: "Dick",
  19840. image: {
  19841. source: "./media/characters/lycoa/dick.svg"
  19842. }
  19843. },
  19844. },
  19845. [
  19846. {
  19847. name: "Normal",
  19848. height: math.unit(8, "feet"),
  19849. default: true
  19850. },
  19851. {
  19852. name: "Macro",
  19853. height: math.unit(30, "feet")
  19854. },
  19855. ]
  19856. ))
  19857. characterMakers.push(() => makeCharacter(
  19858. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19859. {
  19860. front: {
  19861. height: math.unit(4 + 2 / 12, "feet"),
  19862. weight: math.unit(70, "lb"),
  19863. name: "Front",
  19864. image: {
  19865. source: "./media/characters/naldara/front.svg",
  19866. extra: 841 / 720,
  19867. bottom: 0.04
  19868. }
  19869. },
  19870. naga: {
  19871. height: math.unit(23, "feet"),
  19872. weight: math.unit(15000, "kg"),
  19873. name: "Naga",
  19874. image: {
  19875. source: "./media/characters/naldara/naga.svg",
  19876. extra: 3290 / 2959,
  19877. bottom: 124 / 3432
  19878. }
  19879. },
  19880. },
  19881. [
  19882. {
  19883. name: "Normal",
  19884. height: math.unit(4 + 2 / 12, "feet"),
  19885. default: true
  19886. },
  19887. ]
  19888. ))
  19889. characterMakers.push(() => makeCharacter(
  19890. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19891. {
  19892. front: {
  19893. height: math.unit(13 + 7 / 12, "feet"),
  19894. weight: math.unit(1500, "lb"),
  19895. name: "Front",
  19896. image: {
  19897. source: "./media/characters/briar/front.svg",
  19898. extra: 626 / 596,
  19899. bottom: 0.08
  19900. }
  19901. },
  19902. },
  19903. [
  19904. {
  19905. name: "Normal",
  19906. height: math.unit(13 + 7 / 12, "feet"),
  19907. default: true
  19908. },
  19909. ]
  19910. ))
  19911. characterMakers.push(() => makeCharacter(
  19912. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19913. {
  19914. side: {
  19915. height: math.unit(10, "feet"),
  19916. weight: math.unit(500, "lb"),
  19917. name: "Side",
  19918. image: {
  19919. source: "./media/characters/vanguard/side.svg",
  19920. extra: 502 / 425,
  19921. bottom: 0.087
  19922. }
  19923. },
  19924. },
  19925. [
  19926. {
  19927. name: "Normal",
  19928. height: math.unit(10, "feet"),
  19929. default: true
  19930. },
  19931. ]
  19932. ))
  19933. characterMakers.push(() => makeCharacter(
  19934. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19935. {
  19936. front: {
  19937. height: math.unit(7.5, "feet"),
  19938. weight: math.unit(2, "lb"),
  19939. name: "Front",
  19940. image: {
  19941. source: "./media/characters/artemis/front.svg",
  19942. extra: 1192 / 1075,
  19943. bottom: 0.07
  19944. }
  19945. },
  19946. frontNsfw: {
  19947. height: math.unit(7.5, "feet"),
  19948. weight: math.unit(2, "lb"),
  19949. name: "Front (NSFW)",
  19950. image: {
  19951. source: "./media/characters/artemis/front-nsfw.svg",
  19952. extra: 1192 / 1075,
  19953. bottom: 0.07
  19954. }
  19955. },
  19956. frontNsfwer: {
  19957. height: math.unit(7.5, "feet"),
  19958. weight: math.unit(2, "lb"),
  19959. name: "Front (NSFW-er)",
  19960. image: {
  19961. source: "./media/characters/artemis/front-nsfwer.svg",
  19962. extra: 1192 / 1075,
  19963. bottom: 0.07
  19964. }
  19965. },
  19966. side: {
  19967. height: math.unit(7.5, "feet"),
  19968. weight: math.unit(2, "lb"),
  19969. name: "Side",
  19970. image: {
  19971. source: "./media/characters/artemis/side.svg",
  19972. extra: 1192 / 1075,
  19973. bottom: 0.07
  19974. }
  19975. },
  19976. sideNsfw: {
  19977. height: math.unit(7.5, "feet"),
  19978. weight: math.unit(2, "lb"),
  19979. name: "Side (NSFW)",
  19980. image: {
  19981. source: "./media/characters/artemis/side-nsfw.svg",
  19982. extra: 1192 / 1075,
  19983. bottom: 0.07
  19984. }
  19985. },
  19986. sideNsfwer: {
  19987. height: math.unit(7.5, "feet"),
  19988. weight: math.unit(2, "lb"),
  19989. name: "Side (NSFW-er)",
  19990. image: {
  19991. source: "./media/characters/artemis/side-nsfwer.svg",
  19992. extra: 1192 / 1075,
  19993. bottom: 0.07
  19994. }
  19995. },
  19996. maw: {
  19997. height: math.unit(1.1, "feet"),
  19998. name: "Maw",
  19999. image: {
  20000. source: "./media/characters/artemis/maw.svg"
  20001. }
  20002. },
  20003. stomach: {
  20004. height: math.unit(0.95, "feet"),
  20005. name: "Stomach",
  20006. image: {
  20007. source: "./media/characters/artemis/stomach.svg"
  20008. }
  20009. },
  20010. dickCanine: {
  20011. height: math.unit(1, "feet"),
  20012. name: "Dick (Canine)",
  20013. image: {
  20014. source: "./media/characters/artemis/dick-canine.svg"
  20015. }
  20016. },
  20017. dickEquine: {
  20018. height: math.unit(0.85, "feet"),
  20019. name: "Dick (Equine)",
  20020. image: {
  20021. source: "./media/characters/artemis/dick-equine.svg"
  20022. }
  20023. },
  20024. dickExotic: {
  20025. height: math.unit(0.85, "feet"),
  20026. name: "Dick (Exotic)",
  20027. image: {
  20028. source: "./media/characters/artemis/dick-exotic.svg"
  20029. }
  20030. },
  20031. },
  20032. [
  20033. {
  20034. name: "Normal",
  20035. height: math.unit(7.5, "feet"),
  20036. default: true
  20037. },
  20038. {
  20039. name: "Enlarged",
  20040. height: math.unit(12, "feet")
  20041. },
  20042. ]
  20043. ))
  20044. characterMakers.push(() => makeCharacter(
  20045. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20046. {
  20047. front: {
  20048. height: math.unit(5 + 3 / 12, "feet"),
  20049. weight: math.unit(160, "lb"),
  20050. name: "Front",
  20051. image: {
  20052. source: "./media/characters/kira/front.svg",
  20053. extra: 906 / 786,
  20054. bottom: 0.01
  20055. }
  20056. },
  20057. back: {
  20058. height: math.unit(5 + 3 / 12, "feet"),
  20059. weight: math.unit(160, "lb"),
  20060. name: "Back",
  20061. image: {
  20062. source: "./media/characters/kira/back.svg",
  20063. extra: 882 / 757,
  20064. bottom: 0.005
  20065. }
  20066. },
  20067. frontDressed: {
  20068. height: math.unit(5 + 3 / 12, "feet"),
  20069. weight: math.unit(160, "lb"),
  20070. name: "Front (Dressed)",
  20071. image: {
  20072. source: "./media/characters/kira/front-dressed.svg",
  20073. extra: 906 / 786,
  20074. bottom: 0.01
  20075. }
  20076. },
  20077. beans: {
  20078. height: math.unit(0.92, "feet"),
  20079. name: "Beans",
  20080. image: {
  20081. source: "./media/characters/kira/beans.svg"
  20082. }
  20083. },
  20084. },
  20085. [
  20086. {
  20087. name: "Normal",
  20088. height: math.unit(5 + 3 / 12, "feet"),
  20089. default: true
  20090. },
  20091. ]
  20092. ))
  20093. characterMakers.push(() => makeCharacter(
  20094. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20095. {
  20096. front: {
  20097. height: math.unit(5 + 4 / 12, "feet"),
  20098. weight: math.unit(145, "lb"),
  20099. name: "Front",
  20100. image: {
  20101. source: "./media/characters/scramble/front.svg",
  20102. extra: 763 / 727,
  20103. bottom: 0.05
  20104. }
  20105. },
  20106. back: {
  20107. height: math.unit(5 + 4 / 12, "feet"),
  20108. weight: math.unit(145, "lb"),
  20109. name: "Back",
  20110. image: {
  20111. source: "./media/characters/scramble/back.svg",
  20112. extra: 826 / 737,
  20113. bottom: 0.002
  20114. }
  20115. },
  20116. },
  20117. [
  20118. {
  20119. name: "Normal",
  20120. height: math.unit(5 + 4 / 12, "feet"),
  20121. default: true
  20122. },
  20123. ]
  20124. ))
  20125. characterMakers.push(() => makeCharacter(
  20126. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20127. {
  20128. side: {
  20129. height: math.unit(6 + 2 / 12, "feet"),
  20130. weight: math.unit(190, "lb"),
  20131. name: "Side",
  20132. image: {
  20133. source: "./media/characters/biscuit/side.svg",
  20134. extra: 858 / 791,
  20135. bottom: 0.044
  20136. }
  20137. },
  20138. },
  20139. [
  20140. {
  20141. name: "Normal",
  20142. height: math.unit(6 + 2 / 12, "feet"),
  20143. default: true
  20144. },
  20145. ]
  20146. ))
  20147. characterMakers.push(() => makeCharacter(
  20148. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20149. {
  20150. front: {
  20151. height: math.unit(5 + 2 / 12, "feet"),
  20152. weight: math.unit(120, "lb"),
  20153. name: "Front",
  20154. image: {
  20155. source: "./media/characters/poffin/front.svg",
  20156. extra: 786 / 680,
  20157. bottom: 0.005
  20158. }
  20159. },
  20160. },
  20161. [
  20162. {
  20163. name: "Normal",
  20164. height: math.unit(5 + 2 / 12, "feet"),
  20165. default: true
  20166. },
  20167. ]
  20168. ))
  20169. characterMakers.push(() => makeCharacter(
  20170. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20171. {
  20172. front: {
  20173. height: math.unit(6 + 3 / 12, "feet"),
  20174. weight: math.unit(519, "lb"),
  20175. name: "Front",
  20176. image: {
  20177. source: "./media/characters/dhari/front.svg",
  20178. extra: 1048 / 946,
  20179. bottom: 0.015
  20180. }
  20181. },
  20182. back: {
  20183. height: math.unit(6 + 3 / 12, "feet"),
  20184. weight: math.unit(519, "lb"),
  20185. name: "Back",
  20186. image: {
  20187. source: "./media/characters/dhari/back.svg",
  20188. extra: 1048 / 931,
  20189. bottom: 0.005
  20190. }
  20191. },
  20192. frontDressed: {
  20193. height: math.unit(6 + 3 / 12, "feet"),
  20194. weight: math.unit(519, "lb"),
  20195. name: "Front (Dressed)",
  20196. image: {
  20197. source: "./media/characters/dhari/front-dressed.svg",
  20198. extra: 1713 / 1546,
  20199. bottom: 0.02
  20200. }
  20201. },
  20202. backDressed: {
  20203. height: math.unit(6 + 3 / 12, "feet"),
  20204. weight: math.unit(519, "lb"),
  20205. name: "Back (Dressed)",
  20206. image: {
  20207. source: "./media/characters/dhari/back-dressed.svg",
  20208. extra: 1699 / 1537,
  20209. bottom: 0.01
  20210. }
  20211. },
  20212. maw: {
  20213. height: math.unit(0.95, "feet"),
  20214. name: "Maw",
  20215. image: {
  20216. source: "./media/characters/dhari/maw.svg"
  20217. }
  20218. },
  20219. wereFront: {
  20220. height: math.unit(12 + 8 / 12, "feet"),
  20221. weight: math.unit(4000, "lb"),
  20222. name: "Front (Were)",
  20223. image: {
  20224. source: "./media/characters/dhari/were-front.svg",
  20225. extra: 1065 / 969,
  20226. bottom: 0.015
  20227. }
  20228. },
  20229. wereBack: {
  20230. height: math.unit(12 + 8 / 12, "feet"),
  20231. weight: math.unit(4000, "lb"),
  20232. name: "Back (Were)",
  20233. image: {
  20234. source: "./media/characters/dhari/were-back.svg",
  20235. extra: 1065 / 969,
  20236. bottom: 0.012
  20237. }
  20238. },
  20239. wereMaw: {
  20240. height: math.unit(0.625, "meters"),
  20241. name: "Maw (Were)",
  20242. image: {
  20243. source: "./media/characters/dhari/were-maw.svg"
  20244. }
  20245. },
  20246. },
  20247. [
  20248. {
  20249. name: "Normal",
  20250. height: math.unit(6 + 3 / 12, "feet"),
  20251. default: true
  20252. },
  20253. ]
  20254. ))
  20255. characterMakers.push(() => makeCharacter(
  20256. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20257. {
  20258. anthro: {
  20259. height: math.unit(5 + 7 / 12, "feet"),
  20260. weight: math.unit(175, "lb"),
  20261. name: "Anthro",
  20262. image: {
  20263. source: "./media/characters/rena-dyne/anthro.svg",
  20264. extra: 1849 / 1785,
  20265. bottom: 0.005
  20266. }
  20267. },
  20268. taur: {
  20269. height: math.unit(15 + 6 / 12, "feet"),
  20270. weight: math.unit(8000, "lb"),
  20271. name: "Taur",
  20272. image: {
  20273. source: "./media/characters/rena-dyne/taur.svg",
  20274. extra: 2315 / 2234,
  20275. bottom: 0.033
  20276. }
  20277. },
  20278. },
  20279. [
  20280. {
  20281. name: "Normal",
  20282. height: math.unit(5 + 7 / 12, "feet"),
  20283. default: true
  20284. },
  20285. ]
  20286. ))
  20287. characterMakers.push(() => makeCharacter(
  20288. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20289. {
  20290. front: {
  20291. height: math.unit(8, "feet"),
  20292. weight: math.unit(600, "lb"),
  20293. name: "Front",
  20294. image: {
  20295. source: "./media/characters/weremeep/front.svg",
  20296. extra: 967 / 862,
  20297. bottom: 0.01
  20298. }
  20299. },
  20300. },
  20301. [
  20302. {
  20303. name: "Normal",
  20304. height: math.unit(8, "feet"),
  20305. default: true
  20306. },
  20307. {
  20308. name: "Lorg",
  20309. height: math.unit(12, "feet")
  20310. },
  20311. {
  20312. name: "Oh Lawd She Comin'",
  20313. height: math.unit(20, "feet")
  20314. },
  20315. ]
  20316. ))
  20317. characterMakers.push(() => makeCharacter(
  20318. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20319. {
  20320. front: {
  20321. height: math.unit(4, "feet"),
  20322. weight: math.unit(90, "lb"),
  20323. name: "Front",
  20324. image: {
  20325. source: "./media/characters/reza/front.svg",
  20326. extra: 1183 / 1111,
  20327. bottom: 0.017
  20328. }
  20329. },
  20330. back: {
  20331. height: math.unit(4, "feet"),
  20332. weight: math.unit(90, "lb"),
  20333. name: "Back",
  20334. image: {
  20335. source: "./media/characters/reza/back.svg",
  20336. extra: 1183 / 1111,
  20337. bottom: 0.01
  20338. }
  20339. },
  20340. drake: {
  20341. height: math.unit(30, "feet"),
  20342. weight: math.unit(246960, "lb"),
  20343. name: "Drake",
  20344. image: {
  20345. source: "./media/characters/reza/drake.svg",
  20346. extra: 2350 / 2024,
  20347. bottom: 60.7 / 2403
  20348. }
  20349. },
  20350. },
  20351. [
  20352. {
  20353. name: "Normal",
  20354. height: math.unit(4, "feet"),
  20355. default: true
  20356. },
  20357. ]
  20358. ))
  20359. characterMakers.push(() => makeCharacter(
  20360. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20361. {
  20362. side: {
  20363. height: math.unit(15, "feet"),
  20364. weight: math.unit(14, "tons"),
  20365. name: "Side",
  20366. image: {
  20367. source: "./media/characters/athea/side.svg",
  20368. extra: 960 / 540,
  20369. bottom: 0.003
  20370. }
  20371. },
  20372. sitting: {
  20373. height: math.unit(6 * 2.85, "feet"),
  20374. weight: math.unit(14, "tons"),
  20375. name: "Sitting",
  20376. image: {
  20377. source: "./media/characters/athea/sitting.svg",
  20378. extra: 621 / 581,
  20379. bottom: 0.075
  20380. }
  20381. },
  20382. maw: {
  20383. height: math.unit(7.59498031496063, "feet"),
  20384. name: "Maw",
  20385. image: {
  20386. source: "./media/characters/athea/maw.svg"
  20387. }
  20388. },
  20389. },
  20390. [
  20391. {
  20392. name: "Lap Cat",
  20393. height: math.unit(2.5, "feet")
  20394. },
  20395. {
  20396. name: "Minimacro",
  20397. height: math.unit(15, "feet"),
  20398. default: true
  20399. },
  20400. {
  20401. name: "Macro",
  20402. height: math.unit(120, "feet")
  20403. },
  20404. {
  20405. name: "Macro+",
  20406. height: math.unit(640, "feet")
  20407. },
  20408. {
  20409. name: "Colossus",
  20410. height: math.unit(2.2, "miles")
  20411. },
  20412. ]
  20413. ))
  20414. characterMakers.push(() => makeCharacter(
  20415. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20416. {
  20417. front: {
  20418. height: math.unit(8 + 8 / 12, "feet"),
  20419. weight: math.unit(130, "kg"),
  20420. name: "Front",
  20421. image: {
  20422. source: "./media/characters/seroko/front.svg",
  20423. extra: 1385 / 1280,
  20424. bottom: 0.025
  20425. }
  20426. },
  20427. back: {
  20428. height: math.unit(8 + 8 / 12, "feet"),
  20429. weight: math.unit(130, "kg"),
  20430. name: "Back",
  20431. image: {
  20432. source: "./media/characters/seroko/back.svg",
  20433. extra: 1369 / 1238,
  20434. bottom: 0.018
  20435. }
  20436. },
  20437. frontDressed: {
  20438. height: math.unit(8 + 8 / 12, "feet"),
  20439. weight: math.unit(130, "kg"),
  20440. name: "Front (Dressed)",
  20441. image: {
  20442. source: "./media/characters/seroko/front-dressed.svg",
  20443. extra: 1366 / 1275,
  20444. bottom: 0.03
  20445. }
  20446. },
  20447. },
  20448. [
  20449. {
  20450. name: "Normal",
  20451. height: math.unit(8 + 8 / 12, "feet"),
  20452. default: true
  20453. },
  20454. ]
  20455. ))
  20456. characterMakers.push(() => makeCharacter(
  20457. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20458. {
  20459. front: {
  20460. height: math.unit(5.5, "feet"),
  20461. weight: math.unit(160, "lb"),
  20462. name: "Front",
  20463. image: {
  20464. source: "./media/characters/quatzi/front.svg",
  20465. extra: 2346 / 2242,
  20466. bottom: 0.015
  20467. }
  20468. },
  20469. },
  20470. [
  20471. {
  20472. name: "Normal",
  20473. height: math.unit(5.5, "feet"),
  20474. default: true
  20475. },
  20476. {
  20477. name: "Big",
  20478. height: math.unit(7.7, "feet")
  20479. },
  20480. ]
  20481. ))
  20482. characterMakers.push(() => makeCharacter(
  20483. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20484. {
  20485. front: {
  20486. height: math.unit(5 + 11 / 12, "feet"),
  20487. weight: math.unit(180, "lb"),
  20488. name: "Front",
  20489. image: {
  20490. source: "./media/characters/sen/front.svg",
  20491. extra: 1321 / 1254,
  20492. bottom: 0.015
  20493. }
  20494. },
  20495. side: {
  20496. height: math.unit(5 + 11 / 12, "feet"),
  20497. weight: math.unit(180, "lb"),
  20498. name: "Side",
  20499. image: {
  20500. source: "./media/characters/sen/side.svg",
  20501. extra: 1321 / 1254,
  20502. bottom: 0.007
  20503. }
  20504. },
  20505. back: {
  20506. height: math.unit(5 + 11 / 12, "feet"),
  20507. weight: math.unit(180, "lb"),
  20508. name: "Back",
  20509. image: {
  20510. source: "./media/characters/sen/back.svg",
  20511. extra: 1321 / 1254
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Normal",
  20518. height: math.unit(5 + 11 / 12, "feet"),
  20519. default: true
  20520. },
  20521. ]
  20522. ))
  20523. characterMakers.push(() => makeCharacter(
  20524. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20525. {
  20526. front: {
  20527. height: math.unit(166.6, "cm"),
  20528. weight: math.unit(66.6, "kg"),
  20529. name: "Front",
  20530. image: {
  20531. source: "./media/characters/fruity/front.svg",
  20532. extra: 1510 / 1386,
  20533. bottom: 0.04
  20534. }
  20535. },
  20536. back: {
  20537. height: math.unit(166.6, "cm"),
  20538. weight: math.unit(66.6, "lb"),
  20539. name: "Back",
  20540. image: {
  20541. source: "./media/characters/fruity/back.svg",
  20542. extra: 1563 / 1435,
  20543. bottom: 0.005
  20544. }
  20545. },
  20546. },
  20547. [
  20548. {
  20549. name: "Normal",
  20550. height: math.unit(166.6, "cm"),
  20551. default: true
  20552. },
  20553. {
  20554. name: "Demonic",
  20555. height: math.unit(166.6, "feet")
  20556. },
  20557. ]
  20558. ))
  20559. characterMakers.push(() => makeCharacter(
  20560. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20561. {
  20562. side: {
  20563. height: math.unit(10, "feet"),
  20564. weight: math.unit(500, "lb"),
  20565. name: "Side",
  20566. image: {
  20567. source: "./media/characters/zost/side.svg",
  20568. extra: 966 / 880,
  20569. bottom: 0.075
  20570. }
  20571. },
  20572. mawFront: {
  20573. height: math.unit(1.08, "meters"),
  20574. name: "Maw (Front)",
  20575. image: {
  20576. source: "./media/characters/zost/maw-front.svg"
  20577. }
  20578. },
  20579. mawSide: {
  20580. height: math.unit(2.66, "feet"),
  20581. name: "Maw (Side)",
  20582. image: {
  20583. source: "./media/characters/zost/maw-side.svg"
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Normal",
  20590. height: math.unit(10, "feet"),
  20591. default: true
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20597. {
  20598. front: {
  20599. height: math.unit(5 + 4 / 12, "feet"),
  20600. weight: math.unit(120, "lb"),
  20601. name: "Front",
  20602. image: {
  20603. source: "./media/characters/luci/front.svg",
  20604. extra: 1985 / 1884,
  20605. bottom: 0.04
  20606. }
  20607. },
  20608. back: {
  20609. height: math.unit(5 + 4 / 12, "feet"),
  20610. weight: math.unit(120, "lb"),
  20611. name: "Back",
  20612. image: {
  20613. source: "./media/characters/luci/back.svg",
  20614. extra: 1892 / 1791,
  20615. bottom: 0.002
  20616. }
  20617. },
  20618. },
  20619. [
  20620. {
  20621. name: "Normal",
  20622. height: math.unit(5 + 4 / 12, "feet"),
  20623. default: true
  20624. },
  20625. ]
  20626. ))
  20627. characterMakers.push(() => makeCharacter(
  20628. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20629. {
  20630. front: {
  20631. height: math.unit(1500, "feet"),
  20632. weight: math.unit(3.8e6, "tons"),
  20633. name: "Front",
  20634. image: {
  20635. source: "./media/characters/2th/front.svg",
  20636. extra: 3489 / 3350,
  20637. bottom: 0.1
  20638. }
  20639. },
  20640. foot: {
  20641. height: math.unit(461, "feet"),
  20642. name: "Foot",
  20643. image: {
  20644. source: "./media/characters/2th/foot.svg"
  20645. }
  20646. },
  20647. },
  20648. [
  20649. {
  20650. name: "\"Micro\"",
  20651. height: math.unit(15 + 7 / 12, "feet")
  20652. },
  20653. {
  20654. name: "Normal",
  20655. height: math.unit(1500, "feet"),
  20656. default: true
  20657. },
  20658. {
  20659. name: "Macro",
  20660. height: math.unit(5000, "feet")
  20661. },
  20662. {
  20663. name: "Megamacro",
  20664. height: math.unit(15, "miles")
  20665. },
  20666. {
  20667. name: "Gigamacro",
  20668. height: math.unit(4000, "miles")
  20669. },
  20670. {
  20671. name: "Galactic",
  20672. height: math.unit(50, "AU")
  20673. },
  20674. ]
  20675. ))
  20676. characterMakers.push(() => makeCharacter(
  20677. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20678. {
  20679. front: {
  20680. height: math.unit(5 + 6 / 12, "feet"),
  20681. weight: math.unit(220, "lb"),
  20682. name: "Front",
  20683. image: {
  20684. source: "./media/characters/amethyst/front.svg",
  20685. extra: 2078 / 2040,
  20686. bottom: 0.045
  20687. }
  20688. },
  20689. back: {
  20690. height: math.unit(5 + 6 / 12, "feet"),
  20691. weight: math.unit(220, "lb"),
  20692. name: "Back",
  20693. image: {
  20694. source: "./media/characters/amethyst/back.svg",
  20695. extra: 2021 / 1989,
  20696. bottom: 0.02
  20697. }
  20698. },
  20699. },
  20700. [
  20701. {
  20702. name: "Normal",
  20703. height: math.unit(5 + 6 / 12, "feet"),
  20704. default: true
  20705. },
  20706. ]
  20707. ))
  20708. characterMakers.push(() => makeCharacter(
  20709. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20710. {
  20711. front: {
  20712. height: math.unit(4 + 11 / 12, "feet"),
  20713. weight: math.unit(120, "lb"),
  20714. name: "Front",
  20715. image: {
  20716. source: "./media/characters/yumi-akiyama/front.svg",
  20717. extra: 1327 / 1235,
  20718. bottom: 0.02
  20719. }
  20720. },
  20721. back: {
  20722. height: math.unit(4 + 11 / 12, "feet"),
  20723. weight: math.unit(120, "lb"),
  20724. name: "Back",
  20725. image: {
  20726. source: "./media/characters/yumi-akiyama/back.svg",
  20727. extra: 1287 / 1245,
  20728. bottom: 0.002
  20729. }
  20730. },
  20731. },
  20732. [
  20733. {
  20734. name: "Galactic",
  20735. height: math.unit(50, "galaxies"),
  20736. default: true
  20737. },
  20738. {
  20739. name: "Universal",
  20740. height: math.unit(100, "universes")
  20741. },
  20742. ]
  20743. ))
  20744. characterMakers.push(() => makeCharacter(
  20745. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20746. {
  20747. front: {
  20748. height: math.unit(8, "feet"),
  20749. weight: math.unit(500, "lb"),
  20750. name: "Front",
  20751. image: {
  20752. source: "./media/characters/rifter-yrmori/front.svg",
  20753. extra: 1180 / 1125,
  20754. bottom: 0.02
  20755. }
  20756. },
  20757. back: {
  20758. height: math.unit(8, "feet"),
  20759. weight: math.unit(500, "lb"),
  20760. name: "Back",
  20761. image: {
  20762. source: "./media/characters/rifter-yrmori/back.svg",
  20763. extra: 1190 / 1145,
  20764. bottom: 0.001
  20765. }
  20766. },
  20767. wings: {
  20768. height: math.unit(7.75, "feet"),
  20769. weight: math.unit(500, "lb"),
  20770. name: "Wings",
  20771. image: {
  20772. source: "./media/characters/rifter-yrmori/wings.svg",
  20773. extra: 1357 / 1285
  20774. }
  20775. },
  20776. maw: {
  20777. height: math.unit(0.8, "feet"),
  20778. name: "Maw",
  20779. image: {
  20780. source: "./media/characters/rifter-yrmori/maw.svg"
  20781. }
  20782. },
  20783. mawfront: {
  20784. height: math.unit(1.45, "feet"),
  20785. name: "Maw (Front)",
  20786. image: {
  20787. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20788. }
  20789. },
  20790. },
  20791. [
  20792. {
  20793. name: "Normal",
  20794. height: math.unit(8, "feet"),
  20795. default: true
  20796. },
  20797. {
  20798. name: "Macro",
  20799. height: math.unit(42, "meters")
  20800. },
  20801. ]
  20802. ))
  20803. characterMakers.push(() => makeCharacter(
  20804. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20805. {
  20806. were: {
  20807. height: math.unit(25 + 6 / 12, "feet"),
  20808. weight: math.unit(10000, "lb"),
  20809. name: "Were",
  20810. image: {
  20811. source: "./media/characters/tahajin/were.svg",
  20812. extra: 801 / 770,
  20813. bottom: 0.042
  20814. }
  20815. },
  20816. aquatic: {
  20817. height: math.unit(6 + 4 / 12, "feet"),
  20818. weight: math.unit(160, "lb"),
  20819. name: "Aquatic",
  20820. image: {
  20821. source: "./media/characters/tahajin/aquatic.svg",
  20822. extra: 572 / 542,
  20823. bottom: 0.04
  20824. }
  20825. },
  20826. chow: {
  20827. height: math.unit(8 + 11 / 12, "feet"),
  20828. weight: math.unit(450, "lb"),
  20829. name: "Chow",
  20830. image: {
  20831. source: "./media/characters/tahajin/chow.svg",
  20832. extra: 660 / 640,
  20833. bottom: 0.015
  20834. }
  20835. },
  20836. demiNaga: {
  20837. height: math.unit(6 + 8 / 12, "feet"),
  20838. weight: math.unit(300, "lb"),
  20839. name: "Demi Naga",
  20840. image: {
  20841. source: "./media/characters/tahajin/demi-naga.svg",
  20842. extra: 643 / 615,
  20843. bottom: 0.1
  20844. }
  20845. },
  20846. data: {
  20847. height: math.unit(5, "inches"),
  20848. weight: math.unit(0.1, "lb"),
  20849. name: "Data",
  20850. image: {
  20851. source: "./media/characters/tahajin/data.svg"
  20852. }
  20853. },
  20854. fluu: {
  20855. height: math.unit(5 + 7 / 12, "feet"),
  20856. weight: math.unit(140, "lb"),
  20857. name: "Fluu",
  20858. image: {
  20859. source: "./media/characters/tahajin/fluu.svg",
  20860. extra: 628 / 592,
  20861. bottom: 0.02
  20862. }
  20863. },
  20864. starWarrior: {
  20865. height: math.unit(4 + 5 / 12, "feet"),
  20866. weight: math.unit(50, "lb"),
  20867. name: "Star Warrior",
  20868. image: {
  20869. source: "./media/characters/tahajin/star-warrior.svg"
  20870. }
  20871. },
  20872. },
  20873. [
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(25 + 6 / 12, "feet"),
  20877. default: true
  20878. },
  20879. ]
  20880. ))
  20881. characterMakers.push(() => makeCharacter(
  20882. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20883. {
  20884. front: {
  20885. height: math.unit(8, "feet"),
  20886. weight: math.unit(350, "lb"),
  20887. name: "Front",
  20888. image: {
  20889. source: "./media/characters/gabira/front.svg",
  20890. extra: 608 / 580,
  20891. bottom: 0.03
  20892. }
  20893. },
  20894. back: {
  20895. height: math.unit(8, "feet"),
  20896. weight: math.unit(350, "lb"),
  20897. name: "Back",
  20898. image: {
  20899. source: "./media/characters/gabira/back.svg",
  20900. extra: 608 / 580,
  20901. bottom: 0.03
  20902. }
  20903. },
  20904. },
  20905. [
  20906. {
  20907. name: "Normal",
  20908. height: math.unit(8, "feet"),
  20909. default: true
  20910. },
  20911. ]
  20912. ))
  20913. characterMakers.push(() => makeCharacter(
  20914. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20915. {
  20916. front: {
  20917. height: math.unit(5 + 3 / 12, "feet"),
  20918. weight: math.unit(137, "lb"),
  20919. name: "Front",
  20920. image: {
  20921. source: "./media/characters/sasha-katraine/front.svg",
  20922. bottom: 0.045
  20923. }
  20924. },
  20925. },
  20926. [
  20927. {
  20928. name: "Micro",
  20929. height: math.unit(5, "inches")
  20930. },
  20931. {
  20932. name: "Normal",
  20933. height: math.unit(5 + 3 / 12, "feet"),
  20934. default: true
  20935. },
  20936. ]
  20937. ))
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20940. {
  20941. side: {
  20942. height: math.unit(4, "inches"),
  20943. weight: math.unit(200, "grams"),
  20944. name: "Side",
  20945. image: {
  20946. source: "./media/characters/der/side.svg",
  20947. extra: 719 / 400,
  20948. bottom: 30.6 / 749.9187
  20949. }
  20950. },
  20951. },
  20952. [
  20953. {
  20954. name: "Micro",
  20955. height: math.unit(4, "inches"),
  20956. default: true
  20957. },
  20958. ]
  20959. ))
  20960. characterMakers.push(() => makeCharacter(
  20961. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20962. {
  20963. side: {
  20964. height: math.unit(30, "meters"),
  20965. weight: math.unit(700, "tonnes"),
  20966. name: "Side",
  20967. image: {
  20968. source: "./media/characters/fixerdragon/side.svg",
  20969. extra: (1293.0514 - 116.03) / 1106.86,
  20970. bottom: 116.03 / 1293.0514
  20971. }
  20972. },
  20973. },
  20974. [
  20975. {
  20976. name: "Planck",
  20977. height: math.unit(1.6e-35, "meters")
  20978. },
  20979. {
  20980. name: "Micro",
  20981. height: math.unit(0.4, "meters")
  20982. },
  20983. {
  20984. name: "Normal",
  20985. height: math.unit(30, "meters"),
  20986. default: true
  20987. },
  20988. {
  20989. name: "Megamacro",
  20990. height: math.unit(1.2, "megameters")
  20991. },
  20992. {
  20993. name: "Teramacro",
  20994. height: math.unit(130, "terameters")
  20995. },
  20996. {
  20997. name: "Yottamacro",
  20998. height: math.unit(6200, "yottameters")
  20999. },
  21000. ]
  21001. ));
  21002. characterMakers.push(() => makeCharacter(
  21003. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  21004. {
  21005. front: {
  21006. height: math.unit(8, "feet"),
  21007. weight: math.unit(250, "lb"),
  21008. name: "Front",
  21009. image: {
  21010. source: "./media/characters/kite/front.svg",
  21011. extra: 2796 / 2659,
  21012. bottom: 0.002
  21013. }
  21014. },
  21015. },
  21016. [
  21017. {
  21018. name: "Normal",
  21019. height: math.unit(8, "feet"),
  21020. default: true
  21021. },
  21022. {
  21023. name: "Macro",
  21024. height: math.unit(360, "feet")
  21025. },
  21026. {
  21027. name: "Megamacro",
  21028. height: math.unit(1500, "feet")
  21029. },
  21030. ]
  21031. ))
  21032. characterMakers.push(() => makeCharacter(
  21033. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21034. {
  21035. front: {
  21036. height: math.unit(5 + 10 / 12, "feet"),
  21037. weight: math.unit(150, "lb"),
  21038. name: "Front",
  21039. image: {
  21040. source: "./media/characters/poojawa-vynar/front.svg",
  21041. extra: (1506.1547 - 55) / 1356.6,
  21042. bottom: 55 / 1506.1547
  21043. }
  21044. },
  21045. frontTailless: {
  21046. height: math.unit(5 + 10 / 12, "feet"),
  21047. weight: math.unit(150, "lb"),
  21048. name: "Front (Tailless)",
  21049. image: {
  21050. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21051. extra: (1506.1547 - 55) / 1356.6,
  21052. bottom: 55 / 1506.1547
  21053. }
  21054. },
  21055. },
  21056. [
  21057. {
  21058. name: "Normal",
  21059. height: math.unit(5 + 10 / 12, "feet"),
  21060. default: true
  21061. },
  21062. ]
  21063. ))
  21064. characterMakers.push(() => makeCharacter(
  21065. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21066. {
  21067. front: {
  21068. height: math.unit(293, "meters"),
  21069. weight: math.unit(70400, "tons"),
  21070. name: "Front",
  21071. image: {
  21072. source: "./media/characters/violette/front.svg",
  21073. extra: 1227 / 1180,
  21074. bottom: 0.005
  21075. }
  21076. },
  21077. back: {
  21078. height: math.unit(293, "meters"),
  21079. weight: math.unit(70400, "tons"),
  21080. name: "Back",
  21081. image: {
  21082. source: "./media/characters/violette/back.svg",
  21083. extra: 1227 / 1180,
  21084. bottom: 0.005
  21085. }
  21086. },
  21087. },
  21088. [
  21089. {
  21090. name: "Macro",
  21091. height: math.unit(293, "meters"),
  21092. default: true
  21093. },
  21094. ]
  21095. ))
  21096. characterMakers.push(() => makeCharacter(
  21097. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21098. {
  21099. front: {
  21100. height: math.unit(1050, "feet"),
  21101. weight: math.unit(200000, "tons"),
  21102. name: "Front",
  21103. image: {
  21104. source: "./media/characters/alessandra/front.svg",
  21105. extra: 960 / 912,
  21106. bottom: 0.06
  21107. }
  21108. },
  21109. },
  21110. [
  21111. {
  21112. name: "Macro",
  21113. height: math.unit(1050, "feet")
  21114. },
  21115. {
  21116. name: "Macro+",
  21117. height: math.unit(900, "meters"),
  21118. default: true
  21119. },
  21120. ]
  21121. ))
  21122. characterMakers.push(() => makeCharacter(
  21123. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21124. {
  21125. front: {
  21126. height: math.unit(5, "feet"),
  21127. weight: math.unit(187, "lb"),
  21128. name: "Front",
  21129. image: {
  21130. source: "./media/characters/person/front.svg",
  21131. extra: 3087 / 2945,
  21132. bottom: 91 / 3181
  21133. }
  21134. },
  21135. },
  21136. [
  21137. {
  21138. name: "Micro",
  21139. height: math.unit(3, "inches")
  21140. },
  21141. {
  21142. name: "Normal",
  21143. height: math.unit(5, "feet"),
  21144. default: true
  21145. },
  21146. {
  21147. name: "Macro",
  21148. height: math.unit(90, "feet")
  21149. },
  21150. {
  21151. name: "Max Size",
  21152. height: math.unit(280, "feet")
  21153. },
  21154. ]
  21155. ))
  21156. characterMakers.push(() => makeCharacter(
  21157. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21158. {
  21159. front: {
  21160. height: math.unit(4.5, "meters"),
  21161. weight: math.unit(3200, "lb"),
  21162. name: "Front",
  21163. image: {
  21164. source: "./media/characters/ty/front.svg",
  21165. extra: 1038 / 960,
  21166. bottom: 31.156 / 1068
  21167. }
  21168. },
  21169. back: {
  21170. height: math.unit(4.5, "meters"),
  21171. weight: math.unit(3200, "lb"),
  21172. name: "Back",
  21173. image: {
  21174. source: "./media/characters/ty/back.svg",
  21175. extra: 1044 / 966,
  21176. bottom: 7.48 / 1049
  21177. }
  21178. },
  21179. },
  21180. [
  21181. {
  21182. name: "Normal",
  21183. height: math.unit(4.5, "meters"),
  21184. default: true
  21185. },
  21186. ]
  21187. ))
  21188. characterMakers.push(() => makeCharacter(
  21189. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21190. {
  21191. front: {
  21192. height: math.unit(5 + 4 / 12, "feet"),
  21193. weight: math.unit(115, "lb"),
  21194. name: "Front",
  21195. image: {
  21196. source: "./media/characters/rocky/front.svg",
  21197. extra: 1012 / 975,
  21198. bottom: 54 / 1066
  21199. }
  21200. },
  21201. },
  21202. [
  21203. {
  21204. name: "Normal",
  21205. height: math.unit(5 + 4 / 12, "feet"),
  21206. default: true
  21207. },
  21208. ]
  21209. ))
  21210. characterMakers.push(() => makeCharacter(
  21211. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21212. {
  21213. upright: {
  21214. height: math.unit(6, "meters"),
  21215. weight: math.unit(4000, "kg"),
  21216. name: "Upright",
  21217. image: {
  21218. source: "./media/characters/ruin/upright.svg",
  21219. extra: 668 / 661,
  21220. bottom: 42 / 799.8396
  21221. }
  21222. },
  21223. },
  21224. [
  21225. {
  21226. name: "Normal",
  21227. height: math.unit(6, "meters"),
  21228. default: true
  21229. },
  21230. ]
  21231. ))
  21232. characterMakers.push(() => makeCharacter(
  21233. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21234. {
  21235. front: {
  21236. height: math.unit(5, "feet"),
  21237. weight: math.unit(106, "lb"),
  21238. name: "Front",
  21239. image: {
  21240. source: "./media/characters/robin/front.svg",
  21241. extra: 862 / 799,
  21242. bottom: 42.4 / 914.8856
  21243. }
  21244. },
  21245. },
  21246. [
  21247. {
  21248. name: "Normal",
  21249. height: math.unit(5, "feet"),
  21250. default: true
  21251. },
  21252. ]
  21253. ))
  21254. characterMakers.push(() => makeCharacter(
  21255. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21256. {
  21257. side: {
  21258. height: math.unit(3, "feet"),
  21259. weight: math.unit(225, "lb"),
  21260. name: "Side",
  21261. image: {
  21262. source: "./media/characters/saian/side.svg",
  21263. extra: 566 / 356,
  21264. bottom: 79.7 / 643
  21265. }
  21266. },
  21267. maw: {
  21268. height: math.unit(2.85, "feet"),
  21269. name: "Maw",
  21270. image: {
  21271. source: "./media/characters/saian/maw.svg"
  21272. }
  21273. },
  21274. },
  21275. [
  21276. {
  21277. name: "Normal",
  21278. height: math.unit(3, "feet"),
  21279. default: true
  21280. },
  21281. ]
  21282. ))
  21283. characterMakers.push(() => makeCharacter(
  21284. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21285. {
  21286. side: {
  21287. height: math.unit(8, "feet"),
  21288. weight: math.unit(300, "lb"),
  21289. name: "Side",
  21290. image: {
  21291. source: "./media/characters/equus-silvermane/side.svg",
  21292. extra: 2176 / 2050,
  21293. bottom: 65.7 / 2245
  21294. }
  21295. },
  21296. front: {
  21297. height: math.unit(8, "feet"),
  21298. weight: math.unit(300, "lb"),
  21299. name: "Front",
  21300. image: {
  21301. source: "./media/characters/equus-silvermane/front.svg",
  21302. extra: 4633 / 4400,
  21303. bottom: 71.3 / 4706.915
  21304. }
  21305. },
  21306. sideStepping: {
  21307. height: math.unit(8, "feet"),
  21308. weight: math.unit(300, "lb"),
  21309. name: "Side (Stepping)",
  21310. image: {
  21311. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21312. extra: 1968 / 1860,
  21313. bottom: 16.4 / 1989
  21314. }
  21315. },
  21316. },
  21317. [
  21318. {
  21319. name: "Normal",
  21320. height: math.unit(8, "feet")
  21321. },
  21322. {
  21323. name: "Minimacro",
  21324. height: math.unit(75, "feet"),
  21325. default: true
  21326. },
  21327. {
  21328. name: "Macro",
  21329. height: math.unit(150, "feet")
  21330. },
  21331. {
  21332. name: "Macro+",
  21333. height: math.unit(1000, "feet")
  21334. },
  21335. {
  21336. name: "Megamacro",
  21337. height: math.unit(1, "mile")
  21338. },
  21339. ]
  21340. ))
  21341. characterMakers.push(() => makeCharacter(
  21342. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21343. {
  21344. side: {
  21345. height: math.unit(20, "feet"),
  21346. weight: math.unit(30000, "kg"),
  21347. name: "Side",
  21348. image: {
  21349. source: "./media/characters/windar/side.svg",
  21350. extra: 1491 / 1248,
  21351. bottom: 82.56 / 1568
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(20, "feet"),
  21359. default: true
  21360. },
  21361. ]
  21362. ))
  21363. characterMakers.push(() => makeCharacter(
  21364. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21365. {
  21366. side: {
  21367. height: math.unit(15.66, "feet"),
  21368. weight: math.unit(150, "lb"),
  21369. name: "Side",
  21370. image: {
  21371. source: "./media/characters/melody/side.svg",
  21372. extra: 1097 / 944,
  21373. bottom: 11.8 / 1109
  21374. }
  21375. },
  21376. sideOutfit: {
  21377. height: math.unit(15.66, "feet"),
  21378. weight: math.unit(150, "lb"),
  21379. name: "Side (Outfit)",
  21380. image: {
  21381. source: "./media/characters/melody/side-outfit.svg",
  21382. extra: 1097 / 944,
  21383. bottom: 11.8 / 1109
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "Normal",
  21390. height: math.unit(15.66, "feet"),
  21391. default: true
  21392. },
  21393. ]
  21394. ))
  21395. characterMakers.push(() => makeCharacter(
  21396. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21397. {
  21398. front: {
  21399. height: math.unit(8, "feet"),
  21400. weight: math.unit(325, "lb"),
  21401. name: "Front",
  21402. image: {
  21403. source: "./media/characters/windera/front.svg",
  21404. extra: 3180 / 2845,
  21405. bottom: 178 / 3365
  21406. }
  21407. },
  21408. },
  21409. [
  21410. {
  21411. name: "Normal",
  21412. height: math.unit(8, "feet"),
  21413. default: true
  21414. },
  21415. ]
  21416. ))
  21417. characterMakers.push(() => makeCharacter(
  21418. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21419. {
  21420. front: {
  21421. height: math.unit(28.75, "feet"),
  21422. weight: math.unit(2000, "kg"),
  21423. name: "Front",
  21424. image: {
  21425. source: "./media/characters/sonear/front.svg",
  21426. extra: 1041.1 / 964.9,
  21427. bottom: 53.7 / 1096.6
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(28.75, "feet"),
  21435. default: true
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21441. {
  21442. side: {
  21443. height: math.unit(25.5, "feet"),
  21444. weight: math.unit(23000, "kg"),
  21445. name: "Side",
  21446. image: {
  21447. source: "./media/characters/kanara/side.svg"
  21448. }
  21449. },
  21450. },
  21451. [
  21452. {
  21453. name: "Normal",
  21454. height: math.unit(25.5, "feet"),
  21455. default: true
  21456. },
  21457. ]
  21458. ))
  21459. characterMakers.push(() => makeCharacter(
  21460. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21461. {
  21462. side: {
  21463. height: math.unit(10, "feet"),
  21464. weight: math.unit(1000, "kg"),
  21465. name: "Side",
  21466. image: {
  21467. source: "./media/characters/ereus/side.svg",
  21468. extra: 1157 / 959,
  21469. bottom: 153 / 1312.5
  21470. }
  21471. },
  21472. },
  21473. [
  21474. {
  21475. name: "Normal",
  21476. height: math.unit(10, "feet"),
  21477. default: true
  21478. },
  21479. ]
  21480. ))
  21481. characterMakers.push(() => makeCharacter(
  21482. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21483. {
  21484. side: {
  21485. height: math.unit(4.5, "feet"),
  21486. weight: math.unit(500, "lb"),
  21487. name: "Side",
  21488. image: {
  21489. source: "./media/characters/e-ter/side.svg",
  21490. extra: 1550 / 1248,
  21491. bottom: 146 / 1694
  21492. }
  21493. },
  21494. },
  21495. [
  21496. {
  21497. name: "Normal",
  21498. height: math.unit(4.5, "feet"),
  21499. default: true
  21500. },
  21501. ]
  21502. ))
  21503. characterMakers.push(() => makeCharacter(
  21504. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21505. {
  21506. side: {
  21507. height: math.unit(9.7, "feet"),
  21508. weight: math.unit(4000, "kg"),
  21509. name: "Side",
  21510. image: {
  21511. source: "./media/characters/yamie/side.svg"
  21512. }
  21513. },
  21514. },
  21515. [
  21516. {
  21517. name: "Normal",
  21518. height: math.unit(9.7, "feet"),
  21519. default: true
  21520. },
  21521. ]
  21522. ))
  21523. characterMakers.push(() => makeCharacter(
  21524. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21525. {
  21526. front: {
  21527. height: math.unit(50, "feet"),
  21528. weight: math.unit(50000, "kg"),
  21529. name: "Front",
  21530. image: {
  21531. source: "./media/characters/anders/front.svg",
  21532. extra: 570 / 539,
  21533. bottom: 14.7 / 586.7
  21534. }
  21535. },
  21536. },
  21537. [
  21538. {
  21539. name: "Large",
  21540. height: math.unit(50, "feet")
  21541. },
  21542. {
  21543. name: "Macro",
  21544. height: math.unit(2000, "feet"),
  21545. default: true
  21546. },
  21547. {
  21548. name: "Megamacro",
  21549. height: math.unit(12, "miles")
  21550. },
  21551. ]
  21552. ))
  21553. characterMakers.push(() => makeCharacter(
  21554. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21555. {
  21556. front: {
  21557. height: math.unit(7 + 2 / 12, "feet"),
  21558. weight: math.unit(300, "lb"),
  21559. name: "Front",
  21560. image: {
  21561. source: "./media/characters/reban/front.svg",
  21562. extra: 516 / 487,
  21563. bottom: 42.82 / 558.356
  21564. }
  21565. },
  21566. dick: {
  21567. height: math.unit(7 / 5, "feet"),
  21568. name: "Dick",
  21569. image: {
  21570. source: "./media/characters/reban/dick.svg"
  21571. }
  21572. },
  21573. },
  21574. [
  21575. {
  21576. name: "Natural Height",
  21577. height: math.unit(7 + 2 / 12, "feet")
  21578. },
  21579. {
  21580. name: "Macro",
  21581. height: math.unit(500, "feet"),
  21582. default: true
  21583. },
  21584. {
  21585. name: "Canon Height",
  21586. height: math.unit(50, "AU")
  21587. },
  21588. ]
  21589. ))
  21590. characterMakers.push(() => makeCharacter(
  21591. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21592. {
  21593. front: {
  21594. height: math.unit(6, "feet"),
  21595. weight: math.unit(150, "lb"),
  21596. name: "Front",
  21597. image: {
  21598. source: "./media/characters/terrance-keayes/front.svg",
  21599. extra: 1.005,
  21600. bottom: 151 / 1615
  21601. }
  21602. },
  21603. side: {
  21604. height: math.unit(6, "feet"),
  21605. weight: math.unit(150, "lb"),
  21606. name: "Side",
  21607. image: {
  21608. source: "./media/characters/terrance-keayes/side.svg",
  21609. extra: 1.005,
  21610. bottom: 129.4 / 1544
  21611. }
  21612. },
  21613. back: {
  21614. height: math.unit(6, "feet"),
  21615. weight: math.unit(150, "lb"),
  21616. name: "Back",
  21617. image: {
  21618. source: "./media/characters/terrance-keayes/back.svg",
  21619. extra: 1.005,
  21620. bottom: 58.4 / 1557.3
  21621. }
  21622. },
  21623. dick: {
  21624. height: math.unit(6 * 0.208, "feet"),
  21625. name: "Dick",
  21626. image: {
  21627. source: "./media/characters/terrance-keayes/dick.svg"
  21628. }
  21629. },
  21630. },
  21631. [
  21632. {
  21633. name: "Canon Height",
  21634. height: math.unit(35, "miles"),
  21635. default: true
  21636. },
  21637. ]
  21638. ))
  21639. characterMakers.push(() => makeCharacter(
  21640. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21641. {
  21642. front: {
  21643. height: math.unit(6, "feet"),
  21644. weight: math.unit(150, "lb"),
  21645. name: "Front",
  21646. image: {
  21647. source: "./media/characters/ofelia/front.svg",
  21648. extra: 546 / 541,
  21649. bottom: 39 / 583
  21650. }
  21651. },
  21652. back: {
  21653. height: math.unit(6, "feet"),
  21654. weight: math.unit(150, "lb"),
  21655. name: "Back",
  21656. image: {
  21657. source: "./media/characters/ofelia/back.svg",
  21658. extra: 564 / 559.5,
  21659. bottom: 8.69 / 573.02
  21660. }
  21661. },
  21662. maw: {
  21663. height: math.unit(1, "feet"),
  21664. name: "Maw",
  21665. image: {
  21666. source: "./media/characters/ofelia/maw.svg"
  21667. }
  21668. },
  21669. foot: {
  21670. height: math.unit(1.949, "feet"),
  21671. name: "Foot",
  21672. image: {
  21673. source: "./media/characters/ofelia/foot.svg"
  21674. }
  21675. },
  21676. },
  21677. [
  21678. {
  21679. name: "Canon Height",
  21680. height: math.unit(2000, "miles"),
  21681. default: true
  21682. },
  21683. ]
  21684. ))
  21685. characterMakers.push(() => makeCharacter(
  21686. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21687. {
  21688. front: {
  21689. height: math.unit(6, "feet"),
  21690. weight: math.unit(150, "lb"),
  21691. name: "Front",
  21692. image: {
  21693. source: "./media/characters/samuel/front.svg",
  21694. extra: 265 / 258,
  21695. bottom: 2 / 266.1566
  21696. }
  21697. },
  21698. },
  21699. [
  21700. {
  21701. name: "Macro",
  21702. height: math.unit(100, "feet"),
  21703. default: true
  21704. },
  21705. {
  21706. name: "Full Size",
  21707. height: math.unit(1000, "miles")
  21708. },
  21709. ]
  21710. ))
  21711. characterMakers.push(() => makeCharacter(
  21712. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21713. {
  21714. front: {
  21715. height: math.unit(6, "feet"),
  21716. weight: math.unit(300, "lb"),
  21717. name: "Front",
  21718. image: {
  21719. source: "./media/characters/beishir-kiel/front.svg",
  21720. extra: 569 / 547,
  21721. bottom: 41.9 / 609
  21722. }
  21723. },
  21724. maw: {
  21725. height: math.unit(6 * 0.202, "feet"),
  21726. name: "Maw",
  21727. image: {
  21728. source: "./media/characters/beishir-kiel/maw.svg"
  21729. }
  21730. },
  21731. },
  21732. [
  21733. {
  21734. name: "Macro",
  21735. height: math.unit(300, "feet"),
  21736. default: true
  21737. },
  21738. ]
  21739. ))
  21740. characterMakers.push(() => makeCharacter(
  21741. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21742. {
  21743. front: {
  21744. height: math.unit(5 + 8 / 12, "feet"),
  21745. weight: math.unit(120, "lb"),
  21746. name: "Front",
  21747. image: {
  21748. source: "./media/characters/logan-grey/front.svg",
  21749. extra: 2539 / 2393,
  21750. bottom: 97.6 / 2636.37
  21751. }
  21752. },
  21753. frontAlt: {
  21754. height: math.unit(5 + 8 / 12, "feet"),
  21755. weight: math.unit(120, "lb"),
  21756. name: "Front (Alt)",
  21757. image: {
  21758. source: "./media/characters/logan-grey/front-alt.svg",
  21759. extra: 958 / 893,
  21760. bottom: 15 / 970.768
  21761. }
  21762. },
  21763. back: {
  21764. height: math.unit(5 + 8 / 12, "feet"),
  21765. weight: math.unit(120, "lb"),
  21766. name: "Back",
  21767. image: {
  21768. source: "./media/characters/logan-grey/back.svg",
  21769. extra: 958 / 893,
  21770. bottom: 2.1881 / 970.9788
  21771. }
  21772. },
  21773. dick: {
  21774. height: math.unit(1.437, "feet"),
  21775. name: "Dick",
  21776. image: {
  21777. source: "./media/characters/logan-grey/dick.svg"
  21778. }
  21779. },
  21780. },
  21781. [
  21782. {
  21783. name: "Normal",
  21784. height: math.unit(5 + 8 / 12, "feet")
  21785. },
  21786. {
  21787. name: "The 500 Foot Femboy",
  21788. height: math.unit(500, "feet"),
  21789. default: true
  21790. },
  21791. {
  21792. name: "Megmacro",
  21793. height: math.unit(20, "miles")
  21794. },
  21795. ]
  21796. ))
  21797. characterMakers.push(() => makeCharacter(
  21798. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21799. {
  21800. front: {
  21801. height: math.unit(8 + 2 / 12, "feet"),
  21802. weight: math.unit(275, "lb"),
  21803. name: "Front",
  21804. image: {
  21805. source: "./media/characters/draganta/front.svg",
  21806. extra: 1177 / 1135,
  21807. bottom: 33.46 / 1212.1
  21808. }
  21809. },
  21810. },
  21811. [
  21812. {
  21813. name: "Normal",
  21814. height: math.unit(8 + 6 / 12, "feet"),
  21815. default: true
  21816. },
  21817. {
  21818. name: "Macro",
  21819. height: math.unit(150, "feet")
  21820. },
  21821. {
  21822. name: "Megamacro",
  21823. height: math.unit(1000, "miles")
  21824. },
  21825. ]
  21826. ))
  21827. characterMakers.push(() => makeCharacter(
  21828. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21829. {
  21830. front: {
  21831. height: math.unit(1.72, "m"),
  21832. weight: math.unit(80, "lb"),
  21833. name: "Front",
  21834. image: {
  21835. source: "./media/characters/voski/front.svg",
  21836. extra: 2076.22 / 2022.4,
  21837. bottom: 102.7 / 2177.3866
  21838. }
  21839. },
  21840. frontNsfw: {
  21841. height: math.unit(1.72, "m"),
  21842. weight: math.unit(80, "lb"),
  21843. name: "Front (NSFW)",
  21844. image: {
  21845. source: "./media/characters/voski/front-nsfw.svg",
  21846. extra: 2076.22 / 2022.4,
  21847. bottom: 102.7 / 2177.3866
  21848. }
  21849. },
  21850. back: {
  21851. height: math.unit(1.72, "m"),
  21852. weight: math.unit(80, "lb"),
  21853. name: "Back",
  21854. image: {
  21855. source: "./media/characters/voski/back.svg",
  21856. extra: 2104 / 2051,
  21857. bottom: 10.45 / 2113.63
  21858. }
  21859. },
  21860. },
  21861. [
  21862. {
  21863. name: "Normal",
  21864. height: math.unit(1.72, "m")
  21865. },
  21866. {
  21867. name: "Macro",
  21868. height: math.unit(55, "m"),
  21869. default: true
  21870. },
  21871. {
  21872. name: "Macro+",
  21873. height: math.unit(300, "m")
  21874. },
  21875. {
  21876. name: "Macro++",
  21877. height: math.unit(700, "m")
  21878. },
  21879. {
  21880. name: "Macro+++",
  21881. height: math.unit(4500, "m")
  21882. },
  21883. {
  21884. name: "Macro++++",
  21885. height: math.unit(45, "km")
  21886. },
  21887. {
  21888. name: "Macro+++++",
  21889. height: math.unit(1220, "km")
  21890. },
  21891. ]
  21892. ))
  21893. characterMakers.push(() => makeCharacter(
  21894. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21895. {
  21896. front: {
  21897. height: math.unit(2.3, "m"),
  21898. weight: math.unit(304, "kg"),
  21899. name: "Front",
  21900. image: {
  21901. source: "./media/characters/icowom-lee/front.svg",
  21902. extra: 985 / 955,
  21903. bottom: 25.4 / 1012
  21904. }
  21905. },
  21906. fronttentacles: {
  21907. height: math.unit(2.3, "m"),
  21908. weight: math.unit(304, "kg"),
  21909. name: "Front-tentacles",
  21910. image: {
  21911. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21912. extra: 985 / 955,
  21913. bottom: 25.4 / 1012
  21914. }
  21915. },
  21916. back: {
  21917. height: math.unit(2.3, "m"),
  21918. weight: math.unit(304, "kg"),
  21919. name: "Back",
  21920. image: {
  21921. source: "./media/characters/icowom-lee/back.svg",
  21922. extra: 975 / 954,
  21923. bottom: 9.5 / 985
  21924. }
  21925. },
  21926. backtentacles: {
  21927. height: math.unit(2.3, "m"),
  21928. weight: math.unit(304, "kg"),
  21929. name: "Back-tentacles",
  21930. image: {
  21931. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21932. extra: 975 / 954,
  21933. bottom: 9.5 / 985
  21934. }
  21935. },
  21936. frontDressed: {
  21937. height: math.unit(2.3, "m"),
  21938. weight: math.unit(304, "kg"),
  21939. name: "Front (Dressed)",
  21940. image: {
  21941. source: "./media/characters/icowom-lee/front-dressed.svg",
  21942. extra: 3076 / 2933,
  21943. bottom: 51.4 / 3125.1889
  21944. }
  21945. },
  21946. rump: {
  21947. height: math.unit(0.776, "meters"),
  21948. name: "Rump",
  21949. image: {
  21950. source: "./media/characters/icowom-lee/rump.svg"
  21951. }
  21952. },
  21953. genitals: {
  21954. height: math.unit(0.78, "meters"),
  21955. name: "Genitals",
  21956. image: {
  21957. source: "./media/characters/icowom-lee/genitals.svg"
  21958. }
  21959. },
  21960. },
  21961. [
  21962. {
  21963. name: "Normal",
  21964. height: math.unit(2.3, "meters"),
  21965. default: true
  21966. },
  21967. {
  21968. name: "Macro",
  21969. height: math.unit(94, "meters"),
  21970. default: true
  21971. },
  21972. ]
  21973. ))
  21974. characterMakers.push(() => makeCharacter(
  21975. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21976. {
  21977. front: {
  21978. height: math.unit(22, "meters"),
  21979. weight: math.unit(21000, "kg"),
  21980. name: "Front",
  21981. image: {
  21982. source: "./media/characters/shock-diamond/front.svg",
  21983. extra: 2204 / 2053,
  21984. bottom: 65 / 2239.47
  21985. }
  21986. },
  21987. frontNude: {
  21988. height: math.unit(22, "meters"),
  21989. weight: math.unit(21000, "kg"),
  21990. name: "Front (Nude)",
  21991. image: {
  21992. source: "./media/characters/shock-diamond/front-nude.svg",
  21993. extra: 2514 / 2285,
  21994. bottom: 13 / 2527.56
  21995. }
  21996. },
  21997. },
  21998. [
  21999. {
  22000. name: "Normal",
  22001. height: math.unit(3, "meters")
  22002. },
  22003. {
  22004. name: "Macro",
  22005. height: math.unit(22, "meters"),
  22006. default: true
  22007. },
  22008. ]
  22009. ))
  22010. characterMakers.push(() => makeCharacter(
  22011. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22012. {
  22013. front: {
  22014. height: math.unit(5 + 4 / 12, "feet"),
  22015. weight: math.unit(120, "lb"),
  22016. name: "Front",
  22017. image: {
  22018. source: "./media/characters/rory/front.svg",
  22019. extra: 589 / 556,
  22020. bottom: 45.7 / 635.76
  22021. }
  22022. },
  22023. frontNude: {
  22024. height: math.unit(5 + 4 / 12, "feet"),
  22025. weight: math.unit(120, "lb"),
  22026. name: "Front (Nude)",
  22027. image: {
  22028. source: "./media/characters/rory/front-nude.svg",
  22029. extra: 589 / 556,
  22030. bottom: 45.7 / 635.76
  22031. }
  22032. },
  22033. side: {
  22034. height: math.unit(5 + 4 / 12, "feet"),
  22035. weight: math.unit(120, "lb"),
  22036. name: "Side",
  22037. image: {
  22038. source: "./media/characters/rory/side.svg",
  22039. extra: 597 / 564,
  22040. bottom: 55 / 653
  22041. }
  22042. },
  22043. back: {
  22044. height: math.unit(5 + 4 / 12, "feet"),
  22045. weight: math.unit(120, "lb"),
  22046. name: "Back",
  22047. image: {
  22048. source: "./media/characters/rory/back.svg",
  22049. extra: 620 / 585,
  22050. bottom: 8.86 / 630.43
  22051. }
  22052. },
  22053. dick: {
  22054. height: math.unit(0.86, "feet"),
  22055. name: "Dick",
  22056. image: {
  22057. source: "./media/characters/rory/dick.svg"
  22058. }
  22059. },
  22060. },
  22061. [
  22062. {
  22063. name: "Normal",
  22064. height: math.unit(5 + 4 / 12, "feet"),
  22065. default: true
  22066. },
  22067. {
  22068. name: "Macro",
  22069. height: math.unit(100, "feet")
  22070. },
  22071. {
  22072. name: "Macro+",
  22073. height: math.unit(140, "feet")
  22074. },
  22075. {
  22076. name: "Macro++",
  22077. height: math.unit(300, "feet")
  22078. },
  22079. ]
  22080. ))
  22081. characterMakers.push(() => makeCharacter(
  22082. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22083. {
  22084. front: {
  22085. height: math.unit(5 + 9 / 12, "feet"),
  22086. weight: math.unit(190, "lb"),
  22087. name: "Front",
  22088. image: {
  22089. source: "./media/characters/sprisk/front.svg",
  22090. extra: 1225 / 1180,
  22091. bottom: 42.7 / 1266.4
  22092. }
  22093. },
  22094. frontNsfw: {
  22095. height: math.unit(5 + 9 / 12, "feet"),
  22096. weight: math.unit(190, "lb"),
  22097. name: "Front (NSFW)",
  22098. image: {
  22099. source: "./media/characters/sprisk/front-nsfw.svg",
  22100. extra: 1225 / 1180,
  22101. bottom: 42.7 / 1266.4
  22102. }
  22103. },
  22104. back: {
  22105. height: math.unit(5 + 9 / 12, "feet"),
  22106. weight: math.unit(190, "lb"),
  22107. name: "Back",
  22108. image: {
  22109. source: "./media/characters/sprisk/back.svg",
  22110. extra: 1247 / 1200,
  22111. bottom: 5.6 / 1253.04
  22112. }
  22113. },
  22114. },
  22115. [
  22116. {
  22117. name: "Tiny",
  22118. height: math.unit(2, "inches")
  22119. },
  22120. {
  22121. name: "Normal",
  22122. height: math.unit(5 + 9 / 12, "feet"),
  22123. default: true
  22124. },
  22125. {
  22126. name: "Mini Macro",
  22127. height: math.unit(18, "feet")
  22128. },
  22129. {
  22130. name: "Macro",
  22131. height: math.unit(100, "feet")
  22132. },
  22133. {
  22134. name: "MACRO",
  22135. height: math.unit(50, "miles")
  22136. },
  22137. {
  22138. name: "M A C R O",
  22139. height: math.unit(300, "miles")
  22140. },
  22141. ]
  22142. ))
  22143. characterMakers.push(() => makeCharacter(
  22144. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22145. {
  22146. side: {
  22147. height: math.unit(15.6, "meters"),
  22148. weight: math.unit(700000, "kg"),
  22149. name: "Side",
  22150. image: {
  22151. source: "./media/characters/bunsen/side.svg",
  22152. extra: 1644 / 358
  22153. }
  22154. },
  22155. foot: {
  22156. height: math.unit(1.611 * 1644 / 358, "meter"),
  22157. name: "Foot",
  22158. image: {
  22159. source: "./media/characters/bunsen/foot.svg"
  22160. }
  22161. },
  22162. },
  22163. [
  22164. {
  22165. name: "Small",
  22166. height: math.unit(10, "feet")
  22167. },
  22168. {
  22169. name: "Normal",
  22170. height: math.unit(15.6, "meters"),
  22171. default: true
  22172. },
  22173. ]
  22174. ))
  22175. characterMakers.push(() => makeCharacter(
  22176. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22177. {
  22178. front: {
  22179. height: math.unit(4 + 11 / 12, "feet"),
  22180. weight: math.unit(140, "lb"),
  22181. name: "Front",
  22182. image: {
  22183. source: "./media/characters/sesh/front.svg",
  22184. extra: 3420 / 3231,
  22185. bottom: 72 / 3949.5
  22186. }
  22187. },
  22188. },
  22189. [
  22190. {
  22191. name: "Normal",
  22192. height: math.unit(4 + 11 / 12, "feet")
  22193. },
  22194. {
  22195. name: "Grown",
  22196. height: math.unit(15, "feet"),
  22197. default: true
  22198. },
  22199. {
  22200. name: "Macro",
  22201. height: math.unit(1500, "feet")
  22202. },
  22203. {
  22204. name: "Megamacro",
  22205. height: math.unit(30, "miles")
  22206. },
  22207. {
  22208. name: "Continental",
  22209. height: math.unit(3000, "miles")
  22210. },
  22211. {
  22212. name: "Gravity Mass",
  22213. height: math.unit(300000, "miles")
  22214. },
  22215. {
  22216. name: "Planet Buster",
  22217. height: math.unit(30000000, "miles")
  22218. },
  22219. {
  22220. name: "Big",
  22221. height: math.unit(3000000000, "miles")
  22222. },
  22223. ]
  22224. ))
  22225. characterMakers.push(() => makeCharacter(
  22226. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22227. {
  22228. front: {
  22229. height: math.unit(9, "feet"),
  22230. weight: math.unit(350, "lb"),
  22231. name: "Front",
  22232. image: {
  22233. source: "./media/characters/pepper/front.svg",
  22234. extra: 1448 / 1312,
  22235. bottom: 9.4 / 1457.88
  22236. }
  22237. },
  22238. back: {
  22239. height: math.unit(9, "feet"),
  22240. weight: math.unit(350, "lb"),
  22241. name: "Back",
  22242. image: {
  22243. source: "./media/characters/pepper/back.svg",
  22244. extra: 1423 / 1300,
  22245. bottom: 4.6 / 1429
  22246. }
  22247. },
  22248. maw: {
  22249. height: math.unit(0.932, "feet"),
  22250. name: "Maw",
  22251. image: {
  22252. source: "./media/characters/pepper/maw.svg"
  22253. }
  22254. },
  22255. },
  22256. [
  22257. {
  22258. name: "Normal",
  22259. height: math.unit(9, "feet"),
  22260. default: true
  22261. },
  22262. ]
  22263. ))
  22264. characterMakers.push(() => makeCharacter(
  22265. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22266. {
  22267. front: {
  22268. height: math.unit(6, "feet"),
  22269. weight: math.unit(150, "lb"),
  22270. name: "Front",
  22271. image: {
  22272. source: "./media/characters/maelstrom/front.svg",
  22273. extra: 2100 / 1883,
  22274. bottom: 94 / 2196.7
  22275. }
  22276. },
  22277. },
  22278. [
  22279. {
  22280. name: "Less Kaiju",
  22281. height: math.unit(200, "feet")
  22282. },
  22283. {
  22284. name: "Kaiju",
  22285. height: math.unit(400, "feet"),
  22286. default: true
  22287. },
  22288. {
  22289. name: "Kaiju-er",
  22290. height: math.unit(600, "feet")
  22291. },
  22292. ]
  22293. ))
  22294. characterMakers.push(() => makeCharacter(
  22295. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22296. {
  22297. front: {
  22298. height: math.unit(6 + 5 / 12, "feet"),
  22299. weight: math.unit(180, "lb"),
  22300. name: "Front",
  22301. image: {
  22302. source: "./media/characters/lexir/front.svg",
  22303. extra: 180 / 172,
  22304. bottom: 12 / 192
  22305. }
  22306. },
  22307. back: {
  22308. height: math.unit(6 + 5 / 12, "feet"),
  22309. weight: math.unit(180, "lb"),
  22310. name: "Back",
  22311. image: {
  22312. source: "./media/characters/lexir/back.svg",
  22313. extra: 183.84 / 175.5,
  22314. bottom: 3.1 / 187
  22315. }
  22316. },
  22317. },
  22318. [
  22319. {
  22320. name: "Very Smal",
  22321. height: math.unit(1, "nm")
  22322. },
  22323. {
  22324. name: "Normal",
  22325. height: math.unit(6 + 5 / 12, "feet"),
  22326. default: true
  22327. },
  22328. {
  22329. name: "Macro",
  22330. height: math.unit(1, "mile")
  22331. },
  22332. {
  22333. name: "Megamacro",
  22334. height: math.unit(50, "miles")
  22335. },
  22336. ]
  22337. ))
  22338. characterMakers.push(() => makeCharacter(
  22339. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22340. {
  22341. front: {
  22342. height: math.unit(1.5, "meters"),
  22343. weight: math.unit(100, "lb"),
  22344. name: "Front",
  22345. image: {
  22346. source: "./media/characters/maksio/front.svg",
  22347. extra: 1549 / 1531,
  22348. bottom: 123.7 / 1674.5429
  22349. }
  22350. },
  22351. back: {
  22352. height: math.unit(1.5, "meters"),
  22353. weight: math.unit(100, "lb"),
  22354. name: "Back",
  22355. image: {
  22356. source: "./media/characters/maksio/back.svg",
  22357. extra: 1541 / 1509,
  22358. bottom: 97 / 1639
  22359. }
  22360. },
  22361. hand: {
  22362. height: math.unit(0.621, "feet"),
  22363. name: "Hand",
  22364. image: {
  22365. source: "./media/characters/maksio/hand.svg"
  22366. }
  22367. },
  22368. foot: {
  22369. height: math.unit(1.611, "feet"),
  22370. name: "Foot",
  22371. image: {
  22372. source: "./media/characters/maksio/foot.svg"
  22373. }
  22374. },
  22375. },
  22376. [
  22377. {
  22378. name: "Shrunken",
  22379. height: math.unit(10, "cm")
  22380. },
  22381. {
  22382. name: "Normal",
  22383. height: math.unit(150, "cm"),
  22384. default: true
  22385. },
  22386. ]
  22387. ))
  22388. characterMakers.push(() => makeCharacter(
  22389. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22390. {
  22391. front: {
  22392. height: math.unit(100, "feet"),
  22393. name: "Front",
  22394. image: {
  22395. source: "./media/characters/erza-bear/front.svg",
  22396. extra: 2449 / 2390,
  22397. bottom: 46 / 2494
  22398. }
  22399. },
  22400. back: {
  22401. height: math.unit(100, "feet"),
  22402. name: "Back",
  22403. image: {
  22404. source: "./media/characters/erza-bear/back.svg",
  22405. extra: 2489 / 2430,
  22406. bottom: 85.4 / 2480
  22407. }
  22408. },
  22409. tail: {
  22410. height: math.unit(42, "feet"),
  22411. name: "Tail",
  22412. image: {
  22413. source: "./media/characters/erza-bear/tail.svg"
  22414. }
  22415. },
  22416. tongue: {
  22417. height: math.unit(8, "feet"),
  22418. name: "Tongue",
  22419. image: {
  22420. source: "./media/characters/erza-bear/tongue.svg"
  22421. }
  22422. },
  22423. dick: {
  22424. height: math.unit(10.5, "feet"),
  22425. name: "Dick",
  22426. image: {
  22427. source: "./media/characters/erza-bear/dick.svg"
  22428. }
  22429. },
  22430. dickVertical: {
  22431. height: math.unit(16.9, "feet"),
  22432. name: "Dick (Vertical)",
  22433. image: {
  22434. source: "./media/characters/erza-bear/dick-vertical.svg"
  22435. }
  22436. },
  22437. },
  22438. [
  22439. {
  22440. name: "Macro",
  22441. height: math.unit(100, "feet"),
  22442. default: true
  22443. },
  22444. ]
  22445. ))
  22446. characterMakers.push(() => makeCharacter(
  22447. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22448. {
  22449. front: {
  22450. height: math.unit(172, "cm"),
  22451. weight: math.unit(73, "kg"),
  22452. name: "Front",
  22453. image: {
  22454. source: "./media/characters/violet-flor/front.svg",
  22455. extra: 1530 / 1442,
  22456. bottom: 61.9 / 1588.8
  22457. }
  22458. },
  22459. back: {
  22460. height: math.unit(180, "cm"),
  22461. weight: math.unit(73, "kg"),
  22462. name: "Back",
  22463. image: {
  22464. source: "./media/characters/violet-flor/back.svg",
  22465. extra: 1692 / 1630,
  22466. bottom: 20 / 1712
  22467. }
  22468. },
  22469. },
  22470. [
  22471. {
  22472. name: "Normal",
  22473. height: math.unit(172, "cm"),
  22474. default: true
  22475. },
  22476. ]
  22477. ))
  22478. characterMakers.push(() => makeCharacter(
  22479. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22480. {
  22481. front: {
  22482. height: math.unit(6, "feet"),
  22483. weight: math.unit(220, "lb"),
  22484. name: "Front",
  22485. image: {
  22486. source: "./media/characters/lynn-rhea/front.svg",
  22487. extra: 310 / 273
  22488. }
  22489. },
  22490. back: {
  22491. height: math.unit(6, "feet"),
  22492. weight: math.unit(220, "lb"),
  22493. name: "Back",
  22494. image: {
  22495. source: "./media/characters/lynn-rhea/back.svg",
  22496. extra: 310 / 273
  22497. }
  22498. },
  22499. dicks: {
  22500. height: math.unit(0.9, "feet"),
  22501. name: "Dicks",
  22502. image: {
  22503. source: "./media/characters/lynn-rhea/dicks.svg"
  22504. }
  22505. },
  22506. slit: {
  22507. height: math.unit(0.4, "feet"),
  22508. name: "Slit",
  22509. image: {
  22510. source: "./media/characters/lynn-rhea/slit.svg"
  22511. }
  22512. },
  22513. },
  22514. [
  22515. {
  22516. name: "Micro",
  22517. height: math.unit(1, "inch")
  22518. },
  22519. {
  22520. name: "Macro",
  22521. height: math.unit(60, "feet"),
  22522. default: true
  22523. },
  22524. {
  22525. name: "Megamacro",
  22526. height: math.unit(2, "miles")
  22527. },
  22528. {
  22529. name: "Gigamacro",
  22530. height: math.unit(3, "earths")
  22531. },
  22532. {
  22533. name: "Galactic",
  22534. height: math.unit(0.8, "galaxies")
  22535. },
  22536. ]
  22537. ))
  22538. characterMakers.push(() => makeCharacter(
  22539. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22540. {
  22541. front: {
  22542. height: math.unit(1600, "feet"),
  22543. weight: math.unit(85758785169, "kg"),
  22544. name: "Front",
  22545. image: {
  22546. source: "./media/characters/valathos/front.svg",
  22547. extra: 1451 / 1339
  22548. }
  22549. },
  22550. },
  22551. [
  22552. {
  22553. name: "Macro",
  22554. height: math.unit(1600, "feet"),
  22555. default: true
  22556. },
  22557. ]
  22558. ))
  22559. characterMakers.push(() => makeCharacter(
  22560. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22561. {
  22562. front: {
  22563. height: math.unit(7 + 5 / 12, "feet"),
  22564. weight: math.unit(300, "lb"),
  22565. name: "Front",
  22566. image: {
  22567. source: "./media/characters/azula/front.svg",
  22568. extra: 3208 / 2880,
  22569. bottom: 80.2 / 3277
  22570. }
  22571. },
  22572. back: {
  22573. height: math.unit(7 + 5 / 12, "feet"),
  22574. weight: math.unit(300, "lb"),
  22575. name: "Back",
  22576. image: {
  22577. source: "./media/characters/azula/back.svg",
  22578. extra: 3169 / 2822,
  22579. bottom: 150.6 / 3321
  22580. }
  22581. },
  22582. },
  22583. [
  22584. {
  22585. name: "Normal",
  22586. height: math.unit(7 + 5 / 12, "feet"),
  22587. default: true
  22588. },
  22589. {
  22590. name: "Big",
  22591. height: math.unit(20, "feet")
  22592. },
  22593. ]
  22594. ))
  22595. characterMakers.push(() => makeCharacter(
  22596. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22597. {
  22598. front: {
  22599. height: math.unit(5 + 1 / 12, "feet"),
  22600. weight: math.unit(110, "lb"),
  22601. name: "Front",
  22602. image: {
  22603. source: "./media/characters/rupert/front.svg",
  22604. extra: 1549 / 1495,
  22605. bottom: 54.2 / 1604.4
  22606. }
  22607. },
  22608. },
  22609. [
  22610. {
  22611. name: "Normal",
  22612. height: math.unit(5 + 1 / 12, "feet"),
  22613. default: true
  22614. },
  22615. ]
  22616. ))
  22617. characterMakers.push(() => makeCharacter(
  22618. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22619. {
  22620. front: {
  22621. height: math.unit(8 + 4 / 12, "feet"),
  22622. weight: math.unit(350, "lb"),
  22623. name: "Front",
  22624. image: {
  22625. source: "./media/characters/sheera-castellar/front.svg",
  22626. extra: 1957 / 1894,
  22627. bottom: 26.97 / 1975.017
  22628. }
  22629. },
  22630. side: {
  22631. height: math.unit(8 + 4 / 12, "feet"),
  22632. weight: math.unit(350, "lb"),
  22633. name: "Side",
  22634. image: {
  22635. source: "./media/characters/sheera-castellar/side.svg",
  22636. extra: 1957 / 1894
  22637. }
  22638. },
  22639. back: {
  22640. height: math.unit(8 + 4 / 12, "feet"),
  22641. weight: math.unit(350, "lb"),
  22642. name: "Back",
  22643. image: {
  22644. source: "./media/characters/sheera-castellar/back.svg",
  22645. extra: 1957 / 1894
  22646. }
  22647. },
  22648. angled: {
  22649. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22650. weight: math.unit(350, "lb"),
  22651. name: "Angled",
  22652. image: {
  22653. source: "./media/characters/sheera-castellar/angled.svg",
  22654. extra: 1807 / 1707,
  22655. bottom: 68 / 1875
  22656. }
  22657. },
  22658. genitals: {
  22659. height: math.unit(2.2, "feet"),
  22660. name: "Genitals",
  22661. image: {
  22662. source: "./media/characters/sheera-castellar/genitals.svg"
  22663. }
  22664. },
  22665. taur: {
  22666. height: math.unit(10 + 6/12, "feet"),
  22667. name: "Taur",
  22668. image: {
  22669. source: "./media/characters/sheera-castellar/taur.svg",
  22670. extra: 2017/1909,
  22671. bottom: 185/2202
  22672. }
  22673. },
  22674. },
  22675. [
  22676. {
  22677. name: "Normal",
  22678. height: math.unit(8 + 4 / 12, "feet")
  22679. },
  22680. {
  22681. name: "Macro",
  22682. height: math.unit(150, "feet"),
  22683. default: true
  22684. },
  22685. {
  22686. name: "Macro+",
  22687. height: math.unit(800, "feet")
  22688. },
  22689. ]
  22690. ))
  22691. characterMakers.push(() => makeCharacter(
  22692. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22693. {
  22694. front: {
  22695. height: math.unit(6, "feet"),
  22696. weight: math.unit(150, "lb"),
  22697. name: "Front",
  22698. image: {
  22699. source: "./media/characters/jaipur/front.svg",
  22700. extra: 3860 / 3731,
  22701. bottom: 287 / 4140
  22702. }
  22703. },
  22704. back: {
  22705. height: math.unit(6, "feet"),
  22706. weight: math.unit(150, "lb"),
  22707. name: "Back",
  22708. image: {
  22709. source: "./media/characters/jaipur/back.svg",
  22710. extra: 4060 / 3930,
  22711. bottom: 151 / 4200
  22712. }
  22713. },
  22714. },
  22715. [
  22716. {
  22717. name: "Normal",
  22718. height: math.unit(1.85, "meters"),
  22719. default: true
  22720. },
  22721. {
  22722. name: "Macro",
  22723. height: math.unit(150, "meters")
  22724. },
  22725. {
  22726. name: "Macro+",
  22727. height: math.unit(0.5, "miles")
  22728. },
  22729. {
  22730. name: "Macro++",
  22731. height: math.unit(2.5, "miles")
  22732. },
  22733. {
  22734. name: "Macro+++",
  22735. height: math.unit(12, "miles")
  22736. },
  22737. {
  22738. name: "Macro++++",
  22739. height: math.unit(120, "miles")
  22740. },
  22741. {
  22742. name: "Macro+++++",
  22743. height: math.unit(1200, "miles")
  22744. },
  22745. ]
  22746. ))
  22747. characterMakers.push(() => makeCharacter(
  22748. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22749. {
  22750. front: {
  22751. height: math.unit(6, "feet"),
  22752. weight: math.unit(150, "lb"),
  22753. name: "Front",
  22754. image: {
  22755. source: "./media/characters/sheila-wolf/front.svg",
  22756. extra: 1931 / 1808,
  22757. bottom: 29.5 / 1960
  22758. }
  22759. },
  22760. dick: {
  22761. height: math.unit(1.464, "feet"),
  22762. name: "Dick",
  22763. image: {
  22764. source: "./media/characters/sheila-wolf/dick.svg"
  22765. }
  22766. },
  22767. muzzle: {
  22768. height: math.unit(0.513, "feet"),
  22769. name: "Muzzle",
  22770. image: {
  22771. source: "./media/characters/sheila-wolf/muzzle.svg"
  22772. }
  22773. },
  22774. },
  22775. [
  22776. {
  22777. name: "Macro",
  22778. height: math.unit(70, "feet"),
  22779. default: true
  22780. },
  22781. ]
  22782. ))
  22783. characterMakers.push(() => makeCharacter(
  22784. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22785. {
  22786. front: {
  22787. height: math.unit(32, "meters"),
  22788. weight: math.unit(300000, "kg"),
  22789. name: "Front",
  22790. image: {
  22791. source: "./media/characters/almor/front.svg",
  22792. extra: 1408 / 1322,
  22793. bottom: 94.6 / 1506.5
  22794. }
  22795. },
  22796. },
  22797. [
  22798. {
  22799. name: "Macro",
  22800. height: math.unit(32, "meters"),
  22801. default: true
  22802. },
  22803. ]
  22804. ))
  22805. characterMakers.push(() => makeCharacter(
  22806. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22807. {
  22808. front: {
  22809. height: math.unit(7, "feet"),
  22810. weight: math.unit(200, "lb"),
  22811. name: "Front",
  22812. image: {
  22813. source: "./media/characters/silver/front.svg",
  22814. extra: 472.1 / 450.5,
  22815. bottom: 26.5 / 499.424
  22816. }
  22817. },
  22818. },
  22819. [
  22820. {
  22821. name: "Normal",
  22822. height: math.unit(7, "feet"),
  22823. default: true
  22824. },
  22825. {
  22826. name: "Macro",
  22827. height: math.unit(800, "feet")
  22828. },
  22829. {
  22830. name: "Megamacro",
  22831. height: math.unit(250, "miles")
  22832. },
  22833. ]
  22834. ))
  22835. characterMakers.push(() => makeCharacter(
  22836. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22837. {
  22838. front: {
  22839. height: math.unit(6, "feet"),
  22840. weight: math.unit(150, "lb"),
  22841. name: "Front",
  22842. image: {
  22843. source: "./media/characters/pliskin/front.svg",
  22844. extra: 1469 / 1359,
  22845. bottom: 70 / 1540
  22846. }
  22847. },
  22848. },
  22849. [
  22850. {
  22851. name: "Micro",
  22852. height: math.unit(3, "inches")
  22853. },
  22854. {
  22855. name: "Normal",
  22856. height: math.unit(5 + 11 / 12, "feet"),
  22857. default: true
  22858. },
  22859. {
  22860. name: "Macro",
  22861. height: math.unit(120, "feet")
  22862. },
  22863. ]
  22864. ))
  22865. characterMakers.push(() => makeCharacter(
  22866. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22867. {
  22868. front: {
  22869. height: math.unit(6, "feet"),
  22870. weight: math.unit(150, "lb"),
  22871. name: "Front",
  22872. image: {
  22873. source: "./media/characters/sammy/front.svg",
  22874. extra: 1193 / 1089,
  22875. bottom: 30.5 / 1226
  22876. }
  22877. },
  22878. },
  22879. [
  22880. {
  22881. name: "Macro",
  22882. height: math.unit(1700, "feet"),
  22883. default: true
  22884. },
  22885. {
  22886. name: "Examacro",
  22887. height: math.unit(2.5e9, "lightyears")
  22888. },
  22889. ]
  22890. ))
  22891. characterMakers.push(() => makeCharacter(
  22892. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22893. {
  22894. front: {
  22895. height: math.unit(21, "meters"),
  22896. weight: math.unit(12, "tonnes"),
  22897. name: "Front",
  22898. image: {
  22899. source: "./media/characters/kuru/front.svg",
  22900. extra: 4301 / 3785,
  22901. bottom: 371.3 / 4691
  22902. }
  22903. },
  22904. },
  22905. [
  22906. {
  22907. name: "Macro",
  22908. height: math.unit(21, "meters"),
  22909. default: true
  22910. },
  22911. ]
  22912. ))
  22913. characterMakers.push(() => makeCharacter(
  22914. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22915. {
  22916. front: {
  22917. height: math.unit(23, "meters"),
  22918. weight: math.unit(12.2, "tonnes"),
  22919. name: "Front",
  22920. image: {
  22921. source: "./media/characters/rakka/front.svg",
  22922. extra: 4670 / 4169,
  22923. bottom: 301 / 4968.7
  22924. }
  22925. },
  22926. },
  22927. [
  22928. {
  22929. name: "Macro",
  22930. height: math.unit(23, "meters"),
  22931. default: true
  22932. },
  22933. ]
  22934. ))
  22935. characterMakers.push(() => makeCharacter(
  22936. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22937. {
  22938. front: {
  22939. height: math.unit(6, "feet"),
  22940. weight: math.unit(150, "lb"),
  22941. name: "Front",
  22942. image: {
  22943. source: "./media/characters/rhys-feline/front.svg",
  22944. extra: 2488 / 2308,
  22945. bottom: 35.67 / 2519.19
  22946. }
  22947. },
  22948. },
  22949. [
  22950. {
  22951. name: "Really Small",
  22952. height: math.unit(1, "nm")
  22953. },
  22954. {
  22955. name: "Micro",
  22956. height: math.unit(4, "inches")
  22957. },
  22958. {
  22959. name: "Normal",
  22960. height: math.unit(4 + 10 / 12, "feet"),
  22961. default: true
  22962. },
  22963. {
  22964. name: "Macro",
  22965. height: math.unit(100, "feet")
  22966. },
  22967. {
  22968. name: "Megamacto",
  22969. height: math.unit(50, "miles")
  22970. },
  22971. ]
  22972. ))
  22973. characterMakers.push(() => makeCharacter(
  22974. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22975. {
  22976. side: {
  22977. height: math.unit(30, "feet"),
  22978. weight: math.unit(35000, "kg"),
  22979. name: "Side",
  22980. image: {
  22981. source: "./media/characters/alydar/side.svg",
  22982. extra: 234 / 222,
  22983. bottom: 6.5 / 241
  22984. }
  22985. },
  22986. front: {
  22987. height: math.unit(30, "feet"),
  22988. weight: math.unit(35000, "kg"),
  22989. name: "Front",
  22990. image: {
  22991. source: "./media/characters/alydar/front.svg",
  22992. extra: 223.37 / 210.2,
  22993. bottom: 22.3 / 246.76
  22994. }
  22995. },
  22996. top: {
  22997. height: math.unit(64.54, "feet"),
  22998. weight: math.unit(35000, "kg"),
  22999. name: "Top",
  23000. image: {
  23001. source: "./media/characters/alydar/top.svg"
  23002. }
  23003. },
  23004. anthro: {
  23005. height: math.unit(30, "feet"),
  23006. weight: math.unit(9000, "kg"),
  23007. name: "Anthro",
  23008. image: {
  23009. source: "./media/characters/alydar/anthro.svg",
  23010. extra: 432 / 421,
  23011. bottom: 7.18 / 440
  23012. }
  23013. },
  23014. maw: {
  23015. height: math.unit(11.693, "feet"),
  23016. name: "Maw",
  23017. image: {
  23018. source: "./media/characters/alydar/maw.svg"
  23019. }
  23020. },
  23021. head: {
  23022. height: math.unit(11.693, "feet"),
  23023. name: "Head",
  23024. image: {
  23025. source: "./media/characters/alydar/head.svg"
  23026. }
  23027. },
  23028. headAlt: {
  23029. height: math.unit(12.861, "feet"),
  23030. name: "Head (Alt)",
  23031. image: {
  23032. source: "./media/characters/alydar/head-alt.svg"
  23033. }
  23034. },
  23035. wing: {
  23036. height: math.unit(20.712, "feet"),
  23037. name: "Wing",
  23038. image: {
  23039. source: "./media/characters/alydar/wing.svg"
  23040. }
  23041. },
  23042. wingFeather: {
  23043. height: math.unit(9.662, "feet"),
  23044. name: "Wing Feather",
  23045. image: {
  23046. source: "./media/characters/alydar/wing-feather.svg"
  23047. }
  23048. },
  23049. countourFeather: {
  23050. height: math.unit(4.154, "feet"),
  23051. name: "Contour Feather",
  23052. image: {
  23053. source: "./media/characters/alydar/contour-feather.svg"
  23054. }
  23055. },
  23056. },
  23057. [
  23058. {
  23059. name: "Diplomatic",
  23060. height: math.unit(13, "feet"),
  23061. default: true
  23062. },
  23063. {
  23064. name: "Small",
  23065. height: math.unit(30, "feet")
  23066. },
  23067. {
  23068. name: "Normal",
  23069. height: math.unit(95, "feet"),
  23070. default: true
  23071. },
  23072. {
  23073. name: "Large",
  23074. height: math.unit(285, "feet")
  23075. },
  23076. {
  23077. name: "Incomprehensible",
  23078. height: math.unit(450, "megameters")
  23079. },
  23080. ]
  23081. ))
  23082. characterMakers.push(() => makeCharacter(
  23083. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23084. {
  23085. side: {
  23086. height: math.unit(11, "feet"),
  23087. weight: math.unit(1750, "kg"),
  23088. name: "Side",
  23089. image: {
  23090. source: "./media/characters/selicia/side.svg",
  23091. extra: 440 / 396,
  23092. bottom: 24.8 / 465.979
  23093. }
  23094. },
  23095. maw: {
  23096. height: math.unit(4.665, "feet"),
  23097. name: "Maw",
  23098. image: {
  23099. source: "./media/characters/selicia/maw.svg"
  23100. }
  23101. },
  23102. },
  23103. [
  23104. {
  23105. name: "Normal",
  23106. height: math.unit(11, "feet"),
  23107. default: true
  23108. },
  23109. ]
  23110. ))
  23111. characterMakers.push(() => makeCharacter(
  23112. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23113. {
  23114. side: {
  23115. height: math.unit(2 + 6 / 12, "feet"),
  23116. weight: math.unit(30, "lb"),
  23117. name: "Side",
  23118. image: {
  23119. source: "./media/characters/layla/side.svg",
  23120. extra: 244 / 188,
  23121. bottom: 18.2 / 262.1
  23122. }
  23123. },
  23124. back: {
  23125. height: math.unit(2 + 6 / 12, "feet"),
  23126. weight: math.unit(30, "lb"),
  23127. name: "Back",
  23128. image: {
  23129. source: "./media/characters/layla/back.svg",
  23130. extra: 308 / 241.5,
  23131. bottom: 8.9 / 316.8
  23132. }
  23133. },
  23134. cumming: {
  23135. height: math.unit(2 + 6 / 12, "feet"),
  23136. weight: math.unit(30, "lb"),
  23137. name: "Cumming",
  23138. image: {
  23139. source: "./media/characters/layla/cumming.svg",
  23140. extra: 342 / 279,
  23141. bottom: 595 / 938
  23142. }
  23143. },
  23144. dickFlaccid: {
  23145. height: math.unit(2.595, "feet"),
  23146. name: "Flaccid Genitals",
  23147. image: {
  23148. source: "./media/characters/layla/dick-flaccid.svg"
  23149. }
  23150. },
  23151. dickErect: {
  23152. height: math.unit(2.359, "feet"),
  23153. name: "Erect Genitals",
  23154. image: {
  23155. source: "./media/characters/layla/dick-erect.svg"
  23156. }
  23157. },
  23158. },
  23159. [
  23160. {
  23161. name: "Micro",
  23162. height: math.unit(1, "inch")
  23163. },
  23164. {
  23165. name: "Small",
  23166. height: math.unit(1, "foot")
  23167. },
  23168. {
  23169. name: "Normal",
  23170. height: math.unit(2 + 6 / 12, "feet"),
  23171. default: true
  23172. },
  23173. {
  23174. name: "Macro",
  23175. height: math.unit(200, "feet")
  23176. },
  23177. {
  23178. name: "Megamacro",
  23179. height: math.unit(1000, "miles")
  23180. },
  23181. {
  23182. name: "Planetary",
  23183. height: math.unit(8000, "miles")
  23184. },
  23185. {
  23186. name: "True Layla",
  23187. height: math.unit(200000 * 7, "multiverses")
  23188. },
  23189. ]
  23190. ))
  23191. characterMakers.push(() => makeCharacter(
  23192. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23193. {
  23194. back: {
  23195. height: math.unit(10.5, "feet"),
  23196. weight: math.unit(800, "lb"),
  23197. name: "Back",
  23198. image: {
  23199. source: "./media/characters/knox/back.svg",
  23200. extra: 1486 / 1089,
  23201. bottom: 107 / 1601.4
  23202. }
  23203. },
  23204. side: {
  23205. height: math.unit(10.5, "feet"),
  23206. weight: math.unit(800, "lb"),
  23207. name: "Side",
  23208. image: {
  23209. source: "./media/characters/knox/side.svg",
  23210. extra: 244 / 218,
  23211. bottom: 14 / 260
  23212. }
  23213. },
  23214. },
  23215. [
  23216. {
  23217. name: "Compact",
  23218. height: math.unit(10.5, "feet"),
  23219. default: true
  23220. },
  23221. {
  23222. name: "Dynamax",
  23223. height: math.unit(210, "feet")
  23224. },
  23225. {
  23226. name: "Full Macro",
  23227. height: math.unit(850, "feet")
  23228. },
  23229. ]
  23230. ))
  23231. characterMakers.push(() => makeCharacter(
  23232. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23233. {
  23234. front: {
  23235. height: math.unit(6, "feet"),
  23236. weight: math.unit(152, "lb"),
  23237. name: "Front",
  23238. image: {
  23239. source: "./media/characters/shin-pikachu/front.svg",
  23240. extra: 1574 / 1480,
  23241. bottom: 53.3 / 1626
  23242. }
  23243. },
  23244. hand: {
  23245. height: math.unit(1.055, "feet"),
  23246. name: "Hand",
  23247. image: {
  23248. source: "./media/characters/shin-pikachu/hand.svg"
  23249. }
  23250. },
  23251. foot: {
  23252. height: math.unit(1.1, "feet"),
  23253. name: "Foot",
  23254. image: {
  23255. source: "./media/characters/shin-pikachu/foot.svg"
  23256. }
  23257. },
  23258. collar: {
  23259. height: math.unit(0.386, "feet"),
  23260. name: "Collar",
  23261. image: {
  23262. source: "./media/characters/shin-pikachu/collar.svg"
  23263. }
  23264. },
  23265. },
  23266. [
  23267. {
  23268. name: "Smallest",
  23269. height: math.unit(0.5, "inches")
  23270. },
  23271. {
  23272. name: "Micro",
  23273. height: math.unit(6, "inches")
  23274. },
  23275. {
  23276. name: "Normal",
  23277. height: math.unit(6, "feet"),
  23278. default: true
  23279. },
  23280. {
  23281. name: "Macro",
  23282. height: math.unit(150, "feet")
  23283. },
  23284. ]
  23285. ))
  23286. characterMakers.push(() => makeCharacter(
  23287. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23288. {
  23289. front: {
  23290. height: math.unit(28, "feet"),
  23291. weight: math.unit(10500, "lb"),
  23292. name: "Front",
  23293. image: {
  23294. source: "./media/characters/kayda/front.svg",
  23295. extra: 1536 / 1428,
  23296. bottom: 68.7 / 1603
  23297. }
  23298. },
  23299. back: {
  23300. height: math.unit(28, "feet"),
  23301. weight: math.unit(10500, "lb"),
  23302. name: "Back",
  23303. image: {
  23304. source: "./media/characters/kayda/back.svg",
  23305. extra: 1557 / 1464,
  23306. bottom: 39.5 / 1597.49
  23307. }
  23308. },
  23309. dick: {
  23310. height: math.unit(3.858, "feet"),
  23311. name: "Dick",
  23312. image: {
  23313. source: "./media/characters/kayda/dick.svg"
  23314. }
  23315. },
  23316. },
  23317. [
  23318. {
  23319. name: "Macro",
  23320. height: math.unit(28, "feet"),
  23321. default: true
  23322. },
  23323. ]
  23324. ))
  23325. characterMakers.push(() => makeCharacter(
  23326. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23327. {
  23328. front: {
  23329. height: math.unit(10 + 11 / 12, "feet"),
  23330. weight: math.unit(1400, "lb"),
  23331. name: "Front",
  23332. image: {
  23333. source: "./media/characters/brian/front.svg",
  23334. extra: 737 / 692,
  23335. bottom: 55.4 / 785
  23336. }
  23337. },
  23338. },
  23339. [
  23340. {
  23341. name: "Normal",
  23342. height: math.unit(10 + 11 / 12, "feet"),
  23343. default: true
  23344. },
  23345. ]
  23346. ))
  23347. characterMakers.push(() => makeCharacter(
  23348. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23349. {
  23350. front: {
  23351. height: math.unit(5 + 8 / 12, "feet"),
  23352. weight: math.unit(140, "lb"),
  23353. name: "Front",
  23354. image: {
  23355. source: "./media/characters/khemri/front.svg",
  23356. extra: 4780 / 4059,
  23357. bottom: 80.1 / 4859.25
  23358. }
  23359. },
  23360. },
  23361. [
  23362. {
  23363. name: "Micro",
  23364. height: math.unit(6, "inches")
  23365. },
  23366. {
  23367. name: "Normal",
  23368. height: math.unit(5 + 8 / 12, "feet"),
  23369. default: true
  23370. },
  23371. ]
  23372. ))
  23373. characterMakers.push(() => makeCharacter(
  23374. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23375. {
  23376. front: {
  23377. height: math.unit(13, "feet"),
  23378. weight: math.unit(1700, "lb"),
  23379. name: "Front",
  23380. image: {
  23381. source: "./media/characters/felix-braveheart/front.svg",
  23382. extra: 1222 / 1157,
  23383. bottom: 53.2 / 1280
  23384. }
  23385. },
  23386. back: {
  23387. height: math.unit(13, "feet"),
  23388. weight: math.unit(1700, "lb"),
  23389. name: "Back",
  23390. image: {
  23391. source: "./media/characters/felix-braveheart/back.svg",
  23392. extra: 1277 / 1203,
  23393. bottom: 50.2 / 1327
  23394. }
  23395. },
  23396. feral: {
  23397. height: math.unit(6, "feet"),
  23398. weight: math.unit(400, "lb"),
  23399. name: "Feral",
  23400. image: {
  23401. source: "./media/characters/felix-braveheart/feral.svg",
  23402. extra: 682 / 625,
  23403. bottom: 6.9 / 688
  23404. }
  23405. },
  23406. },
  23407. [
  23408. {
  23409. name: "Normal",
  23410. height: math.unit(13, "feet"),
  23411. default: true
  23412. },
  23413. ]
  23414. ))
  23415. characterMakers.push(() => makeCharacter(
  23416. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23417. {
  23418. side: {
  23419. height: math.unit(5 + 11 / 12, "feet"),
  23420. weight: math.unit(1400, "lb"),
  23421. name: "Side",
  23422. image: {
  23423. source: "./media/characters/shadow-blade/side.svg",
  23424. extra: 1726 / 1267,
  23425. bottom: 58.4 / 1785
  23426. }
  23427. },
  23428. },
  23429. [
  23430. {
  23431. name: "Normal",
  23432. height: math.unit(5 + 11 / 12, "feet"),
  23433. default: true
  23434. },
  23435. ]
  23436. ))
  23437. characterMakers.push(() => makeCharacter(
  23438. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23439. {
  23440. front: {
  23441. height: math.unit(1 + 6 / 12, "feet"),
  23442. weight: math.unit(25, "lb"),
  23443. name: "Front",
  23444. image: {
  23445. source: "./media/characters/karla-halldor/front.svg",
  23446. extra: 1459 / 1383,
  23447. bottom: 12 / 1472
  23448. }
  23449. },
  23450. },
  23451. [
  23452. {
  23453. name: "Normal",
  23454. height: math.unit(1 + 6 / 12, "feet"),
  23455. default: true
  23456. },
  23457. ]
  23458. ))
  23459. characterMakers.push(() => makeCharacter(
  23460. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23461. {
  23462. front: {
  23463. height: math.unit(6 + 2 / 12, "feet"),
  23464. weight: math.unit(160, "lb"),
  23465. name: "Front",
  23466. image: {
  23467. source: "./media/characters/ariam/front.svg",
  23468. extra: 714 / 617,
  23469. bottom: 23.4 / 737,
  23470. }
  23471. },
  23472. squatting: {
  23473. height: math.unit(4.1, "feet"),
  23474. weight: math.unit(160, "lb"),
  23475. name: "Squatting",
  23476. image: {
  23477. source: "./media/characters/ariam/squatting.svg",
  23478. extra: 2617 / 2112,
  23479. bottom: 61.2 / 2681,
  23480. }
  23481. },
  23482. },
  23483. [
  23484. {
  23485. name: "Normal",
  23486. height: math.unit(6 + 2 / 12, "feet"),
  23487. default: true
  23488. },
  23489. {
  23490. name: "Normal+",
  23491. height: math.unit(4, "meters")
  23492. },
  23493. {
  23494. name: "Macro",
  23495. height: math.unit(50, "meters")
  23496. },
  23497. {
  23498. name: "Macro+",
  23499. height: math.unit(100, "meters")
  23500. },
  23501. {
  23502. name: "Megamacro",
  23503. height: math.unit(20, "km")
  23504. },
  23505. ]
  23506. ))
  23507. characterMakers.push(() => makeCharacter(
  23508. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23509. {
  23510. front: {
  23511. height: math.unit(1.67, "meters"),
  23512. weight: math.unit(140, "lb"),
  23513. name: "Front",
  23514. image: {
  23515. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23516. extra: 438 / 410,
  23517. bottom: 0.75 / 439
  23518. }
  23519. },
  23520. },
  23521. [
  23522. {
  23523. name: "Shrunken",
  23524. height: math.unit(7.6, "cm")
  23525. },
  23526. {
  23527. name: "Human Scale",
  23528. height: math.unit(1.67, "meters")
  23529. },
  23530. {
  23531. name: "Wolxi Scale",
  23532. height: math.unit(36.7, "meters"),
  23533. default: true
  23534. },
  23535. ]
  23536. ))
  23537. characterMakers.push(() => makeCharacter(
  23538. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23539. {
  23540. front: {
  23541. height: math.unit(1.73, "meters"),
  23542. weight: math.unit(240, "lb"),
  23543. name: "Front",
  23544. image: {
  23545. source: "./media/characters/izue-two-mothers/front.svg",
  23546. extra: 469 / 437,
  23547. bottom: 1.24 / 470.6
  23548. }
  23549. },
  23550. },
  23551. [
  23552. {
  23553. name: "Shrunken",
  23554. height: math.unit(7.86, "cm")
  23555. },
  23556. {
  23557. name: "Human Scale",
  23558. height: math.unit(1.73, "meters")
  23559. },
  23560. {
  23561. name: "Wolxi Scale",
  23562. height: math.unit(38, "meters"),
  23563. default: true
  23564. },
  23565. ]
  23566. ))
  23567. characterMakers.push(() => makeCharacter(
  23568. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23569. {
  23570. front: {
  23571. height: math.unit(1.55, "meters"),
  23572. weight: math.unit(120, "lb"),
  23573. name: "Front",
  23574. image: {
  23575. source: "./media/characters/teeku-love-shack/front.svg",
  23576. extra: 387 / 362,
  23577. bottom: 1.51 / 388
  23578. }
  23579. },
  23580. },
  23581. [
  23582. {
  23583. name: "Shrunken",
  23584. height: math.unit(7, "cm")
  23585. },
  23586. {
  23587. name: "Human Scale",
  23588. height: math.unit(1.55, "meters")
  23589. },
  23590. {
  23591. name: "Wolxi Scale",
  23592. height: math.unit(34.1, "meters"),
  23593. default: true
  23594. },
  23595. ]
  23596. ))
  23597. characterMakers.push(() => makeCharacter(
  23598. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23599. {
  23600. front: {
  23601. height: math.unit(1.83, "meters"),
  23602. weight: math.unit(135, "lb"),
  23603. name: "Front",
  23604. image: {
  23605. source: "./media/characters/dejma-the-red/front.svg",
  23606. extra: 480 / 458,
  23607. bottom: 1.8 / 482
  23608. }
  23609. },
  23610. },
  23611. [
  23612. {
  23613. name: "Shrunken",
  23614. height: math.unit(8.3, "cm")
  23615. },
  23616. {
  23617. name: "Human Scale",
  23618. height: math.unit(1.83, "meters")
  23619. },
  23620. {
  23621. name: "Wolxi Scale",
  23622. height: math.unit(40, "meters"),
  23623. default: true
  23624. },
  23625. ]
  23626. ))
  23627. characterMakers.push(() => makeCharacter(
  23628. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23629. {
  23630. front: {
  23631. height: math.unit(1.78, "meters"),
  23632. weight: math.unit(65, "kg"),
  23633. name: "Front",
  23634. image: {
  23635. source: "./media/characters/aki/front.svg",
  23636. extra: 452 / 415
  23637. }
  23638. },
  23639. frontNsfw: {
  23640. height: math.unit(1.78, "meters"),
  23641. weight: math.unit(65, "kg"),
  23642. name: "Front (NSFW)",
  23643. image: {
  23644. source: "./media/characters/aki/front-nsfw.svg",
  23645. extra: 452 / 415
  23646. }
  23647. },
  23648. back: {
  23649. height: math.unit(1.78, "meters"),
  23650. weight: math.unit(65, "kg"),
  23651. name: "Back",
  23652. image: {
  23653. source: "./media/characters/aki/back.svg",
  23654. extra: 452 / 415
  23655. }
  23656. },
  23657. rump: {
  23658. height: math.unit(2.05, "feet"),
  23659. name: "Rump",
  23660. image: {
  23661. source: "./media/characters/aki/rump.svg"
  23662. }
  23663. },
  23664. dick: {
  23665. height: math.unit(0.95, "feet"),
  23666. name: "Dick",
  23667. image: {
  23668. source: "./media/characters/aki/dick.svg"
  23669. }
  23670. },
  23671. },
  23672. [
  23673. {
  23674. name: "Micro",
  23675. height: math.unit(15, "cm")
  23676. },
  23677. {
  23678. name: "Normal",
  23679. height: math.unit(178, "cm"),
  23680. default: true
  23681. },
  23682. {
  23683. name: "Macro",
  23684. height: math.unit(214, "m")
  23685. },
  23686. {
  23687. name: "Macro+",
  23688. height: math.unit(534, "m")
  23689. },
  23690. ]
  23691. ))
  23692. characterMakers.push(() => makeCharacter(
  23693. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23694. {
  23695. front: {
  23696. height: math.unit(5 + 5 / 12, "feet"),
  23697. weight: math.unit(120, "lb"),
  23698. name: "Front",
  23699. image: {
  23700. source: "./media/characters/ari/front.svg",
  23701. extra: 714.5 / 682,
  23702. bottom: 8 / 722.5
  23703. }
  23704. },
  23705. },
  23706. [
  23707. {
  23708. name: "Normal",
  23709. height: math.unit(5 + 5 / 12, "feet")
  23710. },
  23711. {
  23712. name: "Macro",
  23713. height: math.unit(100, "feet"),
  23714. default: true
  23715. },
  23716. {
  23717. name: "Megamacro",
  23718. height: math.unit(100, "miles")
  23719. },
  23720. {
  23721. name: "Gigamacro",
  23722. height: math.unit(80000, "miles")
  23723. },
  23724. ]
  23725. ))
  23726. characterMakers.push(() => makeCharacter(
  23727. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23728. {
  23729. side: {
  23730. height: math.unit(9, "feet"),
  23731. weight: math.unit(400, "kg"),
  23732. name: "Side",
  23733. image: {
  23734. source: "./media/characters/bolt/side.svg",
  23735. extra: 1126 / 896,
  23736. bottom: 60 / 1187.3,
  23737. }
  23738. },
  23739. },
  23740. [
  23741. {
  23742. name: "Micro",
  23743. height: math.unit(5, "inches")
  23744. },
  23745. {
  23746. name: "Normal",
  23747. height: math.unit(9, "feet"),
  23748. default: true
  23749. },
  23750. {
  23751. name: "Macro",
  23752. height: math.unit(700, "feet")
  23753. },
  23754. {
  23755. name: "Max Size",
  23756. height: math.unit(1.52e22, "yottameters")
  23757. },
  23758. ]
  23759. ))
  23760. characterMakers.push(() => makeCharacter(
  23761. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23762. {
  23763. front: {
  23764. height: math.unit(4.53, "meters"),
  23765. weight: math.unit(3, "tons"),
  23766. name: "Front",
  23767. image: {
  23768. source: "./media/characters/draekon-sylviar/front.svg",
  23769. extra: 1228 / 1068,
  23770. bottom: 41 / 1270
  23771. }
  23772. },
  23773. tail: {
  23774. height: math.unit(1.772, "meter"),
  23775. name: "Tail",
  23776. image: {
  23777. source: "./media/characters/draekon-sylviar/tail.svg"
  23778. }
  23779. },
  23780. head: {
  23781. height: math.unit(1.331, "meter"),
  23782. name: "Head",
  23783. image: {
  23784. source: "./media/characters/draekon-sylviar/head.svg"
  23785. }
  23786. },
  23787. hand: {
  23788. height: math.unit(0.564, "meter"),
  23789. name: "Hand",
  23790. image: {
  23791. source: "./media/characters/draekon-sylviar/hand.svg"
  23792. }
  23793. },
  23794. foot: {
  23795. height: math.unit(0.621, "meter"),
  23796. name: "Foot",
  23797. image: {
  23798. source: "./media/characters/draekon-sylviar/foot.svg",
  23799. bottom: 32 / 324
  23800. }
  23801. },
  23802. dick: {
  23803. height: math.unit(61, "cm"),
  23804. name: "Dick",
  23805. image: {
  23806. source: "./media/characters/draekon-sylviar/dick.svg"
  23807. }
  23808. },
  23809. dickseparated: {
  23810. height: math.unit(61, "cm"),
  23811. name: "Dick-separated",
  23812. image: {
  23813. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23814. }
  23815. },
  23816. },
  23817. [
  23818. {
  23819. name: "Small",
  23820. height: math.unit(4.53 / 2, "meters"),
  23821. default: true
  23822. },
  23823. {
  23824. name: "Normal",
  23825. height: math.unit(4.53, "meters"),
  23826. default: true
  23827. },
  23828. {
  23829. name: "Large",
  23830. height: math.unit(4.53 * 2, "meters"),
  23831. },
  23832. ]
  23833. ))
  23834. characterMakers.push(() => makeCharacter(
  23835. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23836. {
  23837. front: {
  23838. height: math.unit(6 + 2 / 12, "feet"),
  23839. weight: math.unit(180, "lb"),
  23840. name: "Front",
  23841. image: {
  23842. source: "./media/characters/brawler/front.svg",
  23843. extra: 3301 / 3027,
  23844. bottom: 138 / 3439
  23845. }
  23846. },
  23847. },
  23848. [
  23849. {
  23850. name: "Normal",
  23851. height: math.unit(6 + 2 / 12, "feet"),
  23852. default: true
  23853. },
  23854. ]
  23855. ))
  23856. characterMakers.push(() => makeCharacter(
  23857. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23858. {
  23859. front: {
  23860. height: math.unit(11, "feet"),
  23861. weight: math.unit(1000, "lb"),
  23862. name: "Front",
  23863. image: {
  23864. source: "./media/characters/alex/front.svg",
  23865. bottom: 44.5 / 620
  23866. }
  23867. },
  23868. },
  23869. [
  23870. {
  23871. name: "Micro",
  23872. height: math.unit(5, "inches")
  23873. },
  23874. {
  23875. name: "Normal",
  23876. height: math.unit(11, "feet"),
  23877. default: true
  23878. },
  23879. {
  23880. name: "Macro",
  23881. height: math.unit(9.5e9, "feet")
  23882. },
  23883. {
  23884. name: "Max Size",
  23885. height: math.unit(1.4e283, "yottameters")
  23886. },
  23887. ]
  23888. ))
  23889. characterMakers.push(() => makeCharacter(
  23890. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23891. {
  23892. female: {
  23893. height: math.unit(29.9, "m"),
  23894. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23895. name: "Female",
  23896. image: {
  23897. source: "./media/characters/zenari/female.svg",
  23898. extra: 3281.6 / 3217,
  23899. bottom: 72.2 / 3353
  23900. }
  23901. },
  23902. male: {
  23903. height: math.unit(27.7, "m"),
  23904. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23905. name: "Male",
  23906. image: {
  23907. source: "./media/characters/zenari/male.svg",
  23908. extra: 3008 / 2991,
  23909. bottom: 54.6 / 3069
  23910. }
  23911. },
  23912. },
  23913. [
  23914. {
  23915. name: "Macro",
  23916. height: math.unit(29.7, "meters"),
  23917. default: true
  23918. },
  23919. ]
  23920. ))
  23921. characterMakers.push(() => makeCharacter(
  23922. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23923. {
  23924. female: {
  23925. height: math.unit(23.8, "m"),
  23926. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23927. name: "Female",
  23928. image: {
  23929. source: "./media/characters/mactarian/female.svg",
  23930. extra: 2662 / 2569,
  23931. bottom: 73 / 2736
  23932. }
  23933. },
  23934. male: {
  23935. height: math.unit(23.8, "m"),
  23936. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23937. name: "Male",
  23938. image: {
  23939. source: "./media/characters/mactarian/male.svg",
  23940. extra: 2673 / 2600,
  23941. bottom: 76 / 2750
  23942. }
  23943. },
  23944. },
  23945. [
  23946. {
  23947. name: "Macro",
  23948. height: math.unit(23.8, "meters"),
  23949. default: true
  23950. },
  23951. ]
  23952. ))
  23953. characterMakers.push(() => makeCharacter(
  23954. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23955. {
  23956. female: {
  23957. height: math.unit(19.3, "m"),
  23958. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23959. name: "Female",
  23960. image: {
  23961. source: "./media/characters/umok/female.svg",
  23962. extra: 2186 / 2078,
  23963. bottom: 87 / 2277
  23964. }
  23965. },
  23966. male: {
  23967. height: math.unit(19.5, "m"),
  23968. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23969. name: "Male",
  23970. image: {
  23971. source: "./media/characters/umok/male.svg",
  23972. extra: 2233 / 2140,
  23973. bottom: 24.4 / 2258
  23974. }
  23975. },
  23976. },
  23977. [
  23978. {
  23979. name: "Macro",
  23980. height: math.unit(19.3, "meters"),
  23981. default: true
  23982. },
  23983. ]
  23984. ))
  23985. characterMakers.push(() => makeCharacter(
  23986. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23987. {
  23988. female: {
  23989. height: math.unit(26.15, "m"),
  23990. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23991. name: "Female",
  23992. image: {
  23993. source: "./media/characters/joraxian/female.svg",
  23994. extra: 2912 / 2824,
  23995. bottom: 36 / 2956
  23996. }
  23997. },
  23998. male: {
  23999. height: math.unit(25.4, "m"),
  24000. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  24001. name: "Male",
  24002. image: {
  24003. source: "./media/characters/joraxian/male.svg",
  24004. extra: 2877 / 2721,
  24005. bottom: 82 / 2967
  24006. }
  24007. },
  24008. },
  24009. [
  24010. {
  24011. name: "Macro",
  24012. height: math.unit(26.15, "meters"),
  24013. default: true
  24014. },
  24015. ]
  24016. ))
  24017. characterMakers.push(() => makeCharacter(
  24018. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24019. {
  24020. female: {
  24021. height: math.unit(21.6, "m"),
  24022. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24023. name: "Female",
  24024. image: {
  24025. source: "./media/characters/sthara/female.svg",
  24026. extra: 2516 / 2347,
  24027. bottom: 21.5 / 2537
  24028. }
  24029. },
  24030. male: {
  24031. height: math.unit(24, "m"),
  24032. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24033. name: "Male",
  24034. image: {
  24035. source: "./media/characters/sthara/male.svg",
  24036. extra: 2732 / 2607,
  24037. bottom: 23 / 2732
  24038. }
  24039. },
  24040. },
  24041. [
  24042. {
  24043. name: "Macro",
  24044. height: math.unit(21.6, "meters"),
  24045. default: true
  24046. },
  24047. ]
  24048. ))
  24049. characterMakers.push(() => makeCharacter(
  24050. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24051. {
  24052. front: {
  24053. height: math.unit(6 + 4 / 12, "feet"),
  24054. weight: math.unit(175, "lb"),
  24055. name: "Front",
  24056. image: {
  24057. source: "./media/characters/luka-bryzant/front.svg",
  24058. extra: 311 / 289,
  24059. bottom: 4 / 315
  24060. }
  24061. },
  24062. back: {
  24063. height: math.unit(6 + 4 / 12, "feet"),
  24064. weight: math.unit(175, "lb"),
  24065. name: "Back",
  24066. image: {
  24067. source: "./media/characters/luka-bryzant/back.svg",
  24068. extra: 311 / 289,
  24069. bottom: 3.8 / 313.7
  24070. }
  24071. },
  24072. },
  24073. [
  24074. {
  24075. name: "Micro",
  24076. height: math.unit(10, "inches")
  24077. },
  24078. {
  24079. name: "Normal",
  24080. height: math.unit(6 + 4 / 12, "feet"),
  24081. default: true
  24082. },
  24083. {
  24084. name: "Large",
  24085. height: math.unit(12, "feet")
  24086. },
  24087. ]
  24088. ))
  24089. characterMakers.push(() => makeCharacter(
  24090. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24091. {
  24092. front: {
  24093. height: math.unit(5 + 7 / 12, "feet"),
  24094. weight: math.unit(185, "lb"),
  24095. name: "Front",
  24096. image: {
  24097. source: "./media/characters/aman-aquila/front.svg",
  24098. extra: 1013 / 976,
  24099. bottom: 45.6 / 1057
  24100. }
  24101. },
  24102. side: {
  24103. height: math.unit(5 + 7 / 12, "feet"),
  24104. weight: math.unit(185, "lb"),
  24105. name: "Side",
  24106. image: {
  24107. source: "./media/characters/aman-aquila/side.svg",
  24108. extra: 1054 / 1011,
  24109. bottom: 15 / 1070
  24110. }
  24111. },
  24112. back: {
  24113. height: math.unit(5 + 7 / 12, "feet"),
  24114. weight: math.unit(185, "lb"),
  24115. name: "Back",
  24116. image: {
  24117. source: "./media/characters/aman-aquila/back.svg",
  24118. extra: 1026 / 970,
  24119. bottom: 12 / 1039
  24120. }
  24121. },
  24122. head: {
  24123. height: math.unit(1.211, "feet"),
  24124. name: "Head",
  24125. image: {
  24126. source: "./media/characters/aman-aquila/head.svg",
  24127. }
  24128. },
  24129. },
  24130. [
  24131. {
  24132. name: "Minimicro",
  24133. height: math.unit(0.057, "inches")
  24134. },
  24135. {
  24136. name: "Micro",
  24137. height: math.unit(7, "inches")
  24138. },
  24139. {
  24140. name: "Mini",
  24141. height: math.unit(3 + 7 / 12, "feet")
  24142. },
  24143. {
  24144. name: "Normal",
  24145. height: math.unit(5 + 7 / 12, "feet"),
  24146. default: true
  24147. },
  24148. {
  24149. name: "Macro",
  24150. height: math.unit(157 + 7 / 12, "feet")
  24151. },
  24152. {
  24153. name: "Megamacro",
  24154. height: math.unit(1557 + 7 / 12, "feet")
  24155. },
  24156. {
  24157. name: "Gigamacro",
  24158. height: math.unit(15557 + 7 / 12, "feet")
  24159. },
  24160. ]
  24161. ))
  24162. characterMakers.push(() => makeCharacter(
  24163. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24164. {
  24165. front: {
  24166. height: math.unit(3 + 2 / 12, "inches"),
  24167. weight: math.unit(0.3, "ounces"),
  24168. name: "Front",
  24169. image: {
  24170. source: "./media/characters/hiphae/front.svg",
  24171. extra: 1931 / 1683,
  24172. bottom: 24 / 1955
  24173. }
  24174. },
  24175. },
  24176. [
  24177. {
  24178. name: "Normal",
  24179. height: math.unit(3 + 1 / 2, "inches"),
  24180. default: true
  24181. },
  24182. ]
  24183. ))
  24184. characterMakers.push(() => makeCharacter(
  24185. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24186. {
  24187. front: {
  24188. height: math.unit(5 + 10 / 12, "feet"),
  24189. weight: math.unit(165, "lb"),
  24190. name: "Front",
  24191. image: {
  24192. source: "./media/characters/nicky/front.svg",
  24193. extra: 3144 / 2886,
  24194. bottom: 45.6 / 3192
  24195. }
  24196. },
  24197. back: {
  24198. height: math.unit(5 + 10 / 12, "feet"),
  24199. weight: math.unit(165, "lb"),
  24200. name: "Back",
  24201. image: {
  24202. source: "./media/characters/nicky/back.svg",
  24203. extra: 3055 / 2804,
  24204. bottom: 28.4 / 3087
  24205. }
  24206. },
  24207. frontclothed: {
  24208. height: math.unit(5 + 10 / 12, "feet"),
  24209. weight: math.unit(165, "lb"),
  24210. name: "Front-clothed",
  24211. image: {
  24212. source: "./media/characters/nicky/front-clothed.svg",
  24213. extra: 3184.9 / 2926.9,
  24214. bottom: 86.5 / 3239.9
  24215. }
  24216. },
  24217. foot: {
  24218. height: math.unit(1.16, "feet"),
  24219. name: "Foot",
  24220. image: {
  24221. source: "./media/characters/nicky/foot.svg"
  24222. }
  24223. },
  24224. feet: {
  24225. height: math.unit(1.34, "feet"),
  24226. name: "Feet",
  24227. image: {
  24228. source: "./media/characters/nicky/feet.svg"
  24229. }
  24230. },
  24231. maw: {
  24232. height: math.unit(0.9, "feet"),
  24233. name: "Maw",
  24234. image: {
  24235. source: "./media/characters/nicky/maw.svg"
  24236. }
  24237. },
  24238. },
  24239. [
  24240. {
  24241. name: "Normal",
  24242. height: math.unit(5 + 10 / 12, "feet"),
  24243. default: true
  24244. },
  24245. {
  24246. name: "Macro",
  24247. height: math.unit(60, "feet")
  24248. },
  24249. {
  24250. name: "Megamacro",
  24251. height: math.unit(1, "mile")
  24252. },
  24253. ]
  24254. ))
  24255. characterMakers.push(() => makeCharacter(
  24256. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24257. {
  24258. side: {
  24259. height: math.unit(10, "feet"),
  24260. weight: math.unit(600, "lb"),
  24261. name: "Side",
  24262. image: {
  24263. source: "./media/characters/blair/side.svg",
  24264. bottom: 16.6 / 475,
  24265. extra: 458 / 431
  24266. }
  24267. },
  24268. },
  24269. [
  24270. {
  24271. name: "Micro",
  24272. height: math.unit(8, "inches")
  24273. },
  24274. {
  24275. name: "Normal",
  24276. height: math.unit(10, "feet"),
  24277. default: true
  24278. },
  24279. {
  24280. name: "Macro",
  24281. height: math.unit(180, "feet")
  24282. },
  24283. ]
  24284. ))
  24285. characterMakers.push(() => makeCharacter(
  24286. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24287. {
  24288. front: {
  24289. height: math.unit(5 + 4 / 12, "feet"),
  24290. weight: math.unit(125, "lb"),
  24291. name: "Front",
  24292. image: {
  24293. source: "./media/characters/fisher/front.svg",
  24294. extra: 444 / 390,
  24295. bottom: 2 / 444.8
  24296. }
  24297. },
  24298. },
  24299. [
  24300. {
  24301. name: "Micro",
  24302. height: math.unit(4, "inches")
  24303. },
  24304. {
  24305. name: "Normal",
  24306. height: math.unit(5 + 4 / 12, "feet"),
  24307. default: true
  24308. },
  24309. {
  24310. name: "Macro",
  24311. height: math.unit(100, "feet")
  24312. },
  24313. ]
  24314. ))
  24315. characterMakers.push(() => makeCharacter(
  24316. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24317. {
  24318. front: {
  24319. height: math.unit(6.71, "feet"),
  24320. weight: math.unit(200, "lb"),
  24321. capacity: math.unit(1000000, "people"),
  24322. name: "Front",
  24323. image: {
  24324. source: "./media/characters/gliss/front.svg",
  24325. extra: 2347 / 2231,
  24326. bottom: 113 / 2462
  24327. }
  24328. },
  24329. hammerspaceSize: {
  24330. height: math.unit(6.71 * 717, "feet"),
  24331. weight: math.unit(200, "lb"),
  24332. capacity: math.unit(1000000, "people"),
  24333. name: "Hammerspace Size",
  24334. image: {
  24335. source: "./media/characters/gliss/front.svg",
  24336. extra: 2347 / 2231,
  24337. bottom: 113 / 2462
  24338. }
  24339. },
  24340. },
  24341. [
  24342. {
  24343. name: "Normal",
  24344. height: math.unit(6.71, "feet"),
  24345. default: true
  24346. },
  24347. ]
  24348. ))
  24349. characterMakers.push(() => makeCharacter(
  24350. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24351. {
  24352. side: {
  24353. height: math.unit(1.44, "m"),
  24354. weight: math.unit(80, "kg"),
  24355. name: "Side",
  24356. image: {
  24357. source: "./media/characters/dune-anderson/side.svg",
  24358. bottom: 49 / 1426
  24359. }
  24360. },
  24361. },
  24362. [
  24363. {
  24364. name: "Wolf-sized",
  24365. height: math.unit(1.44, "meters")
  24366. },
  24367. {
  24368. name: "Normal",
  24369. height: math.unit(5.05, "meters"),
  24370. default: true
  24371. },
  24372. {
  24373. name: "Big",
  24374. height: math.unit(14.4, "meters")
  24375. },
  24376. {
  24377. name: "Huge",
  24378. height: math.unit(144, "meters")
  24379. },
  24380. ]
  24381. ))
  24382. characterMakers.push(() => makeCharacter(
  24383. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24384. {
  24385. front: {
  24386. height: math.unit(7, "feet"),
  24387. weight: math.unit(425, "lb"),
  24388. name: "Front",
  24389. image: {
  24390. source: "./media/characters/hind/front.svg",
  24391. extra: 2091 / 1860,
  24392. bottom: 129 / 2220
  24393. }
  24394. },
  24395. back: {
  24396. height: math.unit(7, "feet"),
  24397. weight: math.unit(425, "lb"),
  24398. name: "Back",
  24399. image: {
  24400. source: "./media/characters/hind/back.svg",
  24401. extra: 2091 / 1860,
  24402. bottom: 24.6 / 2309
  24403. }
  24404. },
  24405. tail: {
  24406. height: math.unit(2.8, "feet"),
  24407. name: "Tail",
  24408. image: {
  24409. source: "./media/characters/hind/tail.svg"
  24410. }
  24411. },
  24412. head: {
  24413. height: math.unit(2.55, "feet"),
  24414. name: "Head",
  24415. image: {
  24416. source: "./media/characters/hind/head.svg"
  24417. }
  24418. },
  24419. },
  24420. [
  24421. {
  24422. name: "XS",
  24423. height: math.unit(0.7, "feet")
  24424. },
  24425. {
  24426. name: "Normal",
  24427. height: math.unit(7, "feet"),
  24428. default: true
  24429. },
  24430. {
  24431. name: "XL",
  24432. height: math.unit(70, "feet")
  24433. },
  24434. ]
  24435. ))
  24436. characterMakers.push(() => makeCharacter(
  24437. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24438. {
  24439. front: {
  24440. height: math.unit(6, "feet"),
  24441. weight: math.unit(150, "lb"),
  24442. name: "Front",
  24443. image: {
  24444. source: "./media/characters/dylan-skaven/front.svg",
  24445. extra: 2318 / 2063,
  24446. bottom: 93.4 / 2410
  24447. }
  24448. },
  24449. },
  24450. [
  24451. {
  24452. name: "Nano",
  24453. height: math.unit(1, "mm")
  24454. },
  24455. {
  24456. name: "Micro",
  24457. height: math.unit(1, "cm")
  24458. },
  24459. {
  24460. name: "Normal",
  24461. height: math.unit(2.1, "meters"),
  24462. default: true
  24463. },
  24464. ]
  24465. ))
  24466. characterMakers.push(() => makeCharacter(
  24467. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24468. {
  24469. front: {
  24470. height: math.unit(7 + 5 / 12, "feet"),
  24471. weight: math.unit(357, "lb"),
  24472. name: "Front",
  24473. image: {
  24474. source: "./media/characters/solex-draconov/front.svg",
  24475. extra: 1993 / 1865,
  24476. bottom: 117 / 2111
  24477. }
  24478. },
  24479. },
  24480. [
  24481. {
  24482. name: "Natural Height",
  24483. height: math.unit(7 + 5 / 12, "feet"),
  24484. default: true
  24485. },
  24486. {
  24487. name: "Macro",
  24488. height: math.unit(350, "feet")
  24489. },
  24490. {
  24491. name: "Macro+",
  24492. height: math.unit(1000, "feet")
  24493. },
  24494. {
  24495. name: "Megamacro",
  24496. height: math.unit(20, "km")
  24497. },
  24498. {
  24499. name: "Megamacro+",
  24500. height: math.unit(1000, "km")
  24501. },
  24502. {
  24503. name: "Gigamacro",
  24504. height: math.unit(2.5, "Gm")
  24505. },
  24506. {
  24507. name: "Teramacro",
  24508. height: math.unit(15, "Tm")
  24509. },
  24510. {
  24511. name: "Galactic",
  24512. height: math.unit(30, "Zm")
  24513. },
  24514. {
  24515. name: "Universal",
  24516. height: math.unit(21000, "Ym")
  24517. },
  24518. {
  24519. name: "Omniversal",
  24520. height: math.unit(9.861e50, "Ym")
  24521. },
  24522. {
  24523. name: "Existential",
  24524. height: math.unit(1e300, "meters")
  24525. },
  24526. ]
  24527. ))
  24528. characterMakers.push(() => makeCharacter(
  24529. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24530. {
  24531. side: {
  24532. height: math.unit(25, "feet"),
  24533. weight: math.unit(90000, "lb"),
  24534. name: "Side",
  24535. image: {
  24536. source: "./media/characters/mandarax/side.svg",
  24537. extra: 614 / 332,
  24538. bottom: 55 / 630
  24539. }
  24540. },
  24541. head: {
  24542. height: math.unit(11.4, "feet"),
  24543. name: "Head",
  24544. image: {
  24545. source: "./media/characters/mandarax/head.svg"
  24546. }
  24547. },
  24548. belly: {
  24549. height: math.unit(33, "feet"),
  24550. name: "Belly",
  24551. capacity: math.unit(500, "people"),
  24552. image: {
  24553. source: "./media/characters/mandarax/belly.svg"
  24554. }
  24555. },
  24556. dick: {
  24557. height: math.unit(8.46, "feet"),
  24558. name: "Dick",
  24559. image: {
  24560. source: "./media/characters/mandarax/dick.svg"
  24561. }
  24562. },
  24563. top: {
  24564. height: math.unit(28, "meters"),
  24565. name: "Top",
  24566. image: {
  24567. source: "./media/characters/mandarax/top.svg"
  24568. }
  24569. },
  24570. },
  24571. [
  24572. {
  24573. name: "Normal",
  24574. height: math.unit(25, "feet"),
  24575. default: true
  24576. },
  24577. ]
  24578. ))
  24579. characterMakers.push(() => makeCharacter(
  24580. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24581. {
  24582. front: {
  24583. height: math.unit(5, "feet"),
  24584. weight: math.unit(90, "lb"),
  24585. name: "Front",
  24586. image: {
  24587. source: "./media/characters/pixil/front.svg",
  24588. extra: 2000 / 1618,
  24589. bottom: 12.3 / 2011
  24590. }
  24591. },
  24592. },
  24593. [
  24594. {
  24595. name: "Normal",
  24596. height: math.unit(5, "feet"),
  24597. default: true
  24598. },
  24599. {
  24600. name: "Megamacro",
  24601. height: math.unit(10, "miles"),
  24602. },
  24603. ]
  24604. ))
  24605. characterMakers.push(() => makeCharacter(
  24606. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24607. {
  24608. front: {
  24609. height: math.unit(7 + 2 / 12, "feet"),
  24610. weight: math.unit(200, "lb"),
  24611. name: "Front",
  24612. image: {
  24613. source: "./media/characters/angel/front.svg",
  24614. extra: 1830 / 1737,
  24615. bottom: 22.6 / 1854,
  24616. }
  24617. },
  24618. },
  24619. [
  24620. {
  24621. name: "Normal",
  24622. height: math.unit(7 + 2 / 12, "feet"),
  24623. default: true
  24624. },
  24625. {
  24626. name: "Macro",
  24627. height: math.unit(1000, "feet")
  24628. },
  24629. {
  24630. name: "Megamacro",
  24631. height: math.unit(2, "miles")
  24632. },
  24633. {
  24634. name: "Gigamacro",
  24635. height: math.unit(20, "earths")
  24636. },
  24637. ]
  24638. ))
  24639. characterMakers.push(() => makeCharacter(
  24640. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24641. {
  24642. front: {
  24643. height: math.unit(5, "feet"),
  24644. weight: math.unit(180, "lb"),
  24645. name: "Front",
  24646. image: {
  24647. source: "./media/characters/mekana/front.svg",
  24648. extra: 1671 / 1605,
  24649. bottom: 3.5 / 1691
  24650. }
  24651. },
  24652. side: {
  24653. height: math.unit(5, "feet"),
  24654. weight: math.unit(180, "lb"),
  24655. name: "Side",
  24656. image: {
  24657. source: "./media/characters/mekana/side.svg",
  24658. extra: 1671 / 1605,
  24659. bottom: 3.5 / 1691
  24660. }
  24661. },
  24662. back: {
  24663. height: math.unit(5, "feet"),
  24664. weight: math.unit(180, "lb"),
  24665. name: "Back",
  24666. image: {
  24667. source: "./media/characters/mekana/back.svg",
  24668. extra: 1671 / 1605,
  24669. bottom: 3.5 / 1691
  24670. }
  24671. },
  24672. },
  24673. [
  24674. {
  24675. name: "Normal",
  24676. height: math.unit(5, "feet"),
  24677. default: true
  24678. },
  24679. ]
  24680. ))
  24681. characterMakers.push(() => makeCharacter(
  24682. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24683. {
  24684. front: {
  24685. height: math.unit(4 + 6 / 12, "feet"),
  24686. weight: math.unit(80, "lb"),
  24687. name: "Front",
  24688. image: {
  24689. source: "./media/characters/pixie/front.svg",
  24690. extra: 1924 / 1825,
  24691. bottom: 22.4 / 1946
  24692. }
  24693. },
  24694. },
  24695. [
  24696. {
  24697. name: "Normal",
  24698. height: math.unit(4 + 6 / 12, "feet"),
  24699. default: true
  24700. },
  24701. {
  24702. name: "Macro",
  24703. height: math.unit(40, "feet")
  24704. },
  24705. ]
  24706. ))
  24707. characterMakers.push(() => makeCharacter(
  24708. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24709. {
  24710. front: {
  24711. height: math.unit(2.1, "meters"),
  24712. weight: math.unit(200, "lb"),
  24713. name: "Front",
  24714. image: {
  24715. source: "./media/characters/the-lascivious/front.svg",
  24716. extra: 1 / 0.893,
  24717. bottom: 3.5 / 573.7
  24718. }
  24719. },
  24720. },
  24721. [
  24722. {
  24723. name: "Human Scale",
  24724. height: math.unit(2.1, "meters")
  24725. },
  24726. {
  24727. name: "Wolxi Scale",
  24728. height: math.unit(46.2, "m"),
  24729. default: true
  24730. },
  24731. {
  24732. name: "Boinker of Buildings",
  24733. height: math.unit(10, "km")
  24734. },
  24735. {
  24736. name: "Shagger of Skyscrapers",
  24737. height: math.unit(40, "km")
  24738. },
  24739. {
  24740. name: "Banger of Boroughs",
  24741. height: math.unit(4000, "km")
  24742. },
  24743. {
  24744. name: "Screwer of States",
  24745. height: math.unit(100000, "km")
  24746. },
  24747. {
  24748. name: "Pounder of Planets",
  24749. height: math.unit(2000000, "km")
  24750. },
  24751. ]
  24752. ))
  24753. characterMakers.push(() => makeCharacter(
  24754. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24755. {
  24756. front: {
  24757. height: math.unit(6, "feet"),
  24758. weight: math.unit(150, "lb"),
  24759. name: "Front",
  24760. image: {
  24761. source: "./media/characters/aj/front.svg",
  24762. extra: 2039 / 1562,
  24763. bottom: 40 / 2079
  24764. }
  24765. },
  24766. },
  24767. [
  24768. {
  24769. name: "Normal",
  24770. height: math.unit(11 + 6 / 12, "feet"),
  24771. default: true
  24772. },
  24773. {
  24774. name: "Megamacro",
  24775. height: math.unit(60, "megameters")
  24776. },
  24777. ]
  24778. ))
  24779. characterMakers.push(() => makeCharacter(
  24780. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24781. {
  24782. side: {
  24783. height: math.unit(31 + 8 / 12, "feet"),
  24784. weight: math.unit(75000, "kg"),
  24785. name: "Side",
  24786. image: {
  24787. source: "./media/characters/koros/side.svg",
  24788. extra: 1442 / 1297,
  24789. bottom: 122.7 / 1562
  24790. }
  24791. },
  24792. dicksKingsCrown: {
  24793. height: math.unit(6, "feet"),
  24794. name: "Dicks (King's Crown)",
  24795. image: {
  24796. source: "./media/characters/koros/dicks-kings-crown.svg"
  24797. }
  24798. },
  24799. dicksTailSet: {
  24800. height: math.unit(3, "feet"),
  24801. name: "Dicks (Tail Set)",
  24802. image: {
  24803. source: "./media/characters/koros/dicks-tail-set.svg"
  24804. }
  24805. },
  24806. dickCumming: {
  24807. height: math.unit(7.98, "feet"),
  24808. name: "Dick (Cumming)",
  24809. image: {
  24810. source: "./media/characters/koros/dick-cumming.svg"
  24811. }
  24812. },
  24813. dicksBack: {
  24814. height: math.unit(5.9, "feet"),
  24815. name: "Dicks (Back)",
  24816. image: {
  24817. source: "./media/characters/koros/dicks-back.svg"
  24818. }
  24819. },
  24820. dicksFront: {
  24821. height: math.unit(3.72, "feet"),
  24822. name: "Dicks (Front)",
  24823. image: {
  24824. source: "./media/characters/koros/dicks-front.svg"
  24825. }
  24826. },
  24827. dicksPeeking: {
  24828. height: math.unit(3.0, "feet"),
  24829. name: "Dicks (Peeking)",
  24830. image: {
  24831. source: "./media/characters/koros/dicks-peeking.svg"
  24832. }
  24833. },
  24834. eye: {
  24835. height: math.unit(1.7, "feet"),
  24836. name: "Eye",
  24837. image: {
  24838. source: "./media/characters/koros/eye.svg"
  24839. }
  24840. },
  24841. headFront: {
  24842. height: math.unit(11.69, "feet"),
  24843. name: "Head (Front)",
  24844. image: {
  24845. source: "./media/characters/koros/head-front.svg"
  24846. }
  24847. },
  24848. headSide: {
  24849. height: math.unit(14, "feet"),
  24850. name: "Head (Side)",
  24851. image: {
  24852. source: "./media/characters/koros/head-side.svg"
  24853. }
  24854. },
  24855. leg: {
  24856. height: math.unit(17, "feet"),
  24857. name: "Leg",
  24858. image: {
  24859. source: "./media/characters/koros/leg.svg"
  24860. }
  24861. },
  24862. mawSide: {
  24863. height: math.unit(12.8, "feet"),
  24864. name: "Maw (Side)",
  24865. image: {
  24866. source: "./media/characters/koros/maw-side.svg"
  24867. }
  24868. },
  24869. mawSpitting: {
  24870. height: math.unit(17, "feet"),
  24871. name: "Maw (Spitting)",
  24872. image: {
  24873. source: "./media/characters/koros/maw-spitting.svg"
  24874. }
  24875. },
  24876. slit: {
  24877. height: math.unit(2.8, "feet"),
  24878. name: "Slit",
  24879. image: {
  24880. source: "./media/characters/koros/slit.svg"
  24881. }
  24882. },
  24883. stomach: {
  24884. height: math.unit(6.8, "feet"),
  24885. capacity: math.unit(20, "people"),
  24886. name: "Stomach",
  24887. image: {
  24888. source: "./media/characters/koros/stomach.svg"
  24889. }
  24890. },
  24891. wingspanBottom: {
  24892. height: math.unit(114, "feet"),
  24893. name: "Wingspan (Bottom)",
  24894. image: {
  24895. source: "./media/characters/koros/wingspan-bottom.svg"
  24896. }
  24897. },
  24898. wingspanTop: {
  24899. height: math.unit(104, "feet"),
  24900. name: "Wingspan (Top)",
  24901. image: {
  24902. source: "./media/characters/koros/wingspan-top.svg"
  24903. }
  24904. },
  24905. },
  24906. [
  24907. {
  24908. name: "Normal",
  24909. height: math.unit(31 + 8 / 12, "feet"),
  24910. default: true
  24911. },
  24912. ]
  24913. ))
  24914. characterMakers.push(() => makeCharacter(
  24915. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24916. {
  24917. front: {
  24918. height: math.unit(18 + 5 / 12, "feet"),
  24919. weight: math.unit(3750, "kg"),
  24920. name: "Front",
  24921. image: {
  24922. source: "./media/characters/vexx/front.svg",
  24923. extra: 426 / 396,
  24924. bottom: 31.5 / 458
  24925. }
  24926. },
  24927. maw: {
  24928. height: math.unit(6, "feet"),
  24929. name: "Maw",
  24930. image: {
  24931. source: "./media/characters/vexx/maw.svg"
  24932. }
  24933. },
  24934. },
  24935. [
  24936. {
  24937. name: "Normal",
  24938. height: math.unit(18 + 5 / 12, "feet"),
  24939. default: true
  24940. },
  24941. ]
  24942. ))
  24943. characterMakers.push(() => makeCharacter(
  24944. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24945. {
  24946. front: {
  24947. height: math.unit(17 + 6 / 12, "feet"),
  24948. weight: math.unit(150, "lb"),
  24949. name: "Front",
  24950. image: {
  24951. source: "./media/characters/baadra/front.svg",
  24952. extra: 3137 / 2890,
  24953. bottom: 168.4 / 3305
  24954. }
  24955. },
  24956. back: {
  24957. height: math.unit(17 + 6 / 12, "feet"),
  24958. weight: math.unit(150, "lb"),
  24959. name: "Back",
  24960. image: {
  24961. source: "./media/characters/baadra/back.svg",
  24962. extra: 3142 / 2890,
  24963. bottom: 220 / 3371
  24964. }
  24965. },
  24966. head: {
  24967. height: math.unit(5.45, "feet"),
  24968. name: "Head",
  24969. image: {
  24970. source: "./media/characters/baadra/head.svg"
  24971. }
  24972. },
  24973. headAngry: {
  24974. height: math.unit(4.95, "feet"),
  24975. name: "Head (Angry)",
  24976. image: {
  24977. source: "./media/characters/baadra/head-angry.svg"
  24978. }
  24979. },
  24980. headOpen: {
  24981. height: math.unit(6, "feet"),
  24982. name: "Head (Open)",
  24983. image: {
  24984. source: "./media/characters/baadra/head-open.svg"
  24985. }
  24986. },
  24987. },
  24988. [
  24989. {
  24990. name: "Normal",
  24991. height: math.unit(17 + 6 / 12, "feet"),
  24992. default: true
  24993. },
  24994. ]
  24995. ))
  24996. characterMakers.push(() => makeCharacter(
  24997. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24998. {
  24999. front: {
  25000. height: math.unit(7 + 3 / 12, "feet"),
  25001. weight: math.unit(180, "lb"),
  25002. name: "Front",
  25003. image: {
  25004. source: "./media/characters/juri/front.svg",
  25005. extra: 1401 / 1237,
  25006. bottom: 18.5 / 1418
  25007. }
  25008. },
  25009. side: {
  25010. height: math.unit(7 + 3 / 12, "feet"),
  25011. weight: math.unit(180, "lb"),
  25012. name: "Side",
  25013. image: {
  25014. source: "./media/characters/juri/side.svg",
  25015. extra: 1424 / 1242,
  25016. bottom: 18.5 / 1447
  25017. }
  25018. },
  25019. sitting: {
  25020. height: math.unit(6, "feet"),
  25021. weight: math.unit(180, "lb"),
  25022. name: "Sitting",
  25023. image: {
  25024. source: "./media/characters/juri/sitting.svg",
  25025. extra: 1270 / 1143,
  25026. bottom: 100 / 1343
  25027. }
  25028. },
  25029. back: {
  25030. height: math.unit(7 + 3 / 12, "feet"),
  25031. weight: math.unit(180, "lb"),
  25032. name: "Back",
  25033. image: {
  25034. source: "./media/characters/juri/back.svg",
  25035. extra: 1377 / 1240,
  25036. bottom: 23.7 / 1405
  25037. }
  25038. },
  25039. maw: {
  25040. height: math.unit(2.8, "feet"),
  25041. name: "Maw",
  25042. image: {
  25043. source: "./media/characters/juri/maw.svg"
  25044. }
  25045. },
  25046. stomach: {
  25047. height: math.unit(0.89, "feet"),
  25048. capacity: math.unit(4, "liters"),
  25049. name: "Stomach",
  25050. image: {
  25051. source: "./media/characters/juri/stomach.svg"
  25052. }
  25053. },
  25054. },
  25055. [
  25056. {
  25057. name: "Normal",
  25058. height: math.unit(7 + 3 / 12, "feet"),
  25059. default: true
  25060. },
  25061. ]
  25062. ))
  25063. characterMakers.push(() => makeCharacter(
  25064. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25065. {
  25066. fox: {
  25067. height: math.unit(5 + 6 / 12, "feet"),
  25068. weight: math.unit(140, "lb"),
  25069. name: "Fox",
  25070. image: {
  25071. source: "./media/characters/maxene-sita/fox.svg",
  25072. extra: 146 / 138,
  25073. bottom: 2.1 / 148.19
  25074. }
  25075. },
  25076. foxLaying: {
  25077. height: math.unit(1.70, "feet"),
  25078. weight: math.unit(140, "lb"),
  25079. name: "Fox (Laying)",
  25080. image: {
  25081. source: "./media/characters/maxene-sita/fox-laying.svg",
  25082. extra: 910 / 572,
  25083. bottom: 71 / 981
  25084. }
  25085. },
  25086. kitsune: {
  25087. height: math.unit(10, "feet"),
  25088. weight: math.unit(800, "lb"),
  25089. name: "Kitsune",
  25090. image: {
  25091. source: "./media/characters/maxene-sita/kitsune.svg",
  25092. extra: 185 / 176,
  25093. bottom: 4.7 / 189.9
  25094. }
  25095. },
  25096. hellhound: {
  25097. height: math.unit(10, "feet"),
  25098. weight: math.unit(700, "lb"),
  25099. name: "Hellhound",
  25100. image: {
  25101. source: "./media/characters/maxene-sita/hellhound.svg",
  25102. extra: 1600 / 1545,
  25103. bottom: 81 / 1681
  25104. }
  25105. },
  25106. },
  25107. [
  25108. {
  25109. name: "Normal",
  25110. height: math.unit(5 + 6 / 12, "feet"),
  25111. default: true
  25112. },
  25113. ]
  25114. ))
  25115. characterMakers.push(() => makeCharacter(
  25116. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25117. {
  25118. front: {
  25119. height: math.unit(3 + 4 / 12, "feet"),
  25120. weight: math.unit(70, "lb"),
  25121. name: "Front",
  25122. image: {
  25123. source: "./media/characters/maia/front.svg",
  25124. extra: 227 / 219.5,
  25125. bottom: 40 / 267
  25126. }
  25127. },
  25128. back: {
  25129. height: math.unit(3 + 4 / 12, "feet"),
  25130. weight: math.unit(70, "lb"),
  25131. name: "Back",
  25132. image: {
  25133. source: "./media/characters/maia/back.svg",
  25134. extra: 237 / 225
  25135. }
  25136. },
  25137. },
  25138. [
  25139. {
  25140. name: "Normal",
  25141. height: math.unit(3 + 4 / 12, "feet"),
  25142. default: true
  25143. },
  25144. ]
  25145. ))
  25146. characterMakers.push(() => makeCharacter(
  25147. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25148. {
  25149. front: {
  25150. height: math.unit(5 + 10 / 12, "feet"),
  25151. weight: math.unit(197, "lb"),
  25152. name: "Front",
  25153. image: {
  25154. source: "./media/characters/jabaro/front.svg",
  25155. extra: 225 / 216,
  25156. bottom: 5.06 / 230
  25157. }
  25158. },
  25159. back: {
  25160. height: math.unit(5 + 10 / 12, "feet"),
  25161. weight: math.unit(197, "lb"),
  25162. name: "Back",
  25163. image: {
  25164. source: "./media/characters/jabaro/back.svg",
  25165. extra: 225 / 219,
  25166. bottom: 1.9 / 227
  25167. }
  25168. },
  25169. },
  25170. [
  25171. {
  25172. name: "Normal",
  25173. height: math.unit(5 + 10 / 12, "feet"),
  25174. default: true
  25175. },
  25176. ]
  25177. ))
  25178. characterMakers.push(() => makeCharacter(
  25179. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25180. {
  25181. front: {
  25182. height: math.unit(5 + 8 / 12, "feet"),
  25183. weight: math.unit(139, "lb"),
  25184. name: "Front",
  25185. image: {
  25186. source: "./media/characters/risa/front.svg",
  25187. extra: 270 / 260,
  25188. bottom: 11.2 / 282
  25189. }
  25190. },
  25191. back: {
  25192. height: math.unit(5 + 8 / 12, "feet"),
  25193. weight: math.unit(139, "lb"),
  25194. name: "Back",
  25195. image: {
  25196. source: "./media/characters/risa/back.svg",
  25197. extra: 264 / 255,
  25198. bottom: 4 / 268
  25199. }
  25200. },
  25201. },
  25202. [
  25203. {
  25204. name: "Normal",
  25205. height: math.unit(5 + 8 / 12, "feet"),
  25206. default: true
  25207. },
  25208. ]
  25209. ))
  25210. characterMakers.push(() => makeCharacter(
  25211. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25212. {
  25213. front: {
  25214. height: math.unit(2 + 11 / 12, "feet"),
  25215. weight: math.unit(30, "lb"),
  25216. name: "Front",
  25217. image: {
  25218. source: "./media/characters/weatley/front.svg",
  25219. bottom: 10.7 / 414,
  25220. extra: 403.5 / 362
  25221. }
  25222. },
  25223. back: {
  25224. height: math.unit(2 + 11 / 12, "feet"),
  25225. weight: math.unit(30, "lb"),
  25226. name: "Back",
  25227. image: {
  25228. source: "./media/characters/weatley/back.svg",
  25229. bottom: 10.7 / 414,
  25230. extra: 403.5 / 362
  25231. }
  25232. },
  25233. },
  25234. [
  25235. {
  25236. name: "Normal",
  25237. height: math.unit(2 + 11 / 12, "feet"),
  25238. default: true
  25239. },
  25240. ]
  25241. ))
  25242. characterMakers.push(() => makeCharacter(
  25243. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25244. {
  25245. front: {
  25246. height: math.unit(5 + 2 / 12, "feet"),
  25247. weight: math.unit(50, "kg"),
  25248. name: "Front",
  25249. image: {
  25250. source: "./media/characters/mercury-crescent/front.svg",
  25251. extra: 1088 / 1033,
  25252. bottom: 18.9 / 1109
  25253. }
  25254. },
  25255. },
  25256. [
  25257. {
  25258. name: "Normal",
  25259. height: math.unit(5 + 2 / 12, "feet"),
  25260. default: true
  25261. },
  25262. ]
  25263. ))
  25264. characterMakers.push(() => makeCharacter(
  25265. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25266. {
  25267. front: {
  25268. height: math.unit(2, "feet"),
  25269. weight: math.unit(15, "kg"),
  25270. name: "Front",
  25271. image: {
  25272. source: "./media/characters/diamond-jones/front.svg",
  25273. bottom: 16 / 568
  25274. }
  25275. },
  25276. },
  25277. [
  25278. {
  25279. name: "Normal",
  25280. height: math.unit(2, "feet"),
  25281. default: true
  25282. },
  25283. ]
  25284. ))
  25285. characterMakers.push(() => makeCharacter(
  25286. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25287. {
  25288. front: {
  25289. height: math.unit(3, "feet"),
  25290. weight: math.unit(30, "kg"),
  25291. name: "Front",
  25292. image: {
  25293. source: "./media/characters/sweet-bit/front.svg",
  25294. extra: 675 / 567,
  25295. bottom: 27.7 / 703
  25296. }
  25297. },
  25298. },
  25299. [
  25300. {
  25301. name: "Normal",
  25302. height: math.unit(3, "feet"),
  25303. default: true
  25304. },
  25305. ]
  25306. ))
  25307. characterMakers.push(() => makeCharacter(
  25308. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25309. {
  25310. side: {
  25311. height: math.unit(9.178, "feet"),
  25312. weight: math.unit(500, "lb"),
  25313. name: "Side",
  25314. image: {
  25315. source: "./media/characters/umbrazen/side.svg",
  25316. extra: 1730 / 1473,
  25317. bottom: 34.6 / 1765
  25318. }
  25319. },
  25320. },
  25321. [
  25322. {
  25323. name: "Normal",
  25324. height: math.unit(9.178, "feet"),
  25325. default: true
  25326. },
  25327. ]
  25328. ))
  25329. characterMakers.push(() => makeCharacter(
  25330. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25331. {
  25332. front: {
  25333. height: math.unit(10, "feet"),
  25334. weight: math.unit(750, "lb"),
  25335. name: "Front",
  25336. image: {
  25337. source: "./media/characters/arlist/front.svg",
  25338. extra: 961 / 778,
  25339. bottom: 6.2 / 986
  25340. }
  25341. },
  25342. },
  25343. [
  25344. {
  25345. name: "Normal",
  25346. height: math.unit(10, "feet"),
  25347. default: true
  25348. },
  25349. ]
  25350. ))
  25351. characterMakers.push(() => makeCharacter(
  25352. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25353. {
  25354. front: {
  25355. height: math.unit(5 + 1 / 12, "feet"),
  25356. weight: math.unit(110, "lb"),
  25357. name: "Front",
  25358. image: {
  25359. source: "./media/characters/aradel/front.svg",
  25360. extra: 324 / 303,
  25361. bottom: 3.6 / 329.4
  25362. }
  25363. },
  25364. },
  25365. [
  25366. {
  25367. name: "Normal",
  25368. height: math.unit(5 + 1 / 12, "feet"),
  25369. default: true
  25370. },
  25371. ]
  25372. ))
  25373. characterMakers.push(() => makeCharacter(
  25374. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25375. {
  25376. front: {
  25377. height: math.unit(3 + 8 / 12, "feet"),
  25378. weight: math.unit(50, "lb"),
  25379. name: "Front",
  25380. image: {
  25381. source: "./media/characters/serryn/front.svg",
  25382. extra: 1792 / 1656,
  25383. bottom: 43.5 / 1840
  25384. }
  25385. },
  25386. },
  25387. [
  25388. {
  25389. name: "Normal",
  25390. height: math.unit(3 + 8 / 12, "feet"),
  25391. default: true
  25392. },
  25393. ]
  25394. ))
  25395. characterMakers.push(() => makeCharacter(
  25396. { name: "Xavier Thyme" },
  25397. {
  25398. front: {
  25399. height: math.unit(7 + 10 / 12, "feet"),
  25400. weight: math.unit(255, "lb"),
  25401. name: "Front",
  25402. image: {
  25403. source: "./media/characters/xavier-thyme/front.svg",
  25404. extra: 3733 / 3642,
  25405. bottom: 131 / 3869
  25406. }
  25407. },
  25408. frontRaven: {
  25409. height: math.unit(7 + 10 / 12, "feet"),
  25410. weight: math.unit(255, "lb"),
  25411. name: "Front (Raven)",
  25412. image: {
  25413. source: "./media/characters/xavier-thyme/front-raven.svg",
  25414. extra: 4385 / 3642,
  25415. bottom: 131 / 4517
  25416. }
  25417. },
  25418. },
  25419. [
  25420. {
  25421. name: "Normal",
  25422. height: math.unit(7 + 10 / 12, "feet"),
  25423. default: true
  25424. },
  25425. ]
  25426. ))
  25427. characterMakers.push(() => makeCharacter(
  25428. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25429. {
  25430. front: {
  25431. height: math.unit(1.6, "m"),
  25432. weight: math.unit(50, "kg"),
  25433. name: "Front",
  25434. image: {
  25435. source: "./media/characters/kiki/front.svg",
  25436. extra: 4682 / 3610,
  25437. bottom: 115 / 4777
  25438. }
  25439. },
  25440. },
  25441. [
  25442. {
  25443. name: "Normal",
  25444. height: math.unit(1.6, "meters"),
  25445. default: true
  25446. },
  25447. ]
  25448. ))
  25449. characterMakers.push(() => makeCharacter(
  25450. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25451. {
  25452. front: {
  25453. height: math.unit(50, "m"),
  25454. weight: math.unit(500, "tonnes"),
  25455. name: "Front",
  25456. image: {
  25457. source: "./media/characters/ryoko/front.svg",
  25458. extra: 4632 / 3926,
  25459. bottom: 193 / 4823
  25460. }
  25461. },
  25462. },
  25463. [
  25464. {
  25465. name: "Normal",
  25466. height: math.unit(50, "meters"),
  25467. default: true
  25468. },
  25469. ]
  25470. ))
  25471. characterMakers.push(() => makeCharacter(
  25472. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25473. {
  25474. front: {
  25475. height: math.unit(30, "m"),
  25476. weight: math.unit(22, "tonnes"),
  25477. name: "Front",
  25478. image: {
  25479. source: "./media/characters/elio/front.svg",
  25480. extra: 4582 / 3720,
  25481. bottom: 236 / 4828
  25482. }
  25483. },
  25484. },
  25485. [
  25486. {
  25487. name: "Normal",
  25488. height: math.unit(30, "meters"),
  25489. default: true
  25490. },
  25491. ]
  25492. ))
  25493. characterMakers.push(() => makeCharacter(
  25494. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25495. {
  25496. front: {
  25497. height: math.unit(6 + 3 / 12, "feet"),
  25498. weight: math.unit(120, "lb"),
  25499. name: "Front",
  25500. image: {
  25501. source: "./media/characters/azura/front.svg",
  25502. extra: 1149 / 1135,
  25503. bottom: 45 / 1194
  25504. }
  25505. },
  25506. frontClothed: {
  25507. height: math.unit(6 + 3 / 12, "feet"),
  25508. weight: math.unit(120, "lb"),
  25509. name: "Front (Clothed)",
  25510. image: {
  25511. source: "./media/characters/azura/front-clothed.svg",
  25512. extra: 1149 / 1135,
  25513. bottom: 45 / 1194
  25514. }
  25515. },
  25516. },
  25517. [
  25518. {
  25519. name: "Normal",
  25520. height: math.unit(6 + 3 / 12, "feet"),
  25521. default: true
  25522. },
  25523. {
  25524. name: "Macro",
  25525. height: math.unit(20 + 6 / 12, "feet")
  25526. },
  25527. {
  25528. name: "Megamacro",
  25529. height: math.unit(12, "miles")
  25530. },
  25531. {
  25532. name: "Gigamacro",
  25533. height: math.unit(10000, "miles")
  25534. },
  25535. {
  25536. name: "Teramacro",
  25537. height: math.unit(900000, "miles")
  25538. },
  25539. ]
  25540. ))
  25541. characterMakers.push(() => makeCharacter(
  25542. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25543. {
  25544. front: {
  25545. height: math.unit(12, "feet"),
  25546. weight: math.unit(1, "ton"),
  25547. capacity: math.unit(660000, "gallons"),
  25548. name: "Front",
  25549. image: {
  25550. source: "./media/characters/zeus/front.svg",
  25551. extra: 5005 / 4717,
  25552. bottom: 363 / 5388
  25553. }
  25554. },
  25555. },
  25556. [
  25557. {
  25558. name: "Normal",
  25559. height: math.unit(12, "feet")
  25560. },
  25561. {
  25562. name: "Preferred Size",
  25563. height: math.unit(0.5, "miles"),
  25564. default: true
  25565. },
  25566. {
  25567. name: "Giga Horse",
  25568. height: math.unit(300, "miles")
  25569. },
  25570. {
  25571. name: "Riding Planets",
  25572. height: math.unit(30, "megameters")
  25573. },
  25574. {
  25575. name: "Cosmic Giant",
  25576. height: math.unit(3, "zettameters")
  25577. },
  25578. {
  25579. name: "Breeding God",
  25580. height: math.unit(9.92e22, "yottameters")
  25581. },
  25582. ]
  25583. ))
  25584. characterMakers.push(() => makeCharacter(
  25585. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25586. {
  25587. side: {
  25588. height: math.unit(9, "feet"),
  25589. weight: math.unit(1500, "kg"),
  25590. name: "Side",
  25591. image: {
  25592. source: "./media/characters/fang/side.svg",
  25593. extra: 924 / 866,
  25594. bottom: 47.5 / 972.3
  25595. }
  25596. },
  25597. },
  25598. [
  25599. {
  25600. name: "Normal",
  25601. height: math.unit(9, "feet"),
  25602. default: true
  25603. },
  25604. {
  25605. name: "Macro",
  25606. height: math.unit(75 + 6 / 12, "feet")
  25607. },
  25608. {
  25609. name: "Teramacro",
  25610. height: math.unit(50000, "miles")
  25611. },
  25612. ]
  25613. ))
  25614. characterMakers.push(() => makeCharacter(
  25615. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25616. {
  25617. front: {
  25618. height: math.unit(10, "feet"),
  25619. weight: math.unit(2, "tons"),
  25620. name: "Front",
  25621. image: {
  25622. source: "./media/characters/rekhit/front.svg",
  25623. extra: 2796 / 2590,
  25624. bottom: 225 / 3022
  25625. }
  25626. },
  25627. },
  25628. [
  25629. {
  25630. name: "Normal",
  25631. height: math.unit(10, "feet"),
  25632. default: true
  25633. },
  25634. {
  25635. name: "Macro",
  25636. height: math.unit(500, "feet")
  25637. },
  25638. ]
  25639. ))
  25640. characterMakers.push(() => makeCharacter(
  25641. { name: "Dahlia Verrick" },
  25642. {
  25643. front: {
  25644. height: math.unit(7 + 6.451 / 12, "feet"),
  25645. weight: math.unit(310, "lb"),
  25646. name: "Front",
  25647. image: {
  25648. source: "./media/characters/dahlia-verrick/front.svg",
  25649. extra: 1488 / 1365,
  25650. bottom: 6.2 / 1495
  25651. }
  25652. },
  25653. back: {
  25654. height: math.unit(7 + 6.451 / 12, "feet"),
  25655. weight: math.unit(310, "lb"),
  25656. name: "Back",
  25657. image: {
  25658. source: "./media/characters/dahlia-verrick/back.svg",
  25659. extra: 1472 / 1351,
  25660. bottom: 5.28 / 1477
  25661. }
  25662. },
  25663. frontBusiness: {
  25664. height: math.unit(7 + 6.451 / 12, "feet"),
  25665. weight: math.unit(200, "lb"),
  25666. name: "Front (Business)",
  25667. image: {
  25668. source: "./media/characters/dahlia-verrick/front-business.svg",
  25669. extra: 1478 / 1381,
  25670. bottom: 5.5 / 1484
  25671. }
  25672. },
  25673. frontCasual: {
  25674. height: math.unit(7 + 6.451 / 12, "feet"),
  25675. weight: math.unit(200, "lb"),
  25676. name: "Front (Casual)",
  25677. image: {
  25678. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25679. extra: 1478 / 1381,
  25680. bottom: 5.5 / 1484
  25681. }
  25682. },
  25683. },
  25684. [
  25685. {
  25686. name: "Travel-Sized",
  25687. height: math.unit(7.45, "inches")
  25688. },
  25689. {
  25690. name: "Normal",
  25691. height: math.unit(7 + 6.451 / 12, "feet"),
  25692. default: true
  25693. },
  25694. {
  25695. name: "Hitting the Town",
  25696. height: math.unit(37 + 8 / 12, "feet")
  25697. },
  25698. {
  25699. name: "Stomp in the Suburbs",
  25700. height: math.unit(964 + 9.728 / 12, "feet")
  25701. },
  25702. {
  25703. name: "Sit on the City",
  25704. height: math.unit(61747 + 10.592 / 12, "feet")
  25705. },
  25706. {
  25707. name: "Glomp the Globe",
  25708. height: math.unit(252919327 + 4.832 / 12, "feet")
  25709. },
  25710. ]
  25711. ))
  25712. characterMakers.push(() => makeCharacter(
  25713. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25714. {
  25715. front: {
  25716. height: math.unit(6 + 4 / 12, "feet"),
  25717. weight: math.unit(320, "lb"),
  25718. name: "Front",
  25719. image: {
  25720. source: "./media/characters/balina-mahigan/front.svg",
  25721. extra: 447 / 428,
  25722. bottom: 18 / 466
  25723. }
  25724. },
  25725. back: {
  25726. height: math.unit(6 + 4 / 12, "feet"),
  25727. weight: math.unit(320, "lb"),
  25728. name: "Back",
  25729. image: {
  25730. source: "./media/characters/balina-mahigan/back.svg",
  25731. extra: 445 / 428,
  25732. bottom: 4.07 / 448
  25733. }
  25734. },
  25735. arm: {
  25736. height: math.unit(1.88, "feet"),
  25737. name: "Arm",
  25738. image: {
  25739. source: "./media/characters/balina-mahigan/arm.svg"
  25740. }
  25741. },
  25742. backPort: {
  25743. height: math.unit(0.685, "feet"),
  25744. name: "Back Port",
  25745. image: {
  25746. source: "./media/characters/balina-mahigan/back-port.svg"
  25747. }
  25748. },
  25749. hoofpaw: {
  25750. height: math.unit(1.41, "feet"),
  25751. name: "Hoofpaw",
  25752. image: {
  25753. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25754. }
  25755. },
  25756. leftHandBack: {
  25757. height: math.unit(0.938, "feet"),
  25758. name: "Left Hand (Back)",
  25759. image: {
  25760. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25761. }
  25762. },
  25763. leftHandFront: {
  25764. height: math.unit(0.938, "feet"),
  25765. name: "Left Hand (Front)",
  25766. image: {
  25767. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25768. }
  25769. },
  25770. rightHandBack: {
  25771. height: math.unit(0.95, "feet"),
  25772. name: "Right Hand (Back)",
  25773. image: {
  25774. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25775. }
  25776. },
  25777. rightHandFront: {
  25778. height: math.unit(0.95, "feet"),
  25779. name: "Right Hand (Front)",
  25780. image: {
  25781. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25782. }
  25783. },
  25784. },
  25785. [
  25786. {
  25787. name: "Normal",
  25788. height: math.unit(6 + 4 / 12, "feet"),
  25789. default: true
  25790. },
  25791. ]
  25792. ))
  25793. characterMakers.push(() => makeCharacter(
  25794. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25795. {
  25796. front: {
  25797. height: math.unit(6, "feet"),
  25798. weight: math.unit(320, "lb"),
  25799. name: "Front",
  25800. image: {
  25801. source: "./media/characters/balina-mejeri/front.svg",
  25802. extra: 517 / 488,
  25803. bottom: 44.2 / 561
  25804. }
  25805. },
  25806. },
  25807. [
  25808. {
  25809. name: "Normal",
  25810. height: math.unit(6 + 4 / 12, "feet")
  25811. },
  25812. {
  25813. name: "Business",
  25814. height: math.unit(155, "feet"),
  25815. default: true
  25816. },
  25817. ]
  25818. ))
  25819. characterMakers.push(() => makeCharacter(
  25820. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25821. {
  25822. kneeling: {
  25823. height: math.unit(6 + 4 / 12, "feet"),
  25824. weight: math.unit(300 * 20, "lb"),
  25825. name: "Kneeling",
  25826. image: {
  25827. source: "./media/characters/balbarian/kneeling.svg",
  25828. extra: 922 / 862,
  25829. bottom: 42.4 / 965
  25830. }
  25831. },
  25832. },
  25833. [
  25834. {
  25835. name: "Normal",
  25836. height: math.unit(6 + 4 / 12, "feet")
  25837. },
  25838. {
  25839. name: "Treasured",
  25840. height: math.unit(18 + 9 / 12, "feet"),
  25841. default: true
  25842. },
  25843. {
  25844. name: "Macro",
  25845. height: math.unit(900, "feet")
  25846. },
  25847. ]
  25848. ))
  25849. characterMakers.push(() => makeCharacter(
  25850. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25851. {
  25852. front: {
  25853. height: math.unit(6 + 4 / 12, "feet"),
  25854. weight: math.unit(325, "lb"),
  25855. name: "Front",
  25856. image: {
  25857. source: "./media/characters/balina-amarini/front.svg",
  25858. extra: 415 / 403,
  25859. bottom: 19 / 433.4
  25860. }
  25861. },
  25862. back: {
  25863. height: math.unit(6 + 4 / 12, "feet"),
  25864. weight: math.unit(325, "lb"),
  25865. name: "Back",
  25866. image: {
  25867. source: "./media/characters/balina-amarini/back.svg",
  25868. extra: 415 / 403,
  25869. bottom: 13.5 / 432
  25870. }
  25871. },
  25872. overdrive: {
  25873. height: math.unit(6 + 4 / 12, "feet"),
  25874. weight: math.unit(400, "lb"),
  25875. name: "Overdrive",
  25876. image: {
  25877. source: "./media/characters/balina-amarini/overdrive.svg",
  25878. extra: 269 / 259,
  25879. bottom: 12 / 282
  25880. }
  25881. },
  25882. },
  25883. [
  25884. {
  25885. name: "Boom",
  25886. height: math.unit(9 + 10 / 12, "feet"),
  25887. default: true
  25888. },
  25889. {
  25890. name: "Macro",
  25891. height: math.unit(280, "feet")
  25892. },
  25893. ]
  25894. ))
  25895. characterMakers.push(() => makeCharacter(
  25896. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25897. {
  25898. goddess: {
  25899. height: math.unit(600, "feet"),
  25900. weight: math.unit(2000000, "tons"),
  25901. name: "Goddess",
  25902. image: {
  25903. source: "./media/characters/lady-kubwa/goddess.svg",
  25904. extra: 1240.5 / 1223,
  25905. bottom: 22 / 1263
  25906. }
  25907. },
  25908. goddesser: {
  25909. height: math.unit(900, "feet"),
  25910. weight: math.unit(20000000, "lb"),
  25911. name: "Goddess-er",
  25912. image: {
  25913. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25914. extra: 899 / 888,
  25915. bottom: 12.6 / 912
  25916. }
  25917. },
  25918. },
  25919. [
  25920. {
  25921. name: "Macro",
  25922. height: math.unit(600, "feet"),
  25923. default: true
  25924. },
  25925. {
  25926. name: "Megamacro",
  25927. height: math.unit(250, "miles")
  25928. },
  25929. ]
  25930. ))
  25931. characterMakers.push(() => makeCharacter(
  25932. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25933. {
  25934. front: {
  25935. height: math.unit(7 + 7 / 12, "feet"),
  25936. weight: math.unit(250, "lb"),
  25937. name: "Front",
  25938. image: {
  25939. source: "./media/characters/tala-grovehorn/front.svg",
  25940. extra: 2636 / 2525,
  25941. bottom: 147 / 2781
  25942. }
  25943. },
  25944. back: {
  25945. height: math.unit(7 + 7 / 12, "feet"),
  25946. weight: math.unit(250, "lb"),
  25947. name: "Back",
  25948. image: {
  25949. source: "./media/characters/tala-grovehorn/back.svg",
  25950. extra: 2635 / 2539,
  25951. bottom: 100 / 2732.8
  25952. }
  25953. },
  25954. mouth: {
  25955. height: math.unit(1.15, "feet"),
  25956. name: "Mouth",
  25957. image: {
  25958. source: "./media/characters/tala-grovehorn/mouth.svg"
  25959. }
  25960. },
  25961. dick: {
  25962. height: math.unit(2.36, "feet"),
  25963. name: "Dick",
  25964. image: {
  25965. source: "./media/characters/tala-grovehorn/dick.svg"
  25966. }
  25967. },
  25968. slit: {
  25969. height: math.unit(0.61, "feet"),
  25970. name: "Slit",
  25971. image: {
  25972. source: "./media/characters/tala-grovehorn/slit.svg"
  25973. }
  25974. },
  25975. },
  25976. [
  25977. ]
  25978. ))
  25979. characterMakers.push(() => makeCharacter(
  25980. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25981. {
  25982. front: {
  25983. height: math.unit(7 + 7 / 12, "feet"),
  25984. weight: math.unit(225, "lb"),
  25985. name: "Front",
  25986. image: {
  25987. source: "./media/characters/epona/front.svg",
  25988. extra: 2445 / 2290,
  25989. bottom: 251 / 2696
  25990. }
  25991. },
  25992. back: {
  25993. height: math.unit(7 + 7 / 12, "feet"),
  25994. weight: math.unit(225, "lb"),
  25995. name: "Back",
  25996. image: {
  25997. source: "./media/characters/epona/back.svg",
  25998. extra: 2546 / 2408,
  25999. bottom: 44 / 2589
  26000. }
  26001. },
  26002. genitals: {
  26003. height: math.unit(1.5, "feet"),
  26004. name: "Genitals",
  26005. image: {
  26006. source: "./media/characters/epona/genitals.svg"
  26007. }
  26008. },
  26009. },
  26010. [
  26011. {
  26012. name: "Normal",
  26013. height: math.unit(7 + 7 / 12, "feet"),
  26014. default: true
  26015. },
  26016. ]
  26017. ))
  26018. characterMakers.push(() => makeCharacter(
  26019. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26020. {
  26021. front: {
  26022. height: math.unit(7, "feet"),
  26023. weight: math.unit(518, "lb"),
  26024. name: "Front",
  26025. image: {
  26026. source: "./media/characters/avia-bloodbourn/front.svg",
  26027. extra: 1466 / 1350,
  26028. bottom: 65 / 1527
  26029. }
  26030. },
  26031. },
  26032. [
  26033. ]
  26034. ))
  26035. characterMakers.push(() => makeCharacter(
  26036. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26037. {
  26038. front: {
  26039. height: math.unit(9.35, "feet"),
  26040. weight: math.unit(600, "lb"),
  26041. name: "Front",
  26042. image: {
  26043. source: "./media/characters/amera/front.svg",
  26044. extra: 891 / 818,
  26045. bottom: 30 / 922.7
  26046. }
  26047. },
  26048. back: {
  26049. height: math.unit(9.35, "feet"),
  26050. weight: math.unit(600, "lb"),
  26051. name: "Back",
  26052. image: {
  26053. source: "./media/characters/amera/back.svg",
  26054. extra: 876 / 824,
  26055. bottom: 6.8 / 884
  26056. }
  26057. },
  26058. dick: {
  26059. height: math.unit(2.14, "feet"),
  26060. name: "Dick",
  26061. image: {
  26062. source: "./media/characters/amera/dick.svg"
  26063. }
  26064. },
  26065. },
  26066. [
  26067. {
  26068. name: "Normal",
  26069. height: math.unit(9.35, "feet"),
  26070. default: true
  26071. },
  26072. ]
  26073. ))
  26074. characterMakers.push(() => makeCharacter(
  26075. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26076. {
  26077. kneeling: {
  26078. height: math.unit(3 + 4 / 12, "feet"),
  26079. weight: math.unit(90, "lb"),
  26080. name: "Kneeling",
  26081. image: {
  26082. source: "./media/characters/rosewen/kneeling.svg",
  26083. extra: 1835 / 1571,
  26084. bottom: 27.7 / 1862
  26085. }
  26086. },
  26087. },
  26088. [
  26089. {
  26090. name: "Normal",
  26091. height: math.unit(3 + 4 / 12, "feet"),
  26092. default: true
  26093. },
  26094. ]
  26095. ))
  26096. characterMakers.push(() => makeCharacter(
  26097. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26098. {
  26099. front: {
  26100. height: math.unit(5 + 10 / 12, "feet"),
  26101. weight: math.unit(200, "lb"),
  26102. name: "Front",
  26103. image: {
  26104. source: "./media/characters/sabah/front.svg",
  26105. extra: 849 / 763,
  26106. bottom: 33.9 / 881
  26107. }
  26108. },
  26109. },
  26110. [
  26111. {
  26112. name: "Normal",
  26113. height: math.unit(5 + 10 / 12, "feet"),
  26114. default: true
  26115. },
  26116. ]
  26117. ))
  26118. characterMakers.push(() => makeCharacter(
  26119. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26120. {
  26121. front: {
  26122. height: math.unit(3 + 5 / 12, "feet"),
  26123. weight: math.unit(40, "kg"),
  26124. name: "Front",
  26125. image: {
  26126. source: "./media/characters/purple-flame/front.svg",
  26127. extra: 1577 / 1412,
  26128. bottom: 97 / 1694
  26129. }
  26130. },
  26131. frontDressed: {
  26132. height: math.unit(3 + 5 / 12, "feet"),
  26133. weight: math.unit(40, "kg"),
  26134. name: "Front (Dressed)",
  26135. image: {
  26136. source: "./media/characters/purple-flame/front-dressed.svg",
  26137. extra: 1577 / 1412,
  26138. bottom: 97 / 1694
  26139. }
  26140. },
  26141. headphones: {
  26142. height: math.unit(0.85, "feet"),
  26143. name: "Headphones",
  26144. image: {
  26145. source: "./media/characters/purple-flame/headphones.svg"
  26146. }
  26147. },
  26148. },
  26149. [
  26150. {
  26151. name: "Really Small",
  26152. height: math.unit(5, "cm")
  26153. },
  26154. {
  26155. name: "Micro",
  26156. height: math.unit(1 + 5 / 12, "feet")
  26157. },
  26158. {
  26159. name: "Normal",
  26160. height: math.unit(3 + 5 / 12, "feet"),
  26161. default: true
  26162. },
  26163. {
  26164. name: "Minimacro",
  26165. height: math.unit(125, "feet")
  26166. },
  26167. {
  26168. name: "Macro",
  26169. height: math.unit(0.5, "miles")
  26170. },
  26171. {
  26172. name: "Megamacro",
  26173. height: math.unit(50, "miles")
  26174. },
  26175. {
  26176. name: "Gigantic",
  26177. height: math.unit(750, "miles")
  26178. },
  26179. {
  26180. name: "Planetary",
  26181. height: math.unit(15000, "miles")
  26182. },
  26183. ]
  26184. ))
  26185. characterMakers.push(() => makeCharacter(
  26186. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26187. {
  26188. front: {
  26189. height: math.unit(14, "feet"),
  26190. weight: math.unit(959, "lb"),
  26191. name: "Front",
  26192. image: {
  26193. source: "./media/characters/arsenal/front.svg",
  26194. extra: 2357 / 2157,
  26195. bottom: 93 / 2458
  26196. }
  26197. },
  26198. },
  26199. [
  26200. {
  26201. name: "Normal",
  26202. height: math.unit(14, "feet"),
  26203. default: true
  26204. },
  26205. ]
  26206. ))
  26207. characterMakers.push(() => makeCharacter(
  26208. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26209. {
  26210. front: {
  26211. height: math.unit(6, "feet"),
  26212. weight: math.unit(150, "lb"),
  26213. name: "Front",
  26214. image: {
  26215. source: "./media/characters/adira/front.svg",
  26216. extra: 1078 / 1029,
  26217. bottom: 87 / 1166
  26218. }
  26219. },
  26220. },
  26221. [
  26222. {
  26223. name: "Micro",
  26224. height: math.unit(4, "inches"),
  26225. default: true
  26226. },
  26227. {
  26228. name: "Macro",
  26229. height: math.unit(50, "feet")
  26230. },
  26231. ]
  26232. ))
  26233. characterMakers.push(() => makeCharacter(
  26234. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26235. {
  26236. front: {
  26237. height: math.unit(16, "feet"),
  26238. weight: math.unit(1000, "lb"),
  26239. name: "Front",
  26240. image: {
  26241. source: "./media/characters/grim/front.svg",
  26242. extra: 622 / 614,
  26243. bottom: 18.1 / 642
  26244. }
  26245. },
  26246. back: {
  26247. height: math.unit(16, "feet"),
  26248. weight: math.unit(1000, "lb"),
  26249. name: "Back",
  26250. image: {
  26251. source: "./media/characters/grim/back.svg",
  26252. extra: 610.6 / 602,
  26253. bottom: 40.8 / 652
  26254. }
  26255. },
  26256. hunched: {
  26257. height: math.unit(9.75, "feet"),
  26258. weight: math.unit(1000, "lb"),
  26259. name: "Hunched",
  26260. image: {
  26261. source: "./media/characters/grim/hunched.svg",
  26262. extra: 304 / 297,
  26263. bottom: 35.4 / 394
  26264. }
  26265. },
  26266. },
  26267. [
  26268. {
  26269. name: "Normal",
  26270. height: math.unit(16, "feet"),
  26271. default: true
  26272. },
  26273. ]
  26274. ))
  26275. characterMakers.push(() => makeCharacter(
  26276. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26277. {
  26278. front: {
  26279. height: math.unit(2.3, "meters"),
  26280. weight: math.unit(300, "lb"),
  26281. name: "Front",
  26282. image: {
  26283. source: "./media/characters/sinja/front-sfw.svg",
  26284. extra: 1393 / 1294,
  26285. bottom: 70 / 1463
  26286. }
  26287. },
  26288. frontNsfw: {
  26289. height: math.unit(2.3, "meters"),
  26290. weight: math.unit(300, "lb"),
  26291. name: "Front (NSFW)",
  26292. image: {
  26293. source: "./media/characters/sinja/front-nsfw.svg",
  26294. extra: 1393 / 1294,
  26295. bottom: 70 / 1463
  26296. }
  26297. },
  26298. back: {
  26299. height: math.unit(2.3, "meters"),
  26300. weight: math.unit(300, "lb"),
  26301. name: "Back",
  26302. image: {
  26303. source: "./media/characters/sinja/back.svg",
  26304. extra: 1393 / 1294,
  26305. bottom: 70 / 1463
  26306. }
  26307. },
  26308. head: {
  26309. height: math.unit(1.771, "feet"),
  26310. name: "Head",
  26311. image: {
  26312. source: "./media/characters/sinja/head.svg"
  26313. }
  26314. },
  26315. slit: {
  26316. height: math.unit(0.8, "feet"),
  26317. name: "Slit",
  26318. image: {
  26319. source: "./media/characters/sinja/slit.svg"
  26320. }
  26321. },
  26322. },
  26323. [
  26324. {
  26325. name: "Normal",
  26326. height: math.unit(2.3, "meters")
  26327. },
  26328. {
  26329. name: "Macro",
  26330. height: math.unit(91, "meters"),
  26331. default: true
  26332. },
  26333. {
  26334. name: "Megamacro",
  26335. height: math.unit(91440, "meters")
  26336. },
  26337. {
  26338. name: "Gigamacro",
  26339. height: math.unit(60960000, "meters")
  26340. },
  26341. {
  26342. name: "Teramacro",
  26343. height: math.unit(9144000000, "meters")
  26344. },
  26345. ]
  26346. ))
  26347. characterMakers.push(() => makeCharacter(
  26348. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26349. {
  26350. front: {
  26351. height: math.unit(1.7, "meters"),
  26352. weight: math.unit(130, "lb"),
  26353. name: "Front",
  26354. image: {
  26355. source: "./media/characters/kyu/front.svg",
  26356. extra: 415 / 395,
  26357. bottom: 5 / 420
  26358. }
  26359. },
  26360. head: {
  26361. height: math.unit(1.75, "feet"),
  26362. name: "Head",
  26363. image: {
  26364. source: "./media/characters/kyu/head.svg"
  26365. }
  26366. },
  26367. foot: {
  26368. height: math.unit(0.81, "feet"),
  26369. name: "Foot",
  26370. image: {
  26371. source: "./media/characters/kyu/foot.svg"
  26372. }
  26373. },
  26374. },
  26375. [
  26376. {
  26377. name: "Normal",
  26378. height: math.unit(1.7, "meters")
  26379. },
  26380. {
  26381. name: "Macro",
  26382. height: math.unit(131, "feet"),
  26383. default: true
  26384. },
  26385. {
  26386. name: "Megamacro",
  26387. height: math.unit(91440, "meters")
  26388. },
  26389. {
  26390. name: "Gigamacro",
  26391. height: math.unit(60960000, "meters")
  26392. },
  26393. {
  26394. name: "Teramacro",
  26395. height: math.unit(9144000000, "meters")
  26396. },
  26397. ]
  26398. ))
  26399. characterMakers.push(() => makeCharacter(
  26400. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26401. {
  26402. front: {
  26403. height: math.unit(7 + 1 / 12, "feet"),
  26404. weight: math.unit(250, "lb"),
  26405. name: "Front",
  26406. image: {
  26407. source: "./media/characters/joey/front.svg",
  26408. extra: 1791 / 1537,
  26409. bottom: 28 / 1816
  26410. }
  26411. },
  26412. },
  26413. [
  26414. {
  26415. name: "Micro",
  26416. height: math.unit(3, "inches")
  26417. },
  26418. {
  26419. name: "Normal",
  26420. height: math.unit(7 + 1 / 12, "feet"),
  26421. default: true
  26422. },
  26423. ]
  26424. ))
  26425. characterMakers.push(() => makeCharacter(
  26426. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26427. {
  26428. front: {
  26429. height: math.unit(165, "cm"),
  26430. weight: math.unit(140, "lb"),
  26431. name: "Front",
  26432. image: {
  26433. source: "./media/characters/sam-evans/front.svg",
  26434. extra: 3417 / 3230,
  26435. bottom: 41.3 / 3417
  26436. }
  26437. },
  26438. frontSixTails: {
  26439. height: math.unit(165, "cm"),
  26440. weight: math.unit(140, "lb"),
  26441. name: "Front-six-tails",
  26442. image: {
  26443. source: "./media/characters/sam-evans/front-six-tails.svg",
  26444. extra: 3417 / 3230,
  26445. bottom: 41.3 / 3417
  26446. }
  26447. },
  26448. back: {
  26449. height: math.unit(165, "cm"),
  26450. weight: math.unit(140, "lb"),
  26451. name: "Back",
  26452. image: {
  26453. source: "./media/characters/sam-evans/back.svg",
  26454. extra: 3227 / 3032,
  26455. bottom: 6.8 / 3234
  26456. }
  26457. },
  26458. face: {
  26459. height: math.unit(0.68, "feet"),
  26460. name: "Face",
  26461. image: {
  26462. source: "./media/characters/sam-evans/face.svg"
  26463. }
  26464. },
  26465. },
  26466. [
  26467. {
  26468. name: "Normal",
  26469. height: math.unit(165, "cm"),
  26470. default: true
  26471. },
  26472. {
  26473. name: "Macro",
  26474. height: math.unit(100, "meters")
  26475. },
  26476. {
  26477. name: "Macro+",
  26478. height: math.unit(800, "meters")
  26479. },
  26480. {
  26481. name: "Macro++",
  26482. height: math.unit(3, "km")
  26483. },
  26484. {
  26485. name: "Macro+++",
  26486. height: math.unit(30, "km")
  26487. },
  26488. ]
  26489. ))
  26490. characterMakers.push(() => makeCharacter(
  26491. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26492. {
  26493. front: {
  26494. height: math.unit(10, "feet"),
  26495. weight: math.unit(750, "lb"),
  26496. name: "Front",
  26497. image: {
  26498. source: "./media/characters/juliet-a/front.svg",
  26499. extra: 1766 / 1720,
  26500. bottom: 43 / 1809
  26501. }
  26502. },
  26503. back: {
  26504. height: math.unit(10, "feet"),
  26505. weight: math.unit(750, "lb"),
  26506. name: "Back",
  26507. image: {
  26508. source: "./media/characters/juliet-a/back.svg",
  26509. extra: 1781 / 1734,
  26510. bottom: 35 / 1810,
  26511. }
  26512. },
  26513. },
  26514. [
  26515. {
  26516. name: "Normal",
  26517. height: math.unit(10, "feet"),
  26518. default: true
  26519. },
  26520. {
  26521. name: "Dragon Form",
  26522. height: math.unit(250, "feet")
  26523. },
  26524. {
  26525. name: "Macro",
  26526. height: math.unit(1000, "feet")
  26527. },
  26528. {
  26529. name: "Megamacro",
  26530. height: math.unit(10000, "feet")
  26531. }
  26532. ]
  26533. ))
  26534. characterMakers.push(() => makeCharacter(
  26535. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26536. {
  26537. regular: {
  26538. height: math.unit(7 + 3 / 12, "feet"),
  26539. weight: math.unit(260, "lb"),
  26540. name: "Regular",
  26541. image: {
  26542. source: "./media/characters/wild/regular.svg",
  26543. extra: 97.45 / 92,
  26544. bottom: 6.8 / 104.3
  26545. }
  26546. },
  26547. biggums: {
  26548. height: math.unit(8 + 6 / 12, "feet"),
  26549. weight: math.unit(425, "lb"),
  26550. name: "Biggums",
  26551. image: {
  26552. source: "./media/characters/wild/biggums.svg",
  26553. extra: 97.45 / 92,
  26554. bottom: 7.5 / 132.34
  26555. }
  26556. },
  26557. mawRegular: {
  26558. height: math.unit(1.24, "feet"),
  26559. name: "Maw (Regular)",
  26560. image: {
  26561. source: "./media/characters/wild/maw.svg"
  26562. }
  26563. },
  26564. mawBiggums: {
  26565. height: math.unit(1.47, "feet"),
  26566. name: "Maw (Biggums)",
  26567. image: {
  26568. source: "./media/characters/wild/maw.svg"
  26569. }
  26570. },
  26571. },
  26572. [
  26573. {
  26574. name: "Normal",
  26575. height: math.unit(7 + 3 / 12, "feet"),
  26576. default: true
  26577. },
  26578. ]
  26579. ))
  26580. characterMakers.push(() => makeCharacter(
  26581. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26582. {
  26583. front: {
  26584. height: math.unit(2.5, "meters"),
  26585. weight: math.unit(200, "kg"),
  26586. name: "Front",
  26587. image: {
  26588. source: "./media/characters/vidar/front.svg",
  26589. extra: 2994 / 2795,
  26590. bottom: 56 / 3061
  26591. }
  26592. },
  26593. back: {
  26594. height: math.unit(2.5, "meters"),
  26595. weight: math.unit(200, "kg"),
  26596. name: "Back",
  26597. image: {
  26598. source: "./media/characters/vidar/back.svg",
  26599. extra: 3131 / 2928,
  26600. bottom: 13.5 / 3141.5
  26601. }
  26602. },
  26603. feral: {
  26604. height: math.unit(2.5, "meters"),
  26605. weight: math.unit(2000, "kg"),
  26606. name: "Feral",
  26607. image: {
  26608. source: "./media/characters/vidar/feral.svg",
  26609. extra: 2790 / 1765,
  26610. bottom: 6 / 2796
  26611. }
  26612. },
  26613. },
  26614. [
  26615. {
  26616. name: "Normal",
  26617. height: math.unit(2.5, "meters"),
  26618. default: true
  26619. },
  26620. {
  26621. name: "Macro",
  26622. height: math.unit(100, "meters")
  26623. },
  26624. ]
  26625. ))
  26626. characterMakers.push(() => makeCharacter(
  26627. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26628. {
  26629. front: {
  26630. height: math.unit(5 + 9 / 12, "feet"),
  26631. weight: math.unit(120, "lb"),
  26632. name: "Front",
  26633. image: {
  26634. source: "./media/characters/ash/front.svg",
  26635. extra: 2189 / 1961,
  26636. bottom: 5.2 / 2194
  26637. }
  26638. },
  26639. },
  26640. [
  26641. {
  26642. name: "Normal",
  26643. height: math.unit(5 + 9 / 12, "feet"),
  26644. default: true
  26645. },
  26646. ]
  26647. ))
  26648. characterMakers.push(() => makeCharacter(
  26649. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26650. {
  26651. front: {
  26652. height: math.unit(9, "feet"),
  26653. weight: math.unit(10000, "lb"),
  26654. name: "Front",
  26655. image: {
  26656. source: "./media/characters/gygabite/front.svg",
  26657. bottom: 31.7 / 537.8,
  26658. extra: 505 / 370
  26659. }
  26660. },
  26661. },
  26662. [
  26663. {
  26664. name: "Normal",
  26665. height: math.unit(9, "feet"),
  26666. default: true
  26667. },
  26668. ]
  26669. ))
  26670. characterMakers.push(() => makeCharacter(
  26671. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26672. {
  26673. front: {
  26674. height: math.unit(12, "feet"),
  26675. weight: math.unit(35000, "lb"),
  26676. name: "Front",
  26677. image: {
  26678. source: "./media/characters/p0tat0/front.svg",
  26679. extra: 1065 / 921,
  26680. bottom: 55.7 / 1121.25
  26681. }
  26682. },
  26683. },
  26684. [
  26685. {
  26686. name: "Normal",
  26687. height: math.unit(12, "feet"),
  26688. default: true
  26689. },
  26690. ]
  26691. ))
  26692. characterMakers.push(() => makeCharacter(
  26693. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26694. {
  26695. side: {
  26696. height: math.unit(6.5, "feet"),
  26697. weight: math.unit(800, "lb"),
  26698. name: "Side",
  26699. image: {
  26700. source: "./media/characters/dusk/side.svg",
  26701. extra: 615 / 373,
  26702. bottom: 53 / 664
  26703. }
  26704. },
  26705. sitting: {
  26706. height: math.unit(7, "feet"),
  26707. weight: math.unit(800, "lb"),
  26708. name: "Sitting",
  26709. image: {
  26710. source: "./media/characters/dusk/sitting.svg",
  26711. extra: 753 / 425,
  26712. bottom: 33 / 774
  26713. }
  26714. },
  26715. head: {
  26716. height: math.unit(6.1, "feet"),
  26717. name: "Head",
  26718. image: {
  26719. source: "./media/characters/dusk/head.svg"
  26720. }
  26721. },
  26722. },
  26723. [
  26724. {
  26725. name: "Normal",
  26726. height: math.unit(7, "feet"),
  26727. default: true
  26728. },
  26729. ]
  26730. ))
  26731. characterMakers.push(() => makeCharacter(
  26732. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26733. {
  26734. front: {
  26735. height: math.unit(15, "feet"),
  26736. weight: math.unit(7000, "lb"),
  26737. name: "Front",
  26738. image: {
  26739. source: "./media/characters/jay-direwolf/front.svg",
  26740. extra: 1810 / 1732,
  26741. bottom: 66 / 1892
  26742. }
  26743. },
  26744. },
  26745. [
  26746. {
  26747. name: "Normal",
  26748. height: math.unit(15, "feet"),
  26749. default: true
  26750. },
  26751. ]
  26752. ))
  26753. characterMakers.push(() => makeCharacter(
  26754. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26755. {
  26756. front: {
  26757. height: math.unit(4 + 9 / 12, "feet"),
  26758. weight: math.unit(130, "lb"),
  26759. name: "Front",
  26760. image: {
  26761. source: "./media/characters/anchovie/front.svg",
  26762. extra: 382 / 350,
  26763. bottom: 25 / 409
  26764. }
  26765. },
  26766. back: {
  26767. height: math.unit(4 + 9 / 12, "feet"),
  26768. weight: math.unit(130, "lb"),
  26769. name: "Back",
  26770. image: {
  26771. source: "./media/characters/anchovie/back.svg",
  26772. extra: 385 / 352,
  26773. bottom: 16.6 / 402
  26774. }
  26775. },
  26776. frontDressed: {
  26777. height: math.unit(4 + 9 / 12, "feet"),
  26778. weight: math.unit(130, "lb"),
  26779. name: "Front (Dressed)",
  26780. image: {
  26781. source: "./media/characters/anchovie/front-dressed.svg",
  26782. extra: 382 / 350,
  26783. bottom: 25 / 409
  26784. }
  26785. },
  26786. backDressed: {
  26787. height: math.unit(4 + 9 / 12, "feet"),
  26788. weight: math.unit(130, "lb"),
  26789. name: "Back (Dressed)",
  26790. image: {
  26791. source: "./media/characters/anchovie/back-dressed.svg",
  26792. extra: 385 / 352,
  26793. bottom: 16.6 / 402
  26794. }
  26795. },
  26796. },
  26797. [
  26798. {
  26799. name: "Micro",
  26800. height: math.unit(6.4, "inches")
  26801. },
  26802. {
  26803. name: "Normal",
  26804. height: math.unit(4 + 9 / 12, "feet"),
  26805. default: true
  26806. },
  26807. ]
  26808. ))
  26809. characterMakers.push(() => makeCharacter(
  26810. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26811. {
  26812. front: {
  26813. height: math.unit(2, "meters"),
  26814. weight: math.unit(180, "lb"),
  26815. name: "Front",
  26816. image: {
  26817. source: "./media/characters/acidrenamon/front.svg",
  26818. extra: 987 / 890,
  26819. bottom: 22.8 / 1009
  26820. }
  26821. },
  26822. back: {
  26823. height: math.unit(2, "meters"),
  26824. weight: math.unit(180, "lb"),
  26825. name: "Back",
  26826. image: {
  26827. source: "./media/characters/acidrenamon/back.svg",
  26828. extra: 983 / 891,
  26829. bottom: 8.4 / 992
  26830. }
  26831. },
  26832. head: {
  26833. height: math.unit(1.92, "feet"),
  26834. name: "Head",
  26835. image: {
  26836. source: "./media/characters/acidrenamon/head.svg"
  26837. }
  26838. },
  26839. rump: {
  26840. height: math.unit(1.72, "feet"),
  26841. name: "Rump",
  26842. image: {
  26843. source: "./media/characters/acidrenamon/rump.svg"
  26844. }
  26845. },
  26846. tail: {
  26847. height: math.unit(4.2, "feet"),
  26848. name: "Tail",
  26849. image: {
  26850. source: "./media/characters/acidrenamon/tail.svg"
  26851. }
  26852. },
  26853. },
  26854. [
  26855. {
  26856. name: "Normal",
  26857. height: math.unit(2, "meters"),
  26858. default: true
  26859. },
  26860. {
  26861. name: "Minimacro",
  26862. height: math.unit(7, "meters")
  26863. },
  26864. {
  26865. name: "Macro",
  26866. height: math.unit(200, "meters")
  26867. },
  26868. {
  26869. name: "Gigamacro",
  26870. height: math.unit(0.2, "earths")
  26871. },
  26872. ]
  26873. ))
  26874. characterMakers.push(() => makeCharacter(
  26875. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26876. {
  26877. front: {
  26878. height: math.unit(6, "feet"),
  26879. weight: math.unit(150, "lb"),
  26880. name: "Front",
  26881. image: {
  26882. source: "./media/characters/kenzie-lee/front.svg",
  26883. extra: 1525 / 1465,
  26884. bottom: 45 / 1570
  26885. }
  26886. },
  26887. side: {
  26888. height: math.unit(6, "feet"),
  26889. weight: math.unit(150, "lb"),
  26890. name: "Side",
  26891. image: {
  26892. source: "./media/characters/kenzie-lee/side.svg",
  26893. extra: 5505 / 5383,
  26894. bottom: 60 / 5573
  26895. }
  26896. },
  26897. paw: {
  26898. height: math.unit(0.57, "feet"),
  26899. name: "Paw",
  26900. image: {
  26901. source: "./media/characters/kenzie-lee/paw.svg"
  26902. }
  26903. },
  26904. },
  26905. [
  26906. {
  26907. name: "Normal",
  26908. height: math.unit(152, "feet"),
  26909. default: true
  26910. },
  26911. {
  26912. name: "Megamacro",
  26913. height: math.unit(7, "miles")
  26914. },
  26915. {
  26916. name: "Gigamacro",
  26917. height: math.unit(8000, "miles")
  26918. },
  26919. ]
  26920. ))
  26921. characterMakers.push(() => makeCharacter(
  26922. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26923. {
  26924. side: {
  26925. height: math.unit(6, "feet"),
  26926. weight: math.unit(150, "lb"),
  26927. name: "Side",
  26928. image: {
  26929. source: "./media/characters/withers/side.svg",
  26930. extra: 1830 / 1728,
  26931. bottom: 96 / 1927
  26932. }
  26933. },
  26934. front: {
  26935. height: math.unit(6, "feet"),
  26936. weight: math.unit(150, "lb"),
  26937. name: "Front",
  26938. image: {
  26939. source: "./media/characters/withers/front.svg",
  26940. extra: 1514 / 1438,
  26941. bottom: 118 / 1632
  26942. }
  26943. },
  26944. },
  26945. [
  26946. {
  26947. name: "Macro",
  26948. height: math.unit(168, "feet"),
  26949. default: true
  26950. },
  26951. {
  26952. name: "Megamacro",
  26953. height: math.unit(15, "miles")
  26954. }
  26955. ]
  26956. ))
  26957. characterMakers.push(() => makeCharacter(
  26958. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26959. {
  26960. front: {
  26961. height: math.unit(6 + 7 / 12, "feet"),
  26962. weight: math.unit(250, "lb"),
  26963. name: "Front",
  26964. image: {
  26965. source: "./media/characters/nemoskii/front.svg",
  26966. extra: 2270 / 1734,
  26967. bottom: 86 / 2354
  26968. }
  26969. },
  26970. back: {
  26971. height: math.unit(6 + 7 / 12, "feet"),
  26972. weight: math.unit(250, "lb"),
  26973. name: "Back",
  26974. image: {
  26975. source: "./media/characters/nemoskii/back.svg",
  26976. extra: 1845 / 1788,
  26977. bottom: 10.5 / 1852
  26978. }
  26979. },
  26980. head: {
  26981. height: math.unit(1.31, "feet"),
  26982. name: "Head",
  26983. image: {
  26984. source: "./media/characters/nemoskii/head.svg"
  26985. }
  26986. },
  26987. },
  26988. [
  26989. {
  26990. name: "Micro",
  26991. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26992. },
  26993. {
  26994. name: "Normal",
  26995. height: math.unit(6 + 7 / 12, "feet"),
  26996. default: true
  26997. },
  26998. {
  26999. name: "Macro",
  27000. height: math.unit((6 + 7 / 12) * 150, "feet")
  27001. },
  27002. {
  27003. name: "Macro+",
  27004. height: math.unit((6 + 7 / 12) * 500, "feet")
  27005. },
  27006. {
  27007. name: "Megamacro",
  27008. height: math.unit((6 + 7 / 12) * 100000, "feet")
  27009. },
  27010. ]
  27011. ))
  27012. characterMakers.push(() => makeCharacter(
  27013. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27014. {
  27015. front: {
  27016. height: math.unit(1, "mile"),
  27017. weight: math.unit(265261.9, "lb"),
  27018. name: "Front",
  27019. image: {
  27020. source: "./media/characters/shui/front.svg",
  27021. extra: 1633 / 1564,
  27022. bottom: 91.5 / 1726
  27023. }
  27024. },
  27025. },
  27026. [
  27027. {
  27028. name: "Macro",
  27029. height: math.unit(1, "mile"),
  27030. default: true
  27031. },
  27032. ]
  27033. ))
  27034. characterMakers.push(() => makeCharacter(
  27035. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27036. {
  27037. front: {
  27038. height: math.unit(12 + 6 / 12, "feet"),
  27039. weight: math.unit(1342, "lb"),
  27040. name: "Front",
  27041. image: {
  27042. source: "./media/characters/arokh-takakura/front.svg",
  27043. extra: 1089 / 1043,
  27044. bottom: 77.4 / 1176.7
  27045. }
  27046. },
  27047. back: {
  27048. height: math.unit(12 + 6 / 12, "feet"),
  27049. weight: math.unit(1342, "lb"),
  27050. name: "Back",
  27051. image: {
  27052. source: "./media/characters/arokh-takakura/back.svg",
  27053. extra: 1046 / 1019,
  27054. bottom: 102 / 1150
  27055. }
  27056. },
  27057. },
  27058. [
  27059. {
  27060. name: "Big",
  27061. height: math.unit(12 + 6 / 12, "feet"),
  27062. default: true
  27063. },
  27064. ]
  27065. ))
  27066. characterMakers.push(() => makeCharacter(
  27067. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27068. {
  27069. front: {
  27070. height: math.unit(5 + 6 / 12, "feet"),
  27071. weight: math.unit(150, "lb"),
  27072. name: "Front",
  27073. image: {
  27074. source: "./media/characters/theo/front.svg",
  27075. extra: 1184 / 1131,
  27076. bottom: 7.4 / 1191
  27077. }
  27078. },
  27079. },
  27080. [
  27081. {
  27082. name: "Micro",
  27083. height: math.unit(5, "inches")
  27084. },
  27085. {
  27086. name: "Normal",
  27087. height: math.unit(5 + 6 / 12, "feet"),
  27088. default: true
  27089. },
  27090. ]
  27091. ))
  27092. characterMakers.push(() => makeCharacter(
  27093. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27094. {
  27095. front: {
  27096. height: math.unit(5 + 9 / 12, "feet"),
  27097. weight: math.unit(130, "lb"),
  27098. name: "Front",
  27099. image: {
  27100. source: "./media/characters/cecelia-swift/front.svg",
  27101. extra: 502 / 484,
  27102. bottom: 23 / 523
  27103. }
  27104. },
  27105. back: {
  27106. height: math.unit(5 + 9 / 12, "feet"),
  27107. weight: math.unit(130, "lb"),
  27108. name: "Back",
  27109. image: {
  27110. source: "./media/characters/cecelia-swift/back.svg",
  27111. extra: 499 / 485,
  27112. bottom: 12 / 511
  27113. }
  27114. },
  27115. head: {
  27116. height: math.unit(0.90, "feet"),
  27117. name: "Head",
  27118. image: {
  27119. source: "./media/characters/cecelia-swift/head.svg"
  27120. }
  27121. },
  27122. rump: {
  27123. height: math.unit(1.75, "feet"),
  27124. name: "Rump",
  27125. image: {
  27126. source: "./media/characters/cecelia-swift/rump.svg"
  27127. }
  27128. },
  27129. },
  27130. [
  27131. {
  27132. name: "Normal",
  27133. height: math.unit(5 + 9 / 12, "feet"),
  27134. default: true
  27135. },
  27136. {
  27137. name: "Big",
  27138. height: math.unit(50, "feet")
  27139. },
  27140. {
  27141. name: "Macro",
  27142. height: math.unit(100, "feet")
  27143. },
  27144. {
  27145. name: "Macro+",
  27146. height: math.unit(500, "feet")
  27147. },
  27148. {
  27149. name: "Macro++",
  27150. height: math.unit(1000, "feet")
  27151. },
  27152. ]
  27153. ))
  27154. characterMakers.push(() => makeCharacter(
  27155. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27156. {
  27157. front: {
  27158. height: math.unit(6, "feet"),
  27159. weight: math.unit(150, "lb"),
  27160. name: "Front",
  27161. image: {
  27162. source: "./media/characters/kaunan/front.svg",
  27163. extra: 2890 / 2523,
  27164. bottom: 49 / 2939
  27165. }
  27166. },
  27167. },
  27168. [
  27169. {
  27170. name: "Macro",
  27171. height: math.unit(150, "feet"),
  27172. default: true
  27173. },
  27174. ]
  27175. ))
  27176. characterMakers.push(() => makeCharacter(
  27177. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27178. {
  27179. front: {
  27180. height: math.unit(175, "cm"),
  27181. weight: math.unit(60, "kg"),
  27182. name: "Front",
  27183. image: {
  27184. source: "./media/characters/fei/front.svg",
  27185. extra: 2581 / 2400,
  27186. bottom: 82.2 / 2663
  27187. }
  27188. },
  27189. },
  27190. [
  27191. {
  27192. name: "Mortal",
  27193. height: math.unit(175, "cm")
  27194. },
  27195. {
  27196. name: "Normal",
  27197. height: math.unit(3500, "m"),
  27198. default: true
  27199. },
  27200. {
  27201. name: "Stroll",
  27202. height: math.unit(17.5, "km")
  27203. },
  27204. {
  27205. name: "Showoff",
  27206. height: math.unit(175, "km")
  27207. },
  27208. ]
  27209. ))
  27210. characterMakers.push(() => makeCharacter(
  27211. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27212. {
  27213. front: {
  27214. height: math.unit(7, "feet"),
  27215. weight: math.unit(1000, "kg"),
  27216. name: "Front",
  27217. image: {
  27218. source: "./media/characters/edrax/front.svg",
  27219. extra: 2838 / 2550,
  27220. bottom: 130 / 2968
  27221. }
  27222. },
  27223. },
  27224. [
  27225. {
  27226. name: "Small",
  27227. height: math.unit(7, "feet")
  27228. },
  27229. {
  27230. name: "Normal",
  27231. height: math.unit(1500, "meters")
  27232. },
  27233. {
  27234. name: "Mega",
  27235. height: math.unit(12000000, "km"),
  27236. default: true
  27237. },
  27238. {
  27239. name: "Megamacro",
  27240. height: math.unit(10600000, "lightyears")
  27241. },
  27242. {
  27243. name: "Hypermacro",
  27244. height: math.unit(256, "yottameters")
  27245. },
  27246. ]
  27247. ))
  27248. characterMakers.push(() => makeCharacter(
  27249. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27250. {
  27251. front: {
  27252. height: math.unit(10, "feet"),
  27253. weight: math.unit(750, "lb"),
  27254. name: "Front",
  27255. image: {
  27256. source: "./media/characters/clove/front.svg",
  27257. extra: 2031 / 1860,
  27258. bottom: 47.8 / 2080
  27259. }
  27260. },
  27261. back: {
  27262. height: math.unit(10, "feet"),
  27263. weight: math.unit(750, "lb"),
  27264. name: "Back",
  27265. image: {
  27266. source: "./media/characters/clove/back.svg",
  27267. extra: 2025 / 1859,
  27268. bottom: 46 / 2071
  27269. }
  27270. },
  27271. },
  27272. [
  27273. {
  27274. name: "Normal",
  27275. height: math.unit(10, "feet"),
  27276. default: true
  27277. },
  27278. ]
  27279. ))
  27280. characterMakers.push(() => makeCharacter(
  27281. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27282. {
  27283. front: {
  27284. height: math.unit(4, "feet"),
  27285. weight: math.unit(50, "lb"),
  27286. name: "Front",
  27287. image: {
  27288. source: "./media/characters/alex-rabbit/front.svg",
  27289. extra: 507 / 458,
  27290. bottom: 18.5 / 527
  27291. }
  27292. },
  27293. back: {
  27294. height: math.unit(4, "feet"),
  27295. weight: math.unit(50, "lb"),
  27296. name: "Back",
  27297. image: {
  27298. source: "./media/characters/alex-rabbit/back.svg",
  27299. extra: 502 / 460,
  27300. bottom: 18.9 / 521
  27301. }
  27302. },
  27303. },
  27304. [
  27305. {
  27306. name: "Normal",
  27307. height: math.unit(4, "feet"),
  27308. default: true
  27309. },
  27310. ]
  27311. ))
  27312. characterMakers.push(() => makeCharacter(
  27313. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27314. {
  27315. front: {
  27316. height: math.unit(1 + 3 / 12, "feet"),
  27317. weight: math.unit(80, "lb"),
  27318. name: "Front",
  27319. image: {
  27320. source: "./media/characters/zander-rose/front.svg",
  27321. extra: 916 / 797,
  27322. bottom: 17 / 933
  27323. }
  27324. },
  27325. back: {
  27326. height: math.unit(1 + 3 / 12, "feet"),
  27327. weight: math.unit(80, "lb"),
  27328. name: "Back",
  27329. image: {
  27330. source: "./media/characters/zander-rose/back.svg",
  27331. extra: 903 / 779,
  27332. bottom: 31 / 934
  27333. }
  27334. },
  27335. },
  27336. [
  27337. {
  27338. name: "Normal",
  27339. height: math.unit(1 + 3 / 12, "feet"),
  27340. default: true
  27341. },
  27342. ]
  27343. ))
  27344. characterMakers.push(() => makeCharacter(
  27345. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27346. {
  27347. anthro: {
  27348. height: math.unit(6, "feet"),
  27349. weight: math.unit(150, "lb"),
  27350. name: "Anthro",
  27351. image: {
  27352. source: "./media/characters/razz/anthro.svg",
  27353. extra: 1437 / 1343,
  27354. bottom: 48 / 1485
  27355. }
  27356. },
  27357. feral: {
  27358. height: math.unit(6, "feet"),
  27359. weight: math.unit(150, "lb"),
  27360. name: "Feral",
  27361. image: {
  27362. source: "./media/characters/razz/feral.svg",
  27363. extra: 2569 / 1385,
  27364. bottom: 95 / 2664
  27365. }
  27366. },
  27367. },
  27368. [
  27369. {
  27370. name: "Normal",
  27371. height: math.unit(6, "feet"),
  27372. default: true
  27373. },
  27374. ]
  27375. ))
  27376. characterMakers.push(() => makeCharacter(
  27377. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27378. {
  27379. front: {
  27380. height: math.unit(9 + 4 / 12, "feet"),
  27381. weight: math.unit(500, "lb"),
  27382. name: "Front",
  27383. image: {
  27384. source: "./media/characters/morrigan/front.svg",
  27385. extra: 2707 / 2579,
  27386. bottom: 156 / 2863
  27387. }
  27388. },
  27389. },
  27390. [
  27391. {
  27392. name: "Normal",
  27393. height: math.unit(9 + 4 / 12, "feet"),
  27394. default: true
  27395. },
  27396. ]
  27397. ))
  27398. characterMakers.push(() => makeCharacter(
  27399. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27400. {
  27401. front: {
  27402. height: math.unit(5, "stories"),
  27403. weight: math.unit(4000, "lb"),
  27404. name: "Front",
  27405. image: {
  27406. source: "./media/characters/jenene/front.svg",
  27407. extra: 1780 / 1710,
  27408. bottom: 57 / 1837
  27409. }
  27410. },
  27411. },
  27412. [
  27413. {
  27414. name: "Normal",
  27415. height: math.unit(5, "stories"),
  27416. default: true
  27417. },
  27418. ]
  27419. ))
  27420. characterMakers.push(() => makeCharacter(
  27421. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27422. {
  27423. front: {
  27424. height: math.unit(6, "feet"),
  27425. weight: math.unit(150, "lb"),
  27426. name: "Front",
  27427. image: {
  27428. source: "./media/characters/vix-archaser/front.svg",
  27429. extra: 2767 / 2562,
  27430. bottom: 36 / 2803
  27431. }
  27432. },
  27433. },
  27434. [
  27435. {
  27436. name: "Micro",
  27437. height: math.unit(1, "foot")
  27438. },
  27439. {
  27440. name: "Normal",
  27441. height: math.unit(6 + 5 / 12, "feet")
  27442. },
  27443. {
  27444. name: "Minimacro",
  27445. height: math.unit(500, "feet")
  27446. },
  27447. {
  27448. name: "Macro",
  27449. height: math.unit(4, "miles")
  27450. },
  27451. {
  27452. name: "Megamacro",
  27453. height: math.unit(250, "miles"),
  27454. default: true
  27455. },
  27456. {
  27457. name: "Gigamacro",
  27458. height: math.unit(1, "universe")
  27459. },
  27460. {
  27461. name: "Endgame",
  27462. height: math.unit(100, "multiverses")
  27463. }
  27464. ]
  27465. ))
  27466. characterMakers.push(() => makeCharacter(
  27467. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27468. {
  27469. taurSfw: {
  27470. height: math.unit(10, "meters"),
  27471. weight: math.unit(17500, "kg"),
  27472. name: "Taur",
  27473. image: {
  27474. source: "./media/characters/faey/taur-sfw.svg",
  27475. extra: 1200 / 968,
  27476. bottom: 41 / 1241
  27477. }
  27478. },
  27479. chestmaw: {
  27480. height: math.unit(2.01, "meters"),
  27481. name: "Chestmaw",
  27482. image: {
  27483. source: "./media/characters/faey/chestmaw.svg"
  27484. }
  27485. },
  27486. foot: {
  27487. height: math.unit(2.43, "meters"),
  27488. name: "Foot",
  27489. image: {
  27490. source: "./media/characters/faey/foot.svg"
  27491. }
  27492. },
  27493. jaws: {
  27494. height: math.unit(1.66, "meters"),
  27495. name: "Jaws",
  27496. image: {
  27497. source: "./media/characters/faey/jaws.svg"
  27498. }
  27499. },
  27500. tongues: {
  27501. height: math.unit(2.01, "meters"),
  27502. name: "Tongues",
  27503. image: {
  27504. source: "./media/characters/faey/tongues.svg"
  27505. }
  27506. },
  27507. },
  27508. [
  27509. {
  27510. name: "Small",
  27511. height: math.unit(10, "meters"),
  27512. default: true
  27513. },
  27514. {
  27515. name: "Big",
  27516. height: math.unit(500000, "km")
  27517. },
  27518. ]
  27519. ))
  27520. characterMakers.push(() => makeCharacter(
  27521. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27522. {
  27523. front: {
  27524. height: math.unit(7, "feet"),
  27525. weight: math.unit(275, "lb"),
  27526. name: "Front",
  27527. image: {
  27528. source: "./media/characters/roku/front.svg",
  27529. extra: 903 / 878,
  27530. bottom: 37 / 940
  27531. }
  27532. },
  27533. },
  27534. [
  27535. {
  27536. name: "Normal",
  27537. height: math.unit(7, "feet"),
  27538. default: true
  27539. },
  27540. {
  27541. name: "Macro",
  27542. height: math.unit(500, "feet")
  27543. },
  27544. {
  27545. name: "Megamacro",
  27546. height: math.unit(200, "miles")
  27547. },
  27548. ]
  27549. ))
  27550. characterMakers.push(() => makeCharacter(
  27551. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27552. {
  27553. front: {
  27554. height: math.unit(6 + 2 / 12, "feet"),
  27555. weight: math.unit(150, "lb"),
  27556. name: "Front",
  27557. image: {
  27558. source: "./media/characters/lira/front.svg",
  27559. extra: 1727 / 1605,
  27560. bottom: 26 / 1753
  27561. }
  27562. },
  27563. back: {
  27564. height: math.unit(6 + 2 / 12, "feet"),
  27565. weight: math.unit(150, "lb"),
  27566. name: "Back",
  27567. image: {
  27568. source: "./media/characters/lira/back.svg",
  27569. extra: 1713 / 159,
  27570. bottom: 20 / 1733
  27571. }
  27572. },
  27573. hand: {
  27574. height: math.unit(0.75, "feet"),
  27575. name: "Hand",
  27576. image: {
  27577. source: "./media/characters/lira/hand.svg"
  27578. }
  27579. },
  27580. maw: {
  27581. height: math.unit(0.65, "feet"),
  27582. name: "Maw",
  27583. image: {
  27584. source: "./media/characters/lira/maw.svg"
  27585. }
  27586. },
  27587. pawDigi: {
  27588. height: math.unit(1.6, "feet"),
  27589. name: "Paw Digi",
  27590. image: {
  27591. source: "./media/characters/lira/paw-digi.svg"
  27592. }
  27593. },
  27594. pawPlanti: {
  27595. height: math.unit(1.4, "feet"),
  27596. name: "Paw Planti",
  27597. image: {
  27598. source: "./media/characters/lira/paw-planti.svg"
  27599. }
  27600. },
  27601. },
  27602. [
  27603. {
  27604. name: "Normal",
  27605. height: math.unit(6 + 2 / 12, "feet"),
  27606. default: true
  27607. },
  27608. {
  27609. name: "Macro",
  27610. height: math.unit(100, "feet")
  27611. },
  27612. {
  27613. name: "Macro²",
  27614. height: math.unit(1600, "feet")
  27615. },
  27616. {
  27617. name: "Planetary",
  27618. height: math.unit(20, "earths")
  27619. },
  27620. ]
  27621. ))
  27622. characterMakers.push(() => makeCharacter(
  27623. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27624. {
  27625. front: {
  27626. height: math.unit(6, "feet"),
  27627. weight: math.unit(150, "lb"),
  27628. name: "Front",
  27629. image: {
  27630. source: "./media/characters/hadjet/front.svg",
  27631. extra: 1480 / 1346,
  27632. bottom: 26 / 1506
  27633. }
  27634. },
  27635. frontNsfw: {
  27636. height: math.unit(6, "feet"),
  27637. weight: math.unit(150, "lb"),
  27638. name: "Front (NSFW)",
  27639. image: {
  27640. source: "./media/characters/hadjet/front-nsfw.svg",
  27641. extra: 1440 / 1358,
  27642. bottom: 52 / 1492
  27643. }
  27644. },
  27645. },
  27646. [
  27647. {
  27648. name: "Macro",
  27649. height: math.unit(10, "stories"),
  27650. default: true
  27651. },
  27652. {
  27653. name: "Megamacro",
  27654. height: math.unit(1.5, "miles")
  27655. },
  27656. {
  27657. name: "Megamacro+",
  27658. height: math.unit(5, "miles")
  27659. },
  27660. ]
  27661. ))
  27662. characterMakers.push(() => makeCharacter(
  27663. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27664. {
  27665. side: {
  27666. height: math.unit(106, "feet"),
  27667. weight: math.unit(500, "tonnes"),
  27668. name: "Side",
  27669. image: {
  27670. source: "./media/characters/kodran/side.svg",
  27671. extra: 553 / 480,
  27672. bottom: 33 / 586
  27673. }
  27674. },
  27675. front: {
  27676. height: math.unit(132, "feet"),
  27677. weight: math.unit(500, "tonnes"),
  27678. name: "Front",
  27679. image: {
  27680. source: "./media/characters/kodran/front.svg",
  27681. extra: 667 / 643,
  27682. bottom: 42 / 709
  27683. }
  27684. },
  27685. flying: {
  27686. height: math.unit(350, "feet"),
  27687. weight: math.unit(500, "tonnes"),
  27688. name: "Flying",
  27689. image: {
  27690. source: "./media/characters/kodran/flying.svg"
  27691. }
  27692. },
  27693. foot: {
  27694. height: math.unit(33, "feet"),
  27695. name: "Foot",
  27696. image: {
  27697. source: "./media/characters/kodran/foot.svg"
  27698. }
  27699. },
  27700. footFront: {
  27701. height: math.unit(19, "feet"),
  27702. name: "Foot (Front)",
  27703. image: {
  27704. source: "./media/characters/kodran/foot-front.svg",
  27705. extra: 261 / 261,
  27706. bottom: 91 / 352
  27707. }
  27708. },
  27709. headFront: {
  27710. height: math.unit(53, "feet"),
  27711. name: "Head (Front)",
  27712. image: {
  27713. source: "./media/characters/kodran/head-front.svg"
  27714. }
  27715. },
  27716. headSide: {
  27717. height: math.unit(65, "feet"),
  27718. name: "Head (Side)",
  27719. image: {
  27720. source: "./media/characters/kodran/head-side.svg"
  27721. }
  27722. },
  27723. throat: {
  27724. height: math.unit(79, "feet"),
  27725. name: "Throat",
  27726. image: {
  27727. source: "./media/characters/kodran/throat.svg"
  27728. }
  27729. },
  27730. },
  27731. [
  27732. {
  27733. name: "Large",
  27734. height: math.unit(106, "feet"),
  27735. default: true
  27736. },
  27737. ]
  27738. ))
  27739. characterMakers.push(() => makeCharacter(
  27740. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27741. {
  27742. side: {
  27743. height: math.unit(11, "feet"),
  27744. weight: math.unit(150, "lb"),
  27745. name: "Side",
  27746. image: {
  27747. source: "./media/characters/pyxaron/side.svg",
  27748. extra: 305 / 195,
  27749. bottom: 17 / 322
  27750. }
  27751. },
  27752. },
  27753. [
  27754. {
  27755. name: "Normal",
  27756. height: math.unit(11, "feet"),
  27757. default: true
  27758. },
  27759. ]
  27760. ))
  27761. characterMakers.push(() => makeCharacter(
  27762. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27763. {
  27764. front: {
  27765. height: math.unit(6, "feet"),
  27766. weight: math.unit(150, "lb"),
  27767. name: "Front",
  27768. image: {
  27769. source: "./media/characters/meep/front.svg",
  27770. extra: 88 / 80,
  27771. bottom: 6 / 94
  27772. }
  27773. },
  27774. },
  27775. [
  27776. {
  27777. name: "Fun Sized",
  27778. height: math.unit(2, "inches"),
  27779. default: true
  27780. },
  27781. {
  27782. name: "Friend Sized",
  27783. height: math.unit(8, "inches")
  27784. },
  27785. ]
  27786. ))
  27787. characterMakers.push(() => makeCharacter(
  27788. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27789. {
  27790. front: {
  27791. height: math.unit(15, "feet"),
  27792. weight: math.unit(2500, "lb"),
  27793. name: "Front",
  27794. image: {
  27795. source: "./media/characters/holly-rabbit/front.svg",
  27796. extra: 1433 / 1233,
  27797. bottom: 125 / 1558
  27798. }
  27799. },
  27800. dick: {
  27801. height: math.unit(4.6, "feet"),
  27802. name: "Dick",
  27803. image: {
  27804. source: "./media/characters/holly-rabbit/dick.svg"
  27805. }
  27806. },
  27807. },
  27808. [
  27809. {
  27810. name: "Normal",
  27811. height: math.unit(15, "feet"),
  27812. default: true
  27813. },
  27814. {
  27815. name: "Macro",
  27816. height: math.unit(250, "feet")
  27817. },
  27818. {
  27819. name: "Macro+",
  27820. height: math.unit(2500, "feet")
  27821. },
  27822. ]
  27823. ))
  27824. characterMakers.push(() => makeCharacter(
  27825. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27826. {
  27827. front: {
  27828. height: math.unit(3.02, "meters"),
  27829. weight: math.unit(500, "kg"),
  27830. name: "Front",
  27831. image: {
  27832. source: "./media/characters/drena/front.svg",
  27833. extra: 282 / 243,
  27834. bottom: 8 / 290
  27835. }
  27836. },
  27837. side: {
  27838. height: math.unit(3.02, "meters"),
  27839. weight: math.unit(500, "kg"),
  27840. name: "Side",
  27841. image: {
  27842. source: "./media/characters/drena/side.svg",
  27843. extra: 280 / 245,
  27844. bottom: 10 / 290
  27845. }
  27846. },
  27847. back: {
  27848. height: math.unit(3.02, "meters"),
  27849. weight: math.unit(500, "kg"),
  27850. name: "Back",
  27851. image: {
  27852. source: "./media/characters/drena/back.svg",
  27853. extra: 278 / 243,
  27854. bottom: 2 / 280
  27855. }
  27856. },
  27857. foot: {
  27858. height: math.unit(0.75, "meters"),
  27859. name: "Foot",
  27860. image: {
  27861. source: "./media/characters/drena/foot.svg"
  27862. }
  27863. },
  27864. maw: {
  27865. height: math.unit(0.82, "meters"),
  27866. name: "Maw",
  27867. image: {
  27868. source: "./media/characters/drena/maw.svg"
  27869. }
  27870. },
  27871. rump: {
  27872. height: math.unit(0.93, "meters"),
  27873. name: "Rump",
  27874. image: {
  27875. source: "./media/characters/drena/rump.svg"
  27876. }
  27877. },
  27878. },
  27879. [
  27880. {
  27881. name: "Normal",
  27882. height: math.unit(3.02, "meters"),
  27883. default: true
  27884. },
  27885. ]
  27886. ))
  27887. characterMakers.push(() => makeCharacter(
  27888. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27889. {
  27890. front: {
  27891. height: math.unit(6 + 4 / 12, "feet"),
  27892. weight: math.unit(250, "lb"),
  27893. name: "Front",
  27894. image: {
  27895. source: "./media/characters/remmyzilla/front.svg",
  27896. extra: 4033 / 3588,
  27897. bottom: 123 / 4156
  27898. }
  27899. },
  27900. back: {
  27901. height: math.unit(6 + 4 / 12, "feet"),
  27902. weight: math.unit(250, "lb"),
  27903. name: "Back",
  27904. image: {
  27905. source: "./media/characters/remmyzilla/back.svg",
  27906. extra: 2687 / 2555,
  27907. bottom: 48 / 2735
  27908. }
  27909. },
  27910. frontFancy: {
  27911. height: math.unit(6 + 4 / 12, "feet"),
  27912. weight: math.unit(250, "lb"),
  27913. name: "Front (Fancy)",
  27914. image: {
  27915. source: "./media/characters/remmyzilla/front-fancy.svg",
  27916. extra: 4119 / 3419,
  27917. bottom: 237 / 4356
  27918. }
  27919. },
  27920. paw: {
  27921. height: math.unit(1.73, "feet"),
  27922. name: "Paw",
  27923. image: {
  27924. source: "./media/characters/remmyzilla/paw.svg"
  27925. }
  27926. },
  27927. maw: {
  27928. height: math.unit(1.73, "feet"),
  27929. name: "Maw",
  27930. image: {
  27931. source: "./media/characters/remmyzilla/maw.svg"
  27932. }
  27933. },
  27934. },
  27935. [
  27936. {
  27937. name: "Normal",
  27938. height: math.unit(6 + 4 / 12, "feet")
  27939. },
  27940. {
  27941. name: "Minimacro",
  27942. height: math.unit(12 + 8 / 12, "feet")
  27943. },
  27944. {
  27945. name: "Normal",
  27946. height: math.unit(640, "feet"),
  27947. default: true
  27948. },
  27949. {
  27950. name: "Megamacro",
  27951. height: math.unit(6400, "feet")
  27952. },
  27953. {
  27954. name: "Gigamacro",
  27955. height: math.unit(64000, "miles")
  27956. },
  27957. ]
  27958. ))
  27959. characterMakers.push(() => makeCharacter(
  27960. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27961. {
  27962. front: {
  27963. height: math.unit(2.5, "meters"),
  27964. weight: math.unit(300, "lb"),
  27965. name: "Front",
  27966. image: {
  27967. source: "./media/characters/lawrence/front.svg",
  27968. extra: 357 / 335,
  27969. bottom: 30 / 387
  27970. }
  27971. },
  27972. back: {
  27973. height: math.unit(2.5, "meters"),
  27974. weight: math.unit(300, "lb"),
  27975. name: "Back",
  27976. image: {
  27977. source: "./media/characters/lawrence/back.svg",
  27978. extra: 357 / 338,
  27979. bottom: 16 / 373
  27980. }
  27981. },
  27982. head: {
  27983. height: math.unit(0.9, "meter"),
  27984. name: "Head",
  27985. image: {
  27986. source: "./media/characters/lawrence/head.svg"
  27987. }
  27988. },
  27989. maw: {
  27990. height: math.unit(0.7, "meter"),
  27991. name: "Maw",
  27992. image: {
  27993. source: "./media/characters/lawrence/maw.svg"
  27994. }
  27995. },
  27996. footBottom: {
  27997. height: math.unit(0.5, "meter"),
  27998. name: "Foot (Bottom)",
  27999. image: {
  28000. source: "./media/characters/lawrence/foot-bottom.svg"
  28001. }
  28002. },
  28003. footTop: {
  28004. height: math.unit(0.5, "meter"),
  28005. name: "Foot (Top)",
  28006. image: {
  28007. source: "./media/characters/lawrence/foot-top.svg"
  28008. }
  28009. },
  28010. },
  28011. [
  28012. {
  28013. name: "Normal",
  28014. height: math.unit(2.5, "meters"),
  28015. default: true
  28016. },
  28017. {
  28018. name: "Macro",
  28019. height: math.unit(95, "meters")
  28020. },
  28021. {
  28022. name: "Megamacro",
  28023. height: math.unit(150, "km")
  28024. },
  28025. ]
  28026. ))
  28027. characterMakers.push(() => makeCharacter(
  28028. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28029. {
  28030. front: {
  28031. height: math.unit(4.2, "meters"),
  28032. name: "Front",
  28033. image: {
  28034. source: "./media/characters/sydney/front.svg",
  28035. extra: 1323 / 1277,
  28036. bottom: 111 / 1434
  28037. }
  28038. },
  28039. },
  28040. [
  28041. {
  28042. name: "Normal",
  28043. height: math.unit(4.2, "meters"),
  28044. default: true
  28045. },
  28046. ]
  28047. ))
  28048. characterMakers.push(() => makeCharacter(
  28049. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28050. {
  28051. back: {
  28052. height: math.unit(201, "feet"),
  28053. name: "Back",
  28054. image: {
  28055. source: "./media/characters/jessica/back.svg",
  28056. extra: 273 / 259,
  28057. bottom: 7 / 280
  28058. }
  28059. },
  28060. },
  28061. [
  28062. {
  28063. name: "Normal",
  28064. height: math.unit(201, "feet"),
  28065. default: true
  28066. },
  28067. {
  28068. name: "Megamacro",
  28069. height: math.unit(8, "miles")
  28070. },
  28071. ]
  28072. ))
  28073. characterMakers.push(() => makeCharacter(
  28074. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28075. {
  28076. side: {
  28077. height: math.unit(320, "cm"),
  28078. name: "Side",
  28079. image: {
  28080. source: "./media/characters/victoria/side.svg",
  28081. extra: 778 / 346,
  28082. bottom: 56 / 834
  28083. }
  28084. },
  28085. maw: {
  28086. height: math.unit(5.9, "feet"),
  28087. name: "Maw",
  28088. image: {
  28089. source: "./media/characters/victoria/maw.svg"
  28090. }
  28091. },
  28092. },
  28093. [
  28094. {
  28095. name: "Normal",
  28096. height: math.unit(320, "cm"),
  28097. default: true
  28098. },
  28099. ]
  28100. ))
  28101. characterMakers.push(() => makeCharacter(
  28102. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28103. {
  28104. front: {
  28105. height: math.unit(5 + 6 / 12, "feet"),
  28106. name: "Front",
  28107. image: {
  28108. source: "./media/characters/cat/front.svg",
  28109. extra: 1374 / 1257,
  28110. bottom: 59 / 1433
  28111. }
  28112. },
  28113. back: {
  28114. height: math.unit(5 + 6 / 12, "feet"),
  28115. name: "Back",
  28116. image: {
  28117. source: "./media/characters/cat/back.svg",
  28118. extra: 1337 / 1226,
  28119. bottom: 34 / 1371
  28120. }
  28121. },
  28122. taur: {
  28123. height: math.unit(7, "feet"),
  28124. name: "Taur",
  28125. image: {
  28126. source: "./media/characters/cat/taur.svg",
  28127. extra: 1345 / 1231,
  28128. bottom: 66 / 1411
  28129. }
  28130. },
  28131. lucario: {
  28132. height: math.unit(4, "feet"),
  28133. name: "Lucario",
  28134. image: {
  28135. source: "./media/characters/cat/lucario.svg",
  28136. extra: 1470 / 1318,
  28137. bottom: 65 / 1535
  28138. }
  28139. },
  28140. megaLucario: {
  28141. height: math.unit(4, "feet"),
  28142. name: "Mega Lucario",
  28143. image: {
  28144. source: "./media/characters/cat/mega-lucario.svg",
  28145. extra: 1515 / 1319,
  28146. bottom: 63 / 1578
  28147. }
  28148. },
  28149. nickit: {
  28150. height: math.unit(2, "feet"),
  28151. name: "Nickit",
  28152. image: {
  28153. source: "./media/characters/cat/nickit.svg",
  28154. extra: 1980 / 1585,
  28155. bottom: 102 / 2082
  28156. }
  28157. },
  28158. lopunnyFront: {
  28159. height: math.unit(5, "feet"),
  28160. name: "Lopunny (Front)",
  28161. image: {
  28162. source: "./media/characters/cat/lopunny-front.svg",
  28163. extra: 1782 / 1469,
  28164. bottom: 38 / 1820
  28165. }
  28166. },
  28167. lopunnyBack: {
  28168. height: math.unit(5, "feet"),
  28169. name: "Lopunny (Back)",
  28170. image: {
  28171. source: "./media/characters/cat/lopunny-back.svg",
  28172. extra: 1660 / 1490,
  28173. bottom: 25 / 1685
  28174. }
  28175. },
  28176. },
  28177. [
  28178. {
  28179. name: "Really small",
  28180. height: math.unit(1, "nm")
  28181. },
  28182. {
  28183. name: "Micro",
  28184. height: math.unit(5, "inches")
  28185. },
  28186. {
  28187. name: "Normal",
  28188. height: math.unit(5 + 6 / 12, "feet"),
  28189. default: true
  28190. },
  28191. {
  28192. name: "Macro",
  28193. height: math.unit(50, "feet")
  28194. },
  28195. {
  28196. name: "Macro+",
  28197. height: math.unit(150, "feet")
  28198. },
  28199. {
  28200. name: "Megamacro",
  28201. height: math.unit(100, "miles")
  28202. },
  28203. ]
  28204. ))
  28205. characterMakers.push(() => makeCharacter(
  28206. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28207. {
  28208. front: {
  28209. height: math.unit(63.4, "meters"),
  28210. weight: math.unit(3.28349e+6, "kilograms"),
  28211. name: "Front",
  28212. image: {
  28213. source: "./media/characters/kirina-violet/front.svg",
  28214. extra: 2812 / 2725,
  28215. bottom: 0 / 2812
  28216. }
  28217. },
  28218. back: {
  28219. height: math.unit(63.4, "meters"),
  28220. weight: math.unit(3.28349e+6, "kilograms"),
  28221. name: "Back",
  28222. image: {
  28223. source: "./media/characters/kirina-violet/back.svg",
  28224. extra: 2812 / 2725,
  28225. bottom: 0 / 2812
  28226. }
  28227. },
  28228. mouth: {
  28229. height: math.unit(4.35, "meters"),
  28230. name: "Mouth",
  28231. image: {
  28232. source: "./media/characters/kirina-violet/mouth.svg"
  28233. }
  28234. },
  28235. paw: {
  28236. height: math.unit(5.6, "meters"),
  28237. name: "Paw",
  28238. image: {
  28239. source: "./media/characters/kirina-violet/paw.svg"
  28240. }
  28241. },
  28242. tail: {
  28243. height: math.unit(18, "meters"),
  28244. name: "Tail",
  28245. image: {
  28246. source: "./media/characters/kirina-violet/tail.svg"
  28247. }
  28248. },
  28249. },
  28250. [
  28251. {
  28252. name: "Macro",
  28253. height: math.unit(63.4, "meters"),
  28254. default: true
  28255. },
  28256. ]
  28257. ))
  28258. characterMakers.push(() => makeCharacter(
  28259. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28260. {
  28261. front: {
  28262. height: math.unit(60, "feet"),
  28263. name: "Front",
  28264. image: {
  28265. source: "./media/characters/cat-gigachu/front.svg",
  28266. extra: 1024 / 780,
  28267. bottom: 23 / 1047
  28268. }
  28269. },
  28270. back: {
  28271. height: math.unit(60, "feet"),
  28272. name: "Back",
  28273. image: {
  28274. source: "./media/characters/cat-gigachu/back.svg",
  28275. extra: 1024 / 780,
  28276. bottom: 23 / 1047
  28277. }
  28278. },
  28279. },
  28280. [
  28281. {
  28282. name: "Dynamax",
  28283. height: math.unit(60, "feet"),
  28284. default: true
  28285. },
  28286. ]
  28287. ))
  28288. characterMakers.push(() => makeCharacter(
  28289. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28290. {
  28291. front: {
  28292. height: math.unit(6, "feet"),
  28293. weight: math.unit(150, "lb"),
  28294. name: "Front",
  28295. image: {
  28296. source: "./media/characters/sfaiyan/front.svg",
  28297. extra: 999 / 978,
  28298. bottom: 5 / 1004
  28299. }
  28300. },
  28301. },
  28302. [
  28303. {
  28304. name: "Normal",
  28305. height: math.unit(1.82, "meters")
  28306. },
  28307. {
  28308. name: "Giant",
  28309. height: math.unit(2.27, "km"),
  28310. default: true
  28311. },
  28312. ]
  28313. ))
  28314. characterMakers.push(() => makeCharacter(
  28315. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28316. {
  28317. front: {
  28318. height: math.unit(179, "cm"),
  28319. weight: math.unit(100, "kg"),
  28320. name: "Front",
  28321. image: {
  28322. source: "./media/characters/raunehkeli/front.svg",
  28323. extra: 1934 / 1926,
  28324. bottom: 0 / 1934
  28325. }
  28326. },
  28327. },
  28328. [
  28329. {
  28330. name: "Normal",
  28331. height: math.unit(179, "cm")
  28332. },
  28333. {
  28334. name: "Maximum",
  28335. height: math.unit(575, "meters"),
  28336. default: true
  28337. },
  28338. ]
  28339. ))
  28340. characterMakers.push(() => makeCharacter(
  28341. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28342. {
  28343. front: {
  28344. height: math.unit(6, "feet"),
  28345. weight: math.unit(150, "lb"),
  28346. name: "Front",
  28347. image: {
  28348. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28349. extra: 2625 / 2518,
  28350. bottom: 60 / 2685
  28351. }
  28352. },
  28353. },
  28354. [
  28355. {
  28356. name: "Normal",
  28357. height: math.unit(6 + 2 / 12, "feet")
  28358. },
  28359. {
  28360. name: "Macro",
  28361. height: math.unit(1180, "feet"),
  28362. default: true
  28363. },
  28364. ]
  28365. ))
  28366. characterMakers.push(() => makeCharacter(
  28367. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28368. {
  28369. front: {
  28370. height: math.unit(5 + 6 / 12, "feet"),
  28371. weight: math.unit(108, "lb"),
  28372. name: "Front",
  28373. image: {
  28374. source: "./media/characters/lilith-zott/front.svg",
  28375. extra: 2510 / 2238,
  28376. bottom: 100 / 2610
  28377. }
  28378. },
  28379. frontDressed: {
  28380. height: math.unit(5 + 6 / 12, "feet"),
  28381. weight: math.unit(108, "lb"),
  28382. name: "Front (Dressed)",
  28383. image: {
  28384. source: "./media/characters/lilith-zott/front-dressed.svg",
  28385. extra: 2510 / 2238,
  28386. bottom: 100 / 2610
  28387. }
  28388. },
  28389. },
  28390. [
  28391. {
  28392. name: "Normal",
  28393. height: math.unit(5 + 6 / 12, "feet")
  28394. },
  28395. {
  28396. name: "Macro",
  28397. height: math.unit(1030, "feet"),
  28398. default: true
  28399. },
  28400. ]
  28401. ))
  28402. characterMakers.push(() => makeCharacter(
  28403. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28404. {
  28405. front: {
  28406. height: math.unit(6, "feet"),
  28407. weight: math.unit(150, "lb"),
  28408. name: "Front",
  28409. image: {
  28410. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28411. extra: 2567 / 2435,
  28412. bottom: 39 / 2606
  28413. }
  28414. },
  28415. frontSuper: {
  28416. height: math.unit(6, "feet"),
  28417. name: "Front (Super)",
  28418. image: {
  28419. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28420. extra: 2567 / 2435,
  28421. bottom: 39 / 2606
  28422. }
  28423. },
  28424. },
  28425. [
  28426. {
  28427. name: "Normal",
  28428. height: math.unit(5 + 10 / 12, "feet")
  28429. },
  28430. {
  28431. name: "Macro",
  28432. height: math.unit(1100, "feet"),
  28433. default: true
  28434. },
  28435. ]
  28436. ))
  28437. characterMakers.push(() => makeCharacter(
  28438. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28439. {
  28440. front: {
  28441. height: math.unit(100, "miles"),
  28442. name: "Front",
  28443. image: {
  28444. source: "./media/characters/sona/front.svg",
  28445. extra: 2433 / 2201,
  28446. bottom: 53 / 2486
  28447. }
  28448. },
  28449. foot: {
  28450. height: math.unit(16.1, "miles"),
  28451. name: "Foot",
  28452. image: {
  28453. source: "./media/characters/sona/foot.svg"
  28454. }
  28455. },
  28456. },
  28457. [
  28458. {
  28459. name: "Macro",
  28460. height: math.unit(100, "miles"),
  28461. default: true
  28462. },
  28463. ]
  28464. ))
  28465. characterMakers.push(() => makeCharacter(
  28466. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28467. {
  28468. front: {
  28469. height: math.unit(6, "feet"),
  28470. weight: math.unit(150, "lb"),
  28471. name: "Front",
  28472. image: {
  28473. source: "./media/characters/bailey/front.svg",
  28474. extra: 1778 / 1724,
  28475. bottom: 30 / 1808
  28476. }
  28477. },
  28478. },
  28479. [
  28480. {
  28481. name: "Micro",
  28482. height: math.unit(4, "inches")
  28483. },
  28484. {
  28485. name: "Normal",
  28486. height: math.unit(5 + 5 / 12, "feet"),
  28487. default: true
  28488. },
  28489. {
  28490. name: "Macro",
  28491. height: math.unit(250, "feet")
  28492. },
  28493. {
  28494. name: "Megamacro",
  28495. height: math.unit(100, "miles")
  28496. },
  28497. ]
  28498. ))
  28499. characterMakers.push(() => makeCharacter(
  28500. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28501. {
  28502. front: {
  28503. height: math.unit(5 + 2 / 12, "feet"),
  28504. weight: math.unit(120, "lb"),
  28505. name: "Front",
  28506. image: {
  28507. source: "./media/characters/snaps/front.svg",
  28508. extra: 2370 / 2177,
  28509. bottom: 48 / 2418
  28510. }
  28511. },
  28512. back: {
  28513. height: math.unit(5 + 2 / 12, "feet"),
  28514. weight: math.unit(120, "lb"),
  28515. name: "Back",
  28516. image: {
  28517. source: "./media/characters/snaps/back.svg",
  28518. extra: 2408 / 2258,
  28519. bottom: 15 / 2423
  28520. }
  28521. },
  28522. },
  28523. [
  28524. {
  28525. name: "Micro",
  28526. height: math.unit(9, "inches")
  28527. },
  28528. {
  28529. name: "Normal",
  28530. height: math.unit(5 + 2 / 12, "feet"),
  28531. default: true
  28532. },
  28533. {
  28534. name: "Mini Macro",
  28535. height: math.unit(10, "feet")
  28536. },
  28537. ]
  28538. ))
  28539. characterMakers.push(() => makeCharacter(
  28540. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28541. {
  28542. front: {
  28543. height: math.unit(1.8, "meters"),
  28544. weight: math.unit(85, "kg"),
  28545. name: "Front",
  28546. image: {
  28547. source: "./media/characters/azteck/front.svg",
  28548. extra: 2815 / 2625,
  28549. bottom: 89 / 2904
  28550. }
  28551. },
  28552. back: {
  28553. height: math.unit(1.8, "meters"),
  28554. weight: math.unit(85, "kg"),
  28555. name: "Back",
  28556. image: {
  28557. source: "./media/characters/azteck/back.svg",
  28558. extra: 2856 / 2648,
  28559. bottom: 85 / 2941
  28560. }
  28561. },
  28562. frontDressed: {
  28563. height: math.unit(1.8, "meters"),
  28564. weight: math.unit(85, "kg"),
  28565. name: "Front (Dressed)",
  28566. image: {
  28567. source: "./media/characters/azteck/front-dressed.svg",
  28568. extra: 2147 / 2003,
  28569. bottom: 68 / 2215
  28570. }
  28571. },
  28572. head: {
  28573. height: math.unit(0.47, "meters"),
  28574. weight: math.unit(85, "kg"),
  28575. name: "Head",
  28576. image: {
  28577. source: "./media/characters/azteck/head.svg"
  28578. }
  28579. },
  28580. },
  28581. [
  28582. {
  28583. name: "Bite sized",
  28584. height: math.unit(16, "cm")
  28585. },
  28586. {
  28587. name: "Normal",
  28588. height: math.unit(1.8, "meters"),
  28589. default: true
  28590. },
  28591. ]
  28592. ))
  28593. characterMakers.push(() => makeCharacter(
  28594. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28595. {
  28596. front: {
  28597. height: math.unit(6, "feet"),
  28598. weight: math.unit(150, "lb"),
  28599. name: "Front",
  28600. image: {
  28601. source: "./media/characters/pidge/front.svg",
  28602. extra: 620 / 588,
  28603. bottom: 9 / 629
  28604. }
  28605. },
  28606. back: {
  28607. height: math.unit(6, "feet"),
  28608. weight: math.unit(150, "lb"),
  28609. name: "Back",
  28610. image: {
  28611. source: "./media/characters/pidge/back.svg",
  28612. extra: 620 / 588,
  28613. bottom: 9 / 629
  28614. }
  28615. },
  28616. },
  28617. [
  28618. {
  28619. name: "Macro",
  28620. height: math.unit(1, "mile"),
  28621. default: true
  28622. },
  28623. ]
  28624. ))
  28625. characterMakers.push(() => makeCharacter(
  28626. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28627. {
  28628. front: {
  28629. height: math.unit(6, "feet"),
  28630. weight: math.unit(150, "lb"),
  28631. name: "Front",
  28632. image: {
  28633. source: "./media/characters/en/front.svg",
  28634. extra: 1697 / 1563,
  28635. bottom: 103 / 1800
  28636. }
  28637. },
  28638. back: {
  28639. height: math.unit(6, "feet"),
  28640. weight: math.unit(150, "lb"),
  28641. name: "Back",
  28642. image: {
  28643. source: "./media/characters/en/back.svg",
  28644. extra: 1700 / 1570,
  28645. bottom: 51 / 1751
  28646. }
  28647. },
  28648. frontDressed: {
  28649. height: math.unit(6, "feet"),
  28650. weight: math.unit(150, "lb"),
  28651. name: "Front (Dressed)",
  28652. image: {
  28653. source: "./media/characters/en/front-dressed.svg",
  28654. extra: 1697 / 1563,
  28655. bottom: 103 / 1800
  28656. }
  28657. },
  28658. backDressed: {
  28659. height: math.unit(6, "feet"),
  28660. weight: math.unit(150, "lb"),
  28661. name: "Back (Dressed)",
  28662. image: {
  28663. source: "./media/characters/en/back-dressed.svg",
  28664. extra: 1700 / 1570,
  28665. bottom: 51 / 1751
  28666. }
  28667. },
  28668. },
  28669. [
  28670. {
  28671. name: "Macro",
  28672. height: math.unit(210, "feet"),
  28673. default: true
  28674. },
  28675. ]
  28676. ))
  28677. characterMakers.push(() => makeCharacter(
  28678. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28679. {
  28680. front: {
  28681. height: math.unit(6, "feet"),
  28682. weight: math.unit(150, "lb"),
  28683. name: "Front",
  28684. image: {
  28685. source: "./media/characters/haze-orris/front.svg",
  28686. extra: 3975 / 3525,
  28687. bottom: 137 / 4112
  28688. }
  28689. },
  28690. },
  28691. [
  28692. {
  28693. name: "Micro",
  28694. height: math.unit(150, "mm"),
  28695. default: true
  28696. },
  28697. ]
  28698. ))
  28699. characterMakers.push(() => makeCharacter(
  28700. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28701. {
  28702. front: {
  28703. height: math.unit(6, "feet"),
  28704. weight: math.unit(150, "lb"),
  28705. name: "Front",
  28706. image: {
  28707. source: "./media/characters/casselene-yaro/front.svg",
  28708. extra: 4721 / 4541,
  28709. bottom: 82 / 4803
  28710. }
  28711. },
  28712. back: {
  28713. height: math.unit(6, "feet"),
  28714. weight: math.unit(150, "lb"),
  28715. name: "Back",
  28716. image: {
  28717. source: "./media/characters/casselene-yaro/back.svg",
  28718. extra: 4569 / 4377,
  28719. bottom: 69 / 4638
  28720. }
  28721. },
  28722. frontDressed: {
  28723. height: math.unit(6, "feet"),
  28724. weight: math.unit(150, "lb"),
  28725. name: "Front-dressed",
  28726. image: {
  28727. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28728. extra: 4721 / 4541,
  28729. bottom: 82 / 4803
  28730. }
  28731. },
  28732. },
  28733. [
  28734. {
  28735. name: "Macro",
  28736. height: math.unit(190, "feet"),
  28737. default: true
  28738. },
  28739. ]
  28740. ))
  28741. characterMakers.push(() => makeCharacter(
  28742. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28743. {
  28744. front: {
  28745. height: math.unit(6, "feet"),
  28746. weight: math.unit(150, "lb"),
  28747. name: "Front",
  28748. image: {
  28749. source: "./media/characters/myra-rue-delore/front.svg",
  28750. extra: 1340 / 1308,
  28751. bottom: 67 / 1407
  28752. }
  28753. },
  28754. back: {
  28755. height: math.unit(6, "feet"),
  28756. weight: math.unit(150, "lb"),
  28757. name: "Back",
  28758. image: {
  28759. source: "./media/characters/myra-rue-delore/back.svg",
  28760. extra: 1341 / 1310,
  28761. bottom: 40 / 1381
  28762. }
  28763. },
  28764. frontDressed: {
  28765. height: math.unit(6, "feet"),
  28766. weight: math.unit(150, "lb"),
  28767. name: "Front (Dressed)",
  28768. image: {
  28769. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28770. extra: 1340 / 1308,
  28771. bottom: 67 / 1407
  28772. }
  28773. },
  28774. },
  28775. [
  28776. {
  28777. name: "Macro",
  28778. height: math.unit(150, "feet"),
  28779. default: true
  28780. },
  28781. ]
  28782. ))
  28783. characterMakers.push(() => makeCharacter(
  28784. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28785. {
  28786. front: {
  28787. height: math.unit(10, "feet"),
  28788. weight: math.unit(15015, "lb"),
  28789. name: "Front",
  28790. image: {
  28791. source: "./media/characters/fem!plat/front.svg",
  28792. extra: 2799 / 2604,
  28793. bottom: 149 / 2948
  28794. }
  28795. },
  28796. },
  28797. [
  28798. {
  28799. name: "Normal",
  28800. height: math.unit(10, "feet"),
  28801. default: true
  28802. },
  28803. {
  28804. name: "Macro",
  28805. height: math.unit(100, "feet")
  28806. },
  28807. {
  28808. name: "Megamacro",
  28809. height: math.unit(1000, "feet")
  28810. },
  28811. ]
  28812. ))
  28813. characterMakers.push(() => makeCharacter(
  28814. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28815. {
  28816. front: {
  28817. height: math.unit(15 + 5 / 12, "feet"),
  28818. weight: math.unit(4600, "lb"),
  28819. name: "Front",
  28820. image: {
  28821. source: "./media/characters/neapolitan-ananassa/front.svg",
  28822. extra: 2903 / 2736,
  28823. bottom: 0 / 2903
  28824. }
  28825. },
  28826. side: {
  28827. height: math.unit(15 + 5 / 12, "feet"),
  28828. weight: math.unit(4600, "lb"),
  28829. name: "Side",
  28830. image: {
  28831. source: "./media/characters/neapolitan-ananassa/side.svg",
  28832. extra: 2925 / 2719,
  28833. bottom: 0 / 2925
  28834. }
  28835. },
  28836. back: {
  28837. height: math.unit(15 + 5 / 12, "feet"),
  28838. weight: math.unit(4600, "lb"),
  28839. name: "Back",
  28840. image: {
  28841. source: "./media/characters/neapolitan-ananassa/back.svg",
  28842. extra: 2903 / 2736,
  28843. bottom: 0 / 2903
  28844. }
  28845. },
  28846. },
  28847. [
  28848. {
  28849. name: "Normal",
  28850. height: math.unit(15 + 5 / 12, "feet"),
  28851. default: true
  28852. },
  28853. {
  28854. name: "Post-Millenium",
  28855. height: math.unit(35 + 5 / 12, "feet")
  28856. },
  28857. {
  28858. name: "Post-Era",
  28859. height: math.unit(450 + 5 / 12, "feet")
  28860. },
  28861. ]
  28862. ))
  28863. characterMakers.push(() => makeCharacter(
  28864. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28865. {
  28866. front: {
  28867. height: math.unit(300, "meters"),
  28868. weight: math.unit(125000, "tonnes"),
  28869. name: "Front",
  28870. image: {
  28871. source: "./media/characters/pazuzu/front.svg",
  28872. extra: 877 / 794,
  28873. bottom: 47 / 924
  28874. }
  28875. },
  28876. },
  28877. [
  28878. {
  28879. name: "Macro",
  28880. height: math.unit(300, "meters"),
  28881. default: true
  28882. },
  28883. ]
  28884. ))
  28885. characterMakers.push(() => makeCharacter(
  28886. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28887. {
  28888. side: {
  28889. height: math.unit(10 + 7 / 12, "feet"),
  28890. weight: math.unit(2.5, "tons"),
  28891. name: "Side",
  28892. image: {
  28893. source: "./media/characters/aasha/side.svg",
  28894. extra: 1345 / 1245,
  28895. bottom: 111 / 1456
  28896. }
  28897. },
  28898. back: {
  28899. height: math.unit(10 + 7 / 12, "feet"),
  28900. weight: math.unit(2.5, "tons"),
  28901. name: "Back",
  28902. image: {
  28903. source: "./media/characters/aasha/back.svg",
  28904. extra: 1133 / 1057,
  28905. bottom: 257 / 1390
  28906. }
  28907. },
  28908. },
  28909. [
  28910. {
  28911. name: "Normal",
  28912. height: math.unit(10 + 7 / 12, "feet"),
  28913. default: true
  28914. },
  28915. ]
  28916. ))
  28917. characterMakers.push(() => makeCharacter(
  28918. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28919. {
  28920. front: {
  28921. height: math.unit(6 + 3 / 12, "feet"),
  28922. name: "Front",
  28923. image: {
  28924. source: "./media/characters/nevan/front.svg",
  28925. extra: 704 / 704,
  28926. bottom: 28 / 732
  28927. }
  28928. },
  28929. back: {
  28930. height: math.unit(6 + 3 / 12, "feet"),
  28931. name: "Back",
  28932. image: {
  28933. source: "./media/characters/nevan/back.svg",
  28934. extra: 714 / 714,
  28935. bottom: 21 / 735
  28936. }
  28937. },
  28938. frontFlaccid: {
  28939. height: math.unit(6 + 3 / 12, "feet"),
  28940. name: "Front (Flaccid)",
  28941. image: {
  28942. source: "./media/characters/nevan/front-flaccid.svg",
  28943. extra: 704 / 704,
  28944. bottom: 28 / 732
  28945. }
  28946. },
  28947. frontErect: {
  28948. height: math.unit(6 + 3 / 12, "feet"),
  28949. name: "Front (Erect)",
  28950. image: {
  28951. source: "./media/characters/nevan/front-erect.svg",
  28952. extra: 704 / 704,
  28953. bottom: 28 / 732
  28954. }
  28955. },
  28956. backFlaccid: {
  28957. height: math.unit(6 + 3 / 12, "feet"),
  28958. name: "Back (Flaccid)",
  28959. image: {
  28960. source: "./media/characters/nevan/back-flaccid.svg",
  28961. extra: 714 / 714,
  28962. bottom: 21 / 735
  28963. }
  28964. },
  28965. },
  28966. [
  28967. {
  28968. name: "Normal",
  28969. height: math.unit(6 + 3 / 12, "feet"),
  28970. default: true
  28971. },
  28972. ]
  28973. ))
  28974. characterMakers.push(() => makeCharacter(
  28975. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28976. {
  28977. front: {
  28978. height: math.unit(4, "feet"),
  28979. name: "Front",
  28980. image: {
  28981. source: "./media/characters/arhan/front.svg",
  28982. extra: 3368 / 3133,
  28983. bottom: 0 / 3368
  28984. }
  28985. },
  28986. side: {
  28987. height: math.unit(4, "feet"),
  28988. name: "Side",
  28989. image: {
  28990. source: "./media/characters/arhan/side.svg",
  28991. extra: 3347 / 3105,
  28992. bottom: 0 / 3347
  28993. }
  28994. },
  28995. tongue: {
  28996. height: math.unit(1.42, "feet"),
  28997. name: "Tongue",
  28998. image: {
  28999. source: "./media/characters/arhan/tongue.svg"
  29000. }
  29001. },
  29002. head: {
  29003. height: math.unit(0.85, "feet"),
  29004. name: "Head",
  29005. image: {
  29006. source: "./media/characters/arhan/head.svg"
  29007. }
  29008. },
  29009. },
  29010. [
  29011. {
  29012. name: "Normal",
  29013. height: math.unit(4, "feet"),
  29014. default: true
  29015. },
  29016. ]
  29017. ))
  29018. characterMakers.push(() => makeCharacter(
  29019. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29020. {
  29021. front: {
  29022. height: math.unit(5 + 7.5 / 12, "feet"),
  29023. weight: math.unit(120, "lb"),
  29024. name: "Front",
  29025. image: {
  29026. source: "./media/characters/digi-duncan/front.svg",
  29027. extra: 330 / 326,
  29028. bottom: 16 / 346
  29029. }
  29030. },
  29031. side: {
  29032. height: math.unit(5 + 7.5 / 12, "feet"),
  29033. weight: math.unit(120, "lb"),
  29034. name: "Side",
  29035. image: {
  29036. source: "./media/characters/digi-duncan/side.svg",
  29037. extra: 341 / 337,
  29038. bottom: 1 / 342
  29039. }
  29040. },
  29041. back: {
  29042. height: math.unit(5 + 7.5 / 12, "feet"),
  29043. weight: math.unit(120, "lb"),
  29044. name: "Back",
  29045. image: {
  29046. source: "./media/characters/digi-duncan/back.svg",
  29047. extra: 330 / 326,
  29048. bottom: 12 / 342
  29049. }
  29050. },
  29051. },
  29052. [
  29053. {
  29054. name: "Speck",
  29055. height: math.unit(0.25, "mm")
  29056. },
  29057. {
  29058. name: "Micro",
  29059. height: math.unit(5, "mm")
  29060. },
  29061. {
  29062. name: "Tiny",
  29063. height: math.unit(0.5, "inches"),
  29064. default: true
  29065. },
  29066. {
  29067. name: "Human",
  29068. height: math.unit(5 + 7.5 / 12, "feet")
  29069. },
  29070. {
  29071. name: "Minigiant",
  29072. height: math.unit(8 + 5.25, "feet")
  29073. },
  29074. {
  29075. name: "Giant",
  29076. height: math.unit(2000, "feet")
  29077. },
  29078. {
  29079. name: "Mega",
  29080. height: math.unit(371.1, "miles")
  29081. },
  29082. ]
  29083. ))
  29084. characterMakers.push(() => makeCharacter(
  29085. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29086. {
  29087. front: {
  29088. height: math.unit(2, "meters"),
  29089. weight: math.unit(350, "kg"),
  29090. name: "Front",
  29091. image: {
  29092. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29093. extra: 898 / 838,
  29094. bottom: 9 / 907
  29095. }
  29096. },
  29097. },
  29098. [
  29099. {
  29100. name: "Micro",
  29101. height: math.unit(8, "meters")
  29102. },
  29103. {
  29104. name: "Normal",
  29105. height: math.unit(50, "meters"),
  29106. default: true
  29107. },
  29108. {
  29109. name: "Macro",
  29110. height: math.unit(500, "meters")
  29111. },
  29112. ]
  29113. ))
  29114. characterMakers.push(() => makeCharacter(
  29115. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29116. {
  29117. front: {
  29118. height: math.unit(6 + 6 / 12, "feet"),
  29119. name: "Front",
  29120. image: {
  29121. source: "./media/characters/khardesh/front.svg",
  29122. extra: 888 / 797,
  29123. bottom: 25 / 913
  29124. }
  29125. },
  29126. },
  29127. [
  29128. {
  29129. name: "Normal",
  29130. height: math.unit(6 + 6 / 12, "feet"),
  29131. default: true
  29132. },
  29133. {
  29134. name: "Normal+",
  29135. height: math.unit(4, "meters")
  29136. },
  29137. {
  29138. name: "Macro",
  29139. height: math.unit(50, "meters")
  29140. },
  29141. {
  29142. name: "Macro+",
  29143. height: math.unit(100, "meters")
  29144. },
  29145. {
  29146. name: "Megamacro",
  29147. height: math.unit(20, "km")
  29148. },
  29149. ]
  29150. ))
  29151. characterMakers.push(() => makeCharacter(
  29152. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29153. {
  29154. front: {
  29155. height: math.unit(6, "feet"),
  29156. weight: math.unit(150, "lb"),
  29157. name: "Front",
  29158. image: {
  29159. source: "./media/characters/kosho/front.svg",
  29160. extra: 1847 / 1847,
  29161. bottom: 86 / 1933
  29162. }
  29163. },
  29164. },
  29165. [
  29166. {
  29167. name: "Second-stage micro",
  29168. height: math.unit(0.5, "inches")
  29169. },
  29170. {
  29171. name: "First-stage micro",
  29172. height: math.unit(6, "inches")
  29173. },
  29174. {
  29175. name: "Normal",
  29176. height: math.unit(6, "feet"),
  29177. default: true
  29178. },
  29179. {
  29180. name: "First-stage macro",
  29181. height: math.unit(72, "feet")
  29182. },
  29183. {
  29184. name: "Second-stage macro",
  29185. height: math.unit(864, "feet")
  29186. },
  29187. ]
  29188. ))
  29189. characterMakers.push(() => makeCharacter(
  29190. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29191. {
  29192. normal: {
  29193. height: math.unit(4 + 6 / 12, "feet"),
  29194. name: "Normal",
  29195. image: {
  29196. source: "./media/characters/hydra/normal.svg",
  29197. extra: 2833 / 2634,
  29198. bottom: 68 / 2901
  29199. }
  29200. },
  29201. smol: {
  29202. height: math.unit(0.705, "inches"),
  29203. name: "Smol",
  29204. image: {
  29205. source: "./media/characters/hydra/smol.svg",
  29206. extra: 2715 / 2540,
  29207. bottom: 0 / 2715
  29208. }
  29209. },
  29210. },
  29211. [
  29212. {
  29213. name: "Normal",
  29214. height: math.unit(4 + 6 / 12, "feet"),
  29215. default: true
  29216. }
  29217. ]
  29218. ))
  29219. characterMakers.push(() => makeCharacter(
  29220. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29221. {
  29222. front: {
  29223. height: math.unit(0.6, "cm"),
  29224. name: "Front",
  29225. image: {
  29226. source: "./media/characters/daz/front.svg",
  29227. extra: 1682 / 1164,
  29228. bottom: 42 / 1724
  29229. }
  29230. },
  29231. },
  29232. [
  29233. {
  29234. name: "Normal",
  29235. height: math.unit(0.6, "cm"),
  29236. default: true
  29237. },
  29238. ]
  29239. ))
  29240. characterMakers.push(() => makeCharacter(
  29241. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29242. {
  29243. front: {
  29244. height: math.unit(6, "feet"),
  29245. weight: math.unit(235, "lb"),
  29246. name: "Front",
  29247. image: {
  29248. source: "./media/characters/theo-pangolin/front.svg",
  29249. extra: 1996 / 1969,
  29250. bottom: 115 / 2111
  29251. }
  29252. },
  29253. back: {
  29254. height: math.unit(6, "feet"),
  29255. weight: math.unit(235, "lb"),
  29256. name: "Back",
  29257. image: {
  29258. source: "./media/characters/theo-pangolin/back.svg",
  29259. extra: 1979 / 1979,
  29260. bottom: 40 / 2019
  29261. }
  29262. },
  29263. feral: {
  29264. height: math.unit(2, "feet"),
  29265. weight: math.unit(30, "lb"),
  29266. name: "Feral",
  29267. image: {
  29268. source: "./media/characters/theo-pangolin/feral.svg",
  29269. extra: 803 / 791,
  29270. bottom: 181 / 984
  29271. }
  29272. },
  29273. footFive: {
  29274. height: math.unit(1.43, "feet"),
  29275. name: "Foot (Five Toes)",
  29276. image: {
  29277. source: "./media/characters/theo-pangolin/foot-five.svg"
  29278. }
  29279. },
  29280. footFour: {
  29281. height: math.unit(1.43, "feet"),
  29282. name: "Foot (Four Toes)",
  29283. image: {
  29284. source: "./media/characters/theo-pangolin/foot-four.svg"
  29285. }
  29286. },
  29287. handFour: {
  29288. height: math.unit(0.81, "feet"),
  29289. name: "Hand (Four Fingers)",
  29290. image: {
  29291. source: "./media/characters/theo-pangolin/hand-four.svg"
  29292. }
  29293. },
  29294. handThree: {
  29295. height: math.unit(0.81, "feet"),
  29296. name: "Hand (Three Fingers)",
  29297. image: {
  29298. source: "./media/characters/theo-pangolin/hand-three.svg"
  29299. }
  29300. },
  29301. headFront: {
  29302. height: math.unit(1.37, "feet"),
  29303. name: "Head (Front)",
  29304. image: {
  29305. source: "./media/characters/theo-pangolin/head-front.svg"
  29306. }
  29307. },
  29308. headSide: {
  29309. height: math.unit(1.43, "feet"),
  29310. name: "Head (Side)",
  29311. image: {
  29312. source: "./media/characters/theo-pangolin/head-side.svg"
  29313. }
  29314. },
  29315. tongue: {
  29316. height: math.unit(2.29, "feet"),
  29317. name: "Tongue",
  29318. image: {
  29319. source: "./media/characters/theo-pangolin/tongue.svg"
  29320. }
  29321. },
  29322. },
  29323. [
  29324. {
  29325. name: "Normal",
  29326. height: math.unit(6, "feet")
  29327. },
  29328. {
  29329. name: "Macro",
  29330. height: math.unit(400, "feet"),
  29331. default: true
  29332. },
  29333. ]
  29334. ))
  29335. characterMakers.push(() => makeCharacter(
  29336. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29337. {
  29338. front: {
  29339. height: math.unit(6, "inches"),
  29340. weight: math.unit(0.036, "kg"),
  29341. name: "Front",
  29342. image: {
  29343. source: "./media/characters/renée/front.svg",
  29344. extra: 900 / 886,
  29345. bottom: 8 / 908
  29346. }
  29347. },
  29348. },
  29349. [
  29350. {
  29351. name: "Nano",
  29352. height: math.unit(1, "nm")
  29353. },
  29354. {
  29355. name: "Micro",
  29356. height: math.unit(1, "mm")
  29357. },
  29358. {
  29359. name: "Normal",
  29360. height: math.unit(6, "inches")
  29361. },
  29362. {
  29363. name: "Macro",
  29364. height: math.unit(2000, "feet"),
  29365. default: true
  29366. },
  29367. {
  29368. name: "Megamacro",
  29369. height: math.unit(2, "km")
  29370. },
  29371. {
  29372. name: "Gigamacro",
  29373. height: math.unit(2000, "km")
  29374. },
  29375. {
  29376. name: "Teramacro",
  29377. height: math.unit(250000, "km")
  29378. },
  29379. ]
  29380. ))
  29381. characterMakers.push(() => makeCharacter(
  29382. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29383. {
  29384. front: {
  29385. height: math.unit(4, "meters"),
  29386. weight: math.unit(150, "kg"),
  29387. name: "Front",
  29388. image: {
  29389. source: "./media/characters/caledvwlch/front.svg",
  29390. extra: 1760 / 1551,
  29391. bottom: 28 / 1788
  29392. }
  29393. },
  29394. side: {
  29395. height: math.unit(4, "meters"),
  29396. weight: math.unit(150, "kg"),
  29397. name: "Side",
  29398. image: {
  29399. source: "./media/characters/caledvwlch/side.svg",
  29400. extra: 1605 / 1536,
  29401. bottom: 31 / 1636
  29402. }
  29403. },
  29404. back: {
  29405. height: math.unit(4, "meters"),
  29406. weight: math.unit(150, "kg"),
  29407. name: "Back",
  29408. image: {
  29409. source: "./media/characters/caledvwlch/back.svg",
  29410. extra: 1635 / 1565,
  29411. bottom: 27 / 1662
  29412. }
  29413. },
  29414. },
  29415. [
  29416. {
  29417. name: "\"Incognito\"",
  29418. height: math.unit(4, "meters")
  29419. },
  29420. {
  29421. name: "Small rampage",
  29422. height: math.unit(600, "meters")
  29423. },
  29424. {
  29425. name: "Mega",
  29426. height: math.unit(30, "km")
  29427. },
  29428. {
  29429. name: "Home-size",
  29430. height: math.unit(50, "km"),
  29431. default: true
  29432. },
  29433. {
  29434. name: "Giga",
  29435. height: math.unit(300, "km")
  29436. },
  29437. {
  29438. name: "Lounging",
  29439. height: math.unit(11000, "km")
  29440. },
  29441. {
  29442. name: "Planet snacking",
  29443. height: math.unit(2000000, "km")
  29444. },
  29445. ]
  29446. ))
  29447. characterMakers.push(() => makeCharacter(
  29448. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29449. {
  29450. front: {
  29451. height: math.unit(6, "feet"),
  29452. weight: math.unit(215, "lb"),
  29453. name: "Front",
  29454. image: {
  29455. source: "./media/characters/sapphire-svell/front.svg",
  29456. extra: 495 / 455,
  29457. bottom: 20 / 515
  29458. }
  29459. },
  29460. back: {
  29461. height: math.unit(6, "feet"),
  29462. weight: math.unit(216, "lb"),
  29463. name: "Back",
  29464. image: {
  29465. source: "./media/characters/sapphire-svell/back.svg",
  29466. extra: 497 / 477,
  29467. bottom: 7 / 504
  29468. }
  29469. },
  29470. maw: {
  29471. height: math.unit(1.57, "feet"),
  29472. name: "Maw",
  29473. image: {
  29474. source: "./media/characters/sapphire-svell/maw.svg"
  29475. }
  29476. },
  29477. foot: {
  29478. height: math.unit(1.07, "feet"),
  29479. name: "Foot",
  29480. image: {
  29481. source: "./media/characters/sapphire-svell/foot.svg"
  29482. }
  29483. },
  29484. toering: {
  29485. height: math.unit(1.7, "inch"),
  29486. name: "Toering",
  29487. image: {
  29488. source: "./media/characters/sapphire-svell/toering.svg"
  29489. }
  29490. },
  29491. },
  29492. [
  29493. {
  29494. name: "Normal",
  29495. height: math.unit(300, "feet"),
  29496. default: true
  29497. },
  29498. {
  29499. name: "Augmented",
  29500. height: math.unit(1250, "feet")
  29501. },
  29502. {
  29503. name: "Unleashed",
  29504. height: math.unit(3000, "feet")
  29505. },
  29506. ]
  29507. ))
  29508. characterMakers.push(() => makeCharacter(
  29509. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29510. {
  29511. side: {
  29512. height: math.unit(2 + 3 / 12, "feet"),
  29513. weight: math.unit(110, "lb"),
  29514. name: "Side",
  29515. image: {
  29516. source: "./media/characters/glitch-flux/side.svg",
  29517. extra: 997 / 805,
  29518. bottom: 20 / 1017
  29519. }
  29520. },
  29521. },
  29522. [
  29523. {
  29524. name: "Normal",
  29525. height: math.unit(2 + 3 / 12, "feet"),
  29526. default: true
  29527. },
  29528. ]
  29529. ))
  29530. characterMakers.push(() => makeCharacter(
  29531. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29532. {
  29533. front: {
  29534. height: math.unit(4, "meters"),
  29535. name: "Front",
  29536. image: {
  29537. source: "./media/characters/mid/front.svg",
  29538. extra: 507 / 476,
  29539. bottom: 17 / 524
  29540. }
  29541. },
  29542. back: {
  29543. height: math.unit(4, "meters"),
  29544. name: "Back",
  29545. image: {
  29546. source: "./media/characters/mid/back.svg",
  29547. extra: 519 / 487,
  29548. bottom: 7 / 526
  29549. }
  29550. },
  29551. stuck: {
  29552. height: math.unit(2.2, "meters"),
  29553. name: "Stuck",
  29554. image: {
  29555. source: "./media/characters/mid/stuck.svg",
  29556. extra: 1951 / 1869,
  29557. bottom: 88 / 2039
  29558. }
  29559. }
  29560. },
  29561. [
  29562. {
  29563. name: "Normal",
  29564. height: math.unit(4, "meters"),
  29565. default: true
  29566. },
  29567. {
  29568. name: "Big",
  29569. height: math.unit(10, "meters")
  29570. },
  29571. {
  29572. name: "Macro",
  29573. height: math.unit(800, "meters")
  29574. },
  29575. {
  29576. name: "Megamacro",
  29577. height: math.unit(100, "km")
  29578. },
  29579. {
  29580. name: "Overgrown",
  29581. height: math.unit(1, "parsec")
  29582. },
  29583. ]
  29584. ))
  29585. characterMakers.push(() => makeCharacter(
  29586. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29587. {
  29588. front: {
  29589. height: math.unit(2.5, "meters"),
  29590. weight: math.unit(225, "kg"),
  29591. name: "Front",
  29592. image: {
  29593. source: "./media/characters/iris/front.svg",
  29594. extra: 3348 / 3251,
  29595. bottom: 205 / 3553
  29596. }
  29597. },
  29598. maw: {
  29599. height: math.unit(0.56, "meter"),
  29600. name: "Maw",
  29601. image: {
  29602. source: "./media/characters/iris/maw.svg"
  29603. }
  29604. },
  29605. },
  29606. [
  29607. {
  29608. name: "Mewter cat",
  29609. height: math.unit(1.2, "meters")
  29610. },
  29611. {
  29612. name: "Minimacro",
  29613. height: math.unit(2.5, "meters"),
  29614. default: true
  29615. },
  29616. {
  29617. name: "Macro",
  29618. height: math.unit(180, "meters")
  29619. },
  29620. {
  29621. name: "Megamacro",
  29622. height: math.unit(2746, "meters")
  29623. },
  29624. ]
  29625. ))
  29626. characterMakers.push(() => makeCharacter(
  29627. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29628. {
  29629. front: {
  29630. height: math.unit(6, "feet"),
  29631. weight: math.unit(135, "lb"),
  29632. name: "Front",
  29633. image: {
  29634. source: "./media/characters/axel/front.svg",
  29635. extra: 908 / 908,
  29636. bottom: 58 / 966
  29637. }
  29638. },
  29639. side: {
  29640. height: math.unit(6, "feet"),
  29641. weight: math.unit(135, "lb"),
  29642. name: "Side",
  29643. image: {
  29644. source: "./media/characters/axel/side.svg",
  29645. extra: 958 / 958,
  29646. bottom: 11 / 969
  29647. }
  29648. },
  29649. back: {
  29650. height: math.unit(6, "feet"),
  29651. weight: math.unit(135, "lb"),
  29652. name: "Back",
  29653. image: {
  29654. source: "./media/characters/axel/back.svg",
  29655. extra: 887 / 887,
  29656. bottom: 34 / 921
  29657. }
  29658. },
  29659. head: {
  29660. height: math.unit(1.07, "feet"),
  29661. name: "Head",
  29662. image: {
  29663. source: "./media/characters/axel/head.svg"
  29664. }
  29665. },
  29666. beak: {
  29667. height: math.unit(1.4, "feet"),
  29668. name: "Beak",
  29669. image: {
  29670. source: "./media/characters/axel/beak.svg"
  29671. }
  29672. },
  29673. beakSide: {
  29674. height: math.unit(1.4, "feet"),
  29675. name: "Beak Side",
  29676. image: {
  29677. source: "./media/characters/axel/beak-side.svg"
  29678. }
  29679. },
  29680. sheath: {
  29681. height: math.unit(0.5, "feet"),
  29682. name: "Sheath",
  29683. image: {
  29684. source: "./media/characters/axel/sheath.svg"
  29685. }
  29686. },
  29687. dick: {
  29688. height: math.unit(0.98, "feet"),
  29689. name: "Dick",
  29690. image: {
  29691. source: "./media/characters/axel/dick.svg"
  29692. }
  29693. },
  29694. },
  29695. [
  29696. {
  29697. name: "Macro",
  29698. height: math.unit(68, "meters"),
  29699. default: true
  29700. },
  29701. ]
  29702. ))
  29703. characterMakers.push(() => makeCharacter(
  29704. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29705. {
  29706. front: {
  29707. height: math.unit(3.5, "meters"),
  29708. weight: math.unit(1200, "kg"),
  29709. name: "Front",
  29710. image: {
  29711. source: "./media/characters/joanna/front.svg",
  29712. extra: 1596 / 1488,
  29713. bottom: 29 / 1625
  29714. }
  29715. },
  29716. back: {
  29717. height: math.unit(3.5, "meters"),
  29718. weight: math.unit(1200, "kg"),
  29719. name: "Back",
  29720. image: {
  29721. source: "./media/characters/joanna/back.svg",
  29722. extra: 1594 / 1495,
  29723. bottom: 26 / 1620
  29724. }
  29725. },
  29726. frontShorts: {
  29727. height: math.unit(3.5, "meters"),
  29728. weight: math.unit(1200, "kg"),
  29729. name: "Front (Shorts)",
  29730. image: {
  29731. source: "./media/characters/joanna/front-shorts.svg",
  29732. extra: 1596 / 1488,
  29733. bottom: 29 / 1625
  29734. }
  29735. },
  29736. frontBiker: {
  29737. height: math.unit(3.5, "meters"),
  29738. weight: math.unit(1200, "kg"),
  29739. name: "Front (Biker)",
  29740. image: {
  29741. source: "./media/characters/joanna/front-biker.svg",
  29742. extra: 1596 / 1488,
  29743. bottom: 29 / 1625
  29744. }
  29745. },
  29746. backBiker: {
  29747. height: math.unit(3.5, "meters"),
  29748. weight: math.unit(1200, "kg"),
  29749. name: "Back (Biker)",
  29750. image: {
  29751. source: "./media/characters/joanna/back-biker.svg",
  29752. extra: 1594 / 1495,
  29753. bottom: 88 / 1682
  29754. }
  29755. },
  29756. bikeLeft: {
  29757. height: math.unit(2.4, "meters"),
  29758. weight: math.unit(1600, "kg"),
  29759. name: "Bike (Left)",
  29760. image: {
  29761. source: "./media/characters/joanna/bike-left.svg",
  29762. extra: 720 / 720,
  29763. bottom: 8 / 728
  29764. }
  29765. },
  29766. bikeRight: {
  29767. height: math.unit(2.4, "meters"),
  29768. weight: math.unit(1600, "kg"),
  29769. name: "Bike (Right)",
  29770. image: {
  29771. source: "./media/characters/joanna/bike-right.svg",
  29772. extra: 720 / 720,
  29773. bottom: 8 / 728
  29774. }
  29775. },
  29776. },
  29777. [
  29778. {
  29779. name: "Incognito",
  29780. height: math.unit(3.5, "meters")
  29781. },
  29782. {
  29783. name: "Casual Big",
  29784. height: math.unit(200, "meters")
  29785. },
  29786. {
  29787. name: "Macro",
  29788. height: math.unit(600, "meters")
  29789. },
  29790. {
  29791. name: "Original",
  29792. height: math.unit(20, "km"),
  29793. default: true
  29794. },
  29795. {
  29796. name: "Giga",
  29797. height: math.unit(400, "km")
  29798. },
  29799. {
  29800. name: "Lounging",
  29801. height: math.unit(1500, "km")
  29802. },
  29803. {
  29804. name: "Planetary",
  29805. height: math.unit(200000, "km")
  29806. },
  29807. ]
  29808. ))
  29809. characterMakers.push(() => makeCharacter(
  29810. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29811. {
  29812. front: {
  29813. height: math.unit(6, "feet"),
  29814. weight: math.unit(150, "lb"),
  29815. name: "Front",
  29816. image: {
  29817. source: "./media/characters/hugo-sigil/front.svg",
  29818. extra: 522 / 500,
  29819. bottom: 2 / 524
  29820. }
  29821. },
  29822. back: {
  29823. height: math.unit(6, "feet"),
  29824. weight: math.unit(150, "lb"),
  29825. name: "Back",
  29826. image: {
  29827. source: "./media/characters/hugo-sigil/back.svg",
  29828. extra: 519 / 495,
  29829. bottom: 5 / 524
  29830. }
  29831. },
  29832. maw: {
  29833. height: math.unit(1.4, "feet"),
  29834. weight: math.unit(150, "lb"),
  29835. name: "Maw",
  29836. image: {
  29837. source: "./media/characters/hugo-sigil/maw.svg"
  29838. }
  29839. },
  29840. feet: {
  29841. height: math.unit(1.56, "feet"),
  29842. weight: math.unit(150, "lb"),
  29843. name: "Feet",
  29844. image: {
  29845. source: "./media/characters/hugo-sigil/feet.svg",
  29846. extra: 177 / 177,
  29847. bottom: 12 / 189
  29848. }
  29849. },
  29850. },
  29851. [
  29852. {
  29853. name: "Normal",
  29854. height: math.unit(6, "feet")
  29855. },
  29856. {
  29857. name: "Macro",
  29858. height: math.unit(200, "feet"),
  29859. default: true
  29860. },
  29861. ]
  29862. ))
  29863. characterMakers.push(() => makeCharacter(
  29864. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29865. {
  29866. front: {
  29867. height: math.unit(6, "feet"),
  29868. weight: math.unit(150, "lb"),
  29869. name: "Front",
  29870. image: {
  29871. source: "./media/characters/peri/front.svg",
  29872. extra: 2354 / 2233,
  29873. bottom: 49 / 2403
  29874. }
  29875. },
  29876. },
  29877. [
  29878. {
  29879. name: "Really Small",
  29880. height: math.unit(1, "nm")
  29881. },
  29882. {
  29883. name: "Micro",
  29884. height: math.unit(4, "inches")
  29885. },
  29886. {
  29887. name: "Normal",
  29888. height: math.unit(7, "inches"),
  29889. default: true
  29890. },
  29891. {
  29892. name: "Macro",
  29893. height: math.unit(400, "feet")
  29894. },
  29895. {
  29896. name: "Megamacro",
  29897. height: math.unit(100, "miles")
  29898. },
  29899. ]
  29900. ))
  29901. characterMakers.push(() => makeCharacter(
  29902. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29903. {
  29904. frontSlim: {
  29905. height: math.unit(7, "feet"),
  29906. name: "Front (Slim)",
  29907. image: {
  29908. source: "./media/characters/issilora/front-slim.svg",
  29909. extra: 529 / 449,
  29910. bottom: 53 / 582
  29911. }
  29912. },
  29913. sideSlim: {
  29914. height: math.unit(7, "feet"),
  29915. name: "Side (Slim)",
  29916. image: {
  29917. source: "./media/characters/issilora/side-slim.svg",
  29918. extra: 570 / 480,
  29919. bottom: 30 / 600
  29920. }
  29921. },
  29922. backSlim: {
  29923. height: math.unit(7, "feet"),
  29924. name: "Back (Slim)",
  29925. image: {
  29926. source: "./media/characters/issilora/back-slim.svg",
  29927. extra: 537 / 455,
  29928. bottom: 46 / 583
  29929. }
  29930. },
  29931. frontBuff: {
  29932. height: math.unit(7, "feet"),
  29933. name: "Front (Buff)",
  29934. image: {
  29935. source: "./media/characters/issilora/front-buff.svg",
  29936. extra: 2310 / 2035,
  29937. bottom: 335 / 2645
  29938. }
  29939. },
  29940. head: {
  29941. height: math.unit(1.94, "feet"),
  29942. name: "Head",
  29943. image: {
  29944. source: "./media/characters/issilora/head.svg"
  29945. }
  29946. },
  29947. },
  29948. [
  29949. {
  29950. name: "Minimum",
  29951. height: math.unit(7, "feet")
  29952. },
  29953. {
  29954. name: "Comfortable",
  29955. height: math.unit(17, "feet")
  29956. },
  29957. {
  29958. name: "Fun Size",
  29959. height: math.unit(47, "feet")
  29960. },
  29961. {
  29962. name: "Natural Macro",
  29963. height: math.unit(137, "feet"),
  29964. default: true
  29965. },
  29966. {
  29967. name: "Maximum Kaiju",
  29968. height: math.unit(397, "feet")
  29969. },
  29970. ]
  29971. ))
  29972. characterMakers.push(() => makeCharacter(
  29973. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29974. {
  29975. front: {
  29976. height: math.unit(50 + 9/12, "feet"),
  29977. weight: math.unit(32.8, "tons"),
  29978. name: "Front",
  29979. image: {
  29980. source: "./media/characters/irb'iiritaahn/front.svg",
  29981. extra: 1878/1826,
  29982. bottom: 326/2204
  29983. }
  29984. },
  29985. back: {
  29986. height: math.unit(50 + 9/12, "feet"),
  29987. weight: math.unit(32.8, "tons"),
  29988. name: "Back",
  29989. image: {
  29990. source: "./media/characters/irb'iiritaahn/back.svg",
  29991. extra: 2052/2018,
  29992. bottom: 152/2204
  29993. }
  29994. },
  29995. head: {
  29996. height: math.unit(12.86, "feet"),
  29997. name: "Head",
  29998. image: {
  29999. source: "./media/characters/irb'iiritaahn/head.svg"
  30000. }
  30001. },
  30002. maw: {
  30003. height: math.unit(9.66, "feet"),
  30004. name: "Maw",
  30005. image: {
  30006. source: "./media/characters/irb'iiritaahn/maw.svg"
  30007. }
  30008. },
  30009. frontDick: {
  30010. height: math.unit(8.78461, "feet"),
  30011. name: "Front Dick",
  30012. image: {
  30013. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30014. }
  30015. },
  30016. rearDick: {
  30017. height: math.unit(8.78461, "feet"),
  30018. name: "Rear Dick",
  30019. image: {
  30020. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30021. }
  30022. },
  30023. rearDickUnfolded: {
  30024. height: math.unit(8.78, "feet"),
  30025. name: "Rear Dick (Unfolded)",
  30026. image: {
  30027. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30028. }
  30029. },
  30030. wings: {
  30031. height: math.unit(43, "feet"),
  30032. name: "Wings",
  30033. image: {
  30034. source: "./media/characters/irb'iiritaahn/wings.svg"
  30035. }
  30036. },
  30037. },
  30038. [
  30039. {
  30040. name: "Macro",
  30041. height: math.unit(50 + 9/12, "feet"),
  30042. default: true
  30043. },
  30044. ]
  30045. ))
  30046. characterMakers.push(() => makeCharacter(
  30047. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30048. {
  30049. front: {
  30050. height: math.unit(205, "cm"),
  30051. weight: math.unit(102, "kg"),
  30052. name: "Front",
  30053. image: {
  30054. source: "./media/characters/irbisgreif/front.svg",
  30055. extra: 785/706,
  30056. bottom: 13/798
  30057. }
  30058. },
  30059. back: {
  30060. height: math.unit(205, "cm"),
  30061. weight: math.unit(102, "kg"),
  30062. name: "Back",
  30063. image: {
  30064. source: "./media/characters/irbisgreif/back.svg",
  30065. extra: 713/701,
  30066. bottom: 26/739
  30067. }
  30068. },
  30069. frontDressed: {
  30070. height: math.unit(216, "cm"),
  30071. weight: math.unit(102, "kg"),
  30072. name: "Front-dressed",
  30073. image: {
  30074. source: "./media/characters/irbisgreif/front-dressed.svg",
  30075. extra: 902/776,
  30076. bottom: 14/916
  30077. }
  30078. },
  30079. sideDressed: {
  30080. height: math.unit(195, "cm"),
  30081. weight: math.unit(102, "kg"),
  30082. name: "Side-dressed",
  30083. image: {
  30084. source: "./media/characters/irbisgreif/side-dressed.svg",
  30085. extra: 788/688,
  30086. bottom: 21/809
  30087. }
  30088. },
  30089. backDressed: {
  30090. height: math.unit(216, "cm"),
  30091. weight: math.unit(102, "kg"),
  30092. name: "Back-dressed",
  30093. image: {
  30094. source: "./media/characters/irbisgreif/back-dressed.svg",
  30095. extra: 901/783,
  30096. bottom: 10/911
  30097. }
  30098. },
  30099. dick: {
  30100. height: math.unit(0.49, "feet"),
  30101. name: "Dick",
  30102. image: {
  30103. source: "./media/characters/irbisgreif/dick.svg"
  30104. }
  30105. },
  30106. wingTop: {
  30107. height: math.unit(1.93 , "feet"),
  30108. name: "Wing-top",
  30109. image: {
  30110. source: "./media/characters/irbisgreif/wing-top.svg"
  30111. }
  30112. },
  30113. wingBottom: {
  30114. height: math.unit(1.93 , "feet"),
  30115. name: "Wing-bottom",
  30116. image: {
  30117. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30118. }
  30119. },
  30120. },
  30121. [
  30122. {
  30123. name: "Normal",
  30124. height: math.unit(216, "cm"),
  30125. default: true
  30126. },
  30127. ]
  30128. ))
  30129. characterMakers.push(() => makeCharacter(
  30130. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30131. {
  30132. front: {
  30133. height: math.unit(6, "feet"),
  30134. weight: math.unit(150, "lb"),
  30135. name: "Front",
  30136. image: {
  30137. source: "./media/characters/pride/front.svg",
  30138. extra: 1299/1230,
  30139. bottom: 18/1317
  30140. }
  30141. },
  30142. },
  30143. [
  30144. {
  30145. name: "Normal",
  30146. height: math.unit(7, "feet")
  30147. },
  30148. {
  30149. name: "Mini-macro",
  30150. height: math.unit(11, "feet")
  30151. },
  30152. {
  30153. name: "Macro",
  30154. height: math.unit(15, "meters"),
  30155. default: true
  30156. },
  30157. {
  30158. name: "Macro+",
  30159. height: math.unit(40, "meters")
  30160. },
  30161. ]
  30162. ))
  30163. characterMakers.push(() => makeCharacter(
  30164. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30165. {
  30166. front: {
  30167. height: math.unit(4 + 2 / 12, "feet"),
  30168. weight: math.unit(95, "lb"),
  30169. name: "Front",
  30170. image: {
  30171. source: "./media/characters/vaelophis-nyx/front.svg",
  30172. extra: 2532/2330,
  30173. bottom: 0/2532
  30174. }
  30175. },
  30176. back: {
  30177. height: math.unit(4 + 2 / 12, "feet"),
  30178. weight: math.unit(95, "lb"),
  30179. name: "Back",
  30180. image: {
  30181. source: "./media/characters/vaelophis-nyx/back.svg",
  30182. extra: 2484/2361,
  30183. bottom: 0/2484
  30184. }
  30185. },
  30186. feralSide: {
  30187. height: math.unit(2 + 1/12, "feet"),
  30188. weight: math.unit(20, "lb"),
  30189. name: "Feral (Side)",
  30190. image: {
  30191. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30192. extra: 1721/1581,
  30193. bottom: 70/1791
  30194. }
  30195. },
  30196. feralLazing: {
  30197. height: math.unit(1.08, "feet"),
  30198. weight: math.unit(20, "lb"),
  30199. name: "Feral (Lazing)",
  30200. image: {
  30201. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30202. extra: 822/822,
  30203. bottom: 248/1070
  30204. }
  30205. },
  30206. ear: {
  30207. height: math.unit(0.416, "feet"),
  30208. name: "Ear",
  30209. image: {
  30210. source: "./media/characters/vaelophis-nyx/ear.svg"
  30211. }
  30212. },
  30213. eye: {
  30214. height: math.unit(0.0748, "feet"),
  30215. name: "Eye",
  30216. image: {
  30217. source: "./media/characters/vaelophis-nyx/eye.svg"
  30218. }
  30219. },
  30220. mouth: {
  30221. height: math.unit(0.378, "feet"),
  30222. name: "Mouth",
  30223. image: {
  30224. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30225. }
  30226. },
  30227. spade: {
  30228. height: math.unit(0.55, "feet"),
  30229. name: "Spade",
  30230. image: {
  30231. source: "./media/characters/vaelophis-nyx/spade.svg"
  30232. }
  30233. },
  30234. },
  30235. [
  30236. {
  30237. name: "Normal",
  30238. height: math.unit(4 + 2/12, "feet"),
  30239. default: true
  30240. },
  30241. ]
  30242. ))
  30243. characterMakers.push(() => makeCharacter(
  30244. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30245. {
  30246. front: {
  30247. height: math.unit(7, "feet"),
  30248. weight: math.unit(231, "lb"),
  30249. name: "Front",
  30250. image: {
  30251. source: "./media/characters/flux/front.svg",
  30252. extra: 919/871,
  30253. bottom: 0/919
  30254. }
  30255. },
  30256. back: {
  30257. height: math.unit(7, "feet"),
  30258. weight: math.unit(231, "lb"),
  30259. name: "Back",
  30260. image: {
  30261. source: "./media/characters/flux/back.svg",
  30262. extra: 1040/992,
  30263. bottom: 0/1040
  30264. }
  30265. },
  30266. frontDressed: {
  30267. height: math.unit(7, "feet"),
  30268. weight: math.unit(231, "lb"),
  30269. name: "Front (Dressed)",
  30270. image: {
  30271. source: "./media/characters/flux/front-dressed.svg",
  30272. extra: 919/871,
  30273. bottom: 0/919
  30274. }
  30275. },
  30276. feralSide: {
  30277. height: math.unit(5, "feet"),
  30278. weight: math.unit(150, "lb"),
  30279. name: "Feral (Side)",
  30280. image: {
  30281. source: "./media/characters/flux/feral-side.svg",
  30282. extra: 598/528,
  30283. bottom: 28/626
  30284. }
  30285. },
  30286. head: {
  30287. height: math.unit(1.585, "feet"),
  30288. name: "Head",
  30289. image: {
  30290. source: "./media/characters/flux/head.svg"
  30291. }
  30292. },
  30293. headSide: {
  30294. height: math.unit(1.74, "feet"),
  30295. name: "Head (Side)",
  30296. image: {
  30297. source: "./media/characters/flux/head-side.svg"
  30298. }
  30299. },
  30300. headSideFire: {
  30301. height: math.unit(1.76, "feet"),
  30302. name: "Head (Side, Fire)",
  30303. image: {
  30304. source: "./media/characters/flux/head-side-fire.svg"
  30305. }
  30306. },
  30307. },
  30308. [
  30309. {
  30310. name: "Normal",
  30311. height: math.unit(7, "feet"),
  30312. default: true
  30313. },
  30314. ]
  30315. ))
  30316. characterMakers.push(() => makeCharacter(
  30317. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30318. {
  30319. front: {
  30320. height: math.unit(9, "feet"),
  30321. weight: math.unit(1012, "lb"),
  30322. name: "Front",
  30323. image: {
  30324. source: "./media/characters/ulfra-lupae/front.svg",
  30325. extra: 1083/1011,
  30326. bottom: 67/1150
  30327. }
  30328. },
  30329. },
  30330. [
  30331. {
  30332. name: "Micro",
  30333. height: math.unit(6, "inches")
  30334. },
  30335. {
  30336. name: "Socializing",
  30337. height: math.unit(6 + 5/12, "feet")
  30338. },
  30339. {
  30340. name: "Normal",
  30341. height: math.unit(9, "feet"),
  30342. default: true
  30343. },
  30344. {
  30345. name: "Macro",
  30346. height: math.unit(150, "feet")
  30347. },
  30348. ]
  30349. ))
  30350. characterMakers.push(() => makeCharacter(
  30351. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30352. {
  30353. front: {
  30354. height: math.unit(5 + 2/12, "feet"),
  30355. weight: math.unit(120, "lb"),
  30356. name: "Front",
  30357. image: {
  30358. source: "./media/characters/timber/front.svg",
  30359. extra: 2814/2705,
  30360. bottom: 181/2995
  30361. }
  30362. },
  30363. },
  30364. [
  30365. {
  30366. name: "Normal",
  30367. height: math.unit(5 + 2/12, "feet"),
  30368. default: true
  30369. },
  30370. ]
  30371. ))
  30372. characterMakers.push(() => makeCharacter(
  30373. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30374. {
  30375. front: {
  30376. height: math.unit(5 + 7/12, "feet"),
  30377. weight: math.unit(220, "lb"),
  30378. name: "Front",
  30379. image: {
  30380. source: "./media/characters/nicki/front.svg",
  30381. extra: 453/419,
  30382. bottom: 7/460
  30383. }
  30384. },
  30385. frontAlt: {
  30386. height: math.unit(5 + 7/12, "feet"),
  30387. weight: math.unit(220, "lb"),
  30388. name: "Front-alt",
  30389. image: {
  30390. source: "./media/characters/nicki/front-alt.svg",
  30391. extra: 435/411,
  30392. bottom: 12/447
  30393. }
  30394. },
  30395. back: {
  30396. height: math.unit(5 + 7/12, "feet"),
  30397. weight: math.unit(220, "lb"),
  30398. name: "Back",
  30399. image: {
  30400. source: "./media/characters/nicki/back.svg",
  30401. extra: 440/413,
  30402. bottom: 19/459
  30403. }
  30404. },
  30405. taur: {
  30406. height: math.unit(7 + 6/12, "feet"),
  30407. weight: math.unit(700, "lb"),
  30408. name: "Taur",
  30409. image: {
  30410. source: "./media/characters/nicki/taur.svg",
  30411. extra: 975/773,
  30412. bottom: 0/975
  30413. }
  30414. },
  30415. frontNsfw: {
  30416. height: math.unit(5 + 7/12, "feet"),
  30417. weight: math.unit(220, "lb"),
  30418. name: "Front (NSFW)",
  30419. image: {
  30420. source: "./media/characters/nicki/front-nsfw.svg",
  30421. extra: 453/419,
  30422. bottom: 7/460
  30423. }
  30424. },
  30425. frontNsfwAlt: {
  30426. height: math.unit(5 + 7/12, "feet"),
  30427. weight: math.unit(220, "lb"),
  30428. name: "Front (Alt, NSFW)",
  30429. image: {
  30430. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30431. extra: 435/411,
  30432. bottom: 12/447
  30433. }
  30434. },
  30435. backNsfw: {
  30436. height: math.unit(5 + 7/12, "feet"),
  30437. weight: math.unit(220, "lb"),
  30438. name: "Back (NSFW)",
  30439. image: {
  30440. source: "./media/characters/nicki/back-nsfw.svg",
  30441. extra: 440/413,
  30442. bottom: 19/459
  30443. }
  30444. },
  30445. head: {
  30446. height: math.unit(2.1, "feet"),
  30447. name: "Head",
  30448. image: {
  30449. source: "./media/characters/nicki/head.svg"
  30450. }
  30451. },
  30452. paw: {
  30453. height: math.unit(1.88, "feet"),
  30454. name: "Paw",
  30455. image: {
  30456. source: "./media/characters/nicki/paw.svg"
  30457. }
  30458. },
  30459. },
  30460. [
  30461. {
  30462. name: "Normal",
  30463. height: math.unit(5 + 7/12, "feet"),
  30464. default: true
  30465. },
  30466. ]
  30467. ))
  30468. characterMakers.push(() => makeCharacter(
  30469. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30470. {
  30471. front: {
  30472. height: math.unit(7 + 10/12, "feet"),
  30473. weight: math.unit(3.5, "tons"),
  30474. name: "Front",
  30475. image: {
  30476. source: "./media/characters/lee/front.svg",
  30477. extra: 1773/1615,
  30478. bottom: 86/1859
  30479. }
  30480. },
  30481. hand: {
  30482. height: math.unit(1.78, "feet"),
  30483. name: "Hand",
  30484. image: {
  30485. source: "./media/characters/lee/hand.svg"
  30486. }
  30487. },
  30488. maw: {
  30489. height: math.unit(1.18, "feet"),
  30490. name: "Maw",
  30491. image: {
  30492. source: "./media/characters/lee/maw.svg"
  30493. }
  30494. },
  30495. },
  30496. [
  30497. {
  30498. name: "Normal",
  30499. height: math.unit(7 + 10/12, "feet"),
  30500. default: true
  30501. },
  30502. ]
  30503. ))
  30504. characterMakers.push(() => makeCharacter(
  30505. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30506. {
  30507. front: {
  30508. height: math.unit(9, "feet"),
  30509. name: "Front",
  30510. image: {
  30511. source: "./media/characters/guti/front.svg",
  30512. extra: 4551/4355,
  30513. bottom: 123/4674
  30514. }
  30515. },
  30516. tongue: {
  30517. height: math.unit(1, "feet"),
  30518. name: "Tongue",
  30519. image: {
  30520. source: "./media/characters/guti/tongue.svg"
  30521. }
  30522. },
  30523. paw: {
  30524. height: math.unit(1.18, "feet"),
  30525. name: "Paw",
  30526. image: {
  30527. source: "./media/characters/guti/paw.svg"
  30528. }
  30529. },
  30530. },
  30531. [
  30532. {
  30533. name: "Normal",
  30534. height: math.unit(9, "feet"),
  30535. default: true
  30536. },
  30537. ]
  30538. ))
  30539. characterMakers.push(() => makeCharacter(
  30540. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30541. {
  30542. side: {
  30543. height: math.unit(5, "meters"),
  30544. name: "Side",
  30545. image: {
  30546. source: "./media/characters/vesper/side.svg",
  30547. extra: 1605/1518,
  30548. bottom: 0/1605
  30549. }
  30550. },
  30551. },
  30552. [
  30553. {
  30554. name: "Small",
  30555. height: math.unit(5, "meters")
  30556. },
  30557. {
  30558. name: "Sage",
  30559. height: math.unit(100, "meters"),
  30560. default: true
  30561. },
  30562. {
  30563. name: "Fun Size",
  30564. height: math.unit(600, "meters")
  30565. },
  30566. {
  30567. name: "Goddess",
  30568. height: math.unit(20000, "km")
  30569. },
  30570. {
  30571. name: "Maximum",
  30572. height: math.unit(5, "galaxies")
  30573. },
  30574. ]
  30575. ))
  30576. characterMakers.push(() => makeCharacter(
  30577. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30578. {
  30579. front: {
  30580. height: math.unit(6 + 3/12, "feet"),
  30581. weight: math.unit(190, "lb"),
  30582. name: "Front",
  30583. image: {
  30584. source: "./media/characters/gawain/front.svg",
  30585. extra: 2222/2139,
  30586. bottom: 90/2312
  30587. }
  30588. },
  30589. back: {
  30590. height: math.unit(6 + 3/12, "feet"),
  30591. weight: math.unit(190, "lb"),
  30592. name: "Back",
  30593. image: {
  30594. source: "./media/characters/gawain/back.svg",
  30595. extra: 2199/2111,
  30596. bottom: 73/2272
  30597. }
  30598. },
  30599. },
  30600. [
  30601. {
  30602. name: "Normal",
  30603. height: math.unit(6 + 3/12, "feet"),
  30604. default: true
  30605. },
  30606. ]
  30607. ))
  30608. characterMakers.push(() => makeCharacter(
  30609. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30610. {
  30611. side: {
  30612. height: math.unit(3.5, "meters"),
  30613. weight: math.unit(16000, "lb"),
  30614. name: "Side",
  30615. image: {
  30616. source: "./media/characters/dascalti/side.svg",
  30617. extra: 392/273,
  30618. bottom: 47/439
  30619. }
  30620. },
  30621. breath: {
  30622. height: math.unit(7.4, "feet"),
  30623. name: "Breath",
  30624. image: {
  30625. source: "./media/characters/dascalti/breath.svg"
  30626. }
  30627. },
  30628. fed: {
  30629. height: math.unit(3.6, "meters"),
  30630. weight: math.unit(16000, "lb"),
  30631. name: "Fed",
  30632. image: {
  30633. source: "./media/characters/dascalti/fed.svg",
  30634. extra: 1419/820,
  30635. bottom: 95/1514
  30636. }
  30637. },
  30638. },
  30639. [
  30640. {
  30641. name: "Normal",
  30642. height: math.unit(3.5, "meters"),
  30643. default: true
  30644. },
  30645. ]
  30646. ))
  30647. characterMakers.push(() => makeCharacter(
  30648. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30649. {
  30650. front: {
  30651. height: math.unit(3 + 5/12, "feet"),
  30652. name: "Front",
  30653. image: {
  30654. source: "./media/characters/mauve/front.svg",
  30655. extra: 1126/1033,
  30656. bottom: 65/1191
  30657. }
  30658. },
  30659. side: {
  30660. height: math.unit(3 + 5/12, "feet"),
  30661. name: "Side",
  30662. image: {
  30663. source: "./media/characters/mauve/side.svg",
  30664. extra: 1089/1001,
  30665. bottom: 29/1118
  30666. }
  30667. },
  30668. back: {
  30669. height: math.unit(3 + 5/12, "feet"),
  30670. name: "Back",
  30671. image: {
  30672. source: "./media/characters/mauve/back.svg",
  30673. extra: 1173/1053,
  30674. bottom: 109/1282
  30675. }
  30676. },
  30677. },
  30678. [
  30679. {
  30680. name: "Normal",
  30681. height: math.unit(3 + 5/12, "feet"),
  30682. default: true
  30683. },
  30684. ]
  30685. ))
  30686. characterMakers.push(() => makeCharacter(
  30687. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30688. {
  30689. front: {
  30690. height: math.unit(6 + 3/12, "feet"),
  30691. weight: math.unit(430, "lb"),
  30692. name: "Front",
  30693. image: {
  30694. source: "./media/characters/carlos/front.svg",
  30695. extra: 1964/1913,
  30696. bottom: 70/2034
  30697. }
  30698. },
  30699. },
  30700. [
  30701. {
  30702. name: "Normal",
  30703. height: math.unit(6 + 3/12, "feet"),
  30704. default: true
  30705. },
  30706. ]
  30707. ))
  30708. characterMakers.push(() => makeCharacter(
  30709. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30710. {
  30711. back: {
  30712. height: math.unit(5 + 10/12, "feet"),
  30713. weight: math.unit(200, "lb"),
  30714. name: "Back",
  30715. image: {
  30716. source: "./media/characters/jax/back.svg",
  30717. extra: 764/739,
  30718. bottom: 25/789
  30719. }
  30720. },
  30721. },
  30722. [
  30723. {
  30724. name: "Normal",
  30725. height: math.unit(5 + 10/12, "feet"),
  30726. default: true
  30727. },
  30728. ]
  30729. ))
  30730. characterMakers.push(() => makeCharacter(
  30731. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30732. {
  30733. front: {
  30734. height: math.unit(8, "feet"),
  30735. weight: math.unit(250, "lb"),
  30736. name: "Front",
  30737. image: {
  30738. source: "./media/characters/eikthynir/front.svg",
  30739. extra: 1332/1166,
  30740. bottom: 82/1414
  30741. }
  30742. },
  30743. back: {
  30744. height: math.unit(8, "feet"),
  30745. weight: math.unit(250, "lb"),
  30746. name: "Back",
  30747. image: {
  30748. source: "./media/characters/eikthynir/back.svg",
  30749. extra: 1342/1190,
  30750. bottom: 19/1361
  30751. }
  30752. },
  30753. dick: {
  30754. height: math.unit(2.35, "feet"),
  30755. name: "Dick",
  30756. image: {
  30757. source: "./media/characters/eikthynir/dick.svg"
  30758. }
  30759. },
  30760. },
  30761. [
  30762. {
  30763. name: "Normal",
  30764. height: math.unit(8, "feet"),
  30765. default: true
  30766. },
  30767. ]
  30768. ))
  30769. characterMakers.push(() => makeCharacter(
  30770. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30771. {
  30772. front: {
  30773. height: math.unit(99, "meters"),
  30774. weight: math.unit(13000, "tons"),
  30775. name: "Front",
  30776. image: {
  30777. source: "./media/characters/zlmos/front.svg",
  30778. extra: 2202/1992,
  30779. bottom: 315/2517
  30780. }
  30781. },
  30782. },
  30783. [
  30784. {
  30785. name: "Macro",
  30786. height: math.unit(99, "meters"),
  30787. default: true
  30788. },
  30789. ]
  30790. ))
  30791. characterMakers.push(() => makeCharacter(
  30792. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30793. {
  30794. front: {
  30795. height: math.unit(6 + 5/12, "feet"),
  30796. name: "Front",
  30797. image: {
  30798. source: "./media/characters/purri/front.svg",
  30799. extra: 1698/1610,
  30800. bottom: 32/1730
  30801. }
  30802. },
  30803. frontAlt: {
  30804. height: math.unit(6 + 5/12, "feet"),
  30805. name: "Front (Alt)",
  30806. image: {
  30807. source: "./media/characters/purri/front-alt.svg",
  30808. extra: 450/420,
  30809. bottom: 26/476
  30810. }
  30811. },
  30812. boots: {
  30813. height: math.unit(5.5, "feet"),
  30814. name: "Boots",
  30815. image: {
  30816. source: "./media/characters/purri/boots.svg",
  30817. extra: 905/853,
  30818. bottom: 18/923
  30819. }
  30820. },
  30821. lying: {
  30822. height: math.unit(2, "feet"),
  30823. name: "Lying",
  30824. image: {
  30825. source: "./media/characters/purri/lying.svg",
  30826. extra: 940/843,
  30827. bottom: 146/1086
  30828. }
  30829. },
  30830. devious: {
  30831. height: math.unit(1.77, "feet"),
  30832. name: "Devious",
  30833. image: {
  30834. source: "./media/characters/purri/devious.svg",
  30835. extra: 1440/1155,
  30836. bottom: 147/1587
  30837. }
  30838. },
  30839. bean: {
  30840. height: math.unit(1.94, "feet"),
  30841. name: "Bean",
  30842. image: {
  30843. source: "./media/characters/purri/bean.svg"
  30844. }
  30845. },
  30846. },
  30847. [
  30848. {
  30849. name: "Micro",
  30850. height: math.unit(1, "mm")
  30851. },
  30852. {
  30853. name: "Normal",
  30854. height: math.unit(6 + 5/12, "feet"),
  30855. default: true
  30856. },
  30857. {
  30858. name: "Macro :3c",
  30859. height: math.unit(2, "miles")
  30860. },
  30861. ]
  30862. ))
  30863. characterMakers.push(() => makeCharacter(
  30864. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30865. {
  30866. front: {
  30867. height: math.unit(6 + 2/12, "feet"),
  30868. weight: math.unit(250, "lb"),
  30869. name: "Front",
  30870. image: {
  30871. source: "./media/characters/moonlight/front.svg",
  30872. extra: 1044/908,
  30873. bottom: 56/1100
  30874. }
  30875. },
  30876. feral: {
  30877. height: math.unit(3 + 1/12, "feet"),
  30878. weight: math.unit(50, "kg"),
  30879. name: "Feral",
  30880. image: {
  30881. source: "./media/characters/moonlight/feral.svg",
  30882. extra: 3705/2791,
  30883. bottom: 145/3850
  30884. }
  30885. },
  30886. paw: {
  30887. height: math.unit(1, "feet"),
  30888. name: "Paw",
  30889. image: {
  30890. source: "./media/characters/moonlight/paw.svg"
  30891. }
  30892. },
  30893. paws: {
  30894. height: math.unit(0.98, "feet"),
  30895. name: "Paws",
  30896. image: {
  30897. source: "./media/characters/moonlight/paws.svg",
  30898. extra: 939/939,
  30899. bottom: 50/989
  30900. }
  30901. },
  30902. mouth: {
  30903. height: math.unit(0.48, "feet"),
  30904. name: "Mouth",
  30905. image: {
  30906. source: "./media/characters/moonlight/mouth.svg"
  30907. }
  30908. },
  30909. dick: {
  30910. height: math.unit(1.46, "feet"),
  30911. name: "Dick",
  30912. image: {
  30913. source: "./media/characters/moonlight/dick.svg"
  30914. }
  30915. },
  30916. },
  30917. [
  30918. {
  30919. name: "Normal",
  30920. height: math.unit(6 + 2/12, "feet"),
  30921. default: true
  30922. },
  30923. {
  30924. name: "Macro",
  30925. height: math.unit(300, "feet")
  30926. },
  30927. {
  30928. name: "Macro+",
  30929. height: math.unit(1, "mile")
  30930. },
  30931. {
  30932. name: "Mt. Moon",
  30933. height: math.unit(5, "miles")
  30934. },
  30935. {
  30936. name: "Megamacro",
  30937. height: math.unit(15, "miles")
  30938. },
  30939. ]
  30940. ))
  30941. characterMakers.push(() => makeCharacter(
  30942. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30943. {
  30944. back: {
  30945. height: math.unit(6, "feet"),
  30946. weight: math.unit(150, "lb"),
  30947. name: "Back",
  30948. image: {
  30949. source: "./media/characters/sylen/back.svg",
  30950. extra: 1335/1273,
  30951. bottom: 107/1442
  30952. }
  30953. },
  30954. },
  30955. [
  30956. {
  30957. name: "Normal",
  30958. height: math.unit(5 + 5/12, "feet")
  30959. },
  30960. {
  30961. name: "Megamacro",
  30962. height: math.unit(3, "miles"),
  30963. default: true
  30964. },
  30965. ]
  30966. ))
  30967. characterMakers.push(() => makeCharacter(
  30968. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30969. {
  30970. front: {
  30971. height: math.unit(6, "feet"),
  30972. weight: math.unit(190, "lb"),
  30973. name: "Front",
  30974. image: {
  30975. source: "./media/characters/huttser/front.svg",
  30976. extra: 1152/1058,
  30977. bottom: 23/1175
  30978. }
  30979. },
  30980. side: {
  30981. height: math.unit(6, "feet"),
  30982. weight: math.unit(190, "lb"),
  30983. name: "Side",
  30984. image: {
  30985. source: "./media/characters/huttser/side.svg",
  30986. extra: 1174/1065,
  30987. bottom: 18/1192
  30988. }
  30989. },
  30990. back: {
  30991. height: math.unit(6, "feet"),
  30992. weight: math.unit(190, "lb"),
  30993. name: "Back",
  30994. image: {
  30995. source: "./media/characters/huttser/back.svg",
  30996. extra: 1158/1056,
  30997. bottom: 12/1170
  30998. }
  30999. },
  31000. },
  31001. [
  31002. ]
  31003. ))
  31004. characterMakers.push(() => makeCharacter(
  31005. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  31006. {
  31007. side: {
  31008. height: math.unit(12 + 9/12, "feet"),
  31009. weight: math.unit(15000, "lb"),
  31010. name: "Side",
  31011. image: {
  31012. source: "./media/characters/faan/side.svg",
  31013. extra: 2747/2697,
  31014. bottom: 0/2747
  31015. }
  31016. },
  31017. front: {
  31018. height: math.unit(12 + 9/12, "feet"),
  31019. weight: math.unit(15000, "lb"),
  31020. name: "Front",
  31021. image: {
  31022. source: "./media/characters/faan/front.svg",
  31023. extra: 607/571,
  31024. bottom: 24/631
  31025. }
  31026. },
  31027. head: {
  31028. height: math.unit(2.85, "feet"),
  31029. name: "Head",
  31030. image: {
  31031. source: "./media/characters/faan/head.svg"
  31032. }
  31033. },
  31034. headAlt: {
  31035. height: math.unit(3.13, "feet"),
  31036. name: "Head-alt",
  31037. image: {
  31038. source: "./media/characters/faan/head-alt.svg"
  31039. }
  31040. },
  31041. },
  31042. [
  31043. {
  31044. name: "Normal",
  31045. height: math.unit(12 + 9/12, "feet"),
  31046. default: true
  31047. },
  31048. ]
  31049. ))
  31050. characterMakers.push(() => makeCharacter(
  31051. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31052. {
  31053. front: {
  31054. height: math.unit(6, "feet"),
  31055. weight: math.unit(300, "lb"),
  31056. name: "Front",
  31057. image: {
  31058. source: "./media/characters/tanio/front.svg",
  31059. extra: 711/673,
  31060. bottom: 25/736
  31061. }
  31062. },
  31063. },
  31064. [
  31065. {
  31066. name: "Normal",
  31067. height: math.unit(6, "feet"),
  31068. default: true
  31069. },
  31070. ]
  31071. ))
  31072. characterMakers.push(() => makeCharacter(
  31073. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31074. {
  31075. front: {
  31076. height: math.unit(3, "inches"),
  31077. name: "Front",
  31078. image: {
  31079. source: "./media/characters/noboru/front.svg",
  31080. extra: 1039/932,
  31081. bottom: 18/1057
  31082. }
  31083. },
  31084. },
  31085. [
  31086. {
  31087. name: "Micro",
  31088. height: math.unit(3, "inches"),
  31089. default: true
  31090. },
  31091. ]
  31092. ))
  31093. characterMakers.push(() => makeCharacter(
  31094. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31095. {
  31096. front: {
  31097. height: math.unit(1.85, "meters"),
  31098. weight: math.unit(80, "kg"),
  31099. name: "Front",
  31100. image: {
  31101. source: "./media/characters/daniel-barrett/front.svg",
  31102. extra: 355/337,
  31103. bottom: 9/364
  31104. }
  31105. },
  31106. },
  31107. [
  31108. {
  31109. name: "Pico",
  31110. height: math.unit(0.0433, "mm")
  31111. },
  31112. {
  31113. name: "Nano",
  31114. height: math.unit(1.5, "mm")
  31115. },
  31116. {
  31117. name: "Micro",
  31118. height: math.unit(5.3, "cm"),
  31119. default: true
  31120. },
  31121. {
  31122. name: "Normal",
  31123. height: math.unit(1.85, "meters")
  31124. },
  31125. {
  31126. name: "Macro",
  31127. height: math.unit(64.7, "meters")
  31128. },
  31129. {
  31130. name: "Megamacro",
  31131. height: math.unit(2.26, "km")
  31132. },
  31133. {
  31134. name: "Gigamacro",
  31135. height: math.unit(79, "km")
  31136. },
  31137. {
  31138. name: "Teramacro",
  31139. height: math.unit(2765, "km")
  31140. },
  31141. {
  31142. name: "Petamacro",
  31143. height: math.unit(96678, "km")
  31144. },
  31145. ]
  31146. ))
  31147. characterMakers.push(() => makeCharacter(
  31148. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31149. {
  31150. front: {
  31151. height: math.unit(30, "meters"),
  31152. weight: math.unit(400, "tons"),
  31153. name: "Front",
  31154. image: {
  31155. source: "./media/characters/zeel/front.svg",
  31156. extra: 2599/2599,
  31157. bottom: 226/2825
  31158. }
  31159. },
  31160. },
  31161. [
  31162. {
  31163. name: "Macro",
  31164. height: math.unit(30, "meters"),
  31165. default: true
  31166. },
  31167. ]
  31168. ))
  31169. characterMakers.push(() => makeCharacter(
  31170. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31171. {
  31172. front: {
  31173. height: math.unit(6 + 7/12, "feet"),
  31174. weight: math.unit(210, "lb"),
  31175. name: "Front",
  31176. image: {
  31177. source: "./media/characters/tarn/front.svg",
  31178. extra: 3517/3220,
  31179. bottom: 91/3608
  31180. }
  31181. },
  31182. back: {
  31183. height: math.unit(6 + 7/12, "feet"),
  31184. weight: math.unit(210, "lb"),
  31185. name: "Back",
  31186. image: {
  31187. source: "./media/characters/tarn/back.svg",
  31188. extra: 3566/3241,
  31189. bottom: 34/3600
  31190. }
  31191. },
  31192. dick: {
  31193. height: math.unit(1.65, "feet"),
  31194. name: "Dick",
  31195. image: {
  31196. source: "./media/characters/tarn/dick.svg"
  31197. }
  31198. },
  31199. paw: {
  31200. height: math.unit(1.80, "feet"),
  31201. name: "Paw",
  31202. image: {
  31203. source: "./media/characters/tarn/paw.svg"
  31204. }
  31205. },
  31206. tongue: {
  31207. height: math.unit(0.97, "feet"),
  31208. name: "Tongue",
  31209. image: {
  31210. source: "./media/characters/tarn/tongue.svg"
  31211. }
  31212. },
  31213. },
  31214. [
  31215. {
  31216. name: "Micro",
  31217. height: math.unit(4, "inches")
  31218. },
  31219. {
  31220. name: "Normal",
  31221. height: math.unit(6 + 7/12, "feet"),
  31222. default: true
  31223. },
  31224. {
  31225. name: "Macro",
  31226. height: math.unit(300, "feet")
  31227. },
  31228. ]
  31229. ))
  31230. characterMakers.push(() => makeCharacter(
  31231. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31232. {
  31233. front: {
  31234. height: math.unit(5 + 7/12, "feet"),
  31235. weight: math.unit(80, "kg"),
  31236. name: "Front",
  31237. image: {
  31238. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31239. extra: 3023/2865,
  31240. bottom: 33/3056
  31241. }
  31242. },
  31243. back: {
  31244. height: math.unit(5 + 7/12, "feet"),
  31245. weight: math.unit(80, "kg"),
  31246. name: "Back",
  31247. image: {
  31248. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31249. extra: 3020/2886,
  31250. bottom: 30/3050
  31251. }
  31252. },
  31253. dick: {
  31254. height: math.unit(0.98, "feet"),
  31255. name: "Dick",
  31256. image: {
  31257. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31258. }
  31259. },
  31260. anatomy: {
  31261. height: math.unit(2.86, "feet"),
  31262. name: "Anatomy",
  31263. image: {
  31264. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31265. }
  31266. },
  31267. },
  31268. [
  31269. {
  31270. name: "Really Small",
  31271. height: math.unit(2, "inches")
  31272. },
  31273. {
  31274. name: "Micro",
  31275. height: math.unit(5.583, "inches")
  31276. },
  31277. {
  31278. name: "Normal",
  31279. height: math.unit(5 + 7/12, "feet"),
  31280. default: true
  31281. },
  31282. {
  31283. name: "Macro",
  31284. height: math.unit(67, "feet")
  31285. },
  31286. {
  31287. name: "Megamacro",
  31288. height: math.unit(134, "feet")
  31289. },
  31290. ]
  31291. ))
  31292. characterMakers.push(() => makeCharacter(
  31293. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31294. {
  31295. front: {
  31296. height: math.unit(9, "feet"),
  31297. weight: math.unit(120, "lb"),
  31298. name: "Front",
  31299. image: {
  31300. source: "./media/characters/sally/front.svg",
  31301. extra: 1506/1349,
  31302. bottom: 66/1572
  31303. }
  31304. },
  31305. },
  31306. [
  31307. {
  31308. name: "Normal",
  31309. height: math.unit(9, "feet"),
  31310. default: true
  31311. },
  31312. ]
  31313. ))
  31314. characterMakers.push(() => makeCharacter(
  31315. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31316. {
  31317. front: {
  31318. height: math.unit(8, "feet"),
  31319. weight: math.unit(900, "lb"),
  31320. name: "Front",
  31321. image: {
  31322. source: "./media/characters/owen/front.svg",
  31323. extra: 1761/1657,
  31324. bottom: 74/1835
  31325. }
  31326. },
  31327. side: {
  31328. height: math.unit(8, "feet"),
  31329. weight: math.unit(900, "lb"),
  31330. name: "Side",
  31331. image: {
  31332. source: "./media/characters/owen/side.svg",
  31333. extra: 1797/1734,
  31334. bottom: 30/1827
  31335. }
  31336. },
  31337. back: {
  31338. height: math.unit(8, "feet"),
  31339. weight: math.unit(900, "lb"),
  31340. name: "Back",
  31341. image: {
  31342. source: "./media/characters/owen/back.svg",
  31343. extra: 1796/1706,
  31344. bottom: 59/1855
  31345. }
  31346. },
  31347. maw: {
  31348. height: math.unit(1.76, "feet"),
  31349. name: "Maw",
  31350. image: {
  31351. source: "./media/characters/owen/maw.svg"
  31352. }
  31353. },
  31354. },
  31355. [
  31356. {
  31357. name: "Normal",
  31358. height: math.unit(8, "feet"),
  31359. default: true
  31360. },
  31361. ]
  31362. ))
  31363. characterMakers.push(() => makeCharacter(
  31364. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31365. {
  31366. front: {
  31367. height: math.unit(4, "feet"),
  31368. weight: math.unit(400, "lb"),
  31369. name: "Front",
  31370. image: {
  31371. source: "./media/characters/ryth/front.svg",
  31372. extra: 876/691,
  31373. bottom: 25/901
  31374. }
  31375. },
  31376. goia: {
  31377. height: math.unit(12, "feet"),
  31378. weight: math.unit(10800, "lb"),
  31379. name: "Goia",
  31380. image: {
  31381. source: "./media/characters/ryth/goia.svg",
  31382. extra: 3450/3198,
  31383. bottom: 61/3511
  31384. }
  31385. },
  31386. },
  31387. [
  31388. {
  31389. name: "Normal",
  31390. height: math.unit(4, "feet"),
  31391. default: true
  31392. },
  31393. ]
  31394. ))
  31395. characterMakers.push(() => makeCharacter(
  31396. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31397. {
  31398. front: {
  31399. height: math.unit(7, "feet"),
  31400. weight: math.unit(180, "lb"),
  31401. name: "Front",
  31402. image: {
  31403. source: "./media/characters/necrolance/front.svg",
  31404. extra: 1062/947,
  31405. bottom: 41/1103
  31406. }
  31407. },
  31408. back: {
  31409. height: math.unit(7, "feet"),
  31410. weight: math.unit(180, "lb"),
  31411. name: "Back",
  31412. image: {
  31413. source: "./media/characters/necrolance/back.svg",
  31414. extra: 1045/984,
  31415. bottom: 14/1059
  31416. }
  31417. },
  31418. wing: {
  31419. height: math.unit(2.67, "feet"),
  31420. name: "Wing",
  31421. image: {
  31422. source: "./media/characters/necrolance/wing.svg"
  31423. }
  31424. },
  31425. },
  31426. [
  31427. {
  31428. name: "Normal",
  31429. height: math.unit(7, "feet"),
  31430. default: true
  31431. },
  31432. ]
  31433. ))
  31434. characterMakers.push(() => makeCharacter(
  31435. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31436. {
  31437. front: {
  31438. height: math.unit(76, "meters"),
  31439. weight: math.unit(30000, "tons"),
  31440. name: "Front",
  31441. image: {
  31442. source: "./media/characters/tyler/front.svg",
  31443. extra: 1640/1640,
  31444. bottom: 114/1754
  31445. }
  31446. },
  31447. },
  31448. [
  31449. {
  31450. name: "Macro",
  31451. height: math.unit(76, "meters"),
  31452. default: true
  31453. },
  31454. ]
  31455. ))
  31456. characterMakers.push(() => makeCharacter(
  31457. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31458. {
  31459. front: {
  31460. height: math.unit(4 + 11/12, "feet"),
  31461. weight: math.unit(132, "lb"),
  31462. name: "Front",
  31463. image: {
  31464. source: "./media/characters/icey/front.svg",
  31465. extra: 2750/2550,
  31466. bottom: 33/2783
  31467. }
  31468. },
  31469. back: {
  31470. height: math.unit(4 + 11/12, "feet"),
  31471. weight: math.unit(132, "lb"),
  31472. name: "Back",
  31473. image: {
  31474. source: "./media/characters/icey/back.svg",
  31475. extra: 2624/2481,
  31476. bottom: 35/2659
  31477. }
  31478. },
  31479. },
  31480. [
  31481. {
  31482. name: "Normal",
  31483. height: math.unit(4 + 11/12, "feet"),
  31484. default: true
  31485. },
  31486. ]
  31487. ))
  31488. characterMakers.push(() => makeCharacter(
  31489. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31490. {
  31491. front: {
  31492. height: math.unit(100, "feet"),
  31493. weight: math.unit(0, "lb"),
  31494. name: "Front",
  31495. image: {
  31496. source: "./media/characters/smile/front.svg",
  31497. extra: 2983/2912,
  31498. bottom: 162/3145
  31499. }
  31500. },
  31501. back: {
  31502. height: math.unit(100, "feet"),
  31503. weight: math.unit(0, "lb"),
  31504. name: "Back",
  31505. image: {
  31506. source: "./media/characters/smile/back.svg",
  31507. extra: 3143/3031,
  31508. bottom: 91/3234
  31509. }
  31510. },
  31511. head: {
  31512. height: math.unit(26.3, "feet"),
  31513. weight: math.unit(0, "lb"),
  31514. name: "Head",
  31515. image: {
  31516. source: "./media/characters/smile/head.svg"
  31517. }
  31518. },
  31519. collar: {
  31520. height: math.unit(5.3, "feet"),
  31521. weight: math.unit(0, "lb"),
  31522. name: "Collar",
  31523. image: {
  31524. source: "./media/characters/smile/collar.svg"
  31525. }
  31526. },
  31527. },
  31528. [
  31529. {
  31530. name: "Macro",
  31531. height: math.unit(100, "feet"),
  31532. default: true
  31533. },
  31534. ]
  31535. ))
  31536. characterMakers.push(() => makeCharacter(
  31537. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31538. {
  31539. dragon: {
  31540. height: math.unit(26, "feet"),
  31541. weight: math.unit(36, "tons"),
  31542. name: "Dragon",
  31543. image: {
  31544. source: "./media/characters/arimphae/dragon.svg",
  31545. extra: 1574/983,
  31546. bottom: 357/1931
  31547. }
  31548. },
  31549. drake: {
  31550. height: math.unit(9, "feet"),
  31551. weight: math.unit(1.5, "tons"),
  31552. name: "Drake",
  31553. image: {
  31554. source: "./media/characters/arimphae/drake.svg",
  31555. extra: 1120/925,
  31556. bottom: 435/1555
  31557. }
  31558. },
  31559. },
  31560. [
  31561. {
  31562. name: "Small",
  31563. height: math.unit(26*5/9, "feet")
  31564. },
  31565. {
  31566. name: "Normal",
  31567. height: math.unit(26, "feet"),
  31568. default: true
  31569. },
  31570. ]
  31571. ))
  31572. characterMakers.push(() => makeCharacter(
  31573. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31574. {
  31575. front: {
  31576. height: math.unit(8 + 9/12, "feet"),
  31577. name: "Front",
  31578. image: {
  31579. source: "./media/characters/xander/front.svg",
  31580. extra: 848/673,
  31581. bottom: 62/910
  31582. }
  31583. },
  31584. },
  31585. [
  31586. {
  31587. name: "Normal",
  31588. height: math.unit(8 + 9/12, "feet"),
  31589. default: true
  31590. },
  31591. {
  31592. name: "Gaze Grabber",
  31593. height: math.unit(13 + 8/12, "feet")
  31594. },
  31595. {
  31596. name: "Jaw Dropper",
  31597. height: math.unit(27, "feet")
  31598. },
  31599. {
  31600. name: "Show Stopper",
  31601. height: math.unit(136, "feet")
  31602. },
  31603. {
  31604. name: "Superstar",
  31605. height: math.unit(1.9e6, "miles")
  31606. },
  31607. ]
  31608. ))
  31609. characterMakers.push(() => makeCharacter(
  31610. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31611. {
  31612. side: {
  31613. height: math.unit(2100, "feet"),
  31614. name: "Side",
  31615. image: {
  31616. source: "./media/characters/osiris/side.svg",
  31617. extra: 1105/939,
  31618. bottom: 167/1272
  31619. }
  31620. },
  31621. },
  31622. [
  31623. {
  31624. name: "Macro",
  31625. height: math.unit(2100, "feet"),
  31626. default: true
  31627. },
  31628. ]
  31629. ))
  31630. characterMakers.push(() => makeCharacter(
  31631. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31632. {
  31633. front: {
  31634. height: math.unit(6 + 8/12, "feet"),
  31635. weight: math.unit(225, "lb"),
  31636. name: "Front",
  31637. image: {
  31638. source: "./media/characters/rhys-londe/front.svg",
  31639. extra: 2258/2141,
  31640. bottom: 188/2446
  31641. }
  31642. },
  31643. back: {
  31644. height: math.unit(6 + 8/12, "feet"),
  31645. weight: math.unit(225, "lb"),
  31646. name: "Back",
  31647. image: {
  31648. source: "./media/characters/rhys-londe/back.svg",
  31649. extra: 2237/2137,
  31650. bottom: 63/2300
  31651. }
  31652. },
  31653. frontNsfw: {
  31654. height: math.unit(6 + 8/12, "feet"),
  31655. weight: math.unit(225, "lb"),
  31656. name: "Front (NSFW)",
  31657. image: {
  31658. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31659. extra: 2258/2141,
  31660. bottom: 188/2446
  31661. }
  31662. },
  31663. backNsfw: {
  31664. height: math.unit(6 + 8/12, "feet"),
  31665. weight: math.unit(225, "lb"),
  31666. name: "Back (NSFW)",
  31667. image: {
  31668. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31669. extra: 2237/2137,
  31670. bottom: 63/2300
  31671. }
  31672. },
  31673. dick: {
  31674. height: math.unit(30, "inches"),
  31675. name: "Dick",
  31676. image: {
  31677. source: "./media/characters/rhys-londe/dick.svg"
  31678. }
  31679. },
  31680. maw: {
  31681. height: math.unit(1.6, "feet"),
  31682. name: "Maw",
  31683. image: {
  31684. source: "./media/characters/rhys-londe/maw.svg"
  31685. }
  31686. },
  31687. },
  31688. [
  31689. {
  31690. name: "Normal",
  31691. height: math.unit(6 + 8/12, "feet"),
  31692. default: true
  31693. },
  31694. ]
  31695. ))
  31696. characterMakers.push(() => makeCharacter(
  31697. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31698. {
  31699. front: {
  31700. height: math.unit(3 + 10/12, "feet"),
  31701. weight: math.unit(90, "lb"),
  31702. name: "Front",
  31703. image: {
  31704. source: "./media/characters/taivas-ensim/front.svg",
  31705. extra: 1327/1216,
  31706. bottom: 96/1423
  31707. }
  31708. },
  31709. back: {
  31710. height: math.unit(3 + 10/12, "feet"),
  31711. weight: math.unit(90, "lb"),
  31712. name: "Back",
  31713. image: {
  31714. source: "./media/characters/taivas-ensim/back.svg",
  31715. extra: 1355/1247,
  31716. bottom: 11/1366
  31717. }
  31718. },
  31719. frontNsfw: {
  31720. height: math.unit(3 + 10/12, "feet"),
  31721. weight: math.unit(90, "lb"),
  31722. name: "Front (NSFW)",
  31723. image: {
  31724. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31725. extra: 1327/1216,
  31726. bottom: 96/1423
  31727. }
  31728. },
  31729. backNsfw: {
  31730. height: math.unit(3 + 10/12, "feet"),
  31731. weight: math.unit(90, "lb"),
  31732. name: "Back (NSFW)",
  31733. image: {
  31734. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31735. extra: 1355/1247,
  31736. bottom: 11/1366
  31737. }
  31738. },
  31739. },
  31740. [
  31741. {
  31742. name: "Normal",
  31743. height: math.unit(3 + 10/12, "feet"),
  31744. default: true
  31745. },
  31746. ]
  31747. ))
  31748. characterMakers.push(() => makeCharacter(
  31749. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31750. {
  31751. front: {
  31752. height: math.unit(9 + 6/12, "feet"),
  31753. weight: math.unit(940, "lb"),
  31754. name: "Front",
  31755. image: {
  31756. source: "./media/characters/byliss/front.svg",
  31757. extra: 1327/1290,
  31758. bottom: 82/1409
  31759. }
  31760. },
  31761. back: {
  31762. height: math.unit(9 + 6/12, "feet"),
  31763. weight: math.unit(940, "lb"),
  31764. name: "Back",
  31765. image: {
  31766. source: "./media/characters/byliss/back.svg",
  31767. extra: 1376/1349,
  31768. bottom: 9/1385
  31769. }
  31770. },
  31771. frontNsfw: {
  31772. height: math.unit(9 + 6/12, "feet"),
  31773. weight: math.unit(940, "lb"),
  31774. name: "Front (NSFW)",
  31775. image: {
  31776. source: "./media/characters/byliss/front-nsfw.svg",
  31777. extra: 1327/1290,
  31778. bottom: 82/1409
  31779. }
  31780. },
  31781. backNsfw: {
  31782. height: math.unit(9 + 6/12, "feet"),
  31783. weight: math.unit(940, "lb"),
  31784. name: "Back (NSFW)",
  31785. image: {
  31786. source: "./media/characters/byliss/back-nsfw.svg",
  31787. extra: 1376/1349,
  31788. bottom: 9/1385
  31789. }
  31790. },
  31791. },
  31792. [
  31793. {
  31794. name: "Normal",
  31795. height: math.unit(9 + 6/12, "feet"),
  31796. default: true
  31797. },
  31798. ]
  31799. ))
  31800. characterMakers.push(() => makeCharacter(
  31801. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31802. {
  31803. front: {
  31804. height: math.unit(5 + 2/12, "feet"),
  31805. weight: math.unit(200, "lb"),
  31806. name: "Front",
  31807. image: {
  31808. source: "./media/characters/noraly/front.svg",
  31809. extra: 4985/4773,
  31810. bottom: 150/5135
  31811. }
  31812. },
  31813. full: {
  31814. height: math.unit(5 + 2/12, "feet"),
  31815. weight: math.unit(164, "lb"),
  31816. name: "Full",
  31817. image: {
  31818. source: "./media/characters/noraly/full.svg",
  31819. extra: 1114/1059,
  31820. bottom: 35/1149
  31821. }
  31822. },
  31823. fuller: {
  31824. height: math.unit(5 + 2/12, "feet"),
  31825. weight: math.unit(230, "lb"),
  31826. name: "Fuller",
  31827. image: {
  31828. source: "./media/characters/noraly/fuller.svg",
  31829. extra: 1114/1059,
  31830. bottom: 35/1149
  31831. }
  31832. },
  31833. fullest: {
  31834. height: math.unit(5 + 2/12, "feet"),
  31835. weight: math.unit(300, "lb"),
  31836. name: "Fullest",
  31837. image: {
  31838. source: "./media/characters/noraly/fullest.svg",
  31839. extra: 1114/1059,
  31840. bottom: 35/1149
  31841. }
  31842. },
  31843. },
  31844. [
  31845. {
  31846. name: "Normal",
  31847. height: math.unit(5 + 2/12, "feet"),
  31848. default: true
  31849. },
  31850. ]
  31851. ))
  31852. characterMakers.push(() => makeCharacter(
  31853. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31854. {
  31855. front: {
  31856. height: math.unit(5 + 2/12, "feet"),
  31857. weight: math.unit(210, "lb"),
  31858. name: "Front",
  31859. image: {
  31860. source: "./media/characters/pera/front.svg",
  31861. extra: 1560/1531,
  31862. bottom: 165/1725
  31863. }
  31864. },
  31865. back: {
  31866. height: math.unit(5 + 2/12, "feet"),
  31867. weight: math.unit(210, "lb"),
  31868. name: "Back",
  31869. image: {
  31870. source: "./media/characters/pera/back.svg",
  31871. extra: 1523/1493,
  31872. bottom: 152/1675
  31873. }
  31874. },
  31875. dick: {
  31876. height: math.unit(2.4, "feet"),
  31877. name: "Dick",
  31878. image: {
  31879. source: "./media/characters/pera/dick.svg"
  31880. }
  31881. },
  31882. },
  31883. [
  31884. {
  31885. name: "Normal",
  31886. height: math.unit(5 + 2/12, "feet"),
  31887. default: true
  31888. },
  31889. ]
  31890. ))
  31891. characterMakers.push(() => makeCharacter(
  31892. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31893. {
  31894. front: {
  31895. height: math.unit(12, "feet"),
  31896. weight: math.unit(3200, "lb"),
  31897. name: "Front",
  31898. image: {
  31899. source: "./media/characters/julian/front.svg",
  31900. extra: 2962/2701,
  31901. bottom: 184/3146
  31902. }
  31903. },
  31904. maw: {
  31905. height: math.unit(5.35, "feet"),
  31906. name: "Maw",
  31907. image: {
  31908. source: "./media/characters/julian/maw.svg"
  31909. }
  31910. },
  31911. paw: {
  31912. height: math.unit(3.07, "feet"),
  31913. name: "Paw",
  31914. image: {
  31915. source: "./media/characters/julian/paw.svg"
  31916. }
  31917. },
  31918. },
  31919. [
  31920. {
  31921. name: "Default",
  31922. height: math.unit(12, "feet"),
  31923. default: true
  31924. },
  31925. {
  31926. name: "Big",
  31927. height: math.unit(50, "feet")
  31928. },
  31929. {
  31930. name: "Really Big",
  31931. height: math.unit(1, "mile")
  31932. },
  31933. {
  31934. name: "Extremely Big",
  31935. height: math.unit(100, "miles")
  31936. },
  31937. {
  31938. name: "Planet Hugger",
  31939. height: math.unit(200, "megameters")
  31940. },
  31941. {
  31942. name: "Unreasonably Big",
  31943. height: math.unit(1e300, "meters")
  31944. },
  31945. ]
  31946. ))
  31947. characterMakers.push(() => makeCharacter(
  31948. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31949. {
  31950. solgooleo: {
  31951. height: math.unit(4, "meters"),
  31952. weight: math.unit(6000*1.5, "kg"),
  31953. volume: math.unit(6000, "liters"),
  31954. name: "Solgooleo",
  31955. image: {
  31956. source: "./media/characters/pi/solgooleo.svg",
  31957. extra: 388/331,
  31958. bottom: 29/417
  31959. }
  31960. },
  31961. },
  31962. [
  31963. {
  31964. name: "Normal",
  31965. height: math.unit(4, "meters"),
  31966. default: true
  31967. },
  31968. ]
  31969. ))
  31970. characterMakers.push(() => makeCharacter(
  31971. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31972. {
  31973. front: {
  31974. height: math.unit(8 + 2/12, "feet"),
  31975. weight: math.unit(4, "tons"),
  31976. name: "Front",
  31977. image: {
  31978. source: "./media/characters/shaun/front.svg",
  31979. extra: 1550/1505,
  31980. bottom: 353/1903
  31981. }
  31982. },
  31983. },
  31984. [
  31985. {
  31986. name: "Lorg",
  31987. height: math.unit(8 + 2/12, "feet"),
  31988. default: true
  31989. },
  31990. ]
  31991. ))
  31992. characterMakers.push(() => makeCharacter(
  31993. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31994. {
  31995. front: {
  31996. height: math.unit(7, "feet"),
  31997. name: "Front",
  31998. image: {
  31999. source: "./media/characters/sini/front.svg",
  32000. extra: 726/678,
  32001. bottom: 35/761
  32002. }
  32003. },
  32004. back: {
  32005. height: math.unit(7, "feet"),
  32006. name: "Back",
  32007. image: {
  32008. source: "./media/characters/sini/back.svg",
  32009. extra: 743/701,
  32010. bottom: 12/755
  32011. }
  32012. },
  32013. mawAnthro: {
  32014. height: math.unit(2.14, "feet"),
  32015. name: "Maw (Anthro)",
  32016. image: {
  32017. source: "./media/characters/sini/maw-anthro.svg"
  32018. }
  32019. },
  32020. dick: {
  32021. height: math.unit(1.45, "feet"),
  32022. name: "Dick (Anthro)",
  32023. image: {
  32024. source: "./media/characters/sini/dick-anthro.svg"
  32025. }
  32026. },
  32027. feral: {
  32028. height: math.unit(13, "feet"),
  32029. name: "Feral",
  32030. image: {
  32031. source: "./media/characters/sini/feral.svg",
  32032. extra: 814/605,
  32033. bottom: 11/825
  32034. }
  32035. },
  32036. mawFeral: {
  32037. height: math.unit(4.6, "feet"),
  32038. name: "Maw-feral",
  32039. image: {
  32040. source: "./media/characters/sini/maw-feral.svg"
  32041. }
  32042. },
  32043. footFeral: {
  32044. height: math.unit(4.2, "feet"),
  32045. name: "Foot-feral",
  32046. image: {
  32047. source: "./media/characters/sini/foot-feral.svg"
  32048. }
  32049. },
  32050. },
  32051. [
  32052. {
  32053. name: "Normal",
  32054. height: math.unit(7, "feet"),
  32055. default: true
  32056. },
  32057. ]
  32058. ))
  32059. characterMakers.push(() => makeCharacter(
  32060. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32061. {
  32062. side: {
  32063. height: math.unit(13, "meters"),
  32064. weight: math.unit(9072, "kg"),
  32065. name: "Side",
  32066. image: {
  32067. source: "./media/characters/raylldo/side.svg",
  32068. extra: 403/344,
  32069. bottom: 42/445
  32070. }
  32071. },
  32072. leaping: {
  32073. height: math.unit(12.3, "meters"),
  32074. weight: math.unit(9072, "kg"),
  32075. name: "Leaping",
  32076. image: {
  32077. source: "./media/characters/raylldo/leaping.svg",
  32078. extra: 470/249,
  32079. bottom: 13/483
  32080. }
  32081. },
  32082. flying: {
  32083. height: math.unit(18, "meters"),
  32084. weight: math.unit(9072, "kg"),
  32085. name: "Flying",
  32086. image: {
  32087. source: "./media/characters/raylldo/flying.svg"
  32088. }
  32089. },
  32090. head: {
  32091. height: math.unit(5.85, "meters"),
  32092. name: "Head",
  32093. image: {
  32094. source: "./media/characters/raylldo/head.svg"
  32095. }
  32096. },
  32097. maw: {
  32098. height: math.unit(5.32, "meters"),
  32099. name: "Maw",
  32100. image: {
  32101. source: "./media/characters/raylldo/maw.svg"
  32102. }
  32103. },
  32104. eye: {
  32105. height: math.unit(0.54, "meters"),
  32106. name: "Eye",
  32107. image: {
  32108. source: "./media/characters/raylldo/eye.svg"
  32109. }
  32110. },
  32111. },
  32112. [
  32113. {
  32114. name: "Normal",
  32115. height: math.unit(13, "meters"),
  32116. default: true
  32117. },
  32118. ]
  32119. ))
  32120. characterMakers.push(() => makeCharacter(
  32121. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32122. {
  32123. anthroFront: {
  32124. height: math.unit(9, "feet"),
  32125. weight: math.unit(600, "lb"),
  32126. name: "Anthro (Front)",
  32127. image: {
  32128. source: "./media/characters/glint/anthro-front.svg",
  32129. extra: 1097/1018,
  32130. bottom: 28/1125
  32131. }
  32132. },
  32133. anthroBack: {
  32134. height: math.unit(9, "feet"),
  32135. weight: math.unit(600, "lb"),
  32136. name: "Anthro (Back)",
  32137. image: {
  32138. source: "./media/characters/glint/anthro-back.svg",
  32139. extra: 1154/997,
  32140. bottom: 36/1190
  32141. }
  32142. },
  32143. feral: {
  32144. height: math.unit(11, "feet"),
  32145. weight: math.unit(50000, "lb"),
  32146. name: "Feral",
  32147. image: {
  32148. source: "./media/characters/glint/feral.svg",
  32149. extra: 3035/1585,
  32150. bottom: 1169/4204
  32151. }
  32152. },
  32153. dickAnthro: {
  32154. height: math.unit(0.7, "meters"),
  32155. name: "Dick (Anthro)",
  32156. image: {
  32157. source: "./media/characters/glint/dick-anthro.svg"
  32158. }
  32159. },
  32160. dickFeral: {
  32161. height: math.unit(2.65, "meters"),
  32162. name: "Dick (Feral)",
  32163. image: {
  32164. source: "./media/characters/glint/dick-feral.svg"
  32165. }
  32166. },
  32167. slitHidden: {
  32168. height: math.unit(5.85, "meters"),
  32169. name: "Slit (Hidden)",
  32170. image: {
  32171. source: "./media/characters/glint/slit-hidden.svg"
  32172. }
  32173. },
  32174. slitErect: {
  32175. height: math.unit(5.85, "meters"),
  32176. name: "Slit (Erect)",
  32177. image: {
  32178. source: "./media/characters/glint/slit-erect.svg"
  32179. }
  32180. },
  32181. mawAnthro: {
  32182. height: math.unit(0.63, "meters"),
  32183. name: "Maw (Anthro)",
  32184. image: {
  32185. source: "./media/characters/glint/maw.svg"
  32186. }
  32187. },
  32188. mawFeral: {
  32189. height: math.unit(2.89, "meters"),
  32190. name: "Maw (Feral)",
  32191. image: {
  32192. source: "./media/characters/glint/maw.svg"
  32193. }
  32194. },
  32195. },
  32196. [
  32197. {
  32198. name: "Normal",
  32199. height: math.unit(9, "feet"),
  32200. default: true
  32201. },
  32202. ]
  32203. ))
  32204. characterMakers.push(() => makeCharacter(
  32205. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32206. {
  32207. side: {
  32208. height: math.unit(15, "feet"),
  32209. weight: math.unit(5000, "kg"),
  32210. name: "Side",
  32211. image: {
  32212. source: "./media/characters/kairne/side.svg",
  32213. extra: 979/811,
  32214. bottom: 13/992
  32215. }
  32216. },
  32217. front: {
  32218. height: math.unit(15, "feet"),
  32219. weight: math.unit(5000, "kg"),
  32220. name: "Front",
  32221. image: {
  32222. source: "./media/characters/kairne/front.svg",
  32223. extra: 908/814,
  32224. bottom: 26/934
  32225. }
  32226. },
  32227. sideNsfw: {
  32228. height: math.unit(15, "feet"),
  32229. weight: math.unit(5000, "kg"),
  32230. name: "Side (NSFW)",
  32231. image: {
  32232. source: "./media/characters/kairne/side-nsfw.svg",
  32233. extra: 979/811,
  32234. bottom: 13/992
  32235. }
  32236. },
  32237. frontNsfw: {
  32238. height: math.unit(15, "feet"),
  32239. weight: math.unit(5000, "kg"),
  32240. name: "Front (NSFW)",
  32241. image: {
  32242. source: "./media/characters/kairne/front-nsfw.svg",
  32243. extra: 908/814,
  32244. bottom: 26/934
  32245. }
  32246. },
  32247. dickCaged: {
  32248. height: math.unit(0.65, "meters"),
  32249. name: "Dick-caged",
  32250. image: {
  32251. source: "./media/characters/kairne/dick-caged.svg"
  32252. }
  32253. },
  32254. dick: {
  32255. height: math.unit(0.79, "meters"),
  32256. name: "Dick",
  32257. image: {
  32258. source: "./media/characters/kairne/dick.svg"
  32259. }
  32260. },
  32261. genitals: {
  32262. height: math.unit(1.29, "meters"),
  32263. name: "Genitals",
  32264. image: {
  32265. source: "./media/characters/kairne/genitals.svg"
  32266. }
  32267. },
  32268. maw: {
  32269. height: math.unit(1.73, "meters"),
  32270. name: "Maw",
  32271. image: {
  32272. source: "./media/characters/kairne/maw.svg"
  32273. }
  32274. },
  32275. },
  32276. [
  32277. {
  32278. name: "Normal",
  32279. height: math.unit(15, "feet"),
  32280. default: true
  32281. },
  32282. ]
  32283. ))
  32284. characterMakers.push(() => makeCharacter(
  32285. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32286. {
  32287. front: {
  32288. height: math.unit(5 + 8/12, "feet"),
  32289. weight: math.unit(139, "lb"),
  32290. name: "Front",
  32291. image: {
  32292. source: "./media/characters/biscuit-jackal/front.svg",
  32293. extra: 2106/1961,
  32294. bottom: 58/2164
  32295. }
  32296. },
  32297. back: {
  32298. height: math.unit(5 + 8/12, "feet"),
  32299. weight: math.unit(139, "lb"),
  32300. name: "Back",
  32301. image: {
  32302. source: "./media/characters/biscuit-jackal/back.svg",
  32303. extra: 2132/1976,
  32304. bottom: 57/2189
  32305. }
  32306. },
  32307. werejackal: {
  32308. height: math.unit(6 + 3/12, "feet"),
  32309. weight: math.unit(188, "lb"),
  32310. name: "Werejackal",
  32311. image: {
  32312. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32313. extra: 2373/2178,
  32314. bottom: 53/2426
  32315. }
  32316. },
  32317. },
  32318. [
  32319. {
  32320. name: "Normal",
  32321. height: math.unit(5 + 8/12, "feet"),
  32322. default: true
  32323. },
  32324. ]
  32325. ))
  32326. characterMakers.push(() => makeCharacter(
  32327. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32328. {
  32329. front: {
  32330. height: math.unit(140, "cm"),
  32331. weight: math.unit(45, "kg"),
  32332. name: "Front",
  32333. image: {
  32334. source: "./media/characters/tayra-white/front.svg",
  32335. extra: 2229/2192,
  32336. bottom: 75/2304
  32337. }
  32338. },
  32339. },
  32340. [
  32341. {
  32342. name: "Normal",
  32343. height: math.unit(140, "cm"),
  32344. default: true
  32345. },
  32346. ]
  32347. ))
  32348. characterMakers.push(() => makeCharacter(
  32349. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32350. {
  32351. front: {
  32352. height: math.unit(4 + 5/12, "feet"),
  32353. name: "Front",
  32354. image: {
  32355. source: "./media/characters/scoop/front.svg",
  32356. extra: 1257/1136,
  32357. bottom: 69/1326
  32358. }
  32359. },
  32360. back: {
  32361. height: math.unit(4 + 5/12, "feet"),
  32362. name: "Back",
  32363. image: {
  32364. source: "./media/characters/scoop/back.svg",
  32365. extra: 1321/1152,
  32366. bottom: 32/1353
  32367. }
  32368. },
  32369. maw: {
  32370. height: math.unit(0.68, "feet"),
  32371. name: "Maw",
  32372. image: {
  32373. source: "./media/characters/scoop/maw.svg"
  32374. }
  32375. },
  32376. },
  32377. [
  32378. {
  32379. name: "Really Small",
  32380. height: math.unit(1, "mm")
  32381. },
  32382. {
  32383. name: "Micro",
  32384. height: math.unit(1, "inch")
  32385. },
  32386. {
  32387. name: "Normal",
  32388. height: math.unit(4 + 5/12, "feet"),
  32389. default: true
  32390. },
  32391. {
  32392. name: "Macro",
  32393. height: math.unit(200, "feet")
  32394. },
  32395. {
  32396. name: "Megamacro",
  32397. height: math.unit(3240, "feet")
  32398. },
  32399. {
  32400. name: "Teramacro",
  32401. height: math.unit(2500, "miles")
  32402. },
  32403. ]
  32404. ))
  32405. characterMakers.push(() => makeCharacter(
  32406. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32407. {
  32408. front: {
  32409. height: math.unit(15 + 7/12, "feet"),
  32410. name: "Front",
  32411. image: {
  32412. source: "./media/characters/saphinara/front.svg",
  32413. extra: 604/546,
  32414. bottom: 19/623
  32415. }
  32416. },
  32417. side: {
  32418. height: math.unit(15 + 7/12, "feet"),
  32419. name: "Side",
  32420. image: {
  32421. source: "./media/characters/saphinara/side.svg",
  32422. extra: 605/547,
  32423. bottom: 6/611
  32424. }
  32425. },
  32426. back: {
  32427. height: math.unit(15 + 7/12, "feet"),
  32428. name: "Back",
  32429. image: {
  32430. source: "./media/characters/saphinara/back.svg",
  32431. extra: 591/531,
  32432. bottom: 13/604
  32433. }
  32434. },
  32435. frontTail: {
  32436. height: math.unit(15 + 7/12, "feet"),
  32437. name: "Front (Full Tail)",
  32438. image: {
  32439. source: "./media/characters/saphinara/front-tail.svg",
  32440. extra: 748/547,
  32441. bottom: 66/814
  32442. }
  32443. },
  32444. },
  32445. [
  32446. {
  32447. name: "Normal",
  32448. height: math.unit(15 + 7/12, "feet"),
  32449. default: true
  32450. },
  32451. {
  32452. name: "Angry",
  32453. height: math.unit(30 + 6/12, "feet")
  32454. },
  32455. {
  32456. name: "Enraged",
  32457. height: math.unit(102 + 1/12, "feet")
  32458. },
  32459. ]
  32460. ))
  32461. characterMakers.push(() => makeCharacter(
  32462. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32463. {
  32464. front: {
  32465. height: math.unit(6 + 8/12, "feet"),
  32466. weight: math.unit(300, "lb"),
  32467. name: "Front",
  32468. image: {
  32469. source: "./media/characters/jrain/front.svg",
  32470. extra: 3039/2865,
  32471. bottom: 399/3438
  32472. }
  32473. },
  32474. back: {
  32475. height: math.unit(6 + 8/12, "feet"),
  32476. weight: math.unit(300, "lb"),
  32477. name: "Back",
  32478. image: {
  32479. source: "./media/characters/jrain/back.svg",
  32480. extra: 3089/2938,
  32481. bottom: 172/3261
  32482. }
  32483. },
  32484. head: {
  32485. height: math.unit(2.14, "feet"),
  32486. name: "Head",
  32487. image: {
  32488. source: "./media/characters/jrain/head.svg"
  32489. }
  32490. },
  32491. maw: {
  32492. height: math.unit(1.77, "feet"),
  32493. name: "Maw",
  32494. image: {
  32495. source: "./media/characters/jrain/maw.svg"
  32496. }
  32497. },
  32498. leftHand: {
  32499. height: math.unit(1.1, "feet"),
  32500. name: "Left Hand",
  32501. image: {
  32502. source: "./media/characters/jrain/left-hand.svg"
  32503. }
  32504. },
  32505. rightHand: {
  32506. height: math.unit(1.1, "feet"),
  32507. name: "Right Hand",
  32508. image: {
  32509. source: "./media/characters/jrain/right-hand.svg"
  32510. }
  32511. },
  32512. eye: {
  32513. height: math.unit(0.35, "feet"),
  32514. name: "Eye",
  32515. image: {
  32516. source: "./media/characters/jrain/eye.svg"
  32517. }
  32518. },
  32519. },
  32520. [
  32521. {
  32522. name: "Normal",
  32523. height: math.unit(6 + 8/12, "feet"),
  32524. default: true
  32525. },
  32526. {
  32527. name: "Casually Large",
  32528. height: math.unit(25, "feet")
  32529. },
  32530. {
  32531. name: "Giant",
  32532. height: math.unit(100, "feet")
  32533. },
  32534. {
  32535. name: "Kaiju",
  32536. height: math.unit(300, "feet")
  32537. },
  32538. ]
  32539. ))
  32540. characterMakers.push(() => makeCharacter(
  32541. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32542. {
  32543. dragon: {
  32544. height: math.unit(5, "meters"),
  32545. name: "Dragon",
  32546. image: {
  32547. source: "./media/characters/sabrina/dragon.svg",
  32548. extra: 3670 / 2365,
  32549. bottom: 333 / 4003
  32550. }
  32551. },
  32552. gryphon: {
  32553. height: math.unit(3, "meters"),
  32554. name: "Gryphon",
  32555. image: {
  32556. source: "./media/characters/sabrina/gryphon.svg",
  32557. extra: 1576 / 945,
  32558. bottom: 71 / 1647
  32559. }
  32560. },
  32561. snake: {
  32562. height: math.unit(12, "meters"),
  32563. name: "Snake",
  32564. image: {
  32565. source: "./media/characters/sabrina/snake.svg",
  32566. extra: 1758 / 1320,
  32567. bottom: 186 / 1944
  32568. }
  32569. },
  32570. collar: {
  32571. height: math.unit(1.86, "meters"),
  32572. name: "Collar",
  32573. image: {
  32574. source: "./media/characters/sabrina/collar.svg"
  32575. }
  32576. },
  32577. eye: {
  32578. height: math.unit(0.53, "meters"),
  32579. name: "Eye",
  32580. image: {
  32581. source: "./media/characters/sabrina/eye.svg"
  32582. }
  32583. },
  32584. foot: {
  32585. height: math.unit(1.86, "meters"),
  32586. name: "Foot",
  32587. image: {
  32588. source: "./media/characters/sabrina/foot.svg"
  32589. }
  32590. },
  32591. hand: {
  32592. height: math.unit(1.32, "meters"),
  32593. name: "Hand",
  32594. image: {
  32595. source: "./media/characters/sabrina/hand.svg"
  32596. }
  32597. },
  32598. head: {
  32599. height: math.unit(2.44, "meters"),
  32600. name: "Head",
  32601. image: {
  32602. source: "./media/characters/sabrina/head.svg"
  32603. }
  32604. },
  32605. headAngry: {
  32606. height: math.unit(2.44, "meters"),
  32607. name: "Head (Angry))",
  32608. image: {
  32609. source: "./media/characters/sabrina/head-angry.svg"
  32610. }
  32611. },
  32612. maw: {
  32613. height: math.unit(1.65, "meters"),
  32614. name: "Maw",
  32615. image: {
  32616. source: "./media/characters/sabrina/maw.svg"
  32617. }
  32618. },
  32619. spikes: {
  32620. height: math.unit(1.69, "meters"),
  32621. name: "Spikes",
  32622. image: {
  32623. source: "./media/characters/sabrina/spikes.svg"
  32624. }
  32625. },
  32626. stomach: {
  32627. height: math.unit(1.15, "meters"),
  32628. name: "Stomach",
  32629. image: {
  32630. source: "./media/characters/sabrina/stomach.svg"
  32631. }
  32632. },
  32633. tongue: {
  32634. height: math.unit(1.27, "meters"),
  32635. name: "Tongue",
  32636. image: {
  32637. source: "./media/characters/sabrina/tongue.svg"
  32638. }
  32639. },
  32640. wingDorsal: {
  32641. height: math.unit(4.85, "meters"),
  32642. name: "Wing (Dorsal)",
  32643. image: {
  32644. source: "./media/characters/sabrina/wing-dorsal.svg"
  32645. }
  32646. },
  32647. wingVentral: {
  32648. height: math.unit(4.85, "meters"),
  32649. name: "Wing (Ventral)",
  32650. image: {
  32651. source: "./media/characters/sabrina/wing-ventral.svg"
  32652. }
  32653. },
  32654. },
  32655. [
  32656. {
  32657. name: "Normal",
  32658. height: math.unit(5, "meters"),
  32659. default: true
  32660. },
  32661. ]
  32662. ))
  32663. characterMakers.push(() => makeCharacter(
  32664. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32665. {
  32666. frontMaid: {
  32667. height: math.unit(5 + 5/12, "feet"),
  32668. weight: math.unit(130, "lb"),
  32669. name: "Front (Maid)",
  32670. image: {
  32671. source: "./media/characters/midnight-tales/front-maid.svg",
  32672. extra: 489/454,
  32673. bottom: 61/550
  32674. }
  32675. },
  32676. frontFormal: {
  32677. height: math.unit(5 + 5/12, "feet"),
  32678. weight: math.unit(130, "lb"),
  32679. name: "Front (Formal)",
  32680. image: {
  32681. source: "./media/characters/midnight-tales/front-formal.svg",
  32682. extra: 489/454,
  32683. bottom: 61/550
  32684. }
  32685. },
  32686. back: {
  32687. height: math.unit(5 + 5/12, "feet"),
  32688. weight: math.unit(130, "lb"),
  32689. name: "Back",
  32690. image: {
  32691. source: "./media/characters/midnight-tales/back.svg",
  32692. extra: 498/456,
  32693. bottom: 33/531
  32694. }
  32695. },
  32696. frontBeast: {
  32697. height: math.unit(40, "feet"),
  32698. weight: math.unit(64000, "lb"),
  32699. name: "Front (Beast)",
  32700. image: {
  32701. source: "./media/characters/midnight-tales/front-beast.svg",
  32702. extra: 927/860,
  32703. bottom: 53/980
  32704. }
  32705. },
  32706. backBeast: {
  32707. height: math.unit(40, "feet"),
  32708. weight: math.unit(64000, "lb"),
  32709. name: "Back (Beast)",
  32710. image: {
  32711. source: "./media/characters/midnight-tales/back-beast.svg",
  32712. extra: 929/855,
  32713. bottom: 16/945
  32714. }
  32715. },
  32716. footBeast: {
  32717. height: math.unit(6.7, "feet"),
  32718. name: "Foot (Beast)",
  32719. image: {
  32720. source: "./media/characters/midnight-tales/foot-beast.svg"
  32721. }
  32722. },
  32723. headBeast: {
  32724. height: math.unit(8, "feet"),
  32725. name: "Head (Beast)",
  32726. image: {
  32727. source: "./media/characters/midnight-tales/head-beast.svg"
  32728. }
  32729. },
  32730. },
  32731. [
  32732. {
  32733. name: "Normal",
  32734. height: math.unit(5 + 5 / 12, "feet"),
  32735. default: true
  32736. },
  32737. {
  32738. name: "Macro",
  32739. height: math.unit(25, "feet")
  32740. },
  32741. ]
  32742. ))
  32743. characterMakers.push(() => makeCharacter(
  32744. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32745. {
  32746. front: {
  32747. height: math.unit(5 + 10/12, "feet"),
  32748. name: "Front",
  32749. image: {
  32750. source: "./media/characters/argon/front.svg",
  32751. extra: 2009/1935,
  32752. bottom: 118/2127
  32753. }
  32754. },
  32755. back: {
  32756. height: math.unit(5 + 10/12, "feet"),
  32757. name: "Back",
  32758. image: {
  32759. source: "./media/characters/argon/back.svg",
  32760. extra: 2047/1992,
  32761. bottom: 20/2067
  32762. }
  32763. },
  32764. frontDressed: {
  32765. height: math.unit(5 + 10/12, "feet"),
  32766. name: "Front (Dressed)",
  32767. image: {
  32768. source: "./media/characters/argon/front-dressed.svg",
  32769. extra: 2009/1935,
  32770. bottom: 118/2127
  32771. }
  32772. },
  32773. },
  32774. [
  32775. {
  32776. name: "Normal",
  32777. height: math.unit(5 + 10/12, "feet"),
  32778. default: true
  32779. },
  32780. ]
  32781. ))
  32782. characterMakers.push(() => makeCharacter(
  32783. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32784. {
  32785. front: {
  32786. height: math.unit(8 + 6/12, "feet"),
  32787. weight: math.unit(1150, "lb"),
  32788. name: "Front",
  32789. image: {
  32790. source: "./media/characters/kichi/front.svg",
  32791. extra: 1267/1164,
  32792. bottom: 61/1328
  32793. }
  32794. },
  32795. back: {
  32796. height: math.unit(8 + 6/12, "feet"),
  32797. weight: math.unit(1150, "lb"),
  32798. name: "Back",
  32799. image: {
  32800. source: "./media/characters/kichi/back.svg",
  32801. extra: 1273/1166,
  32802. bottom: 33/1306
  32803. }
  32804. },
  32805. },
  32806. [
  32807. {
  32808. name: "Normal",
  32809. height: math.unit(8 + 6/12, "feet"),
  32810. default: true
  32811. },
  32812. ]
  32813. ))
  32814. characterMakers.push(() => makeCharacter(
  32815. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32816. {
  32817. front: {
  32818. height: math.unit(6, "feet"),
  32819. weight: math.unit(210, "lb"),
  32820. name: "Front",
  32821. image: {
  32822. source: "./media/characters/manetel-greyscale/front.svg",
  32823. extra: 350/312,
  32824. bottom: 8/358
  32825. }
  32826. },
  32827. },
  32828. [
  32829. {
  32830. name: "Micro",
  32831. height: math.unit(2, "inches")
  32832. },
  32833. {
  32834. name: "Normal",
  32835. height: math.unit(6, "feet"),
  32836. default: true
  32837. },
  32838. {
  32839. name: "Minimacro",
  32840. height: math.unit(17, "feet")
  32841. },
  32842. {
  32843. name: "Macro",
  32844. height: math.unit(117, "feet")
  32845. },
  32846. ]
  32847. ))
  32848. characterMakers.push(() => makeCharacter(
  32849. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32850. {
  32851. side: {
  32852. height: math.unit(5 + 1/12, "feet"),
  32853. weight: math.unit(418, "lb"),
  32854. name: "Side",
  32855. image: {
  32856. source: "./media/characters/softpurr/side.svg",
  32857. extra: 1993/1945,
  32858. bottom: 134/2127
  32859. }
  32860. },
  32861. front: {
  32862. height: math.unit(5 + 1/12, "feet"),
  32863. weight: math.unit(418, "lb"),
  32864. name: "Front",
  32865. image: {
  32866. source: "./media/characters/softpurr/front.svg",
  32867. extra: 1950/1856,
  32868. bottom: 174/2124
  32869. }
  32870. },
  32871. paw: {
  32872. height: math.unit(1, "feet"),
  32873. name: "Paw",
  32874. image: {
  32875. source: "./media/characters/softpurr/paw.svg"
  32876. }
  32877. },
  32878. },
  32879. [
  32880. {
  32881. name: "Normal",
  32882. height: math.unit(5 + 1/12, "feet"),
  32883. default: true
  32884. },
  32885. ]
  32886. ))
  32887. characterMakers.push(() => makeCharacter(
  32888. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32889. {
  32890. front: {
  32891. height: math.unit(260, "meters"),
  32892. name: "Front",
  32893. image: {
  32894. source: "./media/characters/anahita/front.svg",
  32895. extra: 665/635,
  32896. bottom: 89/754
  32897. }
  32898. },
  32899. },
  32900. [
  32901. {
  32902. name: "Macro",
  32903. height: math.unit(260, "meters"),
  32904. default: true
  32905. },
  32906. ]
  32907. ))
  32908. characterMakers.push(() => makeCharacter(
  32909. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32910. {
  32911. front: {
  32912. height: math.unit(4 + 10/12, "feet"),
  32913. weight: math.unit(160, "lb"),
  32914. name: "Front",
  32915. image: {
  32916. source: "./media/characters/chip-mouse/front.svg",
  32917. extra: 3528/3408,
  32918. bottom: 0/3528
  32919. }
  32920. },
  32921. frontNsfw: {
  32922. height: math.unit(4 + 10/12, "feet"),
  32923. weight: math.unit(160, "lb"),
  32924. name: "Front (NSFW)",
  32925. image: {
  32926. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32927. extra: 3528/3408,
  32928. bottom: 0/3528
  32929. }
  32930. },
  32931. },
  32932. [
  32933. {
  32934. name: "Normal",
  32935. height: math.unit(4 + 10/12, "feet"),
  32936. default: true
  32937. },
  32938. ]
  32939. ))
  32940. characterMakers.push(() => makeCharacter(
  32941. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32942. {
  32943. side: {
  32944. height: math.unit(10, "feet"),
  32945. weight: math.unit(14000, "lb"),
  32946. name: "Side",
  32947. image: {
  32948. source: "./media/characters/kremm/side.svg",
  32949. extra: 1390/1053,
  32950. bottom: 90/1480
  32951. }
  32952. },
  32953. gut: {
  32954. height: math.unit(5.8, "feet"),
  32955. name: "Gut",
  32956. image: {
  32957. source: "./media/characters/kremm/gut.svg"
  32958. }
  32959. },
  32960. ass: {
  32961. height: math.unit(6.1, "feet"),
  32962. name: "Ass",
  32963. image: {
  32964. source: "./media/characters/kremm/ass.svg"
  32965. }
  32966. },
  32967. jaws: {
  32968. height: math.unit(2.2, "feet"),
  32969. name: "Jaws",
  32970. image: {
  32971. source: "./media/characters/kremm/jaws.svg"
  32972. }
  32973. },
  32974. dick: {
  32975. height: math.unit(4.26, "feet"),
  32976. name: "Dick",
  32977. image: {
  32978. source: "./media/characters/kremm/dick.svg"
  32979. }
  32980. },
  32981. },
  32982. [
  32983. {
  32984. name: "Normal",
  32985. height: math.unit(10, "feet"),
  32986. default: true
  32987. },
  32988. ]
  32989. ))
  32990. characterMakers.push(() => makeCharacter(
  32991. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  32992. {
  32993. front: {
  32994. height: math.unit(30, "stories"),
  32995. name: "Front",
  32996. image: {
  32997. source: "./media/characters/kai/front.svg",
  32998. extra: 1892/1718,
  32999. bottom: 162/2054
  33000. }
  33001. },
  33002. },
  33003. [
  33004. {
  33005. name: "Macro",
  33006. height: math.unit(30, "stories"),
  33007. default: true
  33008. },
  33009. ]
  33010. ))
  33011. characterMakers.push(() => makeCharacter(
  33012. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33013. {
  33014. front: {
  33015. height: math.unit(6 + 4/12, "feet"),
  33016. weight: math.unit(145, "lb"),
  33017. name: "Front",
  33018. image: {
  33019. source: "./media/characters/sykes/front.svg",
  33020. extra: 1321 / 1187,
  33021. bottom: 66 / 1387
  33022. }
  33023. },
  33024. back: {
  33025. height: math.unit(6 + 4/12, "feet"),
  33026. weight: math.unit(145, "lb"),
  33027. name: "Back",
  33028. image: {
  33029. source: "./media/characters/sykes/back.svg",
  33030. extra: 1326/1181,
  33031. bottom: 31/1357
  33032. }
  33033. },
  33034. handBack: {
  33035. height: math.unit(0.9, "feet"),
  33036. name: "Hand (Back)",
  33037. image: {
  33038. source: "./media/characters/sykes/hand-back.svg"
  33039. }
  33040. },
  33041. handFront: {
  33042. height: math.unit(0.839, "feet"),
  33043. name: "Hand (Front)",
  33044. image: {
  33045. source: "./media/characters/sykes/hand-front.svg"
  33046. }
  33047. },
  33048. leftFoot: {
  33049. height: math.unit(1.2, "feet"),
  33050. name: "Foot (Left)",
  33051. image: {
  33052. source: "./media/characters/sykes/foot-left.svg"
  33053. }
  33054. },
  33055. rightFoot: {
  33056. height: math.unit(1.2, "feet"),
  33057. name: "Foot (Right)",
  33058. image: {
  33059. source: "./media/characters/sykes/foot-right.svg"
  33060. }
  33061. },
  33062. maw: {
  33063. height: math.unit(1.93, "feet"),
  33064. name: "Maw",
  33065. image: {
  33066. source: "./media/characters/sykes/maw.svg"
  33067. }
  33068. },
  33069. teeth: {
  33070. height: math.unit(0.51, "feet"),
  33071. name: "Teeth",
  33072. image: {
  33073. source: "./media/characters/sykes/teeth.svg"
  33074. }
  33075. },
  33076. tongue: {
  33077. height: math.unit(2.13, "feet"),
  33078. name: "Tongue",
  33079. image: {
  33080. source: "./media/characters/sykes/tongue.svg"
  33081. }
  33082. },
  33083. uvula: {
  33084. height: math.unit(0.16, "feet"),
  33085. name: "Uvula",
  33086. image: {
  33087. source: "./media/characters/sykes/uvula.svg"
  33088. }
  33089. },
  33090. collar: {
  33091. height: math.unit(0.287, "feet"),
  33092. name: "Collar",
  33093. image: {
  33094. source: "./media/characters/sykes/collar.svg"
  33095. }
  33096. },
  33097. },
  33098. [
  33099. {
  33100. name: "Shrunken",
  33101. height: math.unit(5, "inches")
  33102. },
  33103. {
  33104. name: "Normal",
  33105. height: math.unit(6 + 4 / 12, "feet"),
  33106. default: true
  33107. },
  33108. {
  33109. name: "Big",
  33110. height: math.unit(15, "feet")
  33111. },
  33112. ]
  33113. ))
  33114. characterMakers.push(() => makeCharacter(
  33115. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33116. {
  33117. front: {
  33118. height: math.unit(5 + 8/12, "feet"),
  33119. weight: math.unit(190, "lb"),
  33120. name: "Front",
  33121. image: {
  33122. source: "./media/characters/oven-otter/front.svg",
  33123. extra: 1809/1740,
  33124. bottom: 181/1990
  33125. }
  33126. },
  33127. back: {
  33128. height: math.unit(5 + 8/12, "feet"),
  33129. weight: math.unit(190, "lb"),
  33130. name: "Back",
  33131. image: {
  33132. source: "./media/characters/oven-otter/back.svg",
  33133. extra: 1709/1635,
  33134. bottom: 118/1827
  33135. }
  33136. },
  33137. hand: {
  33138. height: math.unit(1.07, "feet"),
  33139. name: "Hand",
  33140. image: {
  33141. source: "./media/characters/oven-otter/hand.svg"
  33142. }
  33143. },
  33144. beans: {
  33145. height: math.unit(1.74, "feet"),
  33146. name: "Beans",
  33147. image: {
  33148. source: "./media/characters/oven-otter/beans.svg"
  33149. }
  33150. },
  33151. },
  33152. [
  33153. {
  33154. name: "Micro",
  33155. height: math.unit(0.5, "inches")
  33156. },
  33157. {
  33158. name: "Normal",
  33159. height: math.unit(5 + 8/12, "feet"),
  33160. default: true
  33161. },
  33162. {
  33163. name: "Macro",
  33164. height: math.unit(250, "feet")
  33165. },
  33166. {
  33167. name: "Really High",
  33168. height: math.unit(420, "feet")
  33169. },
  33170. ]
  33171. ))
  33172. characterMakers.push(() => makeCharacter(
  33173. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33174. {
  33175. front: {
  33176. height: math.unit(5, "meters"),
  33177. weight: math.unit(292000000000000, "kg"),
  33178. name: "Front",
  33179. image: {
  33180. source: "./media/characters/devourer/front.svg",
  33181. extra: 1800/1733,
  33182. bottom: 211/2011
  33183. }
  33184. },
  33185. maw: {
  33186. height: math.unit(1.1, "meter"),
  33187. name: "Maw",
  33188. image: {
  33189. source: "./media/characters/devourer/maw.svg"
  33190. }
  33191. },
  33192. },
  33193. [
  33194. {
  33195. name: "Small",
  33196. height: math.unit(3, "meters")
  33197. },
  33198. {
  33199. name: "Large",
  33200. height: math.unit(5, "meters"),
  33201. default: true
  33202. },
  33203. ]
  33204. ))
  33205. characterMakers.push(() => makeCharacter(
  33206. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33207. {
  33208. front: {
  33209. height: math.unit(6, "feet"),
  33210. weight: math.unit(400, "lb"),
  33211. name: "Front",
  33212. image: {
  33213. source: "./media/characters/ellarby/front.svg",
  33214. extra: 1909/1763,
  33215. bottom: 80/1989
  33216. }
  33217. },
  33218. back: {
  33219. height: math.unit(6, "feet"),
  33220. weight: math.unit(400, "lb"),
  33221. name: "Back",
  33222. image: {
  33223. source: "./media/characters/ellarby/back.svg",
  33224. extra: 1914/1784,
  33225. bottom: 172/2086
  33226. }
  33227. },
  33228. },
  33229. [
  33230. {
  33231. name: "Mischief",
  33232. height: math.unit(18, "inches")
  33233. },
  33234. {
  33235. name: "Trouble",
  33236. height: math.unit(12, "feet")
  33237. },
  33238. {
  33239. name: "Havoc",
  33240. height: math.unit(200, "feet"),
  33241. default: true
  33242. },
  33243. {
  33244. name: "Pandemonium",
  33245. height: math.unit(1, "mile")
  33246. },
  33247. {
  33248. name: "Catastrophe",
  33249. height: math.unit(100, "miles")
  33250. },
  33251. ]
  33252. ))
  33253. characterMakers.push(() => makeCharacter(
  33254. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33255. {
  33256. front: {
  33257. height: math.unit(4.7, "meters"),
  33258. weight: math.unit(6500, "kg"),
  33259. name: "Front",
  33260. image: {
  33261. source: "./media/characters/vex/front.svg",
  33262. extra: 1288/1140,
  33263. bottom: 100/1388
  33264. }
  33265. },
  33266. },
  33267. [
  33268. {
  33269. name: "Normal",
  33270. height: math.unit(4.7, "meters"),
  33271. default: true
  33272. },
  33273. ]
  33274. ))
  33275. characterMakers.push(() => makeCharacter(
  33276. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33277. {
  33278. normal: {
  33279. height: math.unit(6, "feet"),
  33280. weight: math.unit(350, "lb"),
  33281. name: "Normal",
  33282. image: {
  33283. source: "./media/characters/teshy/normal.svg",
  33284. extra: 1795/1735,
  33285. bottom: 16/1811
  33286. }
  33287. },
  33288. monsterFront: {
  33289. height: math.unit(12, "feet"),
  33290. weight: math.unit(4700, "lb"),
  33291. name: "Monster (Front)",
  33292. image: {
  33293. source: "./media/characters/teshy/monster-front.svg",
  33294. extra: 2042/2034,
  33295. bottom: 128/2170
  33296. }
  33297. },
  33298. monsterSide: {
  33299. height: math.unit(12, "feet"),
  33300. weight: math.unit(4700, "lb"),
  33301. name: "Monster (Side)",
  33302. image: {
  33303. source: "./media/characters/teshy/monster-side.svg",
  33304. extra: 2067/2056,
  33305. bottom: 70/2137
  33306. }
  33307. },
  33308. monsterBack: {
  33309. height: math.unit(12, "feet"),
  33310. weight: math.unit(4700, "lb"),
  33311. name: "Monster (Back)",
  33312. image: {
  33313. source: "./media/characters/teshy/monster-back.svg",
  33314. extra: 1921/1914,
  33315. bottom: 171/2092
  33316. }
  33317. },
  33318. },
  33319. [
  33320. {
  33321. name: "Normal",
  33322. height: math.unit(6, "feet"),
  33323. default: true
  33324. },
  33325. ]
  33326. ))
  33327. characterMakers.push(() => makeCharacter(
  33328. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33329. {
  33330. front: {
  33331. height: math.unit(6, "feet"),
  33332. name: "Front",
  33333. image: {
  33334. source: "./media/characters/ramey/front.svg",
  33335. extra: 790/787,
  33336. bottom: 27/817
  33337. }
  33338. },
  33339. },
  33340. [
  33341. {
  33342. name: "Normal",
  33343. height: math.unit(6, "feet"),
  33344. default: true
  33345. },
  33346. ]
  33347. ))
  33348. characterMakers.push(() => makeCharacter(
  33349. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33350. {
  33351. front: {
  33352. height: math.unit(5 + 5/12, "feet"),
  33353. weight: math.unit(120, "lb"),
  33354. name: "Front",
  33355. image: {
  33356. source: "./media/characters/phirae/front.svg",
  33357. extra: 2491/2436,
  33358. bottom: 38/2529
  33359. }
  33360. },
  33361. },
  33362. [
  33363. {
  33364. name: "Normal",
  33365. height: math.unit(5 + 5/12, "feet"),
  33366. default: true
  33367. },
  33368. ]
  33369. ))
  33370. characterMakers.push(() => makeCharacter(
  33371. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33372. {
  33373. front: {
  33374. height: math.unit(6, "feet"),
  33375. weight: math.unit(150, "lb"),
  33376. name: "Front",
  33377. image: {
  33378. source: "./media/characters/stagglas/front.svg",
  33379. extra: 962/882,
  33380. bottom: 53/1015
  33381. }
  33382. },
  33383. },
  33384. [
  33385. {
  33386. name: "Normal",
  33387. height: math.unit(5 + 3/12, "feet"),
  33388. default: true
  33389. },
  33390. ]
  33391. ))
  33392. characterMakers.push(() => makeCharacter(
  33393. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33394. {
  33395. front: {
  33396. height: math.unit(5 + 4/12, "feet"),
  33397. weight: math.unit(145, "lb"),
  33398. name: "Front",
  33399. image: {
  33400. source: "./media/characters/starra/front.svg",
  33401. extra: 1790/1691,
  33402. bottom: 91/1881
  33403. }
  33404. },
  33405. },
  33406. [
  33407. {
  33408. name: "Normal",
  33409. height: math.unit(5 + 4/12, "feet"),
  33410. default: true
  33411. },
  33412. ]
  33413. ))
  33414. characterMakers.push(() => makeCharacter(
  33415. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33416. {
  33417. front: {
  33418. height: math.unit(2.2, "meters"),
  33419. name: "Front",
  33420. image: {
  33421. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33422. extra: 1194/1005,
  33423. bottom: 25/1219
  33424. }
  33425. },
  33426. },
  33427. [
  33428. {
  33429. name: "Normal",
  33430. height: math.unit(2.2, "meters"),
  33431. default: true
  33432. },
  33433. ]
  33434. ))
  33435. characterMakers.push(() => makeCharacter(
  33436. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33437. {
  33438. side: {
  33439. height: math.unit(8 + 2/12, "feet"),
  33440. weight: math.unit(1240, "lb"),
  33441. name: "Side",
  33442. image: {
  33443. source: "./media/characters/mika-valentine/side.svg",
  33444. extra: 2670/2501,
  33445. bottom: 250/2920
  33446. }
  33447. },
  33448. },
  33449. [
  33450. {
  33451. name: "Normal",
  33452. height: math.unit(8 + 2/12, "feet"),
  33453. default: true
  33454. },
  33455. ]
  33456. ))
  33457. characterMakers.push(() => makeCharacter(
  33458. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33459. {
  33460. front: {
  33461. height: math.unit(7 + 2/12, "feet"),
  33462. name: "Front",
  33463. image: {
  33464. source: "./media/characters/xoltol/front.svg",
  33465. extra: 2212/2124,
  33466. bottom: 84/2296
  33467. }
  33468. },
  33469. side: {
  33470. height: math.unit(7 + 2/12, "feet"),
  33471. name: "Side",
  33472. image: {
  33473. source: "./media/characters/xoltol/side.svg",
  33474. extra: 2273/2197,
  33475. bottom: 26/2299
  33476. }
  33477. },
  33478. hand: {
  33479. height: math.unit(2.5, "feet"),
  33480. name: "Hand",
  33481. image: {
  33482. source: "./media/characters/xoltol/hand.svg"
  33483. }
  33484. },
  33485. },
  33486. [
  33487. {
  33488. name: "Small-ish",
  33489. height: math.unit(5 + 11/12, "feet")
  33490. },
  33491. {
  33492. name: "Normal",
  33493. height: math.unit(7 + 2/12, "feet")
  33494. },
  33495. {
  33496. name: "\"Macro\"",
  33497. height: math.unit(14 + 9/12, "feet"),
  33498. default: true
  33499. },
  33500. {
  33501. name: "Alternate Height",
  33502. height: math.unit(20, "feet")
  33503. },
  33504. {
  33505. name: "Actually Macro",
  33506. height: math.unit(100, "feet")
  33507. },
  33508. ]
  33509. ))
  33510. characterMakers.push(() => makeCharacter(
  33511. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33512. {
  33513. front: {
  33514. height: math.unit(5 + 2/12, "feet"),
  33515. name: "Front",
  33516. image: {
  33517. source: "./media/characters/kotetsu-redwood/front.svg",
  33518. extra: 1053/942,
  33519. bottom: 60/1113
  33520. }
  33521. },
  33522. },
  33523. [
  33524. {
  33525. name: "Normal",
  33526. height: math.unit(5 + 2/12, "feet"),
  33527. default: true
  33528. },
  33529. ]
  33530. ))
  33531. characterMakers.push(() => makeCharacter(
  33532. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33533. {
  33534. front: {
  33535. height: math.unit(2.4, "meters"),
  33536. weight: math.unit(125, "kg"),
  33537. name: "Front",
  33538. image: {
  33539. source: "./media/characters/lilith/front.svg",
  33540. extra: 1590/1513,
  33541. bottom: 203/1793
  33542. }
  33543. },
  33544. },
  33545. [
  33546. {
  33547. name: "Humanoid",
  33548. height: math.unit(2.4, "meters")
  33549. },
  33550. {
  33551. name: "Normal",
  33552. height: math.unit(6, "meters"),
  33553. default: true
  33554. },
  33555. {
  33556. name: "Largest",
  33557. height: math.unit(55, "meters")
  33558. },
  33559. ]
  33560. ))
  33561. characterMakers.push(() => makeCharacter(
  33562. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33563. {
  33564. front: {
  33565. height: math.unit(8 + 4/12, "feet"),
  33566. weight: math.unit(535, "lb"),
  33567. name: "Front",
  33568. image: {
  33569. source: "./media/characters/beh'kah-bolger/front.svg",
  33570. extra: 1660/1603,
  33571. bottom: 37/1697
  33572. }
  33573. },
  33574. },
  33575. [
  33576. {
  33577. name: "Normal",
  33578. height: math.unit(8 + 4/12, "feet"),
  33579. default: true
  33580. },
  33581. {
  33582. name: "Kaiju",
  33583. height: math.unit(250, "feet")
  33584. },
  33585. {
  33586. name: "Still Growing",
  33587. height: math.unit(10, "miles")
  33588. },
  33589. {
  33590. name: "Continental",
  33591. height: math.unit(5000, "miles")
  33592. },
  33593. {
  33594. name: "Final Form",
  33595. height: math.unit(2500000, "miles")
  33596. },
  33597. ]
  33598. ))
  33599. characterMakers.push(() => makeCharacter(
  33600. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33601. {
  33602. front: {
  33603. height: math.unit(7 + 2/12, "feet"),
  33604. weight: math.unit(230, "kg"),
  33605. name: "Front",
  33606. image: {
  33607. source: "./media/characters/tatyana-milewska/front.svg",
  33608. extra: 1199/1150,
  33609. bottom: 86/1285
  33610. }
  33611. },
  33612. },
  33613. [
  33614. {
  33615. name: "Normal",
  33616. height: math.unit(7 + 2/12, "feet"),
  33617. default: true
  33618. },
  33619. {
  33620. name: "Big",
  33621. height: math.unit(12, "feet")
  33622. },
  33623. {
  33624. name: "Minimacro",
  33625. height: math.unit(20, "feet")
  33626. },
  33627. {
  33628. name: "Macro",
  33629. height: math.unit(120, "feet")
  33630. },
  33631. ]
  33632. ))
  33633. characterMakers.push(() => makeCharacter(
  33634. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33635. {
  33636. front: {
  33637. height: math.unit(7 + 8/12, "feet"),
  33638. weight: math.unit(152, "kg"),
  33639. name: "Front",
  33640. image: {
  33641. source: "./media/characters/helen-arri/front.svg",
  33642. extra: 440/423,
  33643. bottom: 14/454
  33644. }
  33645. },
  33646. back: {
  33647. height: math.unit(7 + 8/12, "feet"),
  33648. weight: math.unit(152, "kg"),
  33649. name: "Back",
  33650. image: {
  33651. source: "./media/characters/helen-arri/back.svg",
  33652. extra: 443/426,
  33653. bottom: 8/451
  33654. }
  33655. },
  33656. },
  33657. [
  33658. {
  33659. name: "Normal",
  33660. height: math.unit(7 + 8/12, "feet"),
  33661. default: true
  33662. },
  33663. {
  33664. name: "Big",
  33665. height: math.unit(14, "feet")
  33666. },
  33667. {
  33668. name: "Minimacro",
  33669. height: math.unit(24, "feet")
  33670. },
  33671. {
  33672. name: "Macro",
  33673. height: math.unit(140, "feet")
  33674. },
  33675. ]
  33676. ))
  33677. characterMakers.push(() => makeCharacter(
  33678. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33679. {
  33680. front: {
  33681. height: math.unit(6, "meters"),
  33682. name: "Front",
  33683. image: {
  33684. source: "./media/characters/ehanu-rehu/front.svg",
  33685. extra: 1800/1800,
  33686. bottom: 59/1859
  33687. }
  33688. },
  33689. },
  33690. [
  33691. {
  33692. name: "Normal",
  33693. height: math.unit(6, "meters"),
  33694. default: true
  33695. },
  33696. ]
  33697. ))
  33698. characterMakers.push(() => makeCharacter(
  33699. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33700. {
  33701. front: {
  33702. height: math.unit(7 + 3/12, "feet"),
  33703. name: "Front",
  33704. image: {
  33705. source: "./media/characters/renholder/front.svg",
  33706. extra: 3096/2960,
  33707. bottom: 250/3346
  33708. }
  33709. },
  33710. },
  33711. [
  33712. {
  33713. name: "Normal Bat",
  33714. height: math.unit(7 + 3/12, "feet"),
  33715. default: true
  33716. },
  33717. {
  33718. name: "Slightly Tall Bat",
  33719. height: math.unit(100, "feet")
  33720. },
  33721. {
  33722. name: "Big Bat",
  33723. height: math.unit(1000, "feet")
  33724. },
  33725. {
  33726. name: "City-Sized Bat",
  33727. height: math.unit(200000, "feet")
  33728. },
  33729. {
  33730. name: "Bigger Bat",
  33731. height: math.unit(10000, "miles")
  33732. },
  33733. {
  33734. name: "Solar Sized Bat",
  33735. height: math.unit(100, "AU")
  33736. },
  33737. {
  33738. name: "Galactic Bat",
  33739. height: math.unit(200000, "lightyears")
  33740. },
  33741. {
  33742. name: "Universally Known Bat",
  33743. height: math.unit(1, "universe")
  33744. },
  33745. ]
  33746. ))
  33747. characterMakers.push(() => makeCharacter(
  33748. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33749. {
  33750. front: {
  33751. height: math.unit(6 + 11/12, "feet"),
  33752. weight: math.unit(250, "lb"),
  33753. name: "Front",
  33754. image: {
  33755. source: "./media/characters/cookiecat/front.svg",
  33756. extra: 893/827,
  33757. bottom: 14/907
  33758. }
  33759. },
  33760. },
  33761. [
  33762. {
  33763. name: "Micro",
  33764. height: math.unit(3, "inches")
  33765. },
  33766. {
  33767. name: "Normal",
  33768. height: math.unit(6 + 11/12, "feet"),
  33769. default: true
  33770. },
  33771. {
  33772. name: "Macro",
  33773. height: math.unit(100, "feet")
  33774. },
  33775. {
  33776. name: "Macro+",
  33777. height: math.unit(404, "feet")
  33778. },
  33779. {
  33780. name: "Megamacro",
  33781. height: math.unit(165, "miles")
  33782. },
  33783. {
  33784. name: "Planetary",
  33785. height: math.unit(4600, "miles")
  33786. },
  33787. ]
  33788. ))
  33789. characterMakers.push(() => makeCharacter(
  33790. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33791. {
  33792. front: {
  33793. height: math.unit(10 + 3/12, "feet"),
  33794. weight: math.unit(1500, "lb"),
  33795. name: "Front",
  33796. image: {
  33797. source: "./media/characters/tux-kusanagi/front.svg",
  33798. extra: 944/840,
  33799. bottom: 39/983
  33800. }
  33801. },
  33802. back: {
  33803. height: math.unit(10 + 3/12, "feet"),
  33804. weight: math.unit(1500, "lb"),
  33805. name: "Back",
  33806. image: {
  33807. source: "./media/characters/tux-kusanagi/back.svg",
  33808. extra: 941/842,
  33809. bottom: 28/969
  33810. }
  33811. },
  33812. rump: {
  33813. height: math.unit(5.25, "feet"),
  33814. name: "Rump",
  33815. image: {
  33816. source: "./media/characters/tux-kusanagi/rump.svg"
  33817. }
  33818. },
  33819. beak: {
  33820. height: math.unit(1.54, "feet"),
  33821. name: "Beak",
  33822. image: {
  33823. source: "./media/characters/tux-kusanagi/beak.svg"
  33824. }
  33825. },
  33826. },
  33827. [
  33828. {
  33829. name: "Normal",
  33830. height: math.unit(10 + 3/12, "feet"),
  33831. default: true
  33832. },
  33833. ]
  33834. ))
  33835. characterMakers.push(() => makeCharacter(
  33836. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33837. {
  33838. front: {
  33839. height: math.unit(58, "feet"),
  33840. weight: math.unit(200, "tons"),
  33841. name: "Front",
  33842. image: {
  33843. source: "./media/characters/uzarmazari/front.svg",
  33844. extra: 1575/1455,
  33845. bottom: 152/1727
  33846. }
  33847. },
  33848. back: {
  33849. height: math.unit(58, "feet"),
  33850. weight: math.unit(200, "tons"),
  33851. name: "Back",
  33852. image: {
  33853. source: "./media/characters/uzarmazari/back.svg",
  33854. extra: 1585/1510,
  33855. bottom: 157/1742
  33856. }
  33857. },
  33858. head: {
  33859. height: math.unit(26, "feet"),
  33860. name: "Head",
  33861. image: {
  33862. source: "./media/characters/uzarmazari/head.svg"
  33863. }
  33864. },
  33865. },
  33866. [
  33867. {
  33868. name: "Normal",
  33869. height: math.unit(58, "feet"),
  33870. default: true
  33871. },
  33872. ]
  33873. ))
  33874. characterMakers.push(() => makeCharacter(
  33875. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33876. {
  33877. side: {
  33878. height: math.unit(15, "feet"),
  33879. name: "Side",
  33880. image: {
  33881. source: "./media/characters/akitu/side.svg",
  33882. extra: 1421/1321,
  33883. bottom: 157/1578
  33884. }
  33885. },
  33886. front: {
  33887. height: math.unit(15, "feet"),
  33888. name: "Front",
  33889. image: {
  33890. source: "./media/characters/akitu/front.svg",
  33891. extra: 1435/1326,
  33892. bottom: 232/1667
  33893. }
  33894. },
  33895. },
  33896. [
  33897. {
  33898. name: "Normal",
  33899. height: math.unit(15, "feet"),
  33900. default: true
  33901. },
  33902. ]
  33903. ))
  33904. characterMakers.push(() => makeCharacter(
  33905. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33906. {
  33907. front: {
  33908. height: math.unit(10 + 8/12, "feet"),
  33909. name: "Front",
  33910. image: {
  33911. source: "./media/characters/azalie-croixland/front.svg",
  33912. extra: 1972/1856,
  33913. bottom: 31/2003
  33914. }
  33915. },
  33916. },
  33917. [
  33918. {
  33919. name: "Original Height",
  33920. height: math.unit(5 + 4/12, "feet")
  33921. },
  33922. {
  33923. name: "Normal Height",
  33924. height: math.unit(10 + 8/12, "feet"),
  33925. default: true
  33926. },
  33927. ]
  33928. ))
  33929. characterMakers.push(() => makeCharacter(
  33930. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33931. {
  33932. side: {
  33933. height: math.unit(7 + 1/12, "feet"),
  33934. weight: math.unit(245, "lb"),
  33935. name: "Side",
  33936. image: {
  33937. source: "./media/characters/kavus-kazian/side.svg",
  33938. extra: 349/342,
  33939. bottom: 15/364
  33940. }
  33941. },
  33942. },
  33943. [
  33944. {
  33945. name: "Normal",
  33946. height: math.unit(7 + 1/12, "feet"),
  33947. default: true
  33948. },
  33949. ]
  33950. ))
  33951. characterMakers.push(() => makeCharacter(
  33952. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  33953. {
  33954. normal: {
  33955. height: math.unit(5 + 11/12, "feet"),
  33956. name: "Normal",
  33957. image: {
  33958. source: "./media/characters/moonlight-rose/normal.svg",
  33959. extra: 1979/1835,
  33960. bottom: 14/1993
  33961. }
  33962. },
  33963. demon: {
  33964. height: math.unit(5, "km"),
  33965. name: "Demon",
  33966. image: {
  33967. source: "./media/characters/moonlight-rose/demon.svg",
  33968. extra: 986/916,
  33969. bottom: 28/1014
  33970. }
  33971. },
  33972. },
  33973. [
  33974. {
  33975. name: "\"Natural\" height",
  33976. height: math.unit(5 + 11/12, "feet")
  33977. },
  33978. {
  33979. name: "Comfortable Size",
  33980. height: math.unit(40, "meters")
  33981. },
  33982. {
  33983. name: "Common Size",
  33984. height: math.unit(50, "km"),
  33985. default: true
  33986. },
  33987. {
  33988. name: "Demonic",
  33989. height: math.unit(1.24415e+21, "meters")
  33990. },
  33991. ]
  33992. ))
  33993. characterMakers.push(() => makeCharacter(
  33994. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  33995. {
  33996. front: {
  33997. height: math.unit(16, "feet"),
  33998. weight: math.unit(610, "kg"),
  33999. name: "Front",
  34000. image: {
  34001. source: "./media/characters/huckle/front.svg",
  34002. extra: 1731/1625,
  34003. bottom: 33/1764
  34004. }
  34005. },
  34006. back: {
  34007. height: math.unit(16, "feet"),
  34008. weight: math.unit(610, "kg"),
  34009. name: "Back",
  34010. image: {
  34011. source: "./media/characters/huckle/back.svg",
  34012. extra: 1738/1651,
  34013. bottom: 37/1775
  34014. }
  34015. },
  34016. laughing: {
  34017. height: math.unit(3.75, "feet"),
  34018. name: "Laughing",
  34019. image: {
  34020. source: "./media/characters/huckle/laughing.svg"
  34021. }
  34022. },
  34023. angry: {
  34024. height: math.unit(4.15, "feet"),
  34025. name: "Angry",
  34026. image: {
  34027. source: "./media/characters/huckle/angry.svg"
  34028. }
  34029. },
  34030. },
  34031. [
  34032. {
  34033. name: "Normal",
  34034. height: math.unit(16, "feet"),
  34035. default: true
  34036. },
  34037. {
  34038. name: "Mini Macro",
  34039. height: math.unit(463, "feet")
  34040. },
  34041. {
  34042. name: "Macro",
  34043. height: math.unit(1680, "meters")
  34044. },
  34045. {
  34046. name: "Mega Macro",
  34047. height: math.unit(175, "km")
  34048. },
  34049. {
  34050. name: "Terra Macro",
  34051. height: math.unit(32, "gigameters")
  34052. },
  34053. {
  34054. name: "Multiverse+",
  34055. height: math.unit(2.56e23, "yottameters")
  34056. },
  34057. ]
  34058. ))
  34059. characterMakers.push(() => makeCharacter(
  34060. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34061. {
  34062. front: {
  34063. height: math.unit(6 + 9/12, "feet"),
  34064. weight: math.unit(280, "lb"),
  34065. name: "Front",
  34066. image: {
  34067. source: "./media/characters/candy/front.svg",
  34068. extra: 234/217,
  34069. bottom: 11/245
  34070. }
  34071. },
  34072. },
  34073. [
  34074. {
  34075. name: "Really Small",
  34076. height: math.unit(0.1, "nm")
  34077. },
  34078. {
  34079. name: "Micro",
  34080. height: math.unit(2, "inches")
  34081. },
  34082. {
  34083. name: "Normal",
  34084. height: math.unit(6 + 9/12, "feet"),
  34085. default: true
  34086. },
  34087. {
  34088. name: "Small Macro",
  34089. height: math.unit(69, "feet")
  34090. },
  34091. {
  34092. name: "Macro",
  34093. height: math.unit(160, "feet")
  34094. },
  34095. {
  34096. name: "Megamacro",
  34097. height: math.unit(22000, "miles")
  34098. },
  34099. {
  34100. name: "Gigamacro",
  34101. height: math.unit(50000, "miles")
  34102. },
  34103. ]
  34104. ))
  34105. characterMakers.push(() => makeCharacter(
  34106. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34107. {
  34108. front: {
  34109. height: math.unit(4, "feet"),
  34110. weight: math.unit(90, "lb"),
  34111. name: "Front",
  34112. image: {
  34113. source: "./media/characters/joey-mcdonald/front.svg",
  34114. extra: 1059/852,
  34115. bottom: 33/1092
  34116. }
  34117. },
  34118. back: {
  34119. height: math.unit(4, "feet"),
  34120. weight: math.unit(90, "lb"),
  34121. name: "Back",
  34122. image: {
  34123. source: "./media/characters/joey-mcdonald/back.svg",
  34124. extra: 1077/879,
  34125. bottom: 5/1082
  34126. }
  34127. },
  34128. },
  34129. [
  34130. {
  34131. name: "Normal",
  34132. height: math.unit(4, "feet"),
  34133. default: true
  34134. },
  34135. ]
  34136. ))
  34137. characterMakers.push(() => makeCharacter(
  34138. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34139. {
  34140. front: {
  34141. height: math.unit(12 + 6/12, "feet"),
  34142. name: "Front",
  34143. image: {
  34144. source: "./media/characters/kass-lockheed/front.svg",
  34145. extra: 354/343,
  34146. bottom: 9/363
  34147. }
  34148. },
  34149. back: {
  34150. height: math.unit(12 + 6/12, "feet"),
  34151. name: "Back",
  34152. image: {
  34153. source: "./media/characters/kass-lockheed/back.svg",
  34154. extra: 364/352,
  34155. bottom: 3/367
  34156. }
  34157. },
  34158. dick: {
  34159. height: math.unit(3.12, "feet"),
  34160. name: "Dick",
  34161. image: {
  34162. source: "./media/characters/kass-lockheed/dick.svg"
  34163. }
  34164. },
  34165. head: {
  34166. height: math.unit(2.6, "feet"),
  34167. name: "Head",
  34168. image: {
  34169. source: "./media/characters/kass-lockheed/head.svg"
  34170. }
  34171. },
  34172. bleh: {
  34173. height: math.unit(2.85, "feet"),
  34174. name: "Bleh",
  34175. image: {
  34176. source: "./media/characters/kass-lockheed/bleh.svg"
  34177. }
  34178. },
  34179. smug: {
  34180. height: math.unit(2.85, "feet"),
  34181. name: "Smug",
  34182. image: {
  34183. source: "./media/characters/kass-lockheed/smug.svg"
  34184. }
  34185. },
  34186. },
  34187. [
  34188. {
  34189. name: "Normal",
  34190. height: math.unit(12 + 6/12, "feet"),
  34191. default: true
  34192. },
  34193. ]
  34194. ))
  34195. characterMakers.push(() => makeCharacter(
  34196. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34197. {
  34198. front: {
  34199. height: math.unit(6 + 2/12, "feet"),
  34200. name: "Front",
  34201. image: {
  34202. source: "./media/characters/taylor/front.svg",
  34203. extra: 639/495,
  34204. bottom: 12/651
  34205. }
  34206. },
  34207. },
  34208. [
  34209. {
  34210. name: "Normal",
  34211. height: math.unit(6 + 2/12, "feet"),
  34212. default: true
  34213. },
  34214. {
  34215. name: "Big",
  34216. height: math.unit(15, "feet")
  34217. },
  34218. {
  34219. name: "Lorg",
  34220. height: math.unit(80, "feet")
  34221. },
  34222. {
  34223. name: "Too Lorg",
  34224. height: math.unit(120, "feet")
  34225. },
  34226. ]
  34227. ))
  34228. characterMakers.push(() => makeCharacter(
  34229. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34230. {
  34231. front: {
  34232. height: math.unit(15, "feet"),
  34233. name: "Front",
  34234. image: {
  34235. source: "./media/characters/kaizer/front.svg",
  34236. extra: 1612/1436,
  34237. bottom: 43/1655
  34238. }
  34239. },
  34240. },
  34241. [
  34242. {
  34243. name: "Normal",
  34244. height: math.unit(15, "feet"),
  34245. default: true
  34246. },
  34247. ]
  34248. ))
  34249. characterMakers.push(() => makeCharacter(
  34250. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34251. {
  34252. front: {
  34253. height: math.unit(2, "feet"),
  34254. weight: math.unit(30, "lb"),
  34255. name: "Front",
  34256. image: {
  34257. source: "./media/characters/sandy/front.svg",
  34258. extra: 1439/1307,
  34259. bottom: 194/1633
  34260. }
  34261. },
  34262. },
  34263. [
  34264. {
  34265. name: "Normal",
  34266. height: math.unit(2, "feet"),
  34267. default: true
  34268. },
  34269. ]
  34270. ))
  34271. characterMakers.push(() => makeCharacter(
  34272. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34273. {
  34274. front: {
  34275. height: math.unit(3, "feet"),
  34276. name: "Front",
  34277. image: {
  34278. source: "./media/characters/mellvi/front.svg",
  34279. extra: 1831/1630,
  34280. bottom: 58/1889
  34281. }
  34282. },
  34283. },
  34284. [
  34285. {
  34286. name: "Normal",
  34287. height: math.unit(3, "feet"),
  34288. default: true
  34289. },
  34290. ]
  34291. ))
  34292. characterMakers.push(() => makeCharacter(
  34293. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34294. {
  34295. front: {
  34296. height: math.unit(5 + 11/12, "feet"),
  34297. weight: math.unit(200, "lb"),
  34298. name: "Front",
  34299. image: {
  34300. source: "./media/characters/shirou/front.svg",
  34301. extra: 2491/2383,
  34302. bottom: 189/2680
  34303. }
  34304. },
  34305. back: {
  34306. height: math.unit(5 + 11/12, "feet"),
  34307. weight: math.unit(200, "lb"),
  34308. name: "Back",
  34309. image: {
  34310. source: "./media/characters/shirou/back.svg",
  34311. extra: 2554/2450,
  34312. bottom: 76/2630
  34313. }
  34314. },
  34315. },
  34316. [
  34317. {
  34318. name: "Normal",
  34319. height: math.unit(5 + 11/12, "feet"),
  34320. default: true
  34321. },
  34322. ]
  34323. ))
  34324. characterMakers.push(() => makeCharacter(
  34325. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34326. {
  34327. front: {
  34328. height: math.unit(6 + 3/12, "feet"),
  34329. weight: math.unit(177, "lb"),
  34330. name: "Front",
  34331. image: {
  34332. source: "./media/characters/noryu/front.svg",
  34333. extra: 973/885,
  34334. bottom: 10/983
  34335. }
  34336. },
  34337. },
  34338. [
  34339. {
  34340. name: "Normal",
  34341. height: math.unit(6 + 3/12, "feet"),
  34342. default: true
  34343. },
  34344. ]
  34345. ))
  34346. characterMakers.push(() => makeCharacter(
  34347. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34348. {
  34349. front: {
  34350. height: math.unit(5 + 6/12, "feet"),
  34351. weight: math.unit(170, "lb"),
  34352. name: "Front",
  34353. image: {
  34354. source: "./media/characters/mevolas-rubenido/front.svg",
  34355. extra: 2109/1901,
  34356. bottom: 96/2205
  34357. }
  34358. },
  34359. },
  34360. [
  34361. {
  34362. name: "Normal",
  34363. height: math.unit(5 + 6/12, "feet"),
  34364. default: true
  34365. },
  34366. ]
  34367. ))
  34368. characterMakers.push(() => makeCharacter(
  34369. { name: "Dee", species: ["valais-blacknose-sheep"], tags: ["anthro"] },
  34370. {
  34371. front: {
  34372. height: math.unit(100, "feet"),
  34373. name: "Front",
  34374. image: {
  34375. source: "./media/characters/dee/front.svg",
  34376. extra: 2153/2036,
  34377. bottom: 59/2212
  34378. }
  34379. },
  34380. back: {
  34381. height: math.unit(100, "feet"),
  34382. name: "Back",
  34383. image: {
  34384. source: "./media/characters/dee/back.svg",
  34385. extra: 2183/2058,
  34386. bottom: 75/2258
  34387. }
  34388. },
  34389. foot: {
  34390. height: math.unit(19.43, "feet"),
  34391. name: "Foot",
  34392. image: {
  34393. source: "./media/characters/dee/foot.svg"
  34394. }
  34395. },
  34396. hoof: {
  34397. height: math.unit(20.6, "feet"),
  34398. name: "Hoof",
  34399. image: {
  34400. source: "./media/characters/dee/hoof.svg"
  34401. }
  34402. },
  34403. },
  34404. [
  34405. {
  34406. name: "Macro",
  34407. height: math.unit(100, "feet"),
  34408. default: true
  34409. },
  34410. ]
  34411. ))
  34412. characterMakers.push(() => makeCharacter(
  34413. { name: "Teh", species: ["bat"], tags: ["anthro"] },
  34414. {
  34415. front: {
  34416. height: math.unit(5 + 6/12, "feet"),
  34417. name: "Front",
  34418. image: {
  34419. source: "./media/characters/teh/front.svg",
  34420. extra: 1002/847,
  34421. bottom: 62/1064
  34422. }
  34423. },
  34424. },
  34425. [
  34426. {
  34427. name: "Normal",
  34428. height: math.unit(5 + 6/12, "feet"),
  34429. default: true
  34430. },
  34431. ]
  34432. ))
  34433. characterMakers.push(() => makeCharacter(
  34434. { name: "Quicksilver Ayukoti", species: ["dragon", "wolf"], tags: ["feral"] },
  34435. {
  34436. side: {
  34437. height: math.unit(6 + 1/12, "feet"),
  34438. weight: math.unit(204, "lb"),
  34439. name: "Side",
  34440. image: {
  34441. source: "./media/characters/quicksilver-ayukoti/side.svg",
  34442. extra: 974/775,
  34443. bottom: 169/1143
  34444. }
  34445. },
  34446. sitting: {
  34447. height: math.unit(6 + 2/12, "feet"),
  34448. weight: math.unit(204, "lb"),
  34449. name: "Sitting",
  34450. image: {
  34451. source: "./media/characters/quicksilver-ayukoti/sitting.svg",
  34452. extra: 1175/964,
  34453. bottom: 378/1553
  34454. }
  34455. },
  34456. },
  34457. [
  34458. {
  34459. name: "Normal",
  34460. height: math.unit(6 + 1/12, "feet"),
  34461. default: true
  34462. },
  34463. ]
  34464. ))
  34465. characterMakers.push(() => makeCharacter(
  34466. { name: "Tululi", species: ["dunnoh"], tags: ["anthro"] },
  34467. {
  34468. front: {
  34469. height: math.unit(6, "inches"),
  34470. name: "Front",
  34471. image: {
  34472. source: "./media/characters/tululi/front.svg",
  34473. extra: 1997/1876,
  34474. bottom: 20/2017
  34475. }
  34476. },
  34477. },
  34478. [
  34479. {
  34480. name: "Normal",
  34481. height: math.unit(6, "inches"),
  34482. default: true
  34483. },
  34484. ]
  34485. ))
  34486. characterMakers.push(() => makeCharacter(
  34487. { name: "Star", species: ["novaleit"], tags: ["anthro"] },
  34488. {
  34489. front: {
  34490. height: math.unit(4 + 1/12, "feet"),
  34491. name: "Front",
  34492. image: {
  34493. source: "./media/characters/star/front.svg",
  34494. extra: 1493/1189,
  34495. bottom: 48/1541
  34496. }
  34497. },
  34498. },
  34499. [
  34500. {
  34501. name: "Normal",
  34502. height: math.unit(4 + 1/12, "feet"),
  34503. default: true
  34504. },
  34505. ]
  34506. ))
  34507. characterMakers.push(() => makeCharacter(
  34508. { name: "Comet", species: ["novaleit"], tags: ["anthro"] },
  34509. {
  34510. front: {
  34511. height: math.unit(6 + 3/12, "feet"),
  34512. name: "Front",
  34513. image: {
  34514. source: "./media/characters/comet/front.svg",
  34515. extra: 1681/1462,
  34516. bottom: 26/1707
  34517. }
  34518. },
  34519. },
  34520. [
  34521. {
  34522. name: "Normal",
  34523. height: math.unit(6 + 3/12, "feet"),
  34524. default: true
  34525. },
  34526. ]
  34527. ))
  34528. characterMakers.push(() => makeCharacter(
  34529. { name: "Vortex", species: ["kaiju"], tags: ["anthro"] },
  34530. {
  34531. front: {
  34532. height: math.unit(950, "feet"),
  34533. name: "Front",
  34534. image: {
  34535. source: "./media/characters/vortex/front.svg",
  34536. extra: 1497/1434,
  34537. bottom: 56/1553
  34538. }
  34539. },
  34540. maw: {
  34541. height: math.unit(285, "feet"),
  34542. name: "Maw",
  34543. image: {
  34544. source: "./media/characters/vortex/maw.svg"
  34545. }
  34546. },
  34547. },
  34548. [
  34549. {
  34550. name: "Macro",
  34551. height: math.unit(950, "feet"),
  34552. default: true
  34553. },
  34554. ]
  34555. ))
  34556. characterMakers.push(() => makeCharacter(
  34557. { name: "Doodle", species: ["kaiju", "dragon"], tags: ["anthro"] },
  34558. {
  34559. front: {
  34560. height: math.unit(600, "feet"),
  34561. weight: math.unit(0.02, "grams"),
  34562. name: "Front",
  34563. image: {
  34564. source: "./media/characters/doodle/front.svg",
  34565. extra: 1578/1413,
  34566. bottom: 37/1615
  34567. }
  34568. },
  34569. },
  34570. [
  34571. {
  34572. name: "Macro",
  34573. height: math.unit(600, "feet"),
  34574. default: true
  34575. },
  34576. ]
  34577. ))
  34578. characterMakers.push(() => makeCharacter(
  34579. { name: "Jai", species: ["dragon"], tags: ["anthro"] },
  34580. {
  34581. front: {
  34582. height: math.unit(6 + 6/12, "feet"),
  34583. name: "Front",
  34584. image: {
  34585. source: "./media/characters/jai/front.svg",
  34586. extra: 1645/1534,
  34587. bottom: 115/1760
  34588. }
  34589. },
  34590. },
  34591. [
  34592. {
  34593. name: "Normal",
  34594. height: math.unit(6 + 6/12, "feet"),
  34595. default: true
  34596. },
  34597. ]
  34598. ))
  34599. characterMakers.push(() => makeCharacter(
  34600. { name: "Pixel", species: ["gryphon"], tags: ["anthro"] },
  34601. {
  34602. front: {
  34603. height: math.unit(6 + 8/12, "feet"),
  34604. name: "Front",
  34605. image: {
  34606. source: "./media/characters/pixel/front.svg",
  34607. extra: 1900/1735,
  34608. bottom: 63/1963
  34609. }
  34610. },
  34611. },
  34612. [
  34613. {
  34614. name: "Normal",
  34615. height: math.unit(6 + 8/12, "feet"),
  34616. default: true
  34617. },
  34618. ]
  34619. ))
  34620. //characters
  34621. function makeCharacters() {
  34622. const results = [];
  34623. characterMakers.forEach(character => {
  34624. results.push(character());
  34625. });
  34626. return results;
  34627. }