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

33550 строки
844 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. }
  1480. //species
  1481. function getSpeciesInfo(speciesList) {
  1482. let result = new Set();
  1483. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1484. result.add(entry)
  1485. });
  1486. return Array.from(result);
  1487. };
  1488. function getSpeciesInfoHelper(species) {
  1489. if (!speciesData[species]) {
  1490. console.warn(species + " doesn't exist");
  1491. return [];
  1492. }
  1493. if (speciesData[species].parents) {
  1494. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1495. } else {
  1496. return [species];
  1497. }
  1498. }
  1499. characterMakers.push(() => makeCharacter(
  1500. {
  1501. name: "Fen",
  1502. species: ["crux"],
  1503. description: {
  1504. title: "Bio",
  1505. text: "Very furry. Sheds on everything."
  1506. },
  1507. tags: [
  1508. "anthro",
  1509. "goo"
  1510. ]
  1511. },
  1512. {
  1513. back: {
  1514. height: math.unit(2.2428, "meter"),
  1515. weight: math.unit(124.738, "kg"),
  1516. name: "Back",
  1517. image: {
  1518. source: "./media/characters/fen/back.svg",
  1519. extra: 2024 / 1867,
  1520. bottom: 13 / 2037
  1521. },
  1522. info: {
  1523. description: {
  1524. mode: "append",
  1525. text: "\n\nHe is not currently looking at you."
  1526. }
  1527. }
  1528. },
  1529. full: {
  1530. height: math.unit(1.34, "meter"),
  1531. weight: math.unit(225, "kg"),
  1532. name: "Full",
  1533. image: {
  1534. source: "./media/characters/fen/full.svg"
  1535. },
  1536. info: {
  1537. description: {
  1538. mode: "append",
  1539. text: "\n\nMunch."
  1540. }
  1541. }
  1542. },
  1543. kneeling: {
  1544. height: math.unit(5.4, "feet"),
  1545. weight: math.unit(124.738, "kg"),
  1546. name: "Kneeling",
  1547. image: {
  1548. source: "./media/characters/fen/kneeling.svg",
  1549. extra: 563 / 507
  1550. }
  1551. },
  1552. goo: {
  1553. height: math.unit(2.8, "feet"),
  1554. weight: math.unit(125, "kg"),
  1555. capacity: math.unit(1, "people"),
  1556. name: "Goo",
  1557. image: {
  1558. source: "./media/characters/fen/goo.svg",
  1559. bottom: 116 / 613
  1560. }
  1561. },
  1562. lounging: {
  1563. height: math.unit(6.5, "feet"),
  1564. weight: math.unit(125, "kg"),
  1565. name: "Lounging",
  1566. image: {
  1567. source: "./media/characters/fen/lounging.svg"
  1568. }
  1569. },
  1570. },
  1571. [
  1572. {
  1573. name: "Normal",
  1574. height: math.unit(2.2428, "meter")
  1575. },
  1576. {
  1577. name: "Big",
  1578. height: math.unit(12, "feet")
  1579. },
  1580. {
  1581. name: "Minimacro",
  1582. height: math.unit(40, "feet"),
  1583. default: true,
  1584. info: {
  1585. description: {
  1586. mode: "append",
  1587. text: "\n\nTOO DAMN BIG"
  1588. }
  1589. }
  1590. },
  1591. {
  1592. name: "Macro",
  1593. height: math.unit(100, "feet"),
  1594. info: {
  1595. description: {
  1596. mode: "append",
  1597. text: "\n\nTOO DAMN BIG"
  1598. }
  1599. }
  1600. },
  1601. {
  1602. name: "Macro+",
  1603. height: math.unit(300, "feet")
  1604. },
  1605. {
  1606. name: "Megamacro",
  1607. height: math.unit(2, "miles")
  1608. }
  1609. ]
  1610. ))
  1611. characterMakers.push(() => makeCharacter(
  1612. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1613. {
  1614. front: {
  1615. height: math.unit(183, "cm"),
  1616. weight: math.unit(80, "kg"),
  1617. name: "Front",
  1618. image: {
  1619. source: "./media/characters/sofia-fluttertail/front.svg",
  1620. bottom: 0.01,
  1621. extra: 2154 / 2081
  1622. }
  1623. },
  1624. frontAlt: {
  1625. height: math.unit(183, "cm"),
  1626. weight: math.unit(80, "kg"),
  1627. name: "Front (alt)",
  1628. image: {
  1629. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1630. }
  1631. },
  1632. back: {
  1633. height: math.unit(183, "cm"),
  1634. weight: math.unit(80, "kg"),
  1635. name: "Back",
  1636. image: {
  1637. source: "./media/characters/sofia-fluttertail/back.svg"
  1638. }
  1639. },
  1640. kneeling: {
  1641. height: math.unit(125, "cm"),
  1642. weight: math.unit(80, "kg"),
  1643. name: "Kneeling",
  1644. image: {
  1645. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1646. extra: 1033 / 977,
  1647. bottom: 23.7 / 1057
  1648. }
  1649. },
  1650. maw: {
  1651. height: math.unit(183 / 5, "cm"),
  1652. name: "Maw",
  1653. image: {
  1654. source: "./media/characters/sofia-fluttertail/maw.svg"
  1655. }
  1656. },
  1657. mawcloseup: {
  1658. height: math.unit(183 / 5 * 0.41, "cm"),
  1659. name: "Maw (Closeup)",
  1660. image: {
  1661. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1662. }
  1663. },
  1664. paws: {
  1665. height: math.unit(1.17, "feet"),
  1666. name: "Paws",
  1667. image: {
  1668. source: "./media/characters/sofia-fluttertail/paws.svg",
  1669. extra: 851 / 851,
  1670. bottom: 17 / 868
  1671. }
  1672. },
  1673. },
  1674. [
  1675. {
  1676. name: "Normal",
  1677. height: math.unit(1.83, "meter")
  1678. },
  1679. {
  1680. name: "Size Thief",
  1681. height: math.unit(18, "feet")
  1682. },
  1683. {
  1684. name: "50 Foot Collie",
  1685. height: math.unit(50, "feet")
  1686. },
  1687. {
  1688. name: "Macro",
  1689. height: math.unit(96, "feet"),
  1690. default: true
  1691. },
  1692. {
  1693. name: "Megamerger",
  1694. height: math.unit(650, "feet")
  1695. },
  1696. ]
  1697. ))
  1698. characterMakers.push(() => makeCharacter(
  1699. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1700. {
  1701. front: {
  1702. height: math.unit(7, "feet"),
  1703. weight: math.unit(100, "kg"),
  1704. name: "Front",
  1705. image: {
  1706. source: "./media/characters/march/front.svg",
  1707. extra: 1,
  1708. bottom: 0.015
  1709. }
  1710. },
  1711. foot: {
  1712. height: math.unit(0.9, "feet"),
  1713. name: "Foot",
  1714. image: {
  1715. source: "./media/characters/march/foot.svg"
  1716. }
  1717. },
  1718. },
  1719. [
  1720. {
  1721. name: "Normal",
  1722. height: math.unit(7.9, "feet")
  1723. },
  1724. {
  1725. name: "Macro",
  1726. height: math.unit(220, "meters")
  1727. },
  1728. {
  1729. name: "Megamacro",
  1730. height: math.unit(2.98, "km"),
  1731. default: true
  1732. },
  1733. {
  1734. name: "Gigamacro",
  1735. height: math.unit(15963, "km")
  1736. },
  1737. {
  1738. name: "Teramacro",
  1739. height: math.unit(2980000000, "km")
  1740. },
  1741. {
  1742. name: "Examacro",
  1743. height: math.unit(250, "parsecs")
  1744. },
  1745. ]
  1746. ))
  1747. characterMakers.push(() => makeCharacter(
  1748. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1749. {
  1750. front: {
  1751. height: math.unit(6, "feet"),
  1752. weight: math.unit(60, "kg"),
  1753. name: "Front",
  1754. image: {
  1755. source: "./media/characters/noir/front.svg",
  1756. extra: 1,
  1757. bottom: 0.032
  1758. }
  1759. },
  1760. },
  1761. [
  1762. {
  1763. name: "Normal",
  1764. height: math.unit(6.6, "feet")
  1765. },
  1766. {
  1767. name: "Macro",
  1768. height: math.unit(500, "feet")
  1769. },
  1770. {
  1771. name: "Megamacro",
  1772. height: math.unit(2.5, "km"),
  1773. default: true
  1774. },
  1775. {
  1776. name: "Gigamacro",
  1777. height: math.unit(22500, "km")
  1778. },
  1779. {
  1780. name: "Teramacro",
  1781. height: math.unit(2500000000, "km")
  1782. },
  1783. {
  1784. name: "Examacro",
  1785. height: math.unit(200, "parsecs")
  1786. },
  1787. ]
  1788. ))
  1789. characterMakers.push(() => makeCharacter(
  1790. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1791. {
  1792. front: {
  1793. height: math.unit(7, "feet"),
  1794. weight: math.unit(100, "kg"),
  1795. name: "Front",
  1796. image: {
  1797. source: "./media/characters/okuri/front.svg",
  1798. extra: 1,
  1799. bottom: 0.037
  1800. }
  1801. },
  1802. back: {
  1803. height: math.unit(7, "feet"),
  1804. weight: math.unit(100, "kg"),
  1805. name: "Back",
  1806. image: {
  1807. source: "./media/characters/okuri/back.svg",
  1808. extra: 1,
  1809. bottom: 0.007
  1810. }
  1811. },
  1812. },
  1813. [
  1814. {
  1815. name: "Megamacro",
  1816. height: math.unit(100, "miles"),
  1817. default: true
  1818. },
  1819. ]
  1820. ))
  1821. characterMakers.push(() => makeCharacter(
  1822. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1823. {
  1824. front: {
  1825. height: math.unit(7, "feet"),
  1826. weight: math.unit(100, "kg"),
  1827. name: "Front",
  1828. image: {
  1829. source: "./media/characters/manny/front.svg",
  1830. extra: 1,
  1831. bottom: 0.06
  1832. }
  1833. },
  1834. back: {
  1835. height: math.unit(7, "feet"),
  1836. weight: math.unit(100, "kg"),
  1837. name: "Back",
  1838. image: {
  1839. source: "./media/characters/manny/back.svg",
  1840. extra: 1,
  1841. bottom: 0.014
  1842. }
  1843. },
  1844. },
  1845. [
  1846. {
  1847. name: "Normal",
  1848. height: math.unit(7, "feet"),
  1849. },
  1850. {
  1851. name: "Macro",
  1852. height: math.unit(78, "feet"),
  1853. default: true
  1854. },
  1855. {
  1856. name: "Macro+",
  1857. height: math.unit(300, "meters")
  1858. },
  1859. {
  1860. name: "Macro++",
  1861. height: math.unit(2400, "meters")
  1862. },
  1863. {
  1864. name: "Megamacro",
  1865. height: math.unit(5167, "meters")
  1866. },
  1867. {
  1868. name: "Gigamacro",
  1869. height: math.unit(41769, "miles")
  1870. },
  1871. ]
  1872. ))
  1873. characterMakers.push(() => makeCharacter(
  1874. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1875. {
  1876. front: {
  1877. height: math.unit(7, "feet"),
  1878. weight: math.unit(100, "kg"),
  1879. name: "Front",
  1880. image: {
  1881. source: "./media/characters/adake/front-1.svg"
  1882. }
  1883. },
  1884. frontAlt: {
  1885. height: math.unit(7, "feet"),
  1886. weight: math.unit(100, "kg"),
  1887. name: "Front (Alt)",
  1888. image: {
  1889. source: "./media/characters/adake/front-2.svg",
  1890. extra: 1,
  1891. bottom: 0.01
  1892. }
  1893. },
  1894. back: {
  1895. height: math.unit(7, "feet"),
  1896. weight: math.unit(100, "kg"),
  1897. name: "Back",
  1898. image: {
  1899. source: "./media/characters/adake/back.svg",
  1900. }
  1901. },
  1902. kneel: {
  1903. height: math.unit(5.385, "feet"),
  1904. weight: math.unit(100, "kg"),
  1905. name: "Kneeling",
  1906. image: {
  1907. source: "./media/characters/adake/kneel.svg",
  1908. bottom: 0.052
  1909. }
  1910. },
  1911. },
  1912. [
  1913. {
  1914. name: "Normal",
  1915. height: math.unit(7, "feet"),
  1916. },
  1917. {
  1918. name: "Macro",
  1919. height: math.unit(78, "feet"),
  1920. default: true
  1921. },
  1922. {
  1923. name: "Macro+",
  1924. height: math.unit(300, "meters")
  1925. },
  1926. {
  1927. name: "Macro++",
  1928. height: math.unit(2400, "meters")
  1929. },
  1930. {
  1931. name: "Megamacro",
  1932. height: math.unit(5167, "meters")
  1933. },
  1934. {
  1935. name: "Gigamacro",
  1936. height: math.unit(41769, "miles")
  1937. },
  1938. ]
  1939. ))
  1940. characterMakers.push(() => makeCharacter(
  1941. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1942. {
  1943. front: {
  1944. height: math.unit(1.65, "meters"),
  1945. weight: math.unit(50, "kg"),
  1946. name: "Front",
  1947. image: {
  1948. source: "./media/characters/elijah/front.svg",
  1949. extra: 858 / 830,
  1950. bottom: 95.5 / 953.8559
  1951. }
  1952. },
  1953. back: {
  1954. height: math.unit(1.65, "meters"),
  1955. weight: math.unit(50, "kg"),
  1956. name: "Back",
  1957. image: {
  1958. source: "./media/characters/elijah/back.svg",
  1959. extra: 895 / 850,
  1960. bottom: 5.3 / 897.956
  1961. }
  1962. },
  1963. frontNsfw: {
  1964. height: math.unit(1.65, "meters"),
  1965. weight: math.unit(50, "kg"),
  1966. name: "Front (NSFW)",
  1967. image: {
  1968. source: "./media/characters/elijah/front-nsfw.svg",
  1969. extra: 858 / 830,
  1970. bottom: 95.5 / 953.8559
  1971. }
  1972. },
  1973. backNsfw: {
  1974. height: math.unit(1.65, "meters"),
  1975. weight: math.unit(50, "kg"),
  1976. name: "Back (NSFW)",
  1977. image: {
  1978. source: "./media/characters/elijah/back-nsfw.svg",
  1979. extra: 895 / 850,
  1980. bottom: 5.3 / 897.956
  1981. }
  1982. },
  1983. dick: {
  1984. height: math.unit(1, "feet"),
  1985. name: "Dick",
  1986. image: {
  1987. source: "./media/characters/elijah/dick.svg"
  1988. }
  1989. },
  1990. beakOpen: {
  1991. height: math.unit(1.25, "feet"),
  1992. name: "Beak (Open)",
  1993. image: {
  1994. source: "./media/characters/elijah/beak-open.svg"
  1995. }
  1996. },
  1997. beakShut: {
  1998. height: math.unit(1.25, "feet"),
  1999. name: "Beak (Shut)",
  2000. image: {
  2001. source: "./media/characters/elijah/beak-shut.svg"
  2002. }
  2003. },
  2004. footFlexing: {
  2005. height: math.unit(1.61, "feet"),
  2006. name: "Foot (Flexing)",
  2007. image: {
  2008. source: "./media/characters/elijah/foot-flexing.svg"
  2009. }
  2010. },
  2011. footStepping: {
  2012. height: math.unit(1.44, "feet"),
  2013. name: "Foot (Stepping)",
  2014. image: {
  2015. source: "./media/characters/elijah/foot-stepping.svg"
  2016. }
  2017. },
  2018. plantigradeLeg: {
  2019. height: math.unit(2.34, "feet"),
  2020. name: "Plantigrade Leg",
  2021. image: {
  2022. source: "./media/characters/elijah/plantigrade-leg.svg"
  2023. }
  2024. },
  2025. plantigradeFootLeft: {
  2026. height: math.unit(0.9, "feet"),
  2027. name: "Plantigrade Foot (Left)",
  2028. image: {
  2029. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2030. }
  2031. },
  2032. plantigradeFootRight: {
  2033. height: math.unit(0.9, "feet"),
  2034. name: "Plantigrade Foot (Right)",
  2035. image: {
  2036. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2037. }
  2038. },
  2039. },
  2040. [
  2041. {
  2042. name: "Normal",
  2043. height: math.unit(1.65, "meters")
  2044. },
  2045. {
  2046. name: "Macro",
  2047. height: math.unit(55, "meters"),
  2048. default: true
  2049. },
  2050. {
  2051. name: "Macro+",
  2052. height: math.unit(105, "meters")
  2053. },
  2054. ]
  2055. ))
  2056. characterMakers.push(() => makeCharacter(
  2057. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2058. {
  2059. front: {
  2060. height: math.unit(11, "feet"),
  2061. weight: math.unit(80, "kg"),
  2062. name: "Front",
  2063. image: {
  2064. source: "./media/characters/rai/front.svg",
  2065. extra: 1,
  2066. bottom: 0.03
  2067. }
  2068. },
  2069. side: {
  2070. height: math.unit(11, "feet"),
  2071. weight: math.unit(80, "kg"),
  2072. name: "Side",
  2073. image: {
  2074. source: "./media/characters/rai/side.svg"
  2075. }
  2076. },
  2077. back: {
  2078. height: math.unit(11, "feet"),
  2079. weight: math.unit(80, "lb"),
  2080. name: "Back",
  2081. image: {
  2082. source: "./media/characters/rai/back.svg",
  2083. extra: 1,
  2084. bottom: 0.01
  2085. }
  2086. },
  2087. feral: {
  2088. height: math.unit(11, "feet"),
  2089. weight: math.unit(800, "lb"),
  2090. name: "Feral",
  2091. image: {
  2092. source: "./media/characters/rai/feral.svg",
  2093. extra: 1050 / 659,
  2094. bottom: 0.07
  2095. }
  2096. },
  2097. dragon: {
  2098. height: math.unit(23, "feet"),
  2099. weight: math.unit(50000, "lb"),
  2100. name: "Dragon",
  2101. image: {
  2102. source: "./media/characters/rai/dragon.svg",
  2103. extra: 2498 / 2030,
  2104. bottom: 85.2 / 2584
  2105. }
  2106. },
  2107. maw: {
  2108. height: math.unit(6 / 3.81416, "feet"),
  2109. name: "Maw",
  2110. image: {
  2111. source: "./media/characters/rai/maw.svg"
  2112. }
  2113. },
  2114. },
  2115. [
  2116. {
  2117. name: "Normal",
  2118. height: math.unit(11, "feet")
  2119. },
  2120. {
  2121. name: "Macro",
  2122. height: math.unit(302, "feet"),
  2123. default: true
  2124. },
  2125. ]
  2126. ))
  2127. characterMakers.push(() => makeCharacter(
  2128. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2129. {
  2130. frontDressed: {
  2131. height: math.unit(216, "feet"),
  2132. weight: math.unit(7000000, "lb"),
  2133. name: "Front (Dressed)",
  2134. image: {
  2135. source: "./media/characters/jazzy/front-dressed.svg",
  2136. extra: 2738 / 2651,
  2137. bottom: 41.8 / 2786
  2138. }
  2139. },
  2140. backDressed: {
  2141. height: math.unit(216, "feet"),
  2142. weight: math.unit(7000000, "lb"),
  2143. name: "Back (Dressed)",
  2144. image: {
  2145. source: "./media/characters/jazzy/back-dressed.svg",
  2146. extra: 2775 / 2673,
  2147. bottom: 36.8 / 2817
  2148. }
  2149. },
  2150. front: {
  2151. height: math.unit(216, "feet"),
  2152. weight: math.unit(7000000, "lb"),
  2153. name: "Front",
  2154. image: {
  2155. source: "./media/characters/jazzy/front.svg",
  2156. extra: 2738 / 2651,
  2157. bottom: 41.8 / 2786
  2158. }
  2159. },
  2160. back: {
  2161. height: math.unit(216, "feet"),
  2162. weight: math.unit(7000000, "lb"),
  2163. name: "Back",
  2164. image: {
  2165. source: "./media/characters/jazzy/back.svg",
  2166. extra: 2775 / 2673,
  2167. bottom: 36.8 / 2817
  2168. }
  2169. },
  2170. maw: {
  2171. height: math.unit(20, "feet"),
  2172. name: "Maw",
  2173. image: {
  2174. source: "./media/characters/jazzy/maw.svg"
  2175. }
  2176. },
  2177. paws: {
  2178. height: math.unit(27.5, "feet"),
  2179. name: "Paws",
  2180. image: {
  2181. source: "./media/characters/jazzy/paws.svg"
  2182. }
  2183. },
  2184. eye: {
  2185. height: math.unit(4.4, "feet"),
  2186. name: "Eye",
  2187. image: {
  2188. source: "./media/characters/jazzy/eye.svg"
  2189. }
  2190. },
  2191. droneOffense: {
  2192. height: math.unit(9.5, "inches"),
  2193. name: "Drone (Offense)",
  2194. image: {
  2195. source: "./media/characters/jazzy/drone-offense.svg"
  2196. }
  2197. },
  2198. droneRecon: {
  2199. height: math.unit(9.5, "inches"),
  2200. name: "Drone (Recon)",
  2201. image: {
  2202. source: "./media/characters/jazzy/drone-recon.svg"
  2203. }
  2204. },
  2205. droneDefense: {
  2206. height: math.unit(9.5, "inches"),
  2207. name: "Drone (Defense)",
  2208. image: {
  2209. source: "./media/characters/jazzy/drone-defense.svg"
  2210. }
  2211. },
  2212. },
  2213. [
  2214. {
  2215. name: "Macro",
  2216. height: math.unit(216, "feet"),
  2217. default: true
  2218. },
  2219. ]
  2220. ))
  2221. characterMakers.push(() => makeCharacter(
  2222. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2223. {
  2224. front: {
  2225. height: math.unit(7, "feet"),
  2226. weight: math.unit(80, "kg"),
  2227. name: "Front",
  2228. image: {
  2229. source: "./media/characters/flamm/front.svg",
  2230. extra: 1794 / 1677,
  2231. bottom: 31.7 / 1828.5
  2232. }
  2233. },
  2234. },
  2235. [
  2236. {
  2237. name: "Normal",
  2238. height: math.unit(9.5, "feet")
  2239. },
  2240. {
  2241. name: "Macro",
  2242. height: math.unit(200, "feet"),
  2243. default: true
  2244. },
  2245. ]
  2246. ))
  2247. characterMakers.push(() => makeCharacter(
  2248. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2249. {
  2250. front: {
  2251. height: math.unit(5 + 3/12, "feet"),
  2252. weight: math.unit(60, "kg"),
  2253. name: "Front",
  2254. image: {
  2255. source: "./media/characters/zephiro/front.svg",
  2256. extra: 2309 / 2162,
  2257. bottom: 0.069
  2258. }
  2259. },
  2260. side: {
  2261. height: math.unit(5 + 3/12, "feet"),
  2262. weight: math.unit(60, "kg"),
  2263. name: "Side",
  2264. image: {
  2265. source: "./media/characters/zephiro/side.svg",
  2266. extra: 2403 / 2279,
  2267. bottom: 0.015
  2268. }
  2269. },
  2270. back: {
  2271. height: math.unit(5 + 3/12, "feet"),
  2272. weight: math.unit(60, "kg"),
  2273. name: "Back",
  2274. image: {
  2275. source: "./media/characters/zephiro/back.svg",
  2276. extra: 2373 / 2244,
  2277. bottom: 0.013
  2278. }
  2279. },
  2280. hand: {
  2281. height: math.unit(0.68, "feet"),
  2282. name: "Hand",
  2283. image: {
  2284. source: "./media/characters/zephiro/hand.svg"
  2285. }
  2286. },
  2287. paw: {
  2288. height: math.unit(1, "feet"),
  2289. name: "Paw",
  2290. image: {
  2291. source: "./media/characters/zephiro/paw.svg"
  2292. }
  2293. },
  2294. beans: {
  2295. height: math.unit(0.93, "feet"),
  2296. name: "Beans",
  2297. image: {
  2298. source: "./media/characters/zephiro/beans.svg"
  2299. }
  2300. },
  2301. },
  2302. [
  2303. {
  2304. name: "Micro",
  2305. height: math.unit(3, "inches")
  2306. },
  2307. {
  2308. name: "Normal",
  2309. height: math.unit(5 + 3 / 12, "feet"),
  2310. default: true
  2311. },
  2312. {
  2313. name: "Macro",
  2314. height: math.unit(118, "feet")
  2315. },
  2316. ]
  2317. ))
  2318. characterMakers.push(() => makeCharacter(
  2319. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2320. {
  2321. front: {
  2322. height: math.unit(5, "feet"),
  2323. weight: math.unit(90, "kg"),
  2324. name: "Front",
  2325. image: {
  2326. source: "./media/characters/fory/front.svg",
  2327. extra: 2862 / 2674,
  2328. bottom: 180 / 3043.8
  2329. }
  2330. },
  2331. back: {
  2332. height: math.unit(5, "feet"),
  2333. weight: math.unit(90, "kg"),
  2334. name: "Back",
  2335. image: {
  2336. source: "./media/characters/fory/back.svg",
  2337. extra: 2962 / 2791,
  2338. bottom: 106 / 3071.8
  2339. }
  2340. },
  2341. foot: {
  2342. height: math.unit(2.14, "feet"),
  2343. name: "Foot",
  2344. image: {
  2345. source: "./media/characters/fory/foot.svg"
  2346. }
  2347. },
  2348. },
  2349. [
  2350. {
  2351. name: "Normal",
  2352. height: math.unit(5, "feet")
  2353. },
  2354. {
  2355. name: "Macro",
  2356. height: math.unit(50, "feet"),
  2357. default: true
  2358. },
  2359. {
  2360. name: "Megamacro",
  2361. height: math.unit(10, "miles")
  2362. },
  2363. {
  2364. name: "Gigamacro",
  2365. height: math.unit(5, "earths")
  2366. },
  2367. ]
  2368. ))
  2369. characterMakers.push(() => makeCharacter(
  2370. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2371. {
  2372. front: {
  2373. height: math.unit(7, "feet"),
  2374. weight: math.unit(90, "kg"),
  2375. name: "Front",
  2376. image: {
  2377. source: "./media/characters/kurrikage/front.svg",
  2378. extra: 1,
  2379. bottom: 0.035
  2380. }
  2381. },
  2382. back: {
  2383. height: math.unit(7, "feet"),
  2384. weight: math.unit(90, "lb"),
  2385. name: "Back",
  2386. image: {
  2387. source: "./media/characters/kurrikage/back.svg"
  2388. }
  2389. },
  2390. paw: {
  2391. height: math.unit(1.5, "feet"),
  2392. name: "Paw",
  2393. image: {
  2394. source: "./media/characters/kurrikage/paw.svg"
  2395. }
  2396. },
  2397. staff: {
  2398. height: math.unit(6.7, "feet"),
  2399. name: "Staff",
  2400. image: {
  2401. source: "./media/characters/kurrikage/staff.svg"
  2402. }
  2403. },
  2404. peek: {
  2405. height: math.unit(1.05, "feet"),
  2406. name: "Peeking",
  2407. image: {
  2408. source: "./media/characters/kurrikage/peek.svg",
  2409. bottom: 0.08
  2410. }
  2411. },
  2412. },
  2413. [
  2414. {
  2415. name: "Normal",
  2416. height: math.unit(12, "feet"),
  2417. default: true
  2418. },
  2419. {
  2420. name: "Big",
  2421. height: math.unit(20, "feet")
  2422. },
  2423. {
  2424. name: "Macro",
  2425. height: math.unit(500, "feet")
  2426. },
  2427. {
  2428. name: "Megamacro",
  2429. height: math.unit(20, "miles")
  2430. },
  2431. ]
  2432. ))
  2433. characterMakers.push(() => makeCharacter(
  2434. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2435. {
  2436. front: {
  2437. height: math.unit(6, "feet"),
  2438. weight: math.unit(75, "kg"),
  2439. name: "Front",
  2440. image: {
  2441. source: "./media/characters/shingo/front.svg",
  2442. extra: 706/681,
  2443. bottom: 11/717
  2444. }
  2445. },
  2446. frontAlt: {
  2447. height: math.unit(6, "feet"),
  2448. weight: math.unit(75, "kg"),
  2449. name: "Front (Alt)",
  2450. image: {
  2451. source: "./media/characters/shingo/front-alt.svg",
  2452. extra: 3511 / 3338,
  2453. bottom: 0.005
  2454. }
  2455. },
  2456. paw: {
  2457. height: math.unit(1, "feet"),
  2458. name: "Paw",
  2459. image: {
  2460. source: "./media/characters/shingo/paw.svg"
  2461. }
  2462. },
  2463. },
  2464. [
  2465. {
  2466. name: "Micro",
  2467. height: math.unit(4, "inches")
  2468. },
  2469. {
  2470. name: "Normal",
  2471. height: math.unit(6, "feet"),
  2472. default: true
  2473. },
  2474. {
  2475. name: "Macro",
  2476. height: math.unit(108, "feet")
  2477. },
  2478. {
  2479. name: "Macro+",
  2480. height: math.unit(1500, "feet")
  2481. },
  2482. ]
  2483. ))
  2484. characterMakers.push(() => makeCharacter(
  2485. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2486. {
  2487. side: {
  2488. height: math.unit(6, "feet"),
  2489. weight: math.unit(75, "kg"),
  2490. name: "Side",
  2491. image: {
  2492. source: "./media/characters/aigey/side.svg"
  2493. }
  2494. },
  2495. },
  2496. [
  2497. {
  2498. name: "Macro",
  2499. height: math.unit(200, "feet"),
  2500. default: true
  2501. },
  2502. {
  2503. name: "Megamacro",
  2504. height: math.unit(100, "miles")
  2505. },
  2506. ]
  2507. )
  2508. )
  2509. characterMakers.push(() => makeCharacter(
  2510. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2511. {
  2512. front: {
  2513. height: math.unit(5 + 5 / 12, "feet"),
  2514. weight: math.unit(75, "kg"),
  2515. name: "Front",
  2516. image: {
  2517. source: "./media/characters/natasha/front.svg",
  2518. extra: 859 / 824,
  2519. bottom: 23 / 879.6
  2520. }
  2521. },
  2522. frontNsfw: {
  2523. height: math.unit(5 + 5 / 12, "feet"),
  2524. weight: math.unit(75, "kg"),
  2525. name: "Front (NSFW)",
  2526. image: {
  2527. source: "./media/characters/natasha/front-nsfw.svg",
  2528. extra: 859 / 824,
  2529. bottom: 23 / 879.6
  2530. }
  2531. },
  2532. frontErect: {
  2533. height: math.unit(5 + 5 / 12, "feet"),
  2534. weight: math.unit(75, "kg"),
  2535. name: "Front (Erect)",
  2536. image: {
  2537. source: "./media/characters/natasha/front-erect.svg",
  2538. extra: 859 / 824,
  2539. bottom: 23 / 879.6
  2540. }
  2541. },
  2542. back: {
  2543. height: math.unit(5 + 5 / 12, "feet"),
  2544. weight: math.unit(75, "kg"),
  2545. name: "Back",
  2546. image: {
  2547. source: "./media/characters/natasha/back.svg",
  2548. extra: 887.9 / 852.6,
  2549. bottom: 9.7 / 896.4
  2550. }
  2551. },
  2552. backAlt: {
  2553. height: math.unit(5 + 5 / 12, "feet"),
  2554. weight: math.unit(75, "kg"),
  2555. name: "Back (Alt)",
  2556. image: {
  2557. source: "./media/characters/natasha/back-alt.svg",
  2558. extra: 1236.7 / 1192,
  2559. bottom: 22.3 / 1258.2
  2560. }
  2561. },
  2562. dick: {
  2563. height: math.unit(1.772, "feet"),
  2564. name: "Dick",
  2565. image: {
  2566. source: "./media/characters/natasha/dick.svg"
  2567. }
  2568. },
  2569. paw: {
  2570. height: math.unit(0.250, "meters"),
  2571. name: "Paw",
  2572. image: {
  2573. source: "./media/characters/natasha/paw.svg"
  2574. }
  2575. },
  2576. },
  2577. [
  2578. {
  2579. name: "Normal",
  2580. height: math.unit(5 + 5 / 12, "feet")
  2581. },
  2582. {
  2583. name: "Large",
  2584. height: math.unit(12, "feet")
  2585. },
  2586. {
  2587. name: "Macro",
  2588. height: math.unit(100, "feet"),
  2589. default: true
  2590. },
  2591. {
  2592. name: "Macro+",
  2593. height: math.unit(260, "feet")
  2594. },
  2595. {
  2596. name: "Macro++",
  2597. height: math.unit(1, "mile")
  2598. },
  2599. ]
  2600. ))
  2601. characterMakers.push(() => makeCharacter(
  2602. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2603. {
  2604. front: {
  2605. height: math.unit(6, "feet"),
  2606. weight: math.unit(75, "kg"),
  2607. name: "Front",
  2608. image: {
  2609. source: "./media/characters/malik/front.svg"
  2610. }
  2611. },
  2612. side: {
  2613. height: math.unit(6, "feet"),
  2614. weight: math.unit(75, "kg"),
  2615. name: "Side",
  2616. image: {
  2617. source: "./media/characters/malik/side.svg",
  2618. extra: 1.1539
  2619. }
  2620. },
  2621. back: {
  2622. height: math.unit(6, "feet"),
  2623. weight: math.unit(75, "kg"),
  2624. name: "Back",
  2625. image: {
  2626. source: "./media/characters/malik/back.svg"
  2627. }
  2628. },
  2629. },
  2630. [
  2631. {
  2632. name: "Macro",
  2633. height: math.unit(156, "feet"),
  2634. default: true
  2635. },
  2636. {
  2637. name: "Macro+",
  2638. height: math.unit(1188, "feet")
  2639. },
  2640. ]
  2641. ))
  2642. characterMakers.push(() => makeCharacter(
  2643. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2644. {
  2645. front: {
  2646. height: math.unit(6, "feet"),
  2647. weight: math.unit(75, "kg"),
  2648. name: "Front",
  2649. image: {
  2650. source: "./media/characters/sefer/front.svg",
  2651. extra: 848 / 659,
  2652. bottom: 28.3 / 876.442
  2653. }
  2654. },
  2655. back: {
  2656. height: math.unit(6, "feet"),
  2657. weight: math.unit(75, "kg"),
  2658. name: "Back",
  2659. image: {
  2660. source: "./media/characters/sefer/back.svg",
  2661. extra: 864 / 695,
  2662. bottom: 10 / 871
  2663. }
  2664. },
  2665. frontDressed: {
  2666. height: math.unit(6, "feet"),
  2667. weight: math.unit(75, "kg"),
  2668. name: "Front (Dressed)",
  2669. image: {
  2670. source: "./media/characters/sefer/front-dressed.svg",
  2671. extra: 839 / 653,
  2672. bottom: 37.6 / 878
  2673. }
  2674. },
  2675. },
  2676. [
  2677. {
  2678. name: "Normal",
  2679. height: math.unit(6, "feet"),
  2680. default: true
  2681. },
  2682. ]
  2683. ))
  2684. characterMakers.push(() => makeCharacter(
  2685. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2686. {
  2687. body: {
  2688. height: math.unit(2.2428, "meter"),
  2689. weight: math.unit(124.738, "kg"),
  2690. name: "Body",
  2691. image: {
  2692. extra: 1225 / 1050,
  2693. source: "./media/characters/north/front.svg"
  2694. }
  2695. }
  2696. },
  2697. [
  2698. {
  2699. name: "Micro",
  2700. height: math.unit(4, "inches")
  2701. },
  2702. {
  2703. name: "Macro",
  2704. height: math.unit(63, "meters")
  2705. },
  2706. {
  2707. name: "Megamacro",
  2708. height: math.unit(101, "miles"),
  2709. default: true
  2710. }
  2711. ]
  2712. ))
  2713. characterMakers.push(() => makeCharacter(
  2714. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2715. {
  2716. angled: {
  2717. height: math.unit(4, "meter"),
  2718. weight: math.unit(150, "kg"),
  2719. name: "Angled",
  2720. image: {
  2721. source: "./media/characters/talan/angled-sfw.svg",
  2722. bottom: 29 / 3734
  2723. }
  2724. },
  2725. angledNsfw: {
  2726. height: math.unit(4, "meter"),
  2727. weight: math.unit(150, "kg"),
  2728. name: "Angled (NSFW)",
  2729. image: {
  2730. source: "./media/characters/talan/angled-nsfw.svg",
  2731. bottom: 29 / 3734
  2732. }
  2733. },
  2734. frontNsfw: {
  2735. height: math.unit(4, "meter"),
  2736. weight: math.unit(150, "kg"),
  2737. name: "Front (NSFW)",
  2738. image: {
  2739. source: "./media/characters/talan/front-nsfw.svg",
  2740. bottom: 29 / 3734
  2741. }
  2742. },
  2743. sideNsfw: {
  2744. height: math.unit(4, "meter"),
  2745. weight: math.unit(150, "kg"),
  2746. name: "Side (NSFW)",
  2747. image: {
  2748. source: "./media/characters/talan/side-nsfw.svg",
  2749. bottom: 29 / 3734
  2750. }
  2751. },
  2752. back: {
  2753. height: math.unit(4, "meter"),
  2754. weight: math.unit(150, "kg"),
  2755. name: "Back",
  2756. image: {
  2757. source: "./media/characters/talan/back.svg"
  2758. }
  2759. },
  2760. dickBottom: {
  2761. height: math.unit(0.621, "meter"),
  2762. name: "Dick (Bottom)",
  2763. image: {
  2764. source: "./media/characters/talan/dick-bottom.svg"
  2765. }
  2766. },
  2767. dickTop: {
  2768. height: math.unit(0.621, "meter"),
  2769. name: "Dick (Top)",
  2770. image: {
  2771. source: "./media/characters/talan/dick-top.svg"
  2772. }
  2773. },
  2774. dickSide: {
  2775. height: math.unit(0.305, "meter"),
  2776. name: "Dick (Side)",
  2777. image: {
  2778. source: "./media/characters/talan/dick-side.svg"
  2779. }
  2780. },
  2781. dickFront: {
  2782. height: math.unit(0.305, "meter"),
  2783. name: "Dick (Front)",
  2784. image: {
  2785. source: "./media/characters/talan/dick-front.svg"
  2786. }
  2787. },
  2788. },
  2789. [
  2790. {
  2791. name: "Normal",
  2792. height: math.unit(4, "meters")
  2793. },
  2794. {
  2795. name: "Macro",
  2796. height: math.unit(100, "meters")
  2797. },
  2798. {
  2799. name: "Megamacro",
  2800. height: math.unit(2, "miles"),
  2801. default: true
  2802. },
  2803. {
  2804. name: "Gigamacro",
  2805. height: math.unit(5000, "miles")
  2806. },
  2807. {
  2808. name: "Teramacro",
  2809. height: math.unit(100, "parsecs")
  2810. }
  2811. ]
  2812. ))
  2813. characterMakers.push(() => makeCharacter(
  2814. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2815. {
  2816. front: {
  2817. height: math.unit(2, "meter"),
  2818. weight: math.unit(90, "kg"),
  2819. name: "Front",
  2820. image: {
  2821. source: "./media/characters/gael'rathus/front.svg"
  2822. }
  2823. },
  2824. frontAlt: {
  2825. height: math.unit(2, "meter"),
  2826. weight: math.unit(90, "kg"),
  2827. name: "Front (alt)",
  2828. image: {
  2829. source: "./media/characters/gael'rathus/front-alt.svg"
  2830. }
  2831. },
  2832. frontAlt2: {
  2833. height: math.unit(2, "meter"),
  2834. weight: math.unit(90, "kg"),
  2835. name: "Front (alt 2)",
  2836. image: {
  2837. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2838. }
  2839. }
  2840. },
  2841. [
  2842. {
  2843. name: "Normal",
  2844. height: math.unit(9, "feet"),
  2845. default: true
  2846. },
  2847. {
  2848. name: "Large",
  2849. height: math.unit(25, "feet")
  2850. },
  2851. {
  2852. name: "Macro",
  2853. height: math.unit(0.25, "miles")
  2854. },
  2855. {
  2856. name: "Megamacro",
  2857. height: math.unit(10, "miles")
  2858. }
  2859. ]
  2860. ))
  2861. characterMakers.push(() => makeCharacter(
  2862. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2863. {
  2864. side: {
  2865. height: math.unit(2, "meter"),
  2866. weight: math.unit(140, "kg"),
  2867. name: "Side",
  2868. image: {
  2869. source: "./media/characters/sosha/side.svg",
  2870. bottom: 0.042
  2871. }
  2872. },
  2873. },
  2874. [
  2875. {
  2876. name: "Normal",
  2877. height: math.unit(12, "feet"),
  2878. default: true
  2879. }
  2880. ]
  2881. ))
  2882. characterMakers.push(() => makeCharacter(
  2883. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2884. {
  2885. side: {
  2886. height: math.unit(5 + 5 / 12, "feet"),
  2887. weight: math.unit(170, "kg"),
  2888. name: "Side",
  2889. image: {
  2890. source: "./media/characters/runnola/side.svg",
  2891. extra: 741 / 448,
  2892. bottom: 0.05
  2893. }
  2894. },
  2895. },
  2896. [
  2897. {
  2898. name: "Small",
  2899. height: math.unit(3, "feet")
  2900. },
  2901. {
  2902. name: "Normal",
  2903. height: math.unit(5 + 5 / 12, "feet"),
  2904. default: true
  2905. },
  2906. {
  2907. name: "Big",
  2908. height: math.unit(10, "feet")
  2909. },
  2910. ]
  2911. ))
  2912. characterMakers.push(() => makeCharacter(
  2913. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2914. {
  2915. front: {
  2916. height: math.unit(2, "meter"),
  2917. weight: math.unit(50, "kg"),
  2918. name: "Front",
  2919. image: {
  2920. source: "./media/characters/kurribird/front.svg",
  2921. bottom: 0.015
  2922. }
  2923. },
  2924. frontAlt: {
  2925. height: math.unit(1.5, "meter"),
  2926. weight: math.unit(50, "kg"),
  2927. name: "Front (Alt)",
  2928. image: {
  2929. source: "./media/characters/kurribird/front-alt.svg",
  2930. extra: 1.45
  2931. }
  2932. },
  2933. },
  2934. [
  2935. {
  2936. name: "Normal",
  2937. height: math.unit(7, "feet")
  2938. },
  2939. {
  2940. name: "Big",
  2941. height: math.unit(12, "feet"),
  2942. default: true
  2943. },
  2944. {
  2945. name: "Macro",
  2946. height: math.unit(1500, "feet")
  2947. },
  2948. {
  2949. name: "Megamacro",
  2950. height: math.unit(2, "miles")
  2951. }
  2952. ]
  2953. ))
  2954. characterMakers.push(() => makeCharacter(
  2955. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2956. {
  2957. front: {
  2958. height: math.unit(2, "meter"),
  2959. weight: math.unit(80, "kg"),
  2960. name: "Front",
  2961. image: {
  2962. source: "./media/characters/elbial/front.svg",
  2963. extra: 1643 / 1556,
  2964. bottom: 60.2 / 1696
  2965. }
  2966. },
  2967. side: {
  2968. height: math.unit(2, "meter"),
  2969. weight: math.unit(80, "kg"),
  2970. name: "Side",
  2971. image: {
  2972. source: "./media/characters/elbial/side.svg",
  2973. extra: 1630 / 1565,
  2974. bottom: 71.5 / 1697
  2975. }
  2976. },
  2977. back: {
  2978. height: math.unit(2, "meter"),
  2979. weight: math.unit(80, "kg"),
  2980. name: "Back",
  2981. image: {
  2982. source: "./media/characters/elbial/back.svg",
  2983. extra: 1668 / 1595,
  2984. bottom: 5.6 / 1672
  2985. }
  2986. },
  2987. frontDressed: {
  2988. height: math.unit(2, "meter"),
  2989. weight: math.unit(80, "kg"),
  2990. name: "Front (Dressed)",
  2991. image: {
  2992. source: "./media/characters/elbial/front-dressed.svg",
  2993. extra: 1653 / 1584,
  2994. bottom: 57 / 1708
  2995. }
  2996. },
  2997. genitals: {
  2998. height: math.unit(2 / 3.367, "meter"),
  2999. name: "Genitals",
  3000. image: {
  3001. source: "./media/characters/elbial/genitals.svg"
  3002. }
  3003. },
  3004. },
  3005. [
  3006. {
  3007. name: "Large",
  3008. height: math.unit(100, "feet")
  3009. },
  3010. {
  3011. name: "Macro",
  3012. height: math.unit(500, "feet"),
  3013. default: true
  3014. },
  3015. {
  3016. name: "Megamacro",
  3017. height: math.unit(10, "miles")
  3018. },
  3019. {
  3020. name: "Gigamacro",
  3021. height: math.unit(25000, "miles")
  3022. },
  3023. {
  3024. name: "Full-Size",
  3025. height: math.unit(8000000, "gigaparsecs")
  3026. }
  3027. ]
  3028. ))
  3029. characterMakers.push(() => makeCharacter(
  3030. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3031. {
  3032. front: {
  3033. height: math.unit(2, "meter"),
  3034. weight: math.unit(60, "kg"),
  3035. name: "Front",
  3036. image: {
  3037. source: "./media/characters/noah/front.svg"
  3038. }
  3039. },
  3040. talons: {
  3041. height: math.unit(0.315, "meter"),
  3042. name: "Talons",
  3043. image: {
  3044. source: "./media/characters/noah/talons.svg"
  3045. }
  3046. }
  3047. },
  3048. [
  3049. {
  3050. name: "Large",
  3051. height: math.unit(50, "feet")
  3052. },
  3053. {
  3054. name: "Macro",
  3055. height: math.unit(750, "feet"),
  3056. default: true
  3057. },
  3058. {
  3059. name: "Megamacro",
  3060. height: math.unit(50, "miles")
  3061. },
  3062. {
  3063. name: "Gigamacro",
  3064. height: math.unit(100000, "miles")
  3065. },
  3066. {
  3067. name: "Full-Size",
  3068. height: math.unit(3000000000, "miles")
  3069. }
  3070. ]
  3071. ))
  3072. characterMakers.push(() => makeCharacter(
  3073. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3074. {
  3075. front: {
  3076. height: math.unit(2, "meter"),
  3077. weight: math.unit(80, "kg"),
  3078. name: "Front",
  3079. image: {
  3080. source: "./media/characters/natalya/front.svg"
  3081. }
  3082. },
  3083. back: {
  3084. height: math.unit(2, "meter"),
  3085. weight: math.unit(80, "kg"),
  3086. name: "Back",
  3087. image: {
  3088. source: "./media/characters/natalya/back.svg"
  3089. }
  3090. }
  3091. },
  3092. [
  3093. {
  3094. name: "Normal",
  3095. height: math.unit(150, "feet"),
  3096. default: true
  3097. },
  3098. {
  3099. name: "Megamacro",
  3100. height: math.unit(5, "miles")
  3101. },
  3102. {
  3103. name: "Full-Size",
  3104. height: math.unit(600, "kiloparsecs")
  3105. }
  3106. ]
  3107. ))
  3108. characterMakers.push(() => makeCharacter(
  3109. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3110. {
  3111. front: {
  3112. height: math.unit(2, "meter"),
  3113. weight: math.unit(50, "kg"),
  3114. name: "Front",
  3115. image: {
  3116. source: "./media/characters/erestrebah/front.svg",
  3117. extra: 208 / 193,
  3118. bottom: 0.055
  3119. }
  3120. },
  3121. back: {
  3122. height: math.unit(2, "meter"),
  3123. weight: math.unit(50, "kg"),
  3124. name: "Back",
  3125. image: {
  3126. source: "./media/characters/erestrebah/back.svg",
  3127. extra: 1.3
  3128. }
  3129. }
  3130. },
  3131. [
  3132. {
  3133. name: "Normal",
  3134. height: math.unit(10, "feet")
  3135. },
  3136. {
  3137. name: "Large",
  3138. height: math.unit(50, "feet"),
  3139. default: true
  3140. },
  3141. {
  3142. name: "Macro",
  3143. height: math.unit(300, "feet")
  3144. },
  3145. {
  3146. name: "Macro+",
  3147. height: math.unit(750, "feet")
  3148. },
  3149. {
  3150. name: "Megamacro",
  3151. height: math.unit(3, "miles")
  3152. }
  3153. ]
  3154. ))
  3155. characterMakers.push(() => makeCharacter(
  3156. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3157. {
  3158. front: {
  3159. height: math.unit(2, "meter"),
  3160. weight: math.unit(80, "kg"),
  3161. name: "Front",
  3162. image: {
  3163. source: "./media/characters/jennifer/front.svg",
  3164. bottom: 0.11,
  3165. extra: 1.16
  3166. }
  3167. },
  3168. frontAlt: {
  3169. height: math.unit(2, "meter"),
  3170. weight: math.unit(80, "kg"),
  3171. name: "Front (Alt)",
  3172. image: {
  3173. source: "./media/characters/jennifer/front-alt.svg"
  3174. }
  3175. }
  3176. },
  3177. [
  3178. {
  3179. name: "Canon Height",
  3180. height: math.unit(120, "feet"),
  3181. default: true
  3182. },
  3183. {
  3184. name: "Macro+",
  3185. height: math.unit(300, "feet")
  3186. },
  3187. {
  3188. name: "Megamacro",
  3189. height: math.unit(20000, "feet")
  3190. }
  3191. ]
  3192. ))
  3193. characterMakers.push(() => makeCharacter(
  3194. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3195. {
  3196. front: {
  3197. height: math.unit(2, "meter"),
  3198. weight: math.unit(50, "kg"),
  3199. name: "Front",
  3200. image: {
  3201. source: "./media/characters/kalista/front.svg",
  3202. extra: 1947 / 1700,
  3203. bottom: 76.6 / 1412.98
  3204. }
  3205. },
  3206. back: {
  3207. height: math.unit(2, "meter"),
  3208. weight: math.unit(50, "kg"),
  3209. name: "Back",
  3210. image: {
  3211. source: "./media/characters/kalista/back.svg",
  3212. extra: 1366 / 1156,
  3213. bottom: 33.9 / 1362.78
  3214. }
  3215. }
  3216. },
  3217. [
  3218. {
  3219. name: "Uncomfortably Small",
  3220. height: math.unit(10, "feet")
  3221. },
  3222. {
  3223. name: "Small",
  3224. height: math.unit(30, "feet")
  3225. },
  3226. {
  3227. name: "Macro",
  3228. height: math.unit(100, "feet"),
  3229. default: true
  3230. },
  3231. {
  3232. name: "Macro+",
  3233. height: math.unit(2000, "feet")
  3234. },
  3235. {
  3236. name: "True Form",
  3237. height: math.unit(8924, "miles")
  3238. }
  3239. ]
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3243. {
  3244. front: {
  3245. height: math.unit(2, "meter"),
  3246. weight: math.unit(120, "kg"),
  3247. name: "Front",
  3248. image: {
  3249. source: "./media/characters/ggv/front.svg"
  3250. }
  3251. },
  3252. side: {
  3253. height: math.unit(2, "meter"),
  3254. weight: math.unit(120, "kg"),
  3255. name: "Side",
  3256. image: {
  3257. source: "./media/characters/ggv/side.svg"
  3258. }
  3259. }
  3260. },
  3261. [
  3262. {
  3263. name: "Extremely Puny",
  3264. height: math.unit(9 + 5 / 12, "feet")
  3265. },
  3266. {
  3267. name: "Horribly Small",
  3268. height: math.unit(47.7, "miles"),
  3269. default: true
  3270. },
  3271. {
  3272. name: "Reasonably Sized",
  3273. height: math.unit(25000, "parsecs")
  3274. },
  3275. {
  3276. name: "Slightly Uncompressed",
  3277. height: math.unit(7.77e31, "parsecs")
  3278. },
  3279. {
  3280. name: "Omniversal",
  3281. height: math.unit(1e300, "meters")
  3282. },
  3283. ]
  3284. ))
  3285. characterMakers.push(() => makeCharacter(
  3286. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3287. {
  3288. front: {
  3289. height: math.unit(2, "meter"),
  3290. weight: math.unit(75, "lb"),
  3291. name: "Front",
  3292. image: {
  3293. source: "./media/characters/napalm/front.svg"
  3294. }
  3295. },
  3296. back: {
  3297. height: math.unit(2, "meter"),
  3298. weight: math.unit(75, "lb"),
  3299. name: "Back",
  3300. image: {
  3301. source: "./media/characters/napalm/back.svg"
  3302. }
  3303. }
  3304. },
  3305. [
  3306. {
  3307. name: "Standard",
  3308. height: math.unit(55, "feet"),
  3309. default: true
  3310. }
  3311. ]
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3315. {
  3316. front: {
  3317. height: math.unit(7 + 5 / 6, "feet"),
  3318. weight: math.unit(325, "lb"),
  3319. name: "Front",
  3320. image: {
  3321. source: "./media/characters/asana/front.svg",
  3322. extra: 1133 / 1060,
  3323. bottom: 15.2 / 1148.6
  3324. }
  3325. },
  3326. back: {
  3327. height: math.unit(7 + 5 / 6, "feet"),
  3328. weight: math.unit(325, "lb"),
  3329. name: "Back",
  3330. image: {
  3331. source: "./media/characters/asana/back.svg",
  3332. extra: 1114 / 1043,
  3333. bottom: 5 / 1120
  3334. }
  3335. },
  3336. dressedDark: {
  3337. height: math.unit(7 + 5 / 6, "feet"),
  3338. weight: math.unit(325, "lb"),
  3339. name: "Dressed (Dark)",
  3340. image: {
  3341. source: "./media/characters/asana/dressed-dark.svg",
  3342. extra: 1133 / 1060,
  3343. bottom: 15.2 / 1148.6
  3344. }
  3345. },
  3346. dressedLight: {
  3347. height: math.unit(7 + 5 / 6, "feet"),
  3348. weight: math.unit(325, "lb"),
  3349. name: "Dressed (Light)",
  3350. image: {
  3351. source: "./media/characters/asana/dressed-light.svg",
  3352. extra: 1133 / 1060,
  3353. bottom: 15.2 / 1148.6
  3354. }
  3355. },
  3356. },
  3357. [
  3358. {
  3359. name: "Standard",
  3360. height: math.unit(7 + 5 / 6, "feet"),
  3361. default: true
  3362. },
  3363. {
  3364. name: "Large",
  3365. height: math.unit(10, "meters")
  3366. },
  3367. {
  3368. name: "Macro",
  3369. height: math.unit(2500, "meters")
  3370. },
  3371. {
  3372. name: "Megamacro",
  3373. height: math.unit(5e6, "meters")
  3374. },
  3375. {
  3376. name: "Examacro",
  3377. height: math.unit(5e12, "lightyears")
  3378. },
  3379. {
  3380. name: "Max Size",
  3381. height: math.unit(1e31, "lightyears")
  3382. }
  3383. ]
  3384. ))
  3385. characterMakers.push(() => makeCharacter(
  3386. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3387. {
  3388. front: {
  3389. height: math.unit(2, "meter"),
  3390. weight: math.unit(60, "kg"),
  3391. name: "Front",
  3392. image: {
  3393. source: "./media/characters/ebony/front.svg",
  3394. bottom: 0.03,
  3395. extra: 1045 / 810 + 0.03
  3396. }
  3397. },
  3398. side: {
  3399. height: math.unit(2, "meter"),
  3400. weight: math.unit(60, "kg"),
  3401. name: "Side",
  3402. image: {
  3403. source: "./media/characters/ebony/side.svg",
  3404. bottom: 0.03,
  3405. extra: 1045 / 810 + 0.03
  3406. }
  3407. },
  3408. back: {
  3409. height: math.unit(2, "meter"),
  3410. weight: math.unit(60, "kg"),
  3411. name: "Back",
  3412. image: {
  3413. source: "./media/characters/ebony/back.svg",
  3414. bottom: 0.01,
  3415. extra: 1045 / 810 + 0.01
  3416. }
  3417. },
  3418. },
  3419. [
  3420. // TODO check why I did this lol
  3421. {
  3422. name: "Standard",
  3423. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3424. default: true
  3425. },
  3426. {
  3427. name: "Macro",
  3428. height: math.unit(200, "feet")
  3429. },
  3430. {
  3431. name: "Gigamacro",
  3432. height: math.unit(13000, "km")
  3433. }
  3434. ]
  3435. ))
  3436. characterMakers.push(() => makeCharacter(
  3437. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3438. {
  3439. front: {
  3440. height: math.unit(6, "feet"),
  3441. weight: math.unit(175, "lb"),
  3442. name: "Front",
  3443. image: {
  3444. source: "./media/characters/mountain/front.svg",
  3445. extra: 972 / 955,
  3446. bottom: 64 / 1036.6
  3447. }
  3448. },
  3449. back: {
  3450. height: math.unit(6, "feet"),
  3451. weight: math.unit(175, "lb"),
  3452. name: "Back",
  3453. image: {
  3454. source: "./media/characters/mountain/back.svg",
  3455. extra: 970 / 950,
  3456. bottom: 28.25 / 999
  3457. }
  3458. },
  3459. },
  3460. [
  3461. {
  3462. name: "Large",
  3463. height: math.unit(20, "meters")
  3464. },
  3465. {
  3466. name: "Macro",
  3467. height: math.unit(300, "meters")
  3468. },
  3469. {
  3470. name: "Gigamacro",
  3471. height: math.unit(10000, "km"),
  3472. default: true
  3473. },
  3474. {
  3475. name: "Examacro",
  3476. height: math.unit(10e9, "lightyears")
  3477. }
  3478. ]
  3479. ))
  3480. characterMakers.push(() => makeCharacter(
  3481. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3482. {
  3483. front: {
  3484. height: math.unit(8, "feet"),
  3485. weight: math.unit(500, "lb"),
  3486. name: "Front",
  3487. image: {
  3488. source: "./media/characters/rick/front.svg"
  3489. }
  3490. }
  3491. },
  3492. [
  3493. {
  3494. name: "Normal",
  3495. height: math.unit(8, "feet"),
  3496. default: true
  3497. },
  3498. {
  3499. name: "Macro",
  3500. height: math.unit(5, "km")
  3501. }
  3502. ]
  3503. ))
  3504. characterMakers.push(() => makeCharacter(
  3505. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3506. {
  3507. front: {
  3508. height: math.unit(8, "feet"),
  3509. weight: math.unit(120, "lb"),
  3510. name: "Front",
  3511. image: {
  3512. source: "./media/characters/ona/front.svg"
  3513. }
  3514. },
  3515. frontAlt: {
  3516. height: math.unit(8, "feet"),
  3517. weight: math.unit(120, "lb"),
  3518. name: "Front (Alt)",
  3519. image: {
  3520. source: "./media/characters/ona/front-alt.svg"
  3521. }
  3522. },
  3523. back: {
  3524. height: math.unit(8, "feet"),
  3525. weight: math.unit(120, "lb"),
  3526. name: "Back",
  3527. image: {
  3528. source: "./media/characters/ona/back.svg"
  3529. }
  3530. },
  3531. foot: {
  3532. height: math.unit(1.1, "feet"),
  3533. name: "Foot",
  3534. image: {
  3535. source: "./media/characters/ona/foot.svg"
  3536. }
  3537. }
  3538. },
  3539. [
  3540. {
  3541. name: "Megamacro",
  3542. height: math.unit(70, "km"),
  3543. default: true
  3544. },
  3545. {
  3546. name: "Gigamacro",
  3547. height: math.unit(681818, "miles")
  3548. },
  3549. {
  3550. name: "Examacro",
  3551. height: math.unit(3800000, "lightyears")
  3552. },
  3553. ]
  3554. ))
  3555. characterMakers.push(() => makeCharacter(
  3556. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3557. {
  3558. front: {
  3559. height: math.unit(12, "feet"),
  3560. weight: math.unit(3000, "lb"),
  3561. name: "Front",
  3562. image: {
  3563. source: "./media/characters/mech/front.svg",
  3564. extra: 2900 / 2770,
  3565. bottom: 110 / 3010
  3566. }
  3567. },
  3568. back: {
  3569. height: math.unit(12, "feet"),
  3570. weight: math.unit(3000, "lb"),
  3571. name: "Back",
  3572. image: {
  3573. source: "./media/characters/mech/back.svg",
  3574. extra: 3011 / 2890,
  3575. bottom: 94 / 3105
  3576. }
  3577. },
  3578. maw: {
  3579. height: math.unit(3.07, "feet"),
  3580. name: "Maw",
  3581. image: {
  3582. source: "./media/characters/mech/maw.svg"
  3583. }
  3584. },
  3585. head: {
  3586. height: math.unit(2.82, "feet"),
  3587. name: "Head",
  3588. image: {
  3589. source: "./media/characters/mech/head.svg"
  3590. }
  3591. },
  3592. dick: {
  3593. height: math.unit(1.43, "feet"),
  3594. name: "Dick",
  3595. image: {
  3596. source: "./media/characters/mech/dick.svg"
  3597. }
  3598. },
  3599. },
  3600. [
  3601. {
  3602. name: "Normal",
  3603. height: math.unit(12, "feet")
  3604. },
  3605. {
  3606. name: "Macro",
  3607. height: math.unit(300, "feet"),
  3608. default: true
  3609. },
  3610. {
  3611. name: "Macro+",
  3612. height: math.unit(1500, "feet")
  3613. },
  3614. ]
  3615. ))
  3616. characterMakers.push(() => makeCharacter(
  3617. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3618. {
  3619. front: {
  3620. height: math.unit(1.3, "meter"),
  3621. weight: math.unit(30, "kg"),
  3622. name: "Front",
  3623. image: {
  3624. source: "./media/characters/gregory/front.svg",
  3625. }
  3626. }
  3627. },
  3628. [
  3629. {
  3630. name: "Normal",
  3631. height: math.unit(1.3, "meter"),
  3632. default: true
  3633. },
  3634. {
  3635. name: "Macro",
  3636. height: math.unit(20, "meter")
  3637. }
  3638. ]
  3639. ))
  3640. characterMakers.push(() => makeCharacter(
  3641. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3642. {
  3643. front: {
  3644. height: math.unit(2.8, "meter"),
  3645. weight: math.unit(200, "kg"),
  3646. name: "Front",
  3647. image: {
  3648. source: "./media/characters/elory/front.svg",
  3649. }
  3650. }
  3651. },
  3652. [
  3653. {
  3654. name: "Normal",
  3655. height: math.unit(2.8, "meter"),
  3656. default: true
  3657. },
  3658. {
  3659. name: "Macro",
  3660. height: math.unit(38, "meter")
  3661. }
  3662. ]
  3663. ))
  3664. characterMakers.push(() => makeCharacter(
  3665. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3666. {
  3667. front: {
  3668. height: math.unit(470, "feet"),
  3669. weight: math.unit(924, "tons"),
  3670. name: "Front",
  3671. image: {
  3672. source: "./media/characters/angelpatamon/front.svg",
  3673. }
  3674. }
  3675. },
  3676. [
  3677. {
  3678. name: "Normal",
  3679. height: math.unit(470, "feet"),
  3680. default: true
  3681. },
  3682. {
  3683. name: "Deity Size I",
  3684. height: math.unit(28651.2, "km")
  3685. },
  3686. {
  3687. name: "Deity Size II",
  3688. height: math.unit(171907.2, "km")
  3689. }
  3690. ]
  3691. ))
  3692. characterMakers.push(() => makeCharacter(
  3693. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3694. {
  3695. side: {
  3696. height: math.unit(7.2, "meter"),
  3697. weight: math.unit(8.2, "tons"),
  3698. name: "Side",
  3699. image: {
  3700. source: "./media/characters/cryae/side.svg",
  3701. extra: 3500 / 1500
  3702. }
  3703. }
  3704. },
  3705. [
  3706. {
  3707. name: "Normal",
  3708. height: math.unit(7.2, "meter"),
  3709. default: true
  3710. }
  3711. ]
  3712. ))
  3713. characterMakers.push(() => makeCharacter(
  3714. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3715. {
  3716. front: {
  3717. height: math.unit(6, "feet"),
  3718. weight: math.unit(175, "lb"),
  3719. name: "Front",
  3720. image: {
  3721. source: "./media/characters/xera/front.svg",
  3722. extra: 2377 / 1972,
  3723. bottom: 75.5 / 2452
  3724. }
  3725. },
  3726. side: {
  3727. height: math.unit(6, "feet"),
  3728. weight: math.unit(175, "lb"),
  3729. name: "Side",
  3730. image: {
  3731. source: "./media/characters/xera/side.svg",
  3732. extra: 2345 / 2019,
  3733. bottom: 39.7 / 2384
  3734. }
  3735. },
  3736. back: {
  3737. height: math.unit(6, "feet"),
  3738. weight: math.unit(175, "lb"),
  3739. name: "Back",
  3740. image: {
  3741. source: "./media/characters/xera/back.svg",
  3742. extra: 2095 / 1984,
  3743. bottom: 67 / 2166
  3744. }
  3745. },
  3746. },
  3747. [
  3748. {
  3749. name: "Small",
  3750. height: math.unit(10, "feet")
  3751. },
  3752. {
  3753. name: "Macro",
  3754. height: math.unit(500, "meters"),
  3755. default: true
  3756. },
  3757. {
  3758. name: "Macro+",
  3759. height: math.unit(10, "km")
  3760. },
  3761. {
  3762. name: "Gigamacro",
  3763. height: math.unit(25000, "km")
  3764. },
  3765. {
  3766. name: "Teramacro",
  3767. height: math.unit(3e6, "km")
  3768. }
  3769. ]
  3770. ))
  3771. characterMakers.push(() => makeCharacter(
  3772. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3773. {
  3774. front: {
  3775. height: math.unit(6, "feet"),
  3776. weight: math.unit(175, "lb"),
  3777. name: "Front",
  3778. image: {
  3779. source: "./media/characters/nebula/front.svg",
  3780. extra: 2566 / 2362,
  3781. bottom: 81 / 2644
  3782. }
  3783. }
  3784. },
  3785. [
  3786. {
  3787. name: "Small",
  3788. height: math.unit(4.5, "meters")
  3789. },
  3790. {
  3791. name: "Macro",
  3792. height: math.unit(1500, "meters"),
  3793. default: true
  3794. },
  3795. {
  3796. name: "Megamacro",
  3797. height: math.unit(150, "km")
  3798. },
  3799. {
  3800. name: "Gigamacro",
  3801. height: math.unit(27000, "km")
  3802. }
  3803. ]
  3804. ))
  3805. characterMakers.push(() => makeCharacter(
  3806. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3807. {
  3808. front: {
  3809. height: math.unit(6, "feet"),
  3810. weight: math.unit(225, "lb"),
  3811. name: "Front",
  3812. image: {
  3813. source: "./media/characters/abysgar/front.svg"
  3814. }
  3815. }
  3816. },
  3817. [
  3818. {
  3819. name: "Small",
  3820. height: math.unit(4.5, "meters")
  3821. },
  3822. {
  3823. name: "Macro",
  3824. height: math.unit(1250, "meters"),
  3825. default: true
  3826. },
  3827. {
  3828. name: "Megamacro",
  3829. height: math.unit(125, "km")
  3830. },
  3831. {
  3832. name: "Gigamacro",
  3833. height: math.unit(26000, "km")
  3834. }
  3835. ]
  3836. ))
  3837. characterMakers.push(() => makeCharacter(
  3838. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3839. {
  3840. front: {
  3841. height: math.unit(6, "feet"),
  3842. weight: math.unit(180, "lb"),
  3843. name: "Front",
  3844. image: {
  3845. source: "./media/characters/yakuz/front.svg"
  3846. }
  3847. }
  3848. },
  3849. [
  3850. {
  3851. name: "Small",
  3852. height: math.unit(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(200, "km")
  3862. },
  3863. {
  3864. name: "Gigamacro",
  3865. height: math.unit(100000, "km")
  3866. }
  3867. ]
  3868. ))
  3869. characterMakers.push(() => makeCharacter(
  3870. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3871. {
  3872. front: {
  3873. height: math.unit(6, "feet"),
  3874. weight: math.unit(175, "lb"),
  3875. name: "Front",
  3876. image: {
  3877. source: "./media/characters/mirova/front.svg",
  3878. extra: 3334 / 3071,
  3879. bottom: 42 / 3375.6
  3880. }
  3881. }
  3882. },
  3883. [
  3884. {
  3885. name: "Small",
  3886. height: math.unit(5, "meters")
  3887. },
  3888. {
  3889. name: "Macro",
  3890. height: math.unit(900, "meters"),
  3891. default: true
  3892. },
  3893. {
  3894. name: "Megamacro",
  3895. height: math.unit(135, "km")
  3896. },
  3897. {
  3898. name: "Gigamacro",
  3899. height: math.unit(20000, "km")
  3900. }
  3901. ]
  3902. ))
  3903. characterMakers.push(() => makeCharacter(
  3904. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3905. {
  3906. side: {
  3907. height: math.unit(28.35, "feet"),
  3908. weight: math.unit(99.75, "tons"),
  3909. name: "Side",
  3910. image: {
  3911. source: "./media/characters/asana-mech/side.svg",
  3912. extra: 923 / 699,
  3913. bottom: 50 / 975
  3914. }
  3915. },
  3916. chaingun: {
  3917. height: math.unit(7, "feet"),
  3918. weight: math.unit(2400, "lb"),
  3919. name: "Chaingun",
  3920. image: {
  3921. source: "./media/characters/asana-mech/chaingun.svg"
  3922. }
  3923. },
  3924. laser: {
  3925. height: math.unit(7.12, "feet"),
  3926. weight: math.unit(2000, "lb"),
  3927. name: "Laser",
  3928. image: {
  3929. source: "./media/characters/asana-mech/laser.svg"
  3930. }
  3931. },
  3932. },
  3933. [
  3934. {
  3935. name: "Normal",
  3936. height: math.unit(28.35, "feet"),
  3937. default: true
  3938. },
  3939. {
  3940. name: "Macro",
  3941. height: math.unit(2500, "feet")
  3942. },
  3943. {
  3944. name: "Megamacro",
  3945. height: math.unit(25, "miles")
  3946. },
  3947. {
  3948. name: "Examacro",
  3949. height: math.unit(6e8, "lightyears")
  3950. },
  3951. ]
  3952. ))
  3953. characterMakers.push(() => makeCharacter(
  3954. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3955. {
  3956. front: {
  3957. height: math.unit(5, "meters"),
  3958. weight: math.unit(1000, "kg"),
  3959. name: "Front",
  3960. image: {
  3961. source: "./media/characters/asche/front.svg",
  3962. extra: 1258 / 1190,
  3963. bottom: 47 / 1305
  3964. }
  3965. },
  3966. frontUnderwear: {
  3967. height: math.unit(5, "meters"),
  3968. weight: math.unit(1000, "kg"),
  3969. name: "Front (Underwear)",
  3970. image: {
  3971. source: "./media/characters/asche/front-underwear.svg",
  3972. extra: 1258 / 1190,
  3973. bottom: 47 / 1305
  3974. }
  3975. },
  3976. frontDressed: {
  3977. height: math.unit(5, "meters"),
  3978. weight: math.unit(1000, "kg"),
  3979. name: "Front (Dressed)",
  3980. image: {
  3981. source: "./media/characters/asche/front-dressed.svg",
  3982. extra: 1258 / 1190,
  3983. bottom: 47 / 1305
  3984. }
  3985. },
  3986. frontArmor: {
  3987. height: math.unit(5, "meters"),
  3988. weight: math.unit(1000, "kg"),
  3989. name: "Front (Armored)",
  3990. image: {
  3991. source: "./media/characters/asche/front-armored.svg",
  3992. extra: 1374 / 1308,
  3993. bottom: 23 / 1397
  3994. }
  3995. },
  3996. mp724: {
  3997. height: math.unit(0.96, "meters"),
  3998. weight: math.unit(38, "kg"),
  3999. name: "H&K MP724",
  4000. image: {
  4001. source: "./media/characters/asche/h&k-mp724.svg"
  4002. }
  4003. },
  4004. side: {
  4005. height: math.unit(5, "meters"),
  4006. weight: math.unit(1000, "kg"),
  4007. name: "Side",
  4008. image: {
  4009. source: "./media/characters/asche/side.svg",
  4010. extra: 1717 / 1609,
  4011. bottom: 0.005
  4012. }
  4013. },
  4014. back: {
  4015. height: math.unit(5, "meters"),
  4016. weight: math.unit(1000, "kg"),
  4017. name: "Back",
  4018. image: {
  4019. source: "./media/characters/asche/back.svg",
  4020. extra: 1570 / 1501
  4021. }
  4022. },
  4023. },
  4024. [
  4025. {
  4026. name: "DEFCON 5",
  4027. height: math.unit(5, "meters")
  4028. },
  4029. {
  4030. name: "DEFCON 4",
  4031. height: math.unit(500, "meters"),
  4032. default: true
  4033. },
  4034. {
  4035. name: "DEFCON 3",
  4036. height: math.unit(5, "km")
  4037. },
  4038. {
  4039. name: "DEFCON 2",
  4040. height: math.unit(500, "km")
  4041. },
  4042. {
  4043. name: "DEFCON 1",
  4044. height: math.unit(500000, "km")
  4045. },
  4046. {
  4047. name: "DEFCON 0",
  4048. height: math.unit(3, "gigaparsecs")
  4049. },
  4050. ]
  4051. ))
  4052. characterMakers.push(() => makeCharacter(
  4053. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4054. {
  4055. front: {
  4056. height: math.unit(2, "meters"),
  4057. weight: math.unit(76, "kg"),
  4058. name: "Front",
  4059. image: {
  4060. source: "./media/characters/gale/front.svg"
  4061. }
  4062. },
  4063. frontAlt1: {
  4064. height: math.unit(2, "meters"),
  4065. weight: math.unit(76, "kg"),
  4066. name: "Front (Alt 1)",
  4067. image: {
  4068. source: "./media/characters/gale/front-alt-1.svg"
  4069. }
  4070. },
  4071. frontAlt2: {
  4072. height: math.unit(2, "meters"),
  4073. weight: math.unit(76, "kg"),
  4074. name: "Front (Alt 2)",
  4075. image: {
  4076. source: "./media/characters/gale/front-alt-2.svg"
  4077. }
  4078. },
  4079. },
  4080. [
  4081. {
  4082. name: "Normal",
  4083. height: math.unit(7, "feet")
  4084. },
  4085. {
  4086. name: "Macro",
  4087. height: math.unit(150, "feet"),
  4088. default: true
  4089. },
  4090. {
  4091. name: "Macro+",
  4092. height: math.unit(300, "feet")
  4093. },
  4094. ]
  4095. ))
  4096. characterMakers.push(() => makeCharacter(
  4097. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4098. {
  4099. front: {
  4100. height: math.unit(2, "meters"),
  4101. weight: math.unit(76, "kg"),
  4102. name: "Front",
  4103. image: {
  4104. source: "./media/characters/draylen/front.svg"
  4105. }
  4106. }
  4107. },
  4108. [
  4109. {
  4110. name: "Macro",
  4111. height: math.unit(150, "feet"),
  4112. default: true
  4113. }
  4114. ]
  4115. ))
  4116. characterMakers.push(() => makeCharacter(
  4117. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4118. {
  4119. front: {
  4120. height: math.unit(7 + 9 / 12, "feet"),
  4121. weight: math.unit(379, "lbs"),
  4122. name: "Front",
  4123. image: {
  4124. source: "./media/characters/chez/front.svg"
  4125. }
  4126. },
  4127. side: {
  4128. height: math.unit(7 + 9 / 12, "feet"),
  4129. weight: math.unit(379, "lbs"),
  4130. name: "Side",
  4131. image: {
  4132. source: "./media/characters/chez/side.svg"
  4133. }
  4134. }
  4135. },
  4136. [
  4137. {
  4138. name: "Normal",
  4139. height: math.unit(7 + 9 / 12, "feet"),
  4140. default: true
  4141. },
  4142. {
  4143. name: "God King",
  4144. height: math.unit(9750000, "meters")
  4145. }
  4146. ]
  4147. ))
  4148. characterMakers.push(() => makeCharacter(
  4149. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4150. {
  4151. front: {
  4152. height: math.unit(6, "feet"),
  4153. weight: math.unit(275, "lbs"),
  4154. name: "Front",
  4155. image: {
  4156. source: "./media/characters/kaylum/front.svg",
  4157. bottom: 0.01,
  4158. extra: 1166 / 1031
  4159. }
  4160. },
  4161. frontWingless: {
  4162. height: math.unit(6, "feet"),
  4163. weight: math.unit(275, "lbs"),
  4164. name: "Front (Wingless)",
  4165. image: {
  4166. source: "./media/characters/kaylum/front-wingless.svg",
  4167. bottom: 0.01,
  4168. extra: 1117 / 1031
  4169. }
  4170. }
  4171. },
  4172. [
  4173. {
  4174. name: "Normal",
  4175. height: math.unit(3.05, "meters")
  4176. },
  4177. {
  4178. name: "Master",
  4179. height: math.unit(5.5, "meters")
  4180. },
  4181. {
  4182. name: "Rampage",
  4183. height: math.unit(19, "meters")
  4184. },
  4185. {
  4186. name: "Macro Lite",
  4187. height: math.unit(37, "meters")
  4188. },
  4189. {
  4190. name: "Hyper Predator",
  4191. height: math.unit(61, "meters")
  4192. },
  4193. {
  4194. name: "Macro",
  4195. height: math.unit(138, "meters"),
  4196. default: true
  4197. }
  4198. ]
  4199. ))
  4200. characterMakers.push(() => makeCharacter(
  4201. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4202. {
  4203. front: {
  4204. height: math.unit(6, "feet"),
  4205. weight: math.unit(150, "lbs"),
  4206. name: "Front",
  4207. image: {
  4208. source: "./media/characters/geta/front.svg"
  4209. }
  4210. }
  4211. },
  4212. [
  4213. {
  4214. name: "Micro",
  4215. height: math.unit(3, "inches"),
  4216. default: true
  4217. },
  4218. {
  4219. name: "Normal",
  4220. height: math.unit(5 + 5 / 12, "feet")
  4221. }
  4222. ]
  4223. ))
  4224. characterMakers.push(() => makeCharacter(
  4225. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4226. {
  4227. front: {
  4228. height: math.unit(6, "feet"),
  4229. weight: math.unit(300, "lbs"),
  4230. name: "Front",
  4231. image: {
  4232. source: "./media/characters/tyrnn/front.svg"
  4233. }
  4234. }
  4235. },
  4236. [
  4237. {
  4238. name: "Main Height",
  4239. height: math.unit(355, "feet"),
  4240. default: true
  4241. },
  4242. {
  4243. name: "Fave. Height",
  4244. height: math.unit(2400, "feet")
  4245. }
  4246. ]
  4247. ))
  4248. characterMakers.push(() => makeCharacter(
  4249. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4250. {
  4251. front: {
  4252. height: math.unit(6, "feet"),
  4253. weight: math.unit(300, "lbs"),
  4254. name: "Front",
  4255. image: {
  4256. source: "./media/characters/appledectomy/front.svg"
  4257. }
  4258. }
  4259. },
  4260. [
  4261. {
  4262. name: "Macro",
  4263. height: math.unit(2500, "feet")
  4264. },
  4265. {
  4266. name: "Megamacro",
  4267. height: math.unit(50, "miles"),
  4268. default: true
  4269. },
  4270. {
  4271. name: "Gigamacro",
  4272. height: math.unit(5000, "miles")
  4273. },
  4274. {
  4275. name: "Teramacro",
  4276. height: math.unit(250000, "miles")
  4277. },
  4278. ]
  4279. ))
  4280. characterMakers.push(() => makeCharacter(
  4281. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4282. {
  4283. front: {
  4284. height: math.unit(6, "feet"),
  4285. weight: math.unit(200, "lbs"),
  4286. name: "Front",
  4287. image: {
  4288. source: "./media/characters/vulpes/front.svg",
  4289. extra: 573 / 543,
  4290. bottom: 0.033
  4291. }
  4292. },
  4293. side: {
  4294. height: math.unit(6, "feet"),
  4295. weight: math.unit(200, "lbs"),
  4296. name: "Side",
  4297. image: {
  4298. source: "./media/characters/vulpes/side.svg",
  4299. extra: 577 / 549,
  4300. bottom: 11 / 588
  4301. }
  4302. },
  4303. back: {
  4304. height: math.unit(6, "feet"),
  4305. weight: math.unit(200, "lbs"),
  4306. name: "Back",
  4307. image: {
  4308. source: "./media/characters/vulpes/back.svg",
  4309. extra: 573 / 549,
  4310. bottom: 20 / 593
  4311. }
  4312. },
  4313. feet: {
  4314. height: math.unit(1.276, "feet"),
  4315. name: "Feet",
  4316. image: {
  4317. source: "./media/characters/vulpes/feet.svg"
  4318. }
  4319. },
  4320. maw: {
  4321. height: math.unit(1.18, "feet"),
  4322. name: "Maw",
  4323. image: {
  4324. source: "./media/characters/vulpes/maw.svg"
  4325. }
  4326. },
  4327. },
  4328. [
  4329. {
  4330. name: "Micro",
  4331. height: math.unit(2, "inches")
  4332. },
  4333. {
  4334. name: "Normal",
  4335. height: math.unit(6.3, "feet")
  4336. },
  4337. {
  4338. name: "Macro",
  4339. height: math.unit(850, "feet")
  4340. },
  4341. {
  4342. name: "Megamacro",
  4343. height: math.unit(7500, "feet"),
  4344. default: true
  4345. },
  4346. {
  4347. name: "Gigamacro",
  4348. height: math.unit(570000, "miles")
  4349. }
  4350. ]
  4351. ))
  4352. characterMakers.push(() => makeCharacter(
  4353. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4354. {
  4355. front: {
  4356. height: math.unit(6, "feet"),
  4357. weight: math.unit(210, "lbs"),
  4358. name: "Front",
  4359. image: {
  4360. source: "./media/characters/rain-fallen/front.svg"
  4361. }
  4362. },
  4363. side: {
  4364. height: math.unit(6, "feet"),
  4365. weight: math.unit(210, "lbs"),
  4366. name: "Side",
  4367. image: {
  4368. source: "./media/characters/rain-fallen/side.svg"
  4369. }
  4370. },
  4371. back: {
  4372. height: math.unit(6, "feet"),
  4373. weight: math.unit(210, "lbs"),
  4374. name: "Back",
  4375. image: {
  4376. source: "./media/characters/rain-fallen/back.svg"
  4377. }
  4378. },
  4379. feral: {
  4380. height: math.unit(9, "feet"),
  4381. weight: math.unit(700, "lbs"),
  4382. name: "Feral",
  4383. image: {
  4384. source: "./media/characters/rain-fallen/feral.svg"
  4385. }
  4386. },
  4387. },
  4388. [
  4389. {
  4390. name: "Meddling with Mortals",
  4391. height: math.unit(8 + 8/12, "feet")
  4392. },
  4393. {
  4394. name: "Normal",
  4395. height: math.unit(5, "meter")
  4396. },
  4397. {
  4398. name: "Macro",
  4399. height: math.unit(150, "meter"),
  4400. default: true
  4401. },
  4402. {
  4403. name: "Megamacro",
  4404. height: math.unit(278e6, "meter")
  4405. },
  4406. {
  4407. name: "Gigamacro",
  4408. height: math.unit(2e9, "meter")
  4409. },
  4410. {
  4411. name: "Teramacro",
  4412. height: math.unit(8e12, "meter")
  4413. },
  4414. {
  4415. name: "Devourer",
  4416. height: math.unit(14, "zettameters")
  4417. },
  4418. {
  4419. name: "Scarlet King",
  4420. height: math.unit(18, "yottameters")
  4421. },
  4422. {
  4423. name: "Void",
  4424. height: math.unit(6.66e66, "yottameters")
  4425. }
  4426. ]
  4427. ))
  4428. characterMakers.push(() => makeCharacter(
  4429. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4430. {
  4431. standing: {
  4432. height: math.unit(6, "feet"),
  4433. weight: math.unit(180, "lbs"),
  4434. name: "Standing",
  4435. image: {
  4436. source: "./media/characters/zaakira/standing.svg"
  4437. }
  4438. },
  4439. laying: {
  4440. height: math.unit(3, "feet"),
  4441. weight: math.unit(180, "lbs"),
  4442. name: "Laying",
  4443. image: {
  4444. source: "./media/characters/zaakira/laying.svg"
  4445. }
  4446. },
  4447. },
  4448. [
  4449. {
  4450. name: "Normal",
  4451. height: math.unit(12, "feet")
  4452. },
  4453. {
  4454. name: "Macro",
  4455. height: math.unit(279, "feet"),
  4456. default: true
  4457. }
  4458. ]
  4459. ))
  4460. characterMakers.push(() => makeCharacter(
  4461. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4462. {
  4463. femSfw: {
  4464. height: math.unit(8, "feet"),
  4465. weight: math.unit(350, "lb"),
  4466. name: "Fem",
  4467. image: {
  4468. source: "./media/characters/sigvald/fem-sfw.svg",
  4469. extra: 182 / 164,
  4470. bottom: 8.7 / 190.5
  4471. }
  4472. },
  4473. femNsfw: {
  4474. height: math.unit(8, "feet"),
  4475. weight: math.unit(350, "lb"),
  4476. name: "Fem (NSFW)",
  4477. image: {
  4478. source: "./media/characters/sigvald/fem-nsfw.svg",
  4479. extra: 182 / 164,
  4480. bottom: 8.7 / 190.5
  4481. }
  4482. },
  4483. maleNsfw: {
  4484. height: math.unit(8, "feet"),
  4485. weight: math.unit(350, "lb"),
  4486. name: "Male (NSFW)",
  4487. image: {
  4488. source: "./media/characters/sigvald/male-nsfw.svg",
  4489. extra: 182 / 164,
  4490. bottom: 8.7 / 190.5
  4491. }
  4492. },
  4493. hermNsfw: {
  4494. height: math.unit(8, "feet"),
  4495. weight: math.unit(350, "lb"),
  4496. name: "Herm (NSFW)",
  4497. image: {
  4498. source: "./media/characters/sigvald/herm-nsfw.svg",
  4499. extra: 182 / 164,
  4500. bottom: 8.7 / 190.5
  4501. }
  4502. },
  4503. dick: {
  4504. height: math.unit(2.36, "feet"),
  4505. name: "Dick",
  4506. image: {
  4507. source: "./media/characters/sigvald/dick.svg"
  4508. }
  4509. },
  4510. eye: {
  4511. height: math.unit(0.31, "feet"),
  4512. name: "Eye",
  4513. image: {
  4514. source: "./media/characters/sigvald/eye.svg"
  4515. }
  4516. },
  4517. mouth: {
  4518. height: math.unit(0.92, "feet"),
  4519. name: "Mouth",
  4520. image: {
  4521. source: "./media/characters/sigvald/mouth.svg"
  4522. }
  4523. },
  4524. paws: {
  4525. height: math.unit(2.2, "feet"),
  4526. name: "Paws",
  4527. image: {
  4528. source: "./media/characters/sigvald/paws.svg"
  4529. }
  4530. }
  4531. },
  4532. [
  4533. {
  4534. name: "Normal",
  4535. height: math.unit(8, "feet")
  4536. },
  4537. {
  4538. name: "Large",
  4539. height: math.unit(12, "feet")
  4540. },
  4541. {
  4542. name: "Larger",
  4543. height: math.unit(20, "feet")
  4544. },
  4545. {
  4546. name: "Macro",
  4547. height: math.unit(150, "feet")
  4548. },
  4549. {
  4550. name: "Macro+",
  4551. height: math.unit(200, "feet"),
  4552. default: true
  4553. },
  4554. ]
  4555. ))
  4556. characterMakers.push(() => makeCharacter(
  4557. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4558. {
  4559. side: {
  4560. height: math.unit(12, "feet"),
  4561. weight: math.unit(2000, "kg"),
  4562. name: "Side",
  4563. image: {
  4564. source: "./media/characters/scott/side.svg",
  4565. extra: 754 / 724,
  4566. bottom: 0.069
  4567. }
  4568. },
  4569. upright: {
  4570. height: math.unit(12, "feet"),
  4571. weight: math.unit(2000, "kg"),
  4572. name: "Upright",
  4573. image: {
  4574. source: "./media/characters/scott/upright.svg",
  4575. extra: 3881 / 3722,
  4576. bottom: 0.05
  4577. }
  4578. },
  4579. },
  4580. [
  4581. {
  4582. name: "Normal",
  4583. height: math.unit(12, "feet"),
  4584. default: true
  4585. },
  4586. ]
  4587. ))
  4588. characterMakers.push(() => makeCharacter(
  4589. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4590. {
  4591. side: {
  4592. height: math.unit(8, "meters"),
  4593. weight: math.unit(84755, "lbs"),
  4594. name: "Side",
  4595. image: {
  4596. source: "./media/characters/tobias/side.svg",
  4597. extra: 1474 / 1096,
  4598. bottom: 38.9 / 1513.1235
  4599. }
  4600. },
  4601. },
  4602. [
  4603. {
  4604. name: "Normal",
  4605. height: math.unit(8, "meters"),
  4606. default: true
  4607. },
  4608. ]
  4609. ))
  4610. characterMakers.push(() => makeCharacter(
  4611. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4612. {
  4613. front: {
  4614. height: math.unit(5.5, "feet"),
  4615. weight: math.unit(400, "lbs"),
  4616. name: "Front",
  4617. image: {
  4618. source: "./media/characters/kieran/front.svg",
  4619. extra: 2694 / 2364,
  4620. bottom: 217 / 2908
  4621. }
  4622. },
  4623. side: {
  4624. height: math.unit(5.5, "feet"),
  4625. weight: math.unit(400, "lbs"),
  4626. name: "Side",
  4627. image: {
  4628. source: "./media/characters/kieran/side.svg",
  4629. extra: 875 / 777,
  4630. bottom: 84.6 / 959
  4631. }
  4632. },
  4633. },
  4634. [
  4635. {
  4636. name: "Normal",
  4637. height: math.unit(5.5, "feet"),
  4638. default: true
  4639. },
  4640. ]
  4641. ))
  4642. characterMakers.push(() => makeCharacter(
  4643. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4644. {
  4645. side: {
  4646. height: math.unit(2, "meters"),
  4647. weight: math.unit(70, "kg"),
  4648. name: "Side",
  4649. image: {
  4650. source: "./media/characters/sanya/side.svg",
  4651. bottom: 0.02,
  4652. extra: 1.02
  4653. }
  4654. },
  4655. },
  4656. [
  4657. {
  4658. name: "Small",
  4659. height: math.unit(2, "meters")
  4660. },
  4661. {
  4662. name: "Normal",
  4663. height: math.unit(3, "meters")
  4664. },
  4665. {
  4666. name: "Macro",
  4667. height: math.unit(16, "meters"),
  4668. default: true
  4669. },
  4670. ]
  4671. ))
  4672. characterMakers.push(() => makeCharacter(
  4673. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4674. {
  4675. front: {
  4676. height: math.unit(2, "meters"),
  4677. weight: math.unit(120, "kg"),
  4678. name: "Front",
  4679. image: {
  4680. source: "./media/characters/miranda/front.svg",
  4681. extra: 195 / 185,
  4682. bottom: 10.9 / 206.5
  4683. }
  4684. },
  4685. back: {
  4686. height: math.unit(2, "meters"),
  4687. weight: math.unit(120, "kg"),
  4688. name: "Back",
  4689. image: {
  4690. source: "./media/characters/miranda/back.svg",
  4691. extra: 201 / 193,
  4692. bottom: 2.3 / 203.7
  4693. }
  4694. },
  4695. },
  4696. [
  4697. {
  4698. name: "Normal",
  4699. height: math.unit(10, "feet"),
  4700. default: true
  4701. }
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "James", species: ["deer"], tags: ["anthro"] },
  4706. {
  4707. side: {
  4708. height: math.unit(2, "meters"),
  4709. weight: math.unit(100, "kg"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/james/front.svg",
  4713. extra: 10 / 8.5
  4714. }
  4715. },
  4716. },
  4717. [
  4718. {
  4719. name: "Normal",
  4720. height: math.unit(8.5, "feet"),
  4721. default: true
  4722. }
  4723. ]
  4724. ))
  4725. characterMakers.push(() => makeCharacter(
  4726. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4727. {
  4728. side: {
  4729. height: math.unit(9.5, "feet"),
  4730. weight: math.unit(2500, "lbs"),
  4731. name: "Side",
  4732. image: {
  4733. source: "./media/characters/heather/side.svg"
  4734. }
  4735. },
  4736. },
  4737. [
  4738. {
  4739. name: "Normal",
  4740. height: math.unit(9.5, "feet"),
  4741. default: true
  4742. }
  4743. ]
  4744. ))
  4745. characterMakers.push(() => makeCharacter(
  4746. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4747. {
  4748. side: {
  4749. height: math.unit(6.5, "feet"),
  4750. weight: math.unit(400, "lbs"),
  4751. name: "Side",
  4752. image: {
  4753. source: "./media/characters/lukas/side.svg",
  4754. extra: 7.25 / 6.5
  4755. }
  4756. },
  4757. },
  4758. [
  4759. {
  4760. name: "Normal",
  4761. height: math.unit(6.5, "feet"),
  4762. default: true
  4763. }
  4764. ]
  4765. ))
  4766. characterMakers.push(() => makeCharacter(
  4767. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4768. {
  4769. side: {
  4770. height: math.unit(5, "feet"),
  4771. weight: math.unit(3000, "lbs"),
  4772. name: "Side",
  4773. image: {
  4774. source: "./media/characters/louise/side.svg"
  4775. }
  4776. },
  4777. },
  4778. [
  4779. {
  4780. name: "Normal",
  4781. height: math.unit(5, "feet"),
  4782. default: true
  4783. }
  4784. ]
  4785. ))
  4786. characterMakers.push(() => makeCharacter(
  4787. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4788. {
  4789. side: {
  4790. height: math.unit(6, "feet"),
  4791. weight: math.unit(150, "lbs"),
  4792. name: "Side",
  4793. image: {
  4794. source: "./media/characters/ramona/side.svg"
  4795. }
  4796. },
  4797. },
  4798. [
  4799. {
  4800. name: "Normal",
  4801. height: math.unit(5.3, "meters"),
  4802. default: true
  4803. },
  4804. {
  4805. name: "Macro",
  4806. height: math.unit(20, "stories")
  4807. },
  4808. {
  4809. name: "Macro+",
  4810. height: math.unit(50, "stories")
  4811. },
  4812. ]
  4813. ))
  4814. characterMakers.push(() => makeCharacter(
  4815. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4816. {
  4817. standing: {
  4818. height: math.unit(5.75, "feet"),
  4819. weight: math.unit(160, "lbs"),
  4820. name: "Standing",
  4821. image: {
  4822. source: "./media/characters/deerpuff/standing.svg",
  4823. extra: 682 / 624
  4824. }
  4825. },
  4826. sitting: {
  4827. height: math.unit(5.75 / 1.79, "feet"),
  4828. weight: math.unit(160, "lbs"),
  4829. name: "Sitting",
  4830. image: {
  4831. source: "./media/characters/deerpuff/sitting.svg",
  4832. bottom: 44 / 400,
  4833. extra: 1
  4834. }
  4835. },
  4836. taurLaying: {
  4837. height: math.unit(6, "feet"),
  4838. weight: math.unit(400, "lbs"),
  4839. name: "Taur (Laying)",
  4840. image: {
  4841. source: "./media/characters/deerpuff/taur-laying.svg"
  4842. }
  4843. },
  4844. },
  4845. [
  4846. {
  4847. name: "Puffball",
  4848. height: math.unit(6, "inches")
  4849. },
  4850. {
  4851. name: "Normalpuff",
  4852. height: math.unit(5.75, "feet")
  4853. },
  4854. {
  4855. name: "Macropuff",
  4856. height: math.unit(1500, "feet"),
  4857. default: true
  4858. },
  4859. {
  4860. name: "Megapuff",
  4861. height: math.unit(500, "miles")
  4862. },
  4863. {
  4864. name: "Gigapuff",
  4865. height: math.unit(250000, "miles")
  4866. },
  4867. {
  4868. name: "Omegapuff",
  4869. height: math.unit(1000, "lightyears")
  4870. },
  4871. ]
  4872. ))
  4873. characterMakers.push(() => makeCharacter(
  4874. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4875. {
  4876. stomping: {
  4877. height: math.unit(6, "feet"),
  4878. weight: math.unit(170, "lbs"),
  4879. name: "Stomping",
  4880. image: {
  4881. source: "./media/characters/vivian/stomping.svg"
  4882. }
  4883. },
  4884. sitting: {
  4885. height: math.unit(6 / 1.75, "feet"),
  4886. weight: math.unit(170, "lbs"),
  4887. name: "Sitting",
  4888. image: {
  4889. source: "./media/characters/vivian/sitting.svg",
  4890. bottom: 1 / 6.4,
  4891. extra: 1,
  4892. }
  4893. },
  4894. },
  4895. [
  4896. {
  4897. name: "Normal",
  4898. height: math.unit(7, "feet"),
  4899. default: true
  4900. },
  4901. {
  4902. name: "Macro",
  4903. height: math.unit(10, "stories")
  4904. },
  4905. {
  4906. name: "Macro+",
  4907. height: math.unit(30, "stories")
  4908. },
  4909. {
  4910. name: "Megamacro",
  4911. height: math.unit(10, "miles")
  4912. },
  4913. {
  4914. name: "Megamacro+",
  4915. height: math.unit(2750000, "meters")
  4916. },
  4917. ]
  4918. ))
  4919. characterMakers.push(() => makeCharacter(
  4920. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4921. {
  4922. front: {
  4923. height: math.unit(6, "feet"),
  4924. weight: math.unit(160, "lbs"),
  4925. name: "Front",
  4926. image: {
  4927. source: "./media/characters/prince/front.svg",
  4928. extra: 3400 / 3000
  4929. }
  4930. },
  4931. jumping: {
  4932. height: math.unit(6, "feet"),
  4933. weight: math.unit(160, "lbs"),
  4934. name: "Jumping",
  4935. image: {
  4936. source: "./media/characters/prince/jump.svg",
  4937. extra: 2555 / 2134
  4938. }
  4939. },
  4940. },
  4941. [
  4942. {
  4943. name: "Normal",
  4944. height: math.unit(7.75, "feet"),
  4945. default: true
  4946. },
  4947. {
  4948. name: "Not cute",
  4949. height: math.unit(17, "feet")
  4950. },
  4951. {
  4952. name: "I said NOT",
  4953. height: math.unit(91, "feet")
  4954. },
  4955. {
  4956. name: "Please stop",
  4957. height: math.unit(560, "feet")
  4958. },
  4959. {
  4960. name: "What have you done",
  4961. height: math.unit(2200, "feet")
  4962. },
  4963. {
  4964. name: "Deer God",
  4965. height: math.unit(3.6, "miles")
  4966. },
  4967. ]
  4968. ))
  4969. characterMakers.push(() => makeCharacter(
  4970. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4971. {
  4972. standing: {
  4973. height: math.unit(6, "feet"),
  4974. weight: math.unit(300, "lbs"),
  4975. name: "Standing",
  4976. image: {
  4977. source: "./media/characters/psymon/standing.svg",
  4978. extra: 1888 / 1810,
  4979. bottom: 0.05
  4980. }
  4981. },
  4982. slithering: {
  4983. height: math.unit(6, "feet"),
  4984. weight: math.unit(300, "lbs"),
  4985. name: "Slithering",
  4986. image: {
  4987. source: "./media/characters/psymon/slithering.svg",
  4988. extra: 1330 / 1224
  4989. }
  4990. },
  4991. slitheringAlt: {
  4992. height: math.unit(6, "feet"),
  4993. weight: math.unit(300, "lbs"),
  4994. name: "Slithering (Alt)",
  4995. image: {
  4996. source: "./media/characters/psymon/slithering-alt.svg",
  4997. extra: 1330 / 1224
  4998. }
  4999. },
  5000. },
  5001. [
  5002. {
  5003. name: "Normal",
  5004. height: math.unit(11.25, "feet"),
  5005. default: true
  5006. },
  5007. {
  5008. name: "Large",
  5009. height: math.unit(27, "feet")
  5010. },
  5011. {
  5012. name: "Giant",
  5013. height: math.unit(87, "feet")
  5014. },
  5015. {
  5016. name: "Macro",
  5017. height: math.unit(365, "feet")
  5018. },
  5019. {
  5020. name: "Megamacro",
  5021. height: math.unit(3, "miles")
  5022. },
  5023. {
  5024. name: "World Serpent",
  5025. height: math.unit(8000, "miles")
  5026. },
  5027. ]
  5028. ))
  5029. characterMakers.push(() => makeCharacter(
  5030. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5031. {
  5032. front: {
  5033. height: math.unit(6, "feet"),
  5034. weight: math.unit(180, "lbs"),
  5035. name: "Front",
  5036. image: {
  5037. source: "./media/characters/daimos/front.svg",
  5038. extra: 4160 / 3897,
  5039. bottom: 0.021
  5040. }
  5041. }
  5042. },
  5043. [
  5044. {
  5045. name: "Normal",
  5046. height: math.unit(8, "feet"),
  5047. default: true
  5048. },
  5049. {
  5050. name: "Big Dog",
  5051. height: math.unit(22, "feet")
  5052. },
  5053. {
  5054. name: "Macro",
  5055. height: math.unit(127, "feet")
  5056. },
  5057. {
  5058. name: "Megamacro",
  5059. height: math.unit(3600, "feet")
  5060. },
  5061. ]
  5062. ))
  5063. characterMakers.push(() => makeCharacter(
  5064. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5065. {
  5066. side: {
  5067. height: math.unit(6, "feet"),
  5068. weight: math.unit(180, "lbs"),
  5069. name: "Side",
  5070. image: {
  5071. source: "./media/characters/blake/side.svg",
  5072. extra: 1212 / 1120,
  5073. bottom: 0.05
  5074. }
  5075. },
  5076. crouched: {
  5077. height: math.unit(6 * 0.57, "feet"),
  5078. weight: math.unit(180, "lbs"),
  5079. name: "Crouched",
  5080. image: {
  5081. source: "./media/characters/blake/crouched.svg",
  5082. extra: 840 / 587,
  5083. bottom: 0.04
  5084. }
  5085. },
  5086. bent: {
  5087. height: math.unit(6 * 0.75, "feet"),
  5088. weight: math.unit(180, "lbs"),
  5089. name: "Bent",
  5090. image: {
  5091. source: "./media/characters/blake/bent.svg",
  5092. extra: 592 / 544,
  5093. bottom: 0.035
  5094. }
  5095. },
  5096. },
  5097. [
  5098. {
  5099. name: "Normal",
  5100. height: math.unit(8 + 1 / 6, "feet"),
  5101. default: true
  5102. },
  5103. {
  5104. name: "Big Backside",
  5105. height: math.unit(37, "feet")
  5106. },
  5107. {
  5108. name: "Subway Shredder",
  5109. height: math.unit(72, "feet")
  5110. },
  5111. {
  5112. name: "City Carver",
  5113. height: math.unit(1675, "feet")
  5114. },
  5115. {
  5116. name: "Tectonic Tweaker",
  5117. height: math.unit(2300, "miles")
  5118. },
  5119. ]
  5120. ))
  5121. characterMakers.push(() => makeCharacter(
  5122. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5123. {
  5124. front: {
  5125. height: math.unit(6, "feet"),
  5126. weight: math.unit(180, "lbs"),
  5127. name: "Front",
  5128. image: {
  5129. source: "./media/characters/guisetto/front.svg",
  5130. extra: 856 / 817,
  5131. bottom: 0.06
  5132. }
  5133. },
  5134. airborne: {
  5135. height: math.unit(6, "feet"),
  5136. weight: math.unit(180, "lbs"),
  5137. name: "Airborne",
  5138. image: {
  5139. source: "./media/characters/guisetto/airborne.svg",
  5140. extra: 584 / 525
  5141. }
  5142. },
  5143. },
  5144. [
  5145. {
  5146. name: "Normal",
  5147. height: math.unit(10 + 11 / 12, "feet"),
  5148. default: true
  5149. },
  5150. {
  5151. name: "Large",
  5152. height: math.unit(35, "feet")
  5153. },
  5154. {
  5155. name: "Macro",
  5156. height: math.unit(475, "feet")
  5157. },
  5158. ]
  5159. ))
  5160. characterMakers.push(() => makeCharacter(
  5161. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5162. {
  5163. front: {
  5164. height: math.unit(6, "feet"),
  5165. weight: math.unit(180, "lbs"),
  5166. name: "Front",
  5167. image: {
  5168. source: "./media/characters/luxor/front.svg",
  5169. extra: 2940 / 2152
  5170. }
  5171. },
  5172. back: {
  5173. height: math.unit(6, "feet"),
  5174. weight: math.unit(180, "lbs"),
  5175. name: "Back",
  5176. image: {
  5177. source: "./media/characters/luxor/back.svg",
  5178. extra: 1083 / 960
  5179. }
  5180. },
  5181. },
  5182. [
  5183. {
  5184. name: "Normal",
  5185. height: math.unit(5 + 5 / 6, "feet"),
  5186. default: true
  5187. },
  5188. {
  5189. name: "Lamp",
  5190. height: math.unit(50, "feet")
  5191. },
  5192. {
  5193. name: "Lämp",
  5194. height: math.unit(300, "feet")
  5195. },
  5196. {
  5197. name: "The sun is a lamp",
  5198. height: math.unit(250000, "miles")
  5199. },
  5200. ]
  5201. ))
  5202. characterMakers.push(() => makeCharacter(
  5203. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5204. {
  5205. front: {
  5206. height: math.unit(6, "feet"),
  5207. weight: math.unit(50, "lbs"),
  5208. name: "Front",
  5209. image: {
  5210. source: "./media/characters/huoyan/front.svg"
  5211. }
  5212. },
  5213. side: {
  5214. height: math.unit(6, "feet"),
  5215. weight: math.unit(180, "lbs"),
  5216. name: "Side",
  5217. image: {
  5218. source: "./media/characters/huoyan/side.svg"
  5219. }
  5220. },
  5221. },
  5222. [
  5223. {
  5224. name: "Chef",
  5225. height: math.unit(9, "feet")
  5226. },
  5227. {
  5228. name: "Normal",
  5229. height: math.unit(65, "feet"),
  5230. default: true
  5231. },
  5232. {
  5233. name: "Macro",
  5234. height: math.unit(780, "feet")
  5235. },
  5236. {
  5237. name: "Flaming Mountain",
  5238. height: math.unit(4.8, "miles")
  5239. },
  5240. {
  5241. name: "Celestial",
  5242. height: math.unit(765000, "miles")
  5243. },
  5244. ]
  5245. ))
  5246. characterMakers.push(() => makeCharacter(
  5247. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5248. {
  5249. front: {
  5250. height: math.unit(5 + 3 / 4, "feet"),
  5251. weight: math.unit(120, "lbs"),
  5252. name: "Front",
  5253. image: {
  5254. source: "./media/characters/tails/front.svg"
  5255. }
  5256. }
  5257. },
  5258. [
  5259. {
  5260. name: "Normal",
  5261. height: math.unit(5 + 3 / 4, "feet"),
  5262. default: true
  5263. }
  5264. ]
  5265. ))
  5266. characterMakers.push(() => makeCharacter(
  5267. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5268. {
  5269. front: {
  5270. height: math.unit(4, "feet"),
  5271. weight: math.unit(50, "lbs"),
  5272. name: "Front",
  5273. image: {
  5274. source: "./media/characters/rainy/front.svg"
  5275. }
  5276. }
  5277. },
  5278. [
  5279. {
  5280. name: "Macro",
  5281. height: math.unit(800, "feet"),
  5282. default: true
  5283. }
  5284. ]
  5285. ))
  5286. characterMakers.push(() => makeCharacter(
  5287. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5288. {
  5289. front: {
  5290. height: math.unit(6, "feet"),
  5291. weight: math.unit(150, "lbs"),
  5292. name: "Front",
  5293. image: {
  5294. source: "./media/characters/rainier/front.svg"
  5295. }
  5296. }
  5297. },
  5298. [
  5299. {
  5300. name: "Micro",
  5301. height: math.unit(2, "mm"),
  5302. default: true
  5303. }
  5304. ]
  5305. ))
  5306. characterMakers.push(() => makeCharacter(
  5307. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5308. {
  5309. front: {
  5310. height: math.unit(6, "feet"),
  5311. weight: math.unit(180, "lbs"),
  5312. name: "Front",
  5313. image: {
  5314. source: "./media/characters/andy/front.svg"
  5315. }
  5316. }
  5317. },
  5318. [
  5319. {
  5320. name: "Normal",
  5321. height: math.unit(8, "feet"),
  5322. default: true
  5323. },
  5324. {
  5325. name: "Macro",
  5326. height: math.unit(1000, "feet")
  5327. },
  5328. {
  5329. name: "Megamacro",
  5330. height: math.unit(5, "miles")
  5331. },
  5332. {
  5333. name: "Gigamacro",
  5334. height: math.unit(5000, "miles")
  5335. },
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5340. {
  5341. front: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(210, "lbs"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/cimmaron/front-sfw.svg",
  5347. extra: 701 / 676,
  5348. bottom: 0.046
  5349. }
  5350. },
  5351. back: {
  5352. height: math.unit(6, "feet"),
  5353. weight: math.unit(210, "lbs"),
  5354. name: "Back",
  5355. image: {
  5356. source: "./media/characters/cimmaron/back-sfw.svg",
  5357. extra: 701 / 676,
  5358. bottom: 0.046
  5359. }
  5360. },
  5361. frontNsfw: {
  5362. height: math.unit(6, "feet"),
  5363. weight: math.unit(210, "lbs"),
  5364. name: "Front (NSFW)",
  5365. image: {
  5366. source: "./media/characters/cimmaron/front-nsfw.svg",
  5367. extra: 701 / 676,
  5368. bottom: 0.046
  5369. }
  5370. },
  5371. backNsfw: {
  5372. height: math.unit(6, "feet"),
  5373. weight: math.unit(210, "lbs"),
  5374. name: "Back (NSFW)",
  5375. image: {
  5376. source: "./media/characters/cimmaron/back-nsfw.svg",
  5377. extra: 701 / 676,
  5378. bottom: 0.046
  5379. }
  5380. },
  5381. dick: {
  5382. height: math.unit(1.714, "feet"),
  5383. name: "Dick",
  5384. image: {
  5385. source: "./media/characters/cimmaron/dick.svg"
  5386. }
  5387. },
  5388. },
  5389. [
  5390. {
  5391. name: "Normal",
  5392. height: math.unit(6, "feet"),
  5393. default: true
  5394. },
  5395. {
  5396. name: "Macro Mayor",
  5397. height: math.unit(350, "meters")
  5398. },
  5399. ]
  5400. ))
  5401. characterMakers.push(() => makeCharacter(
  5402. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5403. {
  5404. front: {
  5405. height: math.unit(6, "feet"),
  5406. weight: math.unit(200, "lbs"),
  5407. name: "Front",
  5408. image: {
  5409. source: "./media/characters/akari/front.svg",
  5410. extra: 962 / 901,
  5411. bottom: 0.04
  5412. }
  5413. }
  5414. },
  5415. [
  5416. {
  5417. name: "Micro",
  5418. height: math.unit(5, "inches"),
  5419. default: true
  5420. },
  5421. {
  5422. name: "Normal",
  5423. height: math.unit(7, "feet")
  5424. },
  5425. ]
  5426. ))
  5427. characterMakers.push(() => makeCharacter(
  5428. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5429. {
  5430. front: {
  5431. height: math.unit(6, "feet"),
  5432. weight: math.unit(140, "lbs"),
  5433. name: "Front",
  5434. image: {
  5435. source: "./media/characters/cynosura/front.svg",
  5436. extra: 896 / 847
  5437. }
  5438. },
  5439. back: {
  5440. height: math.unit(6, "feet"),
  5441. weight: math.unit(140, "lbs"),
  5442. name: "Back",
  5443. image: {
  5444. source: "./media/characters/cynosura/back.svg",
  5445. extra: 1365 / 1250
  5446. }
  5447. },
  5448. },
  5449. [
  5450. {
  5451. name: "Micro",
  5452. height: math.unit(4, "inches")
  5453. },
  5454. {
  5455. name: "Normal",
  5456. height: math.unit(5.75, "feet"),
  5457. default: true
  5458. },
  5459. {
  5460. name: "Tall",
  5461. height: math.unit(10, "feet")
  5462. },
  5463. {
  5464. name: "Big",
  5465. height: math.unit(20, "feet")
  5466. },
  5467. {
  5468. name: "Macro",
  5469. height: math.unit(50, "feet")
  5470. },
  5471. ]
  5472. ))
  5473. characterMakers.push(() => makeCharacter(
  5474. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5475. {
  5476. front: {
  5477. height: math.unit(6, "feet"),
  5478. weight: math.unit(170, "lbs"),
  5479. name: "Front",
  5480. image: {
  5481. source: "./media/characters/gin/front.svg",
  5482. extra: 1.053,
  5483. bottom: 0.025
  5484. }
  5485. },
  5486. foot: {
  5487. height: math.unit(6 / 4.25, "feet"),
  5488. name: "Foot",
  5489. image: {
  5490. source: "./media/characters/gin/foot.svg"
  5491. }
  5492. },
  5493. sole: {
  5494. height: math.unit(6 / 4.40, "feet"),
  5495. name: "Sole",
  5496. image: {
  5497. source: "./media/characters/gin/sole.svg"
  5498. }
  5499. },
  5500. },
  5501. [
  5502. {
  5503. name: "Normal",
  5504. height: math.unit(13 + 2 / 12, "feet")
  5505. },
  5506. {
  5507. name: "Macro",
  5508. height: math.unit(1500, "feet")
  5509. },
  5510. {
  5511. name: "Megamacro",
  5512. height: math.unit(200, "miles"),
  5513. default: true
  5514. },
  5515. {
  5516. name: "Gigamacro",
  5517. height: math.unit(500, "megameters")
  5518. },
  5519. {
  5520. name: "Teramacro",
  5521. height: math.unit(15, "lightyears")
  5522. }
  5523. ]
  5524. ))
  5525. characterMakers.push(() => makeCharacter(
  5526. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5527. {
  5528. front: {
  5529. height: math.unit(6 + 1 / 6, "feet"),
  5530. weight: math.unit(178, "lbs"),
  5531. name: "Front",
  5532. image: {
  5533. source: "./media/characters/guy/front.svg"
  5534. }
  5535. }
  5536. },
  5537. [
  5538. {
  5539. name: "Normal",
  5540. height: math.unit(6 + 1 / 6, "feet"),
  5541. default: true
  5542. },
  5543. {
  5544. name: "Large",
  5545. height: math.unit(25 + 7 / 12, "feet")
  5546. },
  5547. {
  5548. name: "Macro",
  5549. height: math.unit(60 + 9 / 12, "feet")
  5550. },
  5551. {
  5552. name: "Macro+",
  5553. height: math.unit(246, "feet")
  5554. },
  5555. {
  5556. name: "Macro++",
  5557. height: math.unit(878, "feet")
  5558. }
  5559. ]
  5560. ))
  5561. characterMakers.push(() => makeCharacter(
  5562. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5563. {
  5564. front: {
  5565. height: math.unit(9, "feet"),
  5566. weight: math.unit(800, "lbs"),
  5567. name: "Front",
  5568. image: {
  5569. source: "./media/characters/tiberius/front.svg",
  5570. extra: 2295 / 2071
  5571. }
  5572. },
  5573. back: {
  5574. height: math.unit(9, "feet"),
  5575. weight: math.unit(800, "lbs"),
  5576. name: "Back",
  5577. image: {
  5578. source: "./media/characters/tiberius/back.svg",
  5579. extra: 2373 / 2160
  5580. }
  5581. },
  5582. },
  5583. [
  5584. {
  5585. name: "Normal",
  5586. height: math.unit(9, "feet"),
  5587. default: true
  5588. }
  5589. ]
  5590. ))
  5591. characterMakers.push(() => makeCharacter(
  5592. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5593. {
  5594. front: {
  5595. height: math.unit(6, "feet"),
  5596. weight: math.unit(600, "lbs"),
  5597. name: "Front",
  5598. image: {
  5599. source: "./media/characters/surgo/front.svg",
  5600. extra: 3591 / 2227
  5601. }
  5602. },
  5603. back: {
  5604. height: math.unit(6, "feet"),
  5605. weight: math.unit(600, "lbs"),
  5606. name: "Back",
  5607. image: {
  5608. source: "./media/characters/surgo/back.svg",
  5609. extra: 3557 / 2228
  5610. }
  5611. },
  5612. laying: {
  5613. height: math.unit(6 * 0.85, "feet"),
  5614. weight: math.unit(600, "lbs"),
  5615. name: "Laying",
  5616. image: {
  5617. source: "./media/characters/surgo/laying.svg"
  5618. }
  5619. },
  5620. },
  5621. [
  5622. {
  5623. name: "Normal",
  5624. height: math.unit(6, "feet"),
  5625. default: true
  5626. }
  5627. ]
  5628. ))
  5629. characterMakers.push(() => makeCharacter(
  5630. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5631. {
  5632. side: {
  5633. height: math.unit(6, "feet"),
  5634. weight: math.unit(150, "lbs"),
  5635. name: "Side",
  5636. image: {
  5637. source: "./media/characters/cibus/side.svg",
  5638. extra: 800 / 400
  5639. }
  5640. },
  5641. },
  5642. [
  5643. {
  5644. name: "Normal",
  5645. height: math.unit(6, "feet"),
  5646. default: true
  5647. }
  5648. ]
  5649. ))
  5650. characterMakers.push(() => makeCharacter(
  5651. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5652. {
  5653. front: {
  5654. height: math.unit(6, "feet"),
  5655. weight: math.unit(240, "lbs"),
  5656. name: "Front",
  5657. image: {
  5658. source: "./media/characters/nibbles/front.svg"
  5659. }
  5660. },
  5661. side: {
  5662. height: math.unit(6, "feet"),
  5663. weight: math.unit(240, "lbs"),
  5664. name: "Side",
  5665. image: {
  5666. source: "./media/characters/nibbles/side.svg"
  5667. }
  5668. },
  5669. },
  5670. [
  5671. {
  5672. name: "Normal",
  5673. height: math.unit(9, "feet"),
  5674. default: true
  5675. }
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5680. {
  5681. side: {
  5682. height: math.unit(5 + 1 / 6, "feet"),
  5683. weight: math.unit(130, "lbs"),
  5684. name: "Side",
  5685. image: {
  5686. source: "./media/characters/rikky/side.svg",
  5687. extra: 851 / 801
  5688. }
  5689. },
  5690. },
  5691. [
  5692. {
  5693. name: "Normal",
  5694. height: math.unit(5 + 1 / 6, "feet")
  5695. },
  5696. {
  5697. name: "Macro",
  5698. height: math.unit(152, "feet"),
  5699. default: true
  5700. },
  5701. {
  5702. name: "Megamacro",
  5703. height: math.unit(7, "miles")
  5704. }
  5705. ]
  5706. ))
  5707. characterMakers.push(() => makeCharacter(
  5708. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5709. {
  5710. side: {
  5711. height: math.unit(370, "cm"),
  5712. weight: math.unit(350, "lbs"),
  5713. name: "Side",
  5714. image: {
  5715. source: "./media/characters/malfressa/side.svg"
  5716. }
  5717. },
  5718. walking: {
  5719. height: math.unit(370, "cm"),
  5720. weight: math.unit(350, "lbs"),
  5721. name: "Walking",
  5722. image: {
  5723. source: "./media/characters/malfressa/walking.svg"
  5724. }
  5725. },
  5726. feral: {
  5727. height: math.unit(2500, "cm"),
  5728. weight: math.unit(100000, "lbs"),
  5729. name: "Feral",
  5730. image: {
  5731. source: "./media/characters/malfressa/feral.svg",
  5732. extra: 2108 / 837,
  5733. bottom: 0.02
  5734. }
  5735. },
  5736. },
  5737. [
  5738. {
  5739. name: "Normal",
  5740. height: math.unit(370, "cm")
  5741. },
  5742. {
  5743. name: "Macro",
  5744. height: math.unit(300, "meters"),
  5745. default: true
  5746. }
  5747. ]
  5748. ))
  5749. characterMakers.push(() => makeCharacter(
  5750. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5751. {
  5752. front: {
  5753. height: math.unit(6, "feet"),
  5754. weight: math.unit(60, "kg"),
  5755. name: "Front",
  5756. image: {
  5757. source: "./media/characters/jaro/front.svg"
  5758. }
  5759. },
  5760. back: {
  5761. height: math.unit(6, "feet"),
  5762. weight: math.unit(60, "kg"),
  5763. name: "Back",
  5764. image: {
  5765. source: "./media/characters/jaro/back.svg"
  5766. }
  5767. },
  5768. },
  5769. [
  5770. {
  5771. name: "Micro",
  5772. height: math.unit(7, "inches")
  5773. },
  5774. {
  5775. name: "Normal",
  5776. height: math.unit(5.5, "feet"),
  5777. default: true
  5778. },
  5779. {
  5780. name: "Minimacro",
  5781. height: math.unit(20, "feet")
  5782. },
  5783. {
  5784. name: "Macro",
  5785. height: math.unit(200, "meters")
  5786. }
  5787. ]
  5788. ))
  5789. characterMakers.push(() => makeCharacter(
  5790. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5791. {
  5792. front: {
  5793. height: math.unit(6, "feet"),
  5794. weight: math.unit(195, "lb"),
  5795. name: "Front",
  5796. image: {
  5797. source: "./media/characters/rogue/front.svg"
  5798. }
  5799. },
  5800. },
  5801. [
  5802. {
  5803. name: "Macro",
  5804. height: math.unit(90, "feet"),
  5805. default: true
  5806. },
  5807. ]
  5808. ))
  5809. characterMakers.push(() => makeCharacter(
  5810. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5811. {
  5812. front: {
  5813. height: math.unit(5 + 8 / 12, "feet"),
  5814. weight: math.unit(140, "lb"),
  5815. name: "Front",
  5816. image: {
  5817. source: "./media/characters/piper/front.svg",
  5818. extra: 3948/3655,
  5819. bottom: 0/3948
  5820. }
  5821. },
  5822. },
  5823. [
  5824. {
  5825. name: "Micro",
  5826. height: math.unit(2, "inches")
  5827. },
  5828. {
  5829. name: "Normal",
  5830. height: math.unit(5 + 8 / 12, "feet")
  5831. },
  5832. {
  5833. name: "Macro",
  5834. height: math.unit(250, "feet"),
  5835. default: true
  5836. },
  5837. {
  5838. name: "Megamacro",
  5839. height: math.unit(7, "miles")
  5840. },
  5841. ]
  5842. ))
  5843. characterMakers.push(() => makeCharacter(
  5844. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5845. {
  5846. front: {
  5847. height: math.unit(6, "feet"),
  5848. weight: math.unit(220, "lb"),
  5849. name: "Front",
  5850. image: {
  5851. source: "./media/characters/gemini/front.svg"
  5852. }
  5853. },
  5854. back: {
  5855. height: math.unit(6, "feet"),
  5856. weight: math.unit(220, "lb"),
  5857. name: "Back",
  5858. image: {
  5859. source: "./media/characters/gemini/back.svg"
  5860. }
  5861. },
  5862. kneeling: {
  5863. height: math.unit(6 / 1.5, "feet"),
  5864. weight: math.unit(220, "lb"),
  5865. name: "Kneeling",
  5866. image: {
  5867. source: "./media/characters/gemini/kneeling.svg",
  5868. bottom: 0.02
  5869. }
  5870. },
  5871. },
  5872. [
  5873. {
  5874. name: "Macro",
  5875. height: math.unit(300, "meters"),
  5876. default: true
  5877. },
  5878. {
  5879. name: "Megamacro",
  5880. height: math.unit(6900, "meters")
  5881. },
  5882. ]
  5883. ))
  5884. characterMakers.push(() => makeCharacter(
  5885. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5886. {
  5887. anthro: {
  5888. height: math.unit(2.35, "meters"),
  5889. weight: math.unit(73, "kg"),
  5890. name: "Anthro",
  5891. image: {
  5892. source: "./media/characters/alicia/anthro.svg",
  5893. extra: 2571 / 2385,
  5894. bottom: 75 / 2648
  5895. }
  5896. },
  5897. paw: {
  5898. height: math.unit(1.32, "feet"),
  5899. name: "Paw",
  5900. image: {
  5901. source: "./media/characters/alicia/paw.svg"
  5902. }
  5903. },
  5904. feral: {
  5905. height: math.unit(1.69, "meters"),
  5906. weight: math.unit(73, "kg"),
  5907. name: "Feral",
  5908. image: {
  5909. source: "./media/characters/alicia/feral.svg",
  5910. extra: 2123 / 1715,
  5911. bottom: 222 / 2349
  5912. }
  5913. },
  5914. },
  5915. [
  5916. {
  5917. name: "Normal",
  5918. height: math.unit(2.35, "meters")
  5919. },
  5920. {
  5921. name: "Macro",
  5922. height: math.unit(60, "meters"),
  5923. default: true
  5924. },
  5925. {
  5926. name: "Megamacro",
  5927. height: math.unit(10000, "kilometers")
  5928. },
  5929. ]
  5930. ))
  5931. characterMakers.push(() => makeCharacter(
  5932. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5933. {
  5934. front: {
  5935. height: math.unit(7, "feet"),
  5936. weight: math.unit(250, "lbs"),
  5937. name: "Front",
  5938. image: {
  5939. source: "./media/characters/archy/front.svg"
  5940. }
  5941. }
  5942. },
  5943. [
  5944. {
  5945. name: "Micro",
  5946. height: math.unit(1, "inch")
  5947. },
  5948. {
  5949. name: "Shorty",
  5950. height: math.unit(5, "feet")
  5951. },
  5952. {
  5953. name: "Normal",
  5954. height: math.unit(7, "feet")
  5955. },
  5956. {
  5957. name: "Macro",
  5958. height: math.unit(600, "meters"),
  5959. default: true
  5960. },
  5961. {
  5962. name: "Megamacro",
  5963. height: math.unit(1, "mile")
  5964. },
  5965. ]
  5966. ))
  5967. characterMakers.push(() => makeCharacter(
  5968. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5969. {
  5970. front: {
  5971. height: math.unit(1.65, "meters"),
  5972. weight: math.unit(74, "kg"),
  5973. name: "Front",
  5974. image: {
  5975. source: "./media/characters/berri/front.svg",
  5976. extra: 857 / 837,
  5977. bottom: 18 / 877
  5978. }
  5979. },
  5980. bum: {
  5981. height: math.unit(1.46, "feet"),
  5982. name: "Bum",
  5983. image: {
  5984. source: "./media/characters/berri/bum.svg"
  5985. }
  5986. },
  5987. mouth: {
  5988. height: math.unit(0.44, "feet"),
  5989. name: "Mouth",
  5990. image: {
  5991. source: "./media/characters/berri/mouth.svg"
  5992. }
  5993. },
  5994. paw: {
  5995. height: math.unit(0.826, "feet"),
  5996. name: "Paw",
  5997. image: {
  5998. source: "./media/characters/berri/paw.svg"
  5999. }
  6000. },
  6001. },
  6002. [
  6003. {
  6004. name: "Normal",
  6005. height: math.unit(1.65, "meters")
  6006. },
  6007. {
  6008. name: "Macro",
  6009. height: math.unit(60, "m"),
  6010. default: true
  6011. },
  6012. {
  6013. name: "Megamacro",
  6014. height: math.unit(9.213, "km")
  6015. },
  6016. {
  6017. name: "Planet Eater",
  6018. height: math.unit(489, "megameters")
  6019. },
  6020. {
  6021. name: "Teramacro",
  6022. height: math.unit(2471635000000, "meters")
  6023. },
  6024. {
  6025. name: "Examacro",
  6026. height: math.unit(8.0624e+26, "meters")
  6027. }
  6028. ]
  6029. ))
  6030. characterMakers.push(() => makeCharacter(
  6031. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6032. {
  6033. front: {
  6034. height: math.unit(1.72, "meters"),
  6035. weight: math.unit(68, "kg"),
  6036. name: "Front",
  6037. image: {
  6038. source: "./media/characters/lexi/front.svg"
  6039. }
  6040. }
  6041. },
  6042. [
  6043. {
  6044. name: "Very Smol",
  6045. height: math.unit(10, "mm")
  6046. },
  6047. {
  6048. name: "Micro",
  6049. height: math.unit(6.8, "cm"),
  6050. default: true
  6051. },
  6052. {
  6053. name: "Normal",
  6054. height: math.unit(1.72, "m")
  6055. }
  6056. ]
  6057. ))
  6058. characterMakers.push(() => makeCharacter(
  6059. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6060. {
  6061. front: {
  6062. height: math.unit(1.69, "meters"),
  6063. weight: math.unit(68, "kg"),
  6064. name: "Front",
  6065. image: {
  6066. source: "./media/characters/martin/front.svg",
  6067. extra: 596 / 581
  6068. }
  6069. }
  6070. },
  6071. [
  6072. {
  6073. name: "Micro",
  6074. height: math.unit(6.85, "cm"),
  6075. default: true
  6076. },
  6077. {
  6078. name: "Normal",
  6079. height: math.unit(1.69, "m")
  6080. }
  6081. ]
  6082. ))
  6083. characterMakers.push(() => makeCharacter(
  6084. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6085. {
  6086. front: {
  6087. height: math.unit(1.69, "meters"),
  6088. weight: math.unit(68, "kg"),
  6089. name: "Front",
  6090. image: {
  6091. source: "./media/characters/juno/front.svg"
  6092. }
  6093. }
  6094. },
  6095. [
  6096. {
  6097. name: "Micro",
  6098. height: math.unit(7, "cm")
  6099. },
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(1.89, "m")
  6103. },
  6104. {
  6105. name: "Macro",
  6106. height: math.unit(353, "meters"),
  6107. default: true
  6108. }
  6109. ]
  6110. ))
  6111. characterMakers.push(() => makeCharacter(
  6112. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6113. {
  6114. front: {
  6115. height: math.unit(1.93, "meters"),
  6116. weight: math.unit(83, "kg"),
  6117. name: "Front",
  6118. image: {
  6119. source: "./media/characters/samantha/front.svg"
  6120. }
  6121. },
  6122. frontClothed: {
  6123. height: math.unit(1.93, "meters"),
  6124. weight: math.unit(83, "kg"),
  6125. name: "Front (Clothed)",
  6126. image: {
  6127. source: "./media/characters/samantha/front-clothed.svg"
  6128. }
  6129. },
  6130. back: {
  6131. height: math.unit(1.93, "meters"),
  6132. weight: math.unit(83, "kg"),
  6133. name: "Back",
  6134. image: {
  6135. source: "./media/characters/samantha/back.svg"
  6136. }
  6137. },
  6138. },
  6139. [
  6140. {
  6141. name: "Normal",
  6142. height: math.unit(1.93, "m")
  6143. },
  6144. {
  6145. name: "Macro",
  6146. height: math.unit(74, "meters"),
  6147. default: true
  6148. },
  6149. {
  6150. name: "Macro+",
  6151. height: math.unit(223, "meters"),
  6152. },
  6153. {
  6154. name: "Megamacro",
  6155. height: math.unit(8381, "meters"),
  6156. },
  6157. {
  6158. name: "Megamacro+",
  6159. height: math.unit(12000, "kilometers")
  6160. },
  6161. ]
  6162. ))
  6163. characterMakers.push(() => makeCharacter(
  6164. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6165. {
  6166. front: {
  6167. height: math.unit(1.92, "meters"),
  6168. weight: math.unit(80, "kg"),
  6169. name: "Front",
  6170. image: {
  6171. source: "./media/characters/dr-clay/front.svg"
  6172. }
  6173. },
  6174. frontClothed: {
  6175. height: math.unit(1.92, "meters"),
  6176. weight: math.unit(80, "kg"),
  6177. name: "Front (Clothed)",
  6178. image: {
  6179. source: "./media/characters/dr-clay/front-clothed.svg"
  6180. }
  6181. }
  6182. },
  6183. [
  6184. {
  6185. name: "Normal",
  6186. height: math.unit(1.92, "m")
  6187. },
  6188. {
  6189. name: "Macro",
  6190. height: math.unit(214, "meters"),
  6191. default: true
  6192. },
  6193. {
  6194. name: "Macro+",
  6195. height: math.unit(12.237, "meters"),
  6196. },
  6197. {
  6198. name: "Megamacro",
  6199. height: math.unit(557, "megameters"),
  6200. },
  6201. {
  6202. name: "Unimaginable",
  6203. height: math.unit(120e9, "lightyears")
  6204. },
  6205. ]
  6206. ))
  6207. characterMakers.push(() => makeCharacter(
  6208. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6209. {
  6210. front: {
  6211. height: math.unit(2, "meters"),
  6212. weight: math.unit(80, "kg"),
  6213. name: "Front",
  6214. image: {
  6215. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6216. }
  6217. }
  6218. },
  6219. [
  6220. {
  6221. name: "Teramacro",
  6222. height: math.unit(500000, "lightyears"),
  6223. default: true
  6224. },
  6225. ]
  6226. ))
  6227. characterMakers.push(() => makeCharacter(
  6228. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6229. {
  6230. front: {
  6231. height: math.unit(2, "meters"),
  6232. weight: math.unit(150, "kg"),
  6233. name: "Front",
  6234. image: {
  6235. source: "./media/characters/vemus/front.svg",
  6236. extra: 2384 / 2084,
  6237. bottom: 0.0123
  6238. }
  6239. }
  6240. },
  6241. [
  6242. {
  6243. name: "Normal",
  6244. height: math.unit(3.75, "meters"),
  6245. default: true
  6246. },
  6247. {
  6248. name: "Big",
  6249. height: math.unit(8, "meters")
  6250. },
  6251. {
  6252. name: "Macro",
  6253. height: math.unit(100, "meters")
  6254. },
  6255. {
  6256. name: "Macro+",
  6257. height: math.unit(1500, "meters")
  6258. },
  6259. {
  6260. name: "Stellar",
  6261. height: math.unit(14e8, "meters")
  6262. },
  6263. ]
  6264. ))
  6265. characterMakers.push(() => makeCharacter(
  6266. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6267. {
  6268. front: {
  6269. height: math.unit(2, "meters"),
  6270. weight: math.unit(70, "kg"),
  6271. name: "Front",
  6272. image: {
  6273. source: "./media/characters/beherit/front.svg",
  6274. extra: 1408 / 1242
  6275. }
  6276. }
  6277. },
  6278. [
  6279. {
  6280. name: "Normal",
  6281. height: math.unit(6, "feet")
  6282. },
  6283. {
  6284. name: "Lorg",
  6285. height: math.unit(25, "feet"),
  6286. default: true
  6287. },
  6288. {
  6289. name: "Lorger",
  6290. height: math.unit(75, "feet")
  6291. },
  6292. {
  6293. name: "Macro",
  6294. height: math.unit(200, "meters")
  6295. },
  6296. ]
  6297. ))
  6298. characterMakers.push(() => makeCharacter(
  6299. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6300. {
  6301. front: {
  6302. height: math.unit(2, "meters"),
  6303. weight: math.unit(150, "kg"),
  6304. name: "Front",
  6305. image: {
  6306. source: "./media/characters/everett/front.svg",
  6307. extra: 2038 / 1737,
  6308. bottom: 0.03
  6309. }
  6310. },
  6311. paw: {
  6312. height: math.unit(2 / 3.6, "meters"),
  6313. name: "Paw",
  6314. image: {
  6315. source: "./media/characters/everett/paw.svg"
  6316. }
  6317. },
  6318. },
  6319. [
  6320. {
  6321. name: "Normal",
  6322. height: math.unit(15, "feet"),
  6323. default: true
  6324. },
  6325. {
  6326. name: "Lorg",
  6327. height: math.unit(70, "feet"),
  6328. default: true
  6329. },
  6330. {
  6331. name: "Lorger",
  6332. height: math.unit(250, "feet")
  6333. },
  6334. {
  6335. name: "Macro",
  6336. height: math.unit(500, "meters")
  6337. },
  6338. ]
  6339. ))
  6340. characterMakers.push(() => makeCharacter(
  6341. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6342. {
  6343. front: {
  6344. height: math.unit(2, "meters"),
  6345. weight: math.unit(86, "kg"),
  6346. name: "Front",
  6347. image: {
  6348. source: "./media/characters/rose/front.svg",
  6349. extra: 350/335,
  6350. bottom: 10/360
  6351. }
  6352. },
  6353. frontAlt: {
  6354. height: math.unit(1.6, "meters"),
  6355. weight: math.unit(86, "kg"),
  6356. name: "Front (Alt)",
  6357. image: {
  6358. source: "./media/characters/rose/front-alt.svg",
  6359. extra: 299/283,
  6360. bottom: 3/302
  6361. }
  6362. },
  6363. plush: {
  6364. height: math.unit(2, "meters"),
  6365. weight: math.unit(86/3, "kg"),
  6366. name: "Plush",
  6367. image: {
  6368. source: "./media/characters/rose/plush.svg",
  6369. extra: 361/337,
  6370. bottom: 11/372
  6371. }
  6372. },
  6373. },
  6374. [
  6375. {
  6376. name: "Mini-Micro",
  6377. height: math.unit(1, "cm")
  6378. },
  6379. {
  6380. name: "Micro",
  6381. height: math.unit(3.5, "inches"),
  6382. default: true
  6383. },
  6384. {
  6385. name: "Normal",
  6386. height: math.unit(6 + 1 / 6, "feet")
  6387. },
  6388. {
  6389. name: "Mini-Macro",
  6390. height: math.unit(9 + 10 / 12, "feet")
  6391. },
  6392. ]
  6393. ))
  6394. characterMakers.push(() => makeCharacter(
  6395. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6396. {
  6397. front: {
  6398. height: math.unit(2, "meters"),
  6399. weight: math.unit(350, "lbs"),
  6400. name: "Front",
  6401. image: {
  6402. source: "./media/characters/regal/front.svg"
  6403. }
  6404. },
  6405. back: {
  6406. height: math.unit(2, "meters"),
  6407. weight: math.unit(350, "lbs"),
  6408. name: "Back",
  6409. image: {
  6410. source: "./media/characters/regal/back.svg"
  6411. }
  6412. },
  6413. },
  6414. [
  6415. {
  6416. name: "Macro",
  6417. height: math.unit(350, "feet"),
  6418. default: true
  6419. }
  6420. ]
  6421. ))
  6422. characterMakers.push(() => makeCharacter(
  6423. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6424. {
  6425. front: {
  6426. height: math.unit(4 + 11 / 12, "feet"),
  6427. weight: math.unit(100, "lbs"),
  6428. name: "Front",
  6429. image: {
  6430. source: "./media/characters/opal/front.svg"
  6431. }
  6432. },
  6433. frontAlt: {
  6434. height: math.unit(4 + 11 / 12, "feet"),
  6435. weight: math.unit(100, "lbs"),
  6436. name: "Front (Alt)",
  6437. image: {
  6438. source: "./media/characters/opal/front-alt.svg"
  6439. }
  6440. },
  6441. },
  6442. [
  6443. {
  6444. name: "Small",
  6445. height: math.unit(4 + 11 / 12, "feet")
  6446. },
  6447. {
  6448. name: "Normal",
  6449. height: math.unit(20, "feet"),
  6450. default: true
  6451. },
  6452. {
  6453. name: "Macro",
  6454. height: math.unit(120, "feet")
  6455. },
  6456. {
  6457. name: "Megamacro",
  6458. height: math.unit(80, "miles")
  6459. },
  6460. {
  6461. name: "True Size",
  6462. height: math.unit(100000, "lightyears")
  6463. },
  6464. ]
  6465. ))
  6466. characterMakers.push(() => makeCharacter(
  6467. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6468. {
  6469. front: {
  6470. height: math.unit(6, "feet"),
  6471. weight: math.unit(200, "lbs"),
  6472. name: "Front",
  6473. image: {
  6474. source: "./media/characters/vector-wuff/front.svg"
  6475. }
  6476. }
  6477. },
  6478. [
  6479. {
  6480. name: "Normal",
  6481. height: math.unit(2.8, "meters")
  6482. },
  6483. {
  6484. name: "Macro",
  6485. height: math.unit(450, "meters"),
  6486. default: true
  6487. },
  6488. {
  6489. name: "Megamacro",
  6490. height: math.unit(15, "kilometers")
  6491. }
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6496. {
  6497. front: {
  6498. height: math.unit(6, "feet"),
  6499. weight: math.unit(256, "lbs"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/dannik/front.svg"
  6503. }
  6504. }
  6505. },
  6506. [
  6507. {
  6508. name: "Macro",
  6509. height: math.unit(69.57, "meters"),
  6510. default: true
  6511. },
  6512. ]
  6513. ))
  6514. characterMakers.push(() => makeCharacter(
  6515. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6516. {
  6517. front: {
  6518. height: math.unit(6, "feet"),
  6519. weight: math.unit(120, "lbs"),
  6520. name: "Front",
  6521. image: {
  6522. source: "./media/characters/azura-saharah/front.svg"
  6523. }
  6524. },
  6525. back: {
  6526. height: math.unit(6, "feet"),
  6527. weight: math.unit(120, "lbs"),
  6528. name: "Back",
  6529. image: {
  6530. source: "./media/characters/azura-saharah/back.svg"
  6531. }
  6532. },
  6533. },
  6534. [
  6535. {
  6536. name: "Macro",
  6537. height: math.unit(100, "feet"),
  6538. default: true
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6544. {
  6545. side: {
  6546. height: math.unit(5 + 4 / 12, "feet"),
  6547. weight: math.unit(163, "lbs"),
  6548. name: "Side",
  6549. image: {
  6550. source: "./media/characters/kennedy/side.svg"
  6551. }
  6552. }
  6553. },
  6554. [
  6555. {
  6556. name: "Standard Doggo",
  6557. height: math.unit(5 + 4 / 12, "feet")
  6558. },
  6559. {
  6560. name: "Big Doggo",
  6561. height: math.unit(25 + 3 / 12, "feet"),
  6562. default: true
  6563. },
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6568. {
  6569. front: {
  6570. height: math.unit(6, "feet"),
  6571. weight: math.unit(90, "lbs"),
  6572. name: "Front",
  6573. image: {
  6574. source: "./media/characters/odi-lunar/front.svg"
  6575. }
  6576. }
  6577. },
  6578. [
  6579. {
  6580. name: "Micro",
  6581. height: math.unit(3, "inches"),
  6582. default: true
  6583. },
  6584. {
  6585. name: "Normal",
  6586. height: math.unit(5.5, "feet")
  6587. }
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6592. {
  6593. back: {
  6594. height: math.unit(6, "feet"),
  6595. weight: math.unit(220, "lbs"),
  6596. name: "Back",
  6597. image: {
  6598. source: "./media/characters/mandake/back.svg"
  6599. }
  6600. }
  6601. },
  6602. [
  6603. {
  6604. name: "Normal",
  6605. height: math.unit(7, "feet"),
  6606. default: true
  6607. },
  6608. {
  6609. name: "Macro",
  6610. height: math.unit(78, "feet")
  6611. },
  6612. {
  6613. name: "Macro+",
  6614. height: math.unit(300, "meters")
  6615. },
  6616. {
  6617. name: "Macro++",
  6618. height: math.unit(2400, "feet")
  6619. },
  6620. {
  6621. name: "Megamacro",
  6622. height: math.unit(5167, "meters")
  6623. },
  6624. {
  6625. name: "Gigamacro",
  6626. height: math.unit(41769, "miles")
  6627. },
  6628. ]
  6629. ))
  6630. characterMakers.push(() => makeCharacter(
  6631. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6632. {
  6633. front: {
  6634. height: math.unit(6, "feet"),
  6635. weight: math.unit(120, "lbs"),
  6636. name: "Front",
  6637. image: {
  6638. source: "./media/characters/yozey/front.svg"
  6639. }
  6640. },
  6641. frontAlt: {
  6642. height: math.unit(6, "feet"),
  6643. weight: math.unit(120, "lbs"),
  6644. name: "Front (Alt)",
  6645. image: {
  6646. source: "./media/characters/yozey/front-alt.svg"
  6647. }
  6648. },
  6649. side: {
  6650. height: math.unit(6, "feet"),
  6651. weight: math.unit(120, "lbs"),
  6652. name: "Side",
  6653. image: {
  6654. source: "./media/characters/yozey/side.svg"
  6655. }
  6656. },
  6657. },
  6658. [
  6659. {
  6660. name: "Micro",
  6661. height: math.unit(3, "inches"),
  6662. default: true
  6663. },
  6664. {
  6665. name: "Normal",
  6666. height: math.unit(6, "feet")
  6667. }
  6668. ]
  6669. ))
  6670. characterMakers.push(() => makeCharacter(
  6671. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6672. {
  6673. front: {
  6674. height: math.unit(6, "feet"),
  6675. weight: math.unit(103, "lbs"),
  6676. name: "Front",
  6677. image: {
  6678. source: "./media/characters/valeska-voss/front.svg"
  6679. }
  6680. }
  6681. },
  6682. [
  6683. {
  6684. name: "Mini-Sized Sub",
  6685. height: math.unit(3.1, "inches")
  6686. },
  6687. {
  6688. name: "Mid-Sized Sub",
  6689. height: math.unit(6.2, "inches")
  6690. },
  6691. {
  6692. name: "Full-Sized Sub",
  6693. height: math.unit(9.3, "inches")
  6694. },
  6695. {
  6696. name: "Normal",
  6697. height: math.unit(5 + 2 / 12, "foot"),
  6698. default: true
  6699. },
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6704. {
  6705. front: {
  6706. height: math.unit(6, "feet"),
  6707. weight: math.unit(160, "lbs"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/gene-zeta/front.svg",
  6711. extra: 3006 / 2826,
  6712. bottom: 182 / 3188
  6713. }
  6714. }
  6715. },
  6716. [
  6717. {
  6718. name: "Micro",
  6719. height: math.unit(6, "inches")
  6720. },
  6721. {
  6722. name: "Normal",
  6723. height: math.unit(5 + 11 / 12, "foot"),
  6724. default: true
  6725. },
  6726. {
  6727. name: "Macro",
  6728. height: math.unit(140, "feet")
  6729. },
  6730. {
  6731. name: "Supercharged",
  6732. height: math.unit(2500, "feet")
  6733. },
  6734. ]
  6735. ))
  6736. characterMakers.push(() => makeCharacter(
  6737. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6738. {
  6739. front: {
  6740. height: math.unit(6, "feet"),
  6741. weight: math.unit(350, "lbs"),
  6742. name: "Front",
  6743. image: {
  6744. source: "./media/characters/razinox/front.svg",
  6745. extra: 1686 / 1548,
  6746. bottom: 28.2 / 1868
  6747. }
  6748. },
  6749. back: {
  6750. height: math.unit(6, "feet"),
  6751. weight: math.unit(350, "lbs"),
  6752. name: "Back",
  6753. image: {
  6754. source: "./media/characters/razinox/back.svg",
  6755. extra: 1660 / 1590,
  6756. bottom: 15 / 1665
  6757. }
  6758. },
  6759. },
  6760. [
  6761. {
  6762. name: "Normal",
  6763. height: math.unit(10 + 8 / 12, "foot")
  6764. },
  6765. {
  6766. name: "Minimacro",
  6767. height: math.unit(15, "foot")
  6768. },
  6769. {
  6770. name: "Macro",
  6771. height: math.unit(60, "foot"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Megamacro",
  6776. height: math.unit(5, "miles")
  6777. },
  6778. {
  6779. name: "Gigamacro",
  6780. height: math.unit(6000, "miles")
  6781. },
  6782. ]
  6783. ))
  6784. characterMakers.push(() => makeCharacter(
  6785. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6786. {
  6787. front: {
  6788. height: math.unit(6, "feet"),
  6789. weight: math.unit(150, "lbs"),
  6790. name: "Front",
  6791. image: {
  6792. source: "./media/characters/cobalt/front.svg"
  6793. }
  6794. }
  6795. },
  6796. [
  6797. {
  6798. name: "Normal",
  6799. height: math.unit(8 + 1 / 12, "foot")
  6800. },
  6801. {
  6802. name: "Macro",
  6803. height: math.unit(111, "foot"),
  6804. default: true
  6805. },
  6806. {
  6807. name: "Supracosmic",
  6808. height: math.unit(1e42, "feet")
  6809. },
  6810. ]
  6811. ))
  6812. characterMakers.push(() => makeCharacter(
  6813. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6814. {
  6815. front: {
  6816. height: math.unit(6, "feet"),
  6817. weight: math.unit(140, "lbs"),
  6818. name: "Front",
  6819. image: {
  6820. source: "./media/characters/amanda/front.svg"
  6821. }
  6822. }
  6823. },
  6824. [
  6825. {
  6826. name: "Micro",
  6827. height: math.unit(5, "inches"),
  6828. default: true
  6829. },
  6830. ]
  6831. ))
  6832. characterMakers.push(() => makeCharacter(
  6833. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6834. {
  6835. front: {
  6836. height: math.unit(2.75, "meters"),
  6837. weight: math.unit(1200, "lb"),
  6838. name: "Front",
  6839. image: {
  6840. source: "./media/characters/teal/front.svg",
  6841. extra: 2463 / 2320,
  6842. bottom: 166 / 2629
  6843. }
  6844. },
  6845. back: {
  6846. height: math.unit(2.75, "meters"),
  6847. weight: math.unit(1200, "lb"),
  6848. name: "Back",
  6849. image: {
  6850. source: "./media/characters/teal/back.svg",
  6851. extra: 2580 / 2489,
  6852. bottom: 151 / 2731
  6853. }
  6854. },
  6855. sitting: {
  6856. height: math.unit(1.9, "meters"),
  6857. weight: math.unit(1200, "lb"),
  6858. name: "Sitting",
  6859. image: {
  6860. source: "./media/characters/teal/sitting.svg",
  6861. extra: 623 / 590,
  6862. bottom: 121 / 744
  6863. }
  6864. },
  6865. standing: {
  6866. height: math.unit(2.75, "meters"),
  6867. weight: math.unit(1200, "lb"),
  6868. name: "Standing",
  6869. image: {
  6870. source: "./media/characters/teal/standing.svg",
  6871. extra: 923 / 893,
  6872. bottom: 60 / 983
  6873. }
  6874. },
  6875. stretching: {
  6876. height: math.unit(3.65, "meters"),
  6877. weight: math.unit(1200, "lb"),
  6878. name: "Stretching",
  6879. image: {
  6880. source: "./media/characters/teal/stretching.svg",
  6881. extra: 1276 / 1244,
  6882. bottom: 0 / 1276
  6883. }
  6884. },
  6885. legged: {
  6886. height: math.unit(1.3, "meters"),
  6887. weight: math.unit(100, "lb"),
  6888. name: "Legged",
  6889. image: {
  6890. source: "./media/characters/teal/legged.svg",
  6891. extra: 462 / 437,
  6892. bottom: 24 / 486
  6893. }
  6894. },
  6895. naga: {
  6896. height: math.unit(5.4, "meters"),
  6897. weight: math.unit(4000, "lb"),
  6898. name: "Naga",
  6899. image: {
  6900. source: "./media/characters/teal/naga.svg",
  6901. extra: 1902 / 1858,
  6902. bottom: 0 / 1902
  6903. }
  6904. },
  6905. hand: {
  6906. height: math.unit(0.52, "meters"),
  6907. name: "Hand",
  6908. image: {
  6909. source: "./media/characters/teal/hand.svg"
  6910. }
  6911. },
  6912. maw: {
  6913. height: math.unit(0.43, "meters"),
  6914. name: "Maw",
  6915. image: {
  6916. source: "./media/characters/teal/maw.svg"
  6917. }
  6918. },
  6919. slit: {
  6920. height: math.unit(0.25, "meters"),
  6921. name: "Slit",
  6922. image: {
  6923. source: "./media/characters/teal/slit.svg"
  6924. }
  6925. },
  6926. },
  6927. [
  6928. {
  6929. name: "Normal",
  6930. height: math.unit(2.75, "meters"),
  6931. default: true
  6932. },
  6933. {
  6934. name: "Macro",
  6935. height: math.unit(300, "feet")
  6936. },
  6937. {
  6938. name: "Macro+",
  6939. height: math.unit(2000, "feet")
  6940. },
  6941. ]
  6942. ))
  6943. characterMakers.push(() => makeCharacter(
  6944. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6945. {
  6946. frontCat: {
  6947. height: math.unit(6, "feet"),
  6948. weight: math.unit(180, "lbs"),
  6949. name: "Front (Cat)",
  6950. image: {
  6951. source: "./media/characters/ravin-amulet/front-cat.svg"
  6952. }
  6953. },
  6954. frontCatAlt: {
  6955. height: math.unit(6, "feet"),
  6956. weight: math.unit(180, "lbs"),
  6957. name: "Front (Alt, Cat)",
  6958. image: {
  6959. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6960. }
  6961. },
  6962. frontWerewolf: {
  6963. height: math.unit(6 * 1.2, "feet"),
  6964. weight: math.unit(225, "lbs"),
  6965. name: "Front (Werewolf)",
  6966. image: {
  6967. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6968. }
  6969. },
  6970. backWerewolf: {
  6971. height: math.unit(6 * 1.2, "feet"),
  6972. weight: math.unit(225, "lbs"),
  6973. name: "Back (Werewolf)",
  6974. image: {
  6975. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  6976. }
  6977. },
  6978. },
  6979. [
  6980. {
  6981. name: "Nano",
  6982. height: math.unit(1, "micrometer")
  6983. },
  6984. {
  6985. name: "Micro",
  6986. height: math.unit(1, "inch")
  6987. },
  6988. {
  6989. name: "Normal",
  6990. height: math.unit(6, "feet"),
  6991. default: true
  6992. },
  6993. {
  6994. name: "Macro",
  6995. height: math.unit(60, "feet")
  6996. }
  6997. ]
  6998. ))
  6999. characterMakers.push(() => makeCharacter(
  7000. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7001. {
  7002. front: {
  7003. height: math.unit(6, "feet"),
  7004. weight: math.unit(165, "lbs"),
  7005. name: "Front",
  7006. image: {
  7007. source: "./media/characters/fluoresce/front.svg"
  7008. }
  7009. }
  7010. },
  7011. [
  7012. {
  7013. name: "Micro",
  7014. height: math.unit(6, "cm")
  7015. },
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(5 + 7 / 12, "feet"),
  7019. default: true
  7020. },
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(56, "feet")
  7024. },
  7025. {
  7026. name: "Megamacro",
  7027. height: math.unit(1.9, "miles")
  7028. },
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7033. {
  7034. front: {
  7035. height: math.unit(9 + 6 / 12, "feet"),
  7036. weight: math.unit(523, "lbs"),
  7037. name: "Side",
  7038. image: {
  7039. source: "./media/characters/aurora/side.svg"
  7040. }
  7041. }
  7042. },
  7043. [
  7044. {
  7045. name: "Normal",
  7046. height: math.unit(9 + 6 / 12, "feet")
  7047. },
  7048. {
  7049. name: "Macro",
  7050. height: math.unit(96, "feet"),
  7051. default: true
  7052. },
  7053. {
  7054. name: "Macro+",
  7055. height: math.unit(243, "feet")
  7056. },
  7057. ]
  7058. ))
  7059. characterMakers.push(() => makeCharacter(
  7060. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7061. {
  7062. front: {
  7063. height: math.unit(194, "cm"),
  7064. weight: math.unit(90, "kg"),
  7065. name: "Front",
  7066. image: {
  7067. source: "./media/characters/ranek/front.svg"
  7068. }
  7069. },
  7070. side: {
  7071. height: math.unit(194, "cm"),
  7072. weight: math.unit(90, "kg"),
  7073. name: "Side",
  7074. image: {
  7075. source: "./media/characters/ranek/side.svg"
  7076. }
  7077. },
  7078. back: {
  7079. height: math.unit(194, "cm"),
  7080. weight: math.unit(90, "kg"),
  7081. name: "Back",
  7082. image: {
  7083. source: "./media/characters/ranek/back.svg"
  7084. }
  7085. },
  7086. feral: {
  7087. height: math.unit(30, "cm"),
  7088. weight: math.unit(1.6, "lbs"),
  7089. name: "Feral",
  7090. image: {
  7091. source: "./media/characters/ranek/feral.svg"
  7092. }
  7093. },
  7094. },
  7095. [
  7096. {
  7097. name: "Normal",
  7098. height: math.unit(194, "cm"),
  7099. default: true
  7100. },
  7101. {
  7102. name: "Macro",
  7103. height: math.unit(100, "meters")
  7104. },
  7105. ]
  7106. ))
  7107. characterMakers.push(() => makeCharacter(
  7108. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7109. {
  7110. front: {
  7111. height: math.unit(5 + 6 / 12, "feet"),
  7112. weight: math.unit(153, "lbs"),
  7113. name: "Front",
  7114. image: {
  7115. source: "./media/characters/andrew-cooper/front.svg"
  7116. }
  7117. },
  7118. },
  7119. [
  7120. {
  7121. name: "Nano",
  7122. height: math.unit(1, "mm")
  7123. },
  7124. {
  7125. name: "Micro",
  7126. height: math.unit(2, "inches")
  7127. },
  7128. {
  7129. name: "Normal",
  7130. height: math.unit(5 + 6 / 12, "feet"),
  7131. default: true
  7132. }
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7137. {
  7138. front: {
  7139. height: math.unit(6, "feet"),
  7140. weight: math.unit(180, "lbs"),
  7141. name: "Front",
  7142. image: {
  7143. source: "./media/characters/akane-sato/front.svg",
  7144. extra: 1219 / 1140
  7145. }
  7146. },
  7147. back: {
  7148. height: math.unit(6, "feet"),
  7149. weight: math.unit(180, "lbs"),
  7150. name: "Back",
  7151. image: {
  7152. source: "./media/characters/akane-sato/back.svg",
  7153. extra: 1219 / 1170
  7154. }
  7155. },
  7156. },
  7157. [
  7158. {
  7159. name: "Normal",
  7160. height: math.unit(2.5, "meters")
  7161. },
  7162. {
  7163. name: "Macro",
  7164. height: math.unit(250, "meters"),
  7165. default: true
  7166. },
  7167. {
  7168. name: "Megamacro",
  7169. height: math.unit(25, "km")
  7170. },
  7171. ]
  7172. ))
  7173. characterMakers.push(() => makeCharacter(
  7174. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7175. {
  7176. front: {
  7177. height: math.unit(6, "feet"),
  7178. weight: math.unit(65, "kg"),
  7179. name: "Front",
  7180. image: {
  7181. source: "./media/characters/rook/front.svg",
  7182. extra: 960 / 950
  7183. }
  7184. }
  7185. },
  7186. [
  7187. {
  7188. name: "Normal",
  7189. height: math.unit(8.8, "feet")
  7190. },
  7191. {
  7192. name: "Macro",
  7193. height: math.unit(88, "feet"),
  7194. default: true
  7195. },
  7196. {
  7197. name: "Megamacro",
  7198. height: math.unit(8, "miles")
  7199. },
  7200. ]
  7201. ))
  7202. characterMakers.push(() => makeCharacter(
  7203. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7204. {
  7205. front: {
  7206. height: math.unit(12 + 2 / 12, "feet"),
  7207. weight: math.unit(808, "lbs"),
  7208. name: "Front",
  7209. image: {
  7210. source: "./media/characters/prodigy/front.svg"
  7211. }
  7212. }
  7213. },
  7214. [
  7215. {
  7216. name: "Normal",
  7217. height: math.unit(12 + 2 / 12, "feet"),
  7218. default: true
  7219. },
  7220. {
  7221. name: "Macro",
  7222. height: math.unit(143, "feet")
  7223. },
  7224. {
  7225. name: "Macro+",
  7226. height: math.unit(400, "feet")
  7227. },
  7228. ]
  7229. ))
  7230. characterMakers.push(() => makeCharacter(
  7231. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7232. {
  7233. front: {
  7234. height: math.unit(6, "feet"),
  7235. weight: math.unit(225, "lbs"),
  7236. name: "Front",
  7237. image: {
  7238. source: "./media/characters/daniel/front.svg"
  7239. }
  7240. },
  7241. leaning: {
  7242. height: math.unit(6, "feet"),
  7243. weight: math.unit(225, "lbs"),
  7244. name: "Leaning",
  7245. image: {
  7246. source: "./media/characters/daniel/leaning.svg"
  7247. }
  7248. },
  7249. },
  7250. [
  7251. {
  7252. name: "Macro",
  7253. height: math.unit(1000, "feet"),
  7254. default: true
  7255. },
  7256. ]
  7257. ))
  7258. characterMakers.push(() => makeCharacter(
  7259. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7260. {
  7261. front: {
  7262. height: math.unit(6, "feet"),
  7263. weight: math.unit(88, "lbs"),
  7264. name: "Front",
  7265. image: {
  7266. source: "./media/characters/chiros/front.svg",
  7267. extra: 306 / 226
  7268. }
  7269. },
  7270. side: {
  7271. height: math.unit(6, "feet"),
  7272. weight: math.unit(88, "lbs"),
  7273. name: "Side",
  7274. image: {
  7275. source: "./media/characters/chiros/side.svg",
  7276. extra: 306 / 226
  7277. }
  7278. },
  7279. },
  7280. [
  7281. {
  7282. name: "Normal",
  7283. height: math.unit(6, "cm"),
  7284. default: true
  7285. },
  7286. ]
  7287. ))
  7288. characterMakers.push(() => makeCharacter(
  7289. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7290. {
  7291. front: {
  7292. height: math.unit(6, "feet"),
  7293. weight: math.unit(100, "lbs"),
  7294. name: "Front",
  7295. image: {
  7296. source: "./media/characters/selka/front.svg",
  7297. extra: 947 / 887
  7298. }
  7299. }
  7300. },
  7301. [
  7302. {
  7303. name: "Normal",
  7304. height: math.unit(5, "cm"),
  7305. default: true
  7306. },
  7307. ]
  7308. ))
  7309. characterMakers.push(() => makeCharacter(
  7310. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7311. {
  7312. front: {
  7313. height: math.unit(8 + 3 / 12, "feet"),
  7314. weight: math.unit(424, "lbs"),
  7315. name: "Front",
  7316. image: {
  7317. source: "./media/characters/verin/front.svg",
  7318. extra: 1845 / 1550
  7319. }
  7320. },
  7321. frontArmored: {
  7322. height: math.unit(8 + 3 / 12, "feet"),
  7323. weight: math.unit(424, "lbs"),
  7324. name: "Front (Armored)",
  7325. image: {
  7326. source: "./media/characters/verin/front-armor.svg",
  7327. extra: 1845 / 1550,
  7328. bottom: 0.01
  7329. }
  7330. },
  7331. back: {
  7332. height: math.unit(8 + 3 / 12, "feet"),
  7333. weight: math.unit(424, "lbs"),
  7334. name: "Back",
  7335. image: {
  7336. source: "./media/characters/verin/back.svg",
  7337. bottom: 0.1,
  7338. extra: 1
  7339. }
  7340. },
  7341. foot: {
  7342. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7343. name: "Foot",
  7344. image: {
  7345. source: "./media/characters/verin/foot.svg"
  7346. }
  7347. },
  7348. },
  7349. [
  7350. {
  7351. name: "Normal",
  7352. height: math.unit(8 + 3 / 12, "feet")
  7353. },
  7354. {
  7355. name: "Minimacro",
  7356. height: math.unit(21, "feet"),
  7357. default: true
  7358. },
  7359. {
  7360. name: "Macro",
  7361. height: math.unit(626, "feet")
  7362. },
  7363. ]
  7364. ))
  7365. characterMakers.push(() => makeCharacter(
  7366. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7367. {
  7368. front: {
  7369. height: math.unit(2.718, "meters"),
  7370. weight: math.unit(150, "lbs"),
  7371. name: "Front",
  7372. image: {
  7373. source: "./media/characters/sovrim-terraquian/front.svg"
  7374. }
  7375. },
  7376. back: {
  7377. height: math.unit(2.718, "meters"),
  7378. weight: math.unit(150, "lbs"),
  7379. name: "Back",
  7380. image: {
  7381. source: "./media/characters/sovrim-terraquian/back.svg"
  7382. }
  7383. }
  7384. },
  7385. [
  7386. {
  7387. name: "Micro",
  7388. height: math.unit(2, "inches")
  7389. },
  7390. {
  7391. name: "Small",
  7392. height: math.unit(1, "meter")
  7393. },
  7394. {
  7395. name: "Normal",
  7396. height: math.unit(Math.E, "meters"),
  7397. default: true
  7398. },
  7399. {
  7400. name: "Macro",
  7401. height: math.unit(20, "meters")
  7402. },
  7403. {
  7404. name: "Macro+",
  7405. height: math.unit(400, "meters")
  7406. },
  7407. ]
  7408. ))
  7409. characterMakers.push(() => makeCharacter(
  7410. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7411. {
  7412. front: {
  7413. height: math.unit(7, "feet"),
  7414. weight: math.unit(489, "lbs"),
  7415. name: "Front",
  7416. image: {
  7417. source: "./media/characters/reece-silvermane/front.svg",
  7418. bottom: 0.02,
  7419. extra: 1
  7420. }
  7421. },
  7422. },
  7423. [
  7424. {
  7425. name: "Macro",
  7426. height: math.unit(1.5, "miles"),
  7427. default: true
  7428. },
  7429. ]
  7430. ))
  7431. characterMakers.push(() => makeCharacter(
  7432. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7433. {
  7434. front: {
  7435. height: math.unit(6, "feet"),
  7436. weight: math.unit(78, "kg"),
  7437. name: "Front",
  7438. image: {
  7439. source: "./media/characters/kane/front.svg",
  7440. extra: 978 / 899
  7441. }
  7442. },
  7443. },
  7444. [
  7445. {
  7446. name: "Normal",
  7447. height: math.unit(2.1, "m"),
  7448. },
  7449. {
  7450. name: "Macro",
  7451. height: math.unit(1, "km"),
  7452. default: true
  7453. },
  7454. ]
  7455. ))
  7456. characterMakers.push(() => makeCharacter(
  7457. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7458. {
  7459. front: {
  7460. height: math.unit(6, "feet"),
  7461. weight: math.unit(200, "kg"),
  7462. name: "Front",
  7463. image: {
  7464. source: "./media/characters/tegon/front.svg",
  7465. bottom: 0.01,
  7466. extra: 1
  7467. }
  7468. },
  7469. },
  7470. [
  7471. {
  7472. name: "Micro",
  7473. height: math.unit(1, "inch")
  7474. },
  7475. {
  7476. name: "Normal",
  7477. height: math.unit(6 + 3 / 12, "feet"),
  7478. default: true
  7479. },
  7480. {
  7481. name: "Macro",
  7482. height: math.unit(300, "feet")
  7483. },
  7484. {
  7485. name: "Megamacro",
  7486. height: math.unit(69, "miles")
  7487. },
  7488. ]
  7489. ))
  7490. characterMakers.push(() => makeCharacter(
  7491. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7492. {
  7493. side: {
  7494. height: math.unit(6, "feet"),
  7495. weight: math.unit(2304, "lbs"),
  7496. name: "Side",
  7497. image: {
  7498. source: "./media/characters/arcturax/side.svg",
  7499. extra: 790 / 376,
  7500. bottom: 0.01
  7501. }
  7502. },
  7503. },
  7504. [
  7505. {
  7506. name: "Micro",
  7507. height: math.unit(2, "inch")
  7508. },
  7509. {
  7510. name: "Normal",
  7511. height: math.unit(6, "feet")
  7512. },
  7513. {
  7514. name: "Macro",
  7515. height: math.unit(39, "feet"),
  7516. default: true
  7517. },
  7518. {
  7519. name: "Megamacro",
  7520. height: math.unit(7, "miles")
  7521. },
  7522. ]
  7523. ))
  7524. characterMakers.push(() => makeCharacter(
  7525. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7526. {
  7527. front: {
  7528. height: math.unit(6, "feet"),
  7529. weight: math.unit(50, "lbs"),
  7530. name: "Front",
  7531. image: {
  7532. source: "./media/characters/sentri/front.svg",
  7533. extra: 1750 / 1570,
  7534. bottom: 0.025
  7535. }
  7536. },
  7537. frontAlt: {
  7538. height: math.unit(6, "feet"),
  7539. weight: math.unit(50, "lbs"),
  7540. name: "Front (Alt)",
  7541. image: {
  7542. source: "./media/characters/sentri/front-alt.svg",
  7543. extra: 1750 / 1570,
  7544. bottom: 0.025
  7545. }
  7546. },
  7547. },
  7548. [
  7549. {
  7550. name: "Normal",
  7551. height: math.unit(15, "feet"),
  7552. default: true
  7553. },
  7554. {
  7555. name: "Macro",
  7556. height: math.unit(2500, "feet")
  7557. }
  7558. ]
  7559. ))
  7560. characterMakers.push(() => makeCharacter(
  7561. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7562. {
  7563. front: {
  7564. height: math.unit(5 + 8 / 12, "feet"),
  7565. weight: math.unit(130, "lbs"),
  7566. name: "Front",
  7567. image: {
  7568. source: "./media/characters/corvin/front.svg",
  7569. extra: 1803 / 1629
  7570. }
  7571. },
  7572. frontShirt: {
  7573. height: math.unit(5 + 8 / 12, "feet"),
  7574. weight: math.unit(130, "lbs"),
  7575. name: "Front (Shirt)",
  7576. image: {
  7577. source: "./media/characters/corvin/front-shirt.svg",
  7578. extra: 1803 / 1629
  7579. }
  7580. },
  7581. frontPoncho: {
  7582. height: math.unit(5 + 8 / 12, "feet"),
  7583. weight: math.unit(130, "lbs"),
  7584. name: "Front (Poncho)",
  7585. image: {
  7586. source: "./media/characters/corvin/front-poncho.svg",
  7587. extra: 1803 / 1629
  7588. }
  7589. },
  7590. side: {
  7591. height: math.unit(5 + 8 / 12, "feet"),
  7592. weight: math.unit(130, "lbs"),
  7593. name: "Side",
  7594. image: {
  7595. source: "./media/characters/corvin/side.svg",
  7596. extra: 1012 / 945
  7597. }
  7598. },
  7599. back: {
  7600. height: math.unit(5 + 8 / 12, "feet"),
  7601. weight: math.unit(130, "lbs"),
  7602. name: "Back",
  7603. image: {
  7604. source: "./media/characters/corvin/back.svg",
  7605. extra: 1803 / 1629
  7606. }
  7607. },
  7608. },
  7609. [
  7610. {
  7611. name: "Micro",
  7612. height: math.unit(3, "inches")
  7613. },
  7614. {
  7615. name: "Normal",
  7616. height: math.unit(5 + 8 / 12, "feet")
  7617. },
  7618. {
  7619. name: "Macro",
  7620. height: math.unit(300, "feet"),
  7621. default: true
  7622. },
  7623. {
  7624. name: "Megamacro",
  7625. height: math.unit(500, "miles")
  7626. }
  7627. ]
  7628. ))
  7629. characterMakers.push(() => makeCharacter(
  7630. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7631. {
  7632. front: {
  7633. height: math.unit(6, "feet"),
  7634. weight: math.unit(135, "lbs"),
  7635. name: "Front",
  7636. image: {
  7637. source: "./media/characters/q/front.svg",
  7638. extra: 854 / 752,
  7639. bottom: 0.005
  7640. }
  7641. },
  7642. back: {
  7643. height: math.unit(6, "feet"),
  7644. weight: math.unit(130, "lbs"),
  7645. name: "Back",
  7646. image: {
  7647. source: "./media/characters/q/back.svg",
  7648. extra: 854 / 752
  7649. }
  7650. },
  7651. },
  7652. [
  7653. {
  7654. name: "Macro",
  7655. height: math.unit(90, "feet"),
  7656. default: true
  7657. },
  7658. {
  7659. name: "Extra Macro",
  7660. height: math.unit(300, "feet"),
  7661. },
  7662. {
  7663. name: "BIG WALF",
  7664. height: math.unit(750, "feet"),
  7665. },
  7666. ]
  7667. ))
  7668. characterMakers.push(() => makeCharacter(
  7669. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7670. {
  7671. front: {
  7672. height: math.unit(6, "feet"),
  7673. weight: math.unit(150, "lbs"),
  7674. name: "Front",
  7675. image: {
  7676. source: "./media/characters/carley/front.svg",
  7677. extra: 3927 / 3540,
  7678. bottom: 29.2 / 735
  7679. }
  7680. }
  7681. },
  7682. [
  7683. {
  7684. name: "Normal",
  7685. height: math.unit(6 + 3 / 12, "feet")
  7686. },
  7687. {
  7688. name: "Macro",
  7689. height: math.unit(185, "feet"),
  7690. default: true
  7691. },
  7692. {
  7693. name: "Megamacro",
  7694. height: math.unit(8, "miles"),
  7695. },
  7696. ]
  7697. ))
  7698. characterMakers.push(() => makeCharacter(
  7699. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7700. {
  7701. front: {
  7702. height: math.unit(3, "feet"),
  7703. weight: math.unit(28, "lbs"),
  7704. name: "Front",
  7705. image: {
  7706. source: "./media/characters/citrine/front.svg"
  7707. }
  7708. }
  7709. },
  7710. [
  7711. {
  7712. name: "Normal",
  7713. height: math.unit(3, "feet"),
  7714. default: true
  7715. }
  7716. ]
  7717. ))
  7718. characterMakers.push(() => makeCharacter(
  7719. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7720. {
  7721. front: {
  7722. height: math.unit(14, "feet"),
  7723. weight: math.unit(1450, "kg"),
  7724. capacity: math.unit(15, "people"),
  7725. name: "Front",
  7726. image: {
  7727. source: "./media/characters/aura-starwind/front.svg",
  7728. extra: 1455 / 1335
  7729. }
  7730. },
  7731. side: {
  7732. height: math.unit(14, "feet"),
  7733. weight: math.unit(1450, "kg"),
  7734. capacity: math.unit(15, "people"),
  7735. name: "Side",
  7736. image: {
  7737. source: "./media/characters/aura-starwind/side.svg",
  7738. extra: 1654 / 1497
  7739. }
  7740. },
  7741. taur: {
  7742. height: math.unit(18, "feet"),
  7743. weight: math.unit(5500, "kg"),
  7744. capacity: math.unit(50, "people"),
  7745. name: "Taur",
  7746. image: {
  7747. source: "./media/characters/aura-starwind/taur.svg",
  7748. extra: 1760 / 1650
  7749. }
  7750. },
  7751. feral: {
  7752. height: math.unit(46, "feet"),
  7753. weight: math.unit(25000, "kg"),
  7754. capacity: math.unit(120, "people"),
  7755. name: "Feral",
  7756. image: {
  7757. source: "./media/characters/aura-starwind/feral.svg"
  7758. }
  7759. },
  7760. },
  7761. [
  7762. {
  7763. name: "Normal",
  7764. height: math.unit(14, "feet"),
  7765. default: true
  7766. },
  7767. {
  7768. name: "Macro",
  7769. height: math.unit(50, "meters")
  7770. },
  7771. {
  7772. name: "Megamacro",
  7773. height: math.unit(5000, "meters")
  7774. },
  7775. {
  7776. name: "Gigamacro",
  7777. height: math.unit(100000, "kilometers")
  7778. },
  7779. ]
  7780. ))
  7781. characterMakers.push(() => makeCharacter(
  7782. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7783. {
  7784. front: {
  7785. height: math.unit(2 + 7 / 12, "feet"),
  7786. weight: math.unit(32, "lbs"),
  7787. name: "Front",
  7788. image: {
  7789. source: "./media/characters/rivet/front.svg",
  7790. extra: 1716 / 1658,
  7791. bottom: 0.03
  7792. }
  7793. },
  7794. foot: {
  7795. height: math.unit(0.551, "feet"),
  7796. name: "Rivet's Foot",
  7797. image: {
  7798. source: "./media/characters/rivet/foot.svg"
  7799. },
  7800. rename: true
  7801. }
  7802. },
  7803. [
  7804. {
  7805. name: "Micro",
  7806. height: math.unit(1.5, "inches"),
  7807. },
  7808. {
  7809. name: "Normal",
  7810. height: math.unit(2 + 7 / 12, "feet"),
  7811. default: true
  7812. },
  7813. {
  7814. name: "Macro",
  7815. height: math.unit(85, "feet")
  7816. },
  7817. {
  7818. name: "Megamacro",
  7819. height: math.unit(2.2, "km")
  7820. }
  7821. ]
  7822. ))
  7823. characterMakers.push(() => makeCharacter(
  7824. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7825. {
  7826. front: {
  7827. height: math.unit(5 + 9 / 12, "feet"),
  7828. weight: math.unit(150, "lbs"),
  7829. name: "Front",
  7830. image: {
  7831. source: "./media/characters/coffee/front.svg",
  7832. extra: 3666 / 3032,
  7833. bottom: 0.04
  7834. }
  7835. },
  7836. foot: {
  7837. height: math.unit(1.29, "feet"),
  7838. name: "Foot",
  7839. image: {
  7840. source: "./media/characters/coffee/foot.svg"
  7841. }
  7842. },
  7843. },
  7844. [
  7845. {
  7846. name: "Micro",
  7847. height: math.unit(2, "inches"),
  7848. },
  7849. {
  7850. name: "Normal",
  7851. height: math.unit(5 + 9 / 12, "feet"),
  7852. default: true
  7853. },
  7854. {
  7855. name: "Macro",
  7856. height: math.unit(800, "feet")
  7857. },
  7858. {
  7859. name: "Megamacro",
  7860. height: math.unit(25, "miles")
  7861. }
  7862. ]
  7863. ))
  7864. characterMakers.push(() => makeCharacter(
  7865. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7866. {
  7867. front: {
  7868. height: math.unit(6, "feet"),
  7869. weight: math.unit(200, "lbs"),
  7870. name: "Front",
  7871. image: {
  7872. source: "./media/characters/chari-gal/front.svg",
  7873. extra: 1568 / 1385,
  7874. bottom: 0.047
  7875. }
  7876. },
  7877. gigantamax: {
  7878. height: math.unit(6 * 16, "feet"),
  7879. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7880. name: "Gigantamax",
  7881. image: {
  7882. source: "./media/characters/chari-gal/gigantamax.svg",
  7883. extra: 1124 / 888,
  7884. bottom: 0.03
  7885. }
  7886. },
  7887. },
  7888. [
  7889. {
  7890. name: "Normal",
  7891. height: math.unit(5 + 7 / 12, "feet")
  7892. },
  7893. {
  7894. name: "Macro",
  7895. height: math.unit(200, "feet"),
  7896. default: true
  7897. }
  7898. ]
  7899. ))
  7900. characterMakers.push(() => makeCharacter(
  7901. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7902. {
  7903. front: {
  7904. height: math.unit(6, "feet"),
  7905. weight: math.unit(150, "lbs"),
  7906. name: "Front",
  7907. image: {
  7908. source: "./media/characters/nova/front.svg",
  7909. extra: 5000 / 4722,
  7910. bottom: 0.02
  7911. }
  7912. }
  7913. },
  7914. [
  7915. {
  7916. name: "Micro-",
  7917. height: math.unit(0.8, "inches")
  7918. },
  7919. {
  7920. name: "Micro",
  7921. height: math.unit(2, "inches"),
  7922. default: true
  7923. },
  7924. ]
  7925. ))
  7926. characterMakers.push(() => makeCharacter(
  7927. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7928. {
  7929. front: {
  7930. height: math.unit(3 + 1 / 12, "feet"),
  7931. weight: math.unit(21.7, "lbs"),
  7932. name: "Front",
  7933. image: {
  7934. source: "./media/characters/argent/front.svg",
  7935. extra: 1471 / 1331,
  7936. bottom: 100.8 / 1575.5
  7937. }
  7938. }
  7939. },
  7940. [
  7941. {
  7942. name: "Micro",
  7943. height: math.unit(2, "inches")
  7944. },
  7945. {
  7946. name: "Normal",
  7947. height: math.unit(3 + 1 / 12, "feet"),
  7948. default: true
  7949. },
  7950. {
  7951. name: "Macro",
  7952. height: math.unit(120, "feet")
  7953. },
  7954. ]
  7955. ))
  7956. characterMakers.push(() => makeCharacter(
  7957. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7958. {
  7959. lamp: {
  7960. height: math.unit(7 * 1559 / 989, "feet"),
  7961. name: "Magic Lamp",
  7962. image: {
  7963. source: "./media/characters/mira-al-cul/lamp.svg",
  7964. extra: 1617 / 1559
  7965. }
  7966. },
  7967. front: {
  7968. height: math.unit(7, "feet"),
  7969. name: "Front",
  7970. image: {
  7971. source: "./media/characters/mira-al-cul/front.svg",
  7972. extra: 1044 / 990
  7973. }
  7974. },
  7975. },
  7976. [
  7977. {
  7978. name: "Heavily Restricted",
  7979. height: math.unit(7 * 1559 / 989, "feet")
  7980. },
  7981. {
  7982. name: "Freshly Freed",
  7983. height: math.unit(50 * 1559 / 989, "feet")
  7984. },
  7985. {
  7986. name: "World Encompassing",
  7987. height: math.unit(10000 * 1559 / 989, "miles")
  7988. },
  7989. {
  7990. name: "Galactic",
  7991. height: math.unit(1.433 * 1559 / 989, "zettameters")
  7992. },
  7993. {
  7994. name: "Palmed Universe",
  7995. height: math.unit(6000 * 1559 / 989, "yottameters"),
  7996. default: true
  7997. },
  7998. {
  7999. name: "Multiversal Matriarch",
  8000. height: math.unit(8.87e10, "yottameters")
  8001. },
  8002. {
  8003. name: "Void Mother",
  8004. height: math.unit(3.14e110, "yottaparsecs")
  8005. },
  8006. {
  8007. name: "Toying with Transcendence",
  8008. height: math.unit(1e307, "meters")
  8009. },
  8010. ]
  8011. ))
  8012. characterMakers.push(() => makeCharacter(
  8013. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8014. {
  8015. front: {
  8016. height: math.unit(17 + 1 / 12, "feet"),
  8017. weight: math.unit(476.2 * 5, "lbs"),
  8018. name: "Front",
  8019. image: {
  8020. source: "./media/characters/kuro-shi-uchū/front.svg",
  8021. extra: 2329 / 1835,
  8022. bottom: 0.02
  8023. }
  8024. },
  8025. },
  8026. [
  8027. {
  8028. name: "Micro",
  8029. height: math.unit(2, "inches")
  8030. },
  8031. {
  8032. name: "Normal",
  8033. height: math.unit(12, "meters")
  8034. },
  8035. {
  8036. name: "Planetary",
  8037. height: math.unit(0.00929, "AU"),
  8038. default: true
  8039. },
  8040. {
  8041. name: "Universal",
  8042. height: math.unit(20, "gigaparsecs")
  8043. },
  8044. ]
  8045. ))
  8046. characterMakers.push(() => makeCharacter(
  8047. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8048. {
  8049. front: {
  8050. height: math.unit(5 + 2 / 12, "feet"),
  8051. weight: math.unit(120, "lbs"),
  8052. name: "Front",
  8053. image: {
  8054. source: "./media/characters/katherine/front.svg",
  8055. extra: 2075 / 1969
  8056. }
  8057. },
  8058. dress: {
  8059. height: math.unit(5 + 2 / 12, "feet"),
  8060. weight: math.unit(120, "lbs"),
  8061. name: "Dress",
  8062. image: {
  8063. source: "./media/characters/katherine/dress.svg",
  8064. extra: 2258 / 2064
  8065. }
  8066. },
  8067. },
  8068. [
  8069. {
  8070. name: "Micro",
  8071. height: math.unit(1, "inches"),
  8072. default: true
  8073. },
  8074. {
  8075. name: "Normal",
  8076. height: math.unit(5 + 2 / 12, "feet")
  8077. },
  8078. {
  8079. name: "Macro",
  8080. height: math.unit(100, "meters")
  8081. },
  8082. {
  8083. name: "Megamacro",
  8084. height: math.unit(80, "miles")
  8085. },
  8086. ]
  8087. ))
  8088. characterMakers.push(() => makeCharacter(
  8089. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8090. {
  8091. front: {
  8092. height: math.unit(7 + 8 / 12, "feet"),
  8093. weight: math.unit(250, "lbs"),
  8094. name: "Front",
  8095. image: {
  8096. source: "./media/characters/yevis/front.svg",
  8097. extra: 1938 / 1755
  8098. }
  8099. }
  8100. },
  8101. [
  8102. {
  8103. name: "Mortal",
  8104. height: math.unit(7 + 8 / 12, "feet")
  8105. },
  8106. {
  8107. name: "Battle",
  8108. height: math.unit(25 + 11 / 12, "feet")
  8109. },
  8110. {
  8111. name: "Wrath",
  8112. height: math.unit(1654 + 11 / 12, "feet")
  8113. },
  8114. {
  8115. name: "Planet Destroyer",
  8116. height: math.unit(12000, "miles")
  8117. },
  8118. {
  8119. name: "Galaxy Conqueror",
  8120. height: math.unit(1.45, "zettameters"),
  8121. default: true
  8122. },
  8123. {
  8124. name: "Universal War",
  8125. height: math.unit(184, "gigaparsecs")
  8126. },
  8127. {
  8128. name: "Eternity War",
  8129. height: math.unit(1.98e55, "yottaparsecs")
  8130. },
  8131. ]
  8132. ))
  8133. characterMakers.push(() => makeCharacter(
  8134. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8135. {
  8136. front: {
  8137. height: math.unit(5 + 8 / 12, "feet"),
  8138. weight: math.unit(63, "kg"),
  8139. name: "Front",
  8140. image: {
  8141. source: "./media/characters/xavier/front.svg",
  8142. extra: 944 / 883
  8143. }
  8144. },
  8145. frontStretch: {
  8146. height: math.unit(5 + 8 / 12, "feet"),
  8147. weight: math.unit(63, "kg"),
  8148. name: "Stretching",
  8149. image: {
  8150. source: "./media/characters/xavier/front-stretch.svg",
  8151. extra: 962 / 820
  8152. }
  8153. },
  8154. },
  8155. [
  8156. {
  8157. name: "Normal",
  8158. height: math.unit(5 + 8 / 12, "feet")
  8159. },
  8160. {
  8161. name: "Macro",
  8162. height: math.unit(100, "meters"),
  8163. default: true
  8164. },
  8165. {
  8166. name: "McLargeHuge",
  8167. height: math.unit(10, "miles")
  8168. },
  8169. ]
  8170. ))
  8171. characterMakers.push(() => makeCharacter(
  8172. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8173. {
  8174. front: {
  8175. height: math.unit(5 + 5 / 12, "feet"),
  8176. weight: math.unit(150, "lb"),
  8177. name: "Front",
  8178. image: {
  8179. source: "./media/characters/joshii/front.svg",
  8180. extra: 765 / 653,
  8181. bottom: 51 / 816
  8182. }
  8183. },
  8184. foot: {
  8185. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8186. name: "Foot",
  8187. image: {
  8188. source: "./media/characters/joshii/foot.svg"
  8189. }
  8190. },
  8191. },
  8192. [
  8193. {
  8194. name: "Micro",
  8195. height: math.unit(2, "inches"),
  8196. default: true
  8197. },
  8198. {
  8199. name: "Normal",
  8200. height: math.unit(5 + 5 / 12, "feet")
  8201. },
  8202. {
  8203. name: "Macro",
  8204. height: math.unit(785, "feet")
  8205. },
  8206. {
  8207. name: "Megamacro",
  8208. height: math.unit(24.5, "miles")
  8209. },
  8210. ]
  8211. ))
  8212. characterMakers.push(() => makeCharacter(
  8213. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8214. {
  8215. front: {
  8216. height: math.unit(6, "feet"),
  8217. weight: math.unit(150, "lb"),
  8218. name: "Front",
  8219. image: {
  8220. source: "./media/characters/goddess-elizabeth/front.svg",
  8221. extra: 1800 / 1525,
  8222. bottom: 0.005
  8223. }
  8224. },
  8225. foot: {
  8226. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8227. name: "Foot",
  8228. image: {
  8229. source: "./media/characters/goddess-elizabeth/foot.svg"
  8230. }
  8231. },
  8232. mouth: {
  8233. height: math.unit(6, "feet"),
  8234. name: "Mouth",
  8235. image: {
  8236. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8237. }
  8238. },
  8239. },
  8240. [
  8241. {
  8242. name: "Micro",
  8243. height: math.unit(12, "feet")
  8244. },
  8245. {
  8246. name: "Normal",
  8247. height: math.unit(80, "miles"),
  8248. default: true
  8249. },
  8250. {
  8251. name: "Macro",
  8252. height: math.unit(15000, "parsecs")
  8253. },
  8254. ]
  8255. ))
  8256. characterMakers.push(() => makeCharacter(
  8257. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8258. {
  8259. front: {
  8260. height: math.unit(5 + 9 / 12, "feet"),
  8261. weight: math.unit(144, "lb"),
  8262. name: "Front",
  8263. image: {
  8264. source: "./media/characters/kara/front.svg"
  8265. }
  8266. },
  8267. feet: {
  8268. height: math.unit(6 / 6.765, "feet"),
  8269. name: "Kara's Feet",
  8270. rename: true,
  8271. image: {
  8272. source: "./media/characters/kara/feet.svg"
  8273. }
  8274. },
  8275. },
  8276. [
  8277. {
  8278. name: "Normal",
  8279. height: math.unit(5 + 9 / 12, "feet")
  8280. },
  8281. {
  8282. name: "Macro",
  8283. height: math.unit(174, "feet"),
  8284. default: true
  8285. },
  8286. ]
  8287. ))
  8288. characterMakers.push(() => makeCharacter(
  8289. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8290. {
  8291. front: {
  8292. height: math.unit(18, "feet"),
  8293. weight: math.unit(4050, "lb"),
  8294. name: "Front",
  8295. image: {
  8296. source: "./media/characters/tyrone/front.svg",
  8297. extra: 2405 / 2270,
  8298. bottom: 182 / 2587
  8299. }
  8300. },
  8301. },
  8302. [
  8303. {
  8304. name: "Normal",
  8305. height: math.unit(18, "feet"),
  8306. default: true
  8307. },
  8308. {
  8309. name: "Macro",
  8310. height: math.unit(300, "feet")
  8311. },
  8312. {
  8313. name: "Megamacro",
  8314. height: math.unit(15, "km")
  8315. },
  8316. {
  8317. name: "Gigamacro",
  8318. height: math.unit(500, "km")
  8319. },
  8320. {
  8321. name: "Teramacro",
  8322. height: math.unit(0.5, "gigameters")
  8323. },
  8324. {
  8325. name: "Omnimacro",
  8326. height: math.unit(1e252, "yottauniverse")
  8327. },
  8328. ]
  8329. ))
  8330. characterMakers.push(() => makeCharacter(
  8331. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8332. {
  8333. front: {
  8334. height: math.unit(7 + 8 / 12, "feet"),
  8335. weight: math.unit(120, "lb"),
  8336. name: "Front",
  8337. image: {
  8338. source: "./media/characters/danny/front.svg",
  8339. extra: 1490 / 1350
  8340. }
  8341. },
  8342. back: {
  8343. height: math.unit(7 + 8 / 12, "feet"),
  8344. weight: math.unit(120, "lb"),
  8345. name: "Back",
  8346. image: {
  8347. source: "./media/characters/danny/back.svg",
  8348. extra: 1490 / 1350
  8349. }
  8350. },
  8351. },
  8352. [
  8353. {
  8354. name: "Normal",
  8355. height: math.unit(7 + 8 / 12, "feet"),
  8356. default: true
  8357. },
  8358. ]
  8359. ))
  8360. characterMakers.push(() => makeCharacter(
  8361. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8362. {
  8363. front: {
  8364. height: math.unit(3.5, "inches"),
  8365. weight: math.unit(19, "grams"),
  8366. name: "Front",
  8367. image: {
  8368. source: "./media/characters/mallow/front.svg",
  8369. extra: 471 / 431
  8370. }
  8371. },
  8372. back: {
  8373. height: math.unit(3.5, "inches"),
  8374. weight: math.unit(19, "grams"),
  8375. name: "Back",
  8376. image: {
  8377. source: "./media/characters/mallow/back.svg",
  8378. extra: 471 / 431
  8379. }
  8380. },
  8381. },
  8382. [
  8383. {
  8384. name: "Normal",
  8385. height: math.unit(3.5, "inches"),
  8386. default: true
  8387. },
  8388. ]
  8389. ))
  8390. characterMakers.push(() => makeCharacter(
  8391. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8392. {
  8393. front: {
  8394. height: math.unit(9, "feet"),
  8395. weight: math.unit(230, "kg"),
  8396. name: "Front",
  8397. image: {
  8398. source: "./media/characters/starry-aqua/front.svg"
  8399. }
  8400. },
  8401. back: {
  8402. height: math.unit(9, "feet"),
  8403. weight: math.unit(230, "kg"),
  8404. name: "Back",
  8405. image: {
  8406. source: "./media/characters/starry-aqua/back.svg"
  8407. }
  8408. },
  8409. hand: {
  8410. height: math.unit(9 * 0.1168, "feet"),
  8411. name: "Hand",
  8412. image: {
  8413. source: "./media/characters/starry-aqua/hand.svg"
  8414. }
  8415. },
  8416. foot: {
  8417. height: math.unit(9 * 0.18, "feet"),
  8418. name: "Foot",
  8419. image: {
  8420. source: "./media/characters/starry-aqua/foot.svg"
  8421. }
  8422. }
  8423. },
  8424. [
  8425. {
  8426. name: "Micro",
  8427. height: math.unit(3, "inches")
  8428. },
  8429. {
  8430. name: "Normal",
  8431. height: math.unit(9, "feet")
  8432. },
  8433. {
  8434. name: "Macro",
  8435. height: math.unit(300, "feet"),
  8436. default: true
  8437. },
  8438. {
  8439. name: "Megamacro",
  8440. height: math.unit(3200, "feet")
  8441. }
  8442. ]
  8443. ))
  8444. characterMakers.push(() => makeCharacter(
  8445. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8446. {
  8447. front: {
  8448. height: math.unit(6, "feet"),
  8449. weight: math.unit(230, "lb"),
  8450. name: "Front",
  8451. image: {
  8452. source: "./media/characters/luka/front.svg",
  8453. extra: 1,
  8454. bottom: 0.025
  8455. }
  8456. },
  8457. },
  8458. [
  8459. {
  8460. name: "Normal",
  8461. height: math.unit(12 + 8 / 12, "feet"),
  8462. default: true
  8463. },
  8464. {
  8465. name: "Minimacro",
  8466. height: math.unit(20, "feet")
  8467. },
  8468. {
  8469. name: "Macro",
  8470. height: math.unit(250, "feet")
  8471. },
  8472. {
  8473. name: "Megamacro",
  8474. height: math.unit(5, "miles")
  8475. },
  8476. {
  8477. name: "Gigamacro",
  8478. height: math.unit(8000, "miles")
  8479. },
  8480. ]
  8481. ))
  8482. characterMakers.push(() => makeCharacter(
  8483. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8484. {
  8485. front: {
  8486. height: math.unit(6, "feet"),
  8487. weight: math.unit(150, "lb"),
  8488. name: "Front",
  8489. image: {
  8490. source: "./media/characters/natalie-nightring/front.svg",
  8491. extra: 1,
  8492. bottom: 0.06
  8493. }
  8494. },
  8495. },
  8496. [
  8497. {
  8498. name: "Uh Oh",
  8499. height: math.unit(0.1, "mm")
  8500. },
  8501. {
  8502. name: "Small",
  8503. height: math.unit(3, "inches")
  8504. },
  8505. {
  8506. name: "Human Scale",
  8507. height: math.unit(6, "feet")
  8508. },
  8509. {
  8510. name: "Librarian",
  8511. height: math.unit(50, "feet"),
  8512. default: true
  8513. },
  8514. {
  8515. name: "Immense",
  8516. height: math.unit(200, "miles")
  8517. },
  8518. ]
  8519. ))
  8520. characterMakers.push(() => makeCharacter(
  8521. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8522. {
  8523. front: {
  8524. height: math.unit(6, "feet"),
  8525. weight: math.unit(180, "lbs"),
  8526. name: "Front",
  8527. image: {
  8528. source: "./media/characters/danni-rosie/front.svg",
  8529. extra: 1260 / 1128,
  8530. bottom: 0.022
  8531. }
  8532. },
  8533. },
  8534. [
  8535. {
  8536. name: "Micro",
  8537. height: math.unit(2, "inches"),
  8538. default: true
  8539. },
  8540. ]
  8541. ))
  8542. characterMakers.push(() => makeCharacter(
  8543. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8544. {
  8545. front: {
  8546. height: math.unit(5 + 9 / 12, "feet"),
  8547. weight: math.unit(220, "lb"),
  8548. name: "Front",
  8549. image: {
  8550. source: "./media/characters/samantha-kruse/front.svg",
  8551. extra: (985 / 935),
  8552. bottom: 0.03
  8553. }
  8554. },
  8555. frontUndressed: {
  8556. height: math.unit(5 + 9 / 12, "feet"),
  8557. weight: math.unit(220, "lb"),
  8558. name: "Front (Undressed)",
  8559. image: {
  8560. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8561. extra: (973 / 923),
  8562. bottom: 0.025
  8563. }
  8564. },
  8565. fat: {
  8566. height: math.unit(5 + 9 / 12, "feet"),
  8567. weight: math.unit(900, "lb"),
  8568. name: "Front (Fat)",
  8569. image: {
  8570. source: "./media/characters/samantha-kruse/fat.svg",
  8571. extra: 2688 / 2561
  8572. }
  8573. },
  8574. },
  8575. [
  8576. {
  8577. name: "Normal",
  8578. height: math.unit(5 + 9 / 12, "feet"),
  8579. default: true
  8580. }
  8581. ]
  8582. ))
  8583. characterMakers.push(() => makeCharacter(
  8584. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8585. {
  8586. back: {
  8587. height: math.unit(5 + 4 / 12, "feet"),
  8588. weight: math.unit(4963, "lb"),
  8589. name: "Back",
  8590. image: {
  8591. source: "./media/characters/amelia-rosie/back.svg",
  8592. extra: 1113 / 963,
  8593. bottom: 0.01
  8594. }
  8595. },
  8596. },
  8597. [
  8598. {
  8599. name: "Level 0",
  8600. height: math.unit(5 + 4 / 12, "feet")
  8601. },
  8602. {
  8603. name: "Level 1",
  8604. height: math.unit(164597, "feet"),
  8605. default: true
  8606. },
  8607. {
  8608. name: "Level 2",
  8609. height: math.unit(956243, "miles")
  8610. },
  8611. {
  8612. name: "Level 3",
  8613. height: math.unit(29421709423, "miles")
  8614. },
  8615. {
  8616. name: "Level 4",
  8617. height: math.unit(154, "lightyears")
  8618. },
  8619. {
  8620. name: "Level 5",
  8621. height: math.unit(4738272, "lightyears")
  8622. },
  8623. {
  8624. name: "Level 6",
  8625. height: math.unit(145787152896, "lightyears")
  8626. },
  8627. ]
  8628. ))
  8629. characterMakers.push(() => makeCharacter(
  8630. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8631. {
  8632. front: {
  8633. height: math.unit(5 + 11 / 12, "feet"),
  8634. weight: math.unit(65, "kg"),
  8635. name: "Front",
  8636. image: {
  8637. source: "./media/characters/rook-kitara/front.svg",
  8638. extra: 1347 / 1274,
  8639. bottom: 0.005
  8640. }
  8641. },
  8642. },
  8643. [
  8644. {
  8645. name: "Totally Unfair",
  8646. height: math.unit(1.8, "mm")
  8647. },
  8648. {
  8649. name: "Lap Rookie",
  8650. height: math.unit(1.4, "feet")
  8651. },
  8652. {
  8653. name: "Normal",
  8654. height: math.unit(5 + 11 / 12, "feet"),
  8655. default: true
  8656. },
  8657. {
  8658. name: "How Did This Happen",
  8659. height: math.unit(80, "miles")
  8660. }
  8661. ]
  8662. ))
  8663. characterMakers.push(() => makeCharacter(
  8664. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8665. {
  8666. front: {
  8667. height: math.unit(7, "feet"),
  8668. weight: math.unit(300, "lb"),
  8669. name: "Front",
  8670. image: {
  8671. source: "./media/characters/pisces/front.svg",
  8672. extra: 2255 / 2115,
  8673. bottom: 0.03
  8674. }
  8675. },
  8676. back: {
  8677. height: math.unit(7, "feet"),
  8678. weight: math.unit(300, "lb"),
  8679. name: "Back",
  8680. image: {
  8681. source: "./media/characters/pisces/back.svg",
  8682. extra: 2146 / 2055,
  8683. bottom: 0.04
  8684. }
  8685. },
  8686. },
  8687. [
  8688. {
  8689. name: "Normal",
  8690. height: math.unit(7, "feet"),
  8691. default: true
  8692. },
  8693. {
  8694. name: "Swimming Pool",
  8695. height: math.unit(12.2, "meters")
  8696. },
  8697. {
  8698. name: "Olympic Swimming Pool",
  8699. height: math.unit(56.3, "meters")
  8700. },
  8701. {
  8702. name: "Lake Superior",
  8703. height: math.unit(93900, "meters")
  8704. },
  8705. {
  8706. name: "Mediterranean Sea",
  8707. height: math.unit(644457, "meters")
  8708. },
  8709. {
  8710. name: "World's Oceans",
  8711. height: math.unit(4567491, "meters")
  8712. },
  8713. ]
  8714. ))
  8715. characterMakers.push(() => makeCharacter(
  8716. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8717. {
  8718. front: {
  8719. height: math.unit(2.3, "meters"),
  8720. weight: math.unit(120, "kg"),
  8721. name: "Front",
  8722. image: {
  8723. source: "./media/characters/zelas/front.svg"
  8724. }
  8725. },
  8726. side: {
  8727. height: math.unit(2.3, "meters"),
  8728. weight: math.unit(120, "kg"),
  8729. name: "Side",
  8730. image: {
  8731. source: "./media/characters/zelas/side.svg"
  8732. }
  8733. },
  8734. back: {
  8735. height: math.unit(2.3, "meters"),
  8736. weight: math.unit(120, "kg"),
  8737. name: "Back",
  8738. image: {
  8739. source: "./media/characters/zelas/back.svg"
  8740. }
  8741. },
  8742. foot: {
  8743. height: math.unit(1.116, "feet"),
  8744. name: "Foot",
  8745. image: {
  8746. source: "./media/characters/zelas/foot.svg"
  8747. }
  8748. },
  8749. },
  8750. [
  8751. {
  8752. name: "Normal",
  8753. height: math.unit(2.3, "meters")
  8754. },
  8755. {
  8756. name: "Macro",
  8757. height: math.unit(30, "meters"),
  8758. default: true
  8759. },
  8760. ]
  8761. ))
  8762. characterMakers.push(() => makeCharacter(
  8763. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8764. {
  8765. front: {
  8766. height: math.unit(1, "inch"),
  8767. weight: math.unit(0.21, "grams"),
  8768. name: "Front",
  8769. image: {
  8770. source: "./media/characters/talbot/front.svg",
  8771. extra: 594 / 544
  8772. }
  8773. },
  8774. },
  8775. [
  8776. {
  8777. name: "Micro",
  8778. height: math.unit(1, "inch"),
  8779. default: true
  8780. },
  8781. ]
  8782. ))
  8783. characterMakers.push(() => makeCharacter(
  8784. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8785. {
  8786. front: {
  8787. height: math.unit(3 + 3 / 12, "feet"),
  8788. weight: math.unit(51.8, "lb"),
  8789. name: "Front",
  8790. image: {
  8791. source: "./media/characters/fliss/front.svg",
  8792. extra: 840 / 640
  8793. }
  8794. },
  8795. },
  8796. [
  8797. {
  8798. name: "Teeny Tiny",
  8799. height: math.unit(1, "mm")
  8800. },
  8801. {
  8802. name: "Small",
  8803. height: math.unit(1, "inch"),
  8804. default: true
  8805. },
  8806. {
  8807. name: "Standard Sylveon",
  8808. height: math.unit(3 + 3 / 12, "feet")
  8809. },
  8810. {
  8811. name: "Large Nuisance",
  8812. height: math.unit(33, "feet")
  8813. },
  8814. {
  8815. name: "City Filler",
  8816. height: math.unit(3000, "feet")
  8817. },
  8818. {
  8819. name: "New Horizon",
  8820. height: math.unit(6000, "miles")
  8821. },
  8822. ]
  8823. ))
  8824. characterMakers.push(() => makeCharacter(
  8825. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8826. {
  8827. front: {
  8828. height: math.unit(5, "cm"),
  8829. weight: math.unit(1.94, "g"),
  8830. name: "Front",
  8831. image: {
  8832. source: "./media/characters/fleta/front.svg",
  8833. extra: 835 / 803
  8834. }
  8835. },
  8836. back: {
  8837. height: math.unit(5, "cm"),
  8838. weight: math.unit(1.94, "g"),
  8839. name: "Back",
  8840. image: {
  8841. source: "./media/characters/fleta/back.svg",
  8842. extra: 835 / 803
  8843. }
  8844. },
  8845. },
  8846. [
  8847. {
  8848. name: "Micro",
  8849. height: math.unit(5, "cm"),
  8850. default: true
  8851. },
  8852. ]
  8853. ))
  8854. characterMakers.push(() => makeCharacter(
  8855. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8856. {
  8857. front: {
  8858. height: math.unit(6, "feet"),
  8859. weight: math.unit(225, "lb"),
  8860. name: "Front",
  8861. image: {
  8862. source: "./media/characters/dominic/front.svg",
  8863. extra: 1770 / 1620,
  8864. bottom: 0.025
  8865. }
  8866. },
  8867. back: {
  8868. height: math.unit(6, "feet"),
  8869. weight: math.unit(225, "lb"),
  8870. name: "Back",
  8871. image: {
  8872. source: "./media/characters/dominic/back.svg",
  8873. extra: 1745 / 1620,
  8874. bottom: 0.065
  8875. }
  8876. },
  8877. },
  8878. [
  8879. {
  8880. name: "Nano",
  8881. height: math.unit(0.1, "mm")
  8882. },
  8883. {
  8884. name: "Micro-",
  8885. height: math.unit(1, "mm")
  8886. },
  8887. {
  8888. name: "Micro",
  8889. height: math.unit(4, "inches")
  8890. },
  8891. {
  8892. name: "Normal",
  8893. height: math.unit(6 + 4 / 12, "feet"),
  8894. default: true
  8895. },
  8896. {
  8897. name: "Macro",
  8898. height: math.unit(115, "feet")
  8899. },
  8900. {
  8901. name: "Macro+",
  8902. height: math.unit(955, "feet")
  8903. },
  8904. {
  8905. name: "Megamacro",
  8906. height: math.unit(8990, "feet")
  8907. },
  8908. {
  8909. name: "Gigmacro",
  8910. height: math.unit(9310, "miles")
  8911. },
  8912. {
  8913. name: "Teramacro",
  8914. height: math.unit(1567005010, "miles")
  8915. },
  8916. {
  8917. name: "Examacro",
  8918. height: math.unit(1425, "parsecs")
  8919. },
  8920. ]
  8921. ))
  8922. characterMakers.push(() => makeCharacter(
  8923. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8924. {
  8925. front: {
  8926. height: math.unit(400, "feet"),
  8927. weight: math.unit(44444444, "lb"),
  8928. name: "Front",
  8929. image: {
  8930. source: "./media/characters/major-colonel/front.svg"
  8931. }
  8932. },
  8933. back: {
  8934. height: math.unit(400, "feet"),
  8935. weight: math.unit(44444444, "lb"),
  8936. name: "Back",
  8937. image: {
  8938. source: "./media/characters/major-colonel/back.svg"
  8939. }
  8940. },
  8941. },
  8942. [
  8943. {
  8944. name: "Macro",
  8945. height: math.unit(400, "feet"),
  8946. default: true
  8947. },
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8952. {
  8953. catFront: {
  8954. height: math.unit(6, "feet"),
  8955. weight: math.unit(120, "lb"),
  8956. name: "Front (Cat Side)",
  8957. image: {
  8958. source: "./media/characters/axel-lycan/cat-front.svg",
  8959. extra: 430 / 402,
  8960. bottom: 43 / 472.35
  8961. }
  8962. },
  8963. catBack: {
  8964. height: math.unit(6, "feet"),
  8965. weight: math.unit(120, "lb"),
  8966. name: "Back (Cat Side)",
  8967. image: {
  8968. source: "./media/characters/axel-lycan/cat-back.svg",
  8969. extra: 447 / 419,
  8970. bottom: 23.3 / 469
  8971. }
  8972. },
  8973. wolfFront: {
  8974. height: math.unit(6, "feet"),
  8975. weight: math.unit(120, "lb"),
  8976. name: "Front (Wolf Side)",
  8977. image: {
  8978. source: "./media/characters/axel-lycan/wolf-front.svg",
  8979. extra: 485 / 456,
  8980. bottom: 19 / 504
  8981. }
  8982. },
  8983. wolfBack: {
  8984. height: math.unit(6, "feet"),
  8985. weight: math.unit(120, "lb"),
  8986. name: "Back (Wolf Side)",
  8987. image: {
  8988. source: "./media/characters/axel-lycan/wolf-back.svg",
  8989. extra: 475 / 438,
  8990. bottom: 39.2 / 514
  8991. }
  8992. },
  8993. },
  8994. [
  8995. {
  8996. name: "Macro",
  8997. height: math.unit(1, "km"),
  8998. default: true
  8999. },
  9000. ]
  9001. ))
  9002. characterMakers.push(() => makeCharacter(
  9003. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9004. {
  9005. front: {
  9006. height: math.unit(5 + 9 / 12, "feet"),
  9007. weight: math.unit(175, "lb"),
  9008. name: "Front",
  9009. image: {
  9010. source: "./media/characters/vanrel-hyena/front.svg",
  9011. extra: 1086 / 1010,
  9012. bottom: 0.04
  9013. }
  9014. },
  9015. },
  9016. [
  9017. {
  9018. name: "Normal",
  9019. height: math.unit(5 + 9 / 12, "feet"),
  9020. default: true
  9021. },
  9022. ]
  9023. ))
  9024. characterMakers.push(() => makeCharacter(
  9025. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9026. {
  9027. front: {
  9028. height: math.unit(6, "feet"),
  9029. weight: math.unit(103, "lb"),
  9030. name: "Front",
  9031. image: {
  9032. source: "./media/characters/abbott-absol/front.svg",
  9033. extra: 2010 / 1842
  9034. }
  9035. },
  9036. },
  9037. [
  9038. {
  9039. name: "Megamicro",
  9040. height: math.unit(0.1, "mm")
  9041. },
  9042. {
  9043. name: "Micro",
  9044. height: math.unit(1, "inch")
  9045. },
  9046. {
  9047. name: "Normal",
  9048. height: math.unit(6, "feet"),
  9049. default: true
  9050. },
  9051. ]
  9052. ))
  9053. characterMakers.push(() => makeCharacter(
  9054. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9055. {
  9056. front: {
  9057. height: math.unit(6, "feet"),
  9058. weight: math.unit(264, "lb"),
  9059. name: "Front",
  9060. image: {
  9061. source: "./media/characters/hector/front.svg",
  9062. extra: 2280 / 2130,
  9063. bottom: 0.07
  9064. }
  9065. },
  9066. },
  9067. [
  9068. {
  9069. name: "Normal",
  9070. height: math.unit(12.25, "foot"),
  9071. default: true
  9072. },
  9073. {
  9074. name: "Macro",
  9075. height: math.unit(160, "feet")
  9076. },
  9077. ]
  9078. ))
  9079. characterMakers.push(() => makeCharacter(
  9080. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9081. {
  9082. front: {
  9083. height: math.unit(6, "feet"),
  9084. weight: math.unit(150, "lb"),
  9085. name: "Front",
  9086. image: {
  9087. source: "./media/characters/sal/front.svg",
  9088. extra: 1846 / 1699,
  9089. bottom: 0.04
  9090. }
  9091. },
  9092. },
  9093. [
  9094. {
  9095. name: "Megamacro",
  9096. height: math.unit(10, "miles"),
  9097. default: true
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9103. {
  9104. front: {
  9105. height: math.unit(3, "meters"),
  9106. weight: math.unit(450, "kg"),
  9107. name: "front",
  9108. image: {
  9109. source: "./media/characters/ranger/front.svg",
  9110. extra: 2401 / 2243,
  9111. bottom: 0.05
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(3, "meters"),
  9119. default: true
  9120. },
  9121. ]
  9122. ))
  9123. characterMakers.push(() => makeCharacter(
  9124. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9125. {
  9126. front: {
  9127. height: math.unit(14, "feet"),
  9128. weight: math.unit(800, "kg"),
  9129. name: "Front",
  9130. image: {
  9131. source: "./media/characters/theresa/front.svg",
  9132. extra: 3575 / 3346,
  9133. bottom: 0.03
  9134. }
  9135. },
  9136. },
  9137. [
  9138. {
  9139. name: "Normal",
  9140. height: math.unit(14, "feet"),
  9141. default: true
  9142. },
  9143. ]
  9144. ))
  9145. characterMakers.push(() => makeCharacter(
  9146. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9147. {
  9148. front: {
  9149. height: math.unit(6, "feet"),
  9150. weight: math.unit(3, "kg"),
  9151. name: "Front",
  9152. image: {
  9153. source: "./media/characters/ine/front.svg",
  9154. extra: 678 / 539,
  9155. bottom: 0.023
  9156. }
  9157. },
  9158. },
  9159. [
  9160. {
  9161. name: "Normal",
  9162. height: math.unit(2.265, "feet"),
  9163. default: true
  9164. },
  9165. ]
  9166. ))
  9167. characterMakers.push(() => makeCharacter(
  9168. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9169. {
  9170. front: {
  9171. height: math.unit(5, "feet"),
  9172. weight: math.unit(30, "kg"),
  9173. name: "Front",
  9174. image: {
  9175. source: "./media/characters/vial/front.svg",
  9176. extra: 1365 / 1277,
  9177. bottom: 0.04
  9178. }
  9179. },
  9180. },
  9181. [
  9182. {
  9183. name: "Normal",
  9184. height: math.unit(5, "feet"),
  9185. default: true
  9186. },
  9187. ]
  9188. ))
  9189. characterMakers.push(() => makeCharacter(
  9190. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9191. {
  9192. side: {
  9193. height: math.unit(3.4, "meters"),
  9194. weight: math.unit(1000, "lb"),
  9195. name: "Side",
  9196. image: {
  9197. source: "./media/characters/rovoska/side.svg",
  9198. extra: 4403 / 1515
  9199. }
  9200. },
  9201. },
  9202. [
  9203. {
  9204. name: "Normal",
  9205. height: math.unit(3.4, "meters"),
  9206. default: true
  9207. },
  9208. ]
  9209. ))
  9210. characterMakers.push(() => makeCharacter(
  9211. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9212. {
  9213. front: {
  9214. height: math.unit(8, "feet"),
  9215. weight: math.unit(315, "lb"),
  9216. name: "Front",
  9217. image: {
  9218. source: "./media/characters/gunner-rotthbauer/front.svg"
  9219. }
  9220. },
  9221. back: {
  9222. height: math.unit(8, "feet"),
  9223. weight: math.unit(315, "lb"),
  9224. name: "Back",
  9225. image: {
  9226. source: "./media/characters/gunner-rotthbauer/back.svg"
  9227. }
  9228. },
  9229. },
  9230. [
  9231. {
  9232. name: "Micro",
  9233. height: math.unit(3.5, "inches")
  9234. },
  9235. {
  9236. name: "Normal",
  9237. height: math.unit(8, "feet"),
  9238. default: true
  9239. },
  9240. {
  9241. name: "Macro",
  9242. height: math.unit(250, "feet")
  9243. },
  9244. {
  9245. name: "Megamacro",
  9246. height: math.unit(1, "AU")
  9247. },
  9248. ]
  9249. ))
  9250. characterMakers.push(() => makeCharacter(
  9251. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9252. {
  9253. front: {
  9254. height: math.unit(5 + 5 / 12, "feet"),
  9255. weight: math.unit(140, "lb"),
  9256. name: "Front",
  9257. image: {
  9258. source: "./media/characters/allatia/front.svg",
  9259. extra: 1227 / 1180,
  9260. bottom: 0.027
  9261. }
  9262. },
  9263. },
  9264. [
  9265. {
  9266. name: "Normal",
  9267. height: math.unit(5 + 5 / 12, "feet")
  9268. },
  9269. {
  9270. name: "Macro",
  9271. height: math.unit(250, "feet"),
  9272. default: true
  9273. },
  9274. {
  9275. name: "Megamacro",
  9276. height: math.unit(8, "miles")
  9277. }
  9278. ]
  9279. ))
  9280. characterMakers.push(() => makeCharacter(
  9281. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9282. {
  9283. front: {
  9284. height: math.unit(6, "feet"),
  9285. weight: math.unit(120, "lb"),
  9286. name: "Front",
  9287. image: {
  9288. source: "./media/characters/tene/front.svg",
  9289. extra: 1728 / 1578,
  9290. bottom: 0.022
  9291. }
  9292. },
  9293. stomping: {
  9294. height: math.unit(2.025, "meters"),
  9295. weight: math.unit(120, "lb"),
  9296. name: "Stomping",
  9297. image: {
  9298. source: "./media/characters/tene/stomping.svg",
  9299. extra: 938 / 873,
  9300. bottom: 0.01
  9301. }
  9302. },
  9303. sitting: {
  9304. height: math.unit(1, "meter"),
  9305. weight: math.unit(120, "lb"),
  9306. name: "Sitting",
  9307. image: {
  9308. source: "./media/characters/tene/sitting.svg",
  9309. extra: 437 / 415,
  9310. bottom: 0.1
  9311. }
  9312. },
  9313. feral: {
  9314. height: math.unit(3.9, "feet"),
  9315. weight: math.unit(250, "lb"),
  9316. name: "Feral",
  9317. image: {
  9318. source: "./media/characters/tene/feral.svg",
  9319. extra: 717 / 458,
  9320. bottom: 0.179
  9321. }
  9322. },
  9323. },
  9324. [
  9325. {
  9326. name: "Normal",
  9327. height: math.unit(6, "feet")
  9328. },
  9329. {
  9330. name: "Macro",
  9331. height: math.unit(300, "feet"),
  9332. default: true
  9333. },
  9334. {
  9335. name: "Megamacro",
  9336. height: math.unit(5, "miles")
  9337. },
  9338. ]
  9339. ))
  9340. characterMakers.push(() => makeCharacter(
  9341. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9342. {
  9343. side: {
  9344. height: math.unit(6, "feet"),
  9345. name: "Side",
  9346. image: {
  9347. source: "./media/characters/evander/side.svg",
  9348. extra: 877 / 477
  9349. }
  9350. },
  9351. },
  9352. [
  9353. {
  9354. name: "Normal",
  9355. height: math.unit(0.83, "meters"),
  9356. default: true
  9357. },
  9358. ]
  9359. ))
  9360. characterMakers.push(() => makeCharacter(
  9361. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9362. {
  9363. front: {
  9364. height: math.unit(12, "feet"),
  9365. weight: math.unit(1000, "lb"),
  9366. name: "Front",
  9367. image: {
  9368. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9369. extra: 1762 / 1611
  9370. }
  9371. },
  9372. back: {
  9373. height: math.unit(12, "feet"),
  9374. weight: math.unit(1000, "lb"),
  9375. name: "Back",
  9376. image: {
  9377. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9378. extra: 1762 / 1611
  9379. }
  9380. },
  9381. },
  9382. [
  9383. {
  9384. name: "Normal",
  9385. height: math.unit(12, "feet"),
  9386. default: true
  9387. },
  9388. {
  9389. name: "Kaiju",
  9390. height: math.unit(150, "feet")
  9391. },
  9392. ]
  9393. ))
  9394. characterMakers.push(() => makeCharacter(
  9395. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9396. {
  9397. front: {
  9398. height: math.unit(6, "feet"),
  9399. weight: math.unit(150, "lb"),
  9400. name: "Front",
  9401. image: {
  9402. source: "./media/characters/zero-alurus/front.svg"
  9403. }
  9404. },
  9405. back: {
  9406. height: math.unit(6, "feet"),
  9407. weight: math.unit(150, "lb"),
  9408. name: "Back",
  9409. image: {
  9410. source: "./media/characters/zero-alurus/back.svg"
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Normal",
  9417. height: math.unit(5 + 10 / 12, "feet")
  9418. },
  9419. {
  9420. name: "Macro",
  9421. height: math.unit(60, "feet"),
  9422. default: true
  9423. },
  9424. {
  9425. name: "Macro+",
  9426. height: math.unit(450, "feet")
  9427. },
  9428. ]
  9429. ))
  9430. characterMakers.push(() => makeCharacter(
  9431. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9432. {
  9433. front: {
  9434. height: math.unit(6, "feet"),
  9435. weight: math.unit(200, "lb"),
  9436. name: "Front",
  9437. image: {
  9438. source: "./media/characters/mega-shi/front.svg",
  9439. extra: 1279 / 1250,
  9440. bottom: 0.02
  9441. }
  9442. },
  9443. back: {
  9444. height: math.unit(6, "feet"),
  9445. weight: math.unit(200, "lb"),
  9446. name: "Back",
  9447. image: {
  9448. source: "./media/characters/mega-shi/back.svg",
  9449. extra: 1279 / 1250,
  9450. bottom: 0.02
  9451. }
  9452. },
  9453. },
  9454. [
  9455. {
  9456. name: "Micro",
  9457. height: math.unit(16 + 6 / 12, "feet")
  9458. },
  9459. {
  9460. name: "Third Dimension",
  9461. height: math.unit(40, "meters")
  9462. },
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(660, "feet"),
  9466. default: true
  9467. },
  9468. {
  9469. name: "Megamacro",
  9470. height: math.unit(10, "miles")
  9471. },
  9472. {
  9473. name: "Planetary Launch",
  9474. height: math.unit(500, "miles")
  9475. },
  9476. {
  9477. name: "Interstellar",
  9478. height: math.unit(1e9, "miles")
  9479. },
  9480. {
  9481. name: "Leaving the Universe",
  9482. height: math.unit(1, "gigaparsec")
  9483. },
  9484. {
  9485. name: "Travelling Universes",
  9486. height: math.unit(30e15, "parsecs")
  9487. },
  9488. ]
  9489. ))
  9490. characterMakers.push(() => makeCharacter(
  9491. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9492. {
  9493. front: {
  9494. height: math.unit(6, "feet"),
  9495. weight: math.unit(150, "lb"),
  9496. name: "Front",
  9497. image: {
  9498. source: "./media/characters/odyssey/front.svg",
  9499. extra: 1782 / 1582,
  9500. bottom: 0.01
  9501. }
  9502. },
  9503. side: {
  9504. height: math.unit(5.7, "feet"),
  9505. weight: math.unit(140, "lb"),
  9506. name: "Side",
  9507. image: {
  9508. source: "./media/characters/odyssey/side.svg",
  9509. extra: 6462 / 5700
  9510. }
  9511. },
  9512. },
  9513. [
  9514. {
  9515. name: "Normal",
  9516. height: math.unit(5 + 4 / 12, "feet")
  9517. },
  9518. {
  9519. name: "Macro",
  9520. height: math.unit(1, "km")
  9521. },
  9522. {
  9523. name: "Megamacro",
  9524. height: math.unit(3000, "km")
  9525. },
  9526. {
  9527. name: "Gigamacro",
  9528. height: math.unit(1, "AU"),
  9529. default: true
  9530. },
  9531. {
  9532. name: "Omniversal",
  9533. height: math.unit(100e14, "lightyears")
  9534. },
  9535. ]
  9536. ))
  9537. characterMakers.push(() => makeCharacter(
  9538. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9539. {
  9540. front: {
  9541. height: math.unit(6, "feet"),
  9542. weight: math.unit(300, "lb"),
  9543. name: "Front",
  9544. image: {
  9545. source: "./media/characters/mekuto/front.svg",
  9546. extra: 921 / 832,
  9547. bottom: 0.03
  9548. }
  9549. },
  9550. hand: {
  9551. height: math.unit(6 / 10.24, "feet"),
  9552. name: "Hand",
  9553. image: {
  9554. source: "./media/characters/mekuto/hand.svg"
  9555. }
  9556. },
  9557. foot: {
  9558. height: math.unit(6 / 5.05, "feet"),
  9559. name: "Foot",
  9560. image: {
  9561. source: "./media/characters/mekuto/foot.svg"
  9562. }
  9563. },
  9564. },
  9565. [
  9566. {
  9567. name: "Minimicro",
  9568. height: math.unit(0.2, "inches")
  9569. },
  9570. {
  9571. name: "Micro",
  9572. height: math.unit(1.5, "inches")
  9573. },
  9574. {
  9575. name: "Normal",
  9576. height: math.unit(5 + 11 / 12, "feet"),
  9577. default: true
  9578. },
  9579. {
  9580. name: "Minimacro",
  9581. height: math.unit(17 + 9 / 12, "feet")
  9582. },
  9583. {
  9584. name: "Macro",
  9585. height: math.unit(177.5, "feet")
  9586. },
  9587. {
  9588. name: "Megamacro",
  9589. height: math.unit(152, "miles")
  9590. },
  9591. ]
  9592. ))
  9593. characterMakers.push(() => makeCharacter(
  9594. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9595. {
  9596. front: {
  9597. height: math.unit(6.5, "inches"),
  9598. weight: math.unit(13, "oz"),
  9599. name: "Front",
  9600. image: {
  9601. source: "./media/characters/dafydd-tomos/front.svg",
  9602. extra: 2990 / 2603,
  9603. bottom: 0.03
  9604. }
  9605. },
  9606. },
  9607. [
  9608. {
  9609. name: "Micro",
  9610. height: math.unit(6.5, "inches"),
  9611. default: true
  9612. },
  9613. ]
  9614. ))
  9615. characterMakers.push(() => makeCharacter(
  9616. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9617. {
  9618. front: {
  9619. height: math.unit(6, "feet"),
  9620. weight: math.unit(150, "lb"),
  9621. name: "Front",
  9622. image: {
  9623. source: "./media/characters/splinter/front.svg",
  9624. extra: 2990 / 2882,
  9625. bottom: 0.04
  9626. }
  9627. },
  9628. back: {
  9629. height: math.unit(6, "feet"),
  9630. weight: math.unit(150, "lb"),
  9631. name: "Back",
  9632. image: {
  9633. source: "./media/characters/splinter/back.svg",
  9634. extra: 2990 / 2882,
  9635. bottom: 0.04
  9636. }
  9637. },
  9638. },
  9639. [
  9640. {
  9641. name: "Normal",
  9642. height: math.unit(6, "feet")
  9643. },
  9644. {
  9645. name: "Macro",
  9646. height: math.unit(230, "meters"),
  9647. default: true
  9648. },
  9649. ]
  9650. ))
  9651. characterMakers.push(() => makeCharacter(
  9652. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9653. {
  9654. front: {
  9655. height: math.unit(4 + 10 / 12, "feet"),
  9656. weight: math.unit(480, "lb"),
  9657. name: "Front",
  9658. image: {
  9659. source: "./media/characters/snow-gabumon/front.svg",
  9660. extra: 1140 / 963,
  9661. bottom: 0.058
  9662. }
  9663. },
  9664. back: {
  9665. height: math.unit(4 + 10 / 12, "feet"),
  9666. weight: math.unit(480, "lb"),
  9667. name: "Back",
  9668. image: {
  9669. source: "./media/characters/snow-gabumon/back.svg",
  9670. extra: 1115 / 962,
  9671. bottom: 0.041
  9672. }
  9673. },
  9674. frontUndresed: {
  9675. height: math.unit(4 + 10 / 12, "feet"),
  9676. weight: math.unit(480, "lb"),
  9677. name: "Front (Undressed)",
  9678. image: {
  9679. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9680. extra: 1061 / 960,
  9681. bottom: 0.045
  9682. }
  9683. },
  9684. },
  9685. [
  9686. {
  9687. name: "Micro",
  9688. height: math.unit(1, "inch")
  9689. },
  9690. {
  9691. name: "Normal",
  9692. height: math.unit(4 + 10 / 12, "feet"),
  9693. default: true
  9694. },
  9695. {
  9696. name: "Macro",
  9697. height: math.unit(200, "feet")
  9698. },
  9699. {
  9700. name: "Megamacro",
  9701. height: math.unit(120, "miles")
  9702. },
  9703. {
  9704. name: "Gigamacro",
  9705. height: math.unit(9800, "miles")
  9706. },
  9707. ]
  9708. ))
  9709. characterMakers.push(() => makeCharacter(
  9710. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9711. {
  9712. front: {
  9713. height: math.unit(1.7, "meters"),
  9714. weight: math.unit(140, "lb"),
  9715. name: "Front",
  9716. image: {
  9717. source: "./media/characters/moody/front.svg",
  9718. extra: 3226 / 3007,
  9719. bottom: 0.087
  9720. }
  9721. },
  9722. },
  9723. [
  9724. {
  9725. name: "Micro",
  9726. height: math.unit(1, "mm")
  9727. },
  9728. {
  9729. name: "Normal",
  9730. height: math.unit(1.7, "meters"),
  9731. default: true
  9732. },
  9733. {
  9734. name: "Macro",
  9735. height: math.unit(80, "meters")
  9736. },
  9737. {
  9738. name: "Macro+",
  9739. height: math.unit(500, "meters")
  9740. },
  9741. ]
  9742. ))
  9743. characterMakers.push(() => makeCharacter(
  9744. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9745. {
  9746. front: {
  9747. height: math.unit(6, "feet"),
  9748. weight: math.unit(150, "lb"),
  9749. name: "Front",
  9750. image: {
  9751. source: "./media/characters/zyas/front.svg",
  9752. extra: 1180 / 1120,
  9753. bottom: 0.045
  9754. }
  9755. },
  9756. },
  9757. [
  9758. {
  9759. name: "Normal",
  9760. height: math.unit(10, "feet"),
  9761. default: true
  9762. },
  9763. {
  9764. name: "Macro",
  9765. height: math.unit(500, "feet")
  9766. },
  9767. {
  9768. name: "Megamacro",
  9769. height: math.unit(5, "miles")
  9770. },
  9771. {
  9772. name: "Teramacro",
  9773. height: math.unit(150000, "miles")
  9774. },
  9775. ]
  9776. ))
  9777. characterMakers.push(() => makeCharacter(
  9778. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9779. {
  9780. front: {
  9781. height: math.unit(6, "feet"),
  9782. weight: math.unit(150, "lb"),
  9783. name: "Front",
  9784. image: {
  9785. source: "./media/characters/cuon/front.svg",
  9786. extra: 1390 / 1320,
  9787. bottom: 0.008
  9788. }
  9789. },
  9790. },
  9791. [
  9792. {
  9793. name: "Micro",
  9794. height: math.unit(3, "inches")
  9795. },
  9796. {
  9797. name: "Normal",
  9798. height: math.unit(18 + 9 / 12, "feet"),
  9799. default: true
  9800. },
  9801. {
  9802. name: "Macro",
  9803. height: math.unit(360, "feet")
  9804. },
  9805. {
  9806. name: "Megamacro",
  9807. height: math.unit(360, "miles")
  9808. },
  9809. ]
  9810. ))
  9811. characterMakers.push(() => makeCharacter(
  9812. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9813. {
  9814. front: {
  9815. height: math.unit(2.4, "meters"),
  9816. weight: math.unit(70, "kg"),
  9817. name: "Front",
  9818. image: {
  9819. source: "./media/characters/nyanuxk/front.svg",
  9820. extra: 1172 / 1084,
  9821. bottom: 0.065
  9822. }
  9823. },
  9824. side: {
  9825. height: math.unit(2.4, "meters"),
  9826. weight: math.unit(70, "kg"),
  9827. name: "Side",
  9828. image: {
  9829. source: "./media/characters/nyanuxk/side.svg",
  9830. extra: 1190 / 1132,
  9831. bottom: 0.007
  9832. }
  9833. },
  9834. back: {
  9835. height: math.unit(2.4, "meters"),
  9836. weight: math.unit(70, "kg"),
  9837. name: "Back",
  9838. image: {
  9839. source: "./media/characters/nyanuxk/back.svg",
  9840. extra: 1200 / 1141,
  9841. bottom: 0.015
  9842. }
  9843. },
  9844. foot: {
  9845. height: math.unit(0.52, "meters"),
  9846. name: "Foot",
  9847. image: {
  9848. source: "./media/characters/nyanuxk/foot.svg"
  9849. }
  9850. },
  9851. },
  9852. [
  9853. {
  9854. name: "Micro",
  9855. height: math.unit(2, "cm")
  9856. },
  9857. {
  9858. name: "Normal",
  9859. height: math.unit(2.4, "meters"),
  9860. default: true
  9861. },
  9862. {
  9863. name: "Smaller Macro",
  9864. height: math.unit(120, "meters")
  9865. },
  9866. {
  9867. name: "Bigger Macro",
  9868. height: math.unit(1.2, "km")
  9869. },
  9870. {
  9871. name: "Megamacro",
  9872. height: math.unit(15, "kilometers")
  9873. },
  9874. {
  9875. name: "Gigamacro",
  9876. height: math.unit(2000, "km")
  9877. },
  9878. {
  9879. name: "Teramacro",
  9880. height: math.unit(500000, "km")
  9881. },
  9882. ]
  9883. ))
  9884. characterMakers.push(() => makeCharacter(
  9885. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9886. {
  9887. side: {
  9888. height: math.unit(6, "feet"),
  9889. name: "Side",
  9890. image: {
  9891. source: "./media/characters/ailbhe/side.svg",
  9892. extra: 757 / 464,
  9893. bottom: 0.041
  9894. }
  9895. },
  9896. },
  9897. [
  9898. {
  9899. name: "Normal",
  9900. height: math.unit(1.07, "meters"),
  9901. default: true
  9902. },
  9903. ]
  9904. ))
  9905. characterMakers.push(() => makeCharacter(
  9906. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9907. {
  9908. front: {
  9909. height: math.unit(6, "feet"),
  9910. weight: math.unit(120, "kg"),
  9911. name: "Front",
  9912. image: {
  9913. source: "./media/characters/zevulfius/front.svg",
  9914. extra: 965 / 903
  9915. }
  9916. },
  9917. side: {
  9918. height: math.unit(6, "feet"),
  9919. weight: math.unit(120, "kg"),
  9920. name: "Side",
  9921. image: {
  9922. source: "./media/characters/zevulfius/side.svg",
  9923. extra: 939 / 900
  9924. }
  9925. },
  9926. back: {
  9927. height: math.unit(6, "feet"),
  9928. weight: math.unit(120, "kg"),
  9929. name: "Back",
  9930. image: {
  9931. source: "./media/characters/zevulfius/back.svg",
  9932. extra: 918 / 854,
  9933. bottom: 0.005
  9934. }
  9935. },
  9936. foot: {
  9937. height: math.unit(6 / 3.72, "feet"),
  9938. name: "Foot",
  9939. image: {
  9940. source: "./media/characters/zevulfius/foot.svg"
  9941. }
  9942. },
  9943. },
  9944. [
  9945. {
  9946. name: "Macro",
  9947. height: math.unit(750, "meters")
  9948. },
  9949. {
  9950. name: "Megamacro",
  9951. height: math.unit(20, "km"),
  9952. default: true
  9953. },
  9954. {
  9955. name: "Gigamacro",
  9956. height: math.unit(2000, "km")
  9957. },
  9958. {
  9959. name: "Teramacro",
  9960. height: math.unit(250000, "km")
  9961. },
  9962. ]
  9963. ))
  9964. characterMakers.push(() => makeCharacter(
  9965. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9966. {
  9967. front: {
  9968. height: math.unit(100, "feet"),
  9969. weight: math.unit(350, "kg"),
  9970. name: "Front",
  9971. image: {
  9972. source: "./media/characters/rikes/front.svg",
  9973. extra: 1565 / 1483,
  9974. bottom: 0.017
  9975. }
  9976. },
  9977. },
  9978. [
  9979. {
  9980. name: "Macro",
  9981. height: math.unit(100, "feet"),
  9982. default: true
  9983. },
  9984. ]
  9985. ))
  9986. characterMakers.push(() => makeCharacter(
  9987. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  9988. {
  9989. anthro: {
  9990. height: math.unit(8, "feet"),
  9991. weight: math.unit(120, "kg"),
  9992. name: "Anthro",
  9993. image: {
  9994. source: "./media/characters/adam-silver-mane/anthro.svg",
  9995. extra: 5743 / 5339,
  9996. bottom: 0.07
  9997. }
  9998. },
  9999. taur: {
  10000. height: math.unit(16, "feet"),
  10001. weight: math.unit(1500, "kg"),
  10002. name: "Taur",
  10003. image: {
  10004. source: "./media/characters/adam-silver-mane/taur.svg",
  10005. extra: 1713 / 1571,
  10006. bottom: 0.01
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Normal",
  10013. height: math.unit(8, "feet")
  10014. },
  10015. {
  10016. name: "Minimacro",
  10017. height: math.unit(80, "feet")
  10018. },
  10019. {
  10020. name: "Macro",
  10021. height: math.unit(800, "feet"),
  10022. default: true
  10023. },
  10024. {
  10025. name: "Megamacro",
  10026. height: math.unit(8000, "feet")
  10027. },
  10028. {
  10029. name: "Gigamacro",
  10030. height: math.unit(800, "miles")
  10031. },
  10032. {
  10033. name: "Teramacro",
  10034. height: math.unit(80000, "miles")
  10035. },
  10036. {
  10037. name: "Celestial",
  10038. height: math.unit(8e6, "miles")
  10039. },
  10040. {
  10041. name: "Star Dragon",
  10042. height: math.unit(800000, "parsecs")
  10043. },
  10044. {
  10045. name: "Godly",
  10046. height: math.unit(800, "teraparsecs")
  10047. },
  10048. ]
  10049. ))
  10050. characterMakers.push(() => makeCharacter(
  10051. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10052. {
  10053. front: {
  10054. height: math.unit(6, "feet"),
  10055. weight: math.unit(150, "lb"),
  10056. name: "Front",
  10057. image: {
  10058. source: "./media/characters/ky'owin/front.svg",
  10059. extra: 3888 / 3068,
  10060. bottom: 0.015
  10061. }
  10062. },
  10063. },
  10064. [
  10065. {
  10066. name: "Normal",
  10067. height: math.unit(6 + 8 / 12, "feet")
  10068. },
  10069. {
  10070. name: "Large",
  10071. height: math.unit(68, "feet")
  10072. },
  10073. {
  10074. name: "Macro",
  10075. height: math.unit(132, "feet")
  10076. },
  10077. {
  10078. name: "Macro+",
  10079. height: math.unit(340, "feet")
  10080. },
  10081. {
  10082. name: "Macro++",
  10083. height: math.unit(680, "feet"),
  10084. default: true
  10085. },
  10086. {
  10087. name: "Megamacro",
  10088. height: math.unit(1, "mile")
  10089. },
  10090. {
  10091. name: "Megamacro+",
  10092. height: math.unit(10, "miles")
  10093. },
  10094. ]
  10095. ))
  10096. characterMakers.push(() => makeCharacter(
  10097. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10098. {
  10099. front: {
  10100. height: math.unit(4, "feet"),
  10101. weight: math.unit(50, "lb"),
  10102. name: "Front",
  10103. image: {
  10104. source: "./media/characters/mal/front.svg",
  10105. extra: 785 / 724,
  10106. bottom: 0.07
  10107. }
  10108. },
  10109. },
  10110. [
  10111. {
  10112. name: "Micro",
  10113. height: math.unit(4, "inches")
  10114. },
  10115. {
  10116. name: "Normal",
  10117. height: math.unit(4, "feet"),
  10118. default: true
  10119. },
  10120. {
  10121. name: "Macro",
  10122. height: math.unit(200, "feet")
  10123. },
  10124. ]
  10125. ))
  10126. characterMakers.push(() => makeCharacter(
  10127. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10128. {
  10129. front: {
  10130. height: math.unit(6, "feet"),
  10131. weight: math.unit(150, "lb"),
  10132. name: "Front",
  10133. image: {
  10134. source: "./media/characters/jordan-deware/front.svg",
  10135. extra: 1191 / 1012
  10136. }
  10137. },
  10138. },
  10139. [
  10140. {
  10141. name: "Nano",
  10142. height: math.unit(0.01, "mm")
  10143. },
  10144. {
  10145. name: "Minimicro",
  10146. height: math.unit(1, "mm")
  10147. },
  10148. {
  10149. name: "Micro",
  10150. height: math.unit(0.5, "inches")
  10151. },
  10152. {
  10153. name: "Normal",
  10154. height: math.unit(4, "feet"),
  10155. default: true
  10156. },
  10157. {
  10158. name: "Minimacro",
  10159. height: math.unit(40, "meters")
  10160. },
  10161. {
  10162. name: "Small Macro",
  10163. height: math.unit(400, "meters")
  10164. },
  10165. {
  10166. name: "Macro",
  10167. height: math.unit(4, "miles")
  10168. },
  10169. {
  10170. name: "Megamacro",
  10171. height: math.unit(40, "miles")
  10172. },
  10173. {
  10174. name: "Megamacro+",
  10175. height: math.unit(400, "miles")
  10176. },
  10177. {
  10178. name: "Gigamacro",
  10179. height: math.unit(400000, "miles")
  10180. },
  10181. ]
  10182. ))
  10183. characterMakers.push(() => makeCharacter(
  10184. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10185. {
  10186. side: {
  10187. height: math.unit(6, "feet"),
  10188. weight: math.unit(150, "lb"),
  10189. name: "Side",
  10190. image: {
  10191. source: "./media/characters/kimiko/side.svg",
  10192. extra: 600 / 358
  10193. }
  10194. },
  10195. },
  10196. [
  10197. {
  10198. name: "Normal",
  10199. height: math.unit(15, "feet"),
  10200. default: true
  10201. },
  10202. {
  10203. name: "Macro",
  10204. height: math.unit(220, "feet")
  10205. },
  10206. {
  10207. name: "Macro+",
  10208. height: math.unit(1450, "feet")
  10209. },
  10210. {
  10211. name: "Megamacro",
  10212. height: math.unit(11500, "feet")
  10213. },
  10214. {
  10215. name: "Gigamacro",
  10216. height: math.unit(9500, "miles")
  10217. },
  10218. {
  10219. name: "Teramacro",
  10220. height: math.unit(2208005005, "miles")
  10221. },
  10222. {
  10223. name: "Examacro",
  10224. height: math.unit(2750, "parsecs")
  10225. },
  10226. {
  10227. name: "Zettamacro",
  10228. height: math.unit(101500, "parsecs")
  10229. },
  10230. ]
  10231. ))
  10232. characterMakers.push(() => makeCharacter(
  10233. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10234. {
  10235. front: {
  10236. height: math.unit(6, "feet"),
  10237. weight: math.unit(70, "kg"),
  10238. name: "Front",
  10239. image: {
  10240. source: "./media/characters/andrew-sleepy/front.svg"
  10241. }
  10242. },
  10243. side: {
  10244. height: math.unit(6, "feet"),
  10245. weight: math.unit(70, "kg"),
  10246. name: "Side",
  10247. image: {
  10248. source: "./media/characters/andrew-sleepy/side.svg"
  10249. }
  10250. },
  10251. },
  10252. [
  10253. {
  10254. name: "Micro",
  10255. height: math.unit(1, "mm"),
  10256. default: true
  10257. },
  10258. ]
  10259. ))
  10260. characterMakers.push(() => makeCharacter(
  10261. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10262. {
  10263. front: {
  10264. height: math.unit(6, "feet"),
  10265. weight: math.unit(150, "lb"),
  10266. name: "Front",
  10267. image: {
  10268. source: "./media/characters/judio/front.svg",
  10269. extra: 1258 / 1110
  10270. }
  10271. },
  10272. },
  10273. [
  10274. {
  10275. name: "Normal",
  10276. height: math.unit(5 + 6 / 12, "feet")
  10277. },
  10278. {
  10279. name: "Macro",
  10280. height: math.unit(1000, "feet"),
  10281. default: true
  10282. },
  10283. {
  10284. name: "Megamacro",
  10285. height: math.unit(10, "miles")
  10286. },
  10287. ]
  10288. ))
  10289. characterMakers.push(() => makeCharacter(
  10290. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10291. {
  10292. front: {
  10293. height: math.unit(6, "feet"),
  10294. weight: math.unit(68, "kg"),
  10295. name: "Front",
  10296. image: {
  10297. source: "./media/characters/nomaxice/front.svg",
  10298. extra: 1498 / 1073,
  10299. bottom: 0.075
  10300. }
  10301. },
  10302. foot: {
  10303. height: math.unit(1.1, "feet"),
  10304. name: "Foot",
  10305. image: {
  10306. source: "./media/characters/nomaxice/foot.svg"
  10307. }
  10308. },
  10309. },
  10310. [
  10311. {
  10312. name: "Micro",
  10313. height: math.unit(8, "cm")
  10314. },
  10315. {
  10316. name: "Norm",
  10317. height: math.unit(1.82, "m")
  10318. },
  10319. {
  10320. name: "Norm+",
  10321. height: math.unit(8.8, "feet")
  10322. },
  10323. {
  10324. name: "Big",
  10325. height: math.unit(8, "meters"),
  10326. default: true
  10327. },
  10328. {
  10329. name: "Macro",
  10330. height: math.unit(18, "meters")
  10331. },
  10332. {
  10333. name: "Macro+",
  10334. height: math.unit(88, "meters")
  10335. },
  10336. ]
  10337. ))
  10338. characterMakers.push(() => makeCharacter(
  10339. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10340. {
  10341. front: {
  10342. height: math.unit(12, "feet"),
  10343. weight: math.unit(1.5, "tons"),
  10344. name: "Front",
  10345. image: {
  10346. source: "./media/characters/dydros/front.svg",
  10347. extra: 863 / 800,
  10348. bottom: 0.015
  10349. }
  10350. },
  10351. back: {
  10352. height: math.unit(12, "feet"),
  10353. weight: math.unit(1.5, "tons"),
  10354. name: "Back",
  10355. image: {
  10356. source: "./media/characters/dydros/back.svg",
  10357. extra: 900 / 843,
  10358. bottom: 0.005
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Normal",
  10365. height: math.unit(12, "feet"),
  10366. default: true
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(6, "feet"),
  10375. weight: math.unit(100, "kg"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/riggi/front.svg",
  10379. extra: 5787 / 5303
  10380. }
  10381. },
  10382. hyper: {
  10383. height: math.unit(6 * 5 / 3, "feet"),
  10384. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10385. name: "Hyper",
  10386. image: {
  10387. source: "./media/characters/riggi/hyper.svg",
  10388. extra: 3595 / 3485
  10389. }
  10390. },
  10391. },
  10392. [
  10393. {
  10394. name: "Small Macro",
  10395. height: math.unit(50, "feet")
  10396. },
  10397. {
  10398. name: "Default",
  10399. height: math.unit(200, "feet"),
  10400. default: true
  10401. },
  10402. {
  10403. name: "Loom",
  10404. height: math.unit(10000, "feet")
  10405. },
  10406. {
  10407. name: "Cruising Altitude",
  10408. height: math.unit(30000, "feet")
  10409. },
  10410. {
  10411. name: "Megamacro",
  10412. height: math.unit(100, "miles")
  10413. },
  10414. {
  10415. name: "Continent Sized",
  10416. height: math.unit(2800, "miles")
  10417. },
  10418. {
  10419. name: "Earth Sized",
  10420. height: math.unit(8000, "miles")
  10421. },
  10422. ]
  10423. ))
  10424. characterMakers.push(() => makeCharacter(
  10425. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10426. {
  10427. front: {
  10428. height: math.unit(6, "feet"),
  10429. weight: math.unit(250, "lb"),
  10430. name: "Front",
  10431. image: {
  10432. source: "./media/characters/alexi/front.svg",
  10433. extra: 3483 / 3291,
  10434. bottom: 0.04
  10435. }
  10436. },
  10437. back: {
  10438. height: math.unit(6, "feet"),
  10439. weight: math.unit(250, "lb"),
  10440. name: "Back",
  10441. image: {
  10442. source: "./media/characters/alexi/back.svg",
  10443. extra: 3533 / 3356,
  10444. bottom: 0.021
  10445. }
  10446. },
  10447. frontTransforming: {
  10448. height: math.unit(8.58, "feet"),
  10449. weight: math.unit(1300, "lb"),
  10450. name: "Transforming",
  10451. image: {
  10452. source: "./media/characters/alexi/front-transforming.svg",
  10453. extra: 437 / 409,
  10454. bottom: 19 / 458.66
  10455. }
  10456. },
  10457. frontTransformed: {
  10458. height: math.unit(12.5, "feet"),
  10459. weight: math.unit(4000, "lb"),
  10460. name: "Transformed",
  10461. image: {
  10462. source: "./media/characters/alexi/front-transformed.svg",
  10463. extra: 639 / 614,
  10464. bottom: 30.55 / 671
  10465. }
  10466. },
  10467. },
  10468. [
  10469. {
  10470. name: "Normal",
  10471. height: math.unit(14, "feet"),
  10472. default: true
  10473. },
  10474. {
  10475. name: "Minimacro",
  10476. height: math.unit(30, "meters")
  10477. },
  10478. {
  10479. name: "Macro",
  10480. height: math.unit(500, "meters")
  10481. },
  10482. {
  10483. name: "Megamacro",
  10484. height: math.unit(9000, "km")
  10485. },
  10486. {
  10487. name: "Teramacro",
  10488. height: math.unit(384000, "km")
  10489. },
  10490. ]
  10491. ))
  10492. characterMakers.push(() => makeCharacter(
  10493. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10494. {
  10495. front: {
  10496. height: math.unit(6, "feet"),
  10497. weight: math.unit(150, "lb"),
  10498. name: "Front",
  10499. image: {
  10500. source: "./media/characters/kayroo/front.svg",
  10501. extra: 1153 / 1038,
  10502. bottom: 0.06
  10503. }
  10504. },
  10505. foot: {
  10506. height: math.unit(6, "feet"),
  10507. weight: math.unit(150, "lb"),
  10508. name: "Foot",
  10509. image: {
  10510. source: "./media/characters/kayroo/foot.svg"
  10511. }
  10512. },
  10513. },
  10514. [
  10515. {
  10516. name: "Normal",
  10517. height: math.unit(8, "feet"),
  10518. default: true
  10519. },
  10520. {
  10521. name: "Minimacro",
  10522. height: math.unit(250, "feet")
  10523. },
  10524. {
  10525. name: "Macro",
  10526. height: math.unit(2800, "feet")
  10527. },
  10528. {
  10529. name: "Megamacro",
  10530. height: math.unit(5200, "feet")
  10531. },
  10532. {
  10533. name: "Gigamacro",
  10534. height: math.unit(27000, "feet")
  10535. },
  10536. {
  10537. name: "Omega",
  10538. height: math.unit(45000, "feet")
  10539. },
  10540. ]
  10541. ))
  10542. characterMakers.push(() => makeCharacter(
  10543. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10544. {
  10545. front: {
  10546. height: math.unit(18, "feet"),
  10547. weight: math.unit(5800, "lb"),
  10548. name: "Front",
  10549. image: {
  10550. source: "./media/characters/rhys/front.svg",
  10551. extra: 3386 / 3090,
  10552. bottom: 0.07
  10553. }
  10554. },
  10555. },
  10556. [
  10557. {
  10558. name: "Normal",
  10559. height: math.unit(18, "feet"),
  10560. default: true
  10561. },
  10562. {
  10563. name: "Working Size",
  10564. height: math.unit(200, "feet")
  10565. },
  10566. {
  10567. name: "Demolition Size",
  10568. height: math.unit(2000, "feet")
  10569. },
  10570. {
  10571. name: "Maximum Licensed Size",
  10572. height: math.unit(5, "miles")
  10573. },
  10574. {
  10575. name: "Maximum Observed Size",
  10576. height: math.unit(10, "yottameters")
  10577. },
  10578. ]
  10579. ))
  10580. characterMakers.push(() => makeCharacter(
  10581. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10582. {
  10583. front: {
  10584. height: math.unit(6, "feet"),
  10585. weight: math.unit(250, "lb"),
  10586. name: "Front",
  10587. image: {
  10588. source: "./media/characters/toto/front.svg",
  10589. extra: 527 / 479,
  10590. bottom: 0.05
  10591. }
  10592. },
  10593. },
  10594. [
  10595. {
  10596. name: "Micro",
  10597. height: math.unit(3, "feet")
  10598. },
  10599. {
  10600. name: "Normal",
  10601. height: math.unit(10, "feet")
  10602. },
  10603. {
  10604. name: "Macro",
  10605. height: math.unit(150, "feet"),
  10606. default: true
  10607. },
  10608. {
  10609. name: "Megamacro",
  10610. height: math.unit(1200, "feet")
  10611. },
  10612. ]
  10613. ))
  10614. characterMakers.push(() => makeCharacter(
  10615. { name: "King", species: ["lion"], tags: ["anthro"] },
  10616. {
  10617. back: {
  10618. height: math.unit(6, "feet"),
  10619. weight: math.unit(150, "lb"),
  10620. name: "Back",
  10621. image: {
  10622. source: "./media/characters/king/back.svg"
  10623. }
  10624. },
  10625. },
  10626. [
  10627. {
  10628. name: "Micro",
  10629. height: math.unit(2, "inches")
  10630. },
  10631. {
  10632. name: "Normal",
  10633. height: math.unit(8, "feet")
  10634. },
  10635. {
  10636. name: "Macro",
  10637. height: math.unit(200, "feet"),
  10638. default: true
  10639. },
  10640. {
  10641. name: "Megamacro",
  10642. height: math.unit(50, "miles")
  10643. },
  10644. ]
  10645. ))
  10646. characterMakers.push(() => makeCharacter(
  10647. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10648. {
  10649. anthro: {
  10650. height: math.unit(6 + 5 / 12, "feet"),
  10651. weight: math.unit(280, "lb"),
  10652. name: "Anthro",
  10653. image: {
  10654. source: "./media/characters/cordite/anthro.svg",
  10655. extra: 1986 / 1905,
  10656. bottom: 0.025
  10657. }
  10658. },
  10659. feral: {
  10660. height: math.unit(2, "feet"),
  10661. weight: math.unit(90, "lb"),
  10662. name: "Feral",
  10663. image: {
  10664. source: "./media/characters/cordite/feral.svg",
  10665. extra: 1260 / 755,
  10666. bottom: 0.05
  10667. }
  10668. },
  10669. },
  10670. [
  10671. {
  10672. name: "Normal",
  10673. height: math.unit(6 + 5 / 12, "feet"),
  10674. default: true
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10680. {
  10681. front: {
  10682. height: math.unit(6, "feet"),
  10683. weight: math.unit(150, "lb"),
  10684. name: "Front",
  10685. image: {
  10686. source: "./media/characters/pianostrong/front.svg",
  10687. extra: 6577 / 6254,
  10688. bottom: 0.02
  10689. }
  10690. },
  10691. side: {
  10692. height: math.unit(6, "feet"),
  10693. weight: math.unit(150, "lb"),
  10694. name: "Side",
  10695. image: {
  10696. source: "./media/characters/pianostrong/side.svg",
  10697. extra: 6106 / 5730
  10698. }
  10699. },
  10700. back: {
  10701. height: math.unit(6, "feet"),
  10702. weight: math.unit(150, "lb"),
  10703. name: "Back",
  10704. image: {
  10705. source: "./media/characters/pianostrong/back.svg",
  10706. extra: 6085 / 5733,
  10707. bottom: 0.01
  10708. }
  10709. },
  10710. },
  10711. [
  10712. {
  10713. name: "Macro",
  10714. height: math.unit(100, "feet")
  10715. },
  10716. {
  10717. name: "Macro+",
  10718. height: math.unit(300, "feet"),
  10719. default: true
  10720. },
  10721. {
  10722. name: "Macro++",
  10723. height: math.unit(1000, "feet")
  10724. },
  10725. ]
  10726. ))
  10727. characterMakers.push(() => makeCharacter(
  10728. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10729. {
  10730. front: {
  10731. height: math.unit(6, "feet"),
  10732. weight: math.unit(150, "lb"),
  10733. name: "Front",
  10734. image: {
  10735. source: "./media/characters/kona/front.svg",
  10736. extra: 2960 / 2629,
  10737. bottom: 0.005
  10738. }
  10739. },
  10740. },
  10741. [
  10742. {
  10743. name: "Normal",
  10744. height: math.unit(11 + 8 / 12, "feet")
  10745. },
  10746. {
  10747. name: "Macro",
  10748. height: math.unit(850, "feet"),
  10749. default: true
  10750. },
  10751. {
  10752. name: "Macro+",
  10753. height: math.unit(1.5, "km"),
  10754. default: true
  10755. },
  10756. {
  10757. name: "Megamacro",
  10758. height: math.unit(80, "miles")
  10759. },
  10760. {
  10761. name: "Gigamacro",
  10762. height: math.unit(3500, "miles")
  10763. },
  10764. ]
  10765. ))
  10766. characterMakers.push(() => makeCharacter(
  10767. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10768. {
  10769. side: {
  10770. height: math.unit(1.9, "meters"),
  10771. weight: math.unit(326, "kg"),
  10772. name: "Side",
  10773. image: {
  10774. source: "./media/characters/levi/side.svg",
  10775. extra: 1704 / 1334,
  10776. bottom: 0.02
  10777. }
  10778. },
  10779. },
  10780. [
  10781. {
  10782. name: "Normal",
  10783. height: math.unit(1.9, "meters"),
  10784. default: true
  10785. },
  10786. {
  10787. name: "Macro",
  10788. height: math.unit(20, "meters")
  10789. },
  10790. {
  10791. name: "Macro+",
  10792. height: math.unit(200, "meters")
  10793. },
  10794. {
  10795. name: "Megamacro",
  10796. height: math.unit(2, "km")
  10797. },
  10798. {
  10799. name: "Megamacro+",
  10800. height: math.unit(20, "km")
  10801. },
  10802. {
  10803. name: "Gigamacro",
  10804. height: math.unit(2500, "km")
  10805. },
  10806. {
  10807. name: "Gigamacro+",
  10808. height: math.unit(120000, "km")
  10809. },
  10810. {
  10811. name: "Teramacro",
  10812. height: math.unit(7.77e6, "km")
  10813. },
  10814. ]
  10815. ))
  10816. characterMakers.push(() => makeCharacter(
  10817. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10818. {
  10819. front: {
  10820. height: math.unit(6 + 4 / 12, "feet"),
  10821. weight: math.unit(188, "lb"),
  10822. name: "Front",
  10823. image: {
  10824. source: "./media/characters/bmc/front.svg",
  10825. extra: 1067 / 1022,
  10826. bottom: 0.047
  10827. }
  10828. },
  10829. },
  10830. [
  10831. {
  10832. name: "Human-sized",
  10833. height: math.unit(6 + 4 / 12, "feet")
  10834. },
  10835. {
  10836. name: "Small",
  10837. height: math.unit(250, "feet")
  10838. },
  10839. {
  10840. name: "Normal",
  10841. height: math.unit(1250, "feet"),
  10842. default: true
  10843. },
  10844. {
  10845. name: "Good Day",
  10846. height: math.unit(88, "miles")
  10847. },
  10848. {
  10849. name: "Largest Measured Size",
  10850. height: math.unit(11.2e6, "lightyears")
  10851. },
  10852. ]
  10853. ))
  10854. characterMakers.push(() => makeCharacter(
  10855. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10856. {
  10857. front: {
  10858. height: math.unit(20, "feet"),
  10859. weight: math.unit(2016, "kg"),
  10860. name: "Front",
  10861. image: {
  10862. source: "./media/characters/sven-the-kaiju/front.svg",
  10863. extra: 1479 / 1449,
  10864. bottom: 0.05
  10865. }
  10866. },
  10867. },
  10868. [
  10869. {
  10870. name: "Fairy",
  10871. height: math.unit(6, "inches")
  10872. },
  10873. {
  10874. name: "Normal",
  10875. height: math.unit(20, "feet"),
  10876. default: true
  10877. },
  10878. {
  10879. name: "Rampage",
  10880. height: math.unit(200, "feet")
  10881. },
  10882. {
  10883. name: "Archfey Forest Guardian",
  10884. height: math.unit(1, "mile")
  10885. },
  10886. ]
  10887. ))
  10888. characterMakers.push(() => makeCharacter(
  10889. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10890. {
  10891. front: {
  10892. height: math.unit(4, "meters"),
  10893. weight: math.unit(2, "tons"),
  10894. name: "Front",
  10895. image: {
  10896. source: "./media/characters/marik/front.svg",
  10897. extra: 1057 / 1003,
  10898. bottom: 0.08
  10899. }
  10900. },
  10901. },
  10902. [
  10903. {
  10904. name: "Normal",
  10905. height: math.unit(4, "meters"),
  10906. default: true
  10907. },
  10908. {
  10909. name: "Macro",
  10910. height: math.unit(20, "meters")
  10911. },
  10912. {
  10913. name: "Megamacro",
  10914. height: math.unit(50, "km")
  10915. },
  10916. {
  10917. name: "Gigamacro",
  10918. height: math.unit(100, "km")
  10919. },
  10920. {
  10921. name: "Alpha Macro",
  10922. height: math.unit(7.88e7, "yottameters")
  10923. },
  10924. ]
  10925. ))
  10926. characterMakers.push(() => makeCharacter(
  10927. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10928. {
  10929. front: {
  10930. height: math.unit(6, "feet"),
  10931. weight: math.unit(110, "lb"),
  10932. name: "Front",
  10933. image: {
  10934. source: "./media/characters/mel/front.svg",
  10935. extra: 736 / 617,
  10936. bottom: 0.017
  10937. }
  10938. },
  10939. },
  10940. [
  10941. {
  10942. name: "Pico",
  10943. height: math.unit(3, "pm")
  10944. },
  10945. {
  10946. name: "Nano",
  10947. height: math.unit(3, "nm")
  10948. },
  10949. {
  10950. name: "Micro",
  10951. height: math.unit(0.3, "mm"),
  10952. default: true
  10953. },
  10954. {
  10955. name: "Micro+",
  10956. height: math.unit(3, "mm")
  10957. },
  10958. {
  10959. name: "Normal",
  10960. height: math.unit(5 + 10.5 / 12, "feet")
  10961. },
  10962. ]
  10963. ))
  10964. characterMakers.push(() => makeCharacter(
  10965. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10966. {
  10967. kaiju: {
  10968. height: math.unit(1.75, "meters"),
  10969. weight: math.unit(55, "kg"),
  10970. name: "Kaiju",
  10971. image: {
  10972. source: "./media/characters/lykonous/kaiju.svg",
  10973. extra: 1055 / 946,
  10974. bottom: 0.135
  10975. }
  10976. },
  10977. },
  10978. [
  10979. {
  10980. name: "Normal",
  10981. height: math.unit(2.5, "meters"),
  10982. default: true
  10983. },
  10984. {
  10985. name: "Kaiju Dragon",
  10986. height: math.unit(60, "meters")
  10987. },
  10988. {
  10989. name: "Mega Kaiju",
  10990. height: math.unit(120, "km")
  10991. },
  10992. {
  10993. name: "Giga Kaiju",
  10994. height: math.unit(200, "megameters")
  10995. },
  10996. {
  10997. name: "Terra Kaiju",
  10998. height: math.unit(400, "gigameters")
  10999. },
  11000. {
  11001. name: "Kaiju Dragon God",
  11002. height: math.unit(13000, "exaparsecs")
  11003. },
  11004. ]
  11005. ))
  11006. characterMakers.push(() => makeCharacter(
  11007. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11008. {
  11009. front: {
  11010. height: math.unit(6, "feet"),
  11011. weight: math.unit(150, "lb"),
  11012. name: "Front",
  11013. image: {
  11014. source: "./media/characters/blü/front.svg",
  11015. extra: 1883 / 1564,
  11016. bottom: 0.031
  11017. }
  11018. },
  11019. },
  11020. [
  11021. {
  11022. name: "Normal",
  11023. height: math.unit(13, "feet"),
  11024. default: true
  11025. },
  11026. {
  11027. name: "Big Boi",
  11028. height: math.unit(150, "meters")
  11029. },
  11030. {
  11031. name: "Mini Stomper",
  11032. height: math.unit(300, "meters")
  11033. },
  11034. {
  11035. name: "Macro",
  11036. height: math.unit(1000, "meters")
  11037. },
  11038. {
  11039. name: "Megamacro",
  11040. height: math.unit(11000, "meters")
  11041. },
  11042. {
  11043. name: "Gigamacro",
  11044. height: math.unit(11000, "km")
  11045. },
  11046. {
  11047. name: "Teramacro",
  11048. height: math.unit(420000, "km")
  11049. },
  11050. {
  11051. name: "Examacro",
  11052. height: math.unit(120, "parsecs")
  11053. },
  11054. {
  11055. name: "God Tho",
  11056. height: math.unit(98000000000, "parsecs")
  11057. },
  11058. ]
  11059. ))
  11060. characterMakers.push(() => makeCharacter(
  11061. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11062. {
  11063. taurFront: {
  11064. height: math.unit(6, "feet"),
  11065. weight: math.unit(200, "lb"),
  11066. name: "Taur (Front)",
  11067. image: {
  11068. source: "./media/characters/scales/taur-front.svg",
  11069. extra: 1,
  11070. bottom: 0.05
  11071. }
  11072. },
  11073. taurBack: {
  11074. height: math.unit(6, "feet"),
  11075. weight: math.unit(200, "lb"),
  11076. name: "Taur (Back)",
  11077. image: {
  11078. source: "./media/characters/scales/taur-back.svg",
  11079. extra: 1,
  11080. bottom: 0.08
  11081. }
  11082. },
  11083. anthro: {
  11084. height: math.unit(6 * 7 / 12, "feet"),
  11085. weight: math.unit(100, "lb"),
  11086. name: "Anthro",
  11087. image: {
  11088. source: "./media/characters/scales/anthro.svg",
  11089. extra: 1,
  11090. bottom: 0.06
  11091. }
  11092. },
  11093. },
  11094. [
  11095. {
  11096. name: "Normal",
  11097. height: math.unit(12, "feet"),
  11098. default: true
  11099. },
  11100. ]
  11101. ))
  11102. characterMakers.push(() => makeCharacter(
  11103. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11104. {
  11105. front: {
  11106. height: math.unit(6, "feet"),
  11107. weight: math.unit(150, "lb"),
  11108. name: "Front",
  11109. image: {
  11110. source: "./media/characters/koragos/front.svg",
  11111. extra: 841 / 794,
  11112. bottom: 0.035
  11113. }
  11114. },
  11115. back: {
  11116. height: math.unit(6, "feet"),
  11117. weight: math.unit(150, "lb"),
  11118. name: "Back",
  11119. image: {
  11120. source: "./media/characters/koragos/back.svg",
  11121. extra: 841 / 810,
  11122. bottom: 0.022
  11123. }
  11124. },
  11125. },
  11126. [
  11127. {
  11128. name: "Normal",
  11129. height: math.unit(6 + 11 / 12, "feet"),
  11130. default: true
  11131. },
  11132. {
  11133. name: "Macro",
  11134. height: math.unit(490, "feet")
  11135. },
  11136. {
  11137. name: "Megamacro",
  11138. height: math.unit(10, "miles")
  11139. },
  11140. {
  11141. name: "Gigamacro",
  11142. height: math.unit(50, "miles")
  11143. },
  11144. ]
  11145. ))
  11146. characterMakers.push(() => makeCharacter(
  11147. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11148. {
  11149. front: {
  11150. height: math.unit(6, "feet"),
  11151. weight: math.unit(250, "lb"),
  11152. name: "Front",
  11153. image: {
  11154. source: "./media/characters/xylrem/front.svg",
  11155. extra: 3323 / 3050,
  11156. bottom: 0.065
  11157. }
  11158. },
  11159. },
  11160. [
  11161. {
  11162. name: "Micro",
  11163. height: math.unit(4, "feet")
  11164. },
  11165. {
  11166. name: "Normal",
  11167. height: math.unit(16, "feet"),
  11168. default: true
  11169. },
  11170. {
  11171. name: "Macro",
  11172. height: math.unit(2720, "feet")
  11173. },
  11174. {
  11175. name: "Megamacro",
  11176. height: math.unit(25000, "miles")
  11177. },
  11178. ]
  11179. ))
  11180. characterMakers.push(() => makeCharacter(
  11181. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11182. {
  11183. front: {
  11184. height: math.unit(8, "feet"),
  11185. weight: math.unit(250, "kg"),
  11186. name: "Front",
  11187. image: {
  11188. source: "./media/characters/ikideru/front.svg",
  11189. extra: 930 / 870,
  11190. bottom: 0.087
  11191. }
  11192. },
  11193. back: {
  11194. height: math.unit(8, "feet"),
  11195. weight: math.unit(250, "kg"),
  11196. name: "Back",
  11197. image: {
  11198. source: "./media/characters/ikideru/back.svg",
  11199. extra: 919 / 852,
  11200. bottom: 0.055
  11201. }
  11202. },
  11203. },
  11204. [
  11205. {
  11206. name: "Rare",
  11207. height: math.unit(8, "feet"),
  11208. default: true
  11209. },
  11210. {
  11211. name: "Playful Loom",
  11212. height: math.unit(80, "feet")
  11213. },
  11214. {
  11215. name: "City Leaner",
  11216. height: math.unit(230, "feet")
  11217. },
  11218. {
  11219. name: "Megamacro",
  11220. height: math.unit(2500, "feet")
  11221. },
  11222. {
  11223. name: "Gigamacro",
  11224. height: math.unit(26400, "feet")
  11225. },
  11226. {
  11227. name: "Tectonic Shifter",
  11228. height: math.unit(1.7, "megameters")
  11229. },
  11230. {
  11231. name: "Planet Carer",
  11232. height: math.unit(21, "megameters")
  11233. },
  11234. {
  11235. name: "God",
  11236. height: math.unit(11157.22, "parsecs")
  11237. },
  11238. ]
  11239. ))
  11240. characterMakers.push(() => makeCharacter(
  11241. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11242. {
  11243. front: {
  11244. height: math.unit(6, "feet"),
  11245. weight: math.unit(120, "lb"),
  11246. name: "Front",
  11247. image: {
  11248. source: "./media/characters/neo/front.svg"
  11249. }
  11250. },
  11251. },
  11252. [
  11253. {
  11254. name: "Micro",
  11255. height: math.unit(2, "inches"),
  11256. default: true
  11257. },
  11258. {
  11259. name: "Human Size",
  11260. height: math.unit(5 + 8 / 12, "feet")
  11261. },
  11262. ]
  11263. ))
  11264. characterMakers.push(() => makeCharacter(
  11265. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11266. {
  11267. front: {
  11268. height: math.unit(13 + 10 / 12, "feet"),
  11269. weight: math.unit(5320, "lb"),
  11270. name: "Front",
  11271. image: {
  11272. source: "./media/characters/chauncey-chantz/front.svg",
  11273. extra: 1587 / 1435,
  11274. bottom: 0.02
  11275. }
  11276. },
  11277. },
  11278. [
  11279. {
  11280. name: "Normal",
  11281. height: math.unit(13 + 10 / 12, "feet"),
  11282. default: true
  11283. },
  11284. {
  11285. name: "Macro",
  11286. height: math.unit(45, "feet")
  11287. },
  11288. {
  11289. name: "Megamacro",
  11290. height: math.unit(250, "miles")
  11291. },
  11292. {
  11293. name: "Planetary",
  11294. height: math.unit(10000, "miles")
  11295. },
  11296. {
  11297. name: "Galactic",
  11298. height: math.unit(40000, "parsecs")
  11299. },
  11300. {
  11301. name: "Universal",
  11302. height: math.unit(1, "yottameter")
  11303. },
  11304. ]
  11305. ))
  11306. characterMakers.push(() => makeCharacter(
  11307. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11308. {
  11309. front: {
  11310. height: math.unit(6, "feet"),
  11311. weight: math.unit(150, "lb"),
  11312. name: "Front",
  11313. image: {
  11314. source: "./media/characters/epifox/front.svg",
  11315. extra: 1,
  11316. bottom: 0.075
  11317. }
  11318. },
  11319. },
  11320. [
  11321. {
  11322. name: "Micro",
  11323. height: math.unit(6, "inches")
  11324. },
  11325. {
  11326. name: "Normal",
  11327. height: math.unit(12, "feet"),
  11328. default: true
  11329. },
  11330. {
  11331. name: "Macro",
  11332. height: math.unit(3810, "feet")
  11333. },
  11334. {
  11335. name: "Megamacro",
  11336. height: math.unit(500, "miles")
  11337. },
  11338. ]
  11339. ))
  11340. characterMakers.push(() => makeCharacter(
  11341. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11342. {
  11343. front: {
  11344. height: math.unit(1.8796, "m"),
  11345. weight: math.unit(230, "lb"),
  11346. name: "Front",
  11347. image: {
  11348. source: "./media/characters/colin-t/front.svg",
  11349. extra: 1272 / 1193,
  11350. bottom: 0.07
  11351. }
  11352. },
  11353. },
  11354. [
  11355. {
  11356. name: "Micro",
  11357. height: math.unit(0.571, "meters")
  11358. },
  11359. {
  11360. name: "Normal",
  11361. height: math.unit(1.8796, "meters"),
  11362. default: true
  11363. },
  11364. {
  11365. name: "Tall",
  11366. height: math.unit(4, "meters")
  11367. },
  11368. {
  11369. name: "Macro",
  11370. height: math.unit(67.241, "meters")
  11371. },
  11372. {
  11373. name: "Megamacro",
  11374. height: math.unit(371.856, "meters")
  11375. },
  11376. {
  11377. name: "Planetary",
  11378. height: math.unit(12631.5689, "km")
  11379. },
  11380. ]
  11381. ))
  11382. characterMakers.push(() => makeCharacter(
  11383. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11384. {
  11385. front: {
  11386. height: math.unit(1.85, "meters"),
  11387. weight: math.unit(80, "kg"),
  11388. name: "Front",
  11389. image: {
  11390. source: "./media/characters/matvei/front.svg",
  11391. extra: 614 / 594,
  11392. bottom: 0.01
  11393. }
  11394. },
  11395. },
  11396. [
  11397. {
  11398. name: "Normal",
  11399. height: math.unit(1.85, "meters"),
  11400. default: true
  11401. },
  11402. ]
  11403. ))
  11404. characterMakers.push(() => makeCharacter(
  11405. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11406. {
  11407. front: {
  11408. height: math.unit(5 + 9 / 12, "feet"),
  11409. weight: math.unit(70, "lb"),
  11410. name: "Front",
  11411. image: {
  11412. source: "./media/characters/quincy/front.svg",
  11413. extra: 3041 / 2751
  11414. }
  11415. },
  11416. back: {
  11417. height: math.unit(5 + 9 / 12, "feet"),
  11418. weight: math.unit(70, "lb"),
  11419. name: "Back",
  11420. image: {
  11421. source: "./media/characters/quincy/back.svg",
  11422. extra: 3041 / 2751
  11423. }
  11424. },
  11425. flying: {
  11426. height: math.unit(5 + 4 / 12, "feet"),
  11427. weight: math.unit(70, "lb"),
  11428. name: "Flying",
  11429. image: {
  11430. source: "./media/characters/quincy/flying.svg",
  11431. extra: 1044 / 930
  11432. }
  11433. },
  11434. },
  11435. [
  11436. {
  11437. name: "Micro",
  11438. height: math.unit(3, "cm")
  11439. },
  11440. {
  11441. name: "Normal",
  11442. height: math.unit(5 + 9 / 12, "feet")
  11443. },
  11444. {
  11445. name: "Macro",
  11446. height: math.unit(200, "meters"),
  11447. default: true
  11448. },
  11449. {
  11450. name: "Megamacro",
  11451. height: math.unit(1000, "meters")
  11452. },
  11453. ]
  11454. ))
  11455. characterMakers.push(() => makeCharacter(
  11456. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11457. {
  11458. front: {
  11459. height: math.unit(4 + 7 / 12, "feet"),
  11460. weight: math.unit(50, "lb"),
  11461. name: "Front",
  11462. image: {
  11463. source: "./media/characters/vanrel/front.svg",
  11464. extra: 1,
  11465. bottom: 0.02
  11466. }
  11467. },
  11468. frontAlt: {
  11469. height: math.unit(4 + 7 / 12, "feet"),
  11470. weight: math.unit(50, "lb"),
  11471. name: "Front-alt",
  11472. image: {
  11473. source: "./media/characters/vanrel/front-alt.svg",
  11474. extra: 1,
  11475. bottom: 15 / 1511
  11476. }
  11477. },
  11478. elemental: {
  11479. height: math.unit(3, "feet"),
  11480. weight: math.unit(50, "lb"),
  11481. name: "Elemental",
  11482. image: {
  11483. source: "./media/characters/vanrel/elemental.svg",
  11484. extra: 192.3 / 162.8,
  11485. bottom: 1.79 / 194.17
  11486. }
  11487. },
  11488. side: {
  11489. height: math.unit(4 + 7 / 12, "feet"),
  11490. weight: math.unit(50, "lb"),
  11491. name: "Side",
  11492. image: {
  11493. source: "./media/characters/vanrel/side.svg",
  11494. extra: 1,
  11495. bottom: 0.025
  11496. }
  11497. },
  11498. tome: {
  11499. height: math.unit(1.35, "feet"),
  11500. weight: math.unit(10, "lb"),
  11501. name: "Vanrel's Tome",
  11502. rename: true,
  11503. image: {
  11504. source: "./media/characters/vanrel/tome.svg"
  11505. }
  11506. },
  11507. beans: {
  11508. height: math.unit(0.89, "feet"),
  11509. name: "Beans",
  11510. image: {
  11511. source: "./media/characters/vanrel/beans.svg"
  11512. }
  11513. },
  11514. },
  11515. [
  11516. {
  11517. name: "Normal",
  11518. height: math.unit(4 + 7 / 12, "feet"),
  11519. default: true
  11520. },
  11521. ]
  11522. ))
  11523. characterMakers.push(() => makeCharacter(
  11524. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11525. {
  11526. front: {
  11527. height: math.unit(7 + 5 / 12, "feet"),
  11528. weight: math.unit(150, "lb"),
  11529. name: "Front",
  11530. image: {
  11531. source: "./media/characters/kuiper-vanrel/front.svg",
  11532. extra: 1118 / 1068,
  11533. bottom: 0.09
  11534. }
  11535. },
  11536. foot: {
  11537. height: math.unit(0.55, "meters"),
  11538. name: "Foot",
  11539. image: {
  11540. source: "./media/characters/kuiper-vanrel/foot.svg",
  11541. }
  11542. },
  11543. battle: {
  11544. height: math.unit(6.824, "feet"),
  11545. weight: math.unit(150, "lb"),
  11546. name: "Battle",
  11547. image: {
  11548. source: "./media/characters/kuiper-vanrel/battle.svg",
  11549. extra: 1466 / 1327,
  11550. bottom: 29 / 1492.5
  11551. }
  11552. },
  11553. battleAlt: {
  11554. height: math.unit(6.824, "feet"),
  11555. weight: math.unit(150, "lb"),
  11556. name: "Battle (Alt)",
  11557. image: {
  11558. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11559. extra: 2081 / 1965,
  11560. bottom: 40 / 2121
  11561. }
  11562. },
  11563. },
  11564. [
  11565. {
  11566. name: "Normal",
  11567. height: math.unit(7 + 5 / 12, "feet"),
  11568. default: true
  11569. },
  11570. ]
  11571. ))
  11572. characterMakers.push(() => makeCharacter(
  11573. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11574. {
  11575. front: {
  11576. height: math.unit(8 + 5 / 12, "feet"),
  11577. weight: math.unit(150, "lb"),
  11578. name: "Front",
  11579. image: {
  11580. source: "./media/characters/keset-vanrel/front.svg",
  11581. extra: 1150 / 1084,
  11582. bottom: 0.05
  11583. }
  11584. },
  11585. hand: {
  11586. height: math.unit(0.6, "meters"),
  11587. name: "Hand",
  11588. image: {
  11589. source: "./media/characters/keset-vanrel/hand.svg"
  11590. }
  11591. },
  11592. foot: {
  11593. height: math.unit(0.94978, "meters"),
  11594. name: "Foot",
  11595. image: {
  11596. source: "./media/characters/keset-vanrel/foot.svg"
  11597. }
  11598. },
  11599. battle: {
  11600. height: math.unit(7.408, "feet"),
  11601. weight: math.unit(150, "lb"),
  11602. name: "Battle",
  11603. image: {
  11604. source: "./media/characters/keset-vanrel/battle.svg",
  11605. extra: 1890 / 1386,
  11606. bottom: 73.28 / 1970
  11607. }
  11608. },
  11609. },
  11610. [
  11611. {
  11612. name: "Normal",
  11613. height: math.unit(8 + 5 / 12, "feet"),
  11614. default: true
  11615. },
  11616. ]
  11617. ))
  11618. characterMakers.push(() => makeCharacter(
  11619. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11620. {
  11621. front: {
  11622. height: math.unit(6, "feet"),
  11623. weight: math.unit(150, "lb"),
  11624. name: "Front",
  11625. image: {
  11626. source: "./media/characters/neos/front.svg",
  11627. extra: 1696 / 992,
  11628. bottom: 0.14
  11629. }
  11630. },
  11631. },
  11632. [
  11633. {
  11634. name: "Normal",
  11635. height: math.unit(54, "cm"),
  11636. default: true
  11637. },
  11638. {
  11639. name: "Macro",
  11640. height: math.unit(100, "m")
  11641. },
  11642. {
  11643. name: "Megamacro",
  11644. height: math.unit(10, "km")
  11645. },
  11646. {
  11647. name: "Megamacro+",
  11648. height: math.unit(100, "km")
  11649. },
  11650. {
  11651. name: "Gigamacro",
  11652. height: math.unit(100, "Mm")
  11653. },
  11654. {
  11655. name: "Teramacro",
  11656. height: math.unit(100, "Gm")
  11657. },
  11658. {
  11659. name: "Examacro",
  11660. height: math.unit(100, "Em")
  11661. },
  11662. {
  11663. name: "Godly",
  11664. height: math.unit(10000, "Ym")
  11665. },
  11666. {
  11667. name: "Beyond Godly",
  11668. height: math.unit(25, "multiverses")
  11669. },
  11670. ]
  11671. ))
  11672. characterMakers.push(() => makeCharacter(
  11673. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11674. {
  11675. feminine: {
  11676. height: math.unit(5, "feet"),
  11677. weight: math.unit(100, "lb"),
  11678. name: "Feminine",
  11679. image: {
  11680. source: "./media/characters/sammy-mouse/feminine.svg",
  11681. extra: 2526 / 2425,
  11682. bottom: 0.123
  11683. }
  11684. },
  11685. masculine: {
  11686. height: math.unit(5, "feet"),
  11687. weight: math.unit(100, "lb"),
  11688. name: "Masculine",
  11689. image: {
  11690. source: "./media/characters/sammy-mouse/masculine.svg",
  11691. extra: 2526 / 2425,
  11692. bottom: 0.123
  11693. }
  11694. },
  11695. },
  11696. [
  11697. {
  11698. name: "Micro",
  11699. height: math.unit(5, "inches")
  11700. },
  11701. {
  11702. name: "Normal",
  11703. height: math.unit(5, "feet"),
  11704. default: true
  11705. },
  11706. {
  11707. name: "Macro",
  11708. height: math.unit(60, "feet")
  11709. },
  11710. ]
  11711. ))
  11712. characterMakers.push(() => makeCharacter(
  11713. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11714. {
  11715. front: {
  11716. height: math.unit(4, "feet"),
  11717. weight: math.unit(50, "lb"),
  11718. name: "Front",
  11719. image: {
  11720. source: "./media/characters/kole/front.svg",
  11721. extra: 1423 / 1303,
  11722. bottom: 0.025
  11723. }
  11724. },
  11725. back: {
  11726. height: math.unit(4, "feet"),
  11727. weight: math.unit(50, "lb"),
  11728. name: "Back",
  11729. image: {
  11730. source: "./media/characters/kole/back.svg",
  11731. extra: 1426 / 1280,
  11732. bottom: 0.02
  11733. }
  11734. },
  11735. },
  11736. [
  11737. {
  11738. name: "Normal",
  11739. height: math.unit(4, "feet"),
  11740. default: true
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11746. {
  11747. front: {
  11748. height: math.unit(2 + 6 / 12, "feet"),
  11749. weight: math.unit(20, "lb"),
  11750. name: "Front",
  11751. image: {
  11752. source: "./media/characters/rufran/front.svg",
  11753. extra: 2041 / 1839,
  11754. bottom: 0.055
  11755. }
  11756. },
  11757. back: {
  11758. height: math.unit(2 + 6 / 12, "feet"),
  11759. weight: math.unit(20, "lb"),
  11760. name: "Back",
  11761. image: {
  11762. source: "./media/characters/rufran/back.svg",
  11763. extra: 2054 / 1839,
  11764. bottom: 0.01
  11765. }
  11766. },
  11767. hand: {
  11768. height: math.unit(0.2166, "meters"),
  11769. name: "Hand",
  11770. image: {
  11771. source: "./media/characters/rufran/hand.svg"
  11772. }
  11773. },
  11774. foot: {
  11775. height: math.unit(0.185, "meters"),
  11776. name: "Foot",
  11777. image: {
  11778. source: "./media/characters/rufran/foot.svg"
  11779. }
  11780. },
  11781. },
  11782. [
  11783. {
  11784. name: "Micro",
  11785. height: math.unit(1, "inch")
  11786. },
  11787. {
  11788. name: "Normal",
  11789. height: math.unit(2 + 6 / 12, "feet"),
  11790. default: true
  11791. },
  11792. {
  11793. name: "Big",
  11794. height: math.unit(60, "feet")
  11795. },
  11796. {
  11797. name: "Macro",
  11798. height: math.unit(325, "feet")
  11799. },
  11800. ]
  11801. ))
  11802. characterMakers.push(() => makeCharacter(
  11803. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11804. {
  11805. front: {
  11806. height: math.unit(0.3, "meters"),
  11807. weight: math.unit(3.5, "kg"),
  11808. name: "Front",
  11809. image: {
  11810. source: "./media/characters/chip/front.svg",
  11811. extra: 748 / 674
  11812. }
  11813. },
  11814. },
  11815. [
  11816. {
  11817. name: "Micro",
  11818. height: math.unit(1, "inch"),
  11819. default: true
  11820. },
  11821. ]
  11822. ))
  11823. characterMakers.push(() => makeCharacter(
  11824. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11825. {
  11826. side: {
  11827. height: math.unit(2.3, "meters"),
  11828. weight: math.unit(3500, "lb"),
  11829. name: "Side",
  11830. image: {
  11831. source: "./media/characters/torvid/side.svg",
  11832. extra: 1972 / 722,
  11833. bottom: 0.035
  11834. }
  11835. },
  11836. },
  11837. [
  11838. {
  11839. name: "Normal",
  11840. height: math.unit(2.3, "meters"),
  11841. default: true
  11842. },
  11843. ]
  11844. ))
  11845. characterMakers.push(() => makeCharacter(
  11846. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11847. {
  11848. front: {
  11849. height: math.unit(2, "meters"),
  11850. weight: math.unit(150.5, "kg"),
  11851. name: "Front",
  11852. image: {
  11853. source: "./media/characters/susan/front.svg",
  11854. extra: 693 / 635,
  11855. bottom: 0.05
  11856. }
  11857. },
  11858. },
  11859. [
  11860. {
  11861. name: "Megamacro",
  11862. height: math.unit(505, "miles"),
  11863. default: true
  11864. },
  11865. ]
  11866. ))
  11867. characterMakers.push(() => makeCharacter(
  11868. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11869. {
  11870. front: {
  11871. height: math.unit(6, "feet"),
  11872. weight: math.unit(150, "lb"),
  11873. name: "Front",
  11874. image: {
  11875. source: "./media/characters/raindrops/front.svg",
  11876. extra: 2655 / 2461,
  11877. bottom: 49 / 2705
  11878. }
  11879. },
  11880. back: {
  11881. height: math.unit(6, "feet"),
  11882. weight: math.unit(150, "lb"),
  11883. name: "Back",
  11884. image: {
  11885. source: "./media/characters/raindrops/back.svg",
  11886. extra: 2574 / 2400,
  11887. bottom: 65 / 2634
  11888. }
  11889. },
  11890. },
  11891. [
  11892. {
  11893. name: "Micro",
  11894. height: math.unit(6, "inches")
  11895. },
  11896. {
  11897. name: "Normal",
  11898. height: math.unit(6 + 2 / 12, "feet")
  11899. },
  11900. {
  11901. name: "Macro",
  11902. height: math.unit(131, "feet"),
  11903. default: true
  11904. },
  11905. {
  11906. name: "Megamacro",
  11907. height: math.unit(15, "miles")
  11908. },
  11909. {
  11910. name: "Gigamacro",
  11911. height: math.unit(4000, "miles")
  11912. },
  11913. {
  11914. name: "Teramacro",
  11915. height: math.unit(315000, "miles")
  11916. },
  11917. ]
  11918. ))
  11919. characterMakers.push(() => makeCharacter(
  11920. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11921. {
  11922. front: {
  11923. height: math.unit(2.794, "meters"),
  11924. weight: math.unit(325, "kg"),
  11925. name: "Front",
  11926. image: {
  11927. source: "./media/characters/tezwa/front.svg",
  11928. extra: 2083 / 1906,
  11929. bottom: 0.031
  11930. }
  11931. },
  11932. foot: {
  11933. height: math.unit(0.687, "meters"),
  11934. name: "Foot",
  11935. image: {
  11936. source: "./media/characters/tezwa/foot.svg"
  11937. }
  11938. },
  11939. },
  11940. [
  11941. {
  11942. name: "Normal",
  11943. height: math.unit(9 + 2 / 12, "feet"),
  11944. default: true
  11945. },
  11946. ]
  11947. ))
  11948. characterMakers.push(() => makeCharacter(
  11949. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11950. {
  11951. front: {
  11952. height: math.unit(58, "feet"),
  11953. weight: math.unit(89000, "lb"),
  11954. name: "Front",
  11955. image: {
  11956. source: "./media/characters/typhus/front.svg",
  11957. extra: 816 / 800,
  11958. bottom: 0.065
  11959. }
  11960. },
  11961. },
  11962. [
  11963. {
  11964. name: "Macro",
  11965. height: math.unit(58, "feet"),
  11966. default: true
  11967. },
  11968. ]
  11969. ))
  11970. characterMakers.push(() => makeCharacter(
  11971. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  11972. {
  11973. front: {
  11974. height: math.unit(12, "feet"),
  11975. weight: math.unit(6, "tonnes"),
  11976. name: "Front",
  11977. image: {
  11978. source: "./media/characters/lyra-von-wulf/front.svg",
  11979. extra: 1,
  11980. bottom: 0.10
  11981. }
  11982. },
  11983. frontMecha: {
  11984. height: math.unit(12, "feet"),
  11985. weight: math.unit(12, "tonnes"),
  11986. name: "Front (Mecha)",
  11987. image: {
  11988. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  11989. extra: 1,
  11990. bottom: 0.042
  11991. }
  11992. },
  11993. maw: {
  11994. height: math.unit(2.2, "feet"),
  11995. name: "Maw",
  11996. image: {
  11997. source: "./media/characters/lyra-von-wulf/maw.svg"
  11998. }
  11999. },
  12000. },
  12001. [
  12002. {
  12003. name: "Normal",
  12004. height: math.unit(12, "feet"),
  12005. default: true
  12006. },
  12007. {
  12008. name: "Classic",
  12009. height: math.unit(50, "feet")
  12010. },
  12011. {
  12012. name: "Macro",
  12013. height: math.unit(500, "feet")
  12014. },
  12015. {
  12016. name: "Megamacro",
  12017. height: math.unit(1, "mile")
  12018. },
  12019. {
  12020. name: "Gigamacro",
  12021. height: math.unit(400, "miles")
  12022. },
  12023. {
  12024. name: "Teramacro",
  12025. height: math.unit(22000, "miles")
  12026. },
  12027. {
  12028. name: "Solarmacro",
  12029. height: math.unit(8600000, "miles")
  12030. },
  12031. {
  12032. name: "Galactic",
  12033. height: math.unit(1057000, "lightyears")
  12034. },
  12035. ]
  12036. ))
  12037. characterMakers.push(() => makeCharacter(
  12038. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12039. {
  12040. front: {
  12041. height: math.unit(6 + 10 / 12, "feet"),
  12042. weight: math.unit(150, "lb"),
  12043. name: "Front",
  12044. image: {
  12045. source: "./media/characters/dixon/front.svg",
  12046. extra: 3361 / 3209,
  12047. bottom: 0.01
  12048. }
  12049. },
  12050. },
  12051. [
  12052. {
  12053. name: "Normal",
  12054. height: math.unit(6 + 10 / 12, "feet"),
  12055. default: true
  12056. },
  12057. {
  12058. name: "Big",
  12059. height: math.unit(12, "meters")
  12060. },
  12061. {
  12062. name: "Macro",
  12063. height: math.unit(500, "meters")
  12064. },
  12065. {
  12066. name: "Megamacro",
  12067. height: math.unit(2, "km")
  12068. },
  12069. ]
  12070. ))
  12071. characterMakers.push(() => makeCharacter(
  12072. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12073. {
  12074. front: {
  12075. height: math.unit(185, "cm"),
  12076. weight: math.unit(68, "kg"),
  12077. name: "Front",
  12078. image: {
  12079. source: "./media/characters/kauko/front.svg",
  12080. extra: 1455 / 1421,
  12081. bottom: 0.03
  12082. }
  12083. },
  12084. back: {
  12085. height: math.unit(185, "cm"),
  12086. weight: math.unit(68, "kg"),
  12087. name: "Back",
  12088. image: {
  12089. source: "./media/characters/kauko/back.svg",
  12090. extra: 1455 / 1421,
  12091. bottom: 0.004
  12092. }
  12093. },
  12094. },
  12095. [
  12096. {
  12097. name: "Normal",
  12098. height: math.unit(185, "cm"),
  12099. default: true
  12100. },
  12101. ]
  12102. ))
  12103. characterMakers.push(() => makeCharacter(
  12104. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12105. {
  12106. front: {
  12107. height: math.unit(6, "feet"),
  12108. weight: math.unit(150, "kg"),
  12109. name: "Front",
  12110. image: {
  12111. source: "./media/characters/varg/front.svg",
  12112. extra: 1108 / 1018,
  12113. bottom: 0.0375
  12114. }
  12115. },
  12116. },
  12117. [
  12118. {
  12119. name: "Normal",
  12120. height: math.unit(5, "meters")
  12121. },
  12122. {
  12123. name: "Macro",
  12124. height: math.unit(200, "meters")
  12125. },
  12126. {
  12127. name: "Megamacro",
  12128. height: math.unit(20, "kilometers")
  12129. },
  12130. {
  12131. name: "True Size",
  12132. height: math.unit(211, "km"),
  12133. default: true
  12134. },
  12135. {
  12136. name: "Gigamacro",
  12137. height: math.unit(1000, "km")
  12138. },
  12139. {
  12140. name: "Gigamacro+",
  12141. height: math.unit(8000, "km")
  12142. },
  12143. {
  12144. name: "Teramacro",
  12145. height: math.unit(1000000, "km")
  12146. },
  12147. ]
  12148. ))
  12149. characterMakers.push(() => makeCharacter(
  12150. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12151. {
  12152. front: {
  12153. height: math.unit(7 + 7 / 12, "feet"),
  12154. weight: math.unit(267, "lb"),
  12155. name: "Front",
  12156. image: {
  12157. source: "./media/characters/dayza/front.svg",
  12158. extra: 1262 / 1200,
  12159. bottom: 0.035
  12160. }
  12161. },
  12162. side: {
  12163. height: math.unit(7 + 7 / 12, "feet"),
  12164. weight: math.unit(267, "lb"),
  12165. name: "Side",
  12166. image: {
  12167. source: "./media/characters/dayza/side.svg",
  12168. extra: 1295 / 1245,
  12169. bottom: 0.05
  12170. }
  12171. },
  12172. back: {
  12173. height: math.unit(7 + 7 / 12, "feet"),
  12174. weight: math.unit(267, "lb"),
  12175. name: "Back",
  12176. image: {
  12177. source: "./media/characters/dayza/back.svg",
  12178. extra: 1241 / 1170
  12179. }
  12180. },
  12181. },
  12182. [
  12183. {
  12184. name: "Normal",
  12185. height: math.unit(7 + 7 / 12, "feet"),
  12186. default: true
  12187. },
  12188. {
  12189. name: "Macro",
  12190. height: math.unit(155, "feet")
  12191. },
  12192. ]
  12193. ))
  12194. characterMakers.push(() => makeCharacter(
  12195. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12196. {
  12197. front: {
  12198. height: math.unit(6 + 5 / 12, "feet"),
  12199. weight: math.unit(160, "lb"),
  12200. name: "Front",
  12201. image: {
  12202. source: "./media/characters/xanthos/front.svg",
  12203. extra: 1,
  12204. bottom: 0.04
  12205. }
  12206. },
  12207. back: {
  12208. height: math.unit(6 + 5 / 12, "feet"),
  12209. weight: math.unit(160, "lb"),
  12210. name: "Back",
  12211. image: {
  12212. source: "./media/characters/xanthos/back.svg",
  12213. extra: 1,
  12214. bottom: 0.03
  12215. }
  12216. },
  12217. hand: {
  12218. height: math.unit(0.928, "feet"),
  12219. name: "Hand",
  12220. image: {
  12221. source: "./media/characters/xanthos/hand.svg"
  12222. }
  12223. },
  12224. foot: {
  12225. height: math.unit(1.286, "feet"),
  12226. name: "Foot",
  12227. image: {
  12228. source: "./media/characters/xanthos/foot.svg"
  12229. }
  12230. },
  12231. },
  12232. [
  12233. {
  12234. name: "Normal",
  12235. height: math.unit(6 + 5 / 12, "feet"),
  12236. default: true
  12237. },
  12238. {
  12239. name: "Normal+",
  12240. height: math.unit(6, "meters")
  12241. },
  12242. {
  12243. name: "Macro",
  12244. height: math.unit(40, "feet")
  12245. },
  12246. {
  12247. name: "Macro+",
  12248. height: math.unit(200, "meters")
  12249. },
  12250. {
  12251. name: "Megamacro",
  12252. height: math.unit(20, "km")
  12253. },
  12254. {
  12255. name: "Megamacro+",
  12256. height: math.unit(100, "km")
  12257. },
  12258. ]
  12259. ))
  12260. characterMakers.push(() => makeCharacter(
  12261. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12262. {
  12263. front: {
  12264. height: math.unit(6 + 3 / 12, "feet"),
  12265. weight: math.unit(215, "lb"),
  12266. name: "Front",
  12267. image: {
  12268. source: "./media/characters/grynn/front.svg",
  12269. extra: 4627 / 4209,
  12270. bottom: 0.047
  12271. }
  12272. },
  12273. },
  12274. [
  12275. {
  12276. name: "Micro",
  12277. height: math.unit(6, "inches")
  12278. },
  12279. {
  12280. name: "Normal",
  12281. height: math.unit(6 + 3 / 12, "feet"),
  12282. default: true
  12283. },
  12284. {
  12285. name: "Big",
  12286. height: math.unit(104, "feet")
  12287. },
  12288. {
  12289. name: "Macro",
  12290. height: math.unit(944, "feet")
  12291. },
  12292. {
  12293. name: "Macro+",
  12294. height: math.unit(9480, "feet")
  12295. },
  12296. {
  12297. name: "Megamacro",
  12298. height: math.unit(78752, "feet")
  12299. },
  12300. {
  12301. name: "Megamacro+",
  12302. height: math.unit(630128, "feet")
  12303. },
  12304. {
  12305. name: "Megamacro++",
  12306. height: math.unit(3150695, "feet")
  12307. },
  12308. ]
  12309. ))
  12310. characterMakers.push(() => makeCharacter(
  12311. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12312. {
  12313. front: {
  12314. height: math.unit(7 + 5 / 12, "feet"),
  12315. weight: math.unit(450, "lb"),
  12316. name: "Front",
  12317. image: {
  12318. source: "./media/characters/mocha-aura/front.svg",
  12319. extra: 1907 / 1817,
  12320. bottom: 0.04
  12321. }
  12322. },
  12323. back: {
  12324. height: math.unit(7 + 5 / 12, "feet"),
  12325. weight: math.unit(450, "lb"),
  12326. name: "Back",
  12327. image: {
  12328. source: "./media/characters/mocha-aura/back.svg",
  12329. extra: 1900 / 1825,
  12330. bottom: 0.045
  12331. }
  12332. },
  12333. },
  12334. [
  12335. {
  12336. name: "Nano",
  12337. height: math.unit(1, "nm")
  12338. },
  12339. {
  12340. name: "Megamicro",
  12341. height: math.unit(1, "mm")
  12342. },
  12343. {
  12344. name: "Micro",
  12345. height: math.unit(3, "inches")
  12346. },
  12347. {
  12348. name: "Normal",
  12349. height: math.unit(7 + 5 / 12, "feet"),
  12350. default: true
  12351. },
  12352. {
  12353. name: "Macro",
  12354. height: math.unit(30, "feet")
  12355. },
  12356. {
  12357. name: "Megamacro",
  12358. height: math.unit(3500, "feet")
  12359. },
  12360. {
  12361. name: "Teramacro",
  12362. height: math.unit(500000, "miles")
  12363. },
  12364. {
  12365. name: "Petamacro",
  12366. height: math.unit(50000000000000000, "parsecs")
  12367. },
  12368. ]
  12369. ))
  12370. characterMakers.push(() => makeCharacter(
  12371. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12372. {
  12373. front: {
  12374. height: math.unit(6, "feet"),
  12375. weight: math.unit(150, "lb"),
  12376. name: "Front",
  12377. image: {
  12378. source: "./media/characters/ilisha-devya/front.svg",
  12379. extra: 1,
  12380. bottom: 0.175
  12381. }
  12382. },
  12383. back: {
  12384. height: math.unit(6, "feet"),
  12385. weight: math.unit(150, "lb"),
  12386. name: "Back",
  12387. image: {
  12388. source: "./media/characters/ilisha-devya/back.svg",
  12389. extra: 1,
  12390. bottom: 0.015
  12391. }
  12392. },
  12393. },
  12394. [
  12395. {
  12396. name: "Macro",
  12397. height: math.unit(500, "feet"),
  12398. default: true
  12399. },
  12400. {
  12401. name: "Megamacro",
  12402. height: math.unit(10, "miles")
  12403. },
  12404. {
  12405. name: "Gigamacro",
  12406. height: math.unit(100000, "miles")
  12407. },
  12408. {
  12409. name: "Examacro",
  12410. height: math.unit(1e9, "lightyears")
  12411. },
  12412. {
  12413. name: "Omniversal",
  12414. height: math.unit(1e33, "lightyears")
  12415. },
  12416. {
  12417. name: "Beyond Infinite",
  12418. height: math.unit(1e100, "lightyears")
  12419. },
  12420. ]
  12421. ))
  12422. characterMakers.push(() => makeCharacter(
  12423. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12424. {
  12425. Side: {
  12426. height: math.unit(6, "feet"),
  12427. weight: math.unit(150, "lb"),
  12428. name: "Side",
  12429. image: {
  12430. source: "./media/characters/mira/side.svg",
  12431. extra: 900 / 799,
  12432. bottom: 0.02
  12433. }
  12434. },
  12435. },
  12436. [
  12437. {
  12438. name: "Human Size",
  12439. height: math.unit(6, "feet")
  12440. },
  12441. {
  12442. name: "Macro",
  12443. height: math.unit(100, "feet"),
  12444. default: true
  12445. },
  12446. {
  12447. name: "Megamacro",
  12448. height: math.unit(10, "miles")
  12449. },
  12450. {
  12451. name: "Gigamacro",
  12452. height: math.unit(25000, "miles")
  12453. },
  12454. {
  12455. name: "Teramacro",
  12456. height: math.unit(300, "AU")
  12457. },
  12458. {
  12459. name: "Full Size",
  12460. height: math.unit(4.5e10, "lightyears")
  12461. },
  12462. ]
  12463. ))
  12464. characterMakers.push(() => makeCharacter(
  12465. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12466. {
  12467. front: {
  12468. height: math.unit(6, "feet"),
  12469. weight: math.unit(150, "lb"),
  12470. name: "Front",
  12471. image: {
  12472. source: "./media/characters/holly/front.svg",
  12473. extra: 639 / 606
  12474. }
  12475. },
  12476. back: {
  12477. height: math.unit(6, "feet"),
  12478. weight: math.unit(150, "lb"),
  12479. name: "Back",
  12480. image: {
  12481. source: "./media/characters/holly/back.svg",
  12482. extra: 623 / 598
  12483. }
  12484. },
  12485. frontWorking: {
  12486. height: math.unit(6, "feet"),
  12487. weight: math.unit(150, "lb"),
  12488. name: "Front (Working)",
  12489. image: {
  12490. source: "./media/characters/holly/front-working.svg",
  12491. extra: 607 / 577,
  12492. bottom: 0.048
  12493. }
  12494. },
  12495. },
  12496. [
  12497. {
  12498. name: "Normal",
  12499. height: math.unit(12 + 3 / 12, "feet"),
  12500. default: true
  12501. },
  12502. ]
  12503. ))
  12504. characterMakers.push(() => makeCharacter(
  12505. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12506. {
  12507. front: {
  12508. height: math.unit(6, "feet"),
  12509. weight: math.unit(150, "lb"),
  12510. name: "Front",
  12511. image: {
  12512. source: "./media/characters/porter/front.svg",
  12513. extra: 1,
  12514. bottom: 0.01
  12515. }
  12516. },
  12517. frontRobes: {
  12518. height: math.unit(6, "feet"),
  12519. weight: math.unit(150, "lb"),
  12520. name: "Front (Robes)",
  12521. image: {
  12522. source: "./media/characters/porter/front-robes.svg",
  12523. extra: 1.01,
  12524. bottom: 0.01
  12525. }
  12526. },
  12527. },
  12528. [
  12529. {
  12530. name: "Normal",
  12531. height: math.unit(11 + 9 / 12, "feet"),
  12532. default: true
  12533. },
  12534. ]
  12535. ))
  12536. characterMakers.push(() => makeCharacter(
  12537. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12538. {
  12539. legendary: {
  12540. height: math.unit(6, "feet"),
  12541. weight: math.unit(150, "lb"),
  12542. name: "Legendary",
  12543. image: {
  12544. source: "./media/characters/lucy/legendary.svg",
  12545. extra: 1355 / 1100,
  12546. bottom: 0.045
  12547. }
  12548. },
  12549. },
  12550. [
  12551. {
  12552. name: "Legendary",
  12553. height: math.unit(86882 * 2, "miles"),
  12554. default: true
  12555. },
  12556. ]
  12557. ))
  12558. characterMakers.push(() => makeCharacter(
  12559. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12560. {
  12561. front: {
  12562. height: math.unit(6, "feet"),
  12563. weight: math.unit(150, "lb"),
  12564. name: "Front",
  12565. image: {
  12566. source: "./media/characters/drusilla/front.svg",
  12567. extra: 678 / 635,
  12568. bottom: 0.03
  12569. }
  12570. },
  12571. back: {
  12572. height: math.unit(6, "feet"),
  12573. weight: math.unit(150, "lb"),
  12574. name: "Back",
  12575. image: {
  12576. source: "./media/characters/drusilla/back.svg",
  12577. extra: 678 / 635,
  12578. bottom: 0.005
  12579. }
  12580. },
  12581. },
  12582. [
  12583. {
  12584. name: "Macro",
  12585. height: math.unit(100, "feet")
  12586. },
  12587. {
  12588. name: "Canon Height",
  12589. height: math.unit(2000, "feet"),
  12590. default: true
  12591. },
  12592. ]
  12593. ))
  12594. characterMakers.push(() => makeCharacter(
  12595. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12596. {
  12597. front: {
  12598. height: math.unit(6, "feet"),
  12599. weight: math.unit(180, "lb"),
  12600. name: "Front",
  12601. image: {
  12602. source: "./media/characters/renard-thatch/front.svg",
  12603. extra: 2411 / 2275,
  12604. bottom: 0.01
  12605. }
  12606. },
  12607. frontPosing: {
  12608. height: math.unit(6, "feet"),
  12609. weight: math.unit(180, "lb"),
  12610. name: "Front (Posing)",
  12611. image: {
  12612. source: "./media/characters/renard-thatch/front-posing.svg",
  12613. extra: 2381 / 2261,
  12614. bottom: 0.01
  12615. }
  12616. },
  12617. back: {
  12618. height: math.unit(6, "feet"),
  12619. weight: math.unit(180, "lb"),
  12620. name: "Back",
  12621. image: {
  12622. source: "./media/characters/renard-thatch/back.svg",
  12623. extra: 2428 / 2288
  12624. }
  12625. },
  12626. },
  12627. [
  12628. {
  12629. name: "Micro",
  12630. height: math.unit(3, "inches")
  12631. },
  12632. {
  12633. name: "Default",
  12634. height: math.unit(6, "feet"),
  12635. default: true
  12636. },
  12637. {
  12638. name: "Macro",
  12639. height: math.unit(75, "feet")
  12640. },
  12641. ]
  12642. ))
  12643. characterMakers.push(() => makeCharacter(
  12644. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12645. {
  12646. front: {
  12647. height: math.unit(1450, "feet"),
  12648. weight: math.unit(1.21e6, "tons"),
  12649. name: "Front",
  12650. image: {
  12651. source: "./media/characters/sekvra/front.svg",
  12652. extra: 1,
  12653. bottom: 0.03
  12654. }
  12655. },
  12656. frontClothed: {
  12657. height: math.unit(1450, "feet"),
  12658. weight: math.unit(1.21e6, "tons"),
  12659. name: "Front (Clothed)",
  12660. image: {
  12661. source: "./media/characters/sekvra/front-clothed.svg",
  12662. extra: 1,
  12663. bottom: 0.03
  12664. }
  12665. },
  12666. side: {
  12667. height: math.unit(1450, "feet"),
  12668. weight: math.unit(1.21e6, "tons"),
  12669. name: "Side",
  12670. image: {
  12671. source: "./media/characters/sekvra/side.svg",
  12672. extra: 1,
  12673. bottom: 0.025
  12674. }
  12675. },
  12676. back: {
  12677. height: math.unit(1450, "feet"),
  12678. weight: math.unit(1.21e6, "tons"),
  12679. name: "Back",
  12680. image: {
  12681. source: "./media/characters/sekvra/back.svg",
  12682. extra: 1,
  12683. bottom: 0.005
  12684. }
  12685. },
  12686. },
  12687. [
  12688. {
  12689. name: "Macro",
  12690. height: math.unit(1450, "feet"),
  12691. default: true
  12692. },
  12693. {
  12694. name: "Megamacro",
  12695. height: math.unit(15000, "feet")
  12696. },
  12697. ]
  12698. ))
  12699. characterMakers.push(() => makeCharacter(
  12700. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12701. {
  12702. front: {
  12703. height: math.unit(6, "feet"),
  12704. weight: math.unit(150, "lb"),
  12705. name: "Front",
  12706. image: {
  12707. source: "./media/characters/carmine/front.svg",
  12708. extra: 1,
  12709. bottom: 0.035
  12710. }
  12711. },
  12712. frontArmor: {
  12713. height: math.unit(6, "feet"),
  12714. weight: math.unit(150, "lb"),
  12715. name: "Front (Armor)",
  12716. image: {
  12717. source: "./media/characters/carmine/front-armor.svg",
  12718. extra: 1,
  12719. bottom: 0.035
  12720. }
  12721. },
  12722. },
  12723. [
  12724. {
  12725. name: "Large",
  12726. height: math.unit(1, "mile")
  12727. },
  12728. {
  12729. name: "Huge",
  12730. height: math.unit(40, "miles"),
  12731. default: true
  12732. },
  12733. {
  12734. name: "Colossal",
  12735. height: math.unit(2500, "miles")
  12736. },
  12737. ]
  12738. ))
  12739. characterMakers.push(() => makeCharacter(
  12740. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12741. {
  12742. front: {
  12743. height: math.unit(6, "feet"),
  12744. weight: math.unit(150, "lb"),
  12745. name: "Front",
  12746. image: {
  12747. source: "./media/characters/elyssia/front.svg",
  12748. extra: 2201 / 2035,
  12749. bottom: 0.05
  12750. }
  12751. },
  12752. frontClothed: {
  12753. height: math.unit(6, "feet"),
  12754. weight: math.unit(150, "lb"),
  12755. name: "Front (Clothed)",
  12756. image: {
  12757. source: "./media/characters/elyssia/front-clothed.svg",
  12758. extra: 2201 / 2035,
  12759. bottom: 0.05
  12760. }
  12761. },
  12762. back: {
  12763. height: math.unit(6, "feet"),
  12764. weight: math.unit(150, "lb"),
  12765. name: "Back",
  12766. image: {
  12767. source: "./media/characters/elyssia/back.svg",
  12768. extra: 2201 / 2035,
  12769. bottom: 0.013
  12770. }
  12771. },
  12772. },
  12773. [
  12774. {
  12775. name: "Smaller",
  12776. height: math.unit(150, "feet")
  12777. },
  12778. {
  12779. name: "Standard",
  12780. height: math.unit(1400, "feet"),
  12781. default: true
  12782. },
  12783. {
  12784. name: "Distracted",
  12785. height: math.unit(15000, "feet")
  12786. },
  12787. ]
  12788. ))
  12789. characterMakers.push(() => makeCharacter(
  12790. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12791. {
  12792. front: {
  12793. height: math.unit(7 + 4 / 12, "feet"),
  12794. weight: math.unit(500, "lb"),
  12795. name: "Front",
  12796. image: {
  12797. source: "./media/characters/geno-maxwell/front.svg",
  12798. extra: 2207 / 2040,
  12799. bottom: 0.015
  12800. }
  12801. },
  12802. },
  12803. [
  12804. {
  12805. name: "Micro",
  12806. height: math.unit(3, "inches")
  12807. },
  12808. {
  12809. name: "Normal",
  12810. height: math.unit(7 + 4 / 12, "feet"),
  12811. default: true
  12812. },
  12813. {
  12814. name: "Macro",
  12815. height: math.unit(220, "feet")
  12816. },
  12817. {
  12818. name: "Megamacro",
  12819. height: math.unit(11, "miles")
  12820. },
  12821. ]
  12822. ))
  12823. characterMakers.push(() => makeCharacter(
  12824. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12825. {
  12826. front: {
  12827. height: math.unit(7 + 4 / 12, "feet"),
  12828. weight: math.unit(500, "lb"),
  12829. name: "Front",
  12830. image: {
  12831. source: "./media/characters/regena-maxwell/front.svg",
  12832. extra: 3115 / 2770,
  12833. bottom: 0.02
  12834. }
  12835. },
  12836. },
  12837. [
  12838. {
  12839. name: "Normal",
  12840. height: math.unit(7 + 4 / 12, "feet"),
  12841. default: true
  12842. },
  12843. {
  12844. name: "Macro",
  12845. height: math.unit(220, "feet")
  12846. },
  12847. {
  12848. name: "Megamacro",
  12849. height: math.unit(11, "miles")
  12850. },
  12851. ]
  12852. ))
  12853. characterMakers.push(() => makeCharacter(
  12854. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12855. {
  12856. front: {
  12857. height: math.unit(6, "feet"),
  12858. weight: math.unit(150, "lb"),
  12859. name: "Front",
  12860. image: {
  12861. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12862. extra: 860 / 690,
  12863. bottom: 0.03
  12864. }
  12865. },
  12866. },
  12867. [
  12868. {
  12869. name: "Normal",
  12870. height: math.unit(1.7, "meters"),
  12871. default: true
  12872. },
  12873. ]
  12874. ))
  12875. characterMakers.push(() => makeCharacter(
  12876. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12877. {
  12878. front: {
  12879. height: math.unit(6, "feet"),
  12880. weight: math.unit(150, "lb"),
  12881. name: "Front",
  12882. image: {
  12883. source: "./media/characters/quilly/front.svg",
  12884. extra: 890 / 776
  12885. }
  12886. },
  12887. },
  12888. [
  12889. {
  12890. name: "Gigamacro",
  12891. height: math.unit(404090, "miles"),
  12892. default: true
  12893. },
  12894. ]
  12895. ))
  12896. characterMakers.push(() => makeCharacter(
  12897. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12898. {
  12899. front: {
  12900. height: math.unit(7 + 8 / 12, "feet"),
  12901. weight: math.unit(350, "lb"),
  12902. name: "Front",
  12903. image: {
  12904. source: "./media/characters/tempest/front.svg",
  12905. extra: 1175 / 1086,
  12906. bottom: 0.02
  12907. }
  12908. },
  12909. },
  12910. [
  12911. {
  12912. name: "Normal",
  12913. height: math.unit(7 + 8 / 12, "feet"),
  12914. default: true
  12915. },
  12916. ]
  12917. ))
  12918. characterMakers.push(() => makeCharacter(
  12919. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12920. {
  12921. side: {
  12922. height: math.unit(4 + 5 / 12, "feet"),
  12923. weight: math.unit(80, "lb"),
  12924. name: "Side",
  12925. image: {
  12926. source: "./media/characters/rodger/side.svg",
  12927. extra: 1235 / 1118
  12928. }
  12929. },
  12930. },
  12931. [
  12932. {
  12933. name: "Micro",
  12934. height: math.unit(1, "inch")
  12935. },
  12936. {
  12937. name: "Normal",
  12938. height: math.unit(4 + 5 / 12, "feet"),
  12939. default: true
  12940. },
  12941. {
  12942. name: "Macro",
  12943. height: math.unit(120, "feet")
  12944. },
  12945. ]
  12946. ))
  12947. characterMakers.push(() => makeCharacter(
  12948. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12949. {
  12950. front: {
  12951. height: math.unit(6, "feet"),
  12952. weight: math.unit(150, "lb"),
  12953. name: "Front",
  12954. image: {
  12955. source: "./media/characters/danyel/front.svg",
  12956. extra: 1185 / 1123,
  12957. bottom: 0.05
  12958. }
  12959. },
  12960. },
  12961. [
  12962. {
  12963. name: "Shrunken",
  12964. height: math.unit(0.5, "mm")
  12965. },
  12966. {
  12967. name: "Micro",
  12968. height: math.unit(1, "mm"),
  12969. default: true
  12970. },
  12971. {
  12972. name: "Upsized",
  12973. height: math.unit(5 + 5 / 12, "feet")
  12974. },
  12975. ]
  12976. ))
  12977. characterMakers.push(() => makeCharacter(
  12978. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  12979. {
  12980. front: {
  12981. height: math.unit(5 + 6 / 12, "feet"),
  12982. weight: math.unit(200, "lb"),
  12983. name: "Front",
  12984. image: {
  12985. source: "./media/characters/vivian-bijoux/front.svg",
  12986. extra: 1,
  12987. bottom: 0.072
  12988. }
  12989. },
  12990. },
  12991. [
  12992. {
  12993. name: "Normal",
  12994. height: math.unit(5 + 6 / 12, "feet"),
  12995. default: true
  12996. },
  12997. {
  12998. name: "Bad Dream",
  12999. height: math.unit(500, "feet")
  13000. },
  13001. {
  13002. name: "Nightmare",
  13003. height: math.unit(500, "miles")
  13004. },
  13005. ]
  13006. ))
  13007. characterMakers.push(() => makeCharacter(
  13008. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13009. {
  13010. front: {
  13011. height: math.unit(6 + 1 / 12, "feet"),
  13012. weight: math.unit(260, "lb"),
  13013. name: "Front",
  13014. image: {
  13015. source: "./media/characters/zeta/front.svg",
  13016. extra: 1968 / 1889,
  13017. bottom: 0.06
  13018. }
  13019. },
  13020. back: {
  13021. height: math.unit(6 + 1 / 12, "feet"),
  13022. weight: math.unit(260, "lb"),
  13023. name: "Back",
  13024. image: {
  13025. source: "./media/characters/zeta/back.svg",
  13026. extra: 1944 / 1858,
  13027. bottom: 0.03
  13028. }
  13029. },
  13030. hand: {
  13031. height: math.unit(1.112, "feet"),
  13032. name: "Hand",
  13033. image: {
  13034. source: "./media/characters/zeta/hand.svg"
  13035. }
  13036. },
  13037. foot: {
  13038. height: math.unit(1.48, "feet"),
  13039. name: "Foot",
  13040. image: {
  13041. source: "./media/characters/zeta/foot.svg"
  13042. }
  13043. },
  13044. },
  13045. [
  13046. {
  13047. name: "Micro",
  13048. height: math.unit(6, "inches")
  13049. },
  13050. {
  13051. name: "Normal",
  13052. height: math.unit(6 + 1 / 12, "feet"),
  13053. default: true
  13054. },
  13055. {
  13056. name: "Macro",
  13057. height: math.unit(20, "feet")
  13058. },
  13059. ]
  13060. ))
  13061. characterMakers.push(() => makeCharacter(
  13062. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13063. {
  13064. front: {
  13065. height: math.unit(6, "feet"),
  13066. weight: math.unit(150, "lb"),
  13067. name: "Front",
  13068. image: {
  13069. source: "./media/characters/jamie-larsen/front.svg",
  13070. extra: 962 / 933,
  13071. bottom: 0.02
  13072. }
  13073. },
  13074. back: {
  13075. height: math.unit(6, "feet"),
  13076. weight: math.unit(150, "lb"),
  13077. name: "Back",
  13078. image: {
  13079. source: "./media/characters/jamie-larsen/back.svg",
  13080. extra: 997 / 946
  13081. }
  13082. },
  13083. },
  13084. [
  13085. {
  13086. name: "Macro",
  13087. height: math.unit(28 + 7 / 12, "feet"),
  13088. default: true
  13089. },
  13090. {
  13091. name: "Macro+",
  13092. height: math.unit(180, "feet")
  13093. },
  13094. {
  13095. name: "Megamacro",
  13096. height: math.unit(10, "miles")
  13097. },
  13098. {
  13099. name: "Gigamacro",
  13100. height: math.unit(200000, "miles")
  13101. },
  13102. ]
  13103. ))
  13104. characterMakers.push(() => makeCharacter(
  13105. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13106. {
  13107. front: {
  13108. height: math.unit(6, "feet"),
  13109. weight: math.unit(120, "lb"),
  13110. name: "Front",
  13111. image: {
  13112. source: "./media/characters/vance/front.svg",
  13113. extra: 1980 / 1890,
  13114. bottom: 0.09
  13115. }
  13116. },
  13117. back: {
  13118. height: math.unit(6, "feet"),
  13119. weight: math.unit(120, "lb"),
  13120. name: "Back",
  13121. image: {
  13122. source: "./media/characters/vance/back.svg",
  13123. extra: 2081 / 1994,
  13124. bottom: 0.014
  13125. }
  13126. },
  13127. hand: {
  13128. height: math.unit(0.88, "feet"),
  13129. name: "Hand",
  13130. image: {
  13131. source: "./media/characters/vance/hand.svg"
  13132. }
  13133. },
  13134. foot: {
  13135. height: math.unit(0.64, "feet"),
  13136. name: "Foot",
  13137. image: {
  13138. source: "./media/characters/vance/foot.svg"
  13139. }
  13140. },
  13141. },
  13142. [
  13143. {
  13144. name: "Small",
  13145. height: math.unit(90, "feet"),
  13146. default: true
  13147. },
  13148. {
  13149. name: "Macro",
  13150. height: math.unit(100, "meters")
  13151. },
  13152. {
  13153. name: "Megamacro",
  13154. height: math.unit(15, "miles")
  13155. },
  13156. ]
  13157. ))
  13158. characterMakers.push(() => makeCharacter(
  13159. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13160. {
  13161. front: {
  13162. height: math.unit(6, "feet"),
  13163. weight: math.unit(180, "lb"),
  13164. name: "Front",
  13165. image: {
  13166. source: "./media/characters/xochitl/front.svg",
  13167. extra: 2297 / 2261,
  13168. bottom: 0.065
  13169. }
  13170. },
  13171. back: {
  13172. height: math.unit(6, "feet"),
  13173. weight: math.unit(180, "lb"),
  13174. name: "Back",
  13175. image: {
  13176. source: "./media/characters/xochitl/back.svg",
  13177. extra: 2386 / 2354,
  13178. bottom: 0.01
  13179. }
  13180. },
  13181. foot: {
  13182. height: math.unit(6 / 5 * 1.15, "feet"),
  13183. weight: math.unit(150, "lb"),
  13184. name: "Foot",
  13185. image: {
  13186. source: "./media/characters/xochitl/foot.svg"
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Macro",
  13193. height: math.unit(80, "feet")
  13194. },
  13195. {
  13196. name: "Macro+",
  13197. height: math.unit(400, "feet"),
  13198. default: true
  13199. },
  13200. {
  13201. name: "Gigamacro",
  13202. height: math.unit(80000, "miles")
  13203. },
  13204. {
  13205. name: "Gigamacro+",
  13206. height: math.unit(400000, "miles")
  13207. },
  13208. {
  13209. name: "Teramacro",
  13210. height: math.unit(300, "AU")
  13211. },
  13212. ]
  13213. ))
  13214. characterMakers.push(() => makeCharacter(
  13215. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13216. {
  13217. front: {
  13218. height: math.unit(6, "feet"),
  13219. weight: math.unit(150, "lb"),
  13220. name: "Front",
  13221. image: {
  13222. source: "./media/characters/vincent/front.svg",
  13223. extra: 1130 / 1080,
  13224. bottom: 0.055
  13225. }
  13226. },
  13227. beak: {
  13228. height: math.unit(6 * 0.1, "feet"),
  13229. name: "Beak",
  13230. image: {
  13231. source: "./media/characters/vincent/beak.svg"
  13232. }
  13233. },
  13234. hand: {
  13235. height: math.unit(6 * 0.85, "feet"),
  13236. weight: math.unit(150, "lb"),
  13237. name: "Hand",
  13238. image: {
  13239. source: "./media/characters/vincent/hand.svg"
  13240. }
  13241. },
  13242. foot: {
  13243. height: math.unit(6 * 0.19, "feet"),
  13244. weight: math.unit(150, "lb"),
  13245. name: "Foot",
  13246. image: {
  13247. source: "./media/characters/vincent/foot.svg"
  13248. }
  13249. },
  13250. },
  13251. [
  13252. {
  13253. name: "Base",
  13254. height: math.unit(6 + 5 / 12, "feet"),
  13255. default: true
  13256. },
  13257. {
  13258. name: "Macro",
  13259. height: math.unit(300, "feet")
  13260. },
  13261. {
  13262. name: "Megamacro",
  13263. height: math.unit(2, "miles")
  13264. },
  13265. {
  13266. name: "Gigamacro",
  13267. height: math.unit(1000, "miles")
  13268. },
  13269. ]
  13270. ))
  13271. characterMakers.push(() => makeCharacter(
  13272. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13273. {
  13274. front: {
  13275. height: math.unit(6 + 2 / 12, "feet"),
  13276. weight: math.unit(265, "lb"),
  13277. name: "Front",
  13278. image: {
  13279. source: "./media/characters/jay/front.svg",
  13280. extra: 1510 / 1430,
  13281. bottom: 0.042
  13282. }
  13283. },
  13284. back: {
  13285. height: math.unit(6 + 2 / 12, "feet"),
  13286. weight: math.unit(265, "lb"),
  13287. name: "Back",
  13288. image: {
  13289. source: "./media/characters/jay/back.svg",
  13290. extra: 1510 / 1430,
  13291. bottom: 0.025
  13292. }
  13293. },
  13294. clothed: {
  13295. height: math.unit(6 + 2 / 12, "feet"),
  13296. weight: math.unit(265, "lb"),
  13297. name: "Front (Clothed)",
  13298. image: {
  13299. source: "./media/characters/jay/clothed.svg",
  13300. extra: 744 / 699,
  13301. bottom: 0.043
  13302. }
  13303. },
  13304. head: {
  13305. height: math.unit(1.772, "feet"),
  13306. name: "Head",
  13307. image: {
  13308. source: "./media/characters/jay/head.svg"
  13309. }
  13310. },
  13311. sizeRay: {
  13312. height: math.unit(1.331, "feet"),
  13313. name: "Size Ray",
  13314. image: {
  13315. source: "./media/characters/jay/size-ray.svg"
  13316. }
  13317. },
  13318. },
  13319. [
  13320. {
  13321. name: "Micro",
  13322. height: math.unit(1, "inch")
  13323. },
  13324. {
  13325. name: "Normal",
  13326. height: math.unit(6 + 2 / 12, "feet"),
  13327. default: true
  13328. },
  13329. {
  13330. name: "Macro",
  13331. height: math.unit(1, "mile")
  13332. },
  13333. {
  13334. name: "Megamacro",
  13335. height: math.unit(100, "miles")
  13336. },
  13337. ]
  13338. ))
  13339. characterMakers.push(() => makeCharacter(
  13340. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13341. {
  13342. front: {
  13343. height: math.unit(2, "meters"),
  13344. weight: math.unit(500, "kg"),
  13345. name: "Front",
  13346. image: {
  13347. source: "./media/characters/coatl/front.svg",
  13348. extra: 3948 / 3500,
  13349. bottom: 0.082
  13350. }
  13351. },
  13352. },
  13353. [
  13354. {
  13355. name: "Normal",
  13356. height: math.unit(4, "meters")
  13357. },
  13358. {
  13359. name: "Macro",
  13360. height: math.unit(100, "meters"),
  13361. default: true
  13362. },
  13363. {
  13364. name: "Macro+",
  13365. height: math.unit(300, "meters")
  13366. },
  13367. {
  13368. name: "Megamacro",
  13369. height: math.unit(3, "gigameters")
  13370. },
  13371. {
  13372. name: "Megamacro+",
  13373. height: math.unit(300, "terameters")
  13374. },
  13375. {
  13376. name: "Megamacro++",
  13377. height: math.unit(3, "lightyears")
  13378. },
  13379. ]
  13380. ))
  13381. characterMakers.push(() => makeCharacter(
  13382. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13383. {
  13384. front: {
  13385. height: math.unit(6, "feet"),
  13386. weight: math.unit(50, "kg"),
  13387. name: "front",
  13388. image: {
  13389. source: "./media/characters/shiroryu/front.svg",
  13390. extra: 1990 / 1935
  13391. }
  13392. },
  13393. },
  13394. [
  13395. {
  13396. name: "Mortal Mingling",
  13397. height: math.unit(3, "meters")
  13398. },
  13399. {
  13400. name: "Kaiju-ish",
  13401. height: math.unit(250, "meters")
  13402. },
  13403. {
  13404. name: "Somewhat Godly",
  13405. height: math.unit(400, "km"),
  13406. default: true
  13407. },
  13408. {
  13409. name: "Planetary",
  13410. height: math.unit(300, "megameters")
  13411. },
  13412. {
  13413. name: "Galaxy-dwarfing",
  13414. height: math.unit(450, "kiloparsecs")
  13415. },
  13416. {
  13417. name: "Universe Eater",
  13418. height: math.unit(150, "gigaparsecs")
  13419. },
  13420. {
  13421. name: "Almost Immeasurable",
  13422. height: math.unit(1.3e266, "yottaparsecs")
  13423. },
  13424. ]
  13425. ))
  13426. characterMakers.push(() => makeCharacter(
  13427. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13428. {
  13429. front: {
  13430. height: math.unit(6, "feet"),
  13431. weight: math.unit(150, "lb"),
  13432. name: "Front",
  13433. image: {
  13434. source: "./media/characters/umeko/front.svg",
  13435. extra: 1,
  13436. bottom: 0.019
  13437. }
  13438. },
  13439. frontArmored: {
  13440. height: math.unit(6, "feet"),
  13441. weight: math.unit(150, "lb"),
  13442. name: "Front (Armored)",
  13443. image: {
  13444. source: "./media/characters/umeko/front-armored.svg",
  13445. extra: 1,
  13446. bottom: 0.021
  13447. }
  13448. },
  13449. },
  13450. [
  13451. {
  13452. name: "Macro",
  13453. height: math.unit(220, "feet"),
  13454. default: true
  13455. },
  13456. {
  13457. name: "Guardian Dragon",
  13458. height: math.unit(50, "miles")
  13459. },
  13460. {
  13461. name: "Cosmic",
  13462. height: math.unit(800000, "miles")
  13463. },
  13464. ]
  13465. ))
  13466. characterMakers.push(() => makeCharacter(
  13467. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13468. {
  13469. front: {
  13470. height: math.unit(6, "feet"),
  13471. weight: math.unit(150, "lb"),
  13472. name: "Front",
  13473. image: {
  13474. source: "./media/characters/cassidy/front.svg",
  13475. extra: 1,
  13476. bottom: 0.043
  13477. }
  13478. },
  13479. },
  13480. [
  13481. {
  13482. name: "Canon Height",
  13483. height: math.unit(120, "feet"),
  13484. default: true
  13485. },
  13486. {
  13487. name: "Macro+",
  13488. height: math.unit(400, "feet")
  13489. },
  13490. {
  13491. name: "Macro++",
  13492. height: math.unit(4000, "feet")
  13493. },
  13494. {
  13495. name: "Megamacro",
  13496. height: math.unit(3, "miles")
  13497. },
  13498. ]
  13499. ))
  13500. characterMakers.push(() => makeCharacter(
  13501. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13502. {
  13503. front: {
  13504. height: math.unit(6, "feet"),
  13505. weight: math.unit(150, "lb"),
  13506. name: "Front",
  13507. image: {
  13508. source: "./media/characters/isaac/front.svg",
  13509. extra: 896 / 815,
  13510. bottom: 0.11
  13511. }
  13512. },
  13513. },
  13514. [
  13515. {
  13516. name: "Human Size",
  13517. height: math.unit(8, "feet"),
  13518. default: true
  13519. },
  13520. {
  13521. name: "Macro",
  13522. height: math.unit(400, "feet")
  13523. },
  13524. {
  13525. name: "Megamacro",
  13526. height: math.unit(50, "miles")
  13527. },
  13528. {
  13529. name: "Canon Height",
  13530. height: math.unit(200, "AU")
  13531. },
  13532. ]
  13533. ))
  13534. characterMakers.push(() => makeCharacter(
  13535. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13536. {
  13537. front: {
  13538. height: math.unit(6, "feet"),
  13539. weight: math.unit(72, "kg"),
  13540. name: "Front",
  13541. image: {
  13542. source: "./media/characters/sleekit/front.svg",
  13543. extra: 4693 / 4487,
  13544. bottom: 0.012
  13545. }
  13546. },
  13547. },
  13548. [
  13549. {
  13550. name: "Minimum Height",
  13551. height: math.unit(10, "meters")
  13552. },
  13553. {
  13554. name: "Smaller",
  13555. height: math.unit(25, "meters")
  13556. },
  13557. {
  13558. name: "Larger",
  13559. height: math.unit(38, "meters"),
  13560. default: true
  13561. },
  13562. {
  13563. name: "Maximum height",
  13564. height: math.unit(100, "meters")
  13565. },
  13566. ]
  13567. ))
  13568. characterMakers.push(() => makeCharacter(
  13569. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13570. {
  13571. front: {
  13572. height: math.unit(6, "feet"),
  13573. weight: math.unit(150, "lb"),
  13574. name: "Front",
  13575. image: {
  13576. source: "./media/characters/nillia/front.svg",
  13577. extra: 2195 / 2037,
  13578. bottom: 0.005
  13579. }
  13580. },
  13581. back: {
  13582. height: math.unit(6, "feet"),
  13583. weight: math.unit(150, "lb"),
  13584. name: "Back",
  13585. image: {
  13586. source: "./media/characters/nillia/back.svg",
  13587. extra: 2195 / 2037,
  13588. bottom: 0.005
  13589. }
  13590. },
  13591. },
  13592. [
  13593. {
  13594. name: "Canon Height",
  13595. height: math.unit(489, "feet"),
  13596. default: true
  13597. }
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(6, "feet"),
  13605. weight: math.unit(150, "lb"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/mesmyriza/front.svg",
  13609. extra: 2067 / 1784,
  13610. bottom: 0.035
  13611. }
  13612. },
  13613. foot: {
  13614. height: math.unit(6 / (250 / 35), "feet"),
  13615. name: "Foot",
  13616. image: {
  13617. source: "./media/characters/mesmyriza/foot.svg"
  13618. }
  13619. },
  13620. },
  13621. [
  13622. {
  13623. name: "Macro",
  13624. height: math.unit(457, "meters"),
  13625. default: true
  13626. },
  13627. {
  13628. name: "Megamacro",
  13629. height: math.unit(8, "megameters")
  13630. },
  13631. ]
  13632. ))
  13633. characterMakers.push(() => makeCharacter(
  13634. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13635. {
  13636. front: {
  13637. height: math.unit(6, "feet"),
  13638. weight: math.unit(250, "lb"),
  13639. name: "Front",
  13640. image: {
  13641. source: "./media/characters/saudade/front.svg",
  13642. extra: 1172 / 1139,
  13643. bottom: 0.035
  13644. }
  13645. },
  13646. },
  13647. [
  13648. {
  13649. name: "Micro",
  13650. height: math.unit(3, "inches")
  13651. },
  13652. {
  13653. name: "Normal",
  13654. height: math.unit(6, "feet"),
  13655. default: true
  13656. },
  13657. {
  13658. name: "Macro",
  13659. height: math.unit(50, "feet")
  13660. },
  13661. {
  13662. name: "Megamacro",
  13663. height: math.unit(2800, "feet")
  13664. },
  13665. ]
  13666. ))
  13667. characterMakers.push(() => makeCharacter(
  13668. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13669. {
  13670. front: {
  13671. height: math.unit(5 + 4 / 12, "feet"),
  13672. weight: math.unit(100, "lb"),
  13673. name: "Front",
  13674. image: {
  13675. source: "./media/characters/keireer/front.svg",
  13676. extra: 716 / 666,
  13677. bottom: 0.05
  13678. }
  13679. },
  13680. },
  13681. [
  13682. {
  13683. name: "Normal",
  13684. height: math.unit(5 + 4 / 12, "feet"),
  13685. default: true
  13686. },
  13687. ]
  13688. ))
  13689. characterMakers.push(() => makeCharacter(
  13690. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13691. {
  13692. front: {
  13693. height: math.unit(6, "feet"),
  13694. weight: math.unit(90, "kg"),
  13695. name: "Front",
  13696. image: {
  13697. source: "./media/characters/mirja/front.svg",
  13698. extra: 1789 / 1683,
  13699. bottom: 0.05
  13700. }
  13701. },
  13702. frontDressed: {
  13703. height: math.unit(6, "feet"),
  13704. weight: math.unit(90, "lb"),
  13705. name: "Front (Dressed)",
  13706. image: {
  13707. source: "./media/characters/mirja/front-dressed.svg",
  13708. extra: 1789 / 1683,
  13709. bottom: 0.05
  13710. }
  13711. },
  13712. back: {
  13713. height: math.unit(6, "feet"),
  13714. weight: math.unit(90, "lb"),
  13715. name: "Back",
  13716. image: {
  13717. source: "./media/characters/mirja/back.svg",
  13718. extra: 953 / 917,
  13719. bottom: 0.017
  13720. }
  13721. },
  13722. },
  13723. [
  13724. {
  13725. name: "\"Incognito\"",
  13726. height: math.unit(3, "meters")
  13727. },
  13728. {
  13729. name: "Strolling Size",
  13730. height: math.unit(15, "km")
  13731. },
  13732. {
  13733. name: "Larger Strolling Size",
  13734. height: math.unit(400, "km")
  13735. },
  13736. {
  13737. name: "Preferred Size",
  13738. height: math.unit(5000, "km")
  13739. },
  13740. {
  13741. name: "True Size",
  13742. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13743. default: true
  13744. },
  13745. ]
  13746. ))
  13747. characterMakers.push(() => makeCharacter(
  13748. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13749. {
  13750. front: {
  13751. height: math.unit(15, "feet"),
  13752. weight: math.unit(880, "kg"),
  13753. name: "Front",
  13754. image: {
  13755. source: "./media/characters/nightraver/front.svg",
  13756. extra: 2444 / 2160,
  13757. bottom: 0.027
  13758. }
  13759. },
  13760. back: {
  13761. height: math.unit(15, "feet"),
  13762. weight: math.unit(880, "kg"),
  13763. name: "Back",
  13764. image: {
  13765. source: "./media/characters/nightraver/back.svg",
  13766. extra: 2309 / 2180,
  13767. bottom: 0.005
  13768. }
  13769. },
  13770. sole: {
  13771. height: math.unit(2.878, "feet"),
  13772. name: "Sole",
  13773. image: {
  13774. source: "./media/characters/nightraver/sole.svg"
  13775. }
  13776. },
  13777. foot: {
  13778. height: math.unit(2.285, "feet"),
  13779. name: "Foot",
  13780. image: {
  13781. source: "./media/characters/nightraver/foot.svg"
  13782. }
  13783. },
  13784. maw: {
  13785. height: math.unit(2.67, "feet"),
  13786. name: "Maw",
  13787. image: {
  13788. source: "./media/characters/nightraver/maw.svg"
  13789. }
  13790. },
  13791. },
  13792. [
  13793. {
  13794. name: "Micro",
  13795. height: math.unit(1, "cm")
  13796. },
  13797. {
  13798. name: "Normal",
  13799. height: math.unit(15, "feet"),
  13800. default: true
  13801. },
  13802. {
  13803. name: "Macro",
  13804. height: math.unit(300, "feet")
  13805. },
  13806. {
  13807. name: "Megamacro",
  13808. height: math.unit(300, "miles")
  13809. },
  13810. {
  13811. name: "Gigamacro",
  13812. height: math.unit(10000, "miles")
  13813. },
  13814. ]
  13815. ))
  13816. characterMakers.push(() => makeCharacter(
  13817. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13818. {
  13819. side: {
  13820. height: math.unit(2, "inches"),
  13821. weight: math.unit(5, "grams"),
  13822. name: "Side",
  13823. image: {
  13824. source: "./media/characters/arc/side.svg"
  13825. }
  13826. },
  13827. },
  13828. [
  13829. {
  13830. name: "Micro",
  13831. height: math.unit(2, "inches"),
  13832. default: true
  13833. },
  13834. ]
  13835. ))
  13836. characterMakers.push(() => makeCharacter(
  13837. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13838. {
  13839. front: {
  13840. height: math.unit(1.1938, "meters"),
  13841. weight: math.unit(54, "kg"),
  13842. name: "Front",
  13843. image: {
  13844. source: "./media/characters/nebula-shahar/front.svg",
  13845. extra: 1642 / 1436,
  13846. bottom: 0.06
  13847. }
  13848. },
  13849. },
  13850. [
  13851. {
  13852. name: "Megamicro",
  13853. height: math.unit(0.3, "mm")
  13854. },
  13855. {
  13856. name: "Micro",
  13857. height: math.unit(3, "cm")
  13858. },
  13859. {
  13860. name: "Normal",
  13861. height: math.unit(138, "cm"),
  13862. default: true
  13863. },
  13864. {
  13865. name: "Macro",
  13866. height: math.unit(30, "m")
  13867. },
  13868. ]
  13869. ))
  13870. characterMakers.push(() => makeCharacter(
  13871. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13872. {
  13873. front: {
  13874. height: math.unit(5.24, "feet"),
  13875. weight: math.unit(150, "lb"),
  13876. name: "Front",
  13877. image: {
  13878. source: "./media/characters/shayla/front.svg",
  13879. extra: 1512 / 1414,
  13880. bottom: 0.01
  13881. }
  13882. },
  13883. back: {
  13884. height: math.unit(5.24, "feet"),
  13885. weight: math.unit(150, "lb"),
  13886. name: "Back",
  13887. image: {
  13888. source: "./media/characters/shayla/back.svg",
  13889. extra: 1512 / 1414
  13890. }
  13891. },
  13892. hand: {
  13893. height: math.unit(0.7781496062992126, "feet"),
  13894. name: "Hand",
  13895. image: {
  13896. source: "./media/characters/shayla/hand.svg"
  13897. }
  13898. },
  13899. foot: {
  13900. height: math.unit(1.4206036745406823, "feet"),
  13901. name: "Foot",
  13902. image: {
  13903. source: "./media/characters/shayla/foot.svg"
  13904. }
  13905. },
  13906. },
  13907. [
  13908. {
  13909. name: "Micro",
  13910. height: math.unit(0.32, "feet")
  13911. },
  13912. {
  13913. name: "Normal",
  13914. height: math.unit(5.24, "feet"),
  13915. default: true
  13916. },
  13917. {
  13918. name: "Macro",
  13919. height: math.unit(492.12, "feet")
  13920. },
  13921. {
  13922. name: "Megamacro",
  13923. height: math.unit(186.41, "miles")
  13924. },
  13925. ]
  13926. ))
  13927. characterMakers.push(() => makeCharacter(
  13928. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13929. {
  13930. front: {
  13931. height: math.unit(2.2, "m"),
  13932. weight: math.unit(120, "kg"),
  13933. name: "Front",
  13934. image: {
  13935. source: "./media/characters/pia-jr/front.svg",
  13936. extra: 1000 / 970,
  13937. bottom: 0.035
  13938. }
  13939. },
  13940. hand: {
  13941. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13942. name: "Hand",
  13943. image: {
  13944. source: "./media/characters/pia-jr/hand.svg"
  13945. }
  13946. },
  13947. paw: {
  13948. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13949. name: "Paw",
  13950. image: {
  13951. source: "./media/characters/pia-jr/paw.svg"
  13952. }
  13953. },
  13954. },
  13955. [
  13956. {
  13957. name: "Micro",
  13958. height: math.unit(1.2, "cm")
  13959. },
  13960. {
  13961. name: "Normal",
  13962. height: math.unit(2.2, "m"),
  13963. default: true
  13964. },
  13965. {
  13966. name: "Macro",
  13967. height: math.unit(180, "m")
  13968. },
  13969. {
  13970. name: "Megamacro",
  13971. height: math.unit(420, "km")
  13972. },
  13973. ]
  13974. ))
  13975. characterMakers.push(() => makeCharacter(
  13976. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  13977. {
  13978. front: {
  13979. height: math.unit(2, "m"),
  13980. weight: math.unit(115, "kg"),
  13981. name: "Front",
  13982. image: {
  13983. source: "./media/characters/pia-sr/front.svg",
  13984. extra: 760 / 730,
  13985. bottom: 0.015
  13986. }
  13987. },
  13988. back: {
  13989. height: math.unit(2, "m"),
  13990. weight: math.unit(115, "kg"),
  13991. name: "Back",
  13992. image: {
  13993. source: "./media/characters/pia-sr/back.svg",
  13994. extra: 760 / 730,
  13995. bottom: 0.01
  13996. }
  13997. },
  13998. hand: {
  13999. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14000. name: "Hand",
  14001. image: {
  14002. source: "./media/characters/pia-sr/hand.svg"
  14003. }
  14004. },
  14005. foot: {
  14006. height: math.unit(1.83, "feet"),
  14007. name: "Foot",
  14008. image: {
  14009. source: "./media/characters/pia-sr/foot.svg"
  14010. }
  14011. },
  14012. },
  14013. [
  14014. {
  14015. name: "Micro",
  14016. height: math.unit(88, "mm")
  14017. },
  14018. {
  14019. name: "Normal",
  14020. height: math.unit(2, "m"),
  14021. default: true
  14022. },
  14023. {
  14024. name: "Macro",
  14025. height: math.unit(200, "m")
  14026. },
  14027. {
  14028. name: "Megamacro",
  14029. height: math.unit(420, "km")
  14030. },
  14031. ]
  14032. ))
  14033. characterMakers.push(() => makeCharacter(
  14034. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14035. {
  14036. front: {
  14037. height: math.unit(8 + 2 / 12, "feet"),
  14038. weight: math.unit(300, "lb"),
  14039. name: "Front",
  14040. image: {
  14041. source: "./media/characters/kibibyte/front.svg",
  14042. extra: 2221 / 2098,
  14043. bottom: 0.04
  14044. }
  14045. },
  14046. },
  14047. [
  14048. {
  14049. name: "Normal",
  14050. height: math.unit(8 + 2 / 12, "feet"),
  14051. default: true
  14052. },
  14053. {
  14054. name: "Socialable Macro",
  14055. height: math.unit(50, "feet")
  14056. },
  14057. {
  14058. name: "Macro",
  14059. height: math.unit(300, "feet")
  14060. },
  14061. {
  14062. name: "Megamacro",
  14063. height: math.unit(500, "miles")
  14064. },
  14065. ]
  14066. ))
  14067. characterMakers.push(() => makeCharacter(
  14068. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14069. {
  14070. front: {
  14071. height: math.unit(6, "feet"),
  14072. weight: math.unit(150, "lb"),
  14073. name: "Front",
  14074. image: {
  14075. source: "./media/characters/felix/front.svg",
  14076. extra: 762 / 722,
  14077. bottom: 0.02
  14078. }
  14079. },
  14080. frontClothed: {
  14081. height: math.unit(6, "feet"),
  14082. weight: math.unit(150, "lb"),
  14083. name: "Front (Clothed)",
  14084. image: {
  14085. source: "./media/characters/felix/front-clothed.svg",
  14086. extra: 762 / 722,
  14087. bottom: 0.02
  14088. }
  14089. },
  14090. },
  14091. [
  14092. {
  14093. name: "Normal",
  14094. height: math.unit(6 + 8 / 12, "feet"),
  14095. default: true
  14096. },
  14097. {
  14098. name: "Macro",
  14099. height: math.unit(2600, "feet")
  14100. },
  14101. {
  14102. name: "Megamacro",
  14103. height: math.unit(450, "miles")
  14104. },
  14105. ]
  14106. ))
  14107. characterMakers.push(() => makeCharacter(
  14108. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14109. {
  14110. front: {
  14111. height: math.unit(6 + 1 / 12, "feet"),
  14112. weight: math.unit(250, "lb"),
  14113. name: "Front",
  14114. image: {
  14115. source: "./media/characters/tobo/front.svg",
  14116. extra: 608 / 586,
  14117. bottom: 0.023
  14118. }
  14119. },
  14120. back: {
  14121. height: math.unit(6 + 1 / 12, "feet"),
  14122. weight: math.unit(250, "lb"),
  14123. name: "Back",
  14124. image: {
  14125. source: "./media/characters/tobo/back.svg",
  14126. extra: 608 / 586
  14127. }
  14128. },
  14129. },
  14130. [
  14131. {
  14132. name: "Nano",
  14133. height: math.unit(2, "nm")
  14134. },
  14135. {
  14136. name: "Megamicro",
  14137. height: math.unit(0.1, "mm")
  14138. },
  14139. {
  14140. name: "Micro",
  14141. height: math.unit(1, "inch"),
  14142. default: true
  14143. },
  14144. {
  14145. name: "Human-sized",
  14146. height: math.unit(6 + 1 / 12, "feet")
  14147. },
  14148. {
  14149. name: "Macro",
  14150. height: math.unit(250, "feet")
  14151. },
  14152. {
  14153. name: "Megamacro",
  14154. height: math.unit(75, "miles")
  14155. },
  14156. {
  14157. name: "Texas-sized",
  14158. height: math.unit(750, "miles")
  14159. },
  14160. {
  14161. name: "Teramacro",
  14162. height: math.unit(50000, "miles")
  14163. },
  14164. ]
  14165. ))
  14166. characterMakers.push(() => makeCharacter(
  14167. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14168. {
  14169. front: {
  14170. height: math.unit(6, "feet"),
  14171. weight: math.unit(269, "lb"),
  14172. name: "Front",
  14173. image: {
  14174. source: "./media/characters/danny-kapowsky/front.svg",
  14175. extra: 766 / 736,
  14176. bottom: 0.044
  14177. }
  14178. },
  14179. back: {
  14180. height: math.unit(6, "feet"),
  14181. weight: math.unit(269, "lb"),
  14182. name: "Back",
  14183. image: {
  14184. source: "./media/characters/danny-kapowsky/back.svg",
  14185. extra: 797 / 760,
  14186. bottom: 0.025
  14187. }
  14188. },
  14189. },
  14190. [
  14191. {
  14192. name: "Macro",
  14193. height: math.unit(150, "feet"),
  14194. default: true
  14195. },
  14196. {
  14197. name: "Macro+",
  14198. height: math.unit(200, "feet")
  14199. },
  14200. {
  14201. name: "Macro++",
  14202. height: math.unit(300, "feet")
  14203. },
  14204. {
  14205. name: "Macro+++",
  14206. height: math.unit(400, "feet")
  14207. },
  14208. ]
  14209. ))
  14210. characterMakers.push(() => makeCharacter(
  14211. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14212. {
  14213. side: {
  14214. height: math.unit(6, "feet"),
  14215. weight: math.unit(170, "lb"),
  14216. name: "Side",
  14217. image: {
  14218. source: "./media/characters/finn/side.svg",
  14219. extra: 1953 / 1807,
  14220. bottom: 0.057
  14221. }
  14222. },
  14223. },
  14224. [
  14225. {
  14226. name: "Megamacro",
  14227. height: math.unit(14445, "feet"),
  14228. default: true
  14229. },
  14230. ]
  14231. ))
  14232. characterMakers.push(() => makeCharacter(
  14233. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14234. {
  14235. front: {
  14236. height: math.unit(5 + 6 / 12, "feet"),
  14237. weight: math.unit(125, "lb"),
  14238. name: "Front",
  14239. image: {
  14240. source: "./media/characters/roy/front.svg",
  14241. extra: 1,
  14242. bottom: 0.11
  14243. }
  14244. },
  14245. },
  14246. [
  14247. {
  14248. name: "Micro",
  14249. height: math.unit(3, "inches"),
  14250. default: true
  14251. },
  14252. {
  14253. name: "Normal",
  14254. height: math.unit(5 + 6 / 12, "feet")
  14255. },
  14256. {
  14257. name: "Lesser Macro",
  14258. height: math.unit(60, "feet")
  14259. },
  14260. {
  14261. name: "Greater Macro",
  14262. height: math.unit(120, "feet")
  14263. },
  14264. ]
  14265. ))
  14266. characterMakers.push(() => makeCharacter(
  14267. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14268. {
  14269. front: {
  14270. height: math.unit(6, "feet"),
  14271. weight: math.unit(100, "lb"),
  14272. name: "Front",
  14273. image: {
  14274. source: "./media/characters/aevsivs/front.svg",
  14275. extra: 1,
  14276. bottom: 0.03
  14277. }
  14278. },
  14279. back: {
  14280. height: math.unit(6, "feet"),
  14281. weight: math.unit(100, "lb"),
  14282. name: "Back",
  14283. image: {
  14284. source: "./media/characters/aevsivs/back.svg"
  14285. }
  14286. },
  14287. },
  14288. [
  14289. {
  14290. name: "Micro",
  14291. height: math.unit(2, "inches"),
  14292. default: true
  14293. },
  14294. {
  14295. name: "Normal",
  14296. height: math.unit(5, "feet")
  14297. },
  14298. ]
  14299. ))
  14300. characterMakers.push(() => makeCharacter(
  14301. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14302. {
  14303. front: {
  14304. height: math.unit(5 + 7 / 12, "feet"),
  14305. weight: math.unit(159, "lb"),
  14306. name: "Front",
  14307. image: {
  14308. source: "./media/characters/hildegard/front.svg",
  14309. extra: 289 / 269,
  14310. bottom: 7.63 / 297.8
  14311. }
  14312. },
  14313. back: {
  14314. height: math.unit(5 + 7 / 12, "feet"),
  14315. weight: math.unit(159, "lb"),
  14316. name: "Back",
  14317. image: {
  14318. source: "./media/characters/hildegard/back.svg",
  14319. extra: 280 / 260,
  14320. bottom: 2.3 / 282
  14321. }
  14322. },
  14323. },
  14324. [
  14325. {
  14326. name: "Normal",
  14327. height: math.unit(5 + 7 / 12, "feet"),
  14328. default: true
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14334. {
  14335. bernard: {
  14336. height: math.unit(2 + 7 / 12, "feet"),
  14337. weight: math.unit(66, "lb"),
  14338. name: "Bernard",
  14339. rename: true,
  14340. image: {
  14341. source: "./media/characters/bernard-wilder/bernard.svg",
  14342. extra: 192 / 128,
  14343. bottom: 0.05
  14344. }
  14345. },
  14346. wilder: {
  14347. height: math.unit(5 + 8 / 12, "feet"),
  14348. weight: math.unit(143, "lb"),
  14349. name: "Wilder",
  14350. rename: true,
  14351. image: {
  14352. source: "./media/characters/bernard-wilder/wilder.svg",
  14353. extra: 361 / 312,
  14354. bottom: 0.02
  14355. }
  14356. },
  14357. },
  14358. [
  14359. {
  14360. name: "Normal",
  14361. height: math.unit(2 + 7 / 12, "feet"),
  14362. default: true
  14363. },
  14364. ]
  14365. ))
  14366. characterMakers.push(() => makeCharacter(
  14367. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14368. {
  14369. anthro: {
  14370. height: math.unit(6 + 1 / 12, "feet"),
  14371. weight: math.unit(155, "lb"),
  14372. name: "Anthro",
  14373. image: {
  14374. source: "./media/characters/hearth/anthro.svg",
  14375. extra: 260 / 250,
  14376. bottom: 0.02
  14377. }
  14378. },
  14379. feral: {
  14380. height: math.unit(3.78, "feet"),
  14381. weight: math.unit(35, "kg"),
  14382. name: "Feral",
  14383. image: {
  14384. source: "./media/characters/hearth/feral.svg",
  14385. extra: 153 / 135,
  14386. bottom: 0.03
  14387. }
  14388. },
  14389. },
  14390. [
  14391. {
  14392. name: "Normal",
  14393. height: math.unit(6 + 1 / 12, "feet"),
  14394. default: true
  14395. },
  14396. ]
  14397. ))
  14398. characterMakers.push(() => makeCharacter(
  14399. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14400. {
  14401. front: {
  14402. height: math.unit(6, "feet"),
  14403. weight: math.unit(182, "lb"),
  14404. name: "Front",
  14405. image: {
  14406. source: "./media/characters/ingrid/front.svg",
  14407. extra: 294 / 268,
  14408. bottom: 0.027
  14409. }
  14410. },
  14411. },
  14412. [
  14413. {
  14414. name: "Normal",
  14415. height: math.unit(6, "feet"),
  14416. default: true
  14417. },
  14418. ]
  14419. ))
  14420. characterMakers.push(() => makeCharacter(
  14421. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14422. {
  14423. eevee: {
  14424. height: math.unit(2 + 10 / 12, "feet"),
  14425. weight: math.unit(86, "lb"),
  14426. name: "Malgam",
  14427. image: {
  14428. source: "./media/characters/malgam/eevee.svg",
  14429. extra: 218 / 180,
  14430. bottom: 0.2
  14431. }
  14432. },
  14433. sylveon: {
  14434. height: math.unit(4, "feet"),
  14435. weight: math.unit(101, "lb"),
  14436. name: "Future Malgam",
  14437. rename: true,
  14438. image: {
  14439. source: "./media/characters/malgam/sylveon.svg",
  14440. extra: 371 / 325,
  14441. bottom: 0.015
  14442. }
  14443. },
  14444. gigantamax: {
  14445. height: math.unit(50, "feet"),
  14446. name: "Gigantamax Malgam",
  14447. rename: true,
  14448. image: {
  14449. source: "./media/characters/malgam/gigantamax.svg"
  14450. }
  14451. },
  14452. },
  14453. [
  14454. {
  14455. name: "Normal",
  14456. height: math.unit(2 + 10 / 12, "feet"),
  14457. default: true
  14458. },
  14459. ]
  14460. ))
  14461. characterMakers.push(() => makeCharacter(
  14462. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14463. {
  14464. front: {
  14465. height: math.unit(5 + 11 / 12, "feet"),
  14466. weight: math.unit(188, "lb"),
  14467. name: "Front",
  14468. image: {
  14469. source: "./media/characters/fleur/front.svg",
  14470. extra: 309 / 283,
  14471. bottom: 0.007
  14472. }
  14473. },
  14474. },
  14475. [
  14476. {
  14477. name: "Normal",
  14478. height: math.unit(5 + 11 / 12, "feet"),
  14479. default: true
  14480. },
  14481. ]
  14482. ))
  14483. characterMakers.push(() => makeCharacter(
  14484. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14485. {
  14486. front: {
  14487. height: math.unit(5 + 4 / 12, "feet"),
  14488. weight: math.unit(122, "lb"),
  14489. name: "Front",
  14490. image: {
  14491. source: "./media/characters/jude/front.svg",
  14492. extra: 288 / 273,
  14493. bottom: 0.03
  14494. }
  14495. },
  14496. },
  14497. [
  14498. {
  14499. name: "Normal",
  14500. height: math.unit(5 + 4 / 12, "feet"),
  14501. default: true
  14502. },
  14503. ]
  14504. ))
  14505. characterMakers.push(() => makeCharacter(
  14506. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14507. {
  14508. front: {
  14509. height: math.unit(5 + 11 / 12, "feet"),
  14510. weight: math.unit(190, "lb"),
  14511. name: "Front",
  14512. image: {
  14513. source: "./media/characters/seara/front.svg",
  14514. extra: 1,
  14515. bottom: 0.05
  14516. }
  14517. },
  14518. },
  14519. [
  14520. {
  14521. name: "Normal",
  14522. height: math.unit(5 + 11 / 12, "feet"),
  14523. default: true
  14524. },
  14525. ]
  14526. ))
  14527. characterMakers.push(() => makeCharacter(
  14528. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14529. {
  14530. front: {
  14531. height: math.unit(16 + 5 / 12, "feet"),
  14532. weight: math.unit(524, "lb"),
  14533. name: "Front",
  14534. image: {
  14535. source: "./media/characters/caspian/front.svg",
  14536. extra: 1,
  14537. bottom: 0.04
  14538. }
  14539. },
  14540. },
  14541. [
  14542. {
  14543. name: "Normal",
  14544. height: math.unit(16 + 5 / 12, "feet"),
  14545. default: true
  14546. },
  14547. ]
  14548. ))
  14549. characterMakers.push(() => makeCharacter(
  14550. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14551. {
  14552. front: {
  14553. height: math.unit(5 + 7 / 12, "feet"),
  14554. weight: math.unit(170, "lb"),
  14555. name: "Front",
  14556. image: {
  14557. source: "./media/characters/mika/front.svg",
  14558. extra: 1,
  14559. bottom: 0.016
  14560. }
  14561. },
  14562. },
  14563. [
  14564. {
  14565. name: "Normal",
  14566. height: math.unit(5 + 7 / 12, "feet"),
  14567. default: true
  14568. },
  14569. ]
  14570. ))
  14571. characterMakers.push(() => makeCharacter(
  14572. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14573. {
  14574. front: {
  14575. height: math.unit(6 + 2 / 12, "feet"),
  14576. weight: math.unit(268, "lb"),
  14577. name: "Front",
  14578. image: {
  14579. source: "./media/characters/sol/front.svg",
  14580. extra: 247 / 231,
  14581. bottom: 0.05
  14582. }
  14583. },
  14584. },
  14585. [
  14586. {
  14587. name: "Normal",
  14588. height: math.unit(6 + 2 / 12, "feet"),
  14589. default: true
  14590. },
  14591. ]
  14592. ))
  14593. characterMakers.push(() => makeCharacter(
  14594. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14595. {
  14596. buizel: {
  14597. height: math.unit(2 + 5 / 12, "feet"),
  14598. weight: math.unit(87, "lb"),
  14599. name: "Buizel",
  14600. image: {
  14601. source: "./media/characters/umiko/buizel.svg",
  14602. extra: 172 / 157,
  14603. bottom: 0.01
  14604. }
  14605. },
  14606. floatzel: {
  14607. height: math.unit(5 + 9 / 12, "feet"),
  14608. weight: math.unit(250, "lb"),
  14609. name: "Floatzel",
  14610. image: {
  14611. source: "./media/characters/umiko/floatzel.svg",
  14612. extra: 262 / 248
  14613. }
  14614. },
  14615. },
  14616. [
  14617. {
  14618. name: "Normal",
  14619. height: math.unit(2 + 5 / 12, "feet"),
  14620. default: true
  14621. },
  14622. ]
  14623. ))
  14624. characterMakers.push(() => makeCharacter(
  14625. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14626. {
  14627. front: {
  14628. height: math.unit(6 + 2 / 12, "feet"),
  14629. weight: math.unit(146, "lb"),
  14630. name: "Front",
  14631. image: {
  14632. source: "./media/characters/iliac/front.svg",
  14633. extra: 389 / 365,
  14634. bottom: 0.035
  14635. }
  14636. },
  14637. },
  14638. [
  14639. {
  14640. name: "Normal",
  14641. height: math.unit(6 + 2 / 12, "feet"),
  14642. default: true
  14643. },
  14644. ]
  14645. ))
  14646. characterMakers.push(() => makeCharacter(
  14647. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14648. {
  14649. front: {
  14650. height: math.unit(6, "feet"),
  14651. weight: math.unit(170, "lb"),
  14652. name: "Front",
  14653. image: {
  14654. source: "./media/characters/topaz/front.svg",
  14655. extra: 317 / 303,
  14656. bottom: 0.055
  14657. }
  14658. },
  14659. },
  14660. [
  14661. {
  14662. name: "Normal",
  14663. height: math.unit(6, "feet"),
  14664. default: true
  14665. },
  14666. ]
  14667. ))
  14668. characterMakers.push(() => makeCharacter(
  14669. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14670. {
  14671. front: {
  14672. height: math.unit(5 + 11 / 12, "feet"),
  14673. weight: math.unit(144, "lb"),
  14674. name: "Front",
  14675. image: {
  14676. source: "./media/characters/gabriel/front.svg",
  14677. extra: 285 / 262,
  14678. bottom: 0.004
  14679. }
  14680. },
  14681. },
  14682. [
  14683. {
  14684. name: "Normal",
  14685. height: math.unit(5 + 11 / 12, "feet"),
  14686. default: true
  14687. },
  14688. ]
  14689. ))
  14690. characterMakers.push(() => makeCharacter(
  14691. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14692. {
  14693. side: {
  14694. height: math.unit(6 + 5 / 12, "feet"),
  14695. weight: math.unit(300, "lb"),
  14696. name: "Side",
  14697. image: {
  14698. source: "./media/characters/tempest-suicune/side.svg",
  14699. extra: 195 / 154,
  14700. bottom: 0.04
  14701. }
  14702. },
  14703. },
  14704. [
  14705. {
  14706. name: "Normal",
  14707. height: math.unit(6 + 5 / 12, "feet"),
  14708. default: true
  14709. },
  14710. ]
  14711. ))
  14712. characterMakers.push(() => makeCharacter(
  14713. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14714. {
  14715. front: {
  14716. height: math.unit(7 + 2 / 12, "feet"),
  14717. weight: math.unit(322, "lb"),
  14718. name: "Front",
  14719. image: {
  14720. source: "./media/characters/vulcan/front.svg",
  14721. extra: 154 / 147,
  14722. bottom: 0.04
  14723. }
  14724. },
  14725. },
  14726. [
  14727. {
  14728. name: "Normal",
  14729. height: math.unit(7 + 2 / 12, "feet"),
  14730. default: true
  14731. },
  14732. ]
  14733. ))
  14734. characterMakers.push(() => makeCharacter(
  14735. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14736. {
  14737. front: {
  14738. height: math.unit(5 + 10 / 12, "feet"),
  14739. weight: math.unit(264, "lb"),
  14740. name: "Front",
  14741. image: {
  14742. source: "./media/characters/gault/front.svg",
  14743. extra: 161 / 140,
  14744. bottom: 0.028
  14745. }
  14746. },
  14747. },
  14748. [
  14749. {
  14750. name: "Normal",
  14751. height: math.unit(5 + 10 / 12, "feet"),
  14752. default: true
  14753. },
  14754. ]
  14755. ))
  14756. characterMakers.push(() => makeCharacter(
  14757. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14758. {
  14759. front: {
  14760. height: math.unit(6, "feet"),
  14761. weight: math.unit(150, "lb"),
  14762. name: "Front",
  14763. image: {
  14764. source: "./media/characters/shard/front.svg",
  14765. extra: 273 / 238,
  14766. bottom: 0.02
  14767. }
  14768. },
  14769. },
  14770. [
  14771. {
  14772. name: "Normal",
  14773. height: math.unit(3 + 6 / 12, "feet"),
  14774. default: true
  14775. },
  14776. ]
  14777. ))
  14778. characterMakers.push(() => makeCharacter(
  14779. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14780. {
  14781. front: {
  14782. height: math.unit(5 + 11 / 12, "feet"),
  14783. weight: math.unit(146, "lb"),
  14784. name: "Front",
  14785. image: {
  14786. source: "./media/characters/ashe/front.svg",
  14787. extra: 400 / 373,
  14788. bottom: 0.01
  14789. }
  14790. },
  14791. },
  14792. [
  14793. {
  14794. name: "Normal",
  14795. height: math.unit(5 + 11 / 12, "feet"),
  14796. default: true
  14797. },
  14798. ]
  14799. ))
  14800. characterMakers.push(() => makeCharacter(
  14801. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14802. {
  14803. front: {
  14804. height: math.unit(5 + 5 / 12, "feet"),
  14805. weight: math.unit(135, "lb"),
  14806. name: "Front",
  14807. image: {
  14808. source: "./media/characters/beatrix/front.svg",
  14809. extra: 392 / 379,
  14810. bottom: 0.01
  14811. }
  14812. },
  14813. },
  14814. [
  14815. {
  14816. name: "Normal",
  14817. height: math.unit(6, "feet"),
  14818. default: true
  14819. },
  14820. ]
  14821. ))
  14822. characterMakers.push(() => makeCharacter(
  14823. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14824. {
  14825. front: {
  14826. height: math.unit(6, "feet"),
  14827. weight: math.unit(150, "lb"),
  14828. name: "Front",
  14829. image: {
  14830. source: "./media/characters/ignatius/front.svg",
  14831. extra: 245 / 222,
  14832. bottom: 0.01
  14833. }
  14834. },
  14835. },
  14836. [
  14837. {
  14838. name: "Normal",
  14839. height: math.unit(5 + 5 / 12, "feet"),
  14840. default: true
  14841. },
  14842. ]
  14843. ))
  14844. characterMakers.push(() => makeCharacter(
  14845. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14846. {
  14847. front: {
  14848. height: math.unit(6 + 2 / 12, "feet"),
  14849. weight: math.unit(138, "lb"),
  14850. name: "Front",
  14851. image: {
  14852. source: "./media/characters/mei-li/front.svg",
  14853. extra: 237 / 229,
  14854. bottom: 0.03
  14855. }
  14856. },
  14857. },
  14858. [
  14859. {
  14860. name: "Normal",
  14861. height: math.unit(6 + 2 / 12, "feet"),
  14862. default: true
  14863. },
  14864. ]
  14865. ))
  14866. characterMakers.push(() => makeCharacter(
  14867. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14868. {
  14869. front: {
  14870. height: math.unit(2 + 4 / 12, "feet"),
  14871. weight: math.unit(62, "lb"),
  14872. name: "Front",
  14873. image: {
  14874. source: "./media/characters/puru/front.svg",
  14875. extra: 206 / 149,
  14876. bottom: 0.06
  14877. }
  14878. },
  14879. },
  14880. [
  14881. {
  14882. name: "Normal",
  14883. height: math.unit(2 + 4 / 12, "feet"),
  14884. default: true
  14885. },
  14886. ]
  14887. ))
  14888. characterMakers.push(() => makeCharacter(
  14889. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14890. {
  14891. taur: {
  14892. height: math.unit(11, "feet"),
  14893. weight: math.unit(500, "lb"),
  14894. name: "Taur",
  14895. image: {
  14896. source: "./media/characters/kee/taur.svg",
  14897. extra: 1,
  14898. bottom: 0.04
  14899. }
  14900. },
  14901. },
  14902. [
  14903. {
  14904. name: "Normal",
  14905. height: math.unit(11, "feet"),
  14906. default: true
  14907. },
  14908. ]
  14909. ))
  14910. characterMakers.push(() => makeCharacter(
  14911. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14912. {
  14913. anthro: {
  14914. height: math.unit(7, "feet"),
  14915. weight: math.unit(190, "lb"),
  14916. name: "Anthro",
  14917. image: {
  14918. source: "./media/characters/cobalt-dracha/anthro.svg",
  14919. extra: 231 / 225,
  14920. bottom: 0.04
  14921. }
  14922. },
  14923. feral: {
  14924. height: math.unit(9 + 7 / 12, "feet"),
  14925. weight: math.unit(294, "lb"),
  14926. name: "Feral",
  14927. image: {
  14928. source: "./media/characters/cobalt-dracha/feral.svg",
  14929. extra: 692 / 633,
  14930. bottom: 0.05
  14931. }
  14932. },
  14933. },
  14934. [
  14935. {
  14936. name: "Normal",
  14937. height: math.unit(7, "feet"),
  14938. default: true
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14944. {
  14945. fallen: {
  14946. height: math.unit(11 + 8 / 12, "feet"),
  14947. weight: math.unit(485, "lb"),
  14948. name: "Java (Fallen)",
  14949. rename: true,
  14950. image: {
  14951. source: "./media/characters/java/fallen.svg",
  14952. extra: 226 / 208,
  14953. bottom: 0.005
  14954. }
  14955. },
  14956. godkin: {
  14957. height: math.unit(10 + 6 / 12, "feet"),
  14958. weight: math.unit(328, "lb"),
  14959. name: "Java (Godkin)",
  14960. rename: true,
  14961. image: {
  14962. source: "./media/characters/java/godkin.svg",
  14963. extra: 270 / 262,
  14964. bottom: 0.02
  14965. }
  14966. },
  14967. },
  14968. [
  14969. {
  14970. name: "Normal",
  14971. height: math.unit(11 + 8 / 12, "feet"),
  14972. default: true
  14973. },
  14974. ]
  14975. ))
  14976. characterMakers.push(() => makeCharacter(
  14977. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  14978. {
  14979. front: {
  14980. height: math.unit(7 + 8 / 12, "feet"),
  14981. weight: math.unit(320, "lb"),
  14982. name: "Front",
  14983. image: {
  14984. source: "./media/characters/skoll/front.svg",
  14985. extra: 232 / 220,
  14986. bottom: 0.02
  14987. }
  14988. },
  14989. },
  14990. [
  14991. {
  14992. name: "Normal",
  14993. height: math.unit(7 + 8 / 12, "feet"),
  14994. default: true
  14995. },
  14996. ]
  14997. ))
  14998. characterMakers.push(() => makeCharacter(
  14999. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15000. {
  15001. front: {
  15002. height: math.unit(5 + 9 / 12, "feet"),
  15003. weight: math.unit(170, "lb"),
  15004. name: "Front",
  15005. image: {
  15006. source: "./media/characters/purna/front.svg",
  15007. extra: 239 / 229,
  15008. bottom: 0.01
  15009. }
  15010. },
  15011. },
  15012. [
  15013. {
  15014. name: "Normal",
  15015. height: math.unit(5 + 9 / 12, "feet"),
  15016. default: true
  15017. },
  15018. ]
  15019. ))
  15020. characterMakers.push(() => makeCharacter(
  15021. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15022. {
  15023. front: {
  15024. height: math.unit(5 + 9 / 12, "feet"),
  15025. weight: math.unit(142, "lb"),
  15026. name: "Front",
  15027. image: {
  15028. source: "./media/characters/kuva/front.svg",
  15029. extra: 281 / 271,
  15030. bottom: 0.006
  15031. }
  15032. },
  15033. },
  15034. [
  15035. {
  15036. name: "Normal",
  15037. height: math.unit(5 + 9 / 12, "feet"),
  15038. default: true
  15039. },
  15040. ]
  15041. ))
  15042. characterMakers.push(() => makeCharacter(
  15043. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15044. {
  15045. anthro: {
  15046. height: math.unit(9 + 2 / 12, "feet"),
  15047. weight: math.unit(270, "lb"),
  15048. name: "Anthro",
  15049. image: {
  15050. source: "./media/characters/embra/anthro.svg",
  15051. extra: 200 / 187,
  15052. bottom: 0.02
  15053. }
  15054. },
  15055. feral: {
  15056. height: math.unit(18 + 8 / 12, "feet"),
  15057. weight: math.unit(576, "lb"),
  15058. name: "Feral",
  15059. image: {
  15060. source: "./media/characters/embra/feral.svg",
  15061. extra: 152 / 137,
  15062. bottom: 0.037
  15063. }
  15064. },
  15065. },
  15066. [
  15067. {
  15068. name: "Normal",
  15069. height: math.unit(9 + 2 / 12, "feet"),
  15070. default: true
  15071. },
  15072. ]
  15073. ))
  15074. characterMakers.push(() => makeCharacter(
  15075. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15076. {
  15077. anthro: {
  15078. height: math.unit(10 + 9 / 12, "feet"),
  15079. weight: math.unit(224, "lb"),
  15080. name: "Anthro",
  15081. image: {
  15082. source: "./media/characters/grottos/anthro.svg",
  15083. extra: 350 / 332,
  15084. bottom: 0.045
  15085. }
  15086. },
  15087. feral: {
  15088. height: math.unit(20 + 7 / 12, "feet"),
  15089. weight: math.unit(629, "lb"),
  15090. name: "Feral",
  15091. image: {
  15092. source: "./media/characters/grottos/feral.svg",
  15093. extra: 207 / 190,
  15094. bottom: 0.05
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Normal",
  15101. height: math.unit(10 + 9 / 12, "feet"),
  15102. default: true
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15108. {
  15109. anthro: {
  15110. height: math.unit(9 + 6 / 12, "feet"),
  15111. weight: math.unit(298, "lb"),
  15112. name: "Anthro",
  15113. image: {
  15114. source: "./media/characters/frifna/anthro.svg",
  15115. extra: 282 / 269,
  15116. bottom: 0.015
  15117. }
  15118. },
  15119. feral: {
  15120. height: math.unit(16 + 2 / 12, "feet"),
  15121. weight: math.unit(624, "lb"),
  15122. name: "Feral",
  15123. image: {
  15124. source: "./media/characters/frifna/feral.svg"
  15125. }
  15126. },
  15127. },
  15128. [
  15129. {
  15130. name: "Normal",
  15131. height: math.unit(9 + 6 / 12, "feet"),
  15132. default: true
  15133. },
  15134. ]
  15135. ))
  15136. characterMakers.push(() => makeCharacter(
  15137. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15138. {
  15139. front: {
  15140. height: math.unit(6 + 2 / 12, "feet"),
  15141. weight: math.unit(168, "lb"),
  15142. name: "Front",
  15143. image: {
  15144. source: "./media/characters/elise/front.svg",
  15145. extra: 276 / 271
  15146. }
  15147. },
  15148. },
  15149. [
  15150. {
  15151. name: "Normal",
  15152. height: math.unit(6 + 2 / 12, "feet"),
  15153. default: true
  15154. },
  15155. ]
  15156. ))
  15157. characterMakers.push(() => makeCharacter(
  15158. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15159. {
  15160. front: {
  15161. height: math.unit(5 + 10 / 12, "feet"),
  15162. weight: math.unit(210, "lb"),
  15163. name: "Front",
  15164. image: {
  15165. source: "./media/characters/glade/front.svg",
  15166. extra: 258 / 247,
  15167. bottom: 0.008
  15168. }
  15169. },
  15170. },
  15171. [
  15172. {
  15173. name: "Normal",
  15174. height: math.unit(5 + 10 / 12, "feet"),
  15175. default: true
  15176. },
  15177. ]
  15178. ))
  15179. characterMakers.push(() => makeCharacter(
  15180. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15181. {
  15182. front: {
  15183. height: math.unit(5 + 10 / 12, "feet"),
  15184. weight: math.unit(129, "lb"),
  15185. name: "Front",
  15186. image: {
  15187. source: "./media/characters/rina/front.svg",
  15188. extra: 266 / 255,
  15189. bottom: 0.005
  15190. }
  15191. },
  15192. },
  15193. [
  15194. {
  15195. name: "Normal",
  15196. height: math.unit(5 + 10 / 12, "feet"),
  15197. default: true
  15198. },
  15199. ]
  15200. ))
  15201. characterMakers.push(() => makeCharacter(
  15202. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15203. {
  15204. front: {
  15205. height: math.unit(6 + 1 / 12, "feet"),
  15206. weight: math.unit(192, "lb"),
  15207. name: "Front",
  15208. image: {
  15209. source: "./media/characters/veronica/front.svg",
  15210. extra: 319 / 309,
  15211. bottom: 0.005
  15212. }
  15213. },
  15214. },
  15215. [
  15216. {
  15217. name: "Normal",
  15218. height: math.unit(6 + 1 / 12, "feet"),
  15219. default: true
  15220. },
  15221. ]
  15222. ))
  15223. characterMakers.push(() => makeCharacter(
  15224. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15225. {
  15226. front: {
  15227. height: math.unit(9 + 3 / 12, "feet"),
  15228. weight: math.unit(1100, "lb"),
  15229. name: "Front",
  15230. image: {
  15231. source: "./media/characters/braxton/front.svg",
  15232. extra: 1057 / 984,
  15233. bottom: 0.05
  15234. }
  15235. },
  15236. },
  15237. [
  15238. {
  15239. name: "Normal",
  15240. height: math.unit(9 + 3 / 12, "feet")
  15241. },
  15242. {
  15243. name: "Giant",
  15244. height: math.unit(300, "feet"),
  15245. default: true
  15246. },
  15247. {
  15248. name: "Macro",
  15249. height: math.unit(700, "feet")
  15250. },
  15251. {
  15252. name: "Megamacro",
  15253. height: math.unit(6000, "feet")
  15254. },
  15255. ]
  15256. ))
  15257. characterMakers.push(() => makeCharacter(
  15258. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15259. {
  15260. front: {
  15261. height: math.unit(6 + 7 / 12, "feet"),
  15262. weight: math.unit(150, "lb"),
  15263. name: "Front",
  15264. image: {
  15265. source: "./media/characters/blue-feyonics/front.svg",
  15266. extra: 1403 / 1306,
  15267. bottom: 0.047
  15268. }
  15269. },
  15270. },
  15271. [
  15272. {
  15273. name: "Normal",
  15274. height: math.unit(6 + 7 / 12, "feet"),
  15275. default: true
  15276. },
  15277. ]
  15278. ))
  15279. characterMakers.push(() => makeCharacter(
  15280. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15281. {
  15282. front: {
  15283. height: math.unit(1.8, "meters"),
  15284. weight: math.unit(60, "kg"),
  15285. name: "Front",
  15286. image: {
  15287. source: "./media/characters/maxwell/front.svg",
  15288. extra: 2060 / 1873
  15289. }
  15290. },
  15291. },
  15292. [
  15293. {
  15294. name: "Micro",
  15295. height: math.unit(1, "mm")
  15296. },
  15297. {
  15298. name: "Normal",
  15299. height: math.unit(1.8, "meter"),
  15300. default: true
  15301. },
  15302. {
  15303. name: "Macro",
  15304. height: math.unit(30, "meters")
  15305. },
  15306. {
  15307. name: "Megamacro",
  15308. height: math.unit(10, "km")
  15309. },
  15310. ]
  15311. ))
  15312. characterMakers.push(() => makeCharacter(
  15313. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15314. {
  15315. front: {
  15316. height: math.unit(6, "feet"),
  15317. weight: math.unit(150, "lb"),
  15318. name: "Front",
  15319. image: {
  15320. source: "./media/characters/jack/front.svg",
  15321. extra: 1754 / 1640,
  15322. bottom: 0.01
  15323. }
  15324. },
  15325. },
  15326. [
  15327. {
  15328. name: "Normal",
  15329. height: math.unit(80000, "feet"),
  15330. default: true
  15331. },
  15332. {
  15333. name: "Max size",
  15334. height: math.unit(10, "lightyears")
  15335. },
  15336. ]
  15337. ))
  15338. characterMakers.push(() => makeCharacter(
  15339. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15340. {
  15341. upright: {
  15342. height: math.unit(7, "feet"),
  15343. weight: math.unit(170, "lb"),
  15344. name: "Upright",
  15345. image: {
  15346. source: "./media/characters/cafat/upright.svg",
  15347. bottom: 0.01
  15348. }
  15349. },
  15350. uprightFull: {
  15351. height: math.unit(7, "feet"),
  15352. weight: math.unit(170, "lb"),
  15353. name: "Upright (Full)",
  15354. image: {
  15355. source: "./media/characters/cafat/upright-full.svg",
  15356. bottom: 0.01
  15357. }
  15358. },
  15359. side: {
  15360. height: math.unit(5, "feet"),
  15361. weight: math.unit(150, "lb"),
  15362. name: "Side",
  15363. image: {
  15364. source: "./media/characters/cafat/side.svg"
  15365. }
  15366. },
  15367. },
  15368. [
  15369. {
  15370. name: "Small",
  15371. height: math.unit(7, "feet"),
  15372. default: true
  15373. },
  15374. {
  15375. name: "Large",
  15376. height: math.unit(15.5, "feet")
  15377. },
  15378. ]
  15379. ))
  15380. characterMakers.push(() => makeCharacter(
  15381. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15382. {
  15383. front: {
  15384. height: math.unit(6, "feet"),
  15385. weight: math.unit(150, "lb"),
  15386. name: "Front",
  15387. image: {
  15388. source: "./media/characters/verin-raharra/front.svg",
  15389. extra: 5019 / 4835,
  15390. bottom: 0.023
  15391. }
  15392. },
  15393. },
  15394. [
  15395. {
  15396. name: "Normal",
  15397. height: math.unit(7 + 5 / 12, "feet"),
  15398. default: true
  15399. },
  15400. {
  15401. name: "Upsized",
  15402. height: math.unit(20, "feet")
  15403. },
  15404. ]
  15405. ))
  15406. characterMakers.push(() => makeCharacter(
  15407. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15408. {
  15409. front: {
  15410. height: math.unit(7, "feet"),
  15411. weight: math.unit(230, "lb"),
  15412. name: "Front",
  15413. image: {
  15414. source: "./media/characters/nakata/front.svg",
  15415. extra: 1.005,
  15416. bottom: 0.01
  15417. }
  15418. },
  15419. },
  15420. [
  15421. {
  15422. name: "Normal",
  15423. height: math.unit(7, "feet"),
  15424. default: true
  15425. },
  15426. {
  15427. name: "Big",
  15428. height: math.unit(14, "feet")
  15429. },
  15430. {
  15431. name: "Macro",
  15432. height: math.unit(400, "feet")
  15433. },
  15434. ]
  15435. ))
  15436. characterMakers.push(() => makeCharacter(
  15437. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15438. {
  15439. front: {
  15440. height: math.unit(4.91, "feet"),
  15441. weight: math.unit(100, "lb"),
  15442. name: "Front",
  15443. image: {
  15444. source: "./media/characters/lily/front.svg",
  15445. extra: 1585 / 1415,
  15446. bottom: 0.02
  15447. }
  15448. },
  15449. },
  15450. [
  15451. {
  15452. name: "Normal",
  15453. height: math.unit(4.91, "feet"),
  15454. default: true
  15455. },
  15456. ]
  15457. ))
  15458. characterMakers.push(() => makeCharacter(
  15459. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15460. {
  15461. laying: {
  15462. height: math.unit(4 + 4 / 12, "feet"),
  15463. weight: math.unit(600, "lb"),
  15464. name: "Laying",
  15465. image: {
  15466. source: "./media/characters/sheila/laying.svg",
  15467. extra: 1333 / 1265,
  15468. bottom: 0.16
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Normal",
  15475. height: math.unit(4 + 4 / 12, "feet"),
  15476. default: true
  15477. },
  15478. ]
  15479. ))
  15480. characterMakers.push(() => makeCharacter(
  15481. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15482. {
  15483. front: {
  15484. height: math.unit(6, "feet"),
  15485. weight: math.unit(190, "lb"),
  15486. name: "Front",
  15487. image: {
  15488. source: "./media/characters/sax/front.svg",
  15489. extra: 1187 / 973,
  15490. bottom: 0.042
  15491. }
  15492. },
  15493. },
  15494. [
  15495. {
  15496. name: "Micro",
  15497. height: math.unit(4, "inches"),
  15498. default: true
  15499. },
  15500. ]
  15501. ))
  15502. characterMakers.push(() => makeCharacter(
  15503. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15504. {
  15505. front: {
  15506. height: math.unit(6, "feet"),
  15507. weight: math.unit(150, "lb"),
  15508. name: "Front",
  15509. image: {
  15510. source: "./media/characters/pandora/front.svg",
  15511. extra: 2720 / 2556,
  15512. bottom: 0.015
  15513. }
  15514. },
  15515. back: {
  15516. height: math.unit(6, "feet"),
  15517. weight: math.unit(150, "lb"),
  15518. name: "Back",
  15519. image: {
  15520. source: "./media/characters/pandora/back.svg",
  15521. extra: 2720 / 2556,
  15522. bottom: 0.01
  15523. }
  15524. },
  15525. beans: {
  15526. height: math.unit(6 / 8, "feet"),
  15527. name: "Beans",
  15528. image: {
  15529. source: "./media/characters/pandora/beans.svg"
  15530. }
  15531. },
  15532. skirt: {
  15533. height: math.unit(6, "feet"),
  15534. weight: math.unit(150, "lb"),
  15535. name: "Skirt",
  15536. image: {
  15537. source: "./media/characters/pandora/skirt.svg",
  15538. extra: 1622 / 1525,
  15539. bottom: 0.015
  15540. }
  15541. },
  15542. hoodie: {
  15543. height: math.unit(6, "feet"),
  15544. weight: math.unit(150, "lb"),
  15545. name: "Hoodie",
  15546. image: {
  15547. source: "./media/characters/pandora/hoodie.svg",
  15548. extra: 1622 / 1525,
  15549. bottom: 0.015
  15550. }
  15551. },
  15552. casual: {
  15553. height: math.unit(6, "feet"),
  15554. weight: math.unit(150, "lb"),
  15555. name: "Casual",
  15556. image: {
  15557. source: "./media/characters/pandora/casual.svg",
  15558. extra: 1622 / 1525,
  15559. bottom: 0.015
  15560. }
  15561. },
  15562. },
  15563. [
  15564. {
  15565. name: "Normal",
  15566. height: math.unit(6, "feet")
  15567. },
  15568. {
  15569. name: "Big Steppy",
  15570. height: math.unit(1, "km"),
  15571. default: true
  15572. },
  15573. ]
  15574. ))
  15575. characterMakers.push(() => makeCharacter(
  15576. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15577. {
  15578. side: {
  15579. height: math.unit(10, "feet"),
  15580. weight: math.unit(800, "kg"),
  15581. name: "Side",
  15582. image: {
  15583. source: "./media/characters/venio-darcony/side.svg",
  15584. extra: 1373 / 1003,
  15585. bottom: 0.037
  15586. }
  15587. },
  15588. front: {
  15589. height: math.unit(19, "feet"),
  15590. weight: math.unit(800, "kg"),
  15591. name: "Front",
  15592. image: {
  15593. source: "./media/characters/venio-darcony/front.svg"
  15594. }
  15595. },
  15596. back: {
  15597. height: math.unit(19, "feet"),
  15598. weight: math.unit(800, "kg"),
  15599. name: "Back",
  15600. image: {
  15601. source: "./media/characters/venio-darcony/back.svg"
  15602. }
  15603. },
  15604. sideNsfw: {
  15605. height: math.unit(10, "feet"),
  15606. weight: math.unit(800, "kg"),
  15607. name: "Side (NSFW)",
  15608. image: {
  15609. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15610. extra: 1373 / 1003,
  15611. bottom: 0.037
  15612. }
  15613. },
  15614. frontNsfw: {
  15615. height: math.unit(19, "feet"),
  15616. weight: math.unit(800, "kg"),
  15617. name: "Front (NSFW)",
  15618. image: {
  15619. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15620. }
  15621. },
  15622. backNsfw: {
  15623. height: math.unit(19, "feet"),
  15624. weight: math.unit(800, "kg"),
  15625. name: "Back (NSFW)",
  15626. image: {
  15627. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15628. }
  15629. },
  15630. sideArmored: {
  15631. height: math.unit(10, "feet"),
  15632. weight: math.unit(800, "kg"),
  15633. name: "Side (Armored)",
  15634. image: {
  15635. source: "./media/characters/venio-darcony/side-armored.svg",
  15636. extra: 1373 / 1003,
  15637. bottom: 0.037
  15638. }
  15639. },
  15640. frontArmored: {
  15641. height: math.unit(19, "feet"),
  15642. weight: math.unit(900, "kg"),
  15643. name: "Front (Armored)",
  15644. image: {
  15645. source: "./media/characters/venio-darcony/front-armored.svg"
  15646. }
  15647. },
  15648. backArmored: {
  15649. height: math.unit(19, "feet"),
  15650. weight: math.unit(900, "kg"),
  15651. name: "Back (Armored)",
  15652. image: {
  15653. source: "./media/characters/venio-darcony/back-armored.svg"
  15654. }
  15655. },
  15656. sword: {
  15657. height: math.unit(10, "feet"),
  15658. weight: math.unit(50, "lb"),
  15659. name: "Sword",
  15660. image: {
  15661. source: "./media/characters/venio-darcony/sword.svg"
  15662. }
  15663. },
  15664. },
  15665. [
  15666. {
  15667. name: "Normal",
  15668. height: math.unit(10, "feet")
  15669. },
  15670. {
  15671. name: "Macro",
  15672. height: math.unit(130, "feet"),
  15673. default: true
  15674. },
  15675. {
  15676. name: "Macro+",
  15677. height: math.unit(240, "feet")
  15678. },
  15679. ]
  15680. ))
  15681. characterMakers.push(() => makeCharacter(
  15682. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15683. {
  15684. front: {
  15685. height: math.unit(6, "feet"),
  15686. weight: math.unit(150, "lb"),
  15687. name: "Front",
  15688. image: {
  15689. source: "./media/characters/veski/front.svg",
  15690. extra: 1299 / 1225,
  15691. bottom: 0.04
  15692. }
  15693. },
  15694. back: {
  15695. height: math.unit(6, "feet"),
  15696. weight: math.unit(150, "lb"),
  15697. name: "Back",
  15698. image: {
  15699. source: "./media/characters/veski/back.svg",
  15700. extra: 1299 / 1225,
  15701. bottom: 0.008
  15702. }
  15703. },
  15704. maw: {
  15705. height: math.unit(1.5 * 1.21, "feet"),
  15706. name: "Maw",
  15707. image: {
  15708. source: "./media/characters/veski/maw.svg"
  15709. }
  15710. },
  15711. },
  15712. [
  15713. {
  15714. name: "Macro",
  15715. height: math.unit(2, "km"),
  15716. default: true
  15717. },
  15718. ]
  15719. ))
  15720. characterMakers.push(() => makeCharacter(
  15721. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15722. {
  15723. front: {
  15724. height: math.unit(5 + 7 / 12, "feet"),
  15725. name: "Front",
  15726. image: {
  15727. source: "./media/characters/isabelle/front.svg",
  15728. extra: 2130 / 1976,
  15729. bottom: 0.05
  15730. }
  15731. },
  15732. },
  15733. [
  15734. {
  15735. name: "Supermicro",
  15736. height: math.unit(10, "micrometers")
  15737. },
  15738. {
  15739. name: "Micro",
  15740. height: math.unit(1, "inch")
  15741. },
  15742. {
  15743. name: "Tiny",
  15744. height: math.unit(5, "inches")
  15745. },
  15746. {
  15747. name: "Standard",
  15748. height: math.unit(5 + 7 / 12, "inches")
  15749. },
  15750. {
  15751. name: "Macro",
  15752. height: math.unit(80, "meters"),
  15753. default: true
  15754. },
  15755. {
  15756. name: "Megamacro",
  15757. height: math.unit(250, "meters")
  15758. },
  15759. {
  15760. name: "Gigamacro",
  15761. height: math.unit(5, "km")
  15762. },
  15763. {
  15764. name: "Cosmic",
  15765. height: math.unit(2.5e6, "miles")
  15766. },
  15767. ]
  15768. ))
  15769. characterMakers.push(() => makeCharacter(
  15770. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15771. {
  15772. front: {
  15773. height: math.unit(6, "feet"),
  15774. weight: math.unit(150, "lb"),
  15775. name: "Front",
  15776. image: {
  15777. source: "./media/characters/hanzo/front.svg",
  15778. extra: 374 / 344,
  15779. bottom: 0.02
  15780. }
  15781. },
  15782. },
  15783. [
  15784. {
  15785. name: "Normal",
  15786. height: math.unit(8, "feet"),
  15787. default: true
  15788. },
  15789. ]
  15790. ))
  15791. characterMakers.push(() => makeCharacter(
  15792. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15793. {
  15794. front: {
  15795. height: math.unit(7, "feet"),
  15796. weight: math.unit(130, "lb"),
  15797. name: "Front",
  15798. image: {
  15799. source: "./media/characters/anna/front.svg",
  15800. extra: 169 / 145,
  15801. bottom: 0.06
  15802. }
  15803. },
  15804. full: {
  15805. height: math.unit(4.96, "feet"),
  15806. weight: math.unit(220, "lb"),
  15807. name: "Full",
  15808. image: {
  15809. source: "./media/characters/anna/full.svg",
  15810. extra: 138 / 114,
  15811. bottom: 0.15
  15812. }
  15813. },
  15814. tongue: {
  15815. height: math.unit(2.53, "feet"),
  15816. name: "Tongue",
  15817. image: {
  15818. source: "./media/characters/anna/tongue.svg"
  15819. }
  15820. },
  15821. },
  15822. [
  15823. {
  15824. name: "Normal",
  15825. height: math.unit(7, "feet"),
  15826. default: true
  15827. },
  15828. ]
  15829. ))
  15830. characterMakers.push(() => makeCharacter(
  15831. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15832. {
  15833. front: {
  15834. height: math.unit(7, "feet"),
  15835. weight: math.unit(150, "lb"),
  15836. name: "Front",
  15837. image: {
  15838. source: "./media/characters/ian-corvid/front.svg",
  15839. extra: 150 / 142,
  15840. bottom: 0.02
  15841. }
  15842. },
  15843. back: {
  15844. height: math.unit(7, "feet"),
  15845. weight: math.unit(150, "lb"),
  15846. name: "Back",
  15847. image: {
  15848. source: "./media/characters/ian-corvid/back.svg",
  15849. extra: 150 / 143,
  15850. bottom: 0.01
  15851. }
  15852. },
  15853. stomping: {
  15854. height: math.unit(7, "feet"),
  15855. weight: math.unit(150, "lb"),
  15856. name: "Stomping",
  15857. image: {
  15858. source: "./media/characters/ian-corvid/stomping.svg",
  15859. extra: 76 / 72
  15860. }
  15861. },
  15862. sitting: {
  15863. height: math.unit(7 / 1.8, "feet"),
  15864. weight: math.unit(150, "lb"),
  15865. name: "Sitting",
  15866. image: {
  15867. source: "./media/characters/ian-corvid/sitting.svg",
  15868. extra: 1400 / 1269,
  15869. bottom: 0.15
  15870. }
  15871. },
  15872. },
  15873. [
  15874. {
  15875. name: "Tiny Microw",
  15876. height: math.unit(1, "inch")
  15877. },
  15878. {
  15879. name: "Microw",
  15880. height: math.unit(6, "inches")
  15881. },
  15882. {
  15883. name: "Crow",
  15884. height: math.unit(7 + 1 / 12, "feet"),
  15885. default: true
  15886. },
  15887. {
  15888. name: "Macrow",
  15889. height: math.unit(176, "feet")
  15890. },
  15891. ]
  15892. ))
  15893. characterMakers.push(() => makeCharacter(
  15894. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15895. {
  15896. front: {
  15897. height: math.unit(5 + 7 / 12, "feet"),
  15898. weight: math.unit(147, "lb"),
  15899. name: "Front",
  15900. image: {
  15901. source: "./media/characters/natalie-kellon/front.svg",
  15902. extra: 1214 / 1141,
  15903. bottom: 0.02
  15904. }
  15905. },
  15906. },
  15907. [
  15908. {
  15909. name: "Micro",
  15910. height: math.unit(1 / 16, "inch")
  15911. },
  15912. {
  15913. name: "Tiny",
  15914. height: math.unit(4, "inches")
  15915. },
  15916. {
  15917. name: "Normal",
  15918. height: math.unit(5 + 7 / 12, "feet"),
  15919. default: true
  15920. },
  15921. {
  15922. name: "Amazon",
  15923. height: math.unit(12, "feet")
  15924. },
  15925. {
  15926. name: "Giantess",
  15927. height: math.unit(160, "meters")
  15928. },
  15929. {
  15930. name: "Titaness",
  15931. height: math.unit(800, "meters")
  15932. },
  15933. ]
  15934. ))
  15935. characterMakers.push(() => makeCharacter(
  15936. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15937. {
  15938. front: {
  15939. height: math.unit(6, "feet"),
  15940. weight: math.unit(150, "lb"),
  15941. name: "Front",
  15942. image: {
  15943. source: "./media/characters/alluria/front.svg",
  15944. extra: 806 / 738,
  15945. bottom: 0.01
  15946. }
  15947. },
  15948. side: {
  15949. height: math.unit(6, "feet"),
  15950. weight: math.unit(150, "lb"),
  15951. name: "Side",
  15952. image: {
  15953. source: "./media/characters/alluria/side.svg",
  15954. extra: 800 / 750,
  15955. }
  15956. },
  15957. back: {
  15958. height: math.unit(6, "feet"),
  15959. weight: math.unit(150, "lb"),
  15960. name: "Back",
  15961. image: {
  15962. source: "./media/characters/alluria/back.svg",
  15963. extra: 806 / 738,
  15964. }
  15965. },
  15966. frontMaid: {
  15967. height: math.unit(6, "feet"),
  15968. weight: math.unit(150, "lb"),
  15969. name: "Front (Maid)",
  15970. image: {
  15971. source: "./media/characters/alluria/front-maid.svg",
  15972. extra: 806 / 738,
  15973. bottom: 0.01
  15974. }
  15975. },
  15976. sideMaid: {
  15977. height: math.unit(6, "feet"),
  15978. weight: math.unit(150, "lb"),
  15979. name: "Side (Maid)",
  15980. image: {
  15981. source: "./media/characters/alluria/side-maid.svg",
  15982. extra: 800 / 750,
  15983. bottom: 0.005
  15984. }
  15985. },
  15986. backMaid: {
  15987. height: math.unit(6, "feet"),
  15988. weight: math.unit(150, "lb"),
  15989. name: "Back (Maid)",
  15990. image: {
  15991. source: "./media/characters/alluria/back-maid.svg",
  15992. extra: 806 / 738,
  15993. }
  15994. },
  15995. },
  15996. [
  15997. {
  15998. name: "Micro",
  15999. height: math.unit(6, "inches"),
  16000. default: true
  16001. },
  16002. ]
  16003. ))
  16004. characterMakers.push(() => makeCharacter(
  16005. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16006. {
  16007. front: {
  16008. height: math.unit(6, "feet"),
  16009. weight: math.unit(150, "lb"),
  16010. name: "Front",
  16011. image: {
  16012. source: "./media/characters/kyle/front.svg",
  16013. extra: 1069 / 962,
  16014. bottom: 77.228 / 1727.45
  16015. }
  16016. },
  16017. },
  16018. [
  16019. {
  16020. name: "Macro",
  16021. height: math.unit(150, "feet"),
  16022. default: true
  16023. },
  16024. ]
  16025. ))
  16026. characterMakers.push(() => makeCharacter(
  16027. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16028. {
  16029. front: {
  16030. height: math.unit(6, "feet"),
  16031. weight: math.unit(300, "lb"),
  16032. name: "Front",
  16033. image: {
  16034. source: "./media/characters/duncan/front.svg",
  16035. extra: 1650 / 1482,
  16036. bottom: 0.05
  16037. }
  16038. },
  16039. },
  16040. [
  16041. {
  16042. name: "Macro",
  16043. height: math.unit(100, "feet"),
  16044. default: true
  16045. },
  16046. ]
  16047. ))
  16048. characterMakers.push(() => makeCharacter(
  16049. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16050. {
  16051. front: {
  16052. height: math.unit(5 + 4 / 12, "feet"),
  16053. weight: math.unit(220, "lb"),
  16054. name: "Front",
  16055. image: {
  16056. source: "./media/characters/memory/front.svg",
  16057. extra: 3641 / 3545,
  16058. bottom: 0.03
  16059. }
  16060. },
  16061. back: {
  16062. height: math.unit(5 + 4 / 12, "feet"),
  16063. weight: math.unit(220, "lb"),
  16064. name: "Back",
  16065. image: {
  16066. source: "./media/characters/memory/back.svg",
  16067. extra: 3641 / 3545,
  16068. bottom: 0.025
  16069. }
  16070. },
  16071. frontSkirt: {
  16072. height: math.unit(5 + 4 / 12, "feet"),
  16073. weight: math.unit(220, "lb"),
  16074. name: "Front (Skirt)",
  16075. image: {
  16076. source: "./media/characters/memory/front-skirt.svg",
  16077. extra: 3641 / 3545,
  16078. bottom: 0.03
  16079. }
  16080. },
  16081. frontDress: {
  16082. height: math.unit(5 + 4 / 12, "feet"),
  16083. weight: math.unit(220, "lb"),
  16084. name: "Front (Dress)",
  16085. image: {
  16086. source: "./media/characters/memory/front-dress.svg",
  16087. extra: 3641 / 3545,
  16088. bottom: 0.03
  16089. }
  16090. },
  16091. },
  16092. [
  16093. {
  16094. name: "Micro",
  16095. height: math.unit(6, "inches"),
  16096. default: true
  16097. },
  16098. {
  16099. name: "Normal",
  16100. height: math.unit(5 + 4 / 12, "feet")
  16101. },
  16102. ]
  16103. ))
  16104. characterMakers.push(() => makeCharacter(
  16105. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16106. {
  16107. front: {
  16108. height: math.unit(4 + 11 / 12, "feet"),
  16109. weight: math.unit(100, "lb"),
  16110. name: "Front",
  16111. image: {
  16112. source: "./media/characters/luno/front.svg",
  16113. extra: 1535 / 1487,
  16114. bottom: 0.03
  16115. }
  16116. },
  16117. },
  16118. [
  16119. {
  16120. name: "Micro",
  16121. height: math.unit(3, "inches")
  16122. },
  16123. {
  16124. name: "Normal",
  16125. height: math.unit(4 + 11 / 12, "feet"),
  16126. default: true
  16127. },
  16128. {
  16129. name: "Macro",
  16130. height: math.unit(300, "feet")
  16131. },
  16132. {
  16133. name: "Megamacro",
  16134. height: math.unit(700, "miles")
  16135. },
  16136. ]
  16137. ))
  16138. characterMakers.push(() => makeCharacter(
  16139. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16140. {
  16141. front: {
  16142. height: math.unit(6 + 2 / 12, "feet"),
  16143. weight: math.unit(170, "lb"),
  16144. name: "Front",
  16145. image: {
  16146. source: "./media/characters/jamesy/front.svg",
  16147. extra: 440 / 382,
  16148. bottom: 0.005
  16149. }
  16150. },
  16151. },
  16152. [
  16153. {
  16154. name: "Micro",
  16155. height: math.unit(3, "inches")
  16156. },
  16157. {
  16158. name: "Normal",
  16159. height: math.unit(6 + 2 / 12, "feet"),
  16160. default: true
  16161. },
  16162. {
  16163. name: "Macro",
  16164. height: math.unit(300, "feet")
  16165. },
  16166. {
  16167. name: "Megamacro",
  16168. height: math.unit(700, "miles")
  16169. },
  16170. ]
  16171. ))
  16172. characterMakers.push(() => makeCharacter(
  16173. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16174. {
  16175. front: {
  16176. height: math.unit(6, "feet"),
  16177. weight: math.unit(160, "lb"),
  16178. name: "Front",
  16179. image: {
  16180. source: "./media/characters/mark/front.svg",
  16181. extra: 3300 / 3100,
  16182. bottom: 136.42 / 3440.47
  16183. }
  16184. },
  16185. },
  16186. [
  16187. {
  16188. name: "Macro",
  16189. height: math.unit(120, "meters")
  16190. },
  16191. {
  16192. name: "Bigger Macro",
  16193. height: math.unit(350, "meters")
  16194. },
  16195. {
  16196. name: "Megamacro",
  16197. height: math.unit(8, "km"),
  16198. default: true
  16199. },
  16200. {
  16201. name: "Continental",
  16202. height: math.unit(4550, "km")
  16203. },
  16204. {
  16205. name: "Planetary",
  16206. height: math.unit(65000, "km")
  16207. },
  16208. ]
  16209. ))
  16210. characterMakers.push(() => makeCharacter(
  16211. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16212. {
  16213. front: {
  16214. height: math.unit(6, "feet"),
  16215. weight: math.unit(400, "lb"),
  16216. name: "Front",
  16217. image: {
  16218. source: "./media/characters/mac/front.svg",
  16219. extra: 1048 / 987.7,
  16220. bottom: 60 / 1107.6,
  16221. }
  16222. },
  16223. },
  16224. [
  16225. {
  16226. name: "Macro",
  16227. height: math.unit(500, "feet"),
  16228. default: true
  16229. },
  16230. ]
  16231. ))
  16232. characterMakers.push(() => makeCharacter(
  16233. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16234. {
  16235. front: {
  16236. height: math.unit(5 + 2 / 12, "feet"),
  16237. weight: math.unit(190, "lb"),
  16238. name: "Front",
  16239. image: {
  16240. source: "./media/characters/bari/front.svg",
  16241. extra: 3156 / 2880,
  16242. bottom: 0.03
  16243. }
  16244. },
  16245. back: {
  16246. height: math.unit(5 + 2 / 12, "feet"),
  16247. weight: math.unit(190, "lb"),
  16248. name: "Back",
  16249. image: {
  16250. source: "./media/characters/bari/back.svg",
  16251. extra: 3260 / 2834,
  16252. bottom: 0.025
  16253. }
  16254. },
  16255. frontPlush: {
  16256. height: math.unit(5 + 2 / 12, "feet"),
  16257. weight: math.unit(190, "lb"),
  16258. name: "Front (Plush)",
  16259. image: {
  16260. source: "./media/characters/bari/front-plush.svg",
  16261. extra: 1112 / 1061,
  16262. bottom: 0.002
  16263. }
  16264. },
  16265. },
  16266. [
  16267. {
  16268. name: "Micro",
  16269. height: math.unit(3, "inches")
  16270. },
  16271. {
  16272. name: "Normal",
  16273. height: math.unit(5 + 2 / 12, "feet"),
  16274. default: true
  16275. },
  16276. {
  16277. name: "Macro",
  16278. height: math.unit(20, "feet")
  16279. },
  16280. ]
  16281. ))
  16282. characterMakers.push(() => makeCharacter(
  16283. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16284. {
  16285. front: {
  16286. height: math.unit(6 + 1 / 12, "feet"),
  16287. weight: math.unit(275, "lb"),
  16288. name: "Front",
  16289. image: {
  16290. source: "./media/characters/hunter-misha-raven/front.svg"
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Mortal",
  16297. height: math.unit(6 + 1 / 12, "feet")
  16298. },
  16299. {
  16300. name: "Divine",
  16301. height: math.unit(1.12134e34, "parsecs"),
  16302. default: true
  16303. },
  16304. ]
  16305. ))
  16306. characterMakers.push(() => makeCharacter(
  16307. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16308. {
  16309. front: {
  16310. height: math.unit(6 + 3 / 12, "feet"),
  16311. weight: math.unit(220, "lb"),
  16312. name: "Front",
  16313. image: {
  16314. source: "./media/characters/max-calore/front.svg",
  16315. extra: 1700 / 1648,
  16316. bottom: 0.01
  16317. }
  16318. },
  16319. back: {
  16320. height: math.unit(6 + 3 / 12, "feet"),
  16321. weight: math.unit(220, "lb"),
  16322. name: "Back",
  16323. image: {
  16324. source: "./media/characters/max-calore/back.svg",
  16325. extra: 1700 / 1648,
  16326. bottom: 0.01
  16327. }
  16328. },
  16329. },
  16330. [
  16331. {
  16332. name: "Normal",
  16333. height: math.unit(6 + 3 / 12, "feet"),
  16334. default: true
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16340. {
  16341. side: {
  16342. height: math.unit(2 + 8 / 12, "feet"),
  16343. weight: math.unit(99, "lb"),
  16344. name: "Side",
  16345. image: {
  16346. source: "./media/characters/aspen/side.svg",
  16347. extra: 152 / 138,
  16348. bottom: 0.032
  16349. }
  16350. },
  16351. },
  16352. [
  16353. {
  16354. name: "Normal",
  16355. height: math.unit(2 + 8 / 12, "feet"),
  16356. default: true
  16357. },
  16358. ]
  16359. ))
  16360. characterMakers.push(() => makeCharacter(
  16361. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16362. {
  16363. side: {
  16364. height: math.unit(3 + 2 / 12, "feet"),
  16365. weight: math.unit(224, "lb"),
  16366. name: "Side",
  16367. image: {
  16368. source: "./media/characters/sheila-feral-wolf/side.svg",
  16369. extra: 179 / 166,
  16370. bottom: 0.03
  16371. }
  16372. },
  16373. },
  16374. [
  16375. {
  16376. name: "Normal",
  16377. height: math.unit(3 + 2 / 12, "feet"),
  16378. default: true
  16379. },
  16380. ]
  16381. ))
  16382. characterMakers.push(() => makeCharacter(
  16383. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16384. {
  16385. side: {
  16386. height: math.unit(1 + 9 / 12, "feet"),
  16387. weight: math.unit(38, "lb"),
  16388. name: "Side",
  16389. image: {
  16390. source: "./media/characters/michelle/side.svg",
  16391. extra: 147 / 136.7,
  16392. bottom: 0.03
  16393. }
  16394. },
  16395. },
  16396. [
  16397. {
  16398. name: "Normal",
  16399. height: math.unit(1 + 9 / 12, "feet"),
  16400. default: true
  16401. },
  16402. ]
  16403. ))
  16404. characterMakers.push(() => makeCharacter(
  16405. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16406. {
  16407. front: {
  16408. height: math.unit(1 + 1 / 12, "feet"),
  16409. weight: math.unit(18, "lb"),
  16410. name: "Front",
  16411. image: {
  16412. source: "./media/characters/nino/front.svg"
  16413. }
  16414. },
  16415. },
  16416. [
  16417. {
  16418. name: "Normal",
  16419. height: math.unit(1 + 1 / 12, "feet"),
  16420. default: true
  16421. },
  16422. ]
  16423. ))
  16424. characterMakers.push(() => makeCharacter(
  16425. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16426. {
  16427. front: {
  16428. height: math.unit(1, "feet"),
  16429. weight: math.unit(16, "lb"),
  16430. name: "Front",
  16431. image: {
  16432. source: "./media/characters/viola/front.svg"
  16433. }
  16434. },
  16435. },
  16436. [
  16437. {
  16438. name: "Normal",
  16439. height: math.unit(1, "feet"),
  16440. default: true
  16441. },
  16442. ]
  16443. ))
  16444. characterMakers.push(() => makeCharacter(
  16445. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16446. {
  16447. front: {
  16448. height: math.unit(6 + 5 / 12, "feet"),
  16449. weight: math.unit(580, "lb"),
  16450. name: "Front",
  16451. image: {
  16452. source: "./media/characters/atlas/front.svg",
  16453. extra: 298.5 / 290,
  16454. bottom: 0.015
  16455. }
  16456. },
  16457. },
  16458. [
  16459. {
  16460. name: "Normal",
  16461. height: math.unit(6 + 5 / 12, "feet"),
  16462. default: true
  16463. },
  16464. ]
  16465. ))
  16466. characterMakers.push(() => makeCharacter(
  16467. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16468. {
  16469. side: {
  16470. height: math.unit(1 + 10 / 12, "feet"),
  16471. weight: math.unit(25, "lb"),
  16472. name: "Side",
  16473. image: {
  16474. source: "./media/characters/davy/side.svg",
  16475. extra: 200 / 170,
  16476. bottom: 0.01
  16477. }
  16478. },
  16479. },
  16480. [
  16481. {
  16482. name: "Normal",
  16483. height: math.unit(1 + 10 / 12, "feet"),
  16484. default: true
  16485. },
  16486. ]
  16487. ))
  16488. characterMakers.push(() => makeCharacter(
  16489. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16490. {
  16491. side: {
  16492. height: math.unit(4 + 8 / 12, "feet"),
  16493. weight: math.unit(166, "lb"),
  16494. name: "Side",
  16495. image: {
  16496. source: "./media/characters/fiona/side.svg",
  16497. extra: 232 / 220,
  16498. bottom: 0.03
  16499. }
  16500. },
  16501. },
  16502. [
  16503. {
  16504. name: "Normal",
  16505. height: math.unit(4 + 8 / 12, "feet"),
  16506. default: true
  16507. },
  16508. ]
  16509. ))
  16510. characterMakers.push(() => makeCharacter(
  16511. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16512. {
  16513. front: {
  16514. height: math.unit(2, "feet"),
  16515. weight: math.unit(62, "lb"),
  16516. name: "Front",
  16517. image: {
  16518. source: "./media/characters/lyla/front.svg",
  16519. bottom: 0.1
  16520. }
  16521. },
  16522. },
  16523. [
  16524. {
  16525. name: "Normal",
  16526. height: math.unit(2, "feet"),
  16527. default: true
  16528. },
  16529. ]
  16530. ))
  16531. characterMakers.push(() => makeCharacter(
  16532. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16533. {
  16534. side: {
  16535. height: math.unit(1.8, "feet"),
  16536. weight: math.unit(44, "lb"),
  16537. name: "Side",
  16538. image: {
  16539. source: "./media/characters/perseus/side.svg",
  16540. bottom: 0.21
  16541. }
  16542. },
  16543. },
  16544. [
  16545. {
  16546. name: "Normal",
  16547. height: math.unit(1.8, "feet"),
  16548. default: true
  16549. },
  16550. ]
  16551. ))
  16552. characterMakers.push(() => makeCharacter(
  16553. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16554. {
  16555. side: {
  16556. height: math.unit(4 + 2 / 12, "feet"),
  16557. weight: math.unit(20, "lb"),
  16558. name: "Side",
  16559. image: {
  16560. source: "./media/characters/remus/side.svg"
  16561. }
  16562. },
  16563. },
  16564. [
  16565. {
  16566. name: "Normal",
  16567. height: math.unit(4 + 2 / 12, "feet"),
  16568. default: true
  16569. },
  16570. ]
  16571. ))
  16572. characterMakers.push(() => makeCharacter(
  16573. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16574. {
  16575. front: {
  16576. height: math.unit(4 + 11 / 12, "feet"),
  16577. weight: math.unit(114, "lb"),
  16578. name: "Front",
  16579. image: {
  16580. source: "./media/characters/raf/front.svg",
  16581. bottom: 20.5 / 1863
  16582. }
  16583. },
  16584. side: {
  16585. height: math.unit(4 + 11 / 12, "feet"),
  16586. weight: math.unit(114, "lb"),
  16587. name: "Side",
  16588. image: {
  16589. source: "./media/characters/raf/side.svg",
  16590. bottom: 22 / 1822
  16591. }
  16592. },
  16593. },
  16594. [
  16595. {
  16596. name: "Micro",
  16597. height: math.unit(2, "inches")
  16598. },
  16599. {
  16600. name: "Normal",
  16601. height: math.unit(4 + 11 / 12, "feet"),
  16602. default: true
  16603. },
  16604. {
  16605. name: "Macro",
  16606. height: math.unit(70, "feet")
  16607. },
  16608. ]
  16609. ))
  16610. characterMakers.push(() => makeCharacter(
  16611. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16612. {
  16613. front: {
  16614. height: math.unit(1.5, "meters"),
  16615. weight: math.unit(68, "kg"),
  16616. name: "Front",
  16617. image: {
  16618. source: "./media/characters/liam-einarr/front.svg",
  16619. extra: 2822 / 2666
  16620. }
  16621. },
  16622. back: {
  16623. height: math.unit(1.5, "meters"),
  16624. weight: math.unit(68, "kg"),
  16625. name: "Back",
  16626. image: {
  16627. source: "./media/characters/liam-einarr/back.svg",
  16628. extra: 2822 / 2666,
  16629. bottom: 0.015
  16630. }
  16631. },
  16632. },
  16633. [
  16634. {
  16635. name: "Normal",
  16636. height: math.unit(1.5, "meters"),
  16637. default: true
  16638. },
  16639. {
  16640. name: "Macro",
  16641. height: math.unit(150, "meters")
  16642. },
  16643. {
  16644. name: "Megamacro",
  16645. height: math.unit(35, "km")
  16646. },
  16647. ]
  16648. ))
  16649. characterMakers.push(() => makeCharacter(
  16650. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16651. {
  16652. front: {
  16653. height: math.unit(6, "feet"),
  16654. weight: math.unit(75, "kg"),
  16655. name: "Front",
  16656. image: {
  16657. source: "./media/characters/linda/front.svg",
  16658. extra: 930 / 874,
  16659. bottom: 0.004
  16660. }
  16661. },
  16662. },
  16663. [
  16664. {
  16665. name: "Normal",
  16666. height: math.unit(6, "feet"),
  16667. default: true
  16668. },
  16669. ]
  16670. ))
  16671. characterMakers.push(() => makeCharacter(
  16672. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16673. {
  16674. front: {
  16675. height: math.unit(6 + 8 / 12, "feet"),
  16676. weight: math.unit(220, "lb"),
  16677. name: "Front",
  16678. image: {
  16679. source: "./media/characters/caylex/front.svg",
  16680. extra: 821 / 772,
  16681. bottom: 0.07
  16682. }
  16683. },
  16684. back: {
  16685. height: math.unit(6 + 8 / 12, "feet"),
  16686. weight: math.unit(220, "lb"),
  16687. name: "Back",
  16688. image: {
  16689. source: "./media/characters/caylex/back.svg",
  16690. extra: 821 / 772,
  16691. bottom: 0.022
  16692. }
  16693. },
  16694. hand: {
  16695. height: math.unit(1.25, "feet"),
  16696. name: "Hand",
  16697. image: {
  16698. source: "./media/characters/caylex/hand.svg"
  16699. }
  16700. },
  16701. foot: {
  16702. height: math.unit(1.6, "feet"),
  16703. name: "Foot",
  16704. image: {
  16705. source: "./media/characters/caylex/foot.svg"
  16706. }
  16707. },
  16708. armored: {
  16709. height: math.unit(6 + 8 / 12, "feet"),
  16710. weight: math.unit(250, "lb"),
  16711. name: "Armored",
  16712. image: {
  16713. source: "./media/characters/caylex/armored.svg",
  16714. extra: 1420 / 1310,
  16715. bottom: 0.045
  16716. }
  16717. },
  16718. },
  16719. [
  16720. {
  16721. name: "Normal",
  16722. height: math.unit(6 + 8 / 12, "feet"),
  16723. default: true
  16724. },
  16725. {
  16726. name: "Normal+",
  16727. height: math.unit(12, "feet")
  16728. },
  16729. ]
  16730. ))
  16731. characterMakers.push(() => makeCharacter(
  16732. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16733. {
  16734. front: {
  16735. height: math.unit(7 + 6 / 12, "feet"),
  16736. weight: math.unit(288, "lb"),
  16737. name: "Front",
  16738. image: {
  16739. source: "./media/characters/alana/front.svg",
  16740. extra: 679 / 653,
  16741. bottom: 22.5 / 701
  16742. }
  16743. },
  16744. },
  16745. [
  16746. {
  16747. name: "Normal",
  16748. height: math.unit(7 + 6 / 12, "feet")
  16749. },
  16750. {
  16751. name: "Large",
  16752. height: math.unit(50, "feet")
  16753. },
  16754. {
  16755. name: "Macro",
  16756. height: math.unit(100, "feet"),
  16757. default: true
  16758. },
  16759. {
  16760. name: "Macro+",
  16761. height: math.unit(200, "feet")
  16762. },
  16763. ]
  16764. ))
  16765. characterMakers.push(() => makeCharacter(
  16766. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16767. {
  16768. front: {
  16769. height: math.unit(6 + 1 / 12, "feet"),
  16770. weight: math.unit(210, "lb"),
  16771. name: "Front",
  16772. image: {
  16773. source: "./media/characters/hasani/front.svg",
  16774. extra: 244 / 232,
  16775. bottom: 0.01
  16776. }
  16777. },
  16778. back: {
  16779. height: math.unit(6 + 1 / 12, "feet"),
  16780. weight: math.unit(210, "lb"),
  16781. name: "Back",
  16782. image: {
  16783. source: "./media/characters/hasani/back.svg",
  16784. extra: 244 / 232,
  16785. bottom: 0.01
  16786. }
  16787. },
  16788. },
  16789. [
  16790. {
  16791. name: "Normal",
  16792. height: math.unit(6 + 1 / 12, "feet")
  16793. },
  16794. {
  16795. name: "Macro",
  16796. height: math.unit(175, "feet"),
  16797. default: true
  16798. },
  16799. ]
  16800. ))
  16801. characterMakers.push(() => makeCharacter(
  16802. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16803. {
  16804. front: {
  16805. height: math.unit(1.82, "meters"),
  16806. weight: math.unit(140, "lb"),
  16807. name: "Front",
  16808. image: {
  16809. source: "./media/characters/nita/front.svg",
  16810. extra: 2473 / 2363,
  16811. bottom: 0.01
  16812. }
  16813. },
  16814. },
  16815. [
  16816. {
  16817. name: "Normal",
  16818. height: math.unit(1.82, "m")
  16819. },
  16820. {
  16821. name: "Macro",
  16822. height: math.unit(300, "m")
  16823. },
  16824. {
  16825. name: "Mistake Canon",
  16826. height: math.unit(0.5, "miles"),
  16827. default: true
  16828. },
  16829. {
  16830. name: "Big Mistake",
  16831. height: math.unit(13, "miles")
  16832. },
  16833. {
  16834. name: "Playing God",
  16835. height: math.unit(2450, "miles")
  16836. },
  16837. ]
  16838. ))
  16839. characterMakers.push(() => makeCharacter(
  16840. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16841. {
  16842. front: {
  16843. height: math.unit(4, "feet"),
  16844. weight: math.unit(120, "lb"),
  16845. name: "Front",
  16846. image: {
  16847. source: "./media/characters/shiriko/front.svg",
  16848. extra: 195 / 188
  16849. }
  16850. },
  16851. },
  16852. [
  16853. {
  16854. name: "Normal",
  16855. height: math.unit(4, "feet"),
  16856. default: true
  16857. },
  16858. ]
  16859. ))
  16860. characterMakers.push(() => makeCharacter(
  16861. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16862. {
  16863. front: {
  16864. height: math.unit(6, "feet"),
  16865. name: "front",
  16866. image: {
  16867. source: "./media/characters/deja/front.svg",
  16868. extra: 926 / 840,
  16869. bottom: 0.07
  16870. }
  16871. },
  16872. },
  16873. [
  16874. {
  16875. name: "Planck Length",
  16876. height: math.unit(1.6e-35, "meters")
  16877. },
  16878. {
  16879. name: "Normal",
  16880. height: math.unit(30.48, "meters"),
  16881. default: true
  16882. },
  16883. {
  16884. name: "Universal",
  16885. height: math.unit(8.8e26, "meters")
  16886. },
  16887. ]
  16888. ))
  16889. characterMakers.push(() => makeCharacter(
  16890. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16891. {
  16892. side: {
  16893. height: math.unit(8, "feet"),
  16894. weight: math.unit(6300, "lb"),
  16895. name: "Side",
  16896. image: {
  16897. source: "./media/characters/anima/side.svg",
  16898. bottom: 0.035
  16899. }
  16900. },
  16901. },
  16902. [
  16903. {
  16904. name: "Normal",
  16905. height: math.unit(8, "feet"),
  16906. default: true
  16907. },
  16908. ]
  16909. ))
  16910. characterMakers.push(() => makeCharacter(
  16911. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16912. {
  16913. front: {
  16914. height: math.unit(8, "feet"),
  16915. weight: math.unit(350, "lb"),
  16916. name: "Front",
  16917. image: {
  16918. source: "./media/characters/bianca/front.svg",
  16919. extra: 234 / 225,
  16920. bottom: 0.03
  16921. }
  16922. },
  16923. },
  16924. [
  16925. {
  16926. name: "Normal",
  16927. height: math.unit(8, "feet"),
  16928. default: true
  16929. },
  16930. ]
  16931. ))
  16932. characterMakers.push(() => makeCharacter(
  16933. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16934. {
  16935. front: {
  16936. height: math.unit(6, "feet"),
  16937. weight: math.unit(150, "lb"),
  16938. name: "Front",
  16939. image: {
  16940. source: "./media/characters/adinia/front.svg",
  16941. extra: 1845 / 1672,
  16942. bottom: 0.02
  16943. }
  16944. },
  16945. back: {
  16946. height: math.unit(6, "feet"),
  16947. weight: math.unit(150, "lb"),
  16948. name: "Back",
  16949. image: {
  16950. source: "./media/characters/adinia/back.svg",
  16951. extra: 1845 / 1672,
  16952. bottom: 0.002
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Normal",
  16959. height: math.unit(11 + 5 / 12, "feet"),
  16960. default: true
  16961. },
  16962. ]
  16963. ))
  16964. characterMakers.push(() => makeCharacter(
  16965. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16966. {
  16967. front: {
  16968. height: math.unit(3, "meters"),
  16969. weight: math.unit(200, "kg"),
  16970. name: "Front",
  16971. image: {
  16972. source: "./media/characters/lykasa/front.svg",
  16973. extra: 1076 / 976,
  16974. bottom: 0.06
  16975. }
  16976. },
  16977. },
  16978. [
  16979. {
  16980. name: "Normal",
  16981. height: math.unit(3, "meters")
  16982. },
  16983. {
  16984. name: "Kaiju",
  16985. height: math.unit(120, "meters"),
  16986. default: true
  16987. },
  16988. {
  16989. name: "Mega Kaiju",
  16990. height: math.unit(240, "km")
  16991. },
  16992. {
  16993. name: "Giga Kaiju",
  16994. height: math.unit(400, "megameters")
  16995. },
  16996. {
  16997. name: "Tera Kaiju",
  16998. height: math.unit(800, "gigameters")
  16999. },
  17000. {
  17001. name: "Kaiju Dragon Goddess",
  17002. height: math.unit(26, "zettaparsecs")
  17003. },
  17004. ]
  17005. ))
  17006. characterMakers.push(() => makeCharacter(
  17007. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17008. {
  17009. side: {
  17010. height: math.unit(283 / 124 * 6, "feet"),
  17011. weight: math.unit(35000, "lb"),
  17012. name: "Side",
  17013. image: {
  17014. source: "./media/characters/malfaren/side.svg",
  17015. extra: 2500 / 1010,
  17016. bottom: 0.01
  17017. }
  17018. },
  17019. front: {
  17020. height: math.unit(22.36, "feet"),
  17021. weight: math.unit(35000, "lb"),
  17022. name: "Front",
  17023. image: {
  17024. source: "./media/characters/malfaren/front.svg",
  17025. extra: 1631 / 1476,
  17026. bottom: 0.01
  17027. }
  17028. },
  17029. maw: {
  17030. height: math.unit(6.9, "feet"),
  17031. name: "Maw",
  17032. image: {
  17033. source: "./media/characters/malfaren/maw.svg"
  17034. }
  17035. },
  17036. },
  17037. [
  17038. {
  17039. name: "Big",
  17040. height: math.unit(283 / 162 * 6, "feet"),
  17041. },
  17042. {
  17043. name: "Bigger",
  17044. height: math.unit(283 / 124 * 6, "feet")
  17045. },
  17046. {
  17047. name: "Massive",
  17048. height: math.unit(283 / 92 * 6, "feet"),
  17049. default: true
  17050. },
  17051. {
  17052. name: "👀💦",
  17053. height: math.unit(283 / 73 * 6, "feet"),
  17054. },
  17055. ]
  17056. ))
  17057. characterMakers.push(() => makeCharacter(
  17058. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17059. {
  17060. front: {
  17061. height: math.unit(1.7, "m"),
  17062. weight: math.unit(70, "kg"),
  17063. name: "Front",
  17064. image: {
  17065. source: "./media/characters/kernel/front.svg",
  17066. extra: 222 / 210,
  17067. bottom: 0.007
  17068. }
  17069. },
  17070. },
  17071. [
  17072. {
  17073. name: "Nano",
  17074. height: math.unit(17, "micrometers")
  17075. },
  17076. {
  17077. name: "Micro",
  17078. height: math.unit(1.7, "mm")
  17079. },
  17080. {
  17081. name: "Small",
  17082. height: math.unit(1.7, "cm")
  17083. },
  17084. {
  17085. name: "Normal",
  17086. height: math.unit(1.7, "m"),
  17087. default: true
  17088. },
  17089. ]
  17090. ))
  17091. characterMakers.push(() => makeCharacter(
  17092. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17093. {
  17094. front: {
  17095. height: math.unit(1.75, "meters"),
  17096. weight: math.unit(65, "kg"),
  17097. name: "Front",
  17098. image: {
  17099. source: "./media/characters/jayne-folest/front.svg",
  17100. extra: 2115 / 2007,
  17101. bottom: 0.02
  17102. }
  17103. },
  17104. back: {
  17105. height: math.unit(1.75, "meters"),
  17106. weight: math.unit(65, "kg"),
  17107. name: "Back",
  17108. image: {
  17109. source: "./media/characters/jayne-folest/back.svg",
  17110. extra: 2115 / 2007,
  17111. bottom: 0.005
  17112. }
  17113. },
  17114. frontClothed: {
  17115. height: math.unit(1.75, "meters"),
  17116. weight: math.unit(65, "kg"),
  17117. name: "Front (Clothed)",
  17118. image: {
  17119. source: "./media/characters/jayne-folest/front-clothed.svg",
  17120. extra: 2115 / 2007,
  17121. bottom: 0.035
  17122. }
  17123. },
  17124. hand: {
  17125. height: math.unit(1 / 1.260, "feet"),
  17126. name: "Hand",
  17127. image: {
  17128. source: "./media/characters/jayne-folest/hand.svg"
  17129. }
  17130. },
  17131. foot: {
  17132. height: math.unit(1 / 0.918, "feet"),
  17133. name: "Foot",
  17134. image: {
  17135. source: "./media/characters/jayne-folest/foot.svg"
  17136. }
  17137. },
  17138. },
  17139. [
  17140. {
  17141. name: "Micro",
  17142. height: math.unit(4, "cm")
  17143. },
  17144. {
  17145. name: "Normal",
  17146. height: math.unit(1.75, "meters")
  17147. },
  17148. {
  17149. name: "Macro",
  17150. height: math.unit(47.5, "meters"),
  17151. default: true
  17152. },
  17153. ]
  17154. ))
  17155. characterMakers.push(() => makeCharacter(
  17156. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17157. {
  17158. front: {
  17159. height: math.unit(180, "cm"),
  17160. weight: math.unit(70, "kg"),
  17161. name: "Front",
  17162. image: {
  17163. source: "./media/characters/algier/front.svg",
  17164. extra: 596 / 572,
  17165. bottom: 0.04
  17166. }
  17167. },
  17168. back: {
  17169. height: math.unit(180, "cm"),
  17170. weight: math.unit(70, "kg"),
  17171. name: "Back",
  17172. image: {
  17173. source: "./media/characters/algier/back.svg",
  17174. extra: 596 / 572,
  17175. bottom: 0.025
  17176. }
  17177. },
  17178. frontdressed: {
  17179. height: math.unit(180, "cm"),
  17180. weight: math.unit(150, "kg"),
  17181. name: "Front-dressed",
  17182. image: {
  17183. source: "./media/characters/algier/front-dressed.svg",
  17184. extra: 596 / 572,
  17185. bottom: 0.038
  17186. }
  17187. },
  17188. },
  17189. [
  17190. {
  17191. name: "Micro",
  17192. height: math.unit(5, "cm")
  17193. },
  17194. {
  17195. name: "Normal",
  17196. height: math.unit(180, "cm"),
  17197. default: true
  17198. },
  17199. {
  17200. name: "Macro",
  17201. height: math.unit(64, "m")
  17202. },
  17203. ]
  17204. ))
  17205. characterMakers.push(() => makeCharacter(
  17206. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17207. {
  17208. upright: {
  17209. height: math.unit(7, "feet"),
  17210. weight: math.unit(300, "lb"),
  17211. name: "Upright",
  17212. image: {
  17213. source: "./media/characters/pretzel/upright.svg",
  17214. extra: 534 / 522,
  17215. bottom: 0.065
  17216. }
  17217. },
  17218. sprawling: {
  17219. height: math.unit(3.75, "feet"),
  17220. weight: math.unit(300, "lb"),
  17221. name: "Sprawling",
  17222. image: {
  17223. source: "./media/characters/pretzel/sprawling.svg",
  17224. extra: 314 / 281,
  17225. bottom: 0.1
  17226. }
  17227. },
  17228. tongue: {
  17229. height: math.unit(2, "feet"),
  17230. name: "Tongue",
  17231. image: {
  17232. source: "./media/characters/pretzel/tongue.svg"
  17233. }
  17234. },
  17235. },
  17236. [
  17237. {
  17238. name: "Normal",
  17239. height: math.unit(7, "feet"),
  17240. default: true
  17241. },
  17242. {
  17243. name: "Oversized",
  17244. height: math.unit(15, "feet")
  17245. },
  17246. {
  17247. name: "Huge",
  17248. height: math.unit(30, "feet")
  17249. },
  17250. {
  17251. name: "Macro",
  17252. height: math.unit(250, "feet")
  17253. },
  17254. ]
  17255. ))
  17256. characterMakers.push(() => makeCharacter(
  17257. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17258. {
  17259. sideFront: {
  17260. height: math.unit(5 + 2 / 12, "feet"),
  17261. weight: math.unit(120, "lb"),
  17262. name: "Front Side",
  17263. image: {
  17264. source: "./media/characters/roxi/side-front.svg",
  17265. extra: 2924 / 2717,
  17266. bottom: 0.08
  17267. }
  17268. },
  17269. sideBack: {
  17270. height: math.unit(5 + 2 / 12, "feet"),
  17271. weight: math.unit(120, "lb"),
  17272. name: "Back Side",
  17273. image: {
  17274. source: "./media/characters/roxi/side-back.svg",
  17275. extra: 2904 / 2693,
  17276. bottom: 0.06
  17277. }
  17278. },
  17279. front: {
  17280. height: math.unit(5 + 2 / 12, "feet"),
  17281. weight: math.unit(120, "lb"),
  17282. name: "Front",
  17283. image: {
  17284. source: "./media/characters/roxi/front.svg",
  17285. extra: 2028 / 1907,
  17286. bottom: 0.01
  17287. }
  17288. },
  17289. frontAlt: {
  17290. height: math.unit(5 + 2 / 12, "feet"),
  17291. weight: math.unit(120, "lb"),
  17292. name: "Front (Alt)",
  17293. image: {
  17294. source: "./media/characters/roxi/front-alt.svg",
  17295. extra: 1828 / 1798,
  17296. bottom: 0.01
  17297. }
  17298. },
  17299. sitting: {
  17300. height: math.unit(2.8, "feet"),
  17301. weight: math.unit(120, "lb"),
  17302. name: "Sitting",
  17303. image: {
  17304. source: "./media/characters/roxi/sitting.svg",
  17305. extra: 2660 / 2462,
  17306. bottom: 0.1
  17307. }
  17308. },
  17309. },
  17310. [
  17311. {
  17312. name: "Normal",
  17313. height: math.unit(5 + 2 / 12, "feet"),
  17314. default: true
  17315. },
  17316. ]
  17317. ))
  17318. characterMakers.push(() => makeCharacter(
  17319. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17320. {
  17321. side: {
  17322. height: math.unit(55, "feet"),
  17323. weight: math.unit(153, "tons"),
  17324. name: "Side",
  17325. image: {
  17326. source: "./media/characters/shadow/side.svg",
  17327. extra: 701 / 628,
  17328. bottom: 0.02
  17329. }
  17330. },
  17331. flying: {
  17332. height: math.unit(145, "feet"),
  17333. weight: math.unit(153, "tons"),
  17334. name: "Flying",
  17335. image: {
  17336. source: "./media/characters/shadow/flying.svg"
  17337. }
  17338. },
  17339. },
  17340. [
  17341. {
  17342. name: "Normal",
  17343. height: math.unit(55, "feet"),
  17344. default: true
  17345. },
  17346. ]
  17347. ))
  17348. characterMakers.push(() => makeCharacter(
  17349. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17350. {
  17351. front: {
  17352. height: math.unit(6, "feet"),
  17353. weight: math.unit(200, "lb"),
  17354. name: "Front",
  17355. image: {
  17356. source: "./media/characters/marcie/front.svg",
  17357. extra: 960 / 876,
  17358. bottom: 58 / 1017.87
  17359. }
  17360. },
  17361. },
  17362. [
  17363. {
  17364. name: "Macro",
  17365. height: math.unit(1, "mile"),
  17366. default: true
  17367. },
  17368. ]
  17369. ))
  17370. characterMakers.push(() => makeCharacter(
  17371. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17372. {
  17373. front: {
  17374. height: math.unit(7, "feet"),
  17375. weight: math.unit(200, "lb"),
  17376. name: "Front",
  17377. image: {
  17378. source: "./media/characters/kachina/front.svg",
  17379. extra: 1290.68 / 1119,
  17380. bottom: 36.5 / 1327.18
  17381. }
  17382. },
  17383. },
  17384. [
  17385. {
  17386. name: "Normal",
  17387. height: math.unit(7, "feet"),
  17388. default: true
  17389. },
  17390. ]
  17391. ))
  17392. characterMakers.push(() => makeCharacter(
  17393. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17394. {
  17395. looking: {
  17396. height: math.unit(2, "meters"),
  17397. weight: math.unit(300, "kg"),
  17398. name: "Looking",
  17399. image: {
  17400. source: "./media/characters/kash/looking.svg",
  17401. extra: 474 / 344,
  17402. bottom: 0.03
  17403. }
  17404. },
  17405. side: {
  17406. height: math.unit(2, "meters"),
  17407. weight: math.unit(300, "kg"),
  17408. name: "Side",
  17409. image: {
  17410. source: "./media/characters/kash/side.svg",
  17411. extra: 302 / 251,
  17412. bottom: 0.03
  17413. }
  17414. },
  17415. front: {
  17416. height: math.unit(2, "meters"),
  17417. weight: math.unit(300, "kg"),
  17418. name: "Front",
  17419. image: {
  17420. source: "./media/characters/kash/front.svg",
  17421. extra: 495 / 360,
  17422. bottom: 0.015
  17423. }
  17424. },
  17425. },
  17426. [
  17427. {
  17428. name: "Normal",
  17429. height: math.unit(2, "meters"),
  17430. default: true
  17431. },
  17432. {
  17433. name: "Big",
  17434. height: math.unit(3, "meters")
  17435. },
  17436. {
  17437. name: "Large",
  17438. height: math.unit(5, "meters")
  17439. },
  17440. ]
  17441. ))
  17442. characterMakers.push(() => makeCharacter(
  17443. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17444. {
  17445. feeding: {
  17446. height: math.unit(6.7, "feet"),
  17447. weight: math.unit(350, "lb"),
  17448. name: "Feeding",
  17449. image: {
  17450. source: "./media/characters/lalim/feeding.svg",
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(6.7, "feet"),
  17458. default: true
  17459. },
  17460. ]
  17461. ))
  17462. characterMakers.push(() => makeCharacter(
  17463. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17464. {
  17465. front: {
  17466. height: math.unit(9.5, "feet"),
  17467. weight: math.unit(600, "lb"),
  17468. name: "Front",
  17469. image: {
  17470. source: "./media/characters/de'vout/front.svg",
  17471. extra: 1443 / 1328,
  17472. bottom: 0.025
  17473. }
  17474. },
  17475. back: {
  17476. height: math.unit(9.5, "feet"),
  17477. weight: math.unit(600, "lb"),
  17478. name: "Back",
  17479. image: {
  17480. source: "./media/characters/de'vout/back.svg",
  17481. extra: 1443 / 1328
  17482. }
  17483. },
  17484. frontDressed: {
  17485. height: math.unit(9.5, "feet"),
  17486. weight: math.unit(600, "lb"),
  17487. name: "Front (Dressed",
  17488. image: {
  17489. source: "./media/characters/de'vout/front-dressed.svg",
  17490. extra: 1443 / 1328,
  17491. bottom: 0.025
  17492. }
  17493. },
  17494. backDressed: {
  17495. height: math.unit(9.5, "feet"),
  17496. weight: math.unit(600, "lb"),
  17497. name: "Back (Dressed",
  17498. image: {
  17499. source: "./media/characters/de'vout/back-dressed.svg",
  17500. extra: 1443 / 1328
  17501. }
  17502. },
  17503. },
  17504. [
  17505. {
  17506. name: "Normal",
  17507. height: math.unit(9.5, "feet"),
  17508. default: true
  17509. },
  17510. ]
  17511. ))
  17512. characterMakers.push(() => makeCharacter(
  17513. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17514. {
  17515. front: {
  17516. height: math.unit(8, "feet"),
  17517. weight: math.unit(225, "lb"),
  17518. name: "Front",
  17519. image: {
  17520. source: "./media/characters/talana/front.svg",
  17521. extra: 1410 / 1300,
  17522. bottom: 0.015
  17523. }
  17524. },
  17525. frontDressed: {
  17526. height: math.unit(8, "feet"),
  17527. weight: math.unit(225, "lb"),
  17528. name: "Front (Dressed",
  17529. image: {
  17530. source: "./media/characters/talana/front-dressed.svg",
  17531. extra: 1410 / 1300,
  17532. bottom: 0.015
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Normal",
  17539. height: math.unit(8, "feet"),
  17540. default: true
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17546. {
  17547. side: {
  17548. height: math.unit(7.2, "feet"),
  17549. weight: math.unit(150, "lb"),
  17550. name: "Side",
  17551. image: {
  17552. source: "./media/characters/xeauvok/side.svg",
  17553. extra: 1975 / 1523,
  17554. bottom: 0.07
  17555. }
  17556. },
  17557. },
  17558. [
  17559. {
  17560. name: "Normal",
  17561. height: math.unit(7.2, "feet"),
  17562. default: true
  17563. },
  17564. ]
  17565. ))
  17566. characterMakers.push(() => makeCharacter(
  17567. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17568. {
  17569. side: {
  17570. height: math.unit(10, "feet"),
  17571. weight: math.unit(900, "kg"),
  17572. name: "Side",
  17573. image: {
  17574. source: "./media/characters/zara/side.svg",
  17575. extra: 504 / 498
  17576. }
  17577. },
  17578. },
  17579. [
  17580. {
  17581. name: "Normal",
  17582. height: math.unit(10, "feet"),
  17583. default: true
  17584. },
  17585. ]
  17586. ))
  17587. characterMakers.push(() => makeCharacter(
  17588. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17589. {
  17590. side: {
  17591. height: math.unit(6, "feet"),
  17592. weight: math.unit(150, "lb"),
  17593. name: "Side",
  17594. image: {
  17595. source: "./media/characters/richard-dragon/side.svg",
  17596. extra: 845 / 340,
  17597. bottom: 0.017
  17598. }
  17599. },
  17600. maw: {
  17601. height: math.unit(2.97, "feet"),
  17602. name: "Maw",
  17603. image: {
  17604. source: "./media/characters/richard-dragon/maw.svg"
  17605. }
  17606. },
  17607. },
  17608. [
  17609. ]
  17610. ))
  17611. characterMakers.push(() => makeCharacter(
  17612. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17613. {
  17614. front: {
  17615. height: math.unit(4, "feet"),
  17616. weight: math.unit(100, "lb"),
  17617. name: "Front",
  17618. image: {
  17619. source: "./media/characters/richard-smeargle/front.svg",
  17620. extra: 2952 / 2820,
  17621. bottom: 0.028
  17622. }
  17623. },
  17624. },
  17625. [
  17626. {
  17627. name: "Normal",
  17628. height: math.unit(4, "feet"),
  17629. default: true
  17630. },
  17631. {
  17632. name: "Dynamax",
  17633. height: math.unit(20, "meters")
  17634. },
  17635. ]
  17636. ))
  17637. characterMakers.push(() => makeCharacter(
  17638. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17639. {
  17640. front: {
  17641. height: math.unit(6, "feet"),
  17642. weight: math.unit(110, "lb"),
  17643. name: "Front",
  17644. image: {
  17645. source: "./media/characters/klay/front.svg",
  17646. extra: 962 / 883,
  17647. bottom: 0.04
  17648. }
  17649. },
  17650. back: {
  17651. height: math.unit(6, "feet"),
  17652. weight: math.unit(110, "lb"),
  17653. name: "Back",
  17654. image: {
  17655. source: "./media/characters/klay/back.svg",
  17656. extra: 962 / 883
  17657. }
  17658. },
  17659. beans: {
  17660. height: math.unit(1.15, "feet"),
  17661. name: "Beans",
  17662. image: {
  17663. source: "./media/characters/klay/beans.svg"
  17664. }
  17665. },
  17666. },
  17667. [
  17668. {
  17669. name: "Micro",
  17670. height: math.unit(6, "inches")
  17671. },
  17672. {
  17673. name: "Mini",
  17674. height: math.unit(3, "feet")
  17675. },
  17676. {
  17677. name: "Normal",
  17678. height: math.unit(6, "feet"),
  17679. default: true
  17680. },
  17681. {
  17682. name: "Big",
  17683. height: math.unit(25, "feet")
  17684. },
  17685. {
  17686. name: "Macro",
  17687. height: math.unit(100, "feet")
  17688. },
  17689. {
  17690. name: "Megamacro",
  17691. height: math.unit(400, "feet")
  17692. },
  17693. ]
  17694. ))
  17695. characterMakers.push(() => makeCharacter(
  17696. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17697. {
  17698. front: {
  17699. height: math.unit(6, "feet"),
  17700. weight: math.unit(160, "lb"),
  17701. name: "Front",
  17702. image: {
  17703. source: "./media/characters/marcus/front.svg",
  17704. extra: 734 / 676,
  17705. bottom: 0.03
  17706. }
  17707. },
  17708. },
  17709. [
  17710. {
  17711. name: "Little",
  17712. height: math.unit(6, "feet")
  17713. },
  17714. {
  17715. name: "Normal",
  17716. height: math.unit(110, "feet"),
  17717. default: true
  17718. },
  17719. {
  17720. name: "Macro",
  17721. height: math.unit(250, "feet")
  17722. },
  17723. {
  17724. name: "Megamacro",
  17725. height: math.unit(1000, "feet")
  17726. },
  17727. ]
  17728. ))
  17729. characterMakers.push(() => makeCharacter(
  17730. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17731. {
  17732. front: {
  17733. height: math.unit(7, "feet"),
  17734. weight: math.unit(275, "lb"),
  17735. name: "Front",
  17736. image: {
  17737. source: "./media/characters/claude-delroute/front.svg",
  17738. extra: 230 / 214,
  17739. bottom: 0.007
  17740. }
  17741. },
  17742. side: {
  17743. height: math.unit(7, "feet"),
  17744. weight: math.unit(275, "lb"),
  17745. name: "Side",
  17746. image: {
  17747. source: "./media/characters/claude-delroute/side.svg",
  17748. extra: 222 / 214,
  17749. bottom: 0.01
  17750. }
  17751. },
  17752. back: {
  17753. height: math.unit(7, "feet"),
  17754. weight: math.unit(275, "lb"),
  17755. name: "Back",
  17756. image: {
  17757. source: "./media/characters/claude-delroute/back.svg",
  17758. extra: 230 / 214,
  17759. bottom: 0.015
  17760. }
  17761. },
  17762. maw: {
  17763. height: math.unit(0.6407, "meters"),
  17764. name: "Maw",
  17765. image: {
  17766. source: "./media/characters/claude-delroute/maw.svg"
  17767. }
  17768. },
  17769. },
  17770. [
  17771. {
  17772. name: "Normal",
  17773. height: math.unit(7, "feet"),
  17774. default: true
  17775. },
  17776. {
  17777. name: "Lorge",
  17778. height: math.unit(20, "feet")
  17779. },
  17780. ]
  17781. ))
  17782. characterMakers.push(() => makeCharacter(
  17783. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17784. {
  17785. front: {
  17786. height: math.unit(8 + 4 / 12, "feet"),
  17787. weight: math.unit(600, "lb"),
  17788. name: "Front",
  17789. image: {
  17790. source: "./media/characters/dragonien/front.svg",
  17791. extra: 100 / 94,
  17792. bottom: 3.3 / 103.3445
  17793. }
  17794. },
  17795. back: {
  17796. height: math.unit(8 + 4 / 12, "feet"),
  17797. weight: math.unit(600, "lb"),
  17798. name: "Back",
  17799. image: {
  17800. source: "./media/characters/dragonien/back.svg",
  17801. extra: 776 / 746,
  17802. bottom: 6.4 / 782.0616
  17803. }
  17804. },
  17805. foot: {
  17806. height: math.unit(1.54, "feet"),
  17807. name: "Foot",
  17808. image: {
  17809. source: "./media/characters/dragonien/foot.svg",
  17810. }
  17811. },
  17812. },
  17813. [
  17814. {
  17815. name: "Normal",
  17816. height: math.unit(8 + 4 / 12, "feet"),
  17817. default: true
  17818. },
  17819. {
  17820. name: "Macro",
  17821. height: math.unit(200, "feet")
  17822. },
  17823. {
  17824. name: "Megamacro",
  17825. height: math.unit(1, "mile")
  17826. },
  17827. {
  17828. name: "Gigamacro",
  17829. height: math.unit(1000, "miles")
  17830. },
  17831. ]
  17832. ))
  17833. characterMakers.push(() => makeCharacter(
  17834. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17835. {
  17836. front: {
  17837. height: math.unit(5 + 2 / 12, "feet"),
  17838. weight: math.unit(110, "lb"),
  17839. name: "Front",
  17840. image: {
  17841. source: "./media/characters/desta/front.svg",
  17842. extra: 767 / 726,
  17843. bottom: 11.7 / 779
  17844. }
  17845. },
  17846. back: {
  17847. height: math.unit(5 + 2 / 12, "feet"),
  17848. weight: math.unit(110, "lb"),
  17849. name: "Back",
  17850. image: {
  17851. source: "./media/characters/desta/back.svg",
  17852. extra: 777 / 728,
  17853. bottom: 6 / 784
  17854. }
  17855. },
  17856. frontAlt: {
  17857. height: math.unit(5 + 2 / 12, "feet"),
  17858. weight: math.unit(110, "lb"),
  17859. name: "Front",
  17860. image: {
  17861. source: "./media/characters/desta/front-alt.svg",
  17862. extra: 1482 / 1417
  17863. }
  17864. },
  17865. side: {
  17866. height: math.unit(5 + 2 / 12, "feet"),
  17867. weight: math.unit(110, "lb"),
  17868. name: "Side",
  17869. image: {
  17870. source: "./media/characters/desta/side.svg",
  17871. extra: 2579 / 2491,
  17872. bottom: 0.053
  17873. }
  17874. },
  17875. },
  17876. [
  17877. {
  17878. name: "Micro",
  17879. height: math.unit(6, "inches")
  17880. },
  17881. {
  17882. name: "Normal",
  17883. height: math.unit(5 + 2 / 12, "feet"),
  17884. default: true
  17885. },
  17886. {
  17887. name: "Macro",
  17888. height: math.unit(62, "feet")
  17889. },
  17890. {
  17891. name: "Megamacro",
  17892. height: math.unit(1800, "feet")
  17893. },
  17894. ]
  17895. ))
  17896. characterMakers.push(() => makeCharacter(
  17897. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17898. {
  17899. front: {
  17900. height: math.unit(10, "feet"),
  17901. weight: math.unit(700, "lb"),
  17902. name: "Front",
  17903. image: {
  17904. source: "./media/characters/storm-alystar/front.svg",
  17905. extra: 2112 / 1898,
  17906. bottom: 0.034
  17907. }
  17908. },
  17909. },
  17910. [
  17911. {
  17912. name: "Micro",
  17913. height: math.unit(3.5, "inches")
  17914. },
  17915. {
  17916. name: "Normal",
  17917. height: math.unit(10, "feet"),
  17918. default: true
  17919. },
  17920. {
  17921. name: "Macro",
  17922. height: math.unit(400, "feet")
  17923. },
  17924. {
  17925. name: "Deific",
  17926. height: math.unit(60, "miles")
  17927. },
  17928. ]
  17929. ))
  17930. characterMakers.push(() => makeCharacter(
  17931. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17932. {
  17933. front: {
  17934. height: math.unit(2.35, "meters"),
  17935. weight: math.unit(119, "kg"),
  17936. name: "Front",
  17937. image: {
  17938. source: "./media/characters/ilia/front.svg",
  17939. extra: 1285 / 1255,
  17940. bottom: 0.06
  17941. }
  17942. },
  17943. },
  17944. [
  17945. {
  17946. name: "Normal",
  17947. height: math.unit(2.35, "meters")
  17948. },
  17949. {
  17950. name: "Macro",
  17951. height: math.unit(140, "meters"),
  17952. default: true
  17953. },
  17954. {
  17955. name: "Megamacro",
  17956. height: math.unit(100, "miles")
  17957. },
  17958. ]
  17959. ))
  17960. characterMakers.push(() => makeCharacter(
  17961. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17962. {
  17963. front: {
  17964. height: math.unit(6 + 5 / 12, "feet"),
  17965. weight: math.unit(190, "lb"),
  17966. name: "Front",
  17967. image: {
  17968. source: "./media/characters/kingdead/front.svg",
  17969. extra: 1228 / 1177
  17970. }
  17971. },
  17972. },
  17973. [
  17974. {
  17975. name: "Micro",
  17976. height: math.unit(7, "inches")
  17977. },
  17978. {
  17979. name: "Normal",
  17980. height: math.unit(6 + 5 / 12, "feet")
  17981. },
  17982. {
  17983. name: "Macro",
  17984. height: math.unit(150, "feet"),
  17985. default: true
  17986. },
  17987. {
  17988. name: "Megamacro",
  17989. height: math.unit(200, "miles")
  17990. },
  17991. ]
  17992. ))
  17993. characterMakers.push(() => makeCharacter(
  17994. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  17995. {
  17996. front: {
  17997. height: math.unit(8, "feet"),
  17998. weight: math.unit(600, "lb"),
  17999. name: "Front",
  18000. image: {
  18001. source: "./media/characters/kyrehx/front.svg",
  18002. extra: 1195 / 1095,
  18003. bottom: 0.034
  18004. }
  18005. },
  18006. },
  18007. [
  18008. {
  18009. name: "Micro",
  18010. height: math.unit(2, "inches")
  18011. },
  18012. {
  18013. name: "Normal",
  18014. height: math.unit(8, "feet"),
  18015. default: true
  18016. },
  18017. {
  18018. name: "Macro",
  18019. height: math.unit(255, "feet")
  18020. },
  18021. ]
  18022. ))
  18023. characterMakers.push(() => makeCharacter(
  18024. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18025. {
  18026. front: {
  18027. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18028. weight: math.unit(184, "lb"),
  18029. name: "Front",
  18030. image: {
  18031. source: "./media/characters/xang/front.svg",
  18032. extra: 845 / 755
  18033. }
  18034. },
  18035. },
  18036. [
  18037. {
  18038. name: "Normal",
  18039. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18040. default: true
  18041. },
  18042. {
  18043. name: "Macro",
  18044. height: math.unit(0.935 * 146, "feet")
  18045. },
  18046. {
  18047. name: "Megamacro",
  18048. height: math.unit(0.935 * 3, "miles")
  18049. },
  18050. ]
  18051. ))
  18052. characterMakers.push(() => makeCharacter(
  18053. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18054. {
  18055. frontDressed: {
  18056. height: math.unit(5 + 7 / 12, "feet"),
  18057. weight: math.unit(140, "lb"),
  18058. name: "Front (Dressed)",
  18059. image: {
  18060. source: "./media/characters/doc-weardno/front-dressed.svg",
  18061. extra: 263 / 234
  18062. }
  18063. },
  18064. backDressed: {
  18065. height: math.unit(5 + 7 / 12, "feet"),
  18066. weight: math.unit(140, "lb"),
  18067. name: "Back (Dressed)",
  18068. image: {
  18069. source: "./media/characters/doc-weardno/back-dressed.svg",
  18070. extra: 266 / 238
  18071. }
  18072. },
  18073. front: {
  18074. height: math.unit(5 + 7 / 12, "feet"),
  18075. weight: math.unit(140, "lb"),
  18076. name: "Front",
  18077. image: {
  18078. source: "./media/characters/doc-weardno/front.svg",
  18079. extra: 254 / 233
  18080. }
  18081. },
  18082. },
  18083. [
  18084. {
  18085. name: "Micro",
  18086. height: math.unit(3, "inches")
  18087. },
  18088. {
  18089. name: "Normal",
  18090. height: math.unit(5 + 7 / 12, "feet"),
  18091. default: true
  18092. },
  18093. {
  18094. name: "Macro",
  18095. height: math.unit(25, "feet")
  18096. },
  18097. {
  18098. name: "Megamacro",
  18099. height: math.unit(2, "miles")
  18100. },
  18101. ]
  18102. ))
  18103. characterMakers.push(() => makeCharacter(
  18104. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18105. {
  18106. front: {
  18107. height: math.unit(6 + 2 / 12, "feet"),
  18108. weight: math.unit(153, "lb"),
  18109. name: "Front",
  18110. image: {
  18111. source: "./media/characters/seth-whilst/front.svg",
  18112. bottom: 0.07
  18113. }
  18114. },
  18115. },
  18116. [
  18117. {
  18118. name: "Micro",
  18119. height: math.unit(5, "inches")
  18120. },
  18121. {
  18122. name: "Normal",
  18123. height: math.unit(6 + 2 / 12, "feet"),
  18124. default: true
  18125. },
  18126. ]
  18127. ))
  18128. characterMakers.push(() => makeCharacter(
  18129. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18130. {
  18131. front: {
  18132. height: math.unit(3, "inches"),
  18133. weight: math.unit(8, "grams"),
  18134. name: "Front",
  18135. image: {
  18136. source: "./media/characters/pocket-jabari/front.svg",
  18137. extra: 1024 / 974,
  18138. bottom: 0.039
  18139. }
  18140. },
  18141. },
  18142. [
  18143. {
  18144. name: "Minimicro",
  18145. height: math.unit(8, "mm")
  18146. },
  18147. {
  18148. name: "Micro",
  18149. height: math.unit(3, "inches"),
  18150. default: true
  18151. },
  18152. {
  18153. name: "Normal",
  18154. height: math.unit(3, "feet")
  18155. },
  18156. ]
  18157. ))
  18158. characterMakers.push(() => makeCharacter(
  18159. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18160. {
  18161. front: {
  18162. height: math.unit(15, "feet"),
  18163. weight: math.unit(3280, "lb"),
  18164. name: "Front",
  18165. image: {
  18166. source: "./media/characters/sapphy/front.svg",
  18167. extra: 671 / 577,
  18168. bottom: 0.085
  18169. }
  18170. },
  18171. back: {
  18172. height: math.unit(15, "feet"),
  18173. weight: math.unit(3280, "lb"),
  18174. name: "Back",
  18175. image: {
  18176. source: "./media/characters/sapphy/back.svg",
  18177. extra: 631 / 607,
  18178. bottom: 0.045
  18179. }
  18180. },
  18181. },
  18182. [
  18183. {
  18184. name: "Normal",
  18185. height: math.unit(15, "feet")
  18186. },
  18187. {
  18188. name: "Casual Macro",
  18189. height: math.unit(120, "feet")
  18190. },
  18191. {
  18192. name: "Macro",
  18193. height: math.unit(2150, "feet"),
  18194. default: true
  18195. },
  18196. {
  18197. name: "Megamacro",
  18198. height: math.unit(8, "miles")
  18199. },
  18200. {
  18201. name: "Galaxy Mom",
  18202. height: math.unit(6, "megalightyears")
  18203. },
  18204. ]
  18205. ))
  18206. characterMakers.push(() => makeCharacter(
  18207. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18208. {
  18209. front: {
  18210. height: math.unit(6, "feet"),
  18211. weight: math.unit(170, "lb"),
  18212. name: "Front",
  18213. image: {
  18214. source: "./media/characters/kiro/front.svg",
  18215. extra: 1064 / 1012,
  18216. bottom: 0.052
  18217. }
  18218. },
  18219. },
  18220. [
  18221. {
  18222. name: "Micro",
  18223. height: math.unit(6, "inches")
  18224. },
  18225. {
  18226. name: "Normal",
  18227. height: math.unit(6, "feet"),
  18228. default: true
  18229. },
  18230. {
  18231. name: "Macro",
  18232. height: math.unit(72, "feet")
  18233. },
  18234. ]
  18235. ))
  18236. characterMakers.push(() => makeCharacter(
  18237. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18238. {
  18239. front: {
  18240. height: math.unit(5 + 9 / 12, "feet"),
  18241. weight: math.unit(175, "lb"),
  18242. name: "Front",
  18243. image: {
  18244. source: "./media/characters/irishfox/front.svg",
  18245. extra: 1912 / 1680,
  18246. bottom: 0.02
  18247. }
  18248. },
  18249. },
  18250. [
  18251. {
  18252. name: "Nano",
  18253. height: math.unit(1, "mm")
  18254. },
  18255. {
  18256. name: "Micro",
  18257. height: math.unit(2, "inches")
  18258. },
  18259. {
  18260. name: "Normal",
  18261. height: math.unit(5 + 9 / 12, "feet"),
  18262. default: true
  18263. },
  18264. {
  18265. name: "Macro",
  18266. height: math.unit(45, "feet")
  18267. },
  18268. ]
  18269. ))
  18270. characterMakers.push(() => makeCharacter(
  18271. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18272. {
  18273. front: {
  18274. height: math.unit(6 + 1 / 12, "feet"),
  18275. weight: math.unit(150, "lb"),
  18276. name: "Front",
  18277. image: {
  18278. source: "./media/characters/aronai-sieyes/front.svg",
  18279. extra: 1556 / 1480,
  18280. bottom: 0.015
  18281. }
  18282. },
  18283. side: {
  18284. height: math.unit(6 + 1 / 12, "feet"),
  18285. weight: math.unit(150, "lb"),
  18286. name: "Side",
  18287. image: {
  18288. source: "./media/characters/aronai-sieyes/side.svg",
  18289. extra: 1433 / 1390,
  18290. bottom: 0.0393
  18291. }
  18292. },
  18293. back: {
  18294. height: math.unit(6 + 1 / 12, "feet"),
  18295. weight: math.unit(150, "lb"),
  18296. name: "Back",
  18297. image: {
  18298. source: "./media/characters/aronai-sieyes/back.svg",
  18299. extra: 1544 / 1494,
  18300. bottom: 0.02
  18301. }
  18302. },
  18303. frontClothed: {
  18304. height: math.unit(6 + 1 / 12, "feet"),
  18305. weight: math.unit(150, "lb"),
  18306. name: "Front (Clothed)",
  18307. image: {
  18308. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18309. extra: 1582 / 1527
  18310. }
  18311. },
  18312. feral: {
  18313. height: math.unit(18, "feet"),
  18314. weight: math.unit(150 * 3 * 3 * 3, "lb"),
  18315. name: "Feral",
  18316. image: {
  18317. source: "./media/characters/aronai-sieyes/feral.svg",
  18318. extra: 1530 / 1240,
  18319. bottom: 0.035
  18320. }
  18321. },
  18322. },
  18323. [
  18324. {
  18325. name: "Micro",
  18326. height: math.unit(2, "inches")
  18327. },
  18328. {
  18329. name: "Normal",
  18330. height: math.unit(6 + 1 / 12, "feet"),
  18331. default: true
  18332. }
  18333. ]
  18334. ))
  18335. characterMakers.push(() => makeCharacter(
  18336. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18337. {
  18338. front: {
  18339. height: math.unit(12, "feet"),
  18340. weight: math.unit(410, "kg"),
  18341. name: "Front",
  18342. image: {
  18343. source: "./media/characters/xuna/front.svg",
  18344. extra: 2184 / 1980
  18345. }
  18346. },
  18347. side: {
  18348. height: math.unit(12, "feet"),
  18349. weight: math.unit(410, "kg"),
  18350. name: "Side",
  18351. image: {
  18352. source: "./media/characters/xuna/side.svg",
  18353. extra: 2184 / 1980
  18354. }
  18355. },
  18356. back: {
  18357. height: math.unit(12, "feet"),
  18358. weight: math.unit(410, "kg"),
  18359. name: "Back",
  18360. image: {
  18361. source: "./media/characters/xuna/back.svg",
  18362. extra: 2184 / 1980
  18363. }
  18364. },
  18365. },
  18366. [
  18367. {
  18368. name: "Nano glow",
  18369. height: math.unit(10, "nm")
  18370. },
  18371. {
  18372. name: "Micro floof",
  18373. height: math.unit(0.3, "m")
  18374. },
  18375. {
  18376. name: "Huggable softy boi",
  18377. height: math.unit(3.6576, "m"),
  18378. default: true
  18379. },
  18380. {
  18381. name: "Admirable floof",
  18382. height: math.unit(80, "meters")
  18383. },
  18384. {
  18385. name: "Gentle macro",
  18386. height: math.unit(300, "meters")
  18387. },
  18388. {
  18389. name: "Very careful floof",
  18390. height: math.unit(3200, "meters")
  18391. },
  18392. {
  18393. name: "The mega floof",
  18394. height: math.unit(36000, "meters")
  18395. },
  18396. {
  18397. name: "Giga-fur-Wicker",
  18398. height: math.unit(4800000, "meters")
  18399. },
  18400. {
  18401. name: "Licky world",
  18402. height: math.unit(20000000, "meters")
  18403. },
  18404. {
  18405. name: "Floofy cyan sun",
  18406. height: math.unit(1500000000, "meters")
  18407. },
  18408. {
  18409. name: "Milky Wicker",
  18410. height: math.unit(1000000000000000000000, "meters")
  18411. },
  18412. {
  18413. name: "The observing Wicker",
  18414. height: math.unit(999999999999999999999999999, "meters")
  18415. },
  18416. ]
  18417. ))
  18418. characterMakers.push(() => makeCharacter(
  18419. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18420. {
  18421. front: {
  18422. height: math.unit(5 + 9 / 12, "feet"),
  18423. weight: math.unit(150, "lb"),
  18424. name: "Front",
  18425. image: {
  18426. source: "./media/characters/arokha-sieyes/front.svg",
  18427. extra: 1425 / 1284,
  18428. bottom: 0.05
  18429. }
  18430. },
  18431. },
  18432. [
  18433. {
  18434. name: "Normal",
  18435. height: math.unit(5 + 9 / 12, "feet")
  18436. },
  18437. {
  18438. name: "Macro",
  18439. height: math.unit(30, "meters"),
  18440. default: true
  18441. },
  18442. ]
  18443. ))
  18444. characterMakers.push(() => makeCharacter(
  18445. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18446. {
  18447. front: {
  18448. height: math.unit(6, "feet"),
  18449. weight: math.unit(180, "lb"),
  18450. name: "Front",
  18451. image: {
  18452. source: "./media/characters/arokh-sieyes/front.svg",
  18453. extra: 1830 / 1769,
  18454. bottom: 0.01
  18455. }
  18456. },
  18457. },
  18458. [
  18459. {
  18460. name: "Normal",
  18461. height: math.unit(6, "feet")
  18462. },
  18463. {
  18464. name: "Macro",
  18465. height: math.unit(30, "meters"),
  18466. default: true
  18467. },
  18468. ]
  18469. ))
  18470. characterMakers.push(() => makeCharacter(
  18471. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18472. {
  18473. side: {
  18474. height: math.unit(13 + 1 / 12, "feet"),
  18475. weight: math.unit(8.5, "tonnes"),
  18476. name: "Side",
  18477. image: {
  18478. source: "./media/characters/goldeneye/side.svg",
  18479. extra: 1182 / 778,
  18480. bottom: 0.067
  18481. }
  18482. },
  18483. paw: {
  18484. height: math.unit(3.4, "feet"),
  18485. name: "Paw",
  18486. image: {
  18487. source: "./media/characters/goldeneye/paw.svg"
  18488. }
  18489. },
  18490. },
  18491. [
  18492. {
  18493. name: "Normal",
  18494. height: math.unit(13 + 1 / 12, "feet"),
  18495. default: true
  18496. },
  18497. ]
  18498. ))
  18499. characterMakers.push(() => makeCharacter(
  18500. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18501. {
  18502. front: {
  18503. height: math.unit(6 + 1 / 12, "feet"),
  18504. weight: math.unit(210, "lb"),
  18505. name: "Front",
  18506. image: {
  18507. source: "./media/characters/leonardo-lycheborne/front.svg",
  18508. extra: 390 / 365,
  18509. bottom: 0.032
  18510. }
  18511. },
  18512. side: {
  18513. height: math.unit(6 + 1 / 12, "feet"),
  18514. weight: math.unit(210, "lb"),
  18515. name: "Side",
  18516. image: {
  18517. source: "./media/characters/leonardo-lycheborne/side.svg",
  18518. extra: 390 / 365,
  18519. bottom: 0.005
  18520. }
  18521. },
  18522. back: {
  18523. height: math.unit(6 + 1 / 12, "feet"),
  18524. weight: math.unit(210, "lb"),
  18525. name: "Back",
  18526. image: {
  18527. source: "./media/characters/leonardo-lycheborne/back.svg",
  18528. extra: 392 / 366,
  18529. bottom: 0.01
  18530. }
  18531. },
  18532. hand: {
  18533. height: math.unit(1.08, "feet"),
  18534. name: "Hand",
  18535. image: {
  18536. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18537. }
  18538. },
  18539. foot: {
  18540. height: math.unit(1.32, "feet"),
  18541. name: "Foot",
  18542. image: {
  18543. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18544. }
  18545. },
  18546. were: {
  18547. height: math.unit(20, "feet"),
  18548. weight: math.unit(7800, "lb"),
  18549. name: "Were",
  18550. image: {
  18551. source: "./media/characters/leonardo-lycheborne/were.svg",
  18552. extra: 308 / 294,
  18553. bottom: 0.048
  18554. }
  18555. },
  18556. feral: {
  18557. height: math.unit(7.5, "feet"),
  18558. weight: math.unit(600, "lb"),
  18559. name: "Feral",
  18560. image: {
  18561. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18562. extra: 210 / 186,
  18563. bottom: 0.108
  18564. }
  18565. },
  18566. taur: {
  18567. height: math.unit(11, "feet"),
  18568. weight: math.unit(3300, "lb"),
  18569. name: "Taur",
  18570. image: {
  18571. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18572. extra: 320 / 303,
  18573. bottom: 0.025
  18574. }
  18575. },
  18576. barghest: {
  18577. height: math.unit(11, "feet"),
  18578. weight: math.unit(1300, "lb"),
  18579. name: "Barghest",
  18580. image: {
  18581. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18582. extra: 323 / 302,
  18583. bottom: 0.027
  18584. }
  18585. },
  18586. dick: {
  18587. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18588. name: "Dick",
  18589. image: {
  18590. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18591. }
  18592. },
  18593. dickWere: {
  18594. height: math.unit((20) / 3.8, "feet"),
  18595. name: "Dick (Were)",
  18596. image: {
  18597. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18598. }
  18599. },
  18600. },
  18601. [
  18602. {
  18603. name: "Normal",
  18604. height: math.unit(6 + 1 / 12, "feet"),
  18605. default: true
  18606. },
  18607. ]
  18608. ))
  18609. characterMakers.push(() => makeCharacter(
  18610. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18611. {
  18612. front: {
  18613. height: math.unit(10, "feet"),
  18614. weight: math.unit(350, "lb"),
  18615. name: "Front",
  18616. image: {
  18617. source: "./media/characters/jet/front.svg",
  18618. extra: 2050 / 1980,
  18619. bottom: 0.013
  18620. }
  18621. },
  18622. back: {
  18623. height: math.unit(10, "feet"),
  18624. weight: math.unit(350, "lb"),
  18625. name: "Back",
  18626. image: {
  18627. source: "./media/characters/jet/back.svg",
  18628. extra: 2050 / 1980,
  18629. bottom: 0.013
  18630. }
  18631. },
  18632. },
  18633. [
  18634. {
  18635. name: "Micro",
  18636. height: math.unit(6, "inches")
  18637. },
  18638. {
  18639. name: "Normal",
  18640. height: math.unit(10, "feet"),
  18641. default: true
  18642. },
  18643. {
  18644. name: "Macro",
  18645. height: math.unit(100, "feet")
  18646. },
  18647. ]
  18648. ))
  18649. characterMakers.push(() => makeCharacter(
  18650. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18651. {
  18652. front: {
  18653. height: math.unit(15, "feet"),
  18654. weight: math.unit(2800, "lb"),
  18655. name: "Front",
  18656. image: {
  18657. source: "./media/characters/tanarath/front.svg",
  18658. extra: 2392 / 2220,
  18659. bottom: 0.03
  18660. }
  18661. },
  18662. back: {
  18663. height: math.unit(15, "feet"),
  18664. weight: math.unit(2800, "lb"),
  18665. name: "Back",
  18666. image: {
  18667. source: "./media/characters/tanarath/back.svg",
  18668. extra: 2392 / 2220,
  18669. bottom: 0.03
  18670. }
  18671. },
  18672. },
  18673. [
  18674. {
  18675. name: "Normal",
  18676. height: math.unit(15, "feet"),
  18677. default: true
  18678. },
  18679. ]
  18680. ))
  18681. characterMakers.push(() => makeCharacter(
  18682. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18683. {
  18684. front: {
  18685. height: math.unit(7 + 1 / 12, "feet"),
  18686. weight: math.unit(175, "lb"),
  18687. name: "Front",
  18688. image: {
  18689. source: "./media/characters/patty-cattybatty/front.svg",
  18690. extra: 908 / 874,
  18691. bottom: 0.025
  18692. }
  18693. },
  18694. },
  18695. [
  18696. {
  18697. name: "Micro",
  18698. height: math.unit(1, "inch")
  18699. },
  18700. {
  18701. name: "Normal",
  18702. height: math.unit(7 + 1 / 12, "feet")
  18703. },
  18704. {
  18705. name: "Mini Macro",
  18706. height: math.unit(155, "feet")
  18707. },
  18708. {
  18709. name: "Macro",
  18710. height: math.unit(1077, "feet")
  18711. },
  18712. {
  18713. name: "Mega Macro",
  18714. height: math.unit(47650, "feet"),
  18715. default: true
  18716. },
  18717. {
  18718. name: "Giga Macro",
  18719. height: math.unit(440, "miles")
  18720. },
  18721. {
  18722. name: "Tera Macro",
  18723. height: math.unit(8700, "miles")
  18724. },
  18725. {
  18726. name: "Planetary Macro",
  18727. height: math.unit(32700, "miles")
  18728. },
  18729. {
  18730. name: "Solar Macro",
  18731. height: math.unit(550000, "miles")
  18732. },
  18733. {
  18734. name: "Celestial Macro",
  18735. height: math.unit(2.5, "AU")
  18736. },
  18737. ]
  18738. ))
  18739. characterMakers.push(() => makeCharacter(
  18740. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18741. {
  18742. front: {
  18743. height: math.unit(4 + 5 / 12, "feet"),
  18744. weight: math.unit(90, "lb"),
  18745. name: "Front",
  18746. image: {
  18747. source: "./media/characters/cappu/front.svg",
  18748. extra: 1247 / 1152,
  18749. bottom: 0.012
  18750. }
  18751. },
  18752. },
  18753. [
  18754. {
  18755. name: "Normal",
  18756. height: math.unit(4 + 5 / 12, "feet"),
  18757. default: true
  18758. },
  18759. ]
  18760. ))
  18761. characterMakers.push(() => makeCharacter(
  18762. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18763. {
  18764. frontDressed: {
  18765. height: math.unit(70, "cm"),
  18766. weight: math.unit(6, "kg"),
  18767. name: "Front (Dressed)",
  18768. image: {
  18769. source: "./media/characters/sebi/front-dressed.svg",
  18770. extra: 713.5 / 686.5,
  18771. bottom: 0.003
  18772. }
  18773. },
  18774. front: {
  18775. height: math.unit(70, "cm"),
  18776. weight: math.unit(5, "kg"),
  18777. name: "Front",
  18778. image: {
  18779. source: "./media/characters/sebi/front.svg",
  18780. extra: 713.5 / 686.5,
  18781. bottom: 0.003
  18782. }
  18783. }
  18784. },
  18785. [
  18786. {
  18787. name: "Normal",
  18788. height: math.unit(70, "cm"),
  18789. default: true
  18790. },
  18791. {
  18792. name: "Macro",
  18793. height: math.unit(8, "meters")
  18794. },
  18795. ]
  18796. ))
  18797. characterMakers.push(() => makeCharacter(
  18798. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18799. {
  18800. front: {
  18801. height: math.unit(6, "feet"),
  18802. weight: math.unit(150, "lb"),
  18803. name: "Front",
  18804. image: {
  18805. source: "./media/characters/typhek/front.svg",
  18806. extra: 1948 / 1929,
  18807. bottom: 0.025
  18808. }
  18809. },
  18810. side: {
  18811. height: math.unit(6, "feet"),
  18812. weight: math.unit(150, "lb"),
  18813. name: "Side",
  18814. image: {
  18815. source: "./media/characters/typhek/side.svg",
  18816. extra: 2034 / 2010,
  18817. bottom: 0.003
  18818. }
  18819. },
  18820. back: {
  18821. height: math.unit(6, "feet"),
  18822. weight: math.unit(150, "lb"),
  18823. name: "Back",
  18824. image: {
  18825. source: "./media/characters/typhek/back.svg",
  18826. extra: 2005 / 1978,
  18827. bottom: 0.004
  18828. }
  18829. },
  18830. palm: {
  18831. height: math.unit(1.2, "feet"),
  18832. name: "Palm",
  18833. image: {
  18834. source: "./media/characters/typhek/palm.svg"
  18835. }
  18836. },
  18837. fist: {
  18838. height: math.unit(1.1, "feet"),
  18839. name: "Fist",
  18840. image: {
  18841. source: "./media/characters/typhek/fist.svg"
  18842. }
  18843. },
  18844. foot: {
  18845. height: math.unit(1.57, "feet"),
  18846. name: "Foot",
  18847. image: {
  18848. source: "./media/characters/typhek/foot.svg"
  18849. }
  18850. },
  18851. sole: {
  18852. height: math.unit(2.05, "feet"),
  18853. name: "Sole",
  18854. image: {
  18855. source: "./media/characters/typhek/sole.svg"
  18856. }
  18857. },
  18858. },
  18859. [
  18860. {
  18861. name: "Macro",
  18862. height: math.unit(40, "stories"),
  18863. default: true
  18864. },
  18865. {
  18866. name: "Megamacro",
  18867. height: math.unit(1, "mile")
  18868. },
  18869. {
  18870. name: "Gigamacro",
  18871. height: math.unit(4000, "solarradii")
  18872. },
  18873. {
  18874. name: "Universal",
  18875. height: math.unit(1.1, "universes")
  18876. }
  18877. ]
  18878. ))
  18879. characterMakers.push(() => makeCharacter(
  18880. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18881. {
  18882. side: {
  18883. height: math.unit(5 + 7 / 12, "feet"),
  18884. weight: math.unit(150, "lb"),
  18885. name: "Side",
  18886. image: {
  18887. source: "./media/characters/kassy/side.svg",
  18888. extra: 1280 / 1225,
  18889. bottom: 0.002
  18890. }
  18891. },
  18892. front: {
  18893. height: math.unit(5 + 7 / 12, "feet"),
  18894. weight: math.unit(150, "lb"),
  18895. name: "Front",
  18896. image: {
  18897. source: "./media/characters/kassy/front.svg",
  18898. extra: 1280 / 1225,
  18899. bottom: 0.025
  18900. }
  18901. },
  18902. back: {
  18903. height: math.unit(5 + 7 / 12, "feet"),
  18904. weight: math.unit(150, "lb"),
  18905. name: "Back",
  18906. image: {
  18907. source: "./media/characters/kassy/back.svg",
  18908. extra: 1280 / 1225,
  18909. bottom: 0.002
  18910. }
  18911. },
  18912. foot: {
  18913. height: math.unit(1.266, "feet"),
  18914. name: "Foot",
  18915. image: {
  18916. source: "./media/characters/kassy/foot.svg"
  18917. }
  18918. },
  18919. },
  18920. [
  18921. {
  18922. name: "Normal",
  18923. height: math.unit(5 + 7 / 12, "feet")
  18924. },
  18925. {
  18926. name: "Macro",
  18927. height: math.unit(137, "feet"),
  18928. default: true
  18929. },
  18930. {
  18931. name: "Megamacro",
  18932. height: math.unit(1, "mile")
  18933. },
  18934. ]
  18935. ))
  18936. characterMakers.push(() => makeCharacter(
  18937. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18938. {
  18939. front: {
  18940. height: math.unit(6 + 1 / 12, "feet"),
  18941. weight: math.unit(200, "lb"),
  18942. name: "Front",
  18943. image: {
  18944. source: "./media/characters/neil/front.svg",
  18945. extra: 1326 / 1250,
  18946. bottom: 0.023
  18947. }
  18948. },
  18949. },
  18950. [
  18951. {
  18952. name: "Normal",
  18953. height: math.unit(6 + 1 / 12, "feet"),
  18954. default: true
  18955. },
  18956. {
  18957. name: "Macro",
  18958. height: math.unit(200, "feet")
  18959. },
  18960. ]
  18961. ))
  18962. characterMakers.push(() => makeCharacter(
  18963. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18964. {
  18965. front: {
  18966. height: math.unit(5 + 9 / 12, "feet"),
  18967. weight: math.unit(190, "lb"),
  18968. name: "Front",
  18969. image: {
  18970. source: "./media/characters/atticus/front.svg",
  18971. extra: 2934 / 2785,
  18972. bottom: 0.025
  18973. }
  18974. },
  18975. },
  18976. [
  18977. {
  18978. name: "Normal",
  18979. height: math.unit(5 + 9 / 12, "feet"),
  18980. default: true
  18981. },
  18982. {
  18983. name: "Macro",
  18984. height: math.unit(180, "feet")
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  18990. {
  18991. side: {
  18992. height: math.unit(9, "feet"),
  18993. weight: math.unit(650, "lb"),
  18994. name: "Side",
  18995. image: {
  18996. source: "./media/characters/milo/side.svg",
  18997. extra: 2644 / 2310,
  18998. bottom: 0.032
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(9, "feet"),
  19006. default: true
  19007. },
  19008. {
  19009. name: "Macro",
  19010. height: math.unit(300, "feet")
  19011. },
  19012. ]
  19013. ))
  19014. characterMakers.push(() => makeCharacter(
  19015. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19016. {
  19017. side: {
  19018. height: math.unit(8, "meters"),
  19019. weight: math.unit(90000, "kg"),
  19020. name: "Side",
  19021. image: {
  19022. source: "./media/characters/ijzer/side.svg",
  19023. extra: 2756 / 1600,
  19024. bottom: 0.01
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Small",
  19031. height: math.unit(3, "meters")
  19032. },
  19033. {
  19034. name: "Normal",
  19035. height: math.unit(8, "meters"),
  19036. default: true
  19037. },
  19038. {
  19039. name: "Normal+",
  19040. height: math.unit(10, "meters")
  19041. },
  19042. {
  19043. name: "Bigger",
  19044. height: math.unit(24, "meters")
  19045. },
  19046. {
  19047. name: "Huge",
  19048. height: math.unit(80, "meters")
  19049. },
  19050. ]
  19051. ))
  19052. characterMakers.push(() => makeCharacter(
  19053. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19054. {
  19055. front: {
  19056. height: math.unit(6 + 2 / 12, "feet"),
  19057. weight: math.unit(153, "lb"),
  19058. name: "Front",
  19059. image: {
  19060. source: "./media/characters/luca-cervicum/front.svg",
  19061. extra: 370 / 327,
  19062. bottom: 0.015
  19063. }
  19064. },
  19065. back: {
  19066. height: math.unit(6 + 2 / 12, "feet"),
  19067. weight: math.unit(153, "lb"),
  19068. name: "Back",
  19069. image: {
  19070. source: "./media/characters/luca-cervicum/back.svg",
  19071. extra: 367 / 333,
  19072. bottom: 0.005
  19073. }
  19074. },
  19075. frontGear: {
  19076. height: math.unit(6 + 2 / 12, "feet"),
  19077. weight: math.unit(173, "lb"),
  19078. name: "Front (Gear)",
  19079. image: {
  19080. source: "./media/characters/luca-cervicum/front-gear.svg",
  19081. extra: 377 / 333,
  19082. bottom: 0.006
  19083. }
  19084. },
  19085. },
  19086. [
  19087. {
  19088. name: "Normal",
  19089. height: math.unit(6 + 2 / 12, "feet"),
  19090. default: true
  19091. },
  19092. ]
  19093. ))
  19094. characterMakers.push(() => makeCharacter(
  19095. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19096. {
  19097. front: {
  19098. height: math.unit(6 + 1 / 12, "feet"),
  19099. weight: math.unit(304, "lb"),
  19100. name: "Front",
  19101. image: {
  19102. source: "./media/characters/oliver/front.svg",
  19103. extra: 157 / 143,
  19104. bottom: 0.08
  19105. }
  19106. },
  19107. },
  19108. [
  19109. {
  19110. name: "Normal",
  19111. height: math.unit(6 + 1 / 12, "feet"),
  19112. default: true
  19113. },
  19114. ]
  19115. ))
  19116. characterMakers.push(() => makeCharacter(
  19117. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19118. {
  19119. front: {
  19120. height: math.unit(5 + 7 / 12, "feet"),
  19121. weight: math.unit(140, "lb"),
  19122. name: "Front",
  19123. image: {
  19124. source: "./media/characters/shane/front.svg",
  19125. extra: 304 / 289,
  19126. bottom: 0.005
  19127. }
  19128. },
  19129. },
  19130. [
  19131. {
  19132. name: "Normal",
  19133. height: math.unit(5 + 7 / 12, "feet"),
  19134. default: true
  19135. },
  19136. ]
  19137. ))
  19138. characterMakers.push(() => makeCharacter(
  19139. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19140. {
  19141. front: {
  19142. height: math.unit(5 + 9 / 12, "feet"),
  19143. weight: math.unit(178, "lb"),
  19144. name: "Front",
  19145. image: {
  19146. source: "./media/characters/shin/front.svg",
  19147. extra: 159 / 151,
  19148. bottom: 0.015
  19149. }
  19150. },
  19151. },
  19152. [
  19153. {
  19154. name: "Normal",
  19155. height: math.unit(5 + 9 / 12, "feet"),
  19156. default: true
  19157. },
  19158. ]
  19159. ))
  19160. characterMakers.push(() => makeCharacter(
  19161. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19162. {
  19163. front: {
  19164. height: math.unit(5 + 10 / 12, "feet"),
  19165. weight: math.unit(168, "lb"),
  19166. name: "Front",
  19167. image: {
  19168. source: "./media/characters/xerxes/front.svg",
  19169. extra: 282 / 260,
  19170. bottom: 0.045
  19171. }
  19172. },
  19173. },
  19174. [
  19175. {
  19176. name: "Normal",
  19177. height: math.unit(5 + 10 / 12, "feet"),
  19178. default: true
  19179. },
  19180. ]
  19181. ))
  19182. characterMakers.push(() => makeCharacter(
  19183. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19184. {
  19185. front: {
  19186. height: math.unit(6 + 7 / 12, "feet"),
  19187. weight: math.unit(208, "lb"),
  19188. name: "Front",
  19189. image: {
  19190. source: "./media/characters/chaska/front.svg",
  19191. extra: 332 / 319,
  19192. bottom: 0.015
  19193. }
  19194. },
  19195. },
  19196. [
  19197. {
  19198. name: "Normal",
  19199. height: math.unit(6 + 7 / 12, "feet"),
  19200. default: true
  19201. },
  19202. ]
  19203. ))
  19204. characterMakers.push(() => makeCharacter(
  19205. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19206. {
  19207. front: {
  19208. height: math.unit(5 + 8 / 12, "feet"),
  19209. weight: math.unit(208, "lb"),
  19210. name: "Front",
  19211. image: {
  19212. source: "./media/characters/enuk/front.svg",
  19213. extra: 437 / 406,
  19214. bottom: 0.02
  19215. }
  19216. },
  19217. },
  19218. [
  19219. {
  19220. name: "Normal",
  19221. height: math.unit(5 + 8 / 12, "feet"),
  19222. default: true
  19223. },
  19224. ]
  19225. ))
  19226. characterMakers.push(() => makeCharacter(
  19227. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19228. {
  19229. front: {
  19230. height: math.unit(5 + 10 / 12, "feet"),
  19231. weight: math.unit(252, "lb"),
  19232. name: "Front",
  19233. image: {
  19234. source: "./media/characters/bruun/front.svg",
  19235. extra: 197 / 187,
  19236. bottom: 0.012
  19237. }
  19238. },
  19239. },
  19240. [
  19241. {
  19242. name: "Normal",
  19243. height: math.unit(5 + 10 / 12, "feet"),
  19244. default: true
  19245. },
  19246. ]
  19247. ))
  19248. characterMakers.push(() => makeCharacter(
  19249. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19250. {
  19251. front: {
  19252. height: math.unit(6 + 10 / 12, "feet"),
  19253. weight: math.unit(255, "lb"),
  19254. name: "Front",
  19255. image: {
  19256. source: "./media/characters/alexeev/front.svg",
  19257. extra: 213 / 200,
  19258. bottom: 0.05
  19259. }
  19260. },
  19261. },
  19262. [
  19263. {
  19264. name: "Normal",
  19265. height: math.unit(6 + 10 / 12, "feet"),
  19266. default: true
  19267. },
  19268. ]
  19269. ))
  19270. characterMakers.push(() => makeCharacter(
  19271. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19272. {
  19273. front: {
  19274. height: math.unit(2 + 8 / 12, "feet"),
  19275. weight: math.unit(22, "lb"),
  19276. name: "Front",
  19277. image: {
  19278. source: "./media/characters/evelyn/front.svg",
  19279. extra: 208 / 180
  19280. }
  19281. },
  19282. },
  19283. [
  19284. {
  19285. name: "Normal",
  19286. height: math.unit(2 + 8 / 12, "feet"),
  19287. default: true
  19288. },
  19289. ]
  19290. ))
  19291. characterMakers.push(() => makeCharacter(
  19292. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19293. {
  19294. front: {
  19295. height: math.unit(5 + 9 / 12, "feet"),
  19296. weight: math.unit(139, "lb"),
  19297. name: "Front",
  19298. image: {
  19299. source: "./media/characters/inca/front.svg",
  19300. extra: 294 / 291,
  19301. bottom: 0.03
  19302. }
  19303. },
  19304. },
  19305. [
  19306. {
  19307. name: "Normal",
  19308. height: math.unit(5 + 9 / 12, "feet"),
  19309. default: true
  19310. },
  19311. ]
  19312. ))
  19313. characterMakers.push(() => makeCharacter(
  19314. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19315. {
  19316. front: {
  19317. height: math.unit(5 + 1 / 12, "feet"),
  19318. weight: math.unit(84, "lb"),
  19319. name: "Front",
  19320. image: {
  19321. source: "./media/characters/magdalene/front.svg",
  19322. extra: 293 / 273
  19323. }
  19324. },
  19325. },
  19326. [
  19327. {
  19328. name: "Normal",
  19329. height: math.unit(5 + 1 / 12, "feet"),
  19330. default: true
  19331. },
  19332. ]
  19333. ))
  19334. characterMakers.push(() => makeCharacter(
  19335. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19336. {
  19337. front: {
  19338. height: math.unit(6 + 3 / 12, "feet"),
  19339. weight: math.unit(185, "lb"),
  19340. name: "Front",
  19341. image: {
  19342. source: "./media/characters/mera/front.svg",
  19343. extra: 291 / 277,
  19344. bottom: 0.03
  19345. }
  19346. },
  19347. },
  19348. [
  19349. {
  19350. name: "Normal",
  19351. height: math.unit(6 + 3 / 12, "feet"),
  19352. default: true
  19353. },
  19354. ]
  19355. ))
  19356. characterMakers.push(() => makeCharacter(
  19357. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19358. {
  19359. front: {
  19360. height: math.unit(6 + 7 / 12, "feet"),
  19361. weight: math.unit(160, "lb"),
  19362. name: "Front",
  19363. image: {
  19364. source: "./media/characters/ceres/front.svg",
  19365. extra: 1023 / 950,
  19366. bottom: 0.027
  19367. }
  19368. },
  19369. back: {
  19370. height: math.unit(6 + 7 / 12, "feet"),
  19371. weight: math.unit(160, "lb"),
  19372. name: "Back",
  19373. image: {
  19374. source: "./media/characters/ceres/back.svg",
  19375. extra: 1023 / 950
  19376. }
  19377. },
  19378. },
  19379. [
  19380. {
  19381. name: "Normal",
  19382. height: math.unit(6 + 7 / 12, "feet"),
  19383. default: true
  19384. },
  19385. ]
  19386. ))
  19387. characterMakers.push(() => makeCharacter(
  19388. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19389. {
  19390. front: {
  19391. height: math.unit(5 + 10 / 12, "feet"),
  19392. weight: math.unit(150, "lb"),
  19393. name: "Front",
  19394. image: {
  19395. source: "./media/characters/kris/front.svg",
  19396. extra: 885 / 803,
  19397. bottom: 0.03
  19398. }
  19399. },
  19400. },
  19401. [
  19402. {
  19403. name: "Normal",
  19404. height: math.unit(5 + 10 / 12, "feet"),
  19405. default: true
  19406. },
  19407. ]
  19408. ))
  19409. characterMakers.push(() => makeCharacter(
  19410. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19411. {
  19412. front: {
  19413. height: math.unit(7, "feet"),
  19414. weight: math.unit(120, "kg"),
  19415. name: "Front",
  19416. image: {
  19417. source: "./media/characters/taluthus/front.svg",
  19418. extra: 903 / 833,
  19419. bottom: 0.015
  19420. }
  19421. },
  19422. },
  19423. [
  19424. {
  19425. name: "Normal",
  19426. height: math.unit(7, "feet"),
  19427. default: true
  19428. },
  19429. {
  19430. name: "Macro",
  19431. height: math.unit(300, "feet")
  19432. },
  19433. ]
  19434. ))
  19435. characterMakers.push(() => makeCharacter(
  19436. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19437. {
  19438. front: {
  19439. height: math.unit(5 + 9 / 12, "feet"),
  19440. weight: math.unit(145, "lb"),
  19441. name: "Front",
  19442. image: {
  19443. source: "./media/characters/dawn/front.svg",
  19444. extra: 2094 / 2016,
  19445. bottom: 0.025
  19446. }
  19447. },
  19448. back: {
  19449. height: math.unit(5 + 9 / 12, "feet"),
  19450. weight: math.unit(160, "lb"),
  19451. name: "Back",
  19452. image: {
  19453. source: "./media/characters/dawn/back.svg",
  19454. extra: 2112 / 2080,
  19455. bottom: 0.005
  19456. }
  19457. },
  19458. },
  19459. [
  19460. {
  19461. name: "Normal",
  19462. height: math.unit(6 + 7 / 12, "feet"),
  19463. default: true
  19464. },
  19465. ]
  19466. ))
  19467. characterMakers.push(() => makeCharacter(
  19468. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19469. {
  19470. anthro: {
  19471. height: math.unit(8 + 3 / 12, "feet"),
  19472. weight: math.unit(450, "lb"),
  19473. name: "Anthro",
  19474. image: {
  19475. source: "./media/characters/arador/anthro.svg",
  19476. extra: 1835 / 1718,
  19477. bottom: 0.025
  19478. }
  19479. },
  19480. feral: {
  19481. height: math.unit(4, "feet"),
  19482. weight: math.unit(200, "lb"),
  19483. name: "Feral",
  19484. image: {
  19485. source: "./media/characters/arador/feral.svg",
  19486. extra: 1683 / 1514,
  19487. bottom: 0.07
  19488. }
  19489. },
  19490. },
  19491. [
  19492. {
  19493. name: "Normal",
  19494. height: math.unit(8 + 3 / 12, "feet")
  19495. },
  19496. {
  19497. name: "Macro",
  19498. height: math.unit(82.5, "feet"),
  19499. default: true
  19500. },
  19501. ]
  19502. ))
  19503. characterMakers.push(() => makeCharacter(
  19504. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19505. {
  19506. front: {
  19507. height: math.unit(5 + 10 / 12, "feet"),
  19508. weight: math.unit(125, "lb"),
  19509. name: "Front",
  19510. image: {
  19511. source: "./media/characters/dharsi/front.svg",
  19512. extra: 716 / 630,
  19513. bottom: 0.035
  19514. }
  19515. },
  19516. },
  19517. [
  19518. {
  19519. name: "Nano",
  19520. height: math.unit(100, "nm")
  19521. },
  19522. {
  19523. name: "Micro",
  19524. height: math.unit(2, "inches")
  19525. },
  19526. {
  19527. name: "Normal",
  19528. height: math.unit(5 + 10 / 12, "feet"),
  19529. default: true
  19530. },
  19531. {
  19532. name: "Macro",
  19533. height: math.unit(1000, "feet")
  19534. },
  19535. {
  19536. name: "Megamacro",
  19537. height: math.unit(10, "miles")
  19538. },
  19539. {
  19540. name: "Gigamacro",
  19541. height: math.unit(3000, "miles")
  19542. },
  19543. {
  19544. name: "Teramacro",
  19545. height: math.unit(500000, "miles")
  19546. },
  19547. {
  19548. name: "Teramacro+",
  19549. height: math.unit(30, "galaxies")
  19550. },
  19551. ]
  19552. ))
  19553. characterMakers.push(() => makeCharacter(
  19554. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19555. {
  19556. front: {
  19557. height: math.unit(6, "feet"),
  19558. weight: math.unit(150, "lb"),
  19559. name: "Front",
  19560. image: {
  19561. source: "./media/characters/deathy/front.svg",
  19562. extra: 1552 / 1463,
  19563. bottom: 0.025
  19564. }
  19565. },
  19566. side: {
  19567. height: math.unit(6, "feet"),
  19568. weight: math.unit(150, "lb"),
  19569. name: "Side",
  19570. image: {
  19571. source: "./media/characters/deathy/side.svg",
  19572. extra: 1604 / 1455,
  19573. bottom: 0.025
  19574. }
  19575. },
  19576. back: {
  19577. height: math.unit(6, "feet"),
  19578. weight: math.unit(150, "lb"),
  19579. name: "Back",
  19580. image: {
  19581. source: "./media/characters/deathy/back.svg",
  19582. extra: 1580 / 1463,
  19583. bottom: 0.005
  19584. }
  19585. },
  19586. },
  19587. [
  19588. {
  19589. name: "Micro",
  19590. height: math.unit(5, "millimeters")
  19591. },
  19592. {
  19593. name: "Normal",
  19594. height: math.unit(6 + 5 / 12, "feet"),
  19595. default: true
  19596. },
  19597. ]
  19598. ))
  19599. characterMakers.push(() => makeCharacter(
  19600. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19601. {
  19602. front: {
  19603. height: math.unit(16, "feet"),
  19604. weight: math.unit(4000, "lb"),
  19605. name: "Front",
  19606. image: {
  19607. source: "./media/characters/juniper/front.svg",
  19608. bottom: 0.04
  19609. }
  19610. },
  19611. },
  19612. [
  19613. {
  19614. name: "Normal",
  19615. height: math.unit(16, "feet"),
  19616. default: true
  19617. },
  19618. ]
  19619. ))
  19620. characterMakers.push(() => makeCharacter(
  19621. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19622. {
  19623. front: {
  19624. height: math.unit(6, "feet"),
  19625. weight: math.unit(150, "lb"),
  19626. name: "Front",
  19627. image: {
  19628. source: "./media/characters/hipster/front.svg",
  19629. extra: 1312 / 1209,
  19630. bottom: 0.025
  19631. }
  19632. },
  19633. back: {
  19634. height: math.unit(6, "feet"),
  19635. weight: math.unit(150, "lb"),
  19636. name: "Back",
  19637. image: {
  19638. source: "./media/characters/hipster/back.svg",
  19639. extra: 1281 / 1196,
  19640. bottom: 0.01
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Micro",
  19647. height: math.unit(1, "mm")
  19648. },
  19649. {
  19650. name: "Normal",
  19651. height: math.unit(4, "inches"),
  19652. default: true
  19653. },
  19654. {
  19655. name: "Macro",
  19656. height: math.unit(500, "feet")
  19657. },
  19658. {
  19659. name: "Megamacro",
  19660. height: math.unit(1000, "miles")
  19661. },
  19662. ]
  19663. ))
  19664. characterMakers.push(() => makeCharacter(
  19665. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19666. {
  19667. front: {
  19668. height: math.unit(6, "feet"),
  19669. weight: math.unit(150, "lb"),
  19670. name: "Front",
  19671. image: {
  19672. source: "./media/characters/tendirmuldr/front.svg",
  19673. extra: 1878 / 1772,
  19674. bottom: 0.015
  19675. }
  19676. },
  19677. },
  19678. [
  19679. {
  19680. name: "Megamacro",
  19681. height: math.unit(1500, "miles"),
  19682. default: true
  19683. },
  19684. ]
  19685. ))
  19686. characterMakers.push(() => makeCharacter(
  19687. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19688. {
  19689. front: {
  19690. height: math.unit(14, "feet"),
  19691. weight: math.unit(12000, "lb"),
  19692. name: "Front",
  19693. image: {
  19694. source: "./media/characters/mort/front.svg",
  19695. extra: 365 / 318,
  19696. bottom: 0.01
  19697. }
  19698. },
  19699. side: {
  19700. height: math.unit(14, "feet"),
  19701. weight: math.unit(12000, "lb"),
  19702. name: "Side",
  19703. image: {
  19704. source: "./media/characters/mort/side.svg",
  19705. extra: 365 / 318,
  19706. bottom: 0.052
  19707. },
  19708. default: true
  19709. },
  19710. back: {
  19711. height: math.unit(14, "feet"),
  19712. weight: math.unit(12000, "lb"),
  19713. name: "Back",
  19714. image: {
  19715. source: "./media/characters/mort/back.svg",
  19716. extra: 371 / 332,
  19717. bottom: 0.18
  19718. }
  19719. },
  19720. },
  19721. [
  19722. {
  19723. name: "Normal",
  19724. height: math.unit(14, "feet"),
  19725. default: true
  19726. },
  19727. ]
  19728. ))
  19729. characterMakers.push(() => makeCharacter(
  19730. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19731. {
  19732. front: {
  19733. height: math.unit(8, "feet"),
  19734. weight: math.unit(1, "ton"),
  19735. name: "Front",
  19736. image: {
  19737. source: "./media/characters/lycoa/front.svg",
  19738. extra: 1875 / 1789,
  19739. bottom: 0.022
  19740. }
  19741. },
  19742. back: {
  19743. height: math.unit(8, "feet"),
  19744. weight: math.unit(1, "ton"),
  19745. name: "Back",
  19746. image: {
  19747. source: "./media/characters/lycoa/back.svg",
  19748. extra: 1835 / 1781,
  19749. bottom: 0.03
  19750. }
  19751. },
  19752. head: {
  19753. height: math.unit(2.1, "feet"),
  19754. name: "Head",
  19755. image: {
  19756. source: "./media/characters/lycoa/head.svg"
  19757. }
  19758. },
  19759. tailmaw: {
  19760. height: math.unit(1.9, "feet"),
  19761. name: "Tailmaw",
  19762. image: {
  19763. source: "./media/characters/lycoa/tailmaw.svg"
  19764. }
  19765. },
  19766. tentacles: {
  19767. height: math.unit(2.1, "feet"),
  19768. name: "Tentacles",
  19769. image: {
  19770. source: "./media/characters/lycoa/tentacles.svg"
  19771. }
  19772. },
  19773. dick: {
  19774. height: math.unit(1.73, "feet"),
  19775. name: "Dick",
  19776. image: {
  19777. source: "./media/characters/lycoa/dick.svg"
  19778. }
  19779. },
  19780. },
  19781. [
  19782. {
  19783. name: "Normal",
  19784. height: math.unit(8, "feet"),
  19785. default: true
  19786. },
  19787. {
  19788. name: "Macro",
  19789. height: math.unit(30, "feet")
  19790. },
  19791. ]
  19792. ))
  19793. characterMakers.push(() => makeCharacter(
  19794. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19795. {
  19796. front: {
  19797. height: math.unit(4 + 2 / 12, "feet"),
  19798. weight: math.unit(70, "lb"),
  19799. name: "Front",
  19800. image: {
  19801. source: "./media/characters/naldara/front.svg",
  19802. extra: 841 / 720,
  19803. bottom: 0.04
  19804. }
  19805. },
  19806. naga: {
  19807. height: math.unit(23, "feet"),
  19808. weight: math.unit(15000, "kg"),
  19809. name: "Naga",
  19810. image: {
  19811. source: "./media/characters/naldara/naga.svg",
  19812. extra: 3290 / 2959,
  19813. bottom: 124 / 3432
  19814. }
  19815. },
  19816. },
  19817. [
  19818. {
  19819. name: "Normal",
  19820. height: math.unit(4 + 2 / 12, "feet"),
  19821. default: true
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19827. {
  19828. front: {
  19829. height: math.unit(13 + 7 / 12, "feet"),
  19830. weight: math.unit(1500, "lb"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/briar/front.svg",
  19834. extra: 626 / 596,
  19835. bottom: 0.08
  19836. }
  19837. },
  19838. },
  19839. [
  19840. {
  19841. name: "Normal",
  19842. height: math.unit(13 + 7 / 12, "feet"),
  19843. default: true
  19844. },
  19845. ]
  19846. ))
  19847. characterMakers.push(() => makeCharacter(
  19848. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19849. {
  19850. side: {
  19851. height: math.unit(10, "feet"),
  19852. weight: math.unit(500, "lb"),
  19853. name: "Side",
  19854. image: {
  19855. source: "./media/characters/vanguard/side.svg",
  19856. extra: 502 / 425,
  19857. bottom: 0.087
  19858. }
  19859. },
  19860. },
  19861. [
  19862. {
  19863. name: "Normal",
  19864. height: math.unit(10, "feet"),
  19865. default: true
  19866. },
  19867. ]
  19868. ))
  19869. characterMakers.push(() => makeCharacter(
  19870. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19871. {
  19872. front: {
  19873. height: math.unit(7.5, "feet"),
  19874. weight: math.unit(2, "lb"),
  19875. name: "Front",
  19876. image: {
  19877. source: "./media/characters/artemis/front.svg",
  19878. extra: 1192 / 1075,
  19879. bottom: 0.07
  19880. }
  19881. },
  19882. frontNsfw: {
  19883. height: math.unit(7.5, "feet"),
  19884. weight: math.unit(2, "lb"),
  19885. name: "Front (NSFW)",
  19886. image: {
  19887. source: "./media/characters/artemis/front-nsfw.svg",
  19888. extra: 1192 / 1075,
  19889. bottom: 0.07
  19890. }
  19891. },
  19892. frontNsfwer: {
  19893. height: math.unit(7.5, "feet"),
  19894. weight: math.unit(2, "lb"),
  19895. name: "Front (NSFW-er)",
  19896. image: {
  19897. source: "./media/characters/artemis/front-nsfwer.svg",
  19898. extra: 1192 / 1075,
  19899. bottom: 0.07
  19900. }
  19901. },
  19902. side: {
  19903. height: math.unit(7.5, "feet"),
  19904. weight: math.unit(2, "lb"),
  19905. name: "Side",
  19906. image: {
  19907. source: "./media/characters/artemis/side.svg",
  19908. extra: 1192 / 1075,
  19909. bottom: 0.07
  19910. }
  19911. },
  19912. sideNsfw: {
  19913. height: math.unit(7.5, "feet"),
  19914. weight: math.unit(2, "lb"),
  19915. name: "Side (NSFW)",
  19916. image: {
  19917. source: "./media/characters/artemis/side-nsfw.svg",
  19918. extra: 1192 / 1075,
  19919. bottom: 0.07
  19920. }
  19921. },
  19922. sideNsfwer: {
  19923. height: math.unit(7.5, "feet"),
  19924. weight: math.unit(2, "lb"),
  19925. name: "Side (NSFW-er)",
  19926. image: {
  19927. source: "./media/characters/artemis/side-nsfwer.svg",
  19928. extra: 1192 / 1075,
  19929. bottom: 0.07
  19930. }
  19931. },
  19932. maw: {
  19933. height: math.unit(1.1, "feet"),
  19934. name: "Maw",
  19935. image: {
  19936. source: "./media/characters/artemis/maw.svg"
  19937. }
  19938. },
  19939. stomach: {
  19940. height: math.unit(0.95, "feet"),
  19941. name: "Stomach",
  19942. image: {
  19943. source: "./media/characters/artemis/stomach.svg"
  19944. }
  19945. },
  19946. dickCanine: {
  19947. height: math.unit(1, "feet"),
  19948. name: "Dick (Canine)",
  19949. image: {
  19950. source: "./media/characters/artemis/dick-canine.svg"
  19951. }
  19952. },
  19953. dickEquine: {
  19954. height: math.unit(0.85, "feet"),
  19955. name: "Dick (Equine)",
  19956. image: {
  19957. source: "./media/characters/artemis/dick-equine.svg"
  19958. }
  19959. },
  19960. dickExotic: {
  19961. height: math.unit(0.85, "feet"),
  19962. name: "Dick (Exotic)",
  19963. image: {
  19964. source: "./media/characters/artemis/dick-exotic.svg"
  19965. }
  19966. },
  19967. },
  19968. [
  19969. {
  19970. name: "Normal",
  19971. height: math.unit(7.5, "feet"),
  19972. default: true
  19973. },
  19974. {
  19975. name: "Enlarged",
  19976. height: math.unit(12, "feet")
  19977. },
  19978. ]
  19979. ))
  19980. characterMakers.push(() => makeCharacter(
  19981. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  19982. {
  19983. front: {
  19984. height: math.unit(5 + 3 / 12, "feet"),
  19985. weight: math.unit(160, "lb"),
  19986. name: "Front",
  19987. image: {
  19988. source: "./media/characters/kira/front.svg",
  19989. extra: 906 / 786,
  19990. bottom: 0.01
  19991. }
  19992. },
  19993. back: {
  19994. height: math.unit(5 + 3 / 12, "feet"),
  19995. weight: math.unit(160, "lb"),
  19996. name: "Back",
  19997. image: {
  19998. source: "./media/characters/kira/back.svg",
  19999. extra: 882 / 757,
  20000. bottom: 0.005
  20001. }
  20002. },
  20003. frontDressed: {
  20004. height: math.unit(5 + 3 / 12, "feet"),
  20005. weight: math.unit(160, "lb"),
  20006. name: "Front (Dressed)",
  20007. image: {
  20008. source: "./media/characters/kira/front-dressed.svg",
  20009. extra: 906 / 786,
  20010. bottom: 0.01
  20011. }
  20012. },
  20013. beans: {
  20014. height: math.unit(0.92, "feet"),
  20015. name: "Beans",
  20016. image: {
  20017. source: "./media/characters/kira/beans.svg"
  20018. }
  20019. },
  20020. },
  20021. [
  20022. {
  20023. name: "Normal",
  20024. height: math.unit(5 + 3 / 12, "feet"),
  20025. default: true
  20026. },
  20027. ]
  20028. ))
  20029. characterMakers.push(() => makeCharacter(
  20030. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20031. {
  20032. front: {
  20033. height: math.unit(5 + 4 / 12, "feet"),
  20034. weight: math.unit(145, "lb"),
  20035. name: "Front",
  20036. image: {
  20037. source: "./media/characters/scramble/front.svg",
  20038. extra: 763 / 727,
  20039. bottom: 0.05
  20040. }
  20041. },
  20042. back: {
  20043. height: math.unit(5 + 4 / 12, "feet"),
  20044. weight: math.unit(145, "lb"),
  20045. name: "Back",
  20046. image: {
  20047. source: "./media/characters/scramble/back.svg",
  20048. extra: 826 / 737,
  20049. bottom: 0.002
  20050. }
  20051. },
  20052. },
  20053. [
  20054. {
  20055. name: "Normal",
  20056. height: math.unit(5 + 4 / 12, "feet"),
  20057. default: true
  20058. },
  20059. ]
  20060. ))
  20061. characterMakers.push(() => makeCharacter(
  20062. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20063. {
  20064. side: {
  20065. height: math.unit(6 + 2 / 12, "feet"),
  20066. weight: math.unit(190, "lb"),
  20067. name: "Side",
  20068. image: {
  20069. source: "./media/characters/biscuit/side.svg",
  20070. extra: 858 / 791,
  20071. bottom: 0.044
  20072. }
  20073. },
  20074. },
  20075. [
  20076. {
  20077. name: "Normal",
  20078. height: math.unit(6 + 2 / 12, "feet"),
  20079. default: true
  20080. },
  20081. ]
  20082. ))
  20083. characterMakers.push(() => makeCharacter(
  20084. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20085. {
  20086. front: {
  20087. height: math.unit(5 + 2 / 12, "feet"),
  20088. weight: math.unit(120, "lb"),
  20089. name: "Front",
  20090. image: {
  20091. source: "./media/characters/poffin/front.svg",
  20092. extra: 786 / 680,
  20093. bottom: 0.005
  20094. }
  20095. },
  20096. },
  20097. [
  20098. {
  20099. name: "Normal",
  20100. height: math.unit(5 + 2 / 12, "feet"),
  20101. default: true
  20102. },
  20103. ]
  20104. ))
  20105. characterMakers.push(() => makeCharacter(
  20106. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20107. {
  20108. front: {
  20109. height: math.unit(6 + 3 / 12, "feet"),
  20110. weight: math.unit(519, "lb"),
  20111. name: "Front",
  20112. image: {
  20113. source: "./media/characters/dhari/front.svg",
  20114. extra: 1048 / 946,
  20115. bottom: 0.015
  20116. }
  20117. },
  20118. back: {
  20119. height: math.unit(6 + 3 / 12, "feet"),
  20120. weight: math.unit(519, "lb"),
  20121. name: "Back",
  20122. image: {
  20123. source: "./media/characters/dhari/back.svg",
  20124. extra: 1048 / 931,
  20125. bottom: 0.005
  20126. }
  20127. },
  20128. frontDressed: {
  20129. height: math.unit(6 + 3 / 12, "feet"),
  20130. weight: math.unit(519, "lb"),
  20131. name: "Front (Dressed)",
  20132. image: {
  20133. source: "./media/characters/dhari/front-dressed.svg",
  20134. extra: 1713 / 1546,
  20135. bottom: 0.02
  20136. }
  20137. },
  20138. backDressed: {
  20139. height: math.unit(6 + 3 / 12, "feet"),
  20140. weight: math.unit(519, "lb"),
  20141. name: "Back (Dressed)",
  20142. image: {
  20143. source: "./media/characters/dhari/back-dressed.svg",
  20144. extra: 1699 / 1537,
  20145. bottom: 0.01
  20146. }
  20147. },
  20148. maw: {
  20149. height: math.unit(0.95, "feet"),
  20150. name: "Maw",
  20151. image: {
  20152. source: "./media/characters/dhari/maw.svg"
  20153. }
  20154. },
  20155. wereFront: {
  20156. height: math.unit(12 + 8 / 12, "feet"),
  20157. weight: math.unit(4000, "lb"),
  20158. name: "Front (Were)",
  20159. image: {
  20160. source: "./media/characters/dhari/were-front.svg",
  20161. extra: 1065 / 969,
  20162. bottom: 0.015
  20163. }
  20164. },
  20165. wereBack: {
  20166. height: math.unit(12 + 8 / 12, "feet"),
  20167. weight: math.unit(4000, "lb"),
  20168. name: "Back (Were)",
  20169. image: {
  20170. source: "./media/characters/dhari/were-back.svg",
  20171. extra: 1065 / 969,
  20172. bottom: 0.012
  20173. }
  20174. },
  20175. wereMaw: {
  20176. height: math.unit(0.625, "meters"),
  20177. name: "Maw (Were)",
  20178. image: {
  20179. source: "./media/characters/dhari/were-maw.svg"
  20180. }
  20181. },
  20182. },
  20183. [
  20184. {
  20185. name: "Normal",
  20186. height: math.unit(6 + 3 / 12, "feet"),
  20187. default: true
  20188. },
  20189. ]
  20190. ))
  20191. characterMakers.push(() => makeCharacter(
  20192. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20193. {
  20194. anthro: {
  20195. height: math.unit(5 + 7 / 12, "feet"),
  20196. weight: math.unit(175, "lb"),
  20197. name: "Anthro",
  20198. image: {
  20199. source: "./media/characters/rena-dyne/anthro.svg",
  20200. extra: 1849 / 1785,
  20201. bottom: 0.005
  20202. }
  20203. },
  20204. taur: {
  20205. height: math.unit(15 + 6 / 12, "feet"),
  20206. weight: math.unit(8000, "lb"),
  20207. name: "Taur",
  20208. image: {
  20209. source: "./media/characters/rena-dyne/taur.svg",
  20210. extra: 2315 / 2234,
  20211. bottom: 0.033
  20212. }
  20213. },
  20214. },
  20215. [
  20216. {
  20217. name: "Normal",
  20218. height: math.unit(5 + 7 / 12, "feet"),
  20219. default: true
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20225. {
  20226. front: {
  20227. height: math.unit(8, "feet"),
  20228. weight: math.unit(600, "lb"),
  20229. name: "Front",
  20230. image: {
  20231. source: "./media/characters/weremeep/front.svg",
  20232. extra: 967 / 862,
  20233. bottom: 0.01
  20234. }
  20235. },
  20236. },
  20237. [
  20238. {
  20239. name: "Normal",
  20240. height: math.unit(8, "feet"),
  20241. default: true
  20242. },
  20243. {
  20244. name: "Lorg",
  20245. height: math.unit(12, "feet")
  20246. },
  20247. {
  20248. name: "Oh Lawd She Comin'",
  20249. height: math.unit(20, "feet")
  20250. },
  20251. ]
  20252. ))
  20253. characterMakers.push(() => makeCharacter(
  20254. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20255. {
  20256. front: {
  20257. height: math.unit(4, "feet"),
  20258. weight: math.unit(90, "lb"),
  20259. name: "Front",
  20260. image: {
  20261. source: "./media/characters/reza/front.svg",
  20262. extra: 1183 / 1111,
  20263. bottom: 0.017
  20264. }
  20265. },
  20266. back: {
  20267. height: math.unit(4, "feet"),
  20268. weight: math.unit(90, "lb"),
  20269. name: "Back",
  20270. image: {
  20271. source: "./media/characters/reza/back.svg",
  20272. extra: 1183 / 1111,
  20273. bottom: 0.01
  20274. }
  20275. },
  20276. drake: {
  20277. height: math.unit(30, "feet"),
  20278. weight: math.unit(246960, "lb"),
  20279. name: "Drake",
  20280. image: {
  20281. source: "./media/characters/reza/drake.svg",
  20282. extra: 2350 / 2024,
  20283. bottom: 60.7 / 2403
  20284. }
  20285. },
  20286. },
  20287. [
  20288. {
  20289. name: "Normal",
  20290. height: math.unit(4, "feet"),
  20291. default: true
  20292. },
  20293. ]
  20294. ))
  20295. characterMakers.push(() => makeCharacter(
  20296. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20297. {
  20298. side: {
  20299. height: math.unit(15, "feet"),
  20300. weight: math.unit(14, "tons"),
  20301. name: "Side",
  20302. image: {
  20303. source: "./media/characters/athea/side.svg",
  20304. extra: 960 / 540,
  20305. bottom: 0.003
  20306. }
  20307. },
  20308. sitting: {
  20309. height: math.unit(6 * 2.85, "feet"),
  20310. weight: math.unit(14, "tons"),
  20311. name: "Sitting",
  20312. image: {
  20313. source: "./media/characters/athea/sitting.svg",
  20314. extra: 621 / 581,
  20315. bottom: 0.075
  20316. }
  20317. },
  20318. maw: {
  20319. height: math.unit(7.59498031496063, "feet"),
  20320. name: "Maw",
  20321. image: {
  20322. source: "./media/characters/athea/maw.svg"
  20323. }
  20324. },
  20325. },
  20326. [
  20327. {
  20328. name: "Lap Cat",
  20329. height: math.unit(2.5, "feet")
  20330. },
  20331. {
  20332. name: "Minimacro",
  20333. height: math.unit(15, "feet"),
  20334. default: true
  20335. },
  20336. {
  20337. name: "Macro",
  20338. height: math.unit(120, "feet")
  20339. },
  20340. {
  20341. name: "Macro+",
  20342. height: math.unit(640, "feet")
  20343. },
  20344. {
  20345. name: "Colossus",
  20346. height: math.unit(2.2, "miles")
  20347. },
  20348. ]
  20349. ))
  20350. characterMakers.push(() => makeCharacter(
  20351. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20352. {
  20353. front: {
  20354. height: math.unit(8 + 8 / 12, "feet"),
  20355. weight: math.unit(130, "kg"),
  20356. name: "Front",
  20357. image: {
  20358. source: "./media/characters/seroko/front.svg",
  20359. extra: 1385 / 1280,
  20360. bottom: 0.025
  20361. }
  20362. },
  20363. back: {
  20364. height: math.unit(8 + 8 / 12, "feet"),
  20365. weight: math.unit(130, "kg"),
  20366. name: "Back",
  20367. image: {
  20368. source: "./media/characters/seroko/back.svg",
  20369. extra: 1369 / 1238,
  20370. bottom: 0.018
  20371. }
  20372. },
  20373. frontDressed: {
  20374. height: math.unit(8 + 8 / 12, "feet"),
  20375. weight: math.unit(130, "kg"),
  20376. name: "Front (Dressed)",
  20377. image: {
  20378. source: "./media/characters/seroko/front-dressed.svg",
  20379. extra: 1366 / 1275,
  20380. bottom: 0.03
  20381. }
  20382. },
  20383. },
  20384. [
  20385. {
  20386. name: "Normal",
  20387. height: math.unit(8 + 8 / 12, "feet"),
  20388. default: true
  20389. },
  20390. ]
  20391. ))
  20392. characterMakers.push(() => makeCharacter(
  20393. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20394. {
  20395. front: {
  20396. height: math.unit(5.5, "feet"),
  20397. weight: math.unit(160, "lb"),
  20398. name: "Front",
  20399. image: {
  20400. source: "./media/characters/quatzi/front.svg",
  20401. extra: 2346 / 2242,
  20402. bottom: 0.015
  20403. }
  20404. },
  20405. },
  20406. [
  20407. {
  20408. name: "Normal",
  20409. height: math.unit(5.5, "feet"),
  20410. default: true
  20411. },
  20412. {
  20413. name: "Big",
  20414. height: math.unit(7.7, "feet")
  20415. },
  20416. ]
  20417. ))
  20418. characterMakers.push(() => makeCharacter(
  20419. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20420. {
  20421. front: {
  20422. height: math.unit(5 + 11 / 12, "feet"),
  20423. weight: math.unit(180, "lb"),
  20424. name: "Front",
  20425. image: {
  20426. source: "./media/characters/sen/front.svg",
  20427. extra: 1321 / 1254,
  20428. bottom: 0.015
  20429. }
  20430. },
  20431. side: {
  20432. height: math.unit(5 + 11 / 12, "feet"),
  20433. weight: math.unit(180, "lb"),
  20434. name: "Side",
  20435. image: {
  20436. source: "./media/characters/sen/side.svg",
  20437. extra: 1321 / 1254,
  20438. bottom: 0.007
  20439. }
  20440. },
  20441. back: {
  20442. height: math.unit(5 + 11 / 12, "feet"),
  20443. weight: math.unit(180, "lb"),
  20444. name: "Back",
  20445. image: {
  20446. source: "./media/characters/sen/back.svg",
  20447. extra: 1321 / 1254
  20448. }
  20449. },
  20450. },
  20451. [
  20452. {
  20453. name: "Normal",
  20454. height: math.unit(5 + 11 / 12, "feet"),
  20455. default: true
  20456. },
  20457. ]
  20458. ))
  20459. characterMakers.push(() => makeCharacter(
  20460. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20461. {
  20462. front: {
  20463. height: math.unit(166.6, "cm"),
  20464. weight: math.unit(66.6, "kg"),
  20465. name: "Front",
  20466. image: {
  20467. source: "./media/characters/fruity/front.svg",
  20468. extra: 1510 / 1386,
  20469. bottom: 0.04
  20470. }
  20471. },
  20472. back: {
  20473. height: math.unit(166.6, "cm"),
  20474. weight: math.unit(66.6, "lb"),
  20475. name: "Back",
  20476. image: {
  20477. source: "./media/characters/fruity/back.svg",
  20478. extra: 1563 / 1435,
  20479. bottom: 0.005
  20480. }
  20481. },
  20482. },
  20483. [
  20484. {
  20485. name: "Normal",
  20486. height: math.unit(166.6, "cm"),
  20487. default: true
  20488. },
  20489. {
  20490. name: "Demonic",
  20491. height: math.unit(166.6, "feet")
  20492. },
  20493. ]
  20494. ))
  20495. characterMakers.push(() => makeCharacter(
  20496. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20497. {
  20498. side: {
  20499. height: math.unit(10, "feet"),
  20500. weight: math.unit(500, "lb"),
  20501. name: "Side",
  20502. image: {
  20503. source: "./media/characters/zost/side.svg",
  20504. extra: 966 / 880,
  20505. bottom: 0.075
  20506. }
  20507. },
  20508. mawFront: {
  20509. height: math.unit(1.08, "meters"),
  20510. name: "Maw (Front)",
  20511. image: {
  20512. source: "./media/characters/zost/maw-front.svg"
  20513. }
  20514. },
  20515. mawSide: {
  20516. height: math.unit(2.66, "feet"),
  20517. name: "Maw (Side)",
  20518. image: {
  20519. source: "./media/characters/zost/maw-side.svg"
  20520. }
  20521. },
  20522. },
  20523. [
  20524. {
  20525. name: "Normal",
  20526. height: math.unit(10, "feet"),
  20527. default: true
  20528. },
  20529. ]
  20530. ))
  20531. characterMakers.push(() => makeCharacter(
  20532. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20533. {
  20534. front: {
  20535. height: math.unit(5 + 4 / 12, "feet"),
  20536. weight: math.unit(120, "lb"),
  20537. name: "Front",
  20538. image: {
  20539. source: "./media/characters/luci/front.svg",
  20540. extra: 1985 / 1884,
  20541. bottom: 0.04
  20542. }
  20543. },
  20544. back: {
  20545. height: math.unit(5 + 4 / 12, "feet"),
  20546. weight: math.unit(120, "lb"),
  20547. name: "Back",
  20548. image: {
  20549. source: "./media/characters/luci/back.svg",
  20550. extra: 1892 / 1791,
  20551. bottom: 0.002
  20552. }
  20553. },
  20554. },
  20555. [
  20556. {
  20557. name: "Normal",
  20558. height: math.unit(5 + 4 / 12, "feet"),
  20559. default: true
  20560. },
  20561. ]
  20562. ))
  20563. characterMakers.push(() => makeCharacter(
  20564. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20565. {
  20566. front: {
  20567. height: math.unit(1500, "feet"),
  20568. weight: math.unit(3.8e6, "tons"),
  20569. name: "Front",
  20570. image: {
  20571. source: "./media/characters/2th/front.svg",
  20572. extra: 3489 / 3350,
  20573. bottom: 0.1
  20574. }
  20575. },
  20576. foot: {
  20577. height: math.unit(461, "feet"),
  20578. name: "Foot",
  20579. image: {
  20580. source: "./media/characters/2th/foot.svg"
  20581. }
  20582. },
  20583. },
  20584. [
  20585. {
  20586. name: "\"Micro\"",
  20587. height: math.unit(15 + 7 / 12, "feet")
  20588. },
  20589. {
  20590. name: "Normal",
  20591. height: math.unit(1500, "feet"),
  20592. default: true
  20593. },
  20594. {
  20595. name: "Macro",
  20596. height: math.unit(5000, "feet")
  20597. },
  20598. {
  20599. name: "Megamacro",
  20600. height: math.unit(15, "miles")
  20601. },
  20602. {
  20603. name: "Gigamacro",
  20604. height: math.unit(4000, "miles")
  20605. },
  20606. {
  20607. name: "Galactic",
  20608. height: math.unit(50, "AU")
  20609. },
  20610. ]
  20611. ))
  20612. characterMakers.push(() => makeCharacter(
  20613. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20614. {
  20615. front: {
  20616. height: math.unit(5 + 6 / 12, "feet"),
  20617. weight: math.unit(220, "lb"),
  20618. name: "Front",
  20619. image: {
  20620. source: "./media/characters/amethyst/front.svg",
  20621. extra: 2078 / 2040,
  20622. bottom: 0.045
  20623. }
  20624. },
  20625. back: {
  20626. height: math.unit(5 + 6 / 12, "feet"),
  20627. weight: math.unit(220, "lb"),
  20628. name: "Back",
  20629. image: {
  20630. source: "./media/characters/amethyst/back.svg",
  20631. extra: 2021 / 1989,
  20632. bottom: 0.02
  20633. }
  20634. },
  20635. },
  20636. [
  20637. {
  20638. name: "Normal",
  20639. height: math.unit(5 + 6 / 12, "feet"),
  20640. default: true
  20641. },
  20642. ]
  20643. ))
  20644. characterMakers.push(() => makeCharacter(
  20645. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20646. {
  20647. front: {
  20648. height: math.unit(4 + 11 / 12, "feet"),
  20649. weight: math.unit(120, "lb"),
  20650. name: "Front",
  20651. image: {
  20652. source: "./media/characters/yumi-akiyama/front.svg",
  20653. extra: 1327 / 1235,
  20654. bottom: 0.02
  20655. }
  20656. },
  20657. back: {
  20658. height: math.unit(4 + 11 / 12, "feet"),
  20659. weight: math.unit(120, "lb"),
  20660. name: "Back",
  20661. image: {
  20662. source: "./media/characters/yumi-akiyama/back.svg",
  20663. extra: 1287 / 1245,
  20664. bottom: 0.002
  20665. }
  20666. },
  20667. },
  20668. [
  20669. {
  20670. name: "Galactic",
  20671. height: math.unit(50, "galaxies"),
  20672. default: true
  20673. },
  20674. {
  20675. name: "Universal",
  20676. height: math.unit(100, "universes")
  20677. },
  20678. ]
  20679. ))
  20680. characterMakers.push(() => makeCharacter(
  20681. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20682. {
  20683. front: {
  20684. height: math.unit(8, "feet"),
  20685. weight: math.unit(500, "lb"),
  20686. name: "Front",
  20687. image: {
  20688. source: "./media/characters/rifter-yrmori/front.svg",
  20689. extra: 1180 / 1125,
  20690. bottom: 0.02
  20691. }
  20692. },
  20693. back: {
  20694. height: math.unit(8, "feet"),
  20695. weight: math.unit(500, "lb"),
  20696. name: "Back",
  20697. image: {
  20698. source: "./media/characters/rifter-yrmori/back.svg",
  20699. extra: 1190 / 1145,
  20700. bottom: 0.001
  20701. }
  20702. },
  20703. wings: {
  20704. height: math.unit(7.75, "feet"),
  20705. weight: math.unit(500, "lb"),
  20706. name: "Wings",
  20707. image: {
  20708. source: "./media/characters/rifter-yrmori/wings.svg",
  20709. extra: 1357 / 1285
  20710. }
  20711. },
  20712. maw: {
  20713. height: math.unit(0.8, "feet"),
  20714. name: "Maw",
  20715. image: {
  20716. source: "./media/characters/rifter-yrmori/maw.svg"
  20717. }
  20718. },
  20719. mawfront: {
  20720. height: math.unit(1.45, "feet"),
  20721. name: "Maw (Front)",
  20722. image: {
  20723. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20724. }
  20725. },
  20726. },
  20727. [
  20728. {
  20729. name: "Normal",
  20730. height: math.unit(8, "feet"),
  20731. default: true
  20732. },
  20733. {
  20734. name: "Macro",
  20735. height: math.unit(42, "meters")
  20736. },
  20737. ]
  20738. ))
  20739. characterMakers.push(() => makeCharacter(
  20740. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20741. {
  20742. were: {
  20743. height: math.unit(25 + 6 / 12, "feet"),
  20744. weight: math.unit(10000, "lb"),
  20745. name: "Were",
  20746. image: {
  20747. source: "./media/characters/tahajin/were.svg",
  20748. extra: 801 / 770,
  20749. bottom: 0.042
  20750. }
  20751. },
  20752. aquatic: {
  20753. height: math.unit(6 + 4 / 12, "feet"),
  20754. weight: math.unit(160, "lb"),
  20755. name: "Aquatic",
  20756. image: {
  20757. source: "./media/characters/tahajin/aquatic.svg",
  20758. extra: 572 / 542,
  20759. bottom: 0.04
  20760. }
  20761. },
  20762. chow: {
  20763. height: math.unit(8 + 11 / 12, "feet"),
  20764. weight: math.unit(450, "lb"),
  20765. name: "Chow",
  20766. image: {
  20767. source: "./media/characters/tahajin/chow.svg",
  20768. extra: 660 / 640,
  20769. bottom: 0.015
  20770. }
  20771. },
  20772. demiNaga: {
  20773. height: math.unit(6 + 8 / 12, "feet"),
  20774. weight: math.unit(300, "lb"),
  20775. name: "Demi Naga",
  20776. image: {
  20777. source: "./media/characters/tahajin/demi-naga.svg",
  20778. extra: 643 / 615,
  20779. bottom: 0.1
  20780. }
  20781. },
  20782. data: {
  20783. height: math.unit(5, "inches"),
  20784. weight: math.unit(0.1, "lb"),
  20785. name: "Data",
  20786. image: {
  20787. source: "./media/characters/tahajin/data.svg"
  20788. }
  20789. },
  20790. fluu: {
  20791. height: math.unit(5 + 7 / 12, "feet"),
  20792. weight: math.unit(140, "lb"),
  20793. name: "Fluu",
  20794. image: {
  20795. source: "./media/characters/tahajin/fluu.svg",
  20796. extra: 628 / 592,
  20797. bottom: 0.02
  20798. }
  20799. },
  20800. starWarrior: {
  20801. height: math.unit(4 + 5 / 12, "feet"),
  20802. weight: math.unit(50, "lb"),
  20803. name: "Star Warrior",
  20804. image: {
  20805. source: "./media/characters/tahajin/star-warrior.svg"
  20806. }
  20807. },
  20808. },
  20809. [
  20810. {
  20811. name: "Normal",
  20812. height: math.unit(25 + 6 / 12, "feet"),
  20813. default: true
  20814. },
  20815. ]
  20816. ))
  20817. characterMakers.push(() => makeCharacter(
  20818. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20819. {
  20820. front: {
  20821. height: math.unit(8, "feet"),
  20822. weight: math.unit(350, "lb"),
  20823. name: "Front",
  20824. image: {
  20825. source: "./media/characters/gabira/front.svg",
  20826. extra: 608 / 580,
  20827. bottom: 0.03
  20828. }
  20829. },
  20830. back: {
  20831. height: math.unit(8, "feet"),
  20832. weight: math.unit(350, "lb"),
  20833. name: "Back",
  20834. image: {
  20835. source: "./media/characters/gabira/back.svg",
  20836. extra: 608 / 580,
  20837. bottom: 0.03
  20838. }
  20839. },
  20840. },
  20841. [
  20842. {
  20843. name: "Normal",
  20844. height: math.unit(8, "feet"),
  20845. default: true
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20851. {
  20852. front: {
  20853. height: math.unit(5 + 3 / 12, "feet"),
  20854. weight: math.unit(137, "lb"),
  20855. name: "Front",
  20856. image: {
  20857. source: "./media/characters/sasha-katraine/front.svg",
  20858. bottom: 0.045
  20859. }
  20860. },
  20861. },
  20862. [
  20863. {
  20864. name: "Micro",
  20865. height: math.unit(5, "inches")
  20866. },
  20867. {
  20868. name: "Normal",
  20869. height: math.unit(5 + 3 / 12, "feet"),
  20870. default: true
  20871. },
  20872. ]
  20873. ))
  20874. characterMakers.push(() => makeCharacter(
  20875. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20876. {
  20877. side: {
  20878. height: math.unit(4, "inches"),
  20879. weight: math.unit(200, "grams"),
  20880. name: "Side",
  20881. image: {
  20882. source: "./media/characters/der/side.svg",
  20883. extra: 719 / 400,
  20884. bottom: 30.6 / 749.9187
  20885. }
  20886. },
  20887. },
  20888. [
  20889. {
  20890. name: "Micro",
  20891. height: math.unit(4, "inches"),
  20892. default: true
  20893. },
  20894. ]
  20895. ))
  20896. characterMakers.push(() => makeCharacter(
  20897. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20898. {
  20899. side: {
  20900. height: math.unit(30, "meters"),
  20901. weight: math.unit(700, "tonnes"),
  20902. name: "Side",
  20903. image: {
  20904. source: "./media/characters/fixerdragon/side.svg",
  20905. extra: (1293.0514 - 116.03) / 1106.86,
  20906. bottom: 116.03 / 1293.0514
  20907. }
  20908. },
  20909. },
  20910. [
  20911. {
  20912. name: "Planck",
  20913. height: math.unit(1.6e-35, "meters")
  20914. },
  20915. {
  20916. name: "Micro",
  20917. height: math.unit(0.4, "meters")
  20918. },
  20919. {
  20920. name: "Normal",
  20921. height: math.unit(30, "meters"),
  20922. default: true
  20923. },
  20924. {
  20925. name: "Megamacro",
  20926. height: math.unit(1.2, "megameters")
  20927. },
  20928. {
  20929. name: "Teramacro",
  20930. height: math.unit(130, "terameters")
  20931. },
  20932. {
  20933. name: "Yottamacro",
  20934. height: math.unit(6200, "yottameters")
  20935. },
  20936. ]
  20937. ));
  20938. characterMakers.push(() => makeCharacter(
  20939. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20940. {
  20941. front: {
  20942. height: math.unit(8, "feet"),
  20943. weight: math.unit(250, "lb"),
  20944. name: "Front",
  20945. image: {
  20946. source: "./media/characters/kite/front.svg",
  20947. extra: 2796 / 2659,
  20948. bottom: 0.002
  20949. }
  20950. },
  20951. },
  20952. [
  20953. {
  20954. name: "Normal",
  20955. height: math.unit(8, "feet"),
  20956. default: true
  20957. },
  20958. {
  20959. name: "Macro",
  20960. height: math.unit(360, "feet")
  20961. },
  20962. {
  20963. name: "Megamacro",
  20964. height: math.unit(1500, "feet")
  20965. },
  20966. ]
  20967. ))
  20968. characterMakers.push(() => makeCharacter(
  20969. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20970. {
  20971. front: {
  20972. height: math.unit(5 + 10 / 12, "feet"),
  20973. weight: math.unit(150, "lb"),
  20974. name: "Front",
  20975. image: {
  20976. source: "./media/characters/poojawa-vynar/front.svg",
  20977. extra: (1506.1547 - 55) / 1356.6,
  20978. bottom: 55 / 1506.1547
  20979. }
  20980. },
  20981. frontTailless: {
  20982. height: math.unit(5 + 10 / 12, "feet"),
  20983. weight: math.unit(150, "lb"),
  20984. name: "Front (Tailless)",
  20985. image: {
  20986. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  20987. extra: (1506.1547 - 55) / 1356.6,
  20988. bottom: 55 / 1506.1547
  20989. }
  20990. },
  20991. },
  20992. [
  20993. {
  20994. name: "Normal",
  20995. height: math.unit(5 + 10 / 12, "feet"),
  20996. default: true
  20997. },
  20998. ]
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21002. {
  21003. front: {
  21004. height: math.unit(293, "meters"),
  21005. weight: math.unit(70400, "tons"),
  21006. name: "Front",
  21007. image: {
  21008. source: "./media/characters/violette/front.svg",
  21009. extra: 1227 / 1180,
  21010. bottom: 0.005
  21011. }
  21012. },
  21013. back: {
  21014. height: math.unit(293, "meters"),
  21015. weight: math.unit(70400, "tons"),
  21016. name: "Back",
  21017. image: {
  21018. source: "./media/characters/violette/back.svg",
  21019. extra: 1227 / 1180,
  21020. bottom: 0.005
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Macro",
  21027. height: math.unit(293, "meters"),
  21028. default: true
  21029. },
  21030. ]
  21031. ))
  21032. characterMakers.push(() => makeCharacter(
  21033. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21034. {
  21035. front: {
  21036. height: math.unit(1050, "feet"),
  21037. weight: math.unit(200000, "tons"),
  21038. name: "Front",
  21039. image: {
  21040. source: "./media/characters/alessandra/front.svg",
  21041. extra: 960 / 912,
  21042. bottom: 0.06
  21043. }
  21044. },
  21045. },
  21046. [
  21047. {
  21048. name: "Macro",
  21049. height: math.unit(1050, "feet")
  21050. },
  21051. {
  21052. name: "Macro+",
  21053. height: math.unit(900, "meters"),
  21054. default: true
  21055. },
  21056. ]
  21057. ))
  21058. characterMakers.push(() => makeCharacter(
  21059. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21060. {
  21061. front: {
  21062. height: math.unit(5, "feet"),
  21063. weight: math.unit(187, "lb"),
  21064. name: "Front",
  21065. image: {
  21066. source: "./media/characters/person/front.svg",
  21067. extra: 3087 / 2945,
  21068. bottom: 91 / 3181
  21069. }
  21070. },
  21071. },
  21072. [
  21073. {
  21074. name: "Micro",
  21075. height: math.unit(3, "inches")
  21076. },
  21077. {
  21078. name: "Normal",
  21079. height: math.unit(5, "feet"),
  21080. default: true
  21081. },
  21082. {
  21083. name: "Macro",
  21084. height: math.unit(90, "feet")
  21085. },
  21086. {
  21087. name: "Max Size",
  21088. height: math.unit(280, "feet")
  21089. },
  21090. ]
  21091. ))
  21092. characterMakers.push(() => makeCharacter(
  21093. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21094. {
  21095. front: {
  21096. height: math.unit(4.5, "meters"),
  21097. weight: math.unit(3200, "lb"),
  21098. name: "Front",
  21099. image: {
  21100. source: "./media/characters/ty/front.svg",
  21101. extra: 1038 / 960,
  21102. bottom: 31.156 / 1068
  21103. }
  21104. },
  21105. back: {
  21106. height: math.unit(4.5, "meters"),
  21107. weight: math.unit(3200, "lb"),
  21108. name: "Back",
  21109. image: {
  21110. source: "./media/characters/ty/back.svg",
  21111. extra: 1044 / 966,
  21112. bottom: 7.48 / 1049
  21113. }
  21114. },
  21115. },
  21116. [
  21117. {
  21118. name: "Normal",
  21119. height: math.unit(4.5, "meters"),
  21120. default: true
  21121. },
  21122. ]
  21123. ))
  21124. characterMakers.push(() => makeCharacter(
  21125. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21126. {
  21127. front: {
  21128. height: math.unit(5 + 4 / 12, "feet"),
  21129. weight: math.unit(115, "lb"),
  21130. name: "Front",
  21131. image: {
  21132. source: "./media/characters/rocky/front.svg",
  21133. extra: 1012 / 975,
  21134. bottom: 54 / 1066
  21135. }
  21136. },
  21137. },
  21138. [
  21139. {
  21140. name: "Normal",
  21141. height: math.unit(5 + 4 / 12, "feet"),
  21142. default: true
  21143. },
  21144. ]
  21145. ))
  21146. characterMakers.push(() => makeCharacter(
  21147. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21148. {
  21149. upright: {
  21150. height: math.unit(6, "meters"),
  21151. weight: math.unit(4000, "kg"),
  21152. name: "Upright",
  21153. image: {
  21154. source: "./media/characters/ruin/upright.svg",
  21155. extra: 668 / 661,
  21156. bottom: 42 / 799.8396
  21157. }
  21158. },
  21159. },
  21160. [
  21161. {
  21162. name: "Normal",
  21163. height: math.unit(6, "meters"),
  21164. default: true
  21165. },
  21166. ]
  21167. ))
  21168. characterMakers.push(() => makeCharacter(
  21169. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21170. {
  21171. front: {
  21172. height: math.unit(5, "feet"),
  21173. weight: math.unit(106, "lb"),
  21174. name: "Front",
  21175. image: {
  21176. source: "./media/characters/robin/front.svg",
  21177. extra: 862 / 799,
  21178. bottom: 42.4 / 914.8856
  21179. }
  21180. },
  21181. },
  21182. [
  21183. {
  21184. name: "Normal",
  21185. height: math.unit(5, "feet"),
  21186. default: true
  21187. },
  21188. ]
  21189. ))
  21190. characterMakers.push(() => makeCharacter(
  21191. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21192. {
  21193. side: {
  21194. height: math.unit(3, "feet"),
  21195. weight: math.unit(225, "lb"),
  21196. name: "Side",
  21197. image: {
  21198. source: "./media/characters/saian/side.svg",
  21199. extra: 566 / 356,
  21200. bottom: 79.7 / 643
  21201. }
  21202. },
  21203. maw: {
  21204. height: math.unit(2.85, "feet"),
  21205. name: "Maw",
  21206. image: {
  21207. source: "./media/characters/saian/maw.svg"
  21208. }
  21209. },
  21210. },
  21211. [
  21212. {
  21213. name: "Normal",
  21214. height: math.unit(3, "feet"),
  21215. default: true
  21216. },
  21217. ]
  21218. ))
  21219. characterMakers.push(() => makeCharacter(
  21220. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21221. {
  21222. side: {
  21223. height: math.unit(8, "feet"),
  21224. weight: math.unit(300, "lb"),
  21225. name: "Side",
  21226. image: {
  21227. source: "./media/characters/equus-silvermane/side.svg",
  21228. extra: 2176 / 2050,
  21229. bottom: 65.7 / 2245
  21230. }
  21231. },
  21232. front: {
  21233. height: math.unit(8, "feet"),
  21234. weight: math.unit(300, "lb"),
  21235. name: "Front",
  21236. image: {
  21237. source: "./media/characters/equus-silvermane/front.svg",
  21238. extra: 4633 / 4400,
  21239. bottom: 71.3 / 4706.915
  21240. }
  21241. },
  21242. sideStepping: {
  21243. height: math.unit(8, "feet"),
  21244. weight: math.unit(300, "lb"),
  21245. name: "Side (Stepping)",
  21246. image: {
  21247. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21248. extra: 1968 / 1860,
  21249. bottom: 16.4 / 1989
  21250. }
  21251. },
  21252. },
  21253. [
  21254. {
  21255. name: "Normal",
  21256. height: math.unit(8, "feet")
  21257. },
  21258. {
  21259. name: "Minimacro",
  21260. height: math.unit(75, "feet"),
  21261. default: true
  21262. },
  21263. {
  21264. name: "Macro",
  21265. height: math.unit(150, "feet")
  21266. },
  21267. {
  21268. name: "Macro+",
  21269. height: math.unit(1000, "feet")
  21270. },
  21271. {
  21272. name: "Megamacro",
  21273. height: math.unit(1, "mile")
  21274. },
  21275. ]
  21276. ))
  21277. characterMakers.push(() => makeCharacter(
  21278. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21279. {
  21280. side: {
  21281. height: math.unit(20, "feet"),
  21282. weight: math.unit(30000, "kg"),
  21283. name: "Side",
  21284. image: {
  21285. source: "./media/characters/windar/side.svg",
  21286. extra: 1491 / 1248,
  21287. bottom: 82.56 / 1568
  21288. }
  21289. },
  21290. },
  21291. [
  21292. {
  21293. name: "Normal",
  21294. height: math.unit(20, "feet"),
  21295. default: true
  21296. },
  21297. ]
  21298. ))
  21299. characterMakers.push(() => makeCharacter(
  21300. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21301. {
  21302. side: {
  21303. height: math.unit(15.66, "feet"),
  21304. weight: math.unit(150, "lb"),
  21305. name: "Side",
  21306. image: {
  21307. source: "./media/characters/melody/side.svg",
  21308. extra: 1097 / 944,
  21309. bottom: 11.8 / 1109
  21310. }
  21311. },
  21312. sideOutfit: {
  21313. height: math.unit(15.66, "feet"),
  21314. weight: math.unit(150, "lb"),
  21315. name: "Side (Outfit)",
  21316. image: {
  21317. source: "./media/characters/melody/side-outfit.svg",
  21318. extra: 1097 / 944,
  21319. bottom: 11.8 / 1109
  21320. }
  21321. },
  21322. },
  21323. [
  21324. {
  21325. name: "Normal",
  21326. height: math.unit(15.66, "feet"),
  21327. default: true
  21328. },
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21333. {
  21334. front: {
  21335. height: math.unit(8, "feet"),
  21336. weight: math.unit(325, "lb"),
  21337. name: "Front",
  21338. image: {
  21339. source: "./media/characters/windera/front.svg",
  21340. extra: 3180 / 2845,
  21341. bottom: 178 / 3365
  21342. }
  21343. },
  21344. },
  21345. [
  21346. {
  21347. name: "Normal",
  21348. height: math.unit(8, "feet"),
  21349. default: true
  21350. },
  21351. ]
  21352. ))
  21353. characterMakers.push(() => makeCharacter(
  21354. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21355. {
  21356. front: {
  21357. height: math.unit(28.75, "feet"),
  21358. weight: math.unit(2000, "kg"),
  21359. name: "Front",
  21360. image: {
  21361. source: "./media/characters/sonear/front.svg",
  21362. extra: 1041.1 / 964.9,
  21363. bottom: 53.7 / 1096.6
  21364. }
  21365. },
  21366. },
  21367. [
  21368. {
  21369. name: "Normal",
  21370. height: math.unit(28.75, "feet"),
  21371. default: true
  21372. },
  21373. ]
  21374. ))
  21375. characterMakers.push(() => makeCharacter(
  21376. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21377. {
  21378. side: {
  21379. height: math.unit(25.5, "feet"),
  21380. weight: math.unit(23000, "kg"),
  21381. name: "Side",
  21382. image: {
  21383. source: "./media/characters/kanara/side.svg"
  21384. }
  21385. },
  21386. },
  21387. [
  21388. {
  21389. name: "Normal",
  21390. height: math.unit(25.5, "feet"),
  21391. default: true
  21392. },
  21393. ]
  21394. ))
  21395. characterMakers.push(() => makeCharacter(
  21396. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21397. {
  21398. side: {
  21399. height: math.unit(10, "feet"),
  21400. weight: math.unit(1000, "kg"),
  21401. name: "Side",
  21402. image: {
  21403. source: "./media/characters/ereus/side.svg",
  21404. extra: 1157 / 959,
  21405. bottom: 153 / 1312.5
  21406. }
  21407. },
  21408. },
  21409. [
  21410. {
  21411. name: "Normal",
  21412. height: math.unit(10, "feet"),
  21413. default: true
  21414. },
  21415. ]
  21416. ))
  21417. characterMakers.push(() => makeCharacter(
  21418. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21419. {
  21420. side: {
  21421. height: math.unit(4.5, "feet"),
  21422. weight: math.unit(500, "lb"),
  21423. name: "Side",
  21424. image: {
  21425. source: "./media/characters/e-ter/side.svg",
  21426. extra: 1550 / 1248,
  21427. bottom: 146 / 1694
  21428. }
  21429. },
  21430. },
  21431. [
  21432. {
  21433. name: "Normal",
  21434. height: math.unit(4.5, "feet"),
  21435. default: true
  21436. },
  21437. ]
  21438. ))
  21439. characterMakers.push(() => makeCharacter(
  21440. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21441. {
  21442. side: {
  21443. height: math.unit(9.7, "feet"),
  21444. weight: math.unit(4000, "kg"),
  21445. name: "Side",
  21446. image: {
  21447. source: "./media/characters/yamie/side.svg"
  21448. }
  21449. },
  21450. },
  21451. [
  21452. {
  21453. name: "Normal",
  21454. height: math.unit(9.7, "feet"),
  21455. default: true
  21456. },
  21457. ]
  21458. ))
  21459. characterMakers.push(() => makeCharacter(
  21460. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21461. {
  21462. front: {
  21463. height: math.unit(50, "feet"),
  21464. weight: math.unit(50000, "kg"),
  21465. name: "Front",
  21466. image: {
  21467. source: "./media/characters/anders/front.svg",
  21468. extra: 570 / 539,
  21469. bottom: 14.7 / 586.7
  21470. }
  21471. },
  21472. },
  21473. [
  21474. {
  21475. name: "Large",
  21476. height: math.unit(50, "feet")
  21477. },
  21478. {
  21479. name: "Macro",
  21480. height: math.unit(2000, "feet"),
  21481. default: true
  21482. },
  21483. {
  21484. name: "Megamacro",
  21485. height: math.unit(12, "miles")
  21486. },
  21487. ]
  21488. ))
  21489. characterMakers.push(() => makeCharacter(
  21490. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21491. {
  21492. front: {
  21493. height: math.unit(7 + 2 / 12, "feet"),
  21494. weight: math.unit(300, "lb"),
  21495. name: "Front",
  21496. image: {
  21497. source: "./media/characters/reban/front.svg",
  21498. extra: 516 / 487,
  21499. bottom: 42.82 / 558.356
  21500. }
  21501. },
  21502. dick: {
  21503. height: math.unit(7 / 5, "feet"),
  21504. name: "Dick",
  21505. image: {
  21506. source: "./media/characters/reban/dick.svg"
  21507. }
  21508. },
  21509. },
  21510. [
  21511. {
  21512. name: "Natural Height",
  21513. height: math.unit(7 + 2 / 12, "feet")
  21514. },
  21515. {
  21516. name: "Macro",
  21517. height: math.unit(500, "feet"),
  21518. default: true
  21519. },
  21520. {
  21521. name: "Canon Height",
  21522. height: math.unit(50, "AU")
  21523. },
  21524. ]
  21525. ))
  21526. characterMakers.push(() => makeCharacter(
  21527. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21528. {
  21529. front: {
  21530. height: math.unit(6, "feet"),
  21531. weight: math.unit(150, "lb"),
  21532. name: "Front",
  21533. image: {
  21534. source: "./media/characters/terrance-keayes/front.svg",
  21535. extra: 1.005,
  21536. bottom: 151 / 1615
  21537. }
  21538. },
  21539. side: {
  21540. height: math.unit(6, "feet"),
  21541. weight: math.unit(150, "lb"),
  21542. name: "Side",
  21543. image: {
  21544. source: "./media/characters/terrance-keayes/side.svg",
  21545. extra: 1.005,
  21546. bottom: 129.4 / 1544
  21547. }
  21548. },
  21549. back: {
  21550. height: math.unit(6, "feet"),
  21551. weight: math.unit(150, "lb"),
  21552. name: "Back",
  21553. image: {
  21554. source: "./media/characters/terrance-keayes/back.svg",
  21555. extra: 1.005,
  21556. bottom: 58.4 / 1557.3
  21557. }
  21558. },
  21559. dick: {
  21560. height: math.unit(6 * 0.208, "feet"),
  21561. name: "Dick",
  21562. image: {
  21563. source: "./media/characters/terrance-keayes/dick.svg"
  21564. }
  21565. },
  21566. },
  21567. [
  21568. {
  21569. name: "Canon Height",
  21570. height: math.unit(35, "miles"),
  21571. default: true
  21572. },
  21573. ]
  21574. ))
  21575. characterMakers.push(() => makeCharacter(
  21576. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21577. {
  21578. front: {
  21579. height: math.unit(6, "feet"),
  21580. weight: math.unit(150, "lb"),
  21581. name: "Front",
  21582. image: {
  21583. source: "./media/characters/ofelia/front.svg",
  21584. extra: 546 / 541,
  21585. bottom: 39 / 583
  21586. }
  21587. },
  21588. back: {
  21589. height: math.unit(6, "feet"),
  21590. weight: math.unit(150, "lb"),
  21591. name: "Back",
  21592. image: {
  21593. source: "./media/characters/ofelia/back.svg",
  21594. extra: 564 / 559.5,
  21595. bottom: 8.69 / 573.02
  21596. }
  21597. },
  21598. maw: {
  21599. height: math.unit(1, "feet"),
  21600. name: "Maw",
  21601. image: {
  21602. source: "./media/characters/ofelia/maw.svg"
  21603. }
  21604. },
  21605. foot: {
  21606. height: math.unit(1.949, "feet"),
  21607. name: "Foot",
  21608. image: {
  21609. source: "./media/characters/ofelia/foot.svg"
  21610. }
  21611. },
  21612. },
  21613. [
  21614. {
  21615. name: "Canon Height",
  21616. height: math.unit(2000, "miles"),
  21617. default: true
  21618. },
  21619. ]
  21620. ))
  21621. characterMakers.push(() => makeCharacter(
  21622. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21623. {
  21624. front: {
  21625. height: math.unit(6, "feet"),
  21626. weight: math.unit(150, "lb"),
  21627. name: "Front",
  21628. image: {
  21629. source: "./media/characters/samuel/front.svg",
  21630. extra: 265 / 258,
  21631. bottom: 2 / 266.1566
  21632. }
  21633. },
  21634. },
  21635. [
  21636. {
  21637. name: "Macro",
  21638. height: math.unit(100, "feet"),
  21639. default: true
  21640. },
  21641. {
  21642. name: "Full Size",
  21643. height: math.unit(1000, "miles")
  21644. },
  21645. ]
  21646. ))
  21647. characterMakers.push(() => makeCharacter(
  21648. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21649. {
  21650. front: {
  21651. height: math.unit(6, "feet"),
  21652. weight: math.unit(300, "lb"),
  21653. name: "Front",
  21654. image: {
  21655. source: "./media/characters/beishir-kiel/front.svg",
  21656. extra: 569 / 547,
  21657. bottom: 41.9 / 609
  21658. }
  21659. },
  21660. maw: {
  21661. height: math.unit(6 * 0.202, "feet"),
  21662. name: "Maw",
  21663. image: {
  21664. source: "./media/characters/beishir-kiel/maw.svg"
  21665. }
  21666. },
  21667. },
  21668. [
  21669. {
  21670. name: "Macro",
  21671. height: math.unit(300, "feet"),
  21672. default: true
  21673. },
  21674. ]
  21675. ))
  21676. characterMakers.push(() => makeCharacter(
  21677. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21678. {
  21679. front: {
  21680. height: math.unit(5 + 8 / 12, "feet"),
  21681. weight: math.unit(120, "lb"),
  21682. name: "Front",
  21683. image: {
  21684. source: "./media/characters/logan-grey/front.svg",
  21685. extra: 2539 / 2393,
  21686. bottom: 97.6 / 2636.37
  21687. }
  21688. },
  21689. frontAlt: {
  21690. height: math.unit(5 + 8 / 12, "feet"),
  21691. weight: math.unit(120, "lb"),
  21692. name: "Front (Alt)",
  21693. image: {
  21694. source: "./media/characters/logan-grey/front-alt.svg",
  21695. extra: 958 / 893,
  21696. bottom: 15 / 970.768
  21697. }
  21698. },
  21699. back: {
  21700. height: math.unit(5 + 8 / 12, "feet"),
  21701. weight: math.unit(120, "lb"),
  21702. name: "Back",
  21703. image: {
  21704. source: "./media/characters/logan-grey/back.svg",
  21705. extra: 958 / 893,
  21706. bottom: 2.1881 / 970.9788
  21707. }
  21708. },
  21709. dick: {
  21710. height: math.unit(1.437, "feet"),
  21711. name: "Dick",
  21712. image: {
  21713. source: "./media/characters/logan-grey/dick.svg"
  21714. }
  21715. },
  21716. },
  21717. [
  21718. {
  21719. name: "Normal",
  21720. height: math.unit(5 + 8 / 12, "feet")
  21721. },
  21722. {
  21723. name: "The 500 Foot Femboy",
  21724. height: math.unit(500, "feet"),
  21725. default: true
  21726. },
  21727. {
  21728. name: "Megmacro",
  21729. height: math.unit(20, "miles")
  21730. },
  21731. ]
  21732. ))
  21733. characterMakers.push(() => makeCharacter(
  21734. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21735. {
  21736. front: {
  21737. height: math.unit(8 + 2 / 12, "feet"),
  21738. weight: math.unit(275, "lb"),
  21739. name: "Front",
  21740. image: {
  21741. source: "./media/characters/draganta/front.svg",
  21742. extra: 1177 / 1135,
  21743. bottom: 33.46 / 1212.1
  21744. }
  21745. },
  21746. },
  21747. [
  21748. {
  21749. name: "Normal",
  21750. height: math.unit(8 + 6 / 12, "feet"),
  21751. default: true
  21752. },
  21753. {
  21754. name: "Macro",
  21755. height: math.unit(150, "feet")
  21756. },
  21757. {
  21758. name: "Megamacro",
  21759. height: math.unit(1000, "miles")
  21760. },
  21761. ]
  21762. ))
  21763. characterMakers.push(() => makeCharacter(
  21764. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21765. {
  21766. front: {
  21767. height: math.unit(1.72, "m"),
  21768. weight: math.unit(80, "lb"),
  21769. name: "Front",
  21770. image: {
  21771. source: "./media/characters/voski/front.svg",
  21772. extra: 2076.22 / 2022.4,
  21773. bottom: 102.7 / 2177.3866
  21774. }
  21775. },
  21776. frontNsfw: {
  21777. height: math.unit(1.72, "m"),
  21778. weight: math.unit(80, "lb"),
  21779. name: "Front (NSFW)",
  21780. image: {
  21781. source: "./media/characters/voski/front-nsfw.svg",
  21782. extra: 2076.22 / 2022.4,
  21783. bottom: 102.7 / 2177.3866
  21784. }
  21785. },
  21786. back: {
  21787. height: math.unit(1.72, "m"),
  21788. weight: math.unit(80, "lb"),
  21789. name: "Back",
  21790. image: {
  21791. source: "./media/characters/voski/back.svg",
  21792. extra: 2104 / 2051,
  21793. bottom: 10.45 / 2113.63
  21794. }
  21795. },
  21796. },
  21797. [
  21798. {
  21799. name: "Normal",
  21800. height: math.unit(1.72, "m")
  21801. },
  21802. {
  21803. name: "Macro",
  21804. height: math.unit(55, "m"),
  21805. default: true
  21806. },
  21807. {
  21808. name: "Macro+",
  21809. height: math.unit(300, "m")
  21810. },
  21811. {
  21812. name: "Macro++",
  21813. height: math.unit(700, "m")
  21814. },
  21815. {
  21816. name: "Macro+++",
  21817. height: math.unit(4500, "m")
  21818. },
  21819. {
  21820. name: "Macro++++",
  21821. height: math.unit(45, "km")
  21822. },
  21823. {
  21824. name: "Macro+++++",
  21825. height: math.unit(1220, "km")
  21826. },
  21827. ]
  21828. ))
  21829. characterMakers.push(() => makeCharacter(
  21830. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21831. {
  21832. front: {
  21833. height: math.unit(2.3, "m"),
  21834. weight: math.unit(304, "kg"),
  21835. name: "Front",
  21836. image: {
  21837. source: "./media/characters/icowom-lee/front.svg",
  21838. extra: 985 / 955,
  21839. bottom: 25.4 / 1012
  21840. }
  21841. },
  21842. fronttentacles: {
  21843. height: math.unit(2.3, "m"),
  21844. weight: math.unit(304, "kg"),
  21845. name: "Front-tentacles",
  21846. image: {
  21847. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21848. extra: 985 / 955,
  21849. bottom: 25.4 / 1012
  21850. }
  21851. },
  21852. back: {
  21853. height: math.unit(2.3, "m"),
  21854. weight: math.unit(304, "kg"),
  21855. name: "Back",
  21856. image: {
  21857. source: "./media/characters/icowom-lee/back.svg",
  21858. extra: 975 / 954,
  21859. bottom: 9.5 / 985
  21860. }
  21861. },
  21862. backtentacles: {
  21863. height: math.unit(2.3, "m"),
  21864. weight: math.unit(304, "kg"),
  21865. name: "Back-tentacles",
  21866. image: {
  21867. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21868. extra: 975 / 954,
  21869. bottom: 9.5 / 985
  21870. }
  21871. },
  21872. frontDressed: {
  21873. height: math.unit(2.3, "m"),
  21874. weight: math.unit(304, "kg"),
  21875. name: "Front (Dressed)",
  21876. image: {
  21877. source: "./media/characters/icowom-lee/front-dressed.svg",
  21878. extra: 3076 / 2933,
  21879. bottom: 51.4 / 3125.1889
  21880. }
  21881. },
  21882. rump: {
  21883. height: math.unit(0.776, "meters"),
  21884. name: "Rump",
  21885. image: {
  21886. source: "./media/characters/icowom-lee/rump.svg"
  21887. }
  21888. },
  21889. genitals: {
  21890. height: math.unit(0.78, "meters"),
  21891. name: "Genitals",
  21892. image: {
  21893. source: "./media/characters/icowom-lee/genitals.svg"
  21894. }
  21895. },
  21896. },
  21897. [
  21898. {
  21899. name: "Normal",
  21900. height: math.unit(2.3, "meters"),
  21901. default: true
  21902. },
  21903. {
  21904. name: "Macro",
  21905. height: math.unit(94, "meters"),
  21906. default: true
  21907. },
  21908. ]
  21909. ))
  21910. characterMakers.push(() => makeCharacter(
  21911. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21912. {
  21913. front: {
  21914. height: math.unit(22, "meters"),
  21915. weight: math.unit(21000, "kg"),
  21916. name: "Front",
  21917. image: {
  21918. source: "./media/characters/shock-diamond/front.svg",
  21919. extra: 2204 / 2053,
  21920. bottom: 65 / 2239.47
  21921. }
  21922. },
  21923. frontNude: {
  21924. height: math.unit(22, "meters"),
  21925. weight: math.unit(21000, "kg"),
  21926. name: "Front (Nude)",
  21927. image: {
  21928. source: "./media/characters/shock-diamond/front-nude.svg",
  21929. extra: 2514 / 2285,
  21930. bottom: 13 / 2527.56
  21931. }
  21932. },
  21933. },
  21934. [
  21935. {
  21936. name: "Normal",
  21937. height: math.unit(3, "meters")
  21938. },
  21939. {
  21940. name: "Macro",
  21941. height: math.unit(22, "meters"),
  21942. default: true
  21943. },
  21944. ]
  21945. ))
  21946. characterMakers.push(() => makeCharacter(
  21947. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21948. {
  21949. front: {
  21950. height: math.unit(5 + 4 / 12, "feet"),
  21951. weight: math.unit(120, "lb"),
  21952. name: "Front",
  21953. image: {
  21954. source: "./media/characters/rory/front.svg",
  21955. extra: 589 / 556,
  21956. bottom: 45.7 / 635.76
  21957. }
  21958. },
  21959. frontNude: {
  21960. height: math.unit(5 + 4 / 12, "feet"),
  21961. weight: math.unit(120, "lb"),
  21962. name: "Front (Nude)",
  21963. image: {
  21964. source: "./media/characters/rory/front-nude.svg",
  21965. extra: 589 / 556,
  21966. bottom: 45.7 / 635.76
  21967. }
  21968. },
  21969. side: {
  21970. height: math.unit(5 + 4 / 12, "feet"),
  21971. weight: math.unit(120, "lb"),
  21972. name: "Side",
  21973. image: {
  21974. source: "./media/characters/rory/side.svg",
  21975. extra: 597 / 564,
  21976. bottom: 55 / 653
  21977. }
  21978. },
  21979. back: {
  21980. height: math.unit(5 + 4 / 12, "feet"),
  21981. weight: math.unit(120, "lb"),
  21982. name: "Back",
  21983. image: {
  21984. source: "./media/characters/rory/back.svg",
  21985. extra: 620 / 585,
  21986. bottom: 8.86 / 630.43
  21987. }
  21988. },
  21989. dick: {
  21990. height: math.unit(0.86, "feet"),
  21991. name: "Dick",
  21992. image: {
  21993. source: "./media/characters/rory/dick.svg"
  21994. }
  21995. },
  21996. },
  21997. [
  21998. {
  21999. name: "Normal",
  22000. height: math.unit(5 + 4 / 12, "feet"),
  22001. default: true
  22002. },
  22003. {
  22004. name: "Macro",
  22005. height: math.unit(100, "feet")
  22006. },
  22007. {
  22008. name: "Macro+",
  22009. height: math.unit(140, "feet")
  22010. },
  22011. {
  22012. name: "Macro++",
  22013. height: math.unit(300, "feet")
  22014. },
  22015. ]
  22016. ))
  22017. characterMakers.push(() => makeCharacter(
  22018. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22019. {
  22020. front: {
  22021. height: math.unit(5 + 9 / 12, "feet"),
  22022. weight: math.unit(190, "lb"),
  22023. name: "Front",
  22024. image: {
  22025. source: "./media/characters/sprisk/front.svg",
  22026. extra: 1225 / 1180,
  22027. bottom: 42.7 / 1266.4
  22028. }
  22029. },
  22030. frontNsfw: {
  22031. height: math.unit(5 + 9 / 12, "feet"),
  22032. weight: math.unit(190, "lb"),
  22033. name: "Front (NSFW)",
  22034. image: {
  22035. source: "./media/characters/sprisk/front-nsfw.svg",
  22036. extra: 1225 / 1180,
  22037. bottom: 42.7 / 1266.4
  22038. }
  22039. },
  22040. back: {
  22041. height: math.unit(5 + 9 / 12, "feet"),
  22042. weight: math.unit(190, "lb"),
  22043. name: "Back",
  22044. image: {
  22045. source: "./media/characters/sprisk/back.svg",
  22046. extra: 1247 / 1200,
  22047. bottom: 5.6 / 1253.04
  22048. }
  22049. },
  22050. },
  22051. [
  22052. {
  22053. name: "Tiny",
  22054. height: math.unit(2, "inches")
  22055. },
  22056. {
  22057. name: "Normal",
  22058. height: math.unit(5 + 9 / 12, "feet"),
  22059. default: true
  22060. },
  22061. {
  22062. name: "Mini Macro",
  22063. height: math.unit(18, "feet")
  22064. },
  22065. {
  22066. name: "Macro",
  22067. height: math.unit(100, "feet")
  22068. },
  22069. {
  22070. name: "MACRO",
  22071. height: math.unit(50, "miles")
  22072. },
  22073. {
  22074. name: "M A C R O",
  22075. height: math.unit(300, "miles")
  22076. },
  22077. ]
  22078. ))
  22079. characterMakers.push(() => makeCharacter(
  22080. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22081. {
  22082. side: {
  22083. height: math.unit(15.6, "meters"),
  22084. weight: math.unit(700000, "kg"),
  22085. name: "Side",
  22086. image: {
  22087. source: "./media/characters/bunsen/side.svg",
  22088. extra: 1644 / 358
  22089. }
  22090. },
  22091. foot: {
  22092. height: math.unit(1.611 * 1644 / 358, "meter"),
  22093. name: "Foot",
  22094. image: {
  22095. source: "./media/characters/bunsen/foot.svg"
  22096. }
  22097. },
  22098. },
  22099. [
  22100. {
  22101. name: "Small",
  22102. height: math.unit(10, "feet")
  22103. },
  22104. {
  22105. name: "Normal",
  22106. height: math.unit(15.6, "meters"),
  22107. default: true
  22108. },
  22109. ]
  22110. ))
  22111. characterMakers.push(() => makeCharacter(
  22112. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22113. {
  22114. front: {
  22115. height: math.unit(4 + 11 / 12, "feet"),
  22116. weight: math.unit(140, "lb"),
  22117. name: "Front",
  22118. image: {
  22119. source: "./media/characters/sesh/front.svg",
  22120. extra: 3420 / 3231,
  22121. bottom: 72 / 3949.5
  22122. }
  22123. },
  22124. },
  22125. [
  22126. {
  22127. name: "Normal",
  22128. height: math.unit(4 + 11 / 12, "feet")
  22129. },
  22130. {
  22131. name: "Grown",
  22132. height: math.unit(15, "feet"),
  22133. default: true
  22134. },
  22135. {
  22136. name: "Macro",
  22137. height: math.unit(1500, "feet")
  22138. },
  22139. {
  22140. name: "Megamacro",
  22141. height: math.unit(30, "miles")
  22142. },
  22143. {
  22144. name: "Continental",
  22145. height: math.unit(3000, "miles")
  22146. },
  22147. {
  22148. name: "Gravity Mass",
  22149. height: math.unit(300000, "miles")
  22150. },
  22151. {
  22152. name: "Planet Buster",
  22153. height: math.unit(30000000, "miles")
  22154. },
  22155. {
  22156. name: "Big",
  22157. height: math.unit(3000000000, "miles")
  22158. },
  22159. ]
  22160. ))
  22161. characterMakers.push(() => makeCharacter(
  22162. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22163. {
  22164. front: {
  22165. height: math.unit(9, "feet"),
  22166. weight: math.unit(350, "lb"),
  22167. name: "Front",
  22168. image: {
  22169. source: "./media/characters/pepper/front.svg",
  22170. extra: 1448 / 1312,
  22171. bottom: 9.4 / 1457.88
  22172. }
  22173. },
  22174. back: {
  22175. height: math.unit(9, "feet"),
  22176. weight: math.unit(350, "lb"),
  22177. name: "Back",
  22178. image: {
  22179. source: "./media/characters/pepper/back.svg",
  22180. extra: 1423 / 1300,
  22181. bottom: 4.6 / 1429
  22182. }
  22183. },
  22184. maw: {
  22185. height: math.unit(0.932, "feet"),
  22186. name: "Maw",
  22187. image: {
  22188. source: "./media/characters/pepper/maw.svg"
  22189. }
  22190. },
  22191. },
  22192. [
  22193. {
  22194. name: "Normal",
  22195. height: math.unit(9, "feet"),
  22196. default: true
  22197. },
  22198. ]
  22199. ))
  22200. characterMakers.push(() => makeCharacter(
  22201. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22202. {
  22203. front: {
  22204. height: math.unit(6, "feet"),
  22205. weight: math.unit(150, "lb"),
  22206. name: "Front",
  22207. image: {
  22208. source: "./media/characters/maelstrom/front.svg",
  22209. extra: 2100 / 1883,
  22210. bottom: 94 / 2196.7
  22211. }
  22212. },
  22213. },
  22214. [
  22215. {
  22216. name: "Less Kaiju",
  22217. height: math.unit(200, "feet")
  22218. },
  22219. {
  22220. name: "Kaiju",
  22221. height: math.unit(400, "feet"),
  22222. default: true
  22223. },
  22224. {
  22225. name: "Kaiju-er",
  22226. height: math.unit(600, "feet")
  22227. },
  22228. ]
  22229. ))
  22230. characterMakers.push(() => makeCharacter(
  22231. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22232. {
  22233. front: {
  22234. height: math.unit(6 + 5 / 12, "feet"),
  22235. weight: math.unit(180, "lb"),
  22236. name: "Front",
  22237. image: {
  22238. source: "./media/characters/lexir/front.svg",
  22239. extra: 180 / 172,
  22240. bottom: 12 / 192
  22241. }
  22242. },
  22243. back: {
  22244. height: math.unit(6 + 5 / 12, "feet"),
  22245. weight: math.unit(180, "lb"),
  22246. name: "Back",
  22247. image: {
  22248. source: "./media/characters/lexir/back.svg",
  22249. extra: 183.84 / 175.5,
  22250. bottom: 3.1 / 187
  22251. }
  22252. },
  22253. },
  22254. [
  22255. {
  22256. name: "Very Smal",
  22257. height: math.unit(1, "nm")
  22258. },
  22259. {
  22260. name: "Normal",
  22261. height: math.unit(6 + 5 / 12, "feet"),
  22262. default: true
  22263. },
  22264. {
  22265. name: "Macro",
  22266. height: math.unit(1, "mile")
  22267. },
  22268. {
  22269. name: "Megamacro",
  22270. height: math.unit(50, "miles")
  22271. },
  22272. ]
  22273. ))
  22274. characterMakers.push(() => makeCharacter(
  22275. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22276. {
  22277. front: {
  22278. height: math.unit(1.5, "meters"),
  22279. weight: math.unit(100, "lb"),
  22280. name: "Front",
  22281. image: {
  22282. source: "./media/characters/maksio/front.svg",
  22283. extra: 1549 / 1531,
  22284. bottom: 123.7 / 1674.5429
  22285. }
  22286. },
  22287. back: {
  22288. height: math.unit(1.5, "meters"),
  22289. weight: math.unit(100, "lb"),
  22290. name: "Back",
  22291. image: {
  22292. source: "./media/characters/maksio/back.svg",
  22293. extra: 1541 / 1509,
  22294. bottom: 97 / 1639
  22295. }
  22296. },
  22297. hand: {
  22298. height: math.unit(0.621, "feet"),
  22299. name: "Hand",
  22300. image: {
  22301. source: "./media/characters/maksio/hand.svg"
  22302. }
  22303. },
  22304. foot: {
  22305. height: math.unit(1.611, "feet"),
  22306. name: "Foot",
  22307. image: {
  22308. source: "./media/characters/maksio/foot.svg"
  22309. }
  22310. },
  22311. },
  22312. [
  22313. {
  22314. name: "Shrunken",
  22315. height: math.unit(10, "cm")
  22316. },
  22317. {
  22318. name: "Normal",
  22319. height: math.unit(150, "cm"),
  22320. default: true
  22321. },
  22322. ]
  22323. ))
  22324. characterMakers.push(() => makeCharacter(
  22325. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22326. {
  22327. front: {
  22328. height: math.unit(100, "feet"),
  22329. name: "Front",
  22330. image: {
  22331. source: "./media/characters/erza-bear/front.svg",
  22332. extra: 2449 / 2390,
  22333. bottom: 46 / 2494
  22334. }
  22335. },
  22336. back: {
  22337. height: math.unit(100, "feet"),
  22338. name: "Back",
  22339. image: {
  22340. source: "./media/characters/erza-bear/back.svg",
  22341. extra: 2489 / 2430,
  22342. bottom: 85.4 / 2480
  22343. }
  22344. },
  22345. tail: {
  22346. height: math.unit(42, "feet"),
  22347. name: "Tail",
  22348. image: {
  22349. source: "./media/characters/erza-bear/tail.svg"
  22350. }
  22351. },
  22352. tongue: {
  22353. height: math.unit(8, "feet"),
  22354. name: "Tongue",
  22355. image: {
  22356. source: "./media/characters/erza-bear/tongue.svg"
  22357. }
  22358. },
  22359. dick: {
  22360. height: math.unit(10.5, "feet"),
  22361. name: "Dick",
  22362. image: {
  22363. source: "./media/characters/erza-bear/dick.svg"
  22364. }
  22365. },
  22366. dickVertical: {
  22367. height: math.unit(16.9, "feet"),
  22368. name: "Dick (Vertical)",
  22369. image: {
  22370. source: "./media/characters/erza-bear/dick-vertical.svg"
  22371. }
  22372. },
  22373. },
  22374. [
  22375. {
  22376. name: "Macro",
  22377. height: math.unit(100, "feet"),
  22378. default: true
  22379. },
  22380. ]
  22381. ))
  22382. characterMakers.push(() => makeCharacter(
  22383. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22384. {
  22385. front: {
  22386. height: math.unit(172, "cm"),
  22387. weight: math.unit(73, "kg"),
  22388. name: "Front",
  22389. image: {
  22390. source: "./media/characters/violet-flor/front.svg",
  22391. extra: 1530 / 1442,
  22392. bottom: 61.9 / 1588.8
  22393. }
  22394. },
  22395. back: {
  22396. height: math.unit(180, "cm"),
  22397. weight: math.unit(73, "kg"),
  22398. name: "Back",
  22399. image: {
  22400. source: "./media/characters/violet-flor/back.svg",
  22401. extra: 1692 / 1630,
  22402. bottom: 20 / 1712
  22403. }
  22404. },
  22405. },
  22406. [
  22407. {
  22408. name: "Normal",
  22409. height: math.unit(172, "cm"),
  22410. default: true
  22411. },
  22412. ]
  22413. ))
  22414. characterMakers.push(() => makeCharacter(
  22415. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22416. {
  22417. front: {
  22418. height: math.unit(6, "feet"),
  22419. weight: math.unit(220, "lb"),
  22420. name: "Front",
  22421. image: {
  22422. source: "./media/characters/lynn-rhea/front.svg",
  22423. extra: 310 / 273
  22424. }
  22425. },
  22426. back: {
  22427. height: math.unit(6, "feet"),
  22428. weight: math.unit(220, "lb"),
  22429. name: "Back",
  22430. image: {
  22431. source: "./media/characters/lynn-rhea/back.svg",
  22432. extra: 310 / 273
  22433. }
  22434. },
  22435. dicks: {
  22436. height: math.unit(0.9, "feet"),
  22437. name: "Dicks",
  22438. image: {
  22439. source: "./media/characters/lynn-rhea/dicks.svg"
  22440. }
  22441. },
  22442. slit: {
  22443. height: math.unit(0.4, "feet"),
  22444. name: "Slit",
  22445. image: {
  22446. source: "./media/characters/lynn-rhea/slit.svg"
  22447. }
  22448. },
  22449. },
  22450. [
  22451. {
  22452. name: "Micro",
  22453. height: math.unit(1, "inch")
  22454. },
  22455. {
  22456. name: "Macro",
  22457. height: math.unit(60, "feet"),
  22458. default: true
  22459. },
  22460. {
  22461. name: "Megamacro",
  22462. height: math.unit(2, "miles")
  22463. },
  22464. {
  22465. name: "Gigamacro",
  22466. height: math.unit(3, "earths")
  22467. },
  22468. {
  22469. name: "Galactic",
  22470. height: math.unit(0.8, "galaxies")
  22471. },
  22472. ]
  22473. ))
  22474. characterMakers.push(() => makeCharacter(
  22475. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22476. {
  22477. front: {
  22478. height: math.unit(1600, "feet"),
  22479. weight: math.unit(85758785169, "kg"),
  22480. name: "Front",
  22481. image: {
  22482. source: "./media/characters/valathos/front.svg",
  22483. extra: 1451 / 1339
  22484. }
  22485. },
  22486. },
  22487. [
  22488. {
  22489. name: "Macro",
  22490. height: math.unit(1600, "feet"),
  22491. default: true
  22492. },
  22493. ]
  22494. ))
  22495. characterMakers.push(() => makeCharacter(
  22496. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22497. {
  22498. front: {
  22499. height: math.unit(7 + 5 / 12, "feet"),
  22500. weight: math.unit(300, "lb"),
  22501. name: "Front",
  22502. image: {
  22503. source: "./media/characters/azula/front.svg",
  22504. extra: 3208 / 2880,
  22505. bottom: 80.2 / 3277
  22506. }
  22507. },
  22508. back: {
  22509. height: math.unit(7 + 5 / 12, "feet"),
  22510. weight: math.unit(300, "lb"),
  22511. name: "Back",
  22512. image: {
  22513. source: "./media/characters/azula/back.svg",
  22514. extra: 3169 / 2822,
  22515. bottom: 150.6 / 3321
  22516. }
  22517. },
  22518. },
  22519. [
  22520. {
  22521. name: "Normal",
  22522. height: math.unit(7 + 5 / 12, "feet"),
  22523. default: true
  22524. },
  22525. {
  22526. name: "Big",
  22527. height: math.unit(20, "feet")
  22528. },
  22529. ]
  22530. ))
  22531. characterMakers.push(() => makeCharacter(
  22532. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22533. {
  22534. front: {
  22535. height: math.unit(5 + 1 / 12, "feet"),
  22536. weight: math.unit(110, "lb"),
  22537. name: "Front",
  22538. image: {
  22539. source: "./media/characters/rupert/front.svg",
  22540. extra: 1549 / 1495,
  22541. bottom: 54.2 / 1604.4
  22542. }
  22543. },
  22544. },
  22545. [
  22546. {
  22547. name: "Normal",
  22548. height: math.unit(5 + 1 / 12, "feet"),
  22549. default: true
  22550. },
  22551. ]
  22552. ))
  22553. characterMakers.push(() => makeCharacter(
  22554. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22555. {
  22556. front: {
  22557. height: math.unit(8 + 4 / 12, "feet"),
  22558. weight: math.unit(350, "lb"),
  22559. name: "Front",
  22560. image: {
  22561. source: "./media/characters/sheera-castellar/front.svg",
  22562. extra: 1957 / 1894,
  22563. bottom: 26.97 / 1975.017
  22564. }
  22565. },
  22566. side: {
  22567. height: math.unit(8 + 4 / 12, "feet"),
  22568. weight: math.unit(350, "lb"),
  22569. name: "Side",
  22570. image: {
  22571. source: "./media/characters/sheera-castellar/side.svg",
  22572. extra: 1957 / 1894
  22573. }
  22574. },
  22575. back: {
  22576. height: math.unit(8 + 4 / 12, "feet"),
  22577. weight: math.unit(350, "lb"),
  22578. name: "Back",
  22579. image: {
  22580. source: "./media/characters/sheera-castellar/back.svg",
  22581. extra: 1957 / 1894
  22582. }
  22583. },
  22584. angled: {
  22585. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22586. weight: math.unit(350, "lb"),
  22587. name: "Angled",
  22588. image: {
  22589. source: "./media/characters/sheera-castellar/angled.svg",
  22590. extra: 1807 / 1707,
  22591. bottom: 68 / 1875
  22592. }
  22593. },
  22594. genitals: {
  22595. height: math.unit(2.2, "feet"),
  22596. name: "Genitals",
  22597. image: {
  22598. source: "./media/characters/sheera-castellar/genitals.svg"
  22599. }
  22600. },
  22601. },
  22602. [
  22603. {
  22604. name: "Normal",
  22605. height: math.unit(8 + 4 / 12, "feet")
  22606. },
  22607. {
  22608. name: "Macro",
  22609. height: math.unit(150, "feet"),
  22610. default: true
  22611. },
  22612. {
  22613. name: "Macro+",
  22614. height: math.unit(800, "feet")
  22615. },
  22616. ]
  22617. ))
  22618. characterMakers.push(() => makeCharacter(
  22619. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22620. {
  22621. front: {
  22622. height: math.unit(6, "feet"),
  22623. weight: math.unit(150, "lb"),
  22624. name: "Front",
  22625. image: {
  22626. source: "./media/characters/jaipur/front.svg",
  22627. extra: 3860 / 3731,
  22628. bottom: 287 / 4140
  22629. }
  22630. },
  22631. back: {
  22632. height: math.unit(6, "feet"),
  22633. weight: math.unit(150, "lb"),
  22634. name: "Back",
  22635. image: {
  22636. source: "./media/characters/jaipur/back.svg",
  22637. extra: 4060 / 3930,
  22638. bottom: 151 / 4200
  22639. }
  22640. },
  22641. },
  22642. [
  22643. {
  22644. name: "Normal",
  22645. height: math.unit(1.85, "meters"),
  22646. default: true
  22647. },
  22648. {
  22649. name: "Macro",
  22650. height: math.unit(150, "meters")
  22651. },
  22652. {
  22653. name: "Macro+",
  22654. height: math.unit(0.5, "miles")
  22655. },
  22656. {
  22657. name: "Macro++",
  22658. height: math.unit(2.5, "miles")
  22659. },
  22660. {
  22661. name: "Macro+++",
  22662. height: math.unit(12, "miles")
  22663. },
  22664. {
  22665. name: "Macro++++",
  22666. height: math.unit(120, "miles")
  22667. },
  22668. {
  22669. name: "Macro+++++",
  22670. height: math.unit(1200, "miles")
  22671. },
  22672. ]
  22673. ))
  22674. characterMakers.push(() => makeCharacter(
  22675. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22676. {
  22677. front: {
  22678. height: math.unit(6, "feet"),
  22679. weight: math.unit(150, "lb"),
  22680. name: "Front",
  22681. image: {
  22682. source: "./media/characters/sheila-wolf/front.svg",
  22683. extra: 1931 / 1808,
  22684. bottom: 29.5 / 1960
  22685. }
  22686. },
  22687. dick: {
  22688. height: math.unit(1.464, "feet"),
  22689. name: "Dick",
  22690. image: {
  22691. source: "./media/characters/sheila-wolf/dick.svg"
  22692. }
  22693. },
  22694. muzzle: {
  22695. height: math.unit(0.513, "feet"),
  22696. name: "Muzzle",
  22697. image: {
  22698. source: "./media/characters/sheila-wolf/muzzle.svg"
  22699. }
  22700. },
  22701. },
  22702. [
  22703. {
  22704. name: "Macro",
  22705. height: math.unit(70, "feet"),
  22706. default: true
  22707. },
  22708. ]
  22709. ))
  22710. characterMakers.push(() => makeCharacter(
  22711. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22712. {
  22713. front: {
  22714. height: math.unit(32, "meters"),
  22715. weight: math.unit(300000, "kg"),
  22716. name: "Front",
  22717. image: {
  22718. source: "./media/characters/almor/front.svg",
  22719. extra: 1408 / 1322,
  22720. bottom: 94.6 / 1506.5
  22721. }
  22722. },
  22723. },
  22724. [
  22725. {
  22726. name: "Macro",
  22727. height: math.unit(32, "meters"),
  22728. default: true
  22729. },
  22730. ]
  22731. ))
  22732. characterMakers.push(() => makeCharacter(
  22733. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22734. {
  22735. front: {
  22736. height: math.unit(7, "feet"),
  22737. weight: math.unit(200, "lb"),
  22738. name: "Front",
  22739. image: {
  22740. source: "./media/characters/silver/front.svg",
  22741. extra: 472.1 / 450.5,
  22742. bottom: 26.5 / 499.424
  22743. }
  22744. },
  22745. },
  22746. [
  22747. {
  22748. name: "Normal",
  22749. height: math.unit(7, "feet"),
  22750. default: true
  22751. },
  22752. {
  22753. name: "Macro",
  22754. height: math.unit(800, "feet")
  22755. },
  22756. {
  22757. name: "Megamacro",
  22758. height: math.unit(250, "miles")
  22759. },
  22760. ]
  22761. ))
  22762. characterMakers.push(() => makeCharacter(
  22763. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22764. {
  22765. front: {
  22766. height: math.unit(6, "feet"),
  22767. weight: math.unit(150, "lb"),
  22768. name: "Front",
  22769. image: {
  22770. source: "./media/characters/pliskin/front.svg",
  22771. extra: 1469 / 1359,
  22772. bottom: 70 / 1540
  22773. }
  22774. },
  22775. },
  22776. [
  22777. {
  22778. name: "Micro",
  22779. height: math.unit(3, "inches")
  22780. },
  22781. {
  22782. name: "Normal",
  22783. height: math.unit(5 + 11 / 12, "feet"),
  22784. default: true
  22785. },
  22786. {
  22787. name: "Macro",
  22788. height: math.unit(120, "feet")
  22789. },
  22790. ]
  22791. ))
  22792. characterMakers.push(() => makeCharacter(
  22793. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22794. {
  22795. front: {
  22796. height: math.unit(6, "feet"),
  22797. weight: math.unit(150, "lb"),
  22798. name: "Front",
  22799. image: {
  22800. source: "./media/characters/sammy/front.svg",
  22801. extra: 1193 / 1089,
  22802. bottom: 30.5 / 1226
  22803. }
  22804. },
  22805. },
  22806. [
  22807. {
  22808. name: "Macro",
  22809. height: math.unit(1700, "feet"),
  22810. default: true
  22811. },
  22812. {
  22813. name: "Examacro",
  22814. height: math.unit(2.5e9, "lightyears")
  22815. },
  22816. ]
  22817. ))
  22818. characterMakers.push(() => makeCharacter(
  22819. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22820. {
  22821. front: {
  22822. height: math.unit(21, "meters"),
  22823. weight: math.unit(12, "tonnes"),
  22824. name: "Front",
  22825. image: {
  22826. source: "./media/characters/kuru/front.svg",
  22827. extra: 4301 / 3785,
  22828. bottom: 371.3 / 4691
  22829. }
  22830. },
  22831. },
  22832. [
  22833. {
  22834. name: "Macro",
  22835. height: math.unit(21, "meters"),
  22836. default: true
  22837. },
  22838. ]
  22839. ))
  22840. characterMakers.push(() => makeCharacter(
  22841. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22842. {
  22843. front: {
  22844. height: math.unit(23, "meters"),
  22845. weight: math.unit(12.2, "tonnes"),
  22846. name: "Front",
  22847. image: {
  22848. source: "./media/characters/rakka/front.svg",
  22849. extra: 4670 / 4169,
  22850. bottom: 301 / 4968.7
  22851. }
  22852. },
  22853. },
  22854. [
  22855. {
  22856. name: "Macro",
  22857. height: math.unit(23, "meters"),
  22858. default: true
  22859. },
  22860. ]
  22861. ))
  22862. characterMakers.push(() => makeCharacter(
  22863. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22864. {
  22865. front: {
  22866. height: math.unit(6, "feet"),
  22867. weight: math.unit(150, "lb"),
  22868. name: "Front",
  22869. image: {
  22870. source: "./media/characters/rhys-feline/front.svg",
  22871. extra: 2488 / 2308,
  22872. bottom: 35.67 / 2519.19
  22873. }
  22874. },
  22875. },
  22876. [
  22877. {
  22878. name: "Really Small",
  22879. height: math.unit(1, "nm")
  22880. },
  22881. {
  22882. name: "Micro",
  22883. height: math.unit(4, "inches")
  22884. },
  22885. {
  22886. name: "Normal",
  22887. height: math.unit(4 + 10 / 12, "feet"),
  22888. default: true
  22889. },
  22890. {
  22891. name: "Macro",
  22892. height: math.unit(100, "feet")
  22893. },
  22894. {
  22895. name: "Megamacto",
  22896. height: math.unit(50, "miles")
  22897. },
  22898. ]
  22899. ))
  22900. characterMakers.push(() => makeCharacter(
  22901. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22902. {
  22903. side: {
  22904. height: math.unit(30, "feet"),
  22905. weight: math.unit(35000, "kg"),
  22906. name: "Side",
  22907. image: {
  22908. source: "./media/characters/alydar/side.svg",
  22909. extra: 234 / 222,
  22910. bottom: 6.5 / 241
  22911. }
  22912. },
  22913. front: {
  22914. height: math.unit(30, "feet"),
  22915. weight: math.unit(35000, "kg"),
  22916. name: "Front",
  22917. image: {
  22918. source: "./media/characters/alydar/front.svg",
  22919. extra: 223.37 / 210.2,
  22920. bottom: 22.3 / 246.76
  22921. }
  22922. },
  22923. top: {
  22924. height: math.unit(64.54, "feet"),
  22925. weight: math.unit(35000, "kg"),
  22926. name: "Top",
  22927. image: {
  22928. source: "./media/characters/alydar/top.svg"
  22929. }
  22930. },
  22931. anthro: {
  22932. height: math.unit(30, "feet"),
  22933. weight: math.unit(9000, "kg"),
  22934. name: "Anthro",
  22935. image: {
  22936. source: "./media/characters/alydar/anthro.svg",
  22937. extra: 432 / 421,
  22938. bottom: 7.18 / 440
  22939. }
  22940. },
  22941. maw: {
  22942. height: math.unit(11.693, "feet"),
  22943. name: "Maw",
  22944. image: {
  22945. source: "./media/characters/alydar/maw.svg"
  22946. }
  22947. },
  22948. head: {
  22949. height: math.unit(11.693, "feet"),
  22950. name: "Head",
  22951. image: {
  22952. source: "./media/characters/alydar/head.svg"
  22953. }
  22954. },
  22955. headAlt: {
  22956. height: math.unit(12.861, "feet"),
  22957. name: "Head (Alt)",
  22958. image: {
  22959. source: "./media/characters/alydar/head-alt.svg"
  22960. }
  22961. },
  22962. wing: {
  22963. height: math.unit(20.712, "feet"),
  22964. name: "Wing",
  22965. image: {
  22966. source: "./media/characters/alydar/wing.svg"
  22967. }
  22968. },
  22969. wingFeather: {
  22970. height: math.unit(9.662, "feet"),
  22971. name: "Wing Feather",
  22972. image: {
  22973. source: "./media/characters/alydar/wing-feather.svg"
  22974. }
  22975. },
  22976. countourFeather: {
  22977. height: math.unit(4.154, "feet"),
  22978. name: "Contour Feather",
  22979. image: {
  22980. source: "./media/characters/alydar/contour-feather.svg"
  22981. }
  22982. },
  22983. },
  22984. [
  22985. {
  22986. name: "Diplomatic",
  22987. height: math.unit(13, "feet"),
  22988. default: true
  22989. },
  22990. {
  22991. name: "Small",
  22992. height: math.unit(30, "feet")
  22993. },
  22994. {
  22995. name: "Normal",
  22996. height: math.unit(95, "feet"),
  22997. default: true
  22998. },
  22999. {
  23000. name: "Large",
  23001. height: math.unit(285, "feet")
  23002. },
  23003. {
  23004. name: "Incomprehensible",
  23005. height: math.unit(450, "megameters")
  23006. },
  23007. ]
  23008. ))
  23009. characterMakers.push(() => makeCharacter(
  23010. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23011. {
  23012. side: {
  23013. height: math.unit(11, "feet"),
  23014. weight: math.unit(1750, "kg"),
  23015. name: "Side",
  23016. image: {
  23017. source: "./media/characters/selicia/side.svg",
  23018. extra: 440 / 396,
  23019. bottom: 24.8 / 465.979
  23020. }
  23021. },
  23022. maw: {
  23023. height: math.unit(4.665, "feet"),
  23024. name: "Maw",
  23025. image: {
  23026. source: "./media/characters/selicia/maw.svg"
  23027. }
  23028. },
  23029. },
  23030. [
  23031. {
  23032. name: "Normal",
  23033. height: math.unit(11, "feet"),
  23034. default: true
  23035. },
  23036. ]
  23037. ))
  23038. characterMakers.push(() => makeCharacter(
  23039. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23040. {
  23041. side: {
  23042. height: math.unit(2 + 6 / 12, "feet"),
  23043. weight: math.unit(30, "lb"),
  23044. name: "Side",
  23045. image: {
  23046. source: "./media/characters/layla/side.svg",
  23047. extra: 244 / 188,
  23048. bottom: 18.2 / 262.1
  23049. }
  23050. },
  23051. back: {
  23052. height: math.unit(2 + 6 / 12, "feet"),
  23053. weight: math.unit(30, "lb"),
  23054. name: "Back",
  23055. image: {
  23056. source: "./media/characters/layla/back.svg",
  23057. extra: 308 / 241.5,
  23058. bottom: 8.9 / 316.8
  23059. }
  23060. },
  23061. cumming: {
  23062. height: math.unit(2 + 6 / 12, "feet"),
  23063. weight: math.unit(30, "lb"),
  23064. name: "Cumming",
  23065. image: {
  23066. source: "./media/characters/layla/cumming.svg",
  23067. extra: 342 / 279,
  23068. bottom: 595 / 938
  23069. }
  23070. },
  23071. dickFlaccid: {
  23072. height: math.unit(2.595, "feet"),
  23073. name: "Flaccid Genitals",
  23074. image: {
  23075. source: "./media/characters/layla/dick-flaccid.svg"
  23076. }
  23077. },
  23078. dickErect: {
  23079. height: math.unit(2.359, "feet"),
  23080. name: "Erect Genitals",
  23081. image: {
  23082. source: "./media/characters/layla/dick-erect.svg"
  23083. }
  23084. },
  23085. },
  23086. [
  23087. {
  23088. name: "Micro",
  23089. height: math.unit(1, "inch")
  23090. },
  23091. {
  23092. name: "Small",
  23093. height: math.unit(1, "foot")
  23094. },
  23095. {
  23096. name: "Normal",
  23097. height: math.unit(2 + 6 / 12, "feet"),
  23098. default: true
  23099. },
  23100. {
  23101. name: "Macro",
  23102. height: math.unit(200, "feet")
  23103. },
  23104. {
  23105. name: "Megamacro",
  23106. height: math.unit(1000, "miles")
  23107. },
  23108. {
  23109. name: "Planetary",
  23110. height: math.unit(8000, "miles")
  23111. },
  23112. {
  23113. name: "True Layla",
  23114. height: math.unit(200000 * 7, "multiverses")
  23115. },
  23116. ]
  23117. ))
  23118. characterMakers.push(() => makeCharacter(
  23119. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23120. {
  23121. back: {
  23122. height: math.unit(10.5, "feet"),
  23123. weight: math.unit(800, "lb"),
  23124. name: "Back",
  23125. image: {
  23126. source: "./media/characters/knox/back.svg",
  23127. extra: 1486 / 1089,
  23128. bottom: 107 / 1601.4
  23129. }
  23130. },
  23131. side: {
  23132. height: math.unit(10.5, "feet"),
  23133. weight: math.unit(800, "lb"),
  23134. name: "Side",
  23135. image: {
  23136. source: "./media/characters/knox/side.svg",
  23137. extra: 244 / 218,
  23138. bottom: 14 / 260
  23139. }
  23140. },
  23141. },
  23142. [
  23143. {
  23144. name: "Compact",
  23145. height: math.unit(10.5, "feet"),
  23146. default: true
  23147. },
  23148. {
  23149. name: "Dynamax",
  23150. height: math.unit(210, "feet")
  23151. },
  23152. {
  23153. name: "Full Macro",
  23154. height: math.unit(850, "feet")
  23155. },
  23156. ]
  23157. ))
  23158. characterMakers.push(() => makeCharacter(
  23159. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23160. {
  23161. front: {
  23162. height: math.unit(6, "feet"),
  23163. weight: math.unit(152, "lb"),
  23164. name: "Front",
  23165. image: {
  23166. source: "./media/characters/shin-pikachu/front.svg",
  23167. extra: 1574 / 1480,
  23168. bottom: 53.3 / 1626
  23169. }
  23170. },
  23171. hand: {
  23172. height: math.unit(1.055, "feet"),
  23173. name: "Hand",
  23174. image: {
  23175. source: "./media/characters/shin-pikachu/hand.svg"
  23176. }
  23177. },
  23178. foot: {
  23179. height: math.unit(1.1, "feet"),
  23180. name: "Foot",
  23181. image: {
  23182. source: "./media/characters/shin-pikachu/foot.svg"
  23183. }
  23184. },
  23185. collar: {
  23186. height: math.unit(0.386, "feet"),
  23187. name: "Collar",
  23188. image: {
  23189. source: "./media/characters/shin-pikachu/collar.svg"
  23190. }
  23191. },
  23192. },
  23193. [
  23194. {
  23195. name: "Smallest",
  23196. height: math.unit(0.5, "inches")
  23197. },
  23198. {
  23199. name: "Micro",
  23200. height: math.unit(6, "inches")
  23201. },
  23202. {
  23203. name: "Normal",
  23204. height: math.unit(6, "feet"),
  23205. default: true
  23206. },
  23207. {
  23208. name: "Macro",
  23209. height: math.unit(150, "feet")
  23210. },
  23211. ]
  23212. ))
  23213. characterMakers.push(() => makeCharacter(
  23214. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23215. {
  23216. front: {
  23217. height: math.unit(28, "feet"),
  23218. weight: math.unit(10500, "lb"),
  23219. name: "Front",
  23220. image: {
  23221. source: "./media/characters/kayda/front.svg",
  23222. extra: 1536 / 1428,
  23223. bottom: 68.7 / 1603
  23224. }
  23225. },
  23226. back: {
  23227. height: math.unit(28, "feet"),
  23228. weight: math.unit(10500, "lb"),
  23229. name: "Back",
  23230. image: {
  23231. source: "./media/characters/kayda/back.svg",
  23232. extra: 1557 / 1464,
  23233. bottom: 39.5 / 1597.49
  23234. }
  23235. },
  23236. dick: {
  23237. height: math.unit(3.858, "feet"),
  23238. name: "Dick",
  23239. image: {
  23240. source: "./media/characters/kayda/dick.svg"
  23241. }
  23242. },
  23243. },
  23244. [
  23245. {
  23246. name: "Macro",
  23247. height: math.unit(28, "feet"),
  23248. default: true
  23249. },
  23250. ]
  23251. ))
  23252. characterMakers.push(() => makeCharacter(
  23253. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23254. {
  23255. front: {
  23256. height: math.unit(10 + 11 / 12, "feet"),
  23257. weight: math.unit(1400, "lb"),
  23258. name: "Front",
  23259. image: {
  23260. source: "./media/characters/brian/front.svg",
  23261. extra: 737 / 692,
  23262. bottom: 55.4 / 785
  23263. }
  23264. },
  23265. },
  23266. [
  23267. {
  23268. name: "Normal",
  23269. height: math.unit(10 + 11 / 12, "feet"),
  23270. default: true
  23271. },
  23272. ]
  23273. ))
  23274. characterMakers.push(() => makeCharacter(
  23275. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23276. {
  23277. front: {
  23278. height: math.unit(5 + 8 / 12, "feet"),
  23279. weight: math.unit(140, "lb"),
  23280. name: "Front",
  23281. image: {
  23282. source: "./media/characters/khemri/front.svg",
  23283. extra: 4780 / 4059,
  23284. bottom: 80.1 / 4859.25
  23285. }
  23286. },
  23287. },
  23288. [
  23289. {
  23290. name: "Micro",
  23291. height: math.unit(6, "inches")
  23292. },
  23293. {
  23294. name: "Normal",
  23295. height: math.unit(5 + 8 / 12, "feet"),
  23296. default: true
  23297. },
  23298. ]
  23299. ))
  23300. characterMakers.push(() => makeCharacter(
  23301. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23302. {
  23303. front: {
  23304. height: math.unit(13, "feet"),
  23305. weight: math.unit(1700, "lb"),
  23306. name: "Front",
  23307. image: {
  23308. source: "./media/characters/felix-braveheart/front.svg",
  23309. extra: 1222 / 1157,
  23310. bottom: 53.2 / 1280
  23311. }
  23312. },
  23313. back: {
  23314. height: math.unit(13, "feet"),
  23315. weight: math.unit(1700, "lb"),
  23316. name: "Back",
  23317. image: {
  23318. source: "./media/characters/felix-braveheart/back.svg",
  23319. extra: 1277 / 1203,
  23320. bottom: 50.2 / 1327
  23321. }
  23322. },
  23323. feral: {
  23324. height: math.unit(6, "feet"),
  23325. weight: math.unit(400, "lb"),
  23326. name: "Feral",
  23327. image: {
  23328. source: "./media/characters/felix-braveheart/feral.svg",
  23329. extra: 682 / 625,
  23330. bottom: 6.9 / 688
  23331. }
  23332. },
  23333. },
  23334. [
  23335. {
  23336. name: "Normal",
  23337. height: math.unit(13, "feet"),
  23338. default: true
  23339. },
  23340. ]
  23341. ))
  23342. characterMakers.push(() => makeCharacter(
  23343. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23344. {
  23345. side: {
  23346. height: math.unit(5 + 11 / 12, "feet"),
  23347. weight: math.unit(1400, "lb"),
  23348. name: "Side",
  23349. image: {
  23350. source: "./media/characters/shadow-blade/side.svg",
  23351. extra: 1726 / 1267,
  23352. bottom: 58.4 / 1785
  23353. }
  23354. },
  23355. },
  23356. [
  23357. {
  23358. name: "Normal",
  23359. height: math.unit(5 + 11 / 12, "feet"),
  23360. default: true
  23361. },
  23362. ]
  23363. ))
  23364. characterMakers.push(() => makeCharacter(
  23365. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23366. {
  23367. front: {
  23368. height: math.unit(1 + 6 / 12, "feet"),
  23369. weight: math.unit(25, "lb"),
  23370. name: "Front",
  23371. image: {
  23372. source: "./media/characters/karla-halldor/front.svg",
  23373. extra: 1459 / 1383,
  23374. bottom: 12 / 1472
  23375. }
  23376. },
  23377. },
  23378. [
  23379. {
  23380. name: "Normal",
  23381. height: math.unit(1 + 6 / 12, "feet"),
  23382. default: true
  23383. },
  23384. ]
  23385. ))
  23386. characterMakers.push(() => makeCharacter(
  23387. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23388. {
  23389. front: {
  23390. height: math.unit(6 + 2 / 12, "feet"),
  23391. weight: math.unit(160, "lb"),
  23392. name: "Front",
  23393. image: {
  23394. source: "./media/characters/ariam/front.svg",
  23395. extra: 714 / 617,
  23396. bottom: 23.4 / 737,
  23397. }
  23398. },
  23399. squatting: {
  23400. height: math.unit(4.1, "feet"),
  23401. weight: math.unit(160, "lb"),
  23402. name: "Squatting",
  23403. image: {
  23404. source: "./media/characters/ariam/squatting.svg",
  23405. extra: 2617 / 2112,
  23406. bottom: 61.2 / 2681,
  23407. }
  23408. },
  23409. },
  23410. [
  23411. {
  23412. name: "Normal",
  23413. height: math.unit(6 + 2 / 12, "feet"),
  23414. default: true
  23415. },
  23416. {
  23417. name: "Normal+",
  23418. height: math.unit(4, "meters")
  23419. },
  23420. {
  23421. name: "Macro",
  23422. height: math.unit(50, "meters")
  23423. },
  23424. {
  23425. name: "Macro+",
  23426. height: math.unit(100, "meters")
  23427. },
  23428. {
  23429. name: "Megamacro",
  23430. height: math.unit(20, "km")
  23431. },
  23432. ]
  23433. ))
  23434. characterMakers.push(() => makeCharacter(
  23435. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23436. {
  23437. front: {
  23438. height: math.unit(1.67, "meters"),
  23439. weight: math.unit(140, "lb"),
  23440. name: "Front",
  23441. image: {
  23442. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23443. extra: 438 / 410,
  23444. bottom: 0.75 / 439
  23445. }
  23446. },
  23447. },
  23448. [
  23449. {
  23450. name: "Shrunken",
  23451. height: math.unit(7.6, "cm")
  23452. },
  23453. {
  23454. name: "Human Scale",
  23455. height: math.unit(1.67, "meters")
  23456. },
  23457. {
  23458. name: "Wolxi Scale",
  23459. height: math.unit(36.7, "meters"),
  23460. default: true
  23461. },
  23462. ]
  23463. ))
  23464. characterMakers.push(() => makeCharacter(
  23465. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23466. {
  23467. front: {
  23468. height: math.unit(1.73, "meters"),
  23469. weight: math.unit(240, "lb"),
  23470. name: "Front",
  23471. image: {
  23472. source: "./media/characters/izue-two-mothers/front.svg",
  23473. extra: 469 / 437,
  23474. bottom: 1.24 / 470.6
  23475. }
  23476. },
  23477. },
  23478. [
  23479. {
  23480. name: "Shrunken",
  23481. height: math.unit(7.86, "cm")
  23482. },
  23483. {
  23484. name: "Human Scale",
  23485. height: math.unit(1.73, "meters")
  23486. },
  23487. {
  23488. name: "Wolxi Scale",
  23489. height: math.unit(38, "meters"),
  23490. default: true
  23491. },
  23492. ]
  23493. ))
  23494. characterMakers.push(() => makeCharacter(
  23495. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23496. {
  23497. front: {
  23498. height: math.unit(1.55, "meters"),
  23499. weight: math.unit(120, "lb"),
  23500. name: "Front",
  23501. image: {
  23502. source: "./media/characters/teeku-love-shack/front.svg",
  23503. extra: 387 / 362,
  23504. bottom: 1.51 / 388
  23505. }
  23506. },
  23507. },
  23508. [
  23509. {
  23510. name: "Shrunken",
  23511. height: math.unit(7, "cm")
  23512. },
  23513. {
  23514. name: "Human Scale",
  23515. height: math.unit(1.55, "meters")
  23516. },
  23517. {
  23518. name: "Wolxi Scale",
  23519. height: math.unit(34.1, "meters"),
  23520. default: true
  23521. },
  23522. ]
  23523. ))
  23524. characterMakers.push(() => makeCharacter(
  23525. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23526. {
  23527. front: {
  23528. height: math.unit(1.83, "meters"),
  23529. weight: math.unit(135, "lb"),
  23530. name: "Front",
  23531. image: {
  23532. source: "./media/characters/dejma-the-red/front.svg",
  23533. extra: 480 / 458,
  23534. bottom: 1.8 / 482
  23535. }
  23536. },
  23537. },
  23538. [
  23539. {
  23540. name: "Shrunken",
  23541. height: math.unit(8.3, "cm")
  23542. },
  23543. {
  23544. name: "Human Scale",
  23545. height: math.unit(1.83, "meters")
  23546. },
  23547. {
  23548. name: "Wolxi Scale",
  23549. height: math.unit(40, "meters"),
  23550. default: true
  23551. },
  23552. ]
  23553. ))
  23554. characterMakers.push(() => makeCharacter(
  23555. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23556. {
  23557. front: {
  23558. height: math.unit(1.78, "meters"),
  23559. weight: math.unit(65, "kg"),
  23560. name: "Front",
  23561. image: {
  23562. source: "./media/characters/aki/front.svg",
  23563. extra: 452 / 415
  23564. }
  23565. },
  23566. frontNsfw: {
  23567. height: math.unit(1.78, "meters"),
  23568. weight: math.unit(65, "kg"),
  23569. name: "Front (NSFW)",
  23570. image: {
  23571. source: "./media/characters/aki/front-nsfw.svg",
  23572. extra: 452 / 415
  23573. }
  23574. },
  23575. back: {
  23576. height: math.unit(1.78, "meters"),
  23577. weight: math.unit(65, "kg"),
  23578. name: "Back",
  23579. image: {
  23580. source: "./media/characters/aki/back.svg",
  23581. extra: 452 / 415
  23582. }
  23583. },
  23584. rump: {
  23585. height: math.unit(2.05, "feet"),
  23586. name: "Rump",
  23587. image: {
  23588. source: "./media/characters/aki/rump.svg"
  23589. }
  23590. },
  23591. dick: {
  23592. height: math.unit(0.95, "feet"),
  23593. name: "Dick",
  23594. image: {
  23595. source: "./media/characters/aki/dick.svg"
  23596. }
  23597. },
  23598. },
  23599. [
  23600. {
  23601. name: "Micro",
  23602. height: math.unit(15, "cm")
  23603. },
  23604. {
  23605. name: "Normal",
  23606. height: math.unit(178, "cm"),
  23607. default: true
  23608. },
  23609. {
  23610. name: "Macro",
  23611. height: math.unit(214, "m")
  23612. },
  23613. {
  23614. name: "Macro+",
  23615. height: math.unit(534, "m")
  23616. },
  23617. ]
  23618. ))
  23619. characterMakers.push(() => makeCharacter(
  23620. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23621. {
  23622. front: {
  23623. height: math.unit(5 + 5 / 12, "feet"),
  23624. weight: math.unit(120, "lb"),
  23625. name: "Front",
  23626. image: {
  23627. source: "./media/characters/ari/front.svg",
  23628. extra: 714.5 / 682,
  23629. bottom: 8 / 722.5
  23630. }
  23631. },
  23632. },
  23633. [
  23634. {
  23635. name: "Normal",
  23636. height: math.unit(5 + 5 / 12, "feet")
  23637. },
  23638. {
  23639. name: "Macro",
  23640. height: math.unit(100, "feet"),
  23641. default: true
  23642. },
  23643. {
  23644. name: "Megamacro",
  23645. height: math.unit(100, "miles")
  23646. },
  23647. {
  23648. name: "Gigamacro",
  23649. height: math.unit(80000, "miles")
  23650. },
  23651. ]
  23652. ))
  23653. characterMakers.push(() => makeCharacter(
  23654. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23655. {
  23656. side: {
  23657. height: math.unit(9, "feet"),
  23658. weight: math.unit(400, "kg"),
  23659. name: "Side",
  23660. image: {
  23661. source: "./media/characters/bolt/side.svg",
  23662. extra: 1126 / 896,
  23663. bottom: 60 / 1187.3,
  23664. }
  23665. },
  23666. },
  23667. [
  23668. {
  23669. name: "Micro",
  23670. height: math.unit(5, "inches")
  23671. },
  23672. {
  23673. name: "Normal",
  23674. height: math.unit(9, "feet"),
  23675. default: true
  23676. },
  23677. {
  23678. name: "Macro",
  23679. height: math.unit(700, "feet")
  23680. },
  23681. {
  23682. name: "Max Size",
  23683. height: math.unit(1.52e22, "yottameters")
  23684. },
  23685. ]
  23686. ))
  23687. characterMakers.push(() => makeCharacter(
  23688. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23689. {
  23690. front: {
  23691. height: math.unit(4.53, "meters"),
  23692. weight: math.unit(3, "tons"),
  23693. name: "Front",
  23694. image: {
  23695. source: "./media/characters/draekon-sylviar/front.svg",
  23696. extra: 1228 / 1068,
  23697. bottom: 41 / 1270
  23698. }
  23699. },
  23700. tail: {
  23701. height: math.unit(1.772, "meter"),
  23702. name: "Tail",
  23703. image: {
  23704. source: "./media/characters/draekon-sylviar/tail.svg"
  23705. }
  23706. },
  23707. head: {
  23708. height: math.unit(1.331, "meter"),
  23709. name: "Head",
  23710. image: {
  23711. source: "./media/characters/draekon-sylviar/head.svg"
  23712. }
  23713. },
  23714. hand: {
  23715. height: math.unit(0.564, "meter"),
  23716. name: "Hand",
  23717. image: {
  23718. source: "./media/characters/draekon-sylviar/hand.svg"
  23719. }
  23720. },
  23721. foot: {
  23722. height: math.unit(0.621, "meter"),
  23723. name: "Foot",
  23724. image: {
  23725. source: "./media/characters/draekon-sylviar/foot.svg",
  23726. bottom: 32 / 324
  23727. }
  23728. },
  23729. dick: {
  23730. height: math.unit(61, "cm"),
  23731. name: "Dick",
  23732. image: {
  23733. source: "./media/characters/draekon-sylviar/dick.svg"
  23734. }
  23735. },
  23736. dickseparated: {
  23737. height: math.unit(61, "cm"),
  23738. name: "Dick-separated",
  23739. image: {
  23740. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23741. }
  23742. },
  23743. },
  23744. [
  23745. {
  23746. name: "Small",
  23747. height: math.unit(4.53 / 2, "meters"),
  23748. default: true
  23749. },
  23750. {
  23751. name: "Normal",
  23752. height: math.unit(4.53, "meters"),
  23753. default: true
  23754. },
  23755. {
  23756. name: "Large",
  23757. height: math.unit(4.53 * 2, "meters"),
  23758. },
  23759. ]
  23760. ))
  23761. characterMakers.push(() => makeCharacter(
  23762. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23763. {
  23764. front: {
  23765. height: math.unit(6 + 2 / 12, "feet"),
  23766. weight: math.unit(180, "lb"),
  23767. name: "Front",
  23768. image: {
  23769. source: "./media/characters/brawler/front.svg",
  23770. extra: 3301 / 3027,
  23771. bottom: 138 / 3439
  23772. }
  23773. },
  23774. },
  23775. [
  23776. {
  23777. name: "Normal",
  23778. height: math.unit(6 + 2 / 12, "feet"),
  23779. default: true
  23780. },
  23781. ]
  23782. ))
  23783. characterMakers.push(() => makeCharacter(
  23784. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23785. {
  23786. front: {
  23787. height: math.unit(11, "feet"),
  23788. weight: math.unit(1000, "lb"),
  23789. name: "Front",
  23790. image: {
  23791. source: "./media/characters/alex/front.svg",
  23792. bottom: 44.5 / 620
  23793. }
  23794. },
  23795. },
  23796. [
  23797. {
  23798. name: "Micro",
  23799. height: math.unit(5, "inches")
  23800. },
  23801. {
  23802. name: "Normal",
  23803. height: math.unit(11, "feet"),
  23804. default: true
  23805. },
  23806. {
  23807. name: "Macro",
  23808. height: math.unit(9.5e9, "feet")
  23809. },
  23810. {
  23811. name: "Max Size",
  23812. height: math.unit(1.4e283, "yottameters")
  23813. },
  23814. ]
  23815. ))
  23816. characterMakers.push(() => makeCharacter(
  23817. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23818. {
  23819. female: {
  23820. height: math.unit(29.9, "m"),
  23821. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23822. name: "Female",
  23823. image: {
  23824. source: "./media/characters/zenari/female.svg",
  23825. extra: 3281.6 / 3217,
  23826. bottom: 72.2 / 3353
  23827. }
  23828. },
  23829. male: {
  23830. height: math.unit(27.7, "m"),
  23831. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23832. name: "Male",
  23833. image: {
  23834. source: "./media/characters/zenari/male.svg",
  23835. extra: 3008 / 2991,
  23836. bottom: 54.6 / 3069
  23837. }
  23838. },
  23839. },
  23840. [
  23841. {
  23842. name: "Macro",
  23843. height: math.unit(29.7, "meters"),
  23844. default: true
  23845. },
  23846. ]
  23847. ))
  23848. characterMakers.push(() => makeCharacter(
  23849. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23850. {
  23851. female: {
  23852. height: math.unit(23.8, "m"),
  23853. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23854. name: "Female",
  23855. image: {
  23856. source: "./media/characters/mactarian/female.svg",
  23857. extra: 2662 / 2569,
  23858. bottom: 73 / 2736
  23859. }
  23860. },
  23861. male: {
  23862. height: math.unit(23.8, "m"),
  23863. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23864. name: "Male",
  23865. image: {
  23866. source: "./media/characters/mactarian/male.svg",
  23867. extra: 2673 / 2600,
  23868. bottom: 76 / 2750
  23869. }
  23870. },
  23871. },
  23872. [
  23873. {
  23874. name: "Macro",
  23875. height: math.unit(23.8, "meters"),
  23876. default: true
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23882. {
  23883. female: {
  23884. height: math.unit(19.3, "m"),
  23885. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23886. name: "Female",
  23887. image: {
  23888. source: "./media/characters/umok/female.svg",
  23889. extra: 2186 / 2078,
  23890. bottom: 87 / 2277
  23891. }
  23892. },
  23893. male: {
  23894. height: math.unit(19.5, "m"),
  23895. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23896. name: "Male",
  23897. image: {
  23898. source: "./media/characters/umok/male.svg",
  23899. extra: 2233 / 2140,
  23900. bottom: 24.4 / 2258
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Macro",
  23907. height: math.unit(19.3, "meters"),
  23908. default: true
  23909. },
  23910. ]
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23914. {
  23915. female: {
  23916. height: math.unit(26.15, "m"),
  23917. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23918. name: "Female",
  23919. image: {
  23920. source: "./media/characters/joraxian/female.svg",
  23921. extra: 2912 / 2824,
  23922. bottom: 36 / 2956
  23923. }
  23924. },
  23925. male: {
  23926. height: math.unit(25.4, "m"),
  23927. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23928. name: "Male",
  23929. image: {
  23930. source: "./media/characters/joraxian/male.svg",
  23931. extra: 2877 / 2721,
  23932. bottom: 82 / 2967
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Macro",
  23939. height: math.unit(26.15, "meters"),
  23940. default: true
  23941. },
  23942. ]
  23943. ))
  23944. characterMakers.push(() => makeCharacter(
  23945. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23946. {
  23947. female: {
  23948. height: math.unit(21.6, "m"),
  23949. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23950. name: "Female",
  23951. image: {
  23952. source: "./media/characters/sthara/female.svg",
  23953. extra: 2516 / 2347,
  23954. bottom: 21.5 / 2537
  23955. }
  23956. },
  23957. male: {
  23958. height: math.unit(24, "m"),
  23959. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23960. name: "Male",
  23961. image: {
  23962. source: "./media/characters/sthara/male.svg",
  23963. extra: 2732 / 2607,
  23964. bottom: 23 / 2732
  23965. }
  23966. },
  23967. },
  23968. [
  23969. {
  23970. name: "Macro",
  23971. height: math.unit(21.6, "meters"),
  23972. default: true
  23973. },
  23974. ]
  23975. ))
  23976. characterMakers.push(() => makeCharacter(
  23977. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  23978. {
  23979. front: {
  23980. height: math.unit(6 + 4 / 12, "feet"),
  23981. weight: math.unit(175, "lb"),
  23982. name: "Front",
  23983. image: {
  23984. source: "./media/characters/luka-bryzant/front.svg",
  23985. extra: 311 / 289,
  23986. bottom: 4 / 315
  23987. }
  23988. },
  23989. back: {
  23990. height: math.unit(6 + 4 / 12, "feet"),
  23991. weight: math.unit(175, "lb"),
  23992. name: "Back",
  23993. image: {
  23994. source: "./media/characters/luka-bryzant/back.svg",
  23995. extra: 311 / 289,
  23996. bottom: 3.8 / 313.7
  23997. }
  23998. },
  23999. },
  24000. [
  24001. {
  24002. name: "Micro",
  24003. height: math.unit(10, "inches")
  24004. },
  24005. {
  24006. name: "Normal",
  24007. height: math.unit(6 + 4 / 12, "feet"),
  24008. default: true
  24009. },
  24010. {
  24011. name: "Large",
  24012. height: math.unit(12, "feet")
  24013. },
  24014. ]
  24015. ))
  24016. characterMakers.push(() => makeCharacter(
  24017. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24018. {
  24019. front: {
  24020. height: math.unit(5 + 7 / 12, "feet"),
  24021. weight: math.unit(185, "lb"),
  24022. name: "Front",
  24023. image: {
  24024. source: "./media/characters/aman-aquila/front.svg",
  24025. extra: 1013 / 976,
  24026. bottom: 45.6 / 1057
  24027. }
  24028. },
  24029. side: {
  24030. height: math.unit(5 + 7 / 12, "feet"),
  24031. weight: math.unit(185, "lb"),
  24032. name: "Side",
  24033. image: {
  24034. source: "./media/characters/aman-aquila/side.svg",
  24035. extra: 1054 / 1011,
  24036. bottom: 15 / 1070
  24037. }
  24038. },
  24039. back: {
  24040. height: math.unit(5 + 7 / 12, "feet"),
  24041. weight: math.unit(185, "lb"),
  24042. name: "Back",
  24043. image: {
  24044. source: "./media/characters/aman-aquila/back.svg",
  24045. extra: 1026 / 970,
  24046. bottom: 12 / 1039
  24047. }
  24048. },
  24049. head: {
  24050. height: math.unit(1.211, "feet"),
  24051. name: "Head",
  24052. image: {
  24053. source: "./media/characters/aman-aquila/head.svg",
  24054. }
  24055. },
  24056. },
  24057. [
  24058. {
  24059. name: "Minimicro",
  24060. height: math.unit(0.057, "inches")
  24061. },
  24062. {
  24063. name: "Micro",
  24064. height: math.unit(7, "inches")
  24065. },
  24066. {
  24067. name: "Mini",
  24068. height: math.unit(3 + 7 / 12, "feet")
  24069. },
  24070. {
  24071. name: "Normal",
  24072. height: math.unit(5 + 7 / 12, "feet"),
  24073. default: true
  24074. },
  24075. {
  24076. name: "Macro",
  24077. height: math.unit(157 + 7 / 12, "feet")
  24078. },
  24079. {
  24080. name: "Megamacro",
  24081. height: math.unit(1557 + 7 / 12, "feet")
  24082. },
  24083. {
  24084. name: "Gigamacro",
  24085. height: math.unit(15557 + 7 / 12, "feet")
  24086. },
  24087. ]
  24088. ))
  24089. characterMakers.push(() => makeCharacter(
  24090. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24091. {
  24092. front: {
  24093. height: math.unit(3 + 2 / 12, "inches"),
  24094. weight: math.unit(0.3, "ounces"),
  24095. name: "Front",
  24096. image: {
  24097. source: "./media/characters/hiphae/front.svg",
  24098. extra: 1931 / 1683,
  24099. bottom: 24 / 1955
  24100. }
  24101. },
  24102. },
  24103. [
  24104. {
  24105. name: "Normal",
  24106. height: math.unit(3 + 1 / 2, "inches"),
  24107. default: true
  24108. },
  24109. ]
  24110. ))
  24111. characterMakers.push(() => makeCharacter(
  24112. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24113. {
  24114. front: {
  24115. height: math.unit(5 + 10 / 12, "feet"),
  24116. weight: math.unit(165, "lb"),
  24117. name: "Front",
  24118. image: {
  24119. source: "./media/characters/nicky/front.svg",
  24120. extra: 3144 / 2886,
  24121. bottom: 45.6 / 3192
  24122. }
  24123. },
  24124. back: {
  24125. height: math.unit(5 + 10 / 12, "feet"),
  24126. weight: math.unit(165, "lb"),
  24127. name: "Back",
  24128. image: {
  24129. source: "./media/characters/nicky/back.svg",
  24130. extra: 3055 / 2804,
  24131. bottom: 28.4 / 3087
  24132. }
  24133. },
  24134. frontclothed: {
  24135. height: math.unit(5 + 10 / 12, "feet"),
  24136. weight: math.unit(165, "lb"),
  24137. name: "Front-clothed",
  24138. image: {
  24139. source: "./media/characters/nicky/front-clothed.svg",
  24140. extra: 3184.9 / 2926.9,
  24141. bottom: 86.5 / 3239.9
  24142. }
  24143. },
  24144. foot: {
  24145. height: math.unit(1.16, "feet"),
  24146. name: "Foot",
  24147. image: {
  24148. source: "./media/characters/nicky/foot.svg"
  24149. }
  24150. },
  24151. feet: {
  24152. height: math.unit(1.34, "feet"),
  24153. name: "Feet",
  24154. image: {
  24155. source: "./media/characters/nicky/feet.svg"
  24156. }
  24157. },
  24158. maw: {
  24159. height: math.unit(0.9, "feet"),
  24160. name: "Maw",
  24161. image: {
  24162. source: "./media/characters/nicky/maw.svg"
  24163. }
  24164. },
  24165. },
  24166. [
  24167. {
  24168. name: "Normal",
  24169. height: math.unit(5 + 10 / 12, "feet"),
  24170. default: true
  24171. },
  24172. {
  24173. name: "Macro",
  24174. height: math.unit(60, "feet")
  24175. },
  24176. {
  24177. name: "Megamacro",
  24178. height: math.unit(1, "mile")
  24179. },
  24180. ]
  24181. ))
  24182. characterMakers.push(() => makeCharacter(
  24183. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24184. {
  24185. side: {
  24186. height: math.unit(10, "feet"),
  24187. weight: math.unit(600, "lb"),
  24188. name: "Side",
  24189. image: {
  24190. source: "./media/characters/blair/side.svg",
  24191. bottom: 16.6 / 475,
  24192. extra: 458 / 431
  24193. }
  24194. },
  24195. },
  24196. [
  24197. {
  24198. name: "Micro",
  24199. height: math.unit(8, "inches")
  24200. },
  24201. {
  24202. name: "Normal",
  24203. height: math.unit(10, "feet"),
  24204. default: true
  24205. },
  24206. {
  24207. name: "Macro",
  24208. height: math.unit(180, "feet")
  24209. },
  24210. ]
  24211. ))
  24212. characterMakers.push(() => makeCharacter(
  24213. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24214. {
  24215. front: {
  24216. height: math.unit(5 + 4 / 12, "feet"),
  24217. weight: math.unit(125, "lb"),
  24218. name: "Front",
  24219. image: {
  24220. source: "./media/characters/fisher/front.svg",
  24221. extra: 444 / 390,
  24222. bottom: 2 / 444.8
  24223. }
  24224. },
  24225. },
  24226. [
  24227. {
  24228. name: "Micro",
  24229. height: math.unit(4, "inches")
  24230. },
  24231. {
  24232. name: "Normal",
  24233. height: math.unit(5 + 4 / 12, "feet"),
  24234. default: true
  24235. },
  24236. {
  24237. name: "Macro",
  24238. height: math.unit(100, "feet")
  24239. },
  24240. ]
  24241. ))
  24242. characterMakers.push(() => makeCharacter(
  24243. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24244. {
  24245. front: {
  24246. height: math.unit(6.71, "feet"),
  24247. weight: math.unit(200, "lb"),
  24248. capacity: math.unit(1000000, "people"),
  24249. name: "Front",
  24250. image: {
  24251. source: "./media/characters/gliss/front.svg",
  24252. extra: 2347 / 2231,
  24253. bottom: 113 / 2462
  24254. }
  24255. },
  24256. hammerspaceSize: {
  24257. height: math.unit(6.71 * 717, "feet"),
  24258. weight: math.unit(200, "lb"),
  24259. capacity: math.unit(1000000, "people"),
  24260. name: "Hammerspace Size",
  24261. image: {
  24262. source: "./media/characters/gliss/front.svg",
  24263. extra: 2347 / 2231,
  24264. bottom: 113 / 2462
  24265. }
  24266. },
  24267. },
  24268. [
  24269. {
  24270. name: "Normal",
  24271. height: math.unit(6.71, "feet"),
  24272. default: true
  24273. },
  24274. ]
  24275. ))
  24276. characterMakers.push(() => makeCharacter(
  24277. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24278. {
  24279. side: {
  24280. height: math.unit(1.44, "m"),
  24281. weight: math.unit(80, "kg"),
  24282. name: "Side",
  24283. image: {
  24284. source: "./media/characters/dune-anderson/side.svg",
  24285. bottom: 49 / 1426
  24286. }
  24287. },
  24288. },
  24289. [
  24290. {
  24291. name: "Wolf-sized",
  24292. height: math.unit(1.44, "meters")
  24293. },
  24294. {
  24295. name: "Normal",
  24296. height: math.unit(5.05, "meters"),
  24297. default: true
  24298. },
  24299. {
  24300. name: "Big",
  24301. height: math.unit(14.4, "meters")
  24302. },
  24303. {
  24304. name: "Huge",
  24305. height: math.unit(144, "meters")
  24306. },
  24307. ]
  24308. ))
  24309. characterMakers.push(() => makeCharacter(
  24310. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24311. {
  24312. front: {
  24313. height: math.unit(7, "feet"),
  24314. weight: math.unit(425, "lb"),
  24315. name: "Front",
  24316. image: {
  24317. source: "./media/characters/hind/front.svg",
  24318. extra: 2091 / 1860,
  24319. bottom: 129 / 2220
  24320. }
  24321. },
  24322. back: {
  24323. height: math.unit(7, "feet"),
  24324. weight: math.unit(425, "lb"),
  24325. name: "Back",
  24326. image: {
  24327. source: "./media/characters/hind/back.svg",
  24328. extra: 2091 / 1860,
  24329. bottom: 24.6 / 2309
  24330. }
  24331. },
  24332. tail: {
  24333. height: math.unit(2.8, "feet"),
  24334. name: "Tail",
  24335. image: {
  24336. source: "./media/characters/hind/tail.svg"
  24337. }
  24338. },
  24339. head: {
  24340. height: math.unit(2.55, "feet"),
  24341. name: "Head",
  24342. image: {
  24343. source: "./media/characters/hind/head.svg"
  24344. }
  24345. },
  24346. },
  24347. [
  24348. {
  24349. name: "XS",
  24350. height: math.unit(0.7, "feet")
  24351. },
  24352. {
  24353. name: "Normal",
  24354. height: math.unit(7, "feet"),
  24355. default: true
  24356. },
  24357. {
  24358. name: "XL",
  24359. height: math.unit(70, "feet")
  24360. },
  24361. ]
  24362. ))
  24363. characterMakers.push(() => makeCharacter(
  24364. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24365. {
  24366. front: {
  24367. height: math.unit(6, "feet"),
  24368. weight: math.unit(150, "lb"),
  24369. name: "Front",
  24370. image: {
  24371. source: "./media/characters/dylan-skaven/front.svg",
  24372. extra: 2318 / 2063,
  24373. bottom: 93.4 / 2410
  24374. }
  24375. },
  24376. },
  24377. [
  24378. {
  24379. name: "Nano",
  24380. height: math.unit(1, "mm")
  24381. },
  24382. {
  24383. name: "Micro",
  24384. height: math.unit(1, "cm")
  24385. },
  24386. {
  24387. name: "Normal",
  24388. height: math.unit(2.1, "meters"),
  24389. default: true
  24390. },
  24391. ]
  24392. ))
  24393. characterMakers.push(() => makeCharacter(
  24394. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24395. {
  24396. front: {
  24397. height: math.unit(7 + 5 / 12, "feet"),
  24398. weight: math.unit(357, "lb"),
  24399. name: "Front",
  24400. image: {
  24401. source: "./media/characters/solex-draconov/front.svg",
  24402. extra: 1993 / 1865,
  24403. bottom: 117 / 2111
  24404. }
  24405. },
  24406. },
  24407. [
  24408. {
  24409. name: "Natural Height",
  24410. height: math.unit(7 + 5 / 12, "feet"),
  24411. default: true
  24412. },
  24413. {
  24414. name: "Macro",
  24415. height: math.unit(350, "feet")
  24416. },
  24417. {
  24418. name: "Macro+",
  24419. height: math.unit(1000, "feet")
  24420. },
  24421. {
  24422. name: "Megamacro",
  24423. height: math.unit(20, "km")
  24424. },
  24425. {
  24426. name: "Megamacro+",
  24427. height: math.unit(1000, "km")
  24428. },
  24429. {
  24430. name: "Gigamacro",
  24431. height: math.unit(2.5, "Gm")
  24432. },
  24433. {
  24434. name: "Teramacro",
  24435. height: math.unit(15, "Tm")
  24436. },
  24437. {
  24438. name: "Galactic",
  24439. height: math.unit(30, "Zm")
  24440. },
  24441. {
  24442. name: "Universal",
  24443. height: math.unit(21000, "Ym")
  24444. },
  24445. {
  24446. name: "Omniversal",
  24447. height: math.unit(9.861e50, "Ym")
  24448. },
  24449. {
  24450. name: "Existential",
  24451. height: math.unit(1e300, "meters")
  24452. },
  24453. ]
  24454. ))
  24455. characterMakers.push(() => makeCharacter(
  24456. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24457. {
  24458. side: {
  24459. height: math.unit(25, "feet"),
  24460. weight: math.unit(90000, "lb"),
  24461. name: "Side",
  24462. image: {
  24463. source: "./media/characters/mandarax/side.svg",
  24464. extra: 614 / 332,
  24465. bottom: 55 / 630
  24466. }
  24467. },
  24468. head: {
  24469. height: math.unit(11.4, "feet"),
  24470. name: "Head",
  24471. image: {
  24472. source: "./media/characters/mandarax/head.svg"
  24473. }
  24474. },
  24475. belly: {
  24476. height: math.unit(33, "feet"),
  24477. name: "Belly",
  24478. capacity: math.unit(500, "people"),
  24479. image: {
  24480. source: "./media/characters/mandarax/belly.svg"
  24481. }
  24482. },
  24483. dick: {
  24484. height: math.unit(8.46, "feet"),
  24485. name: "Dick",
  24486. image: {
  24487. source: "./media/characters/mandarax/dick.svg"
  24488. }
  24489. },
  24490. top: {
  24491. height: math.unit(28, "meters"),
  24492. name: "Top",
  24493. image: {
  24494. source: "./media/characters/mandarax/top.svg"
  24495. }
  24496. },
  24497. },
  24498. [
  24499. {
  24500. name: "Normal",
  24501. height: math.unit(25, "feet"),
  24502. default: true
  24503. },
  24504. ]
  24505. ))
  24506. characterMakers.push(() => makeCharacter(
  24507. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24508. {
  24509. front: {
  24510. height: math.unit(5, "feet"),
  24511. weight: math.unit(90, "lb"),
  24512. name: "Front",
  24513. image: {
  24514. source: "./media/characters/pixil/front.svg",
  24515. extra: 2000 / 1618,
  24516. bottom: 12.3 / 2011
  24517. }
  24518. },
  24519. },
  24520. [
  24521. {
  24522. name: "Normal",
  24523. height: math.unit(5, "feet"),
  24524. default: true
  24525. },
  24526. {
  24527. name: "Megamacro",
  24528. height: math.unit(10, "miles"),
  24529. },
  24530. ]
  24531. ))
  24532. characterMakers.push(() => makeCharacter(
  24533. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24534. {
  24535. front: {
  24536. height: math.unit(7 + 2 / 12, "feet"),
  24537. weight: math.unit(200, "lb"),
  24538. name: "Front",
  24539. image: {
  24540. source: "./media/characters/angel/front.svg",
  24541. extra: 1830 / 1737,
  24542. bottom: 22.6 / 1854,
  24543. }
  24544. },
  24545. },
  24546. [
  24547. {
  24548. name: "Normal",
  24549. height: math.unit(7 + 2 / 12, "feet"),
  24550. default: true
  24551. },
  24552. {
  24553. name: "Macro",
  24554. height: math.unit(1000, "feet")
  24555. },
  24556. {
  24557. name: "Megamacro",
  24558. height: math.unit(2, "miles")
  24559. },
  24560. {
  24561. name: "Gigamacro",
  24562. height: math.unit(20, "earths")
  24563. },
  24564. ]
  24565. ))
  24566. characterMakers.push(() => makeCharacter(
  24567. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24568. {
  24569. front: {
  24570. height: math.unit(5, "feet"),
  24571. weight: math.unit(180, "lb"),
  24572. name: "Front",
  24573. image: {
  24574. source: "./media/characters/mekana/front.svg",
  24575. extra: 1671 / 1605,
  24576. bottom: 3.5 / 1691
  24577. }
  24578. },
  24579. side: {
  24580. height: math.unit(5, "feet"),
  24581. weight: math.unit(180, "lb"),
  24582. name: "Side",
  24583. image: {
  24584. source: "./media/characters/mekana/side.svg",
  24585. extra: 1671 / 1605,
  24586. bottom: 3.5 / 1691
  24587. }
  24588. },
  24589. back: {
  24590. height: math.unit(5, "feet"),
  24591. weight: math.unit(180, "lb"),
  24592. name: "Back",
  24593. image: {
  24594. source: "./media/characters/mekana/back.svg",
  24595. extra: 1671 / 1605,
  24596. bottom: 3.5 / 1691
  24597. }
  24598. },
  24599. },
  24600. [
  24601. {
  24602. name: "Normal",
  24603. height: math.unit(5, "feet"),
  24604. default: true
  24605. },
  24606. ]
  24607. ))
  24608. characterMakers.push(() => makeCharacter(
  24609. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24610. {
  24611. front: {
  24612. height: math.unit(4 + 6 / 12, "feet"),
  24613. weight: math.unit(80, "lb"),
  24614. name: "Front",
  24615. image: {
  24616. source: "./media/characters/pixie/front.svg",
  24617. extra: 1924 / 1825,
  24618. bottom: 22.4 / 1946
  24619. }
  24620. },
  24621. },
  24622. [
  24623. {
  24624. name: "Normal",
  24625. height: math.unit(4 + 6 / 12, "feet"),
  24626. default: true
  24627. },
  24628. {
  24629. name: "Macro",
  24630. height: math.unit(40, "feet")
  24631. },
  24632. ]
  24633. ))
  24634. characterMakers.push(() => makeCharacter(
  24635. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24636. {
  24637. front: {
  24638. height: math.unit(2.1, "meters"),
  24639. weight: math.unit(200, "lb"),
  24640. name: "Front",
  24641. image: {
  24642. source: "./media/characters/the-lascivious/front.svg",
  24643. extra: 1 / 0.893,
  24644. bottom: 3.5 / 573.7
  24645. }
  24646. },
  24647. },
  24648. [
  24649. {
  24650. name: "Human Scale",
  24651. height: math.unit(2.1, "meters")
  24652. },
  24653. {
  24654. name: "Wolxi Scale",
  24655. height: math.unit(46.2, "m"),
  24656. default: true
  24657. },
  24658. {
  24659. name: "Boinker of Buildings",
  24660. height: math.unit(10, "km")
  24661. },
  24662. {
  24663. name: "Shagger of Skyscrapers",
  24664. height: math.unit(40, "km")
  24665. },
  24666. {
  24667. name: "Banger of Boroughs",
  24668. height: math.unit(4000, "km")
  24669. },
  24670. {
  24671. name: "Screwer of States",
  24672. height: math.unit(100000, "km")
  24673. },
  24674. {
  24675. name: "Pounder of Planets",
  24676. height: math.unit(2000000, "km")
  24677. },
  24678. ]
  24679. ))
  24680. characterMakers.push(() => makeCharacter(
  24681. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24682. {
  24683. front: {
  24684. height: math.unit(6, "feet"),
  24685. weight: math.unit(150, "lb"),
  24686. name: "Front",
  24687. image: {
  24688. source: "./media/characters/aj/front.svg",
  24689. extra: 2039 / 1562,
  24690. bottom: 40 / 2079
  24691. }
  24692. },
  24693. },
  24694. [
  24695. {
  24696. name: "Normal",
  24697. height: math.unit(11 + 6 / 12, "feet"),
  24698. default: true
  24699. },
  24700. {
  24701. name: "Megamacro",
  24702. height: math.unit(60, "megameters")
  24703. },
  24704. ]
  24705. ))
  24706. characterMakers.push(() => makeCharacter(
  24707. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24708. {
  24709. side: {
  24710. height: math.unit(31 + 8 / 12, "feet"),
  24711. weight: math.unit(75000, "kg"),
  24712. name: "Side",
  24713. image: {
  24714. source: "./media/characters/koros/side.svg",
  24715. extra: 1442 / 1297,
  24716. bottom: 122.7 / 1562
  24717. }
  24718. },
  24719. dicksKingsCrown: {
  24720. height: math.unit(6, "feet"),
  24721. name: "Dicks (King's Crown)",
  24722. image: {
  24723. source: "./media/characters/koros/dicks-kings-crown.svg"
  24724. }
  24725. },
  24726. dicksTailSet: {
  24727. height: math.unit(3, "feet"),
  24728. name: "Dicks (Tail Set)",
  24729. image: {
  24730. source: "./media/characters/koros/dicks-tail-set.svg"
  24731. }
  24732. },
  24733. dickCumming: {
  24734. height: math.unit(7.98, "feet"),
  24735. name: "Dick (Cumming)",
  24736. image: {
  24737. source: "./media/characters/koros/dick-cumming.svg"
  24738. }
  24739. },
  24740. dicksBack: {
  24741. height: math.unit(5.9, "feet"),
  24742. name: "Dicks (Back)",
  24743. image: {
  24744. source: "./media/characters/koros/dicks-back.svg"
  24745. }
  24746. },
  24747. dicksFront: {
  24748. height: math.unit(3.72, "feet"),
  24749. name: "Dicks (Front)",
  24750. image: {
  24751. source: "./media/characters/koros/dicks-front.svg"
  24752. }
  24753. },
  24754. dicksPeeking: {
  24755. height: math.unit(3.0, "feet"),
  24756. name: "Dicks (Peeking)",
  24757. image: {
  24758. source: "./media/characters/koros/dicks-peeking.svg"
  24759. }
  24760. },
  24761. eye: {
  24762. height: math.unit(1.7, "feet"),
  24763. name: "Eye",
  24764. image: {
  24765. source: "./media/characters/koros/eye.svg"
  24766. }
  24767. },
  24768. headFront: {
  24769. height: math.unit(11.69, "feet"),
  24770. name: "Head (Front)",
  24771. image: {
  24772. source: "./media/characters/koros/head-front.svg"
  24773. }
  24774. },
  24775. headSide: {
  24776. height: math.unit(14, "feet"),
  24777. name: "Head (Side)",
  24778. image: {
  24779. source: "./media/characters/koros/head-side.svg"
  24780. }
  24781. },
  24782. leg: {
  24783. height: math.unit(17, "feet"),
  24784. name: "Leg",
  24785. image: {
  24786. source: "./media/characters/koros/leg.svg"
  24787. }
  24788. },
  24789. mawSide: {
  24790. height: math.unit(12.8, "feet"),
  24791. name: "Maw (Side)",
  24792. image: {
  24793. source: "./media/characters/koros/maw-side.svg"
  24794. }
  24795. },
  24796. mawSpitting: {
  24797. height: math.unit(17, "feet"),
  24798. name: "Maw (Spitting)",
  24799. image: {
  24800. source: "./media/characters/koros/maw-spitting.svg"
  24801. }
  24802. },
  24803. slit: {
  24804. height: math.unit(2.8, "feet"),
  24805. name: "Slit",
  24806. image: {
  24807. source: "./media/characters/koros/slit.svg"
  24808. }
  24809. },
  24810. stomach: {
  24811. height: math.unit(6.8, "feet"),
  24812. capacity: math.unit(20, "people"),
  24813. name: "Stomach",
  24814. image: {
  24815. source: "./media/characters/koros/stomach.svg"
  24816. }
  24817. },
  24818. wingspanBottom: {
  24819. height: math.unit(114, "feet"),
  24820. name: "Wingspan (Bottom)",
  24821. image: {
  24822. source: "./media/characters/koros/wingspan-bottom.svg"
  24823. }
  24824. },
  24825. wingspanTop: {
  24826. height: math.unit(104, "feet"),
  24827. name: "Wingspan (Top)",
  24828. image: {
  24829. source: "./media/characters/koros/wingspan-top.svg"
  24830. }
  24831. },
  24832. },
  24833. [
  24834. {
  24835. name: "Normal",
  24836. height: math.unit(31 + 8 / 12, "feet"),
  24837. default: true
  24838. },
  24839. ]
  24840. ))
  24841. characterMakers.push(() => makeCharacter(
  24842. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24843. {
  24844. front: {
  24845. height: math.unit(18 + 5 / 12, "feet"),
  24846. weight: math.unit(3750, "kg"),
  24847. name: "Front",
  24848. image: {
  24849. source: "./media/characters/vexx/front.svg",
  24850. extra: 426 / 396,
  24851. bottom: 31.5 / 458
  24852. }
  24853. },
  24854. maw: {
  24855. height: math.unit(6, "feet"),
  24856. name: "Maw",
  24857. image: {
  24858. source: "./media/characters/vexx/maw.svg"
  24859. }
  24860. },
  24861. },
  24862. [
  24863. {
  24864. name: "Normal",
  24865. height: math.unit(18 + 5 / 12, "feet"),
  24866. default: true
  24867. },
  24868. ]
  24869. ))
  24870. characterMakers.push(() => makeCharacter(
  24871. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24872. {
  24873. front: {
  24874. height: math.unit(17 + 6 / 12, "feet"),
  24875. weight: math.unit(150, "lb"),
  24876. name: "Front",
  24877. image: {
  24878. source: "./media/characters/baadra/front.svg",
  24879. extra: 3137 / 2890,
  24880. bottom: 168.4 / 3305
  24881. }
  24882. },
  24883. back: {
  24884. height: math.unit(17 + 6 / 12, "feet"),
  24885. weight: math.unit(150, "lb"),
  24886. name: "Back",
  24887. image: {
  24888. source: "./media/characters/baadra/back.svg",
  24889. extra: 3142 / 2890,
  24890. bottom: 220 / 3371
  24891. }
  24892. },
  24893. head: {
  24894. height: math.unit(5.45, "feet"),
  24895. name: "Head",
  24896. image: {
  24897. source: "./media/characters/baadra/head.svg"
  24898. }
  24899. },
  24900. headAngry: {
  24901. height: math.unit(4.95, "feet"),
  24902. name: "Head (Angry)",
  24903. image: {
  24904. source: "./media/characters/baadra/head-angry.svg"
  24905. }
  24906. },
  24907. headOpen: {
  24908. height: math.unit(6, "feet"),
  24909. name: "Head (Open)",
  24910. image: {
  24911. source: "./media/characters/baadra/head-open.svg"
  24912. }
  24913. },
  24914. },
  24915. [
  24916. {
  24917. name: "Normal",
  24918. height: math.unit(17 + 6 / 12, "feet"),
  24919. default: true
  24920. },
  24921. ]
  24922. ))
  24923. characterMakers.push(() => makeCharacter(
  24924. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24925. {
  24926. front: {
  24927. height: math.unit(7 + 3 / 12, "feet"),
  24928. weight: math.unit(180, "lb"),
  24929. name: "Front",
  24930. image: {
  24931. source: "./media/characters/juri/front.svg",
  24932. extra: 1401 / 1237,
  24933. bottom: 18.5 / 1418
  24934. }
  24935. },
  24936. side: {
  24937. height: math.unit(7 + 3 / 12, "feet"),
  24938. weight: math.unit(180, "lb"),
  24939. name: "Side",
  24940. image: {
  24941. source: "./media/characters/juri/side.svg",
  24942. extra: 1424 / 1242,
  24943. bottom: 18.5 / 1447
  24944. }
  24945. },
  24946. sitting: {
  24947. height: math.unit(6, "feet"),
  24948. weight: math.unit(180, "lb"),
  24949. name: "Sitting",
  24950. image: {
  24951. source: "./media/characters/juri/sitting.svg",
  24952. extra: 1270 / 1143,
  24953. bottom: 100 / 1343
  24954. }
  24955. },
  24956. back: {
  24957. height: math.unit(7 + 3 / 12, "feet"),
  24958. weight: math.unit(180, "lb"),
  24959. name: "Back",
  24960. image: {
  24961. source: "./media/characters/juri/back.svg",
  24962. extra: 1377 / 1240,
  24963. bottom: 23.7 / 1405
  24964. }
  24965. },
  24966. maw: {
  24967. height: math.unit(2.8, "feet"),
  24968. name: "Maw",
  24969. image: {
  24970. source: "./media/characters/juri/maw.svg"
  24971. }
  24972. },
  24973. stomach: {
  24974. height: math.unit(0.89, "feet"),
  24975. capacity: math.unit(4, "liters"),
  24976. name: "Stomach",
  24977. image: {
  24978. source: "./media/characters/juri/stomach.svg"
  24979. }
  24980. },
  24981. },
  24982. [
  24983. {
  24984. name: "Normal",
  24985. height: math.unit(7 + 3 / 12, "feet"),
  24986. default: true
  24987. },
  24988. ]
  24989. ))
  24990. characterMakers.push(() => makeCharacter(
  24991. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  24992. {
  24993. fox: {
  24994. height: math.unit(5 + 6 / 12, "feet"),
  24995. weight: math.unit(140, "lb"),
  24996. name: "Fox",
  24997. image: {
  24998. source: "./media/characters/maxene-sita/fox.svg",
  24999. extra: 146 / 138,
  25000. bottom: 2.1 / 148.19
  25001. }
  25002. },
  25003. foxLaying: {
  25004. height: math.unit(1.70, "feet"),
  25005. weight: math.unit(140, "lb"),
  25006. name: "Fox (Laying)",
  25007. image: {
  25008. source: "./media/characters/maxene-sita/fox-laying.svg",
  25009. extra: 910 / 572,
  25010. bottom: 71 / 981
  25011. }
  25012. },
  25013. kitsune: {
  25014. height: math.unit(10, "feet"),
  25015. weight: math.unit(800, "lb"),
  25016. name: "Kitsune",
  25017. image: {
  25018. source: "./media/characters/maxene-sita/kitsune.svg",
  25019. extra: 185 / 176,
  25020. bottom: 4.7 / 189.9
  25021. }
  25022. },
  25023. hellhound: {
  25024. height: math.unit(10, "feet"),
  25025. weight: math.unit(700, "lb"),
  25026. name: "Hellhound",
  25027. image: {
  25028. source: "./media/characters/maxene-sita/hellhound.svg",
  25029. extra: 1600 / 1545,
  25030. bottom: 81 / 1681
  25031. }
  25032. },
  25033. },
  25034. [
  25035. {
  25036. name: "Normal",
  25037. height: math.unit(5 + 6 / 12, "feet"),
  25038. default: true
  25039. },
  25040. ]
  25041. ))
  25042. characterMakers.push(() => makeCharacter(
  25043. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25044. {
  25045. front: {
  25046. height: math.unit(3 + 4 / 12, "feet"),
  25047. weight: math.unit(70, "lb"),
  25048. name: "Front",
  25049. image: {
  25050. source: "./media/characters/maia/front.svg",
  25051. extra: 227 / 219.5,
  25052. bottom: 40 / 267
  25053. }
  25054. },
  25055. back: {
  25056. height: math.unit(3 + 4 / 12, "feet"),
  25057. weight: math.unit(70, "lb"),
  25058. name: "Back",
  25059. image: {
  25060. source: "./media/characters/maia/back.svg",
  25061. extra: 237 / 225
  25062. }
  25063. },
  25064. },
  25065. [
  25066. {
  25067. name: "Normal",
  25068. height: math.unit(3 + 4 / 12, "feet"),
  25069. default: true
  25070. },
  25071. ]
  25072. ))
  25073. characterMakers.push(() => makeCharacter(
  25074. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25075. {
  25076. front: {
  25077. height: math.unit(5 + 10 / 12, "feet"),
  25078. weight: math.unit(197, "lb"),
  25079. name: "Front",
  25080. image: {
  25081. source: "./media/characters/jabaro/front.svg",
  25082. extra: 225 / 216,
  25083. bottom: 5.06 / 230
  25084. }
  25085. },
  25086. back: {
  25087. height: math.unit(5 + 10 / 12, "feet"),
  25088. weight: math.unit(197, "lb"),
  25089. name: "Back",
  25090. image: {
  25091. source: "./media/characters/jabaro/back.svg",
  25092. extra: 225 / 219,
  25093. bottom: 1.9 / 227
  25094. }
  25095. },
  25096. },
  25097. [
  25098. {
  25099. name: "Normal",
  25100. height: math.unit(5 + 10 / 12, "feet"),
  25101. default: true
  25102. },
  25103. ]
  25104. ))
  25105. characterMakers.push(() => makeCharacter(
  25106. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25107. {
  25108. front: {
  25109. height: math.unit(5 + 8 / 12, "feet"),
  25110. weight: math.unit(139, "lb"),
  25111. name: "Front",
  25112. image: {
  25113. source: "./media/characters/risa/front.svg",
  25114. extra: 270 / 260,
  25115. bottom: 11.2 / 282
  25116. }
  25117. },
  25118. back: {
  25119. height: math.unit(5 + 8 / 12, "feet"),
  25120. weight: math.unit(139, "lb"),
  25121. name: "Back",
  25122. image: {
  25123. source: "./media/characters/risa/back.svg",
  25124. extra: 264 / 255,
  25125. bottom: 4 / 268
  25126. }
  25127. },
  25128. },
  25129. [
  25130. {
  25131. name: "Normal",
  25132. height: math.unit(5 + 8 / 12, "feet"),
  25133. default: true
  25134. },
  25135. ]
  25136. ))
  25137. characterMakers.push(() => makeCharacter(
  25138. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25139. {
  25140. front: {
  25141. height: math.unit(2 + 11 / 12, "feet"),
  25142. weight: math.unit(30, "lb"),
  25143. name: "Front",
  25144. image: {
  25145. source: "./media/characters/weatley/front.svg",
  25146. bottom: 10.7 / 414,
  25147. extra: 403.5 / 362
  25148. }
  25149. },
  25150. back: {
  25151. height: math.unit(2 + 11 / 12, "feet"),
  25152. weight: math.unit(30, "lb"),
  25153. name: "Back",
  25154. image: {
  25155. source: "./media/characters/weatley/back.svg",
  25156. bottom: 10.7 / 414,
  25157. extra: 403.5 / 362
  25158. }
  25159. },
  25160. },
  25161. [
  25162. {
  25163. name: "Normal",
  25164. height: math.unit(2 + 11 / 12, "feet"),
  25165. default: true
  25166. },
  25167. ]
  25168. ))
  25169. characterMakers.push(() => makeCharacter(
  25170. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25171. {
  25172. front: {
  25173. height: math.unit(5 + 2 / 12, "feet"),
  25174. weight: math.unit(50, "kg"),
  25175. name: "Front",
  25176. image: {
  25177. source: "./media/characters/mercury-crescent/front.svg",
  25178. extra: 1088 / 1033,
  25179. bottom: 18.9 / 1109
  25180. }
  25181. },
  25182. },
  25183. [
  25184. {
  25185. name: "Normal",
  25186. height: math.unit(5 + 2 / 12, "feet"),
  25187. default: true
  25188. },
  25189. ]
  25190. ))
  25191. characterMakers.push(() => makeCharacter(
  25192. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25193. {
  25194. front: {
  25195. height: math.unit(2, "feet"),
  25196. weight: math.unit(15, "kg"),
  25197. name: "Front",
  25198. image: {
  25199. source: "./media/characters/diamond-jones/front.svg",
  25200. bottom: 16 / 568
  25201. }
  25202. },
  25203. },
  25204. [
  25205. {
  25206. name: "Normal",
  25207. height: math.unit(2, "feet"),
  25208. default: true
  25209. },
  25210. ]
  25211. ))
  25212. characterMakers.push(() => makeCharacter(
  25213. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25214. {
  25215. front: {
  25216. height: math.unit(3, "feet"),
  25217. weight: math.unit(30, "kg"),
  25218. name: "Front",
  25219. image: {
  25220. source: "./media/characters/sweet-bit/front.svg",
  25221. extra: 675 / 567,
  25222. bottom: 27.7 / 703
  25223. }
  25224. },
  25225. },
  25226. [
  25227. {
  25228. name: "Normal",
  25229. height: math.unit(3, "feet"),
  25230. default: true
  25231. },
  25232. ]
  25233. ))
  25234. characterMakers.push(() => makeCharacter(
  25235. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25236. {
  25237. side: {
  25238. height: math.unit(9.178, "feet"),
  25239. weight: math.unit(500, "lb"),
  25240. name: "Side",
  25241. image: {
  25242. source: "./media/characters/umbrazen/side.svg",
  25243. extra: 1730 / 1473,
  25244. bottom: 34.6 / 1765
  25245. }
  25246. },
  25247. },
  25248. [
  25249. {
  25250. name: "Normal",
  25251. height: math.unit(9.178, "feet"),
  25252. default: true
  25253. },
  25254. ]
  25255. ))
  25256. characterMakers.push(() => makeCharacter(
  25257. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25258. {
  25259. front: {
  25260. height: math.unit(10, "feet"),
  25261. weight: math.unit(750, "lb"),
  25262. name: "Front",
  25263. image: {
  25264. source: "./media/characters/arlist/front.svg",
  25265. extra: 961 / 778,
  25266. bottom: 6.2 / 986
  25267. }
  25268. },
  25269. },
  25270. [
  25271. {
  25272. name: "Normal",
  25273. height: math.unit(10, "feet"),
  25274. default: true
  25275. },
  25276. ]
  25277. ))
  25278. characterMakers.push(() => makeCharacter(
  25279. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25280. {
  25281. front: {
  25282. height: math.unit(5 + 1 / 12, "feet"),
  25283. weight: math.unit(110, "lb"),
  25284. name: "Front",
  25285. image: {
  25286. source: "./media/characters/aradel/front.svg",
  25287. extra: 324 / 303,
  25288. bottom: 3.6 / 329.4
  25289. }
  25290. },
  25291. },
  25292. [
  25293. {
  25294. name: "Normal",
  25295. height: math.unit(5 + 1 / 12, "feet"),
  25296. default: true
  25297. },
  25298. ]
  25299. ))
  25300. characterMakers.push(() => makeCharacter(
  25301. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25302. {
  25303. front: {
  25304. height: math.unit(3 + 8 / 12, "feet"),
  25305. weight: math.unit(50, "lb"),
  25306. name: "Front",
  25307. image: {
  25308. source: "./media/characters/serryn/front.svg",
  25309. extra: 1792 / 1656,
  25310. bottom: 43.5 / 1840
  25311. }
  25312. },
  25313. },
  25314. [
  25315. {
  25316. name: "Normal",
  25317. height: math.unit(3 + 8 / 12, "feet"),
  25318. default: true
  25319. },
  25320. ]
  25321. ))
  25322. characterMakers.push(() => makeCharacter(
  25323. { name: "Xavier Thyme" },
  25324. {
  25325. front: {
  25326. height: math.unit(7 + 10 / 12, "feet"),
  25327. weight: math.unit(255, "lb"),
  25328. name: "Front",
  25329. image: {
  25330. source: "./media/characters/xavier-thyme/front.svg",
  25331. extra: 3733 / 3642,
  25332. bottom: 131 / 3869
  25333. }
  25334. },
  25335. frontRaven: {
  25336. height: math.unit(7 + 10 / 12, "feet"),
  25337. weight: math.unit(255, "lb"),
  25338. name: "Front (Raven)",
  25339. image: {
  25340. source: "./media/characters/xavier-thyme/front-raven.svg",
  25341. extra: 4385 / 3642,
  25342. bottom: 131 / 4517
  25343. }
  25344. },
  25345. },
  25346. [
  25347. {
  25348. name: "Normal",
  25349. height: math.unit(7 + 10 / 12, "feet"),
  25350. default: true
  25351. },
  25352. ]
  25353. ))
  25354. characterMakers.push(() => makeCharacter(
  25355. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25356. {
  25357. front: {
  25358. height: math.unit(1.6, "m"),
  25359. weight: math.unit(50, "kg"),
  25360. name: "Front",
  25361. image: {
  25362. source: "./media/characters/kiki/front.svg",
  25363. extra: 4682 / 3610,
  25364. bottom: 115 / 4777
  25365. }
  25366. },
  25367. },
  25368. [
  25369. {
  25370. name: "Normal",
  25371. height: math.unit(1.6, "meters"),
  25372. default: true
  25373. },
  25374. ]
  25375. ))
  25376. characterMakers.push(() => makeCharacter(
  25377. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25378. {
  25379. front: {
  25380. height: math.unit(50, "m"),
  25381. weight: math.unit(500, "tonnes"),
  25382. name: "Front",
  25383. image: {
  25384. source: "./media/characters/ryoko/front.svg",
  25385. extra: 4632 / 3926,
  25386. bottom: 193 / 4823
  25387. }
  25388. },
  25389. },
  25390. [
  25391. {
  25392. name: "Normal",
  25393. height: math.unit(50, "meters"),
  25394. default: true
  25395. },
  25396. ]
  25397. ))
  25398. characterMakers.push(() => makeCharacter(
  25399. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25400. {
  25401. front: {
  25402. height: math.unit(30, "m"),
  25403. weight: math.unit(22, "tonnes"),
  25404. name: "Front",
  25405. image: {
  25406. source: "./media/characters/elio/front.svg",
  25407. extra: 4582 / 3720,
  25408. bottom: 236 / 4828
  25409. }
  25410. },
  25411. },
  25412. [
  25413. {
  25414. name: "Normal",
  25415. height: math.unit(30, "meters"),
  25416. default: true
  25417. },
  25418. ]
  25419. ))
  25420. characterMakers.push(() => makeCharacter(
  25421. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25422. {
  25423. front: {
  25424. height: math.unit(6 + 3 / 12, "feet"),
  25425. weight: math.unit(120, "lb"),
  25426. name: "Front",
  25427. image: {
  25428. source: "./media/characters/azura/front.svg",
  25429. extra: 1149 / 1135,
  25430. bottom: 45 / 1194
  25431. }
  25432. },
  25433. frontClothed: {
  25434. height: math.unit(6 + 3 / 12, "feet"),
  25435. weight: math.unit(120, "lb"),
  25436. name: "Front (Clothed)",
  25437. image: {
  25438. source: "./media/characters/azura/front-clothed.svg",
  25439. extra: 1149 / 1135,
  25440. bottom: 45 / 1194
  25441. }
  25442. },
  25443. },
  25444. [
  25445. {
  25446. name: "Normal",
  25447. height: math.unit(6 + 3 / 12, "feet"),
  25448. default: true
  25449. },
  25450. {
  25451. name: "Macro",
  25452. height: math.unit(20 + 6 / 12, "feet")
  25453. },
  25454. {
  25455. name: "Megamacro",
  25456. height: math.unit(12, "miles")
  25457. },
  25458. {
  25459. name: "Gigamacro",
  25460. height: math.unit(10000, "miles")
  25461. },
  25462. {
  25463. name: "Teramacro",
  25464. height: math.unit(900000, "miles")
  25465. },
  25466. ]
  25467. ))
  25468. characterMakers.push(() => makeCharacter(
  25469. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25470. {
  25471. front: {
  25472. height: math.unit(12, "feet"),
  25473. weight: math.unit(1, "ton"),
  25474. capacity: math.unit(660000, "gallons"),
  25475. name: "Front",
  25476. image: {
  25477. source: "./media/characters/zeus/front.svg",
  25478. extra: 5005 / 4717,
  25479. bottom: 363 / 5388
  25480. }
  25481. },
  25482. },
  25483. [
  25484. {
  25485. name: "Normal",
  25486. height: math.unit(12, "feet")
  25487. },
  25488. {
  25489. name: "Preferred Size",
  25490. height: math.unit(0.5, "miles"),
  25491. default: true
  25492. },
  25493. {
  25494. name: "Giga Horse",
  25495. height: math.unit(300, "miles")
  25496. },
  25497. {
  25498. name: "Riding Planets",
  25499. height: math.unit(30, "megameters")
  25500. },
  25501. {
  25502. name: "Cosmic Giant",
  25503. height: math.unit(3, "zettameters")
  25504. },
  25505. {
  25506. name: "Breeding God",
  25507. height: math.unit(9.92e22, "yottameters")
  25508. },
  25509. ]
  25510. ))
  25511. characterMakers.push(() => makeCharacter(
  25512. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25513. {
  25514. side: {
  25515. height: math.unit(9, "feet"),
  25516. weight: math.unit(1500, "kg"),
  25517. name: "Side",
  25518. image: {
  25519. source: "./media/characters/fang/side.svg",
  25520. extra: 924 / 866,
  25521. bottom: 47.5 / 972.3
  25522. }
  25523. },
  25524. },
  25525. [
  25526. {
  25527. name: "Normal",
  25528. height: math.unit(9, "feet"),
  25529. default: true
  25530. },
  25531. {
  25532. name: "Macro",
  25533. height: math.unit(75 + 6 / 12, "feet")
  25534. },
  25535. {
  25536. name: "Teramacro",
  25537. height: math.unit(50000, "miles")
  25538. },
  25539. ]
  25540. ))
  25541. characterMakers.push(() => makeCharacter(
  25542. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25543. {
  25544. front: {
  25545. height: math.unit(10, "feet"),
  25546. weight: math.unit(2, "tons"),
  25547. name: "Front",
  25548. image: {
  25549. source: "./media/characters/rekhit/front.svg",
  25550. extra: 2796 / 2590,
  25551. bottom: 225 / 3022
  25552. }
  25553. },
  25554. },
  25555. [
  25556. {
  25557. name: "Normal",
  25558. height: math.unit(10, "feet"),
  25559. default: true
  25560. },
  25561. {
  25562. name: "Macro",
  25563. height: math.unit(500, "feet")
  25564. },
  25565. ]
  25566. ))
  25567. characterMakers.push(() => makeCharacter(
  25568. { name: "Dahlia Verrick" },
  25569. {
  25570. front: {
  25571. height: math.unit(7 + 6.451 / 12, "feet"),
  25572. weight: math.unit(310, "lb"),
  25573. name: "Front",
  25574. image: {
  25575. source: "./media/characters/dahlia-verrick/front.svg",
  25576. extra: 1488 / 1365,
  25577. bottom: 6.2 / 1495
  25578. }
  25579. },
  25580. back: {
  25581. height: math.unit(7 + 6.451 / 12, "feet"),
  25582. weight: math.unit(310, "lb"),
  25583. name: "Back",
  25584. image: {
  25585. source: "./media/characters/dahlia-verrick/back.svg",
  25586. extra: 1472 / 1351,
  25587. bottom: 5.28 / 1477
  25588. }
  25589. },
  25590. frontBusiness: {
  25591. height: math.unit(7 + 6.451 / 12, "feet"),
  25592. weight: math.unit(200, "lb"),
  25593. name: "Front (Business)",
  25594. image: {
  25595. source: "./media/characters/dahlia-verrick/front-business.svg",
  25596. extra: 1478 / 1381,
  25597. bottom: 5.5 / 1484
  25598. }
  25599. },
  25600. frontCasual: {
  25601. height: math.unit(7 + 6.451 / 12, "feet"),
  25602. weight: math.unit(200, "lb"),
  25603. name: "Front (Casual)",
  25604. image: {
  25605. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25606. extra: 1478 / 1381,
  25607. bottom: 5.5 / 1484
  25608. }
  25609. },
  25610. },
  25611. [
  25612. {
  25613. name: "Travel-Sized",
  25614. height: math.unit(7.45, "inches")
  25615. },
  25616. {
  25617. name: "Normal",
  25618. height: math.unit(7 + 6.451 / 12, "feet"),
  25619. default: true
  25620. },
  25621. {
  25622. name: "Hitting the Town",
  25623. height: math.unit(37 + 8 / 12, "feet")
  25624. },
  25625. {
  25626. name: "Stomp in the Suburbs",
  25627. height: math.unit(964 + 9.728 / 12, "feet")
  25628. },
  25629. {
  25630. name: "Sit on the City",
  25631. height: math.unit(61747 + 10.592 / 12, "feet")
  25632. },
  25633. {
  25634. name: "Glomp the Globe",
  25635. height: math.unit(252919327 + 4.832 / 12, "feet")
  25636. },
  25637. ]
  25638. ))
  25639. characterMakers.push(() => makeCharacter(
  25640. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25641. {
  25642. front: {
  25643. height: math.unit(6 + 4 / 12, "feet"),
  25644. weight: math.unit(320, "lb"),
  25645. name: "Front",
  25646. image: {
  25647. source: "./media/characters/balina-mahigan/front.svg",
  25648. extra: 447 / 428,
  25649. bottom: 18 / 466
  25650. }
  25651. },
  25652. back: {
  25653. height: math.unit(6 + 4 / 12, "feet"),
  25654. weight: math.unit(320, "lb"),
  25655. name: "Back",
  25656. image: {
  25657. source: "./media/characters/balina-mahigan/back.svg",
  25658. extra: 445 / 428,
  25659. bottom: 4.07 / 448
  25660. }
  25661. },
  25662. arm: {
  25663. height: math.unit(1.88, "feet"),
  25664. name: "Arm",
  25665. image: {
  25666. source: "./media/characters/balina-mahigan/arm.svg"
  25667. }
  25668. },
  25669. backPort: {
  25670. height: math.unit(0.685, "feet"),
  25671. name: "Back Port",
  25672. image: {
  25673. source: "./media/characters/balina-mahigan/back-port.svg"
  25674. }
  25675. },
  25676. hoofpaw: {
  25677. height: math.unit(1.41, "feet"),
  25678. name: "Hoofpaw",
  25679. image: {
  25680. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25681. }
  25682. },
  25683. leftHandBack: {
  25684. height: math.unit(0.938, "feet"),
  25685. name: "Left Hand (Back)",
  25686. image: {
  25687. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25688. }
  25689. },
  25690. leftHandFront: {
  25691. height: math.unit(0.938, "feet"),
  25692. name: "Left Hand (Front)",
  25693. image: {
  25694. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25695. }
  25696. },
  25697. rightHandBack: {
  25698. height: math.unit(0.95, "feet"),
  25699. name: "Right Hand (Back)",
  25700. image: {
  25701. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25702. }
  25703. },
  25704. rightHandFront: {
  25705. height: math.unit(0.95, "feet"),
  25706. name: "Right Hand (Front)",
  25707. image: {
  25708. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25709. }
  25710. },
  25711. },
  25712. [
  25713. {
  25714. name: "Normal",
  25715. height: math.unit(6 + 4 / 12, "feet"),
  25716. default: true
  25717. },
  25718. ]
  25719. ))
  25720. characterMakers.push(() => makeCharacter(
  25721. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25722. {
  25723. front: {
  25724. height: math.unit(6, "feet"),
  25725. weight: math.unit(320, "lb"),
  25726. name: "Front",
  25727. image: {
  25728. source: "./media/characters/balina-mejeri/front.svg",
  25729. extra: 517 / 488,
  25730. bottom: 44.2 / 561
  25731. }
  25732. },
  25733. },
  25734. [
  25735. {
  25736. name: "Normal",
  25737. height: math.unit(6 + 4 / 12, "feet")
  25738. },
  25739. {
  25740. name: "Business",
  25741. height: math.unit(155, "feet"),
  25742. default: true
  25743. },
  25744. ]
  25745. ))
  25746. characterMakers.push(() => makeCharacter(
  25747. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25748. {
  25749. kneeling: {
  25750. height: math.unit(6 + 4 / 12, "feet"),
  25751. weight: math.unit(300 * 20, "lb"),
  25752. name: "Kneeling",
  25753. image: {
  25754. source: "./media/characters/balbarian/kneeling.svg",
  25755. extra: 922 / 862,
  25756. bottom: 42.4 / 965
  25757. }
  25758. },
  25759. },
  25760. [
  25761. {
  25762. name: "Normal",
  25763. height: math.unit(6 + 4 / 12, "feet")
  25764. },
  25765. {
  25766. name: "Treasured",
  25767. height: math.unit(18 + 9 / 12, "feet"),
  25768. default: true
  25769. },
  25770. {
  25771. name: "Macro",
  25772. height: math.unit(900, "feet")
  25773. },
  25774. ]
  25775. ))
  25776. characterMakers.push(() => makeCharacter(
  25777. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25778. {
  25779. front: {
  25780. height: math.unit(6 + 4 / 12, "feet"),
  25781. weight: math.unit(325, "lb"),
  25782. name: "Front",
  25783. image: {
  25784. source: "./media/characters/balina-amarini/front.svg",
  25785. extra: 415 / 403,
  25786. bottom: 19 / 433.4
  25787. }
  25788. },
  25789. back: {
  25790. height: math.unit(6 + 4 / 12, "feet"),
  25791. weight: math.unit(325, "lb"),
  25792. name: "Back",
  25793. image: {
  25794. source: "./media/characters/balina-amarini/back.svg",
  25795. extra: 415 / 403,
  25796. bottom: 13.5 / 432
  25797. }
  25798. },
  25799. overdrive: {
  25800. height: math.unit(6 + 4 / 12, "feet"),
  25801. weight: math.unit(400, "lb"),
  25802. name: "Overdrive",
  25803. image: {
  25804. source: "./media/characters/balina-amarini/overdrive.svg",
  25805. extra: 269 / 259,
  25806. bottom: 12 / 282
  25807. }
  25808. },
  25809. },
  25810. [
  25811. {
  25812. name: "Boom",
  25813. height: math.unit(9 + 10 / 12, "feet"),
  25814. default: true
  25815. },
  25816. {
  25817. name: "Macro",
  25818. height: math.unit(280, "feet")
  25819. },
  25820. ]
  25821. ))
  25822. characterMakers.push(() => makeCharacter(
  25823. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25824. {
  25825. goddess: {
  25826. height: math.unit(600, "feet"),
  25827. weight: math.unit(2000000, "tons"),
  25828. name: "Goddess",
  25829. image: {
  25830. source: "./media/characters/lady-kubwa/goddess.svg",
  25831. extra: 1240.5 / 1223,
  25832. bottom: 22 / 1263
  25833. }
  25834. },
  25835. goddesser: {
  25836. height: math.unit(900, "feet"),
  25837. weight: math.unit(20000000, "lb"),
  25838. name: "Goddess-er",
  25839. image: {
  25840. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25841. extra: 899 / 888,
  25842. bottom: 12.6 / 912
  25843. }
  25844. },
  25845. },
  25846. [
  25847. {
  25848. name: "Macro",
  25849. height: math.unit(600, "feet"),
  25850. default: true
  25851. },
  25852. {
  25853. name: "Megamacro",
  25854. height: math.unit(250, "miles")
  25855. },
  25856. ]
  25857. ))
  25858. characterMakers.push(() => makeCharacter(
  25859. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25860. {
  25861. front: {
  25862. height: math.unit(7 + 7 / 12, "feet"),
  25863. weight: math.unit(250, "lb"),
  25864. name: "Front",
  25865. image: {
  25866. source: "./media/characters/tala-grovehorn/front.svg",
  25867. extra: 2636 / 2525,
  25868. bottom: 147 / 2781
  25869. }
  25870. },
  25871. back: {
  25872. height: math.unit(7 + 7 / 12, "feet"),
  25873. weight: math.unit(250, "lb"),
  25874. name: "Back",
  25875. image: {
  25876. source: "./media/characters/tala-grovehorn/back.svg",
  25877. extra: 2635 / 2539,
  25878. bottom: 100 / 2732.8
  25879. }
  25880. },
  25881. mouth: {
  25882. height: math.unit(1.15, "feet"),
  25883. name: "Mouth",
  25884. image: {
  25885. source: "./media/characters/tala-grovehorn/mouth.svg"
  25886. }
  25887. },
  25888. dick: {
  25889. height: math.unit(2.36, "feet"),
  25890. name: "Dick",
  25891. image: {
  25892. source: "./media/characters/tala-grovehorn/dick.svg"
  25893. }
  25894. },
  25895. slit: {
  25896. height: math.unit(0.61, "feet"),
  25897. name: "Slit",
  25898. image: {
  25899. source: "./media/characters/tala-grovehorn/slit.svg"
  25900. }
  25901. },
  25902. },
  25903. [
  25904. ]
  25905. ))
  25906. characterMakers.push(() => makeCharacter(
  25907. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25908. {
  25909. front: {
  25910. height: math.unit(7 + 7 / 12, "feet"),
  25911. weight: math.unit(225, "lb"),
  25912. name: "Front",
  25913. image: {
  25914. source: "./media/characters/epona/front.svg",
  25915. extra: 2445 / 2290,
  25916. bottom: 251 / 2696
  25917. }
  25918. },
  25919. back: {
  25920. height: math.unit(7 + 7 / 12, "feet"),
  25921. weight: math.unit(225, "lb"),
  25922. name: "Back",
  25923. image: {
  25924. source: "./media/characters/epona/back.svg",
  25925. extra: 2546 / 2408,
  25926. bottom: 44 / 2589
  25927. }
  25928. },
  25929. genitals: {
  25930. height: math.unit(1.5, "feet"),
  25931. name: "Genitals",
  25932. image: {
  25933. source: "./media/characters/epona/genitals.svg"
  25934. }
  25935. },
  25936. },
  25937. [
  25938. {
  25939. name: "Normal",
  25940. height: math.unit(7 + 7 / 12, "feet"),
  25941. default: true
  25942. },
  25943. ]
  25944. ))
  25945. characterMakers.push(() => makeCharacter(
  25946. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25947. {
  25948. front: {
  25949. height: math.unit(7, "feet"),
  25950. weight: math.unit(518, "lb"),
  25951. name: "Front",
  25952. image: {
  25953. source: "./media/characters/avia-bloodbourn/front.svg",
  25954. extra: 1466 / 1350,
  25955. bottom: 65 / 1527
  25956. }
  25957. },
  25958. },
  25959. [
  25960. ]
  25961. ))
  25962. characterMakers.push(() => makeCharacter(
  25963. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25964. {
  25965. front: {
  25966. height: math.unit(9.35, "feet"),
  25967. weight: math.unit(600, "lb"),
  25968. name: "Front",
  25969. image: {
  25970. source: "./media/characters/amera/front.svg",
  25971. extra: 891 / 818,
  25972. bottom: 30 / 922.7
  25973. }
  25974. },
  25975. back: {
  25976. height: math.unit(9.35, "feet"),
  25977. weight: math.unit(600, "lb"),
  25978. name: "Back",
  25979. image: {
  25980. source: "./media/characters/amera/back.svg",
  25981. extra: 876 / 824,
  25982. bottom: 6.8 / 884
  25983. }
  25984. },
  25985. dick: {
  25986. height: math.unit(2.14, "feet"),
  25987. name: "Dick",
  25988. image: {
  25989. source: "./media/characters/amera/dick.svg"
  25990. }
  25991. },
  25992. },
  25993. [
  25994. {
  25995. name: "Normal",
  25996. height: math.unit(9.35, "feet"),
  25997. default: true
  25998. },
  25999. ]
  26000. ))
  26001. characterMakers.push(() => makeCharacter(
  26002. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26003. {
  26004. kneeling: {
  26005. height: math.unit(3 + 4 / 12, "feet"),
  26006. weight: math.unit(90, "lb"),
  26007. name: "Kneeling",
  26008. image: {
  26009. source: "./media/characters/rosewen/kneeling.svg",
  26010. extra: 1835 / 1571,
  26011. bottom: 27.7 / 1862
  26012. }
  26013. },
  26014. },
  26015. [
  26016. {
  26017. name: "Normal",
  26018. height: math.unit(3 + 4 / 12, "feet"),
  26019. default: true
  26020. },
  26021. ]
  26022. ))
  26023. characterMakers.push(() => makeCharacter(
  26024. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26025. {
  26026. front: {
  26027. height: math.unit(5 + 10 / 12, "feet"),
  26028. weight: math.unit(200, "lb"),
  26029. name: "Front",
  26030. image: {
  26031. source: "./media/characters/sabah/front.svg",
  26032. extra: 849 / 763,
  26033. bottom: 33.9 / 881
  26034. }
  26035. },
  26036. },
  26037. [
  26038. {
  26039. name: "Normal",
  26040. height: math.unit(5 + 10 / 12, "feet"),
  26041. default: true
  26042. },
  26043. ]
  26044. ))
  26045. characterMakers.push(() => makeCharacter(
  26046. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26047. {
  26048. front: {
  26049. height: math.unit(3 + 5 / 12, "feet"),
  26050. weight: math.unit(40, "kg"),
  26051. name: "Front",
  26052. image: {
  26053. source: "./media/characters/purple-flame/front.svg",
  26054. extra: 1577 / 1412,
  26055. bottom: 97 / 1694
  26056. }
  26057. },
  26058. frontDressed: {
  26059. height: math.unit(3 + 5 / 12, "feet"),
  26060. weight: math.unit(40, "kg"),
  26061. name: "Front (Dressed)",
  26062. image: {
  26063. source: "./media/characters/purple-flame/front-dressed.svg",
  26064. extra: 1577 / 1412,
  26065. bottom: 97 / 1694
  26066. }
  26067. },
  26068. headphones: {
  26069. height: math.unit(0.85, "feet"),
  26070. name: "Headphones",
  26071. image: {
  26072. source: "./media/characters/purple-flame/headphones.svg"
  26073. }
  26074. },
  26075. },
  26076. [
  26077. {
  26078. name: "Really Small",
  26079. height: math.unit(5, "cm")
  26080. },
  26081. {
  26082. name: "Micro",
  26083. height: math.unit(1 + 5 / 12, "feet")
  26084. },
  26085. {
  26086. name: "Normal",
  26087. height: math.unit(3 + 5 / 12, "feet"),
  26088. default: true
  26089. },
  26090. {
  26091. name: "Minimacro",
  26092. height: math.unit(125, "feet")
  26093. },
  26094. {
  26095. name: "Macro",
  26096. height: math.unit(0.5, "miles")
  26097. },
  26098. {
  26099. name: "Megamacro",
  26100. height: math.unit(50, "miles")
  26101. },
  26102. {
  26103. name: "Gigantic",
  26104. height: math.unit(750, "miles")
  26105. },
  26106. {
  26107. name: "Planetary",
  26108. height: math.unit(15000, "miles")
  26109. },
  26110. ]
  26111. ))
  26112. characterMakers.push(() => makeCharacter(
  26113. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26114. {
  26115. front: {
  26116. height: math.unit(14, "feet"),
  26117. weight: math.unit(959, "lb"),
  26118. name: "Front",
  26119. image: {
  26120. source: "./media/characters/arsenal/front.svg",
  26121. extra: 2357 / 2157,
  26122. bottom: 93 / 2458
  26123. }
  26124. },
  26125. },
  26126. [
  26127. {
  26128. name: "Normal",
  26129. height: math.unit(14, "feet"),
  26130. default: true
  26131. },
  26132. ]
  26133. ))
  26134. characterMakers.push(() => makeCharacter(
  26135. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26136. {
  26137. front: {
  26138. height: math.unit(6, "feet"),
  26139. weight: math.unit(150, "lb"),
  26140. name: "Front",
  26141. image: {
  26142. source: "./media/characters/adira/front.svg",
  26143. extra: 1078 / 1029,
  26144. bottom: 87 / 1166
  26145. }
  26146. },
  26147. },
  26148. [
  26149. {
  26150. name: "Micro",
  26151. height: math.unit(4, "inches"),
  26152. default: true
  26153. },
  26154. {
  26155. name: "Macro",
  26156. height: math.unit(50, "feet")
  26157. },
  26158. ]
  26159. ))
  26160. characterMakers.push(() => makeCharacter(
  26161. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26162. {
  26163. front: {
  26164. height: math.unit(16, "feet"),
  26165. weight: math.unit(1000, "lb"),
  26166. name: "Front",
  26167. image: {
  26168. source: "./media/characters/grim/front.svg",
  26169. extra: 622 / 614,
  26170. bottom: 18.1 / 642
  26171. }
  26172. },
  26173. back: {
  26174. height: math.unit(16, "feet"),
  26175. weight: math.unit(1000, "lb"),
  26176. name: "Back",
  26177. image: {
  26178. source: "./media/characters/grim/back.svg",
  26179. extra: 610.6 / 602,
  26180. bottom: 40.8 / 652
  26181. }
  26182. },
  26183. hunched: {
  26184. height: math.unit(9.75, "feet"),
  26185. weight: math.unit(1000, "lb"),
  26186. name: "Hunched",
  26187. image: {
  26188. source: "./media/characters/grim/hunched.svg",
  26189. extra: 304 / 297,
  26190. bottom: 35.4 / 394
  26191. }
  26192. },
  26193. },
  26194. [
  26195. {
  26196. name: "Normal",
  26197. height: math.unit(16, "feet"),
  26198. default: true
  26199. },
  26200. ]
  26201. ))
  26202. characterMakers.push(() => makeCharacter(
  26203. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26204. {
  26205. front: {
  26206. height: math.unit(2.3, "meters"),
  26207. weight: math.unit(300, "lb"),
  26208. name: "Front",
  26209. image: {
  26210. source: "./media/characters/sinja/front-sfw.svg",
  26211. extra: 1393 / 1294,
  26212. bottom: 70 / 1463
  26213. }
  26214. },
  26215. frontNsfw: {
  26216. height: math.unit(2.3, "meters"),
  26217. weight: math.unit(300, "lb"),
  26218. name: "Front (NSFW)",
  26219. image: {
  26220. source: "./media/characters/sinja/front-nsfw.svg",
  26221. extra: 1393 / 1294,
  26222. bottom: 70 / 1463
  26223. }
  26224. },
  26225. back: {
  26226. height: math.unit(2.3, "meters"),
  26227. weight: math.unit(300, "lb"),
  26228. name: "Back",
  26229. image: {
  26230. source: "./media/characters/sinja/back.svg",
  26231. extra: 1393 / 1294,
  26232. bottom: 70 / 1463
  26233. }
  26234. },
  26235. head: {
  26236. height: math.unit(1.771, "feet"),
  26237. name: "Head",
  26238. image: {
  26239. source: "./media/characters/sinja/head.svg"
  26240. }
  26241. },
  26242. slit: {
  26243. height: math.unit(0.8, "feet"),
  26244. name: "Slit",
  26245. image: {
  26246. source: "./media/characters/sinja/slit.svg"
  26247. }
  26248. },
  26249. },
  26250. [
  26251. {
  26252. name: "Normal",
  26253. height: math.unit(2.3, "meters")
  26254. },
  26255. {
  26256. name: "Macro",
  26257. height: math.unit(91, "meters"),
  26258. default: true
  26259. },
  26260. {
  26261. name: "Megamacro",
  26262. height: math.unit(91440, "meters")
  26263. },
  26264. {
  26265. name: "Gigamacro",
  26266. height: math.unit(60960000, "meters")
  26267. },
  26268. {
  26269. name: "Teramacro",
  26270. height: math.unit(9144000000, "meters")
  26271. },
  26272. ]
  26273. ))
  26274. characterMakers.push(() => makeCharacter(
  26275. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26276. {
  26277. front: {
  26278. height: math.unit(1.7, "meters"),
  26279. weight: math.unit(130, "lb"),
  26280. name: "Front",
  26281. image: {
  26282. source: "./media/characters/kyu/front.svg",
  26283. extra: 415 / 395,
  26284. bottom: 5 / 420
  26285. }
  26286. },
  26287. head: {
  26288. height: math.unit(1.75, "feet"),
  26289. name: "Head",
  26290. image: {
  26291. source: "./media/characters/kyu/head.svg"
  26292. }
  26293. },
  26294. foot: {
  26295. height: math.unit(0.81, "feet"),
  26296. name: "Foot",
  26297. image: {
  26298. source: "./media/characters/kyu/foot.svg"
  26299. }
  26300. },
  26301. },
  26302. [
  26303. {
  26304. name: "Normal",
  26305. height: math.unit(1.7, "meters")
  26306. },
  26307. {
  26308. name: "Macro",
  26309. height: math.unit(131, "feet"),
  26310. default: true
  26311. },
  26312. {
  26313. name: "Megamacro",
  26314. height: math.unit(91440, "meters")
  26315. },
  26316. {
  26317. name: "Gigamacro",
  26318. height: math.unit(60960000, "meters")
  26319. },
  26320. {
  26321. name: "Teramacro",
  26322. height: math.unit(9144000000, "meters")
  26323. },
  26324. ]
  26325. ))
  26326. characterMakers.push(() => makeCharacter(
  26327. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26328. {
  26329. front: {
  26330. height: math.unit(7 + 1 / 12, "feet"),
  26331. weight: math.unit(250, "lb"),
  26332. name: "Front",
  26333. image: {
  26334. source: "./media/characters/joey/front.svg",
  26335. extra: 1791 / 1537,
  26336. bottom: 28 / 1816
  26337. }
  26338. },
  26339. },
  26340. [
  26341. {
  26342. name: "Micro",
  26343. height: math.unit(3, "inches")
  26344. },
  26345. {
  26346. name: "Normal",
  26347. height: math.unit(7 + 1 / 12, "feet"),
  26348. default: true
  26349. },
  26350. ]
  26351. ))
  26352. characterMakers.push(() => makeCharacter(
  26353. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26354. {
  26355. front: {
  26356. height: math.unit(165, "cm"),
  26357. weight: math.unit(140, "lb"),
  26358. name: "Front",
  26359. image: {
  26360. source: "./media/characters/sam-evans/front.svg",
  26361. extra: 3417 / 3230,
  26362. bottom: 41.3 / 3417
  26363. }
  26364. },
  26365. frontSixTails: {
  26366. height: math.unit(165, "cm"),
  26367. weight: math.unit(140, "lb"),
  26368. name: "Front-six-tails",
  26369. image: {
  26370. source: "./media/characters/sam-evans/front-six-tails.svg",
  26371. extra: 3417 / 3230,
  26372. bottom: 41.3 / 3417
  26373. }
  26374. },
  26375. back: {
  26376. height: math.unit(165, "cm"),
  26377. weight: math.unit(140, "lb"),
  26378. name: "Back",
  26379. image: {
  26380. source: "./media/characters/sam-evans/back.svg",
  26381. extra: 3227 / 3032,
  26382. bottom: 6.8 / 3234
  26383. }
  26384. },
  26385. face: {
  26386. height: math.unit(0.68, "feet"),
  26387. name: "Face",
  26388. image: {
  26389. source: "./media/characters/sam-evans/face.svg"
  26390. }
  26391. },
  26392. },
  26393. [
  26394. {
  26395. name: "Normal",
  26396. height: math.unit(165, "cm"),
  26397. default: true
  26398. },
  26399. {
  26400. name: "Macro",
  26401. height: math.unit(100, "meters")
  26402. },
  26403. {
  26404. name: "Macro+",
  26405. height: math.unit(800, "meters")
  26406. },
  26407. {
  26408. name: "Macro++",
  26409. height: math.unit(3, "km")
  26410. },
  26411. {
  26412. name: "Macro+++",
  26413. height: math.unit(30, "km")
  26414. },
  26415. ]
  26416. ))
  26417. characterMakers.push(() => makeCharacter(
  26418. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26419. {
  26420. front: {
  26421. height: math.unit(10, "feet"),
  26422. weight: math.unit(750, "lb"),
  26423. name: "Front",
  26424. image: {
  26425. source: "./media/characters/juliet-a/front.svg",
  26426. extra: 1766 / 1720,
  26427. bottom: 43 / 1809
  26428. }
  26429. },
  26430. back: {
  26431. height: math.unit(10, "feet"),
  26432. weight: math.unit(750, "lb"),
  26433. name: "Back",
  26434. image: {
  26435. source: "./media/characters/juliet-a/back.svg",
  26436. extra: 1781 / 1734,
  26437. bottom: 35 / 1810,
  26438. }
  26439. },
  26440. },
  26441. [
  26442. {
  26443. name: "Normal",
  26444. height: math.unit(10, "feet"),
  26445. default: true
  26446. },
  26447. {
  26448. name: "Dragon Form",
  26449. height: math.unit(250, "feet")
  26450. },
  26451. {
  26452. name: "Macro",
  26453. height: math.unit(1000, "feet")
  26454. },
  26455. {
  26456. name: "Megamacro",
  26457. height: math.unit(10000, "feet")
  26458. }
  26459. ]
  26460. ))
  26461. characterMakers.push(() => makeCharacter(
  26462. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26463. {
  26464. regular: {
  26465. height: math.unit(7 + 3 / 12, "feet"),
  26466. weight: math.unit(260, "lb"),
  26467. name: "Regular",
  26468. image: {
  26469. source: "./media/characters/wild/regular.svg",
  26470. extra: 97.45 / 92,
  26471. bottom: 6.8 / 104.3
  26472. }
  26473. },
  26474. biggums: {
  26475. height: math.unit(8 + 6 / 12, "feet"),
  26476. weight: math.unit(425, "lb"),
  26477. name: "Biggums",
  26478. image: {
  26479. source: "./media/characters/wild/biggums.svg",
  26480. extra: 97.45 / 92,
  26481. bottom: 7.5 / 132.34
  26482. }
  26483. },
  26484. mawRegular: {
  26485. height: math.unit(1.24, "feet"),
  26486. name: "Maw (Regular)",
  26487. image: {
  26488. source: "./media/characters/wild/maw.svg"
  26489. }
  26490. },
  26491. mawBiggums: {
  26492. height: math.unit(1.47, "feet"),
  26493. name: "Maw (Biggums)",
  26494. image: {
  26495. source: "./media/characters/wild/maw.svg"
  26496. }
  26497. },
  26498. },
  26499. [
  26500. {
  26501. name: "Normal",
  26502. height: math.unit(7 + 3 / 12, "feet"),
  26503. default: true
  26504. },
  26505. ]
  26506. ))
  26507. characterMakers.push(() => makeCharacter(
  26508. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26509. {
  26510. front: {
  26511. height: math.unit(2.5, "meters"),
  26512. weight: math.unit(200, "kg"),
  26513. name: "Front",
  26514. image: {
  26515. source: "./media/characters/vidar/front.svg",
  26516. extra: 2994 / 2795,
  26517. bottom: 56 / 3061
  26518. }
  26519. },
  26520. back: {
  26521. height: math.unit(2.5, "meters"),
  26522. weight: math.unit(200, "kg"),
  26523. name: "Back",
  26524. image: {
  26525. source: "./media/characters/vidar/back.svg",
  26526. extra: 3131 / 2928,
  26527. bottom: 13.5 / 3141.5
  26528. }
  26529. },
  26530. feral: {
  26531. height: math.unit(2.5, "meters"),
  26532. weight: math.unit(2000, "kg"),
  26533. name: "Feral",
  26534. image: {
  26535. source: "./media/characters/vidar/feral.svg",
  26536. extra: 2790 / 1765,
  26537. bottom: 6 / 2796
  26538. }
  26539. },
  26540. },
  26541. [
  26542. {
  26543. name: "Normal",
  26544. height: math.unit(2.5, "meters"),
  26545. default: true
  26546. },
  26547. {
  26548. name: "Macro",
  26549. height: math.unit(100, "meters")
  26550. },
  26551. ]
  26552. ))
  26553. characterMakers.push(() => makeCharacter(
  26554. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26555. {
  26556. front: {
  26557. height: math.unit(5 + 9 / 12, "feet"),
  26558. weight: math.unit(120, "lb"),
  26559. name: "Front",
  26560. image: {
  26561. source: "./media/characters/ash/front.svg",
  26562. extra: 2189 / 1961,
  26563. bottom: 5.2 / 2194
  26564. }
  26565. },
  26566. },
  26567. [
  26568. {
  26569. name: "Normal",
  26570. height: math.unit(5 + 9 / 12, "feet"),
  26571. default: true
  26572. },
  26573. ]
  26574. ))
  26575. characterMakers.push(() => makeCharacter(
  26576. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26577. {
  26578. front: {
  26579. height: math.unit(9, "feet"),
  26580. weight: math.unit(10000, "lb"),
  26581. name: "Front",
  26582. image: {
  26583. source: "./media/characters/gygabite/front.svg",
  26584. bottom: 31.7 / 537.8,
  26585. extra: 505 / 370
  26586. }
  26587. },
  26588. },
  26589. [
  26590. {
  26591. name: "Normal",
  26592. height: math.unit(9, "feet"),
  26593. default: true
  26594. },
  26595. ]
  26596. ))
  26597. characterMakers.push(() => makeCharacter(
  26598. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26599. {
  26600. front: {
  26601. height: math.unit(12, "feet"),
  26602. weight: math.unit(35000, "lb"),
  26603. name: "Front",
  26604. image: {
  26605. source: "./media/characters/p0tat0/front.svg",
  26606. extra: 1065 / 921,
  26607. bottom: 55.7 / 1121.25
  26608. }
  26609. },
  26610. },
  26611. [
  26612. {
  26613. name: "Normal",
  26614. height: math.unit(12, "feet"),
  26615. default: true
  26616. },
  26617. ]
  26618. ))
  26619. characterMakers.push(() => makeCharacter(
  26620. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26621. {
  26622. side: {
  26623. height: math.unit(6.5, "feet"),
  26624. weight: math.unit(800, "lb"),
  26625. name: "Side",
  26626. image: {
  26627. source: "./media/characters/dusk/side.svg",
  26628. extra: 615 / 373,
  26629. bottom: 53 / 664
  26630. }
  26631. },
  26632. sitting: {
  26633. height: math.unit(7, "feet"),
  26634. weight: math.unit(800, "lb"),
  26635. name: "Sitting",
  26636. image: {
  26637. source: "./media/characters/dusk/sitting.svg",
  26638. extra: 753 / 425,
  26639. bottom: 33 / 774
  26640. }
  26641. },
  26642. head: {
  26643. height: math.unit(6.1, "feet"),
  26644. name: "Head",
  26645. image: {
  26646. source: "./media/characters/dusk/head.svg"
  26647. }
  26648. },
  26649. },
  26650. [
  26651. {
  26652. name: "Normal",
  26653. height: math.unit(7, "feet"),
  26654. default: true
  26655. },
  26656. ]
  26657. ))
  26658. characterMakers.push(() => makeCharacter(
  26659. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26660. {
  26661. front: {
  26662. height: math.unit(15, "feet"),
  26663. weight: math.unit(7000, "lb"),
  26664. name: "Front",
  26665. image: {
  26666. source: "./media/characters/jay-direwolf/front.svg",
  26667. extra: 1810 / 1732,
  26668. bottom: 66 / 1892
  26669. }
  26670. },
  26671. },
  26672. [
  26673. {
  26674. name: "Normal",
  26675. height: math.unit(15, "feet"),
  26676. default: true
  26677. },
  26678. ]
  26679. ))
  26680. characterMakers.push(() => makeCharacter(
  26681. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26682. {
  26683. front: {
  26684. height: math.unit(4 + 9 / 12, "feet"),
  26685. weight: math.unit(130, "lb"),
  26686. name: "Front",
  26687. image: {
  26688. source: "./media/characters/anchovie/front.svg",
  26689. extra: 382 / 350,
  26690. bottom: 25 / 409
  26691. }
  26692. },
  26693. back: {
  26694. height: math.unit(4 + 9 / 12, "feet"),
  26695. weight: math.unit(130, "lb"),
  26696. name: "Back",
  26697. image: {
  26698. source: "./media/characters/anchovie/back.svg",
  26699. extra: 385 / 352,
  26700. bottom: 16.6 / 402
  26701. }
  26702. },
  26703. frontDressed: {
  26704. height: math.unit(4 + 9 / 12, "feet"),
  26705. weight: math.unit(130, "lb"),
  26706. name: "Front (Dressed)",
  26707. image: {
  26708. source: "./media/characters/anchovie/front-dressed.svg",
  26709. extra: 382 / 350,
  26710. bottom: 25 / 409
  26711. }
  26712. },
  26713. backDressed: {
  26714. height: math.unit(4 + 9 / 12, "feet"),
  26715. weight: math.unit(130, "lb"),
  26716. name: "Back (Dressed)",
  26717. image: {
  26718. source: "./media/characters/anchovie/back-dressed.svg",
  26719. extra: 385 / 352,
  26720. bottom: 16.6 / 402
  26721. }
  26722. },
  26723. },
  26724. [
  26725. {
  26726. name: "Micro",
  26727. height: math.unit(6.4, "inches")
  26728. },
  26729. {
  26730. name: "Normal",
  26731. height: math.unit(4 + 9 / 12, "feet"),
  26732. default: true
  26733. },
  26734. ]
  26735. ))
  26736. characterMakers.push(() => makeCharacter(
  26737. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26738. {
  26739. front: {
  26740. height: math.unit(2, "meters"),
  26741. weight: math.unit(180, "lb"),
  26742. name: "Front",
  26743. image: {
  26744. source: "./media/characters/acidrenamon/front.svg",
  26745. extra: 987 / 890,
  26746. bottom: 22.8 / 1009
  26747. }
  26748. },
  26749. back: {
  26750. height: math.unit(2, "meters"),
  26751. weight: math.unit(180, "lb"),
  26752. name: "Back",
  26753. image: {
  26754. source: "./media/characters/acidrenamon/back.svg",
  26755. extra: 983 / 891,
  26756. bottom: 8.4 / 992
  26757. }
  26758. },
  26759. head: {
  26760. height: math.unit(1.92, "feet"),
  26761. name: "Head",
  26762. image: {
  26763. source: "./media/characters/acidrenamon/head.svg"
  26764. }
  26765. },
  26766. rump: {
  26767. height: math.unit(1.72, "feet"),
  26768. name: "Rump",
  26769. image: {
  26770. source: "./media/characters/acidrenamon/rump.svg"
  26771. }
  26772. },
  26773. tail: {
  26774. height: math.unit(4.2, "feet"),
  26775. name: "Tail",
  26776. image: {
  26777. source: "./media/characters/acidrenamon/tail.svg"
  26778. }
  26779. },
  26780. },
  26781. [
  26782. {
  26783. name: "Normal",
  26784. height: math.unit(2, "meters"),
  26785. default: true
  26786. },
  26787. {
  26788. name: "Minimacro",
  26789. height: math.unit(7, "meters")
  26790. },
  26791. {
  26792. name: "Macro",
  26793. height: math.unit(200, "meters")
  26794. },
  26795. {
  26796. name: "Gigamacro",
  26797. height: math.unit(0.2, "earths")
  26798. },
  26799. ]
  26800. ))
  26801. characterMakers.push(() => makeCharacter(
  26802. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26803. {
  26804. front: {
  26805. height: math.unit(6, "feet"),
  26806. weight: math.unit(150, "lb"),
  26807. name: "Front",
  26808. image: {
  26809. source: "./media/characters/kenzie-lee/front.svg",
  26810. extra: 1525 / 1465,
  26811. bottom: 45 / 1570
  26812. }
  26813. },
  26814. side: {
  26815. height: math.unit(6, "feet"),
  26816. weight: math.unit(150, "lb"),
  26817. name: "Side",
  26818. image: {
  26819. source: "./media/characters/kenzie-lee/side.svg",
  26820. extra: 5505 / 5383,
  26821. bottom: 60 / 5573
  26822. }
  26823. },
  26824. paw: {
  26825. height: math.unit(6, "feet"),
  26826. name: "Paw",
  26827. image: {
  26828. source: "./media/characters/kenzie-lee/paw.svg"
  26829. }
  26830. },
  26831. },
  26832. [
  26833. {
  26834. name: "Normal",
  26835. height: math.unit(152, "feet"),
  26836. default: true
  26837. },
  26838. {
  26839. name: "Megamacro",
  26840. height: math.unit(7, "miles")
  26841. },
  26842. {
  26843. name: "Gigamacro",
  26844. height: math.unit(8000, "miles")
  26845. },
  26846. ]
  26847. ))
  26848. characterMakers.push(() => makeCharacter(
  26849. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26850. {
  26851. side: {
  26852. height: math.unit(6, "feet"),
  26853. weight: math.unit(150, "lb"),
  26854. name: "Side",
  26855. image: {
  26856. source: "./media/characters/withers/side.svg",
  26857. extra: 1830 / 1728,
  26858. bottom: 96 / 1927
  26859. }
  26860. },
  26861. front: {
  26862. height: math.unit(6, "feet"),
  26863. weight: math.unit(150, "lb"),
  26864. name: "Front",
  26865. image: {
  26866. source: "./media/characters/withers/front.svg",
  26867. extra: 1514 / 1438,
  26868. bottom: 118 / 1632
  26869. }
  26870. },
  26871. },
  26872. [
  26873. {
  26874. name: "Macro",
  26875. height: math.unit(168, "feet"),
  26876. default: true
  26877. },
  26878. {
  26879. name: "Megamacro",
  26880. height: math.unit(15, "miles")
  26881. }
  26882. ]
  26883. ))
  26884. characterMakers.push(() => makeCharacter(
  26885. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26886. {
  26887. front: {
  26888. height: math.unit(6 + 7 / 12, "feet"),
  26889. weight: math.unit(250, "lb"),
  26890. name: "Front",
  26891. image: {
  26892. source: "./media/characters/nemoskii/front.svg",
  26893. extra: 2270 / 1734,
  26894. bottom: 86 / 2354
  26895. }
  26896. },
  26897. back: {
  26898. height: math.unit(6 + 7 / 12, "feet"),
  26899. weight: math.unit(250, "lb"),
  26900. name: "Back",
  26901. image: {
  26902. source: "./media/characters/nemoskii/back.svg",
  26903. extra: 1845 / 1788,
  26904. bottom: 10.5 / 1852
  26905. }
  26906. },
  26907. head: {
  26908. height: math.unit(1.31, "feet"),
  26909. name: "Head",
  26910. image: {
  26911. source: "./media/characters/nemoskii/head.svg"
  26912. }
  26913. },
  26914. },
  26915. [
  26916. {
  26917. name: "Micro",
  26918. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26919. },
  26920. {
  26921. name: "Normal",
  26922. height: math.unit(6 + 7 / 12, "feet"),
  26923. default: true
  26924. },
  26925. {
  26926. name: "Macro",
  26927. height: math.unit((6 + 7 / 12) * 150, "feet")
  26928. },
  26929. {
  26930. name: "Macro+",
  26931. height: math.unit((6 + 7 / 12) * 500, "feet")
  26932. },
  26933. {
  26934. name: "Megamacro",
  26935. height: math.unit((6 + 7 / 12) * 100000, "feet")
  26936. },
  26937. ]
  26938. ))
  26939. characterMakers.push(() => makeCharacter(
  26940. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26941. {
  26942. front: {
  26943. height: math.unit(1, "mile"),
  26944. weight: math.unit(265261.9, "lb"),
  26945. name: "Front",
  26946. image: {
  26947. source: "./media/characters/shui/front.svg",
  26948. extra: 1633 / 1564,
  26949. bottom: 91.5 / 1726
  26950. }
  26951. },
  26952. },
  26953. [
  26954. {
  26955. name: "Macro",
  26956. height: math.unit(1, "mile"),
  26957. default: true
  26958. },
  26959. ]
  26960. ))
  26961. characterMakers.push(() => makeCharacter(
  26962. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26963. {
  26964. front: {
  26965. height: math.unit(12 + 6 / 12, "feet"),
  26966. weight: math.unit(1342, "lb"),
  26967. name: "Front",
  26968. image: {
  26969. source: "./media/characters/arokh-takakura/front.svg",
  26970. extra: 1089 / 1043,
  26971. bottom: 77.4 / 1176.7
  26972. }
  26973. },
  26974. back: {
  26975. height: math.unit(12 + 6 / 12, "feet"),
  26976. weight: math.unit(1342, "lb"),
  26977. name: "Back",
  26978. image: {
  26979. source: "./media/characters/arokh-takakura/back.svg",
  26980. extra: 1046 / 1019,
  26981. bottom: 102 / 1150
  26982. }
  26983. },
  26984. },
  26985. [
  26986. {
  26987. name: "Big",
  26988. height: math.unit(12 + 6 / 12, "feet"),
  26989. default: true
  26990. },
  26991. ]
  26992. ))
  26993. characterMakers.push(() => makeCharacter(
  26994. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  26995. {
  26996. front: {
  26997. height: math.unit(5 + 6 / 12, "feet"),
  26998. weight: math.unit(150, "lb"),
  26999. name: "Front",
  27000. image: {
  27001. source: "./media/characters/theo/front.svg",
  27002. extra: 1184 / 1131,
  27003. bottom: 7.4 / 1191
  27004. }
  27005. },
  27006. },
  27007. [
  27008. {
  27009. name: "Micro",
  27010. height: math.unit(5, "inches")
  27011. },
  27012. {
  27013. name: "Normal",
  27014. height: math.unit(5 + 6 / 12, "feet"),
  27015. default: true
  27016. },
  27017. ]
  27018. ))
  27019. characterMakers.push(() => makeCharacter(
  27020. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27021. {
  27022. front: {
  27023. height: math.unit(5 + 9 / 12, "feet"),
  27024. weight: math.unit(130, "lb"),
  27025. name: "Front",
  27026. image: {
  27027. source: "./media/characters/cecelia-swift/front.svg",
  27028. extra: 502 / 484,
  27029. bottom: 23 / 523
  27030. }
  27031. },
  27032. back: {
  27033. height: math.unit(5 + 9 / 12, "feet"),
  27034. weight: math.unit(130, "lb"),
  27035. name: "Back",
  27036. image: {
  27037. source: "./media/characters/cecelia-swift/back.svg",
  27038. extra: 499 / 485,
  27039. bottom: 12 / 511
  27040. }
  27041. },
  27042. head: {
  27043. height: math.unit(0.90, "feet"),
  27044. name: "Head",
  27045. image: {
  27046. source: "./media/characters/cecelia-swift/head.svg"
  27047. }
  27048. },
  27049. rump: {
  27050. height: math.unit(1.75, "feet"),
  27051. name: "Rump",
  27052. image: {
  27053. source: "./media/characters/cecelia-swift/rump.svg"
  27054. }
  27055. },
  27056. },
  27057. [
  27058. {
  27059. name: "Normal",
  27060. height: math.unit(5 + 9 / 12, "feet"),
  27061. default: true
  27062. },
  27063. {
  27064. name: "Big",
  27065. height: math.unit(50, "feet")
  27066. },
  27067. {
  27068. name: "Macro",
  27069. height: math.unit(100, "feet")
  27070. },
  27071. {
  27072. name: "Macro+",
  27073. height: math.unit(500, "feet")
  27074. },
  27075. {
  27076. name: "Macro++",
  27077. height: math.unit(1000, "feet")
  27078. },
  27079. ]
  27080. ))
  27081. characterMakers.push(() => makeCharacter(
  27082. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27083. {
  27084. front: {
  27085. height: math.unit(6, "feet"),
  27086. weight: math.unit(150, "lb"),
  27087. name: "Front",
  27088. image: {
  27089. source: "./media/characters/kaunan/front.svg",
  27090. extra: 2890 / 2523,
  27091. bottom: 49 / 2939
  27092. }
  27093. },
  27094. },
  27095. [
  27096. {
  27097. name: "Macro",
  27098. height: math.unit(150, "feet"),
  27099. default: true
  27100. },
  27101. ]
  27102. ))
  27103. characterMakers.push(() => makeCharacter(
  27104. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27105. {
  27106. front: {
  27107. height: math.unit(175, "cm"),
  27108. weight: math.unit(60, "kg"),
  27109. name: "Front",
  27110. image: {
  27111. source: "./media/characters/fei/front.svg",
  27112. extra: 2581 / 2400,
  27113. bottom: 82.2 / 2663
  27114. }
  27115. },
  27116. },
  27117. [
  27118. {
  27119. name: "Mortal",
  27120. height: math.unit(175, "cm")
  27121. },
  27122. {
  27123. name: "Normal",
  27124. height: math.unit(3500, "m"),
  27125. default: true
  27126. },
  27127. {
  27128. name: "Stroll",
  27129. height: math.unit(17.5, "km")
  27130. },
  27131. {
  27132. name: "Showoff",
  27133. height: math.unit(175, "km")
  27134. },
  27135. ]
  27136. ))
  27137. characterMakers.push(() => makeCharacter(
  27138. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27139. {
  27140. front: {
  27141. height: math.unit(7, "feet"),
  27142. weight: math.unit(1000, "kg"),
  27143. name: "Front",
  27144. image: {
  27145. source: "./media/characters/edrax/front.svg",
  27146. extra: 2838 / 2550,
  27147. bottom: 130 / 2968
  27148. }
  27149. },
  27150. },
  27151. [
  27152. {
  27153. name: "Small",
  27154. height: math.unit(7, "feet")
  27155. },
  27156. {
  27157. name: "Normal",
  27158. height: math.unit(1500, "meters")
  27159. },
  27160. {
  27161. name: "Mega",
  27162. height: math.unit(12000000, "km"),
  27163. default: true
  27164. },
  27165. {
  27166. name: "Megamacro",
  27167. height: math.unit(10600000, "lightyears")
  27168. },
  27169. {
  27170. name: "Hypermacro",
  27171. height: math.unit(256, "yottameters")
  27172. },
  27173. ]
  27174. ))
  27175. characterMakers.push(() => makeCharacter(
  27176. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27177. {
  27178. front: {
  27179. height: math.unit(10, "feet"),
  27180. weight: math.unit(750, "lb"),
  27181. name: "Front",
  27182. image: {
  27183. source: "./media/characters/clove/front.svg",
  27184. extra: 2031 / 1860,
  27185. bottom: 47.8 / 2080
  27186. }
  27187. },
  27188. back: {
  27189. height: math.unit(10, "feet"),
  27190. weight: math.unit(750, "lb"),
  27191. name: "Back",
  27192. image: {
  27193. source: "./media/characters/clove/back.svg",
  27194. extra: 2025 / 1859,
  27195. bottom: 46 / 2071
  27196. }
  27197. },
  27198. },
  27199. [
  27200. {
  27201. name: "Normal",
  27202. height: math.unit(10, "feet"),
  27203. default: true
  27204. },
  27205. ]
  27206. ))
  27207. characterMakers.push(() => makeCharacter(
  27208. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27209. {
  27210. front: {
  27211. height: math.unit(4, "feet"),
  27212. weight: math.unit(50, "lb"),
  27213. name: "Front",
  27214. image: {
  27215. source: "./media/characters/alex-rabbit/front.svg",
  27216. extra: 507 / 458,
  27217. bottom: 18.5 / 527
  27218. }
  27219. },
  27220. back: {
  27221. height: math.unit(4, "feet"),
  27222. weight: math.unit(50, "lb"),
  27223. name: "Back",
  27224. image: {
  27225. source: "./media/characters/alex-rabbit/back.svg",
  27226. extra: 502 / 460,
  27227. bottom: 18.9 / 521
  27228. }
  27229. },
  27230. },
  27231. [
  27232. {
  27233. name: "Normal",
  27234. height: math.unit(4, "feet"),
  27235. default: true
  27236. },
  27237. ]
  27238. ))
  27239. characterMakers.push(() => makeCharacter(
  27240. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27241. {
  27242. front: {
  27243. height: math.unit(1 + 3 / 12, "feet"),
  27244. weight: math.unit(80, "lb"),
  27245. name: "Front",
  27246. image: {
  27247. source: "./media/characters/zander-rose/front.svg",
  27248. extra: 916 / 797,
  27249. bottom: 17 / 933
  27250. }
  27251. },
  27252. back: {
  27253. height: math.unit(1 + 3 / 12, "feet"),
  27254. weight: math.unit(80, "lb"),
  27255. name: "Back",
  27256. image: {
  27257. source: "./media/characters/zander-rose/back.svg",
  27258. extra: 903 / 779,
  27259. bottom: 31 / 934
  27260. }
  27261. },
  27262. },
  27263. [
  27264. {
  27265. name: "Normal",
  27266. height: math.unit(1 + 3 / 12, "feet"),
  27267. default: true
  27268. },
  27269. ]
  27270. ))
  27271. characterMakers.push(() => makeCharacter(
  27272. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27273. {
  27274. anthro: {
  27275. height: math.unit(6, "feet"),
  27276. weight: math.unit(150, "lb"),
  27277. name: "Anthro",
  27278. image: {
  27279. source: "./media/characters/razz/anthro.svg",
  27280. extra: 1437 / 1343,
  27281. bottom: 48 / 1485
  27282. }
  27283. },
  27284. feral: {
  27285. height: math.unit(6, "feet"),
  27286. weight: math.unit(150, "lb"),
  27287. name: "Feral",
  27288. image: {
  27289. source: "./media/characters/razz/feral.svg",
  27290. extra: 2569 / 1385,
  27291. bottom: 95 / 2664
  27292. }
  27293. },
  27294. },
  27295. [
  27296. {
  27297. name: "Normal",
  27298. height: math.unit(6, "feet"),
  27299. default: true
  27300. },
  27301. ]
  27302. ))
  27303. characterMakers.push(() => makeCharacter(
  27304. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27305. {
  27306. front: {
  27307. height: math.unit(9 + 4 / 12, "feet"),
  27308. weight: math.unit(500, "lb"),
  27309. name: "Front",
  27310. image: {
  27311. source: "./media/characters/morrigan/front.svg",
  27312. extra: 2707 / 2579,
  27313. bottom: 156 / 2863
  27314. }
  27315. },
  27316. },
  27317. [
  27318. {
  27319. name: "Normal",
  27320. height: math.unit(9 + 4 / 12, "feet"),
  27321. default: true
  27322. },
  27323. ]
  27324. ))
  27325. characterMakers.push(() => makeCharacter(
  27326. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27327. {
  27328. front: {
  27329. height: math.unit(5, "stories"),
  27330. weight: math.unit(4000, "lb"),
  27331. name: "Front",
  27332. image: {
  27333. source: "./media/characters/jenene/front.svg",
  27334. extra: 1780 / 1710,
  27335. bottom: 57 / 1837
  27336. }
  27337. },
  27338. },
  27339. [
  27340. {
  27341. name: "Normal",
  27342. height: math.unit(5, "stories"),
  27343. default: true
  27344. },
  27345. ]
  27346. ))
  27347. characterMakers.push(() => makeCharacter(
  27348. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27349. {
  27350. front: {
  27351. height: math.unit(6, "feet"),
  27352. weight: math.unit(150, "lb"),
  27353. name: "Front",
  27354. image: {
  27355. source: "./media/characters/vix-archaser/front.svg",
  27356. extra: 2767 / 2562,
  27357. bottom: 36 / 2803
  27358. }
  27359. },
  27360. },
  27361. [
  27362. {
  27363. name: "Micro",
  27364. height: math.unit(1, "foot")
  27365. },
  27366. {
  27367. name: "Normal",
  27368. height: math.unit(6 + 5 / 12, "feet")
  27369. },
  27370. {
  27371. name: "Minimacro",
  27372. height: math.unit(500, "feet")
  27373. },
  27374. {
  27375. name: "Macro",
  27376. height: math.unit(4, "miles")
  27377. },
  27378. {
  27379. name: "Megamacro",
  27380. height: math.unit(250, "miles"),
  27381. default: true
  27382. },
  27383. {
  27384. name: "Gigamacro",
  27385. height: math.unit(1, "universe")
  27386. },
  27387. {
  27388. name: "Endgame",
  27389. height: math.unit(100, "multiverses")
  27390. }
  27391. ]
  27392. ))
  27393. characterMakers.push(() => makeCharacter(
  27394. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27395. {
  27396. taurSfw: {
  27397. height: math.unit(10, "meters"),
  27398. weight: math.unit(17500, "kg"),
  27399. name: "Taur",
  27400. image: {
  27401. source: "./media/characters/faey/taur-sfw.svg",
  27402. extra: 1200 / 968,
  27403. bottom: 41 / 1241
  27404. }
  27405. },
  27406. chestmaw: {
  27407. height: math.unit(2.01, "meters"),
  27408. name: "Chestmaw",
  27409. image: {
  27410. source: "./media/characters/faey/chestmaw.svg"
  27411. }
  27412. },
  27413. foot: {
  27414. height: math.unit(2.43, "meters"),
  27415. name: "Foot",
  27416. image: {
  27417. source: "./media/characters/faey/foot.svg"
  27418. }
  27419. },
  27420. jaws: {
  27421. height: math.unit(1.66, "meters"),
  27422. name: "Jaws",
  27423. image: {
  27424. source: "./media/characters/faey/jaws.svg"
  27425. }
  27426. },
  27427. tongues: {
  27428. height: math.unit(2.01, "meters"),
  27429. name: "Tongues",
  27430. image: {
  27431. source: "./media/characters/faey/tongues.svg"
  27432. }
  27433. },
  27434. },
  27435. [
  27436. {
  27437. name: "Small",
  27438. height: math.unit(10, "meters"),
  27439. default: true
  27440. },
  27441. {
  27442. name: "Big",
  27443. height: math.unit(500000, "km")
  27444. },
  27445. ]
  27446. ))
  27447. characterMakers.push(() => makeCharacter(
  27448. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27449. {
  27450. front: {
  27451. height: math.unit(7, "feet"),
  27452. weight: math.unit(275, "lb"),
  27453. name: "Front",
  27454. image: {
  27455. source: "./media/characters/roku/front.svg",
  27456. extra: 903 / 878,
  27457. bottom: 37 / 940
  27458. }
  27459. },
  27460. },
  27461. [
  27462. {
  27463. name: "Normal",
  27464. height: math.unit(7, "feet"),
  27465. default: true
  27466. },
  27467. {
  27468. name: "Macro",
  27469. height: math.unit(500, "feet")
  27470. },
  27471. {
  27472. name: "Megamacro",
  27473. height: math.unit(200, "miles")
  27474. },
  27475. ]
  27476. ))
  27477. characterMakers.push(() => makeCharacter(
  27478. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27479. {
  27480. front: {
  27481. height: math.unit(6 + 2 / 12, "feet"),
  27482. weight: math.unit(150, "lb"),
  27483. name: "Front",
  27484. image: {
  27485. source: "./media/characters/lira/front.svg",
  27486. extra: 1727 / 1605,
  27487. bottom: 26 / 1753
  27488. }
  27489. },
  27490. back: {
  27491. height: math.unit(6 + 2 / 12, "feet"),
  27492. weight: math.unit(150, "lb"),
  27493. name: "Back",
  27494. image: {
  27495. source: "./media/characters/lira/back.svg",
  27496. extra: 1713 / 159,
  27497. bottom: 20 / 1733
  27498. }
  27499. },
  27500. hand: {
  27501. height: math.unit(0.75, "feet"),
  27502. name: "Hand",
  27503. image: {
  27504. source: "./media/characters/lira/hand.svg"
  27505. }
  27506. },
  27507. maw: {
  27508. height: math.unit(0.65, "feet"),
  27509. name: "Maw",
  27510. image: {
  27511. source: "./media/characters/lira/maw.svg"
  27512. }
  27513. },
  27514. pawDigi: {
  27515. height: math.unit(1.6, "feet"),
  27516. name: "Paw Digi",
  27517. image: {
  27518. source: "./media/characters/lira/paw-digi.svg"
  27519. }
  27520. },
  27521. pawPlanti: {
  27522. height: math.unit(1.4, "feet"),
  27523. name: "Paw Planti",
  27524. image: {
  27525. source: "./media/characters/lira/paw-planti.svg"
  27526. }
  27527. },
  27528. },
  27529. [
  27530. {
  27531. name: "Normal",
  27532. height: math.unit(6 + 2 / 12, "feet"),
  27533. default: true
  27534. },
  27535. {
  27536. name: "Macro",
  27537. height: math.unit(100, "feet")
  27538. },
  27539. {
  27540. name: "Macro²",
  27541. height: math.unit(1600, "feet")
  27542. },
  27543. {
  27544. name: "Planetary",
  27545. height: math.unit(20, "earths")
  27546. },
  27547. ]
  27548. ))
  27549. characterMakers.push(() => makeCharacter(
  27550. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27551. {
  27552. front: {
  27553. height: math.unit(6, "feet"),
  27554. weight: math.unit(150, "lb"),
  27555. name: "Front",
  27556. image: {
  27557. source: "./media/characters/hadjet/front.svg",
  27558. extra: 1480 / 1346,
  27559. bottom: 26 / 1506
  27560. }
  27561. },
  27562. frontNsfw: {
  27563. height: math.unit(6, "feet"),
  27564. weight: math.unit(150, "lb"),
  27565. name: "Front (NSFW)",
  27566. image: {
  27567. source: "./media/characters/hadjet/front-nsfw.svg",
  27568. extra: 1440 / 1358,
  27569. bottom: 52 / 1492
  27570. }
  27571. },
  27572. },
  27573. [
  27574. {
  27575. name: "Macro",
  27576. height: math.unit(10, "stories"),
  27577. default: true
  27578. },
  27579. {
  27580. name: "Megamacro",
  27581. height: math.unit(1.5, "miles")
  27582. },
  27583. {
  27584. name: "Megamacro+",
  27585. height: math.unit(5, "miles")
  27586. },
  27587. ]
  27588. ))
  27589. characterMakers.push(() => makeCharacter(
  27590. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27591. {
  27592. side: {
  27593. height: math.unit(106, "feet"),
  27594. weight: math.unit(500, "tonnes"),
  27595. name: "Side",
  27596. image: {
  27597. source: "./media/characters/kodran/side.svg",
  27598. extra: 553 / 480,
  27599. bottom: 33 / 586
  27600. }
  27601. },
  27602. front: {
  27603. height: math.unit(132, "feet"),
  27604. weight: math.unit(500, "tonnes"),
  27605. name: "Front",
  27606. image: {
  27607. source: "./media/characters/kodran/front.svg",
  27608. extra: 667 / 643,
  27609. bottom: 42 / 709
  27610. }
  27611. },
  27612. flying: {
  27613. height: math.unit(350, "feet"),
  27614. weight: math.unit(500, "tonnes"),
  27615. name: "Flying",
  27616. image: {
  27617. source: "./media/characters/kodran/flying.svg"
  27618. }
  27619. },
  27620. foot: {
  27621. height: math.unit(33, "feet"),
  27622. name: "Foot",
  27623. image: {
  27624. source: "./media/characters/kodran/foot.svg"
  27625. }
  27626. },
  27627. footFront: {
  27628. height: math.unit(19, "feet"),
  27629. name: "Foot (Front)",
  27630. image: {
  27631. source: "./media/characters/kodran/foot-front.svg",
  27632. extra: 261 / 261,
  27633. bottom: 91 / 352
  27634. }
  27635. },
  27636. headFront: {
  27637. height: math.unit(53, "feet"),
  27638. name: "Head (Front)",
  27639. image: {
  27640. source: "./media/characters/kodran/head-front.svg"
  27641. }
  27642. },
  27643. headSide: {
  27644. height: math.unit(65, "feet"),
  27645. name: "Head (Side)",
  27646. image: {
  27647. source: "./media/characters/kodran/head-side.svg"
  27648. }
  27649. },
  27650. throat: {
  27651. height: math.unit(79, "feet"),
  27652. name: "Throat",
  27653. image: {
  27654. source: "./media/characters/kodran/throat.svg"
  27655. }
  27656. },
  27657. },
  27658. [
  27659. {
  27660. name: "Large",
  27661. height: math.unit(106, "feet"),
  27662. default: true
  27663. },
  27664. ]
  27665. ))
  27666. characterMakers.push(() => makeCharacter(
  27667. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27668. {
  27669. side: {
  27670. height: math.unit(11, "feet"),
  27671. weight: math.unit(150, "lb"),
  27672. name: "Side",
  27673. image: {
  27674. source: "./media/characters/pyxaron/side.svg",
  27675. extra: 305 / 195,
  27676. bottom: 17 / 322
  27677. }
  27678. },
  27679. },
  27680. [
  27681. {
  27682. name: "Normal",
  27683. height: math.unit(11, "feet"),
  27684. default: true
  27685. },
  27686. ]
  27687. ))
  27688. characterMakers.push(() => makeCharacter(
  27689. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27690. {
  27691. front: {
  27692. height: math.unit(6, "feet"),
  27693. weight: math.unit(150, "lb"),
  27694. name: "Front",
  27695. image: {
  27696. source: "./media/characters/meep/front.svg",
  27697. extra: 88 / 80,
  27698. bottom: 6 / 94
  27699. }
  27700. },
  27701. },
  27702. [
  27703. {
  27704. name: "Fun Sized",
  27705. height: math.unit(2, "inches"),
  27706. default: true
  27707. },
  27708. {
  27709. name: "Friend Sized",
  27710. height: math.unit(8, "inches")
  27711. },
  27712. ]
  27713. ))
  27714. characterMakers.push(() => makeCharacter(
  27715. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27716. {
  27717. front: {
  27718. height: math.unit(15, "feet"),
  27719. weight: math.unit(2500, "lb"),
  27720. name: "Front",
  27721. image: {
  27722. source: "./media/characters/holly-rabbit/front.svg",
  27723. extra: 1433 / 1233,
  27724. bottom: 125 / 1558
  27725. }
  27726. },
  27727. dick: {
  27728. height: math.unit(4.6, "feet"),
  27729. name: "Dick",
  27730. image: {
  27731. source: "./media/characters/holly-rabbit/dick.svg"
  27732. }
  27733. },
  27734. },
  27735. [
  27736. {
  27737. name: "Normal",
  27738. height: math.unit(15, "feet"),
  27739. default: true
  27740. },
  27741. {
  27742. name: "Macro",
  27743. height: math.unit(250, "feet")
  27744. },
  27745. {
  27746. name: "Macro+",
  27747. height: math.unit(2500, "feet")
  27748. },
  27749. ]
  27750. ))
  27751. characterMakers.push(() => makeCharacter(
  27752. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27753. {
  27754. front: {
  27755. height: math.unit(3.02, "meters"),
  27756. weight: math.unit(500, "kg"),
  27757. name: "Front",
  27758. image: {
  27759. source: "./media/characters/drena/front.svg",
  27760. extra: 282 / 243,
  27761. bottom: 8 / 290
  27762. }
  27763. },
  27764. side: {
  27765. height: math.unit(3.02, "meters"),
  27766. weight: math.unit(500, "kg"),
  27767. name: "Side",
  27768. image: {
  27769. source: "./media/characters/drena/side.svg",
  27770. extra: 280 / 245,
  27771. bottom: 10 / 290
  27772. }
  27773. },
  27774. back: {
  27775. height: math.unit(3.02, "meters"),
  27776. weight: math.unit(500, "kg"),
  27777. name: "Back",
  27778. image: {
  27779. source: "./media/characters/drena/back.svg",
  27780. extra: 278 / 243,
  27781. bottom: 2 / 280
  27782. }
  27783. },
  27784. foot: {
  27785. height: math.unit(0.75, "meters"),
  27786. name: "Foot",
  27787. image: {
  27788. source: "./media/characters/drena/foot.svg"
  27789. }
  27790. },
  27791. maw: {
  27792. height: math.unit(0.82, "meters"),
  27793. name: "Maw",
  27794. image: {
  27795. source: "./media/characters/drena/maw.svg"
  27796. }
  27797. },
  27798. rump: {
  27799. height: math.unit(0.93, "meters"),
  27800. name: "Rump",
  27801. image: {
  27802. source: "./media/characters/drena/rump.svg"
  27803. }
  27804. },
  27805. },
  27806. [
  27807. {
  27808. name: "Normal",
  27809. height: math.unit(3.02, "meters"),
  27810. default: true
  27811. },
  27812. ]
  27813. ))
  27814. characterMakers.push(() => makeCharacter(
  27815. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27816. {
  27817. front: {
  27818. height: math.unit(6 + 4 / 12, "feet"),
  27819. weight: math.unit(250, "lb"),
  27820. name: "Front",
  27821. image: {
  27822. source: "./media/characters/remmyzilla/front.svg",
  27823. extra: 4033 / 3588,
  27824. bottom: 123 / 4156
  27825. }
  27826. },
  27827. back: {
  27828. height: math.unit(6 + 4 / 12, "feet"),
  27829. weight: math.unit(250, "lb"),
  27830. name: "Back",
  27831. image: {
  27832. source: "./media/characters/remmyzilla/back.svg",
  27833. extra: 2687 / 2555,
  27834. bottom: 48 / 2735
  27835. }
  27836. },
  27837. frontFancy: {
  27838. height: math.unit(6 + 4 / 12, "feet"),
  27839. weight: math.unit(250, "lb"),
  27840. name: "Front (Fancy)",
  27841. image: {
  27842. source: "./media/characters/remmyzilla/front-fancy.svg",
  27843. extra: 4119 / 3419,
  27844. bottom: 237 / 4356
  27845. }
  27846. },
  27847. paw: {
  27848. height: math.unit(1.73, "feet"),
  27849. name: "Paw",
  27850. image: {
  27851. source: "./media/characters/remmyzilla/paw.svg"
  27852. }
  27853. },
  27854. maw: {
  27855. height: math.unit(1.73, "feet"),
  27856. name: "Maw",
  27857. image: {
  27858. source: "./media/characters/remmyzilla/maw.svg"
  27859. }
  27860. },
  27861. },
  27862. [
  27863. {
  27864. name: "Normal",
  27865. height: math.unit(6 + 4 / 12, "feet")
  27866. },
  27867. {
  27868. name: "Minimacro",
  27869. height: math.unit(12 + 8 / 12, "feet")
  27870. },
  27871. {
  27872. name: "Normal",
  27873. height: math.unit(640, "feet"),
  27874. default: true
  27875. },
  27876. {
  27877. name: "Megamacro",
  27878. height: math.unit(6400, "feet")
  27879. },
  27880. {
  27881. name: "Gigamacro",
  27882. height: math.unit(64000, "miles")
  27883. },
  27884. ]
  27885. ))
  27886. characterMakers.push(() => makeCharacter(
  27887. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27888. {
  27889. front: {
  27890. height: math.unit(2.5, "meters"),
  27891. weight: math.unit(300, "lb"),
  27892. name: "Front",
  27893. image: {
  27894. source: "./media/characters/lawrence/front.svg",
  27895. extra: 357 / 335,
  27896. bottom: 30 / 387
  27897. }
  27898. },
  27899. back: {
  27900. height: math.unit(2.5, "meters"),
  27901. weight: math.unit(300, "lb"),
  27902. name: "Back",
  27903. image: {
  27904. source: "./media/characters/lawrence/back.svg",
  27905. extra: 357 / 338,
  27906. bottom: 16 / 373
  27907. }
  27908. },
  27909. head: {
  27910. height: math.unit(0.9, "meter"),
  27911. name: "Head",
  27912. image: {
  27913. source: "./media/characters/lawrence/head.svg"
  27914. }
  27915. },
  27916. maw: {
  27917. height: math.unit(0.7, "meter"),
  27918. name: "Maw",
  27919. image: {
  27920. source: "./media/characters/lawrence/maw.svg"
  27921. }
  27922. },
  27923. footBottom: {
  27924. height: math.unit(0.5, "meter"),
  27925. name: "Foot (Bottom)",
  27926. image: {
  27927. source: "./media/characters/lawrence/foot-bottom.svg"
  27928. }
  27929. },
  27930. footTop: {
  27931. height: math.unit(0.5, "meter"),
  27932. name: "Foot (Top)",
  27933. image: {
  27934. source: "./media/characters/lawrence/foot-top.svg"
  27935. }
  27936. },
  27937. },
  27938. [
  27939. {
  27940. name: "Normal",
  27941. height: math.unit(2.5, "meters"),
  27942. default: true
  27943. },
  27944. {
  27945. name: "Macro",
  27946. height: math.unit(95, "meters")
  27947. },
  27948. {
  27949. name: "Megamacro",
  27950. height: math.unit(150, "km")
  27951. },
  27952. ]
  27953. ))
  27954. characterMakers.push(() => makeCharacter(
  27955. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27956. {
  27957. front: {
  27958. height: math.unit(4.2, "meters"),
  27959. name: "Front",
  27960. image: {
  27961. source: "./media/characters/sydney/front.svg",
  27962. extra: 1323 / 1277,
  27963. bottom: 111 / 1434
  27964. }
  27965. },
  27966. },
  27967. [
  27968. {
  27969. name: "Normal",
  27970. height: math.unit(4.2, "meters"),
  27971. default: true
  27972. },
  27973. ]
  27974. ))
  27975. characterMakers.push(() => makeCharacter(
  27976. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  27977. {
  27978. back: {
  27979. height: math.unit(201, "feet"),
  27980. name: "Back",
  27981. image: {
  27982. source: "./media/characters/jessica/back.svg",
  27983. extra: 273 / 259,
  27984. bottom: 7 / 280
  27985. }
  27986. },
  27987. },
  27988. [
  27989. {
  27990. name: "Normal",
  27991. height: math.unit(201, "feet"),
  27992. default: true
  27993. },
  27994. {
  27995. name: "Megamacro",
  27996. height: math.unit(8, "miles")
  27997. },
  27998. ]
  27999. ))
  28000. characterMakers.push(() => makeCharacter(
  28001. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28002. {
  28003. side: {
  28004. height: math.unit(320, "cm"),
  28005. name: "Side",
  28006. image: {
  28007. source: "./media/characters/victoria/side.svg",
  28008. extra: 778 / 346,
  28009. bottom: 56 / 834
  28010. }
  28011. },
  28012. maw: {
  28013. height: math.unit(5.9, "feet"),
  28014. name: "Maw",
  28015. image: {
  28016. source: "./media/characters/victoria/maw.svg"
  28017. }
  28018. },
  28019. },
  28020. [
  28021. {
  28022. name: "Normal",
  28023. height: math.unit(320, "cm"),
  28024. default: true
  28025. },
  28026. ]
  28027. ))
  28028. characterMakers.push(() => makeCharacter(
  28029. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28030. {
  28031. front: {
  28032. height: math.unit(5 + 6 / 12, "feet"),
  28033. name: "Front",
  28034. image: {
  28035. source: "./media/characters/cat/front.svg",
  28036. extra: 1374 / 1257,
  28037. bottom: 59 / 1433
  28038. }
  28039. },
  28040. back: {
  28041. height: math.unit(5 + 6 / 12, "feet"),
  28042. name: "Back",
  28043. image: {
  28044. source: "./media/characters/cat/back.svg",
  28045. extra: 1337 / 1226,
  28046. bottom: 34 / 1371
  28047. }
  28048. },
  28049. taur: {
  28050. height: math.unit(7, "feet"),
  28051. name: "Taur",
  28052. image: {
  28053. source: "./media/characters/cat/taur.svg",
  28054. extra: 1345 / 1231,
  28055. bottom: 66 / 1411
  28056. }
  28057. },
  28058. lucario: {
  28059. height: math.unit(4, "feet"),
  28060. name: "Lucario",
  28061. image: {
  28062. source: "./media/characters/cat/lucario.svg",
  28063. extra: 1470 / 1318,
  28064. bottom: 65 / 1535
  28065. }
  28066. },
  28067. megaLucario: {
  28068. height: math.unit(4, "feet"),
  28069. name: "Mega Lucario",
  28070. image: {
  28071. source: "./media/characters/cat/mega-lucario.svg",
  28072. extra: 1515 / 1319,
  28073. bottom: 63 / 1578
  28074. }
  28075. },
  28076. nickit: {
  28077. height: math.unit(2, "feet"),
  28078. name: "Nickit",
  28079. image: {
  28080. source: "./media/characters/cat/nickit.svg",
  28081. extra: 1980 / 1585,
  28082. bottom: 102 / 2082
  28083. }
  28084. },
  28085. lopunnyFront: {
  28086. height: math.unit(5, "feet"),
  28087. name: "Lopunny (Front)",
  28088. image: {
  28089. source: "./media/characters/cat/lopunny-front.svg",
  28090. extra: 1782 / 1469,
  28091. bottom: 38 / 1820
  28092. }
  28093. },
  28094. lopunnyBack: {
  28095. height: math.unit(5, "feet"),
  28096. name: "Lopunny (Back)",
  28097. image: {
  28098. source: "./media/characters/cat/lopunny-back.svg",
  28099. extra: 1660 / 1490,
  28100. bottom: 25 / 1685
  28101. }
  28102. },
  28103. },
  28104. [
  28105. {
  28106. name: "Really small",
  28107. height: math.unit(1, "nm")
  28108. },
  28109. {
  28110. name: "Micro",
  28111. height: math.unit(5, "inches")
  28112. },
  28113. {
  28114. name: "Normal",
  28115. height: math.unit(5 + 6 / 12, "feet"),
  28116. default: true
  28117. },
  28118. {
  28119. name: "Macro",
  28120. height: math.unit(50, "feet")
  28121. },
  28122. {
  28123. name: "Macro+",
  28124. height: math.unit(150, "feet")
  28125. },
  28126. {
  28127. name: "Megamacro",
  28128. height: math.unit(100, "miles")
  28129. },
  28130. ]
  28131. ))
  28132. characterMakers.push(() => makeCharacter(
  28133. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28134. {
  28135. front: {
  28136. height: math.unit(63.4, "meters"),
  28137. weight: math.unit(3.28349e+6, "kilograms"),
  28138. name: "Front",
  28139. image: {
  28140. source: "./media/characters/kirina-violet/front.svg",
  28141. extra: 2812 / 2725,
  28142. bottom: 0 / 2812
  28143. }
  28144. },
  28145. back: {
  28146. height: math.unit(63.4, "meters"),
  28147. weight: math.unit(3.28349e+6, "kilograms"),
  28148. name: "Back",
  28149. image: {
  28150. source: "./media/characters/kirina-violet/back.svg",
  28151. extra: 2812 / 2725,
  28152. bottom: 0 / 2812
  28153. }
  28154. },
  28155. mouth: {
  28156. height: math.unit(4.35, "meters"),
  28157. name: "Mouth",
  28158. image: {
  28159. source: "./media/characters/kirina-violet/mouth.svg"
  28160. }
  28161. },
  28162. paw: {
  28163. height: math.unit(5.6, "meters"),
  28164. name: "Paw",
  28165. image: {
  28166. source: "./media/characters/kirina-violet/paw.svg"
  28167. }
  28168. },
  28169. tail: {
  28170. height: math.unit(18, "meters"),
  28171. name: "Tail",
  28172. image: {
  28173. source: "./media/characters/kirina-violet/tail.svg"
  28174. }
  28175. },
  28176. },
  28177. [
  28178. {
  28179. name: "Macro",
  28180. height: math.unit(63.4, "meters"),
  28181. default: true
  28182. },
  28183. ]
  28184. ))
  28185. characterMakers.push(() => makeCharacter(
  28186. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28187. {
  28188. front: {
  28189. height: math.unit(60, "feet"),
  28190. name: "Front",
  28191. image: {
  28192. source: "./media/characters/cat-gigachu/front.svg",
  28193. extra: 1024 / 780,
  28194. bottom: 23 / 1047
  28195. }
  28196. },
  28197. back: {
  28198. height: math.unit(60, "feet"),
  28199. name: "Back",
  28200. image: {
  28201. source: "./media/characters/cat-gigachu/back.svg",
  28202. extra: 1024 / 780,
  28203. bottom: 23 / 1047
  28204. }
  28205. },
  28206. },
  28207. [
  28208. {
  28209. name: "Dynamax",
  28210. height: math.unit(60, "feet"),
  28211. default: true
  28212. },
  28213. ]
  28214. ))
  28215. characterMakers.push(() => makeCharacter(
  28216. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28217. {
  28218. front: {
  28219. height: math.unit(6, "feet"),
  28220. weight: math.unit(150, "lb"),
  28221. name: "Front",
  28222. image: {
  28223. source: "./media/characters/sfaiyan/front.svg",
  28224. extra: 999 / 978,
  28225. bottom: 5 / 1004
  28226. }
  28227. },
  28228. },
  28229. [
  28230. {
  28231. name: "Normal",
  28232. height: math.unit(1.82, "meters")
  28233. },
  28234. {
  28235. name: "Giant",
  28236. height: math.unit(2.27, "km"),
  28237. default: true
  28238. },
  28239. ]
  28240. ))
  28241. characterMakers.push(() => makeCharacter(
  28242. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28243. {
  28244. front: {
  28245. height: math.unit(179, "cm"),
  28246. weight: math.unit(100, "kg"),
  28247. name: "Front",
  28248. image: {
  28249. source: "./media/characters/raunehkeli/front.svg",
  28250. extra: 1934 / 1926,
  28251. bottom: 0 / 1934
  28252. }
  28253. },
  28254. },
  28255. [
  28256. {
  28257. name: "Normal",
  28258. height: math.unit(179, "cm")
  28259. },
  28260. {
  28261. name: "Maximum",
  28262. height: math.unit(575, "meters"),
  28263. default: true
  28264. },
  28265. ]
  28266. ))
  28267. characterMakers.push(() => makeCharacter(
  28268. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28269. {
  28270. front: {
  28271. height: math.unit(6, "feet"),
  28272. weight: math.unit(150, "lb"),
  28273. name: "Front",
  28274. image: {
  28275. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28276. extra: 2625 / 2518,
  28277. bottom: 60 / 2685
  28278. }
  28279. },
  28280. },
  28281. [
  28282. {
  28283. name: "Normal",
  28284. height: math.unit(6 + 2 / 12, "feet"),
  28285. default: true
  28286. },
  28287. {
  28288. name: "Macro",
  28289. height: math.unit(1180, "feet")
  28290. },
  28291. ]
  28292. ))
  28293. characterMakers.push(() => makeCharacter(
  28294. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28295. {
  28296. front: {
  28297. height: math.unit(5 + 6 / 12, "feet"),
  28298. weight: math.unit(108, "lb"),
  28299. name: "Front",
  28300. image: {
  28301. source: "./media/characters/lilith-zott/front.svg",
  28302. extra: 2510 / 2238,
  28303. bottom: 100 / 2610
  28304. }
  28305. },
  28306. frontDressed: {
  28307. height: math.unit(5 + 6 / 12, "feet"),
  28308. weight: math.unit(108, "lb"),
  28309. name: "Front (Dressed)",
  28310. image: {
  28311. source: "./media/characters/lilith-zott/front-dressed.svg",
  28312. extra: 2510 / 2238,
  28313. bottom: 100 / 2610
  28314. }
  28315. },
  28316. },
  28317. [
  28318. {
  28319. name: "Normal",
  28320. height: math.unit(5 + 6 / 12, "feet")
  28321. },
  28322. {
  28323. name: "Macro",
  28324. height: math.unit(200, "feet"),
  28325. default: true
  28326. },
  28327. {
  28328. name: "Macro+",
  28329. height: math.unit(1030, "feet")
  28330. },
  28331. ]
  28332. ))
  28333. characterMakers.push(() => makeCharacter(
  28334. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28335. {
  28336. front: {
  28337. height: math.unit(6, "feet"),
  28338. weight: math.unit(150, "lb"),
  28339. name: "Front",
  28340. image: {
  28341. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28342. extra: 2567 / 2435,
  28343. bottom: 39 / 2606
  28344. }
  28345. },
  28346. frontSuper: {
  28347. height: math.unit(6, "feet"),
  28348. name: "Front (Super)",
  28349. image: {
  28350. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28351. extra: 2567 / 2435,
  28352. bottom: 39 / 2606
  28353. }
  28354. },
  28355. },
  28356. [
  28357. {
  28358. name: "Normal",
  28359. height: math.unit(5 + 10 / 12, "feet")
  28360. },
  28361. {
  28362. name: "Macro",
  28363. height: math.unit(220, "feet"),
  28364. default: true
  28365. },
  28366. {
  28367. name: "Macro+",
  28368. height: math.unit(1100, "feet")
  28369. },
  28370. ]
  28371. ))
  28372. characterMakers.push(() => makeCharacter(
  28373. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28374. {
  28375. front: {
  28376. height: math.unit(100, "miles"),
  28377. name: "Front",
  28378. image: {
  28379. source: "./media/characters/sona/front.svg",
  28380. extra: 2433 / 2201,
  28381. bottom: 53 / 2486
  28382. }
  28383. },
  28384. foot: {
  28385. height: math.unit(16.1, "miles"),
  28386. name: "Foot",
  28387. image: {
  28388. source: "./media/characters/sona/foot.svg"
  28389. }
  28390. },
  28391. },
  28392. [
  28393. {
  28394. name: "Macro",
  28395. height: math.unit(100, "miles"),
  28396. default: true
  28397. },
  28398. ]
  28399. ))
  28400. characterMakers.push(() => makeCharacter(
  28401. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28402. {
  28403. front: {
  28404. height: math.unit(6, "feet"),
  28405. weight: math.unit(150, "lb"),
  28406. name: "Front",
  28407. image: {
  28408. source: "./media/characters/bailey/front.svg",
  28409. extra: 1778 / 1724,
  28410. bottom: 30 / 1808
  28411. }
  28412. },
  28413. },
  28414. [
  28415. {
  28416. name: "Micro",
  28417. height: math.unit(4, "inches")
  28418. },
  28419. {
  28420. name: "Normal",
  28421. height: math.unit(5 + 5 / 12, "feet"),
  28422. default: true
  28423. },
  28424. {
  28425. name: "Macro",
  28426. height: math.unit(250, "feet")
  28427. },
  28428. {
  28429. name: "Megamacro",
  28430. height: math.unit(100, "miles")
  28431. },
  28432. ]
  28433. ))
  28434. characterMakers.push(() => makeCharacter(
  28435. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28436. {
  28437. front: {
  28438. height: math.unit(5 + 2 / 12, "feet"),
  28439. weight: math.unit(120, "lb"),
  28440. name: "Front",
  28441. image: {
  28442. source: "./media/characters/snaps/front.svg",
  28443. extra: 2370 / 2177,
  28444. bottom: 48 / 2418
  28445. }
  28446. },
  28447. back: {
  28448. height: math.unit(5 + 2 / 12, "feet"),
  28449. weight: math.unit(120, "lb"),
  28450. name: "Back",
  28451. image: {
  28452. source: "./media/characters/snaps/back.svg",
  28453. extra: 2408 / 2258,
  28454. bottom: 15 / 2423
  28455. }
  28456. },
  28457. },
  28458. [
  28459. {
  28460. name: "Micro",
  28461. height: math.unit(9, "inches")
  28462. },
  28463. {
  28464. name: "Normal",
  28465. height: math.unit(5 + 2 / 12, "feet"),
  28466. default: true
  28467. },
  28468. {
  28469. name: "Mini Macro",
  28470. height: math.unit(10, "feet")
  28471. },
  28472. ]
  28473. ))
  28474. characterMakers.push(() => makeCharacter(
  28475. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28476. {
  28477. front: {
  28478. height: math.unit(1.8, "meters"),
  28479. weight: math.unit(85, "kg"),
  28480. name: "Front",
  28481. image: {
  28482. source: "./media/characters/azteck/front.svg",
  28483. extra: 2815 / 2625,
  28484. bottom: 89 / 2904
  28485. }
  28486. },
  28487. back: {
  28488. height: math.unit(1.8, "meters"),
  28489. weight: math.unit(85, "kg"),
  28490. name: "Back",
  28491. image: {
  28492. source: "./media/characters/azteck/back.svg",
  28493. extra: 2856 / 2648,
  28494. bottom: 85 / 2941
  28495. }
  28496. },
  28497. frontDressed: {
  28498. height: math.unit(1.8, "meters"),
  28499. weight: math.unit(85, "kg"),
  28500. name: "Front (Dressed)",
  28501. image: {
  28502. source: "./media/characters/azteck/front-dressed.svg",
  28503. extra: 2147 / 2003,
  28504. bottom: 68 / 2215
  28505. }
  28506. },
  28507. head: {
  28508. height: math.unit(0.47, "meters"),
  28509. weight: math.unit(85, "kg"),
  28510. name: "Head",
  28511. image: {
  28512. source: "./media/characters/azteck/head.svg"
  28513. }
  28514. },
  28515. },
  28516. [
  28517. {
  28518. name: "Bite sized",
  28519. height: math.unit(16, "cm")
  28520. },
  28521. {
  28522. name: "Normal",
  28523. height: math.unit(1.8, "meters"),
  28524. default: true
  28525. },
  28526. ]
  28527. ))
  28528. characterMakers.push(() => makeCharacter(
  28529. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28530. {
  28531. front: {
  28532. height: math.unit(6, "feet"),
  28533. weight: math.unit(150, "lb"),
  28534. name: "Front",
  28535. image: {
  28536. source: "./media/characters/pidge/front.svg",
  28537. extra: 620 / 588,
  28538. bottom: 9 / 629
  28539. }
  28540. },
  28541. back: {
  28542. height: math.unit(6, "feet"),
  28543. weight: math.unit(150, "lb"),
  28544. name: "Back",
  28545. image: {
  28546. source: "./media/characters/pidge/back.svg",
  28547. extra: 620 / 588,
  28548. bottom: 9 / 629
  28549. }
  28550. },
  28551. },
  28552. [
  28553. {
  28554. name: "Macro",
  28555. height: math.unit(1, "mile"),
  28556. default: true
  28557. },
  28558. ]
  28559. ))
  28560. characterMakers.push(() => makeCharacter(
  28561. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28562. {
  28563. front: {
  28564. height: math.unit(6, "feet"),
  28565. weight: math.unit(150, "lb"),
  28566. name: "Front",
  28567. image: {
  28568. source: "./media/characters/en/front.svg",
  28569. extra: 1697 / 1563,
  28570. bottom: 103 / 1800
  28571. }
  28572. },
  28573. back: {
  28574. height: math.unit(6, "feet"),
  28575. weight: math.unit(150, "lb"),
  28576. name: "Back",
  28577. image: {
  28578. source: "./media/characters/en/back.svg",
  28579. extra: 1700 / 1570,
  28580. bottom: 51 / 1751
  28581. }
  28582. },
  28583. frontDressed: {
  28584. height: math.unit(6, "feet"),
  28585. weight: math.unit(150, "lb"),
  28586. name: "Front (Dressed)",
  28587. image: {
  28588. source: "./media/characters/en/front-dressed.svg",
  28589. extra: 1697 / 1563,
  28590. bottom: 103 / 1800
  28591. }
  28592. },
  28593. backDressed: {
  28594. height: math.unit(6, "feet"),
  28595. weight: math.unit(150, "lb"),
  28596. name: "Back (Dressed)",
  28597. image: {
  28598. source: "./media/characters/en/back-dressed.svg",
  28599. extra: 1700 / 1570,
  28600. bottom: 51 / 1751
  28601. }
  28602. },
  28603. },
  28604. [
  28605. {
  28606. name: "Macro",
  28607. height: math.unit(210, "feet"),
  28608. default: true
  28609. },
  28610. ]
  28611. ))
  28612. characterMakers.push(() => makeCharacter(
  28613. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28614. {
  28615. front: {
  28616. height: math.unit(6, "feet"),
  28617. weight: math.unit(150, "lb"),
  28618. name: "Front",
  28619. image: {
  28620. source: "./media/characters/haze-orris/front.svg",
  28621. extra: 3975 / 3525,
  28622. bottom: 137 / 4112
  28623. }
  28624. },
  28625. },
  28626. [
  28627. {
  28628. name: "Micro",
  28629. height: math.unit(150, "mm"),
  28630. default: true
  28631. },
  28632. ]
  28633. ))
  28634. characterMakers.push(() => makeCharacter(
  28635. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28636. {
  28637. front: {
  28638. height: math.unit(6, "feet"),
  28639. weight: math.unit(150, "lb"),
  28640. name: "Front",
  28641. image: {
  28642. source: "./media/characters/casselene-yaro/front.svg",
  28643. extra: 4721 / 4541,
  28644. bottom: 82 / 4803
  28645. }
  28646. },
  28647. back: {
  28648. height: math.unit(6, "feet"),
  28649. weight: math.unit(150, "lb"),
  28650. name: "Back",
  28651. image: {
  28652. source: "./media/characters/casselene-yaro/back.svg",
  28653. extra: 4569 / 4377,
  28654. bottom: 69 / 4638
  28655. }
  28656. },
  28657. frontDressed: {
  28658. height: math.unit(6, "feet"),
  28659. weight: math.unit(150, "lb"),
  28660. name: "Front-dressed",
  28661. image: {
  28662. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28663. extra: 4721 / 4541,
  28664. bottom: 82 / 4803
  28665. }
  28666. },
  28667. },
  28668. [
  28669. {
  28670. name: "Macro",
  28671. height: math.unit(190, "feet"),
  28672. default: true
  28673. },
  28674. ]
  28675. ))
  28676. characterMakers.push(() => makeCharacter(
  28677. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28678. {
  28679. front: {
  28680. height: math.unit(6, "feet"),
  28681. weight: math.unit(150, "lb"),
  28682. name: "Front",
  28683. image: {
  28684. source: "./media/characters/myra-rue-delore/front.svg",
  28685. extra: 1340 / 1308,
  28686. bottom: 67 / 1407
  28687. }
  28688. },
  28689. back: {
  28690. height: math.unit(6, "feet"),
  28691. weight: math.unit(150, "lb"),
  28692. name: "Back",
  28693. image: {
  28694. source: "./media/characters/myra-rue-delore/back.svg",
  28695. extra: 1341 / 1310,
  28696. bottom: 40 / 1381
  28697. }
  28698. },
  28699. frontDressed: {
  28700. height: math.unit(6, "feet"),
  28701. weight: math.unit(150, "lb"),
  28702. name: "Front (Dressed)",
  28703. image: {
  28704. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28705. extra: 1340 / 1308,
  28706. bottom: 67 / 1407
  28707. }
  28708. },
  28709. },
  28710. [
  28711. {
  28712. name: "Macro",
  28713. height: math.unit(150, "feet"),
  28714. default: true
  28715. },
  28716. ]
  28717. ))
  28718. characterMakers.push(() => makeCharacter(
  28719. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28720. {
  28721. front: {
  28722. height: math.unit(10, "feet"),
  28723. weight: math.unit(15015, "lb"),
  28724. name: "Front",
  28725. image: {
  28726. source: "./media/characters/fem!plat/front.svg",
  28727. extra: 2799 / 2604,
  28728. bottom: 149 / 2948
  28729. }
  28730. },
  28731. },
  28732. [
  28733. {
  28734. name: "Normal",
  28735. height: math.unit(10, "feet"),
  28736. default: true
  28737. },
  28738. {
  28739. name: "Macro",
  28740. height: math.unit(100, "feet")
  28741. },
  28742. {
  28743. name: "Megamacro",
  28744. height: math.unit(1000, "feet")
  28745. },
  28746. ]
  28747. ))
  28748. characterMakers.push(() => makeCharacter(
  28749. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28750. {
  28751. front: {
  28752. height: math.unit(15 + 5 / 12, "feet"),
  28753. weight: math.unit(4600, "lb"),
  28754. name: "Front",
  28755. image: {
  28756. source: "./media/characters/neapolitan-ananassa/front.svg",
  28757. extra: 2903 / 2736,
  28758. bottom: 0 / 2903
  28759. }
  28760. },
  28761. side: {
  28762. height: math.unit(15 + 5 / 12, "feet"),
  28763. weight: math.unit(4600, "lb"),
  28764. name: "Side",
  28765. image: {
  28766. source: "./media/characters/neapolitan-ananassa/side.svg",
  28767. extra: 2925 / 2719,
  28768. bottom: 0 / 2925
  28769. }
  28770. },
  28771. back: {
  28772. height: math.unit(15 + 5 / 12, "feet"),
  28773. weight: math.unit(4600, "lb"),
  28774. name: "Back",
  28775. image: {
  28776. source: "./media/characters/neapolitan-ananassa/back.svg",
  28777. extra: 2903 / 2736,
  28778. bottom: 0 / 2903
  28779. }
  28780. },
  28781. },
  28782. [
  28783. {
  28784. name: "Normal",
  28785. height: math.unit(15 + 5 / 12, "feet"),
  28786. default: true
  28787. },
  28788. {
  28789. name: "Post-Millenium",
  28790. height: math.unit(35 + 5 / 12, "feet")
  28791. },
  28792. {
  28793. name: "Post-Era",
  28794. height: math.unit(450 + 5 / 12, "feet")
  28795. },
  28796. ]
  28797. ))
  28798. characterMakers.push(() => makeCharacter(
  28799. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28800. {
  28801. front: {
  28802. height: math.unit(300, "meters"),
  28803. weight: math.unit(125000, "tonnes"),
  28804. name: "Front",
  28805. image: {
  28806. source: "./media/characters/pazuzu/front.svg",
  28807. extra: 877 / 794,
  28808. bottom: 47 / 924
  28809. }
  28810. },
  28811. },
  28812. [
  28813. {
  28814. name: "Macro",
  28815. height: math.unit(300, "meters"),
  28816. default: true
  28817. },
  28818. ]
  28819. ))
  28820. characterMakers.push(() => makeCharacter(
  28821. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28822. {
  28823. side: {
  28824. height: math.unit(10 + 7 / 12, "feet"),
  28825. weight: math.unit(2.5, "tons"),
  28826. name: "Side",
  28827. image: {
  28828. source: "./media/characters/aasha/side.svg",
  28829. extra: 1345 / 1245,
  28830. bottom: 111 / 1456
  28831. }
  28832. },
  28833. back: {
  28834. height: math.unit(10 + 7 / 12, "feet"),
  28835. weight: math.unit(2.5, "tons"),
  28836. name: "Back",
  28837. image: {
  28838. source: "./media/characters/aasha/back.svg",
  28839. extra: 1133 / 1057,
  28840. bottom: 257 / 1390
  28841. }
  28842. },
  28843. },
  28844. [
  28845. {
  28846. name: "Normal",
  28847. height: math.unit(10 + 7 / 12, "feet"),
  28848. default: true
  28849. },
  28850. ]
  28851. ))
  28852. characterMakers.push(() => makeCharacter(
  28853. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28854. {
  28855. front: {
  28856. height: math.unit(6 + 3 / 12, "feet"),
  28857. name: "Front",
  28858. image: {
  28859. source: "./media/characters/nevan/front.svg",
  28860. extra: 704 / 704,
  28861. bottom: 28 / 732
  28862. }
  28863. },
  28864. back: {
  28865. height: math.unit(6 + 3 / 12, "feet"),
  28866. name: "Back",
  28867. image: {
  28868. source: "./media/characters/nevan/back.svg",
  28869. extra: 714 / 714,
  28870. bottom: 21 / 735
  28871. }
  28872. },
  28873. frontFlaccid: {
  28874. height: math.unit(6 + 3 / 12, "feet"),
  28875. name: "Front (Flaccid)",
  28876. image: {
  28877. source: "./media/characters/nevan/front-flaccid.svg",
  28878. extra: 704 / 704,
  28879. bottom: 28 / 732
  28880. }
  28881. },
  28882. frontErect: {
  28883. height: math.unit(6 + 3 / 12, "feet"),
  28884. name: "Front (Erect)",
  28885. image: {
  28886. source: "./media/characters/nevan/front-erect.svg",
  28887. extra: 704 / 704,
  28888. bottom: 28 / 732
  28889. }
  28890. },
  28891. backFlaccid: {
  28892. height: math.unit(6 + 3 / 12, "feet"),
  28893. name: "Back (Flaccid)",
  28894. image: {
  28895. source: "./media/characters/nevan/back-flaccid.svg",
  28896. extra: 714 / 714,
  28897. bottom: 21 / 735
  28898. }
  28899. },
  28900. },
  28901. [
  28902. {
  28903. name: "Normal",
  28904. height: math.unit(6 + 3 / 12, "feet"),
  28905. default: true
  28906. },
  28907. ]
  28908. ))
  28909. characterMakers.push(() => makeCharacter(
  28910. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28911. {
  28912. front: {
  28913. height: math.unit(4, "feet"),
  28914. name: "Front",
  28915. image: {
  28916. source: "./media/characters/arhan/front.svg",
  28917. extra: 3368 / 3133,
  28918. bottom: 0 / 3368
  28919. }
  28920. },
  28921. side: {
  28922. height: math.unit(4, "feet"),
  28923. name: "Side",
  28924. image: {
  28925. source: "./media/characters/arhan/side.svg",
  28926. extra: 3347 / 3105,
  28927. bottom: 0 / 3347
  28928. }
  28929. },
  28930. tongue: {
  28931. height: math.unit(1.42, "feet"),
  28932. name: "Tongue",
  28933. image: {
  28934. source: "./media/characters/arhan/tongue.svg"
  28935. }
  28936. },
  28937. head: {
  28938. height: math.unit(0.85, "feet"),
  28939. name: "Head",
  28940. image: {
  28941. source: "./media/characters/arhan/head.svg"
  28942. }
  28943. },
  28944. },
  28945. [
  28946. {
  28947. name: "Normal",
  28948. height: math.unit(4, "feet"),
  28949. default: true
  28950. },
  28951. ]
  28952. ))
  28953. characterMakers.push(() => makeCharacter(
  28954. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28955. {
  28956. front: {
  28957. height: math.unit(5 + 7.5 / 12, "feet"),
  28958. weight: math.unit(120, "lb"),
  28959. name: "Front",
  28960. image: {
  28961. source: "./media/characters/digi-duncan/front.svg",
  28962. extra: 330 / 326,
  28963. bottom: 16 / 346
  28964. }
  28965. },
  28966. side: {
  28967. height: math.unit(5 + 7.5 / 12, "feet"),
  28968. weight: math.unit(120, "lb"),
  28969. name: "Side",
  28970. image: {
  28971. source: "./media/characters/digi-duncan/side.svg",
  28972. extra: 341 / 337,
  28973. bottom: 1 / 342
  28974. }
  28975. },
  28976. back: {
  28977. height: math.unit(5 + 7.5 / 12, "feet"),
  28978. weight: math.unit(120, "lb"),
  28979. name: "Back",
  28980. image: {
  28981. source: "./media/characters/digi-duncan/back.svg",
  28982. extra: 330 / 326,
  28983. bottom: 12 / 342
  28984. }
  28985. },
  28986. },
  28987. [
  28988. {
  28989. name: "Speck",
  28990. height: math.unit(0.25, "mm")
  28991. },
  28992. {
  28993. name: "Micro",
  28994. height: math.unit(5, "mm")
  28995. },
  28996. {
  28997. name: "Tiny",
  28998. height: math.unit(0.5, "inches"),
  28999. default: true
  29000. },
  29001. {
  29002. name: "Human",
  29003. height: math.unit(5 + 7.5 / 12, "feet")
  29004. },
  29005. {
  29006. name: "Minigiant",
  29007. height: math.unit(8 + 5.25, "feet")
  29008. },
  29009. {
  29010. name: "Giant",
  29011. height: math.unit(2000, "feet")
  29012. },
  29013. {
  29014. name: "Mega",
  29015. height: math.unit(371.1, "miles")
  29016. },
  29017. ]
  29018. ))
  29019. characterMakers.push(() => makeCharacter(
  29020. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29021. {
  29022. front: {
  29023. height: math.unit(2, "meters"),
  29024. weight: math.unit(350, "kg"),
  29025. name: "Front",
  29026. image: {
  29027. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29028. extra: 898 / 838,
  29029. bottom: 9 / 907
  29030. }
  29031. },
  29032. },
  29033. [
  29034. {
  29035. name: "Micro",
  29036. height: math.unit(8, "meters")
  29037. },
  29038. {
  29039. name: "Normal",
  29040. height: math.unit(50, "meters"),
  29041. default: true
  29042. },
  29043. {
  29044. name: "Macro",
  29045. height: math.unit(500, "meters")
  29046. },
  29047. ]
  29048. ))
  29049. characterMakers.push(() => makeCharacter(
  29050. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29051. {
  29052. front: {
  29053. height: math.unit(6 + 6 / 12, "feet"),
  29054. name: "Front",
  29055. image: {
  29056. source: "./media/characters/khardesh/front.svg",
  29057. extra: 888 / 797,
  29058. bottom: 25 / 913
  29059. }
  29060. },
  29061. },
  29062. [
  29063. {
  29064. name: "Normal",
  29065. height: math.unit(6 + 6 / 12, "feet"),
  29066. default: true
  29067. },
  29068. {
  29069. name: "Normal+",
  29070. height: math.unit(4, "meters")
  29071. },
  29072. {
  29073. name: "Macro",
  29074. height: math.unit(50, "meters")
  29075. },
  29076. {
  29077. name: "Macro+",
  29078. height: math.unit(100, "meters")
  29079. },
  29080. {
  29081. name: "Megamacro",
  29082. height: math.unit(20, "km")
  29083. },
  29084. ]
  29085. ))
  29086. characterMakers.push(() => makeCharacter(
  29087. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29088. {
  29089. front: {
  29090. height: math.unit(6, "feet"),
  29091. weight: math.unit(150, "lb"),
  29092. name: "Front",
  29093. image: {
  29094. source: "./media/characters/kosho/front.svg",
  29095. extra: 1847 / 1847,
  29096. bottom: 86 / 1933
  29097. }
  29098. },
  29099. },
  29100. [
  29101. {
  29102. name: "Second-stage micro",
  29103. height: math.unit(0.5, "inches")
  29104. },
  29105. {
  29106. name: "First-stage micro",
  29107. height: math.unit(6, "inches")
  29108. },
  29109. {
  29110. name: "Normal",
  29111. height: math.unit(6, "feet"),
  29112. default: true
  29113. },
  29114. {
  29115. name: "First-stage macro",
  29116. height: math.unit(72, "feet")
  29117. },
  29118. {
  29119. name: "Second-stage macro",
  29120. height: math.unit(864, "feet")
  29121. },
  29122. ]
  29123. ))
  29124. characterMakers.push(() => makeCharacter(
  29125. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29126. {
  29127. normal: {
  29128. height: math.unit(4 + 6 / 12, "feet"),
  29129. name: "Normal",
  29130. image: {
  29131. source: "./media/characters/hydra/normal.svg",
  29132. extra: 2833 / 2634,
  29133. bottom: 68 / 2901
  29134. }
  29135. },
  29136. smol: {
  29137. height: math.unit(0.705, "inches"),
  29138. name: "Smol",
  29139. image: {
  29140. source: "./media/characters/hydra/smol.svg",
  29141. extra: 2715 / 2540,
  29142. bottom: 0 / 2715
  29143. }
  29144. },
  29145. },
  29146. [
  29147. {
  29148. name: "Normal",
  29149. height: math.unit(4 + 6 / 12, "feet"),
  29150. default: true
  29151. }
  29152. ]
  29153. ))
  29154. characterMakers.push(() => makeCharacter(
  29155. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29156. {
  29157. front: {
  29158. height: math.unit(0.6, "cm"),
  29159. name: "Front",
  29160. image: {
  29161. source: "./media/characters/daz/front.svg",
  29162. extra: 1682 / 1164,
  29163. bottom: 42 / 1724
  29164. }
  29165. },
  29166. },
  29167. [
  29168. {
  29169. name: "Normal",
  29170. height: math.unit(0.6, "cm"),
  29171. default: true
  29172. },
  29173. ]
  29174. ))
  29175. characterMakers.push(() => makeCharacter(
  29176. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29177. {
  29178. front: {
  29179. height: math.unit(6, "feet"),
  29180. weight: math.unit(235, "lb"),
  29181. name: "Front",
  29182. image: {
  29183. source: "./media/characters/theo-pangolin/front.svg",
  29184. extra: 1996 / 1969,
  29185. bottom: 115 / 2111
  29186. }
  29187. },
  29188. back: {
  29189. height: math.unit(6, "feet"),
  29190. weight: math.unit(235, "lb"),
  29191. name: "Back",
  29192. image: {
  29193. source: "./media/characters/theo-pangolin/back.svg",
  29194. extra: 1979 / 1979,
  29195. bottom: 40 / 2019
  29196. }
  29197. },
  29198. feral: {
  29199. height: math.unit(2, "feet"),
  29200. weight: math.unit(30, "lb"),
  29201. name: "Feral",
  29202. image: {
  29203. source: "./media/characters/theo-pangolin/feral.svg",
  29204. extra: 803 / 791,
  29205. bottom: 181 / 984
  29206. }
  29207. },
  29208. footFive: {
  29209. height: math.unit(1.43, "feet"),
  29210. name: "Foot (Five Toes)",
  29211. image: {
  29212. source: "./media/characters/theo-pangolin/foot-five.svg"
  29213. }
  29214. },
  29215. footFour: {
  29216. height: math.unit(1.43, "feet"),
  29217. name: "Foot (Four Toes)",
  29218. image: {
  29219. source: "./media/characters/theo-pangolin/foot-four.svg"
  29220. }
  29221. },
  29222. handFour: {
  29223. height: math.unit(0.81, "feet"),
  29224. name: "Hand (Four Fingers)",
  29225. image: {
  29226. source: "./media/characters/theo-pangolin/hand-four.svg"
  29227. }
  29228. },
  29229. handThree: {
  29230. height: math.unit(0.81, "feet"),
  29231. name: "Hand (Three Fingers)",
  29232. image: {
  29233. source: "./media/characters/theo-pangolin/hand-three.svg"
  29234. }
  29235. },
  29236. headFront: {
  29237. height: math.unit(1.37, "feet"),
  29238. name: "Head (Front)",
  29239. image: {
  29240. source: "./media/characters/theo-pangolin/head-front.svg"
  29241. }
  29242. },
  29243. headSide: {
  29244. height: math.unit(1.43, "feet"),
  29245. name: "Head (Side)",
  29246. image: {
  29247. source: "./media/characters/theo-pangolin/head-side.svg"
  29248. }
  29249. },
  29250. tongue: {
  29251. height: math.unit(2.29, "feet"),
  29252. name: "Tongue",
  29253. image: {
  29254. source: "./media/characters/theo-pangolin/tongue.svg"
  29255. }
  29256. },
  29257. },
  29258. [
  29259. {
  29260. name: "Normal",
  29261. height: math.unit(6, "feet")
  29262. },
  29263. {
  29264. name: "Macro",
  29265. height: math.unit(400, "feet"),
  29266. default: true
  29267. },
  29268. ]
  29269. ))
  29270. characterMakers.push(() => makeCharacter(
  29271. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29272. {
  29273. front: {
  29274. height: math.unit(6, "inches"),
  29275. weight: math.unit(0.036, "kg"),
  29276. name: "Front",
  29277. image: {
  29278. source: "./media/characters/renée/front.svg",
  29279. extra: 900 / 886,
  29280. bottom: 8 / 908
  29281. }
  29282. },
  29283. },
  29284. [
  29285. {
  29286. name: "Nano",
  29287. height: math.unit(1, "nm")
  29288. },
  29289. {
  29290. name: "Micro",
  29291. height: math.unit(1, "mm")
  29292. },
  29293. {
  29294. name: "Normal",
  29295. height: math.unit(6, "inches")
  29296. },
  29297. {
  29298. name: "Macro",
  29299. height: math.unit(2000, "feet"),
  29300. default: true
  29301. },
  29302. {
  29303. name: "Megamacro",
  29304. height: math.unit(2, "km")
  29305. },
  29306. {
  29307. name: "Gigamacro",
  29308. height: math.unit(2000, "km")
  29309. },
  29310. {
  29311. name: "Teramacro",
  29312. height: math.unit(250000, "km")
  29313. },
  29314. ]
  29315. ))
  29316. characterMakers.push(() => makeCharacter(
  29317. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29318. {
  29319. front: {
  29320. height: math.unit(4, "meters"),
  29321. weight: math.unit(150, "kg"),
  29322. name: "Front",
  29323. image: {
  29324. source: "./media/characters/caledvwlch/front.svg",
  29325. extra: 1760 / 1551,
  29326. bottom: 28 / 1788
  29327. }
  29328. },
  29329. side: {
  29330. height: math.unit(4, "meters"),
  29331. weight: math.unit(150, "kg"),
  29332. name: "Side",
  29333. image: {
  29334. source: "./media/characters/caledvwlch/side.svg",
  29335. extra: 1605 / 1536,
  29336. bottom: 31 / 1636
  29337. }
  29338. },
  29339. back: {
  29340. height: math.unit(4, "meters"),
  29341. weight: math.unit(150, "kg"),
  29342. name: "Back",
  29343. image: {
  29344. source: "./media/characters/caledvwlch/back.svg",
  29345. extra: 1635 / 1565,
  29346. bottom: 27 / 1662
  29347. }
  29348. },
  29349. },
  29350. [
  29351. {
  29352. name: "\"Incognito\"",
  29353. height: math.unit(4, "meters")
  29354. },
  29355. {
  29356. name: "Small rampage",
  29357. height: math.unit(600, "meters")
  29358. },
  29359. {
  29360. name: "Mega",
  29361. height: math.unit(30, "km")
  29362. },
  29363. {
  29364. name: "Home-size",
  29365. height: math.unit(50, "km"),
  29366. default: true
  29367. },
  29368. {
  29369. name: "Giga",
  29370. height: math.unit(300, "km")
  29371. },
  29372. {
  29373. name: "Lounging",
  29374. height: math.unit(11000, "km")
  29375. },
  29376. {
  29377. name: "Planet snacking",
  29378. height: math.unit(2000000, "km")
  29379. },
  29380. ]
  29381. ))
  29382. characterMakers.push(() => makeCharacter(
  29383. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29384. {
  29385. front: {
  29386. height: math.unit(6, "feet"),
  29387. weight: math.unit(215, "lb"),
  29388. name: "Front",
  29389. image: {
  29390. source: "./media/characters/sapphire-svell/front.svg",
  29391. extra: 495 / 455,
  29392. bottom: 20 / 515
  29393. }
  29394. },
  29395. back: {
  29396. height: math.unit(6, "feet"),
  29397. weight: math.unit(216, "lb"),
  29398. name: "Back",
  29399. image: {
  29400. source: "./media/characters/sapphire-svell/back.svg",
  29401. extra: 497 / 477,
  29402. bottom: 7 / 504
  29403. }
  29404. },
  29405. maw: {
  29406. height: math.unit(1.57, "feet"),
  29407. name: "Maw",
  29408. image: {
  29409. source: "./media/characters/sapphire-svell/maw.svg"
  29410. }
  29411. },
  29412. foot: {
  29413. height: math.unit(1.07, "feet"),
  29414. name: "Foot",
  29415. image: {
  29416. source: "./media/characters/sapphire-svell/foot.svg"
  29417. }
  29418. },
  29419. toering: {
  29420. height: math.unit(1.7, "inch"),
  29421. name: "Toering",
  29422. image: {
  29423. source: "./media/characters/sapphire-svell/toering.svg"
  29424. }
  29425. },
  29426. },
  29427. [
  29428. {
  29429. name: "Normal",
  29430. height: math.unit(300, "feet"),
  29431. default: true
  29432. },
  29433. {
  29434. name: "Augmented",
  29435. height: math.unit(1250, "feet")
  29436. },
  29437. {
  29438. name: "Unleashed",
  29439. height: math.unit(3000, "feet")
  29440. },
  29441. ]
  29442. ))
  29443. characterMakers.push(() => makeCharacter(
  29444. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29445. {
  29446. side: {
  29447. height: math.unit(2 + 3 / 12, "feet"),
  29448. weight: math.unit(110, "lb"),
  29449. name: "Side",
  29450. image: {
  29451. source: "./media/characters/glitch-flux/side.svg",
  29452. extra: 997 / 805,
  29453. bottom: 20 / 1017
  29454. }
  29455. },
  29456. },
  29457. [
  29458. {
  29459. name: "Normal",
  29460. height: math.unit(2 + 3 / 12, "feet"),
  29461. default: true
  29462. },
  29463. ]
  29464. ))
  29465. characterMakers.push(() => makeCharacter(
  29466. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29467. {
  29468. front: {
  29469. height: math.unit(4, "meters"),
  29470. name: "Front",
  29471. image: {
  29472. source: "./media/characters/mid/front.svg",
  29473. extra: 507 / 476,
  29474. bottom: 17 / 524
  29475. }
  29476. },
  29477. back: {
  29478. height: math.unit(4, "meters"),
  29479. name: "Back",
  29480. image: {
  29481. source: "./media/characters/mid/back.svg",
  29482. extra: 519 / 487,
  29483. bottom: 7 / 526
  29484. }
  29485. },
  29486. stuck: {
  29487. height: math.unit(2.2, "meters"),
  29488. name: "Stuck",
  29489. image: {
  29490. source: "./media/characters/mid/stuck.svg",
  29491. extra: 1951 / 1869,
  29492. bottom: 88 / 2039
  29493. }
  29494. }
  29495. },
  29496. [
  29497. {
  29498. name: "Normal",
  29499. height: math.unit(4, "meters"),
  29500. default: true
  29501. },
  29502. {
  29503. name: "Big",
  29504. height: math.unit(10, "meters")
  29505. },
  29506. {
  29507. name: "Macro",
  29508. height: math.unit(800, "meters")
  29509. },
  29510. {
  29511. name: "Megamacro",
  29512. height: math.unit(100, "km")
  29513. },
  29514. {
  29515. name: "Overgrown",
  29516. height: math.unit(1, "parsec")
  29517. },
  29518. ]
  29519. ))
  29520. characterMakers.push(() => makeCharacter(
  29521. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29522. {
  29523. front: {
  29524. height: math.unit(2.5, "meters"),
  29525. weight: math.unit(225, "kg"),
  29526. name: "Front",
  29527. image: {
  29528. source: "./media/characters/iris/front.svg",
  29529. extra: 3348 / 3251,
  29530. bottom: 205 / 3553
  29531. }
  29532. },
  29533. maw: {
  29534. height: math.unit(0.56, "meter"),
  29535. name: "Maw",
  29536. image: {
  29537. source: "./media/characters/iris/maw.svg"
  29538. }
  29539. },
  29540. },
  29541. [
  29542. {
  29543. name: "Mewter cat",
  29544. height: math.unit(1.2, "meters")
  29545. },
  29546. {
  29547. name: "Minimacro",
  29548. height: math.unit(2.5, "meters"),
  29549. default: true
  29550. },
  29551. {
  29552. name: "Macro",
  29553. height: math.unit(180, "meters")
  29554. },
  29555. {
  29556. name: "Megamacro",
  29557. height: math.unit(2746, "meters")
  29558. },
  29559. ]
  29560. ))
  29561. characterMakers.push(() => makeCharacter(
  29562. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29563. {
  29564. front: {
  29565. height: math.unit(6, "feet"),
  29566. weight: math.unit(135, "lb"),
  29567. name: "Front",
  29568. image: {
  29569. source: "./media/characters/axel/front.svg",
  29570. extra: 908 / 908,
  29571. bottom: 58 / 966
  29572. }
  29573. },
  29574. side: {
  29575. height: math.unit(6, "feet"),
  29576. weight: math.unit(135, "lb"),
  29577. name: "Side",
  29578. image: {
  29579. source: "./media/characters/axel/side.svg",
  29580. extra: 958 / 958,
  29581. bottom: 11 / 969
  29582. }
  29583. },
  29584. back: {
  29585. height: math.unit(6, "feet"),
  29586. weight: math.unit(135, "lb"),
  29587. name: "Back",
  29588. image: {
  29589. source: "./media/characters/axel/back.svg",
  29590. extra: 887 / 887,
  29591. bottom: 34 / 921
  29592. }
  29593. },
  29594. head: {
  29595. height: math.unit(1.07, "feet"),
  29596. name: "Head",
  29597. image: {
  29598. source: "./media/characters/axel/head.svg"
  29599. }
  29600. },
  29601. beak: {
  29602. height: math.unit(1.4, "feet"),
  29603. name: "Beak",
  29604. image: {
  29605. source: "./media/characters/axel/beak.svg"
  29606. }
  29607. },
  29608. beakSide: {
  29609. height: math.unit(1.4, "feet"),
  29610. name: "Beak Side",
  29611. image: {
  29612. source: "./media/characters/axel/beak-side.svg"
  29613. }
  29614. },
  29615. sheath: {
  29616. height: math.unit(0.5, "feet"),
  29617. name: "Sheath",
  29618. image: {
  29619. source: "./media/characters/axel/sheath.svg"
  29620. }
  29621. },
  29622. dick: {
  29623. height: math.unit(0.98, "feet"),
  29624. name: "Dick",
  29625. image: {
  29626. source: "./media/characters/axel/dick.svg"
  29627. }
  29628. },
  29629. },
  29630. [
  29631. {
  29632. name: "Macro",
  29633. height: math.unit(68, "meters"),
  29634. default: true
  29635. },
  29636. ]
  29637. ))
  29638. characterMakers.push(() => makeCharacter(
  29639. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29640. {
  29641. front: {
  29642. height: math.unit(3.5, "meters"),
  29643. weight: math.unit(1200, "kg"),
  29644. name: "Front",
  29645. image: {
  29646. source: "./media/characters/joanna/front.svg",
  29647. extra: 1596 / 1488,
  29648. bottom: 29 / 1625
  29649. }
  29650. },
  29651. back: {
  29652. height: math.unit(3.5, "meters"),
  29653. weight: math.unit(1200, "kg"),
  29654. name: "Back",
  29655. image: {
  29656. source: "./media/characters/joanna/back.svg",
  29657. extra: 1594 / 1495,
  29658. bottom: 26 / 1620
  29659. }
  29660. },
  29661. frontShorts: {
  29662. height: math.unit(3.5, "meters"),
  29663. weight: math.unit(1200, "kg"),
  29664. name: "Front (Shorts)",
  29665. image: {
  29666. source: "./media/characters/joanna/front-shorts.svg",
  29667. extra: 1596 / 1488,
  29668. bottom: 29 / 1625
  29669. }
  29670. },
  29671. frontBiker: {
  29672. height: math.unit(3.5, "meters"),
  29673. weight: math.unit(1200, "kg"),
  29674. name: "Front (Biker)",
  29675. image: {
  29676. source: "./media/characters/joanna/front-biker.svg",
  29677. extra: 1596 / 1488,
  29678. bottom: 29 / 1625
  29679. }
  29680. },
  29681. backBiker: {
  29682. height: math.unit(3.5, "meters"),
  29683. weight: math.unit(1200, "kg"),
  29684. name: "Back (Biker)",
  29685. image: {
  29686. source: "./media/characters/joanna/back-biker.svg",
  29687. extra: 1594 / 1495,
  29688. bottom: 88 / 1682
  29689. }
  29690. },
  29691. bikeLeft: {
  29692. height: math.unit(2.4, "meters"),
  29693. weight: math.unit(1600, "kg"),
  29694. name: "Bike (Left)",
  29695. image: {
  29696. source: "./media/characters/joanna/bike-left.svg",
  29697. extra: 720 / 720,
  29698. bottom: 8 / 728
  29699. }
  29700. },
  29701. bikeRight: {
  29702. height: math.unit(2.4, "meters"),
  29703. weight: math.unit(1600, "kg"),
  29704. name: "Bike (Right)",
  29705. image: {
  29706. source: "./media/characters/joanna/bike-right.svg",
  29707. extra: 720 / 720,
  29708. bottom: 8 / 728
  29709. }
  29710. },
  29711. },
  29712. [
  29713. {
  29714. name: "Incognito",
  29715. height: math.unit(3.5, "meters")
  29716. },
  29717. {
  29718. name: "Casual Big",
  29719. height: math.unit(200, "meters")
  29720. },
  29721. {
  29722. name: "Macro",
  29723. height: math.unit(600, "meters")
  29724. },
  29725. {
  29726. name: "Original",
  29727. height: math.unit(20, "km"),
  29728. default: true
  29729. },
  29730. {
  29731. name: "Giga",
  29732. height: math.unit(400, "km")
  29733. },
  29734. {
  29735. name: "Lounging",
  29736. height: math.unit(1500, "km")
  29737. },
  29738. {
  29739. name: "Planetary",
  29740. height: math.unit(200000, "km")
  29741. },
  29742. ]
  29743. ))
  29744. characterMakers.push(() => makeCharacter(
  29745. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29746. {
  29747. front: {
  29748. height: math.unit(6, "feet"),
  29749. weight: math.unit(150, "lb"),
  29750. name: "Front",
  29751. image: {
  29752. source: "./media/characters/hugo-sigil/front.svg",
  29753. extra: 522 / 500,
  29754. bottom: 2 / 524
  29755. }
  29756. },
  29757. back: {
  29758. height: math.unit(6, "feet"),
  29759. weight: math.unit(150, "lb"),
  29760. name: "Back",
  29761. image: {
  29762. source: "./media/characters/hugo-sigil/back.svg",
  29763. extra: 519 / 495,
  29764. bottom: 5 / 524
  29765. }
  29766. },
  29767. maw: {
  29768. height: math.unit(1.4, "feet"),
  29769. weight: math.unit(150, "lb"),
  29770. name: "Maw",
  29771. image: {
  29772. source: "./media/characters/hugo-sigil/maw.svg"
  29773. }
  29774. },
  29775. feet: {
  29776. height: math.unit(1.56, "feet"),
  29777. weight: math.unit(150, "lb"),
  29778. name: "Feet",
  29779. image: {
  29780. source: "./media/characters/hugo-sigil/feet.svg",
  29781. extra: 177 / 177,
  29782. bottom: 12 / 189
  29783. }
  29784. },
  29785. },
  29786. [
  29787. {
  29788. name: "Normal",
  29789. height: math.unit(6, "feet")
  29790. },
  29791. {
  29792. name: "Macro",
  29793. height: math.unit(200, "feet"),
  29794. default: true
  29795. },
  29796. ]
  29797. ))
  29798. characterMakers.push(() => makeCharacter(
  29799. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29800. {
  29801. front: {
  29802. height: math.unit(6, "feet"),
  29803. weight: math.unit(150, "lb"),
  29804. name: "Front",
  29805. image: {
  29806. source: "./media/characters/peri/front.svg",
  29807. extra: 2354 / 2233,
  29808. bottom: 49 / 2403
  29809. }
  29810. },
  29811. },
  29812. [
  29813. {
  29814. name: "Really Small",
  29815. height: math.unit(1, "nm")
  29816. },
  29817. {
  29818. name: "Micro",
  29819. height: math.unit(4, "inches")
  29820. },
  29821. {
  29822. name: "Normal",
  29823. height: math.unit(7, "inches"),
  29824. default: true
  29825. },
  29826. {
  29827. name: "Macro",
  29828. height: math.unit(400, "feet")
  29829. },
  29830. {
  29831. name: "Megamacro",
  29832. height: math.unit(100, "miles")
  29833. },
  29834. ]
  29835. ))
  29836. characterMakers.push(() => makeCharacter(
  29837. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29838. {
  29839. frontSlim: {
  29840. height: math.unit(7, "feet"),
  29841. name: "Front (Slim)",
  29842. image: {
  29843. source: "./media/characters/issilora/front-slim.svg",
  29844. extra: 529 / 449,
  29845. bottom: 53 / 582
  29846. }
  29847. },
  29848. sideSlim: {
  29849. height: math.unit(7, "feet"),
  29850. name: "Side (Slim)",
  29851. image: {
  29852. source: "./media/characters/issilora/side-slim.svg",
  29853. extra: 570 / 480,
  29854. bottom: 30 / 600
  29855. }
  29856. },
  29857. backSlim: {
  29858. height: math.unit(7, "feet"),
  29859. name: "Back (Slim)",
  29860. image: {
  29861. source: "./media/characters/issilora/back-slim.svg",
  29862. extra: 537 / 455,
  29863. bottom: 46 / 583
  29864. }
  29865. },
  29866. frontBuff: {
  29867. height: math.unit(7, "feet"),
  29868. name: "Front (Buff)",
  29869. image: {
  29870. source: "./media/characters/issilora/front-buff.svg",
  29871. extra: 2310 / 2035,
  29872. bottom: 335 / 2645
  29873. }
  29874. },
  29875. head: {
  29876. height: math.unit(1.94, "feet"),
  29877. name: "Head",
  29878. image: {
  29879. source: "./media/characters/issilora/head.svg"
  29880. }
  29881. },
  29882. },
  29883. [
  29884. {
  29885. name: "Minimum",
  29886. height: math.unit(7, "feet")
  29887. },
  29888. {
  29889. name: "Comfortable",
  29890. height: math.unit(17, "feet")
  29891. },
  29892. {
  29893. name: "Fun Size",
  29894. height: math.unit(47, "feet")
  29895. },
  29896. {
  29897. name: "Natural Macro",
  29898. height: math.unit(137, "feet"),
  29899. default: true
  29900. },
  29901. {
  29902. name: "Maximum Kaiju",
  29903. height: math.unit(397, "feet")
  29904. },
  29905. ]
  29906. ))
  29907. characterMakers.push(() => makeCharacter(
  29908. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29909. {
  29910. front: {
  29911. height: math.unit(50 + 9/12, "feet"),
  29912. weight: math.unit(32.8, "tons"),
  29913. name: "Front",
  29914. image: {
  29915. source: "./media/characters/irb'iiritaahn/front.svg",
  29916. extra: 1878/1826,
  29917. bottom: 326/2204
  29918. }
  29919. },
  29920. back: {
  29921. height: math.unit(50 + 9/12, "feet"),
  29922. weight: math.unit(32.8, "tons"),
  29923. name: "Back",
  29924. image: {
  29925. source: "./media/characters/irb'iiritaahn/back.svg",
  29926. extra: 2052/2018,
  29927. bottom: 152/2204
  29928. }
  29929. },
  29930. head: {
  29931. height: math.unit(12.86, "feet"),
  29932. name: "Head",
  29933. image: {
  29934. source: "./media/characters/irb'iiritaahn/head.svg"
  29935. }
  29936. },
  29937. maw: {
  29938. height: math.unit(9.66, "feet"),
  29939. name: "Maw",
  29940. image: {
  29941. source: "./media/characters/irb'iiritaahn/maw.svg"
  29942. }
  29943. },
  29944. frontDick: {
  29945. height: math.unit(8.78461, "feet"),
  29946. name: "Front Dick",
  29947. image: {
  29948. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29949. }
  29950. },
  29951. rearDick: {
  29952. height: math.unit(8.78461, "feet"),
  29953. name: "Rear Dick",
  29954. image: {
  29955. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29956. }
  29957. },
  29958. rearDickUnfolded: {
  29959. height: math.unit(8.78, "feet"),
  29960. name: "Rear Dick (Unfolded)",
  29961. image: {
  29962. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29963. }
  29964. },
  29965. wings: {
  29966. height: math.unit(43, "feet"),
  29967. name: "Wings",
  29968. image: {
  29969. source: "./media/characters/irb'iiritaahn/wings.svg"
  29970. }
  29971. },
  29972. },
  29973. [
  29974. {
  29975. name: "Macro",
  29976. height: math.unit(50 + 9/12, "feet"),
  29977. default: true
  29978. },
  29979. ]
  29980. ))
  29981. characterMakers.push(() => makeCharacter(
  29982. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  29983. {
  29984. front: {
  29985. height: math.unit(205, "cm"),
  29986. weight: math.unit(102, "kg"),
  29987. name: "Front",
  29988. image: {
  29989. source: "./media/characters/irbisgreif/front.svg",
  29990. extra: 785/706,
  29991. bottom: 13/798
  29992. }
  29993. },
  29994. back: {
  29995. height: math.unit(205, "cm"),
  29996. weight: math.unit(102, "kg"),
  29997. name: "Back",
  29998. image: {
  29999. source: "./media/characters/irbisgreif/back.svg",
  30000. extra: 713/701,
  30001. bottom: 26/739
  30002. }
  30003. },
  30004. frontDressed: {
  30005. height: math.unit(216, "cm"),
  30006. weight: math.unit(102, "kg"),
  30007. name: "Front-dressed",
  30008. image: {
  30009. source: "./media/characters/irbisgreif/front-dressed.svg",
  30010. extra: 902/776,
  30011. bottom: 14/916
  30012. }
  30013. },
  30014. sideDressed: {
  30015. height: math.unit(195, "cm"),
  30016. weight: math.unit(102, "kg"),
  30017. name: "Side-dressed",
  30018. image: {
  30019. source: "./media/characters/irbisgreif/side-dressed.svg",
  30020. extra: 788/688,
  30021. bottom: 21/809
  30022. }
  30023. },
  30024. backDressed: {
  30025. height: math.unit(216, "cm"),
  30026. weight: math.unit(102, "kg"),
  30027. name: "Back-dressed",
  30028. image: {
  30029. source: "./media/characters/irbisgreif/back-dressed.svg",
  30030. extra: 901/783,
  30031. bottom: 10/911
  30032. }
  30033. },
  30034. dick: {
  30035. height: math.unit(0.49, "feet"),
  30036. name: "Dick",
  30037. image: {
  30038. source: "./media/characters/irbisgreif/dick.svg"
  30039. }
  30040. },
  30041. wingTop: {
  30042. height: math.unit(1.93 , "feet"),
  30043. name: "Wing-top",
  30044. image: {
  30045. source: "./media/characters/irbisgreif/wing-top.svg"
  30046. }
  30047. },
  30048. wingBottom: {
  30049. height: math.unit(1.93 , "feet"),
  30050. name: "Wing-bottom",
  30051. image: {
  30052. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30053. }
  30054. },
  30055. },
  30056. [
  30057. {
  30058. name: "Normal",
  30059. height: math.unit(216, "cm"),
  30060. default: true
  30061. },
  30062. ]
  30063. ))
  30064. characterMakers.push(() => makeCharacter(
  30065. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30066. {
  30067. front: {
  30068. height: math.unit(6, "feet"),
  30069. weight: math.unit(150, "lb"),
  30070. name: "Front",
  30071. image: {
  30072. source: "./media/characters/pride/front.svg",
  30073. extra: 1299/1230,
  30074. bottom: 18/1317
  30075. }
  30076. },
  30077. },
  30078. [
  30079. {
  30080. name: "Normal",
  30081. height: math.unit(7, "feet")
  30082. },
  30083. {
  30084. name: "Mini-macro",
  30085. height: math.unit(11, "feet")
  30086. },
  30087. {
  30088. name: "Macro",
  30089. height: math.unit(15, "meters"),
  30090. default: true
  30091. },
  30092. {
  30093. name: "Macro+",
  30094. height: math.unit(40, "meters")
  30095. },
  30096. ]
  30097. ))
  30098. characterMakers.push(() => makeCharacter(
  30099. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30100. {
  30101. front: {
  30102. height: math.unit(4 + 2 / 12, "feet"),
  30103. weight: math.unit(95, "lb"),
  30104. name: "Front",
  30105. image: {
  30106. source: "./media/characters/vaelophis-nyx/front.svg",
  30107. extra: 2532/2330,
  30108. bottom: 0/2532
  30109. }
  30110. },
  30111. back: {
  30112. height: math.unit(4 + 2 / 12, "feet"),
  30113. weight: math.unit(95, "lb"),
  30114. name: "Back",
  30115. image: {
  30116. source: "./media/characters/vaelophis-nyx/back.svg",
  30117. extra: 2484/2361,
  30118. bottom: 0/2484
  30119. }
  30120. },
  30121. feralSide: {
  30122. height: math.unit(2 + 1/12, "feet"),
  30123. weight: math.unit(20, "lb"),
  30124. name: "Feral (Side)",
  30125. image: {
  30126. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30127. extra: 1721/1581,
  30128. bottom: 70/1791
  30129. }
  30130. },
  30131. feralLazing: {
  30132. height: math.unit(1.08, "feet"),
  30133. weight: math.unit(20, "lb"),
  30134. name: "Feral (Lazing)",
  30135. image: {
  30136. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30137. extra: 822/822,
  30138. bottom: 248/1070
  30139. }
  30140. },
  30141. ear: {
  30142. height: math.unit(0.416, "feet"),
  30143. name: "Ear",
  30144. image: {
  30145. source: "./media/characters/vaelophis-nyx/ear.svg"
  30146. }
  30147. },
  30148. eye: {
  30149. height: math.unit(0.0748, "feet"),
  30150. name: "Eye",
  30151. image: {
  30152. source: "./media/characters/vaelophis-nyx/eye.svg"
  30153. }
  30154. },
  30155. mouth: {
  30156. height: math.unit(0.378, "feet"),
  30157. name: "Mouth",
  30158. image: {
  30159. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30160. }
  30161. },
  30162. spade: {
  30163. height: math.unit(0.55, "feet"),
  30164. name: "Spade",
  30165. image: {
  30166. source: "./media/characters/vaelophis-nyx/spade.svg"
  30167. }
  30168. },
  30169. },
  30170. [
  30171. {
  30172. name: "Normal",
  30173. height: math.unit(4 + 2/12, "feet"),
  30174. default: true
  30175. },
  30176. ]
  30177. ))
  30178. characterMakers.push(() => makeCharacter(
  30179. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30180. {
  30181. front: {
  30182. height: math.unit(7, "feet"),
  30183. weight: math.unit(231, "lb"),
  30184. name: "Front",
  30185. image: {
  30186. source: "./media/characters/flux/front.svg",
  30187. extra: 919/871,
  30188. bottom: 0/919
  30189. }
  30190. },
  30191. back: {
  30192. height: math.unit(7, "feet"),
  30193. weight: math.unit(231, "lb"),
  30194. name: "Back",
  30195. image: {
  30196. source: "./media/characters/flux/back.svg",
  30197. extra: 1040/992,
  30198. bottom: 0/1040
  30199. }
  30200. },
  30201. frontDressed: {
  30202. height: math.unit(7, "feet"),
  30203. weight: math.unit(231, "lb"),
  30204. name: "Front (Dressed)",
  30205. image: {
  30206. source: "./media/characters/flux/front-dressed.svg",
  30207. extra: 919/871,
  30208. bottom: 0/919
  30209. }
  30210. },
  30211. feralSide: {
  30212. height: math.unit(5, "feet"),
  30213. weight: math.unit(150, "lb"),
  30214. name: "Feral (Side)",
  30215. image: {
  30216. source: "./media/characters/flux/feral-side.svg",
  30217. extra: 598/528,
  30218. bottom: 28/626
  30219. }
  30220. },
  30221. head: {
  30222. height: math.unit(1.585, "feet"),
  30223. name: "Head",
  30224. image: {
  30225. source: "./media/characters/flux/head.svg"
  30226. }
  30227. },
  30228. headSide: {
  30229. height: math.unit(1.74, "feet"),
  30230. name: "Head (Side)",
  30231. image: {
  30232. source: "./media/characters/flux/head-side.svg"
  30233. }
  30234. },
  30235. headSideFire: {
  30236. height: math.unit(1.76, "feet"),
  30237. name: "Head (Side, Fire)",
  30238. image: {
  30239. source: "./media/characters/flux/head-side-fire.svg"
  30240. }
  30241. },
  30242. },
  30243. [
  30244. {
  30245. name: "Normal",
  30246. height: math.unit(7, "feet"),
  30247. default: true
  30248. },
  30249. ]
  30250. ))
  30251. characterMakers.push(() => makeCharacter(
  30252. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30253. {
  30254. front: {
  30255. height: math.unit(9, "feet"),
  30256. weight: math.unit(1012, "lb"),
  30257. name: "Front",
  30258. image: {
  30259. source: "./media/characters/ulfra-lupae/front.svg",
  30260. extra: 1083/1011,
  30261. bottom: 67/1150
  30262. }
  30263. },
  30264. },
  30265. [
  30266. {
  30267. name: "Micro",
  30268. height: math.unit(6, "inches")
  30269. },
  30270. {
  30271. name: "Socializing",
  30272. height: math.unit(6 + 5/12, "feet")
  30273. },
  30274. {
  30275. name: "Normal",
  30276. height: math.unit(9, "feet"),
  30277. default: true
  30278. },
  30279. {
  30280. name: "Macro",
  30281. height: math.unit(150, "feet")
  30282. },
  30283. ]
  30284. ))
  30285. characterMakers.push(() => makeCharacter(
  30286. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30287. {
  30288. front: {
  30289. height: math.unit(5 + 2/12, "feet"),
  30290. weight: math.unit(120, "lb"),
  30291. name: "Front",
  30292. image: {
  30293. source: "./media/characters/timber/front.svg",
  30294. extra: 2814/2705,
  30295. bottom: 181/2995
  30296. }
  30297. },
  30298. },
  30299. [
  30300. {
  30301. name: "Normal",
  30302. height: math.unit(5 + 2/12, "feet"),
  30303. default: true
  30304. },
  30305. ]
  30306. ))
  30307. characterMakers.push(() => makeCharacter(
  30308. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30309. {
  30310. front: {
  30311. height: math.unit(5 + 7/12, "feet"),
  30312. weight: math.unit(220, "lb"),
  30313. name: "Front",
  30314. image: {
  30315. source: "./media/characters/nicki/front.svg",
  30316. extra: 453/419,
  30317. bottom: 7/460
  30318. }
  30319. },
  30320. frontAlt: {
  30321. height: math.unit(5 + 7/12, "feet"),
  30322. weight: math.unit(220, "lb"),
  30323. name: "Front-alt",
  30324. image: {
  30325. source: "./media/characters/nicki/front-alt.svg",
  30326. extra: 435/411,
  30327. bottom: 12/447
  30328. }
  30329. },
  30330. back: {
  30331. height: math.unit(5 + 7/12, "feet"),
  30332. weight: math.unit(220, "lb"),
  30333. name: "Back",
  30334. image: {
  30335. source: "./media/characters/nicki/back.svg",
  30336. extra: 440/413,
  30337. bottom: 19/459
  30338. }
  30339. },
  30340. taur: {
  30341. height: math.unit(7 + 6/12, "feet"),
  30342. weight: math.unit(700, "lb"),
  30343. name: "Taur",
  30344. image: {
  30345. source: "./media/characters/nicki/taur.svg",
  30346. extra: 975/773,
  30347. bottom: 0/975
  30348. }
  30349. },
  30350. frontNsfw: {
  30351. height: math.unit(5 + 7/12, "feet"),
  30352. weight: math.unit(220, "lb"),
  30353. name: "Front (NSFW)",
  30354. image: {
  30355. source: "./media/characters/nicki/front-nsfw.svg",
  30356. extra: 453/419,
  30357. bottom: 7/460
  30358. }
  30359. },
  30360. frontNsfwAlt: {
  30361. height: math.unit(5 + 7/12, "feet"),
  30362. weight: math.unit(220, "lb"),
  30363. name: "Front (Alt, NSFW)",
  30364. image: {
  30365. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30366. extra: 435/411,
  30367. bottom: 12/447
  30368. }
  30369. },
  30370. backNsfw: {
  30371. height: math.unit(5 + 7/12, "feet"),
  30372. weight: math.unit(220, "lb"),
  30373. name: "Back (NSFW)",
  30374. image: {
  30375. source: "./media/characters/nicki/back-nsfw.svg",
  30376. extra: 440/413,
  30377. bottom: 19/459
  30378. }
  30379. },
  30380. head: {
  30381. height: math.unit(2.1, "feet"),
  30382. name: "Head",
  30383. image: {
  30384. source: "./media/characters/nicki/head.svg"
  30385. }
  30386. },
  30387. paw: {
  30388. height: math.unit(1.88, "feet"),
  30389. name: "Paw",
  30390. image: {
  30391. source: "./media/characters/nicki/paw.svg"
  30392. }
  30393. },
  30394. },
  30395. [
  30396. {
  30397. name: "Normal",
  30398. height: math.unit(5 + 7/12, "feet"),
  30399. default: true
  30400. },
  30401. ]
  30402. ))
  30403. characterMakers.push(() => makeCharacter(
  30404. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30405. {
  30406. front: {
  30407. height: math.unit(7 + 10/12, "feet"),
  30408. weight: math.unit(3.5, "tons"),
  30409. name: "Front",
  30410. image: {
  30411. source: "./media/characters/lee/front.svg",
  30412. extra: 1773/1615,
  30413. bottom: 86/1859
  30414. }
  30415. },
  30416. hand: {
  30417. height: math.unit(1.78, "feet"),
  30418. name: "Hand",
  30419. image: {
  30420. source: "./media/characters/lee/hand.svg"
  30421. }
  30422. },
  30423. maw: {
  30424. height: math.unit(1.18, "feet"),
  30425. name: "Maw",
  30426. image: {
  30427. source: "./media/characters/lee/maw.svg"
  30428. }
  30429. },
  30430. },
  30431. [
  30432. {
  30433. name: "Normal",
  30434. height: math.unit(7 + 10/12, "feet"),
  30435. default: true
  30436. },
  30437. ]
  30438. ))
  30439. characterMakers.push(() => makeCharacter(
  30440. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30441. {
  30442. front: {
  30443. height: math.unit(9, "feet"),
  30444. name: "Front",
  30445. image: {
  30446. source: "./media/characters/guti/front.svg",
  30447. extra: 4551/4355,
  30448. bottom: 123/4674
  30449. }
  30450. },
  30451. tongue: {
  30452. height: math.unit(1, "feet"),
  30453. name: "Tongue",
  30454. image: {
  30455. source: "./media/characters/guti/tongue.svg"
  30456. }
  30457. },
  30458. paw: {
  30459. height: math.unit(1.18, "feet"),
  30460. name: "Paw",
  30461. image: {
  30462. source: "./media/characters/guti/paw.svg"
  30463. }
  30464. },
  30465. },
  30466. [
  30467. {
  30468. name: "Normal",
  30469. height: math.unit(9, "feet"),
  30470. default: true
  30471. },
  30472. ]
  30473. ))
  30474. characterMakers.push(() => makeCharacter(
  30475. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30476. {
  30477. side: {
  30478. height: math.unit(5, "meters"),
  30479. name: "Side",
  30480. image: {
  30481. source: "./media/characters/vesper/side.svg",
  30482. extra: 1605/1518,
  30483. bottom: 0/1605
  30484. }
  30485. },
  30486. },
  30487. [
  30488. {
  30489. name: "Small",
  30490. height: math.unit(5, "meters")
  30491. },
  30492. {
  30493. name: "Sage",
  30494. height: math.unit(100, "meters"),
  30495. default: true
  30496. },
  30497. {
  30498. name: "Fun Size",
  30499. height: math.unit(600, "meters")
  30500. },
  30501. {
  30502. name: "Goddess",
  30503. height: math.unit(20000, "km")
  30504. },
  30505. {
  30506. name: "Maximum",
  30507. height: math.unit(5, "galaxies")
  30508. },
  30509. ]
  30510. ))
  30511. characterMakers.push(() => makeCharacter(
  30512. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30513. {
  30514. front: {
  30515. height: math.unit(6 + 3/12, "feet"),
  30516. weight: math.unit(190, "lb"),
  30517. name: "Front",
  30518. image: {
  30519. source: "./media/characters/gawain/front.svg",
  30520. extra: 2222/2139,
  30521. bottom: 90/2312
  30522. }
  30523. },
  30524. back: {
  30525. height: math.unit(6 + 3/12, "feet"),
  30526. weight: math.unit(190, "lb"),
  30527. name: "Back",
  30528. image: {
  30529. source: "./media/characters/gawain/back.svg",
  30530. extra: 2199/2111,
  30531. bottom: 73/2272
  30532. }
  30533. },
  30534. },
  30535. [
  30536. {
  30537. name: "Normal",
  30538. height: math.unit(6 + 3/12, "feet"),
  30539. default: true
  30540. },
  30541. ]
  30542. ))
  30543. characterMakers.push(() => makeCharacter(
  30544. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30545. {
  30546. side: {
  30547. height: math.unit(3.5, "meters"),
  30548. weight: math.unit(16000, "lb"),
  30549. name: "Side",
  30550. image: {
  30551. source: "./media/characters/dascalti/side.svg",
  30552. extra: 392/273,
  30553. bottom: 47/439
  30554. }
  30555. },
  30556. breath: {
  30557. height: math.unit(7.4, "feet"),
  30558. name: "Breath",
  30559. image: {
  30560. source: "./media/characters/dascalti/breath.svg"
  30561. }
  30562. },
  30563. fed: {
  30564. height: math.unit(3.6, "meters"),
  30565. weight: math.unit(16000, "lb"),
  30566. name: "Fed",
  30567. image: {
  30568. source: "./media/characters/dascalti/fed.svg",
  30569. extra: 1419/820,
  30570. bottom: 95/1514
  30571. }
  30572. },
  30573. },
  30574. [
  30575. {
  30576. name: "Normal",
  30577. height: math.unit(3.5, "meters"),
  30578. default: true
  30579. },
  30580. ]
  30581. ))
  30582. characterMakers.push(() => makeCharacter(
  30583. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30584. {
  30585. front: {
  30586. height: math.unit(3 + 5/12, "feet"),
  30587. name: "Front",
  30588. image: {
  30589. source: "./media/characters/mauve/front.svg",
  30590. extra: 1126/1033,
  30591. bottom: 65/1191
  30592. }
  30593. },
  30594. side: {
  30595. height: math.unit(3 + 5/12, "feet"),
  30596. name: "Side",
  30597. image: {
  30598. source: "./media/characters/mauve/side.svg",
  30599. extra: 1089/1001,
  30600. bottom: 29/1118
  30601. }
  30602. },
  30603. back: {
  30604. height: math.unit(3 + 5/12, "feet"),
  30605. name: "Back",
  30606. image: {
  30607. source: "./media/characters/mauve/back.svg",
  30608. extra: 1173/1053,
  30609. bottom: 109/1282
  30610. }
  30611. },
  30612. },
  30613. [
  30614. {
  30615. name: "Normal",
  30616. height: math.unit(3 + 5/12, "feet"),
  30617. default: true
  30618. },
  30619. ]
  30620. ))
  30621. characterMakers.push(() => makeCharacter(
  30622. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30623. {
  30624. front: {
  30625. height: math.unit(6 + 3/12, "feet"),
  30626. weight: math.unit(430, "lb"),
  30627. name: "Front",
  30628. image: {
  30629. source: "./media/characters/carlos/front.svg",
  30630. extra: 1964/1913,
  30631. bottom: 70/2034
  30632. }
  30633. },
  30634. },
  30635. [
  30636. {
  30637. name: "Normal",
  30638. height: math.unit(6 + 3/12, "feet"),
  30639. default: true
  30640. },
  30641. ]
  30642. ))
  30643. characterMakers.push(() => makeCharacter(
  30644. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30645. {
  30646. back: {
  30647. height: math.unit(5 + 10/12, "feet"),
  30648. weight: math.unit(200, "lb"),
  30649. name: "Back",
  30650. image: {
  30651. source: "./media/characters/jax/back.svg",
  30652. extra: 764/739,
  30653. bottom: 25/789
  30654. }
  30655. },
  30656. },
  30657. [
  30658. {
  30659. name: "Normal",
  30660. height: math.unit(5 + 10/12, "feet"),
  30661. default: true
  30662. },
  30663. ]
  30664. ))
  30665. characterMakers.push(() => makeCharacter(
  30666. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30667. {
  30668. front: {
  30669. height: math.unit(8, "feet"),
  30670. weight: math.unit(250, "lb"),
  30671. name: "Front",
  30672. image: {
  30673. source: "./media/characters/eikthynir/front.svg",
  30674. extra: 1332/1166,
  30675. bottom: 82/1414
  30676. }
  30677. },
  30678. back: {
  30679. height: math.unit(8, "feet"),
  30680. weight: math.unit(250, "lb"),
  30681. name: "Back",
  30682. image: {
  30683. source: "./media/characters/eikthynir/back.svg",
  30684. extra: 1342/1190,
  30685. bottom: 19/1361
  30686. }
  30687. },
  30688. dick: {
  30689. height: math.unit(2.35, "feet"),
  30690. name: "Dick",
  30691. image: {
  30692. source: "./media/characters/eikthynir/dick.svg"
  30693. }
  30694. },
  30695. },
  30696. [
  30697. {
  30698. name: "Normal",
  30699. height: math.unit(8, "feet"),
  30700. default: true
  30701. },
  30702. ]
  30703. ))
  30704. characterMakers.push(() => makeCharacter(
  30705. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30706. {
  30707. front: {
  30708. height: math.unit(99, "meters"),
  30709. weight: math.unit(13000, "tons"),
  30710. name: "Front",
  30711. image: {
  30712. source: "./media/characters/zlmos/front.svg",
  30713. extra: 2202/1992,
  30714. bottom: 315/2517
  30715. }
  30716. },
  30717. },
  30718. [
  30719. {
  30720. name: "Macro",
  30721. height: math.unit(99, "meters"),
  30722. default: true
  30723. },
  30724. ]
  30725. ))
  30726. characterMakers.push(() => makeCharacter(
  30727. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30728. {
  30729. front: {
  30730. height: math.unit(6 + 5/12, "feet"),
  30731. name: "Front",
  30732. image: {
  30733. source: "./media/characters/purri/front.svg",
  30734. extra: 1698/1610,
  30735. bottom: 32/1730
  30736. }
  30737. },
  30738. frontAlt: {
  30739. height: math.unit(6 + 5/12, "feet"),
  30740. name: "Front (Alt)",
  30741. image: {
  30742. source: "./media/characters/purri/front-alt.svg",
  30743. extra: 450/420,
  30744. bottom: 26/476
  30745. }
  30746. },
  30747. boots: {
  30748. height: math.unit(5.5, "feet"),
  30749. name: "Boots",
  30750. image: {
  30751. source: "./media/characters/purri/boots.svg",
  30752. extra: 905/853,
  30753. bottom: 18/923
  30754. }
  30755. },
  30756. lying: {
  30757. height: math.unit(2, "feet"),
  30758. name: "Lying",
  30759. image: {
  30760. source: "./media/characters/purri/lying.svg",
  30761. extra: 940/843,
  30762. bottom: 146/1086
  30763. }
  30764. },
  30765. devious: {
  30766. height: math.unit(1.77, "feet"),
  30767. name: "Devious",
  30768. image: {
  30769. source: "./media/characters/purri/devious.svg",
  30770. extra: 1440/1155,
  30771. bottom: 147/1587
  30772. }
  30773. },
  30774. bean: {
  30775. height: math.unit(1.94, "feet"),
  30776. name: "Bean",
  30777. image: {
  30778. source: "./media/characters/purri/bean.svg"
  30779. }
  30780. },
  30781. },
  30782. [
  30783. {
  30784. name: "Micro",
  30785. height: math.unit(1, "mm")
  30786. },
  30787. {
  30788. name: "Normal",
  30789. height: math.unit(6 + 5/12, "feet"),
  30790. default: true
  30791. },
  30792. {
  30793. name: "Macro :3c",
  30794. height: math.unit(2, "miles")
  30795. },
  30796. ]
  30797. ))
  30798. characterMakers.push(() => makeCharacter(
  30799. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30800. {
  30801. front: {
  30802. height: math.unit(6 + 2/12, "feet"),
  30803. weight: math.unit(250, "lb"),
  30804. name: "Front",
  30805. image: {
  30806. source: "./media/characters/moonlight/front.svg",
  30807. extra: 1044/908,
  30808. bottom: 56/1100
  30809. }
  30810. },
  30811. paw: {
  30812. height: math.unit(1, "feet"),
  30813. name: "Paw",
  30814. image: {
  30815. source: "./media/characters/moonlight/paw.svg"
  30816. }
  30817. },
  30818. paws: {
  30819. height: math.unit(0.98, "feet"),
  30820. name: "Paws",
  30821. image: {
  30822. source: "./media/characters/moonlight/paws.svg",
  30823. extra: 939/939,
  30824. bottom: 50/989
  30825. }
  30826. },
  30827. mouth: {
  30828. height: math.unit(0.48, "feet"),
  30829. name: "Mouth",
  30830. image: {
  30831. source: "./media/characters/moonlight/mouth.svg"
  30832. }
  30833. },
  30834. dick: {
  30835. height: math.unit(1.46, "feet"),
  30836. name: "Dick",
  30837. image: {
  30838. source: "./media/characters/moonlight/dick.svg"
  30839. }
  30840. },
  30841. },
  30842. [
  30843. {
  30844. name: "Normal",
  30845. height: math.unit(6 + 2/12, "feet"),
  30846. default: true
  30847. },
  30848. {
  30849. name: "Macro",
  30850. height: math.unit(300, "feet")
  30851. },
  30852. {
  30853. name: "Macro+",
  30854. height: math.unit(1, "mile")
  30855. },
  30856. {
  30857. name: "Mt. Moon",
  30858. height: math.unit(5, "miles")
  30859. },
  30860. {
  30861. name: "Megamacro",
  30862. height: math.unit(15, "miles")
  30863. },
  30864. ]
  30865. ))
  30866. characterMakers.push(() => makeCharacter(
  30867. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30868. {
  30869. back: {
  30870. height: math.unit(6, "feet"),
  30871. weight: math.unit(150, "lb"),
  30872. name: "Back",
  30873. image: {
  30874. source: "./media/characters/sylen/back.svg",
  30875. extra: 1335/1273,
  30876. bottom: 107/1442
  30877. }
  30878. },
  30879. },
  30880. [
  30881. {
  30882. name: "Normal",
  30883. height: math.unit(5 + 5/12, "feet")
  30884. },
  30885. {
  30886. name: "Megamacro",
  30887. height: math.unit(3, "miles"),
  30888. default: true
  30889. },
  30890. ]
  30891. ))
  30892. characterMakers.push(() => makeCharacter(
  30893. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30894. {
  30895. front: {
  30896. height: math.unit(6, "feet"),
  30897. weight: math.unit(190, "lb"),
  30898. name: "Front",
  30899. image: {
  30900. source: "./media/characters/huttser/front.svg",
  30901. extra: 1152/1058,
  30902. bottom: 23/1175
  30903. }
  30904. },
  30905. side: {
  30906. height: math.unit(6, "feet"),
  30907. weight: math.unit(190, "lb"),
  30908. name: "Side",
  30909. image: {
  30910. source: "./media/characters/huttser/side.svg",
  30911. extra: 1174/1065,
  30912. bottom: 18/1192
  30913. }
  30914. },
  30915. back: {
  30916. height: math.unit(6, "feet"),
  30917. weight: math.unit(190, "lb"),
  30918. name: "Back",
  30919. image: {
  30920. source: "./media/characters/huttser/back.svg",
  30921. extra: 1158/1056,
  30922. bottom: 12/1170
  30923. }
  30924. },
  30925. },
  30926. [
  30927. ]
  30928. ))
  30929. characterMakers.push(() => makeCharacter(
  30930. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30931. {
  30932. side: {
  30933. height: math.unit(12 + 9/12, "feet"),
  30934. weight: math.unit(15000, "lb"),
  30935. name: "Side",
  30936. image: {
  30937. source: "./media/characters/faan/side.svg",
  30938. extra: 2747/2697,
  30939. bottom: 0/2747
  30940. }
  30941. },
  30942. front: {
  30943. height: math.unit(12 + 9/12, "feet"),
  30944. weight: math.unit(15000, "lb"),
  30945. name: "Front",
  30946. image: {
  30947. source: "./media/characters/faan/front.svg",
  30948. extra: 607/571,
  30949. bottom: 24/631
  30950. }
  30951. },
  30952. head: {
  30953. height: math.unit(2.85, "feet"),
  30954. name: "Head",
  30955. image: {
  30956. source: "./media/characters/faan/head.svg"
  30957. }
  30958. },
  30959. headAlt: {
  30960. height: math.unit(3.13, "feet"),
  30961. name: "Head-alt",
  30962. image: {
  30963. source: "./media/characters/faan/head-alt.svg"
  30964. }
  30965. },
  30966. },
  30967. [
  30968. {
  30969. name: "Normal",
  30970. height: math.unit(12 + 9/12, "feet"),
  30971. default: true
  30972. },
  30973. ]
  30974. ))
  30975. characterMakers.push(() => makeCharacter(
  30976. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  30977. {
  30978. front: {
  30979. height: math.unit(6, "feet"),
  30980. weight: math.unit(300, "lb"),
  30981. name: "Front",
  30982. image: {
  30983. source: "./media/characters/tanio/front.svg",
  30984. extra: 711/673,
  30985. bottom: 25/736
  30986. }
  30987. },
  30988. },
  30989. [
  30990. {
  30991. name: "Normal",
  30992. height: math.unit(6, "feet"),
  30993. default: true
  30994. },
  30995. ]
  30996. ))
  30997. characterMakers.push(() => makeCharacter(
  30998. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  30999. {
  31000. front: {
  31001. height: math.unit(3, "inches"),
  31002. name: "Front",
  31003. image: {
  31004. source: "./media/characters/noboru/front.svg",
  31005. extra: 1039/932,
  31006. bottom: 18/1057
  31007. }
  31008. },
  31009. },
  31010. [
  31011. {
  31012. name: "Micro",
  31013. height: math.unit(3, "inches"),
  31014. default: true
  31015. },
  31016. ]
  31017. ))
  31018. characterMakers.push(() => makeCharacter(
  31019. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31020. {
  31021. front: {
  31022. height: math.unit(1.85, "meters"),
  31023. weight: math.unit(80, "kg"),
  31024. name: "Front",
  31025. image: {
  31026. source: "./media/characters/daniel-barrett/front.svg",
  31027. extra: 355/337,
  31028. bottom: 9/364
  31029. }
  31030. },
  31031. },
  31032. [
  31033. {
  31034. name: "Pico",
  31035. height: math.unit(0.0433, "mm")
  31036. },
  31037. {
  31038. name: "Nano",
  31039. height: math.unit(1.5, "mm")
  31040. },
  31041. {
  31042. name: "Micro",
  31043. height: math.unit(5.3, "cm"),
  31044. default: true
  31045. },
  31046. {
  31047. name: "Normal",
  31048. height: math.unit(1.85, "meters")
  31049. },
  31050. {
  31051. name: "Macro",
  31052. height: math.unit(64.7, "meters")
  31053. },
  31054. {
  31055. name: "Megamacro",
  31056. height: math.unit(2.26, "km")
  31057. },
  31058. {
  31059. name: "Gigamacro",
  31060. height: math.unit(79, "km")
  31061. },
  31062. {
  31063. name: "Teramacro",
  31064. height: math.unit(2765, "km")
  31065. },
  31066. {
  31067. name: "Petamacro",
  31068. height: math.unit(96678, "km")
  31069. },
  31070. ]
  31071. ))
  31072. characterMakers.push(() => makeCharacter(
  31073. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31074. {
  31075. front: {
  31076. height: math.unit(30, "meters"),
  31077. weight: math.unit(400, "tons"),
  31078. name: "Front",
  31079. image: {
  31080. source: "./media/characters/zeel/front.svg",
  31081. extra: 2599/2599,
  31082. bottom: 226/2825
  31083. }
  31084. },
  31085. },
  31086. [
  31087. {
  31088. name: "Macro",
  31089. height: math.unit(30, "meters"),
  31090. default: true
  31091. },
  31092. ]
  31093. ))
  31094. characterMakers.push(() => makeCharacter(
  31095. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31096. {
  31097. front: {
  31098. height: math.unit(6 + 7/12, "feet"),
  31099. weight: math.unit(210, "lb"),
  31100. name: "Front",
  31101. image: {
  31102. source: "./media/characters/tarn/front.svg",
  31103. extra: 3517/3220,
  31104. bottom: 91/3608
  31105. }
  31106. },
  31107. back: {
  31108. height: math.unit(6 + 7/12, "feet"),
  31109. weight: math.unit(210, "lb"),
  31110. name: "Back",
  31111. image: {
  31112. source: "./media/characters/tarn/back.svg",
  31113. extra: 3566/3241,
  31114. bottom: 34/3600
  31115. }
  31116. },
  31117. dick: {
  31118. height: math.unit(1.65, "feet"),
  31119. name: "Dick",
  31120. image: {
  31121. source: "./media/characters/tarn/dick.svg"
  31122. }
  31123. },
  31124. paw: {
  31125. height: math.unit(1.80, "feet"),
  31126. name: "Paw",
  31127. image: {
  31128. source: "./media/characters/tarn/paw.svg"
  31129. }
  31130. },
  31131. tongue: {
  31132. height: math.unit(0.97, "feet"),
  31133. name: "Tongue",
  31134. image: {
  31135. source: "./media/characters/tarn/tongue.svg"
  31136. }
  31137. },
  31138. },
  31139. [
  31140. {
  31141. name: "Micro",
  31142. height: math.unit(4, "inches")
  31143. },
  31144. {
  31145. name: "Normal",
  31146. height: math.unit(6 + 7/12, "feet"),
  31147. default: true
  31148. },
  31149. {
  31150. name: "Macro",
  31151. height: math.unit(300, "feet")
  31152. },
  31153. ]
  31154. ))
  31155. characterMakers.push(() => makeCharacter(
  31156. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31157. {
  31158. front: {
  31159. height: math.unit(5 + 7/12, "feet"),
  31160. weight: math.unit(80, "kg"),
  31161. name: "Front",
  31162. image: {
  31163. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31164. extra: 3023/2865,
  31165. bottom: 33/3056
  31166. }
  31167. },
  31168. back: {
  31169. height: math.unit(5 + 7/12, "feet"),
  31170. weight: math.unit(80, "kg"),
  31171. name: "Back",
  31172. image: {
  31173. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31174. extra: 3020/2886,
  31175. bottom: 30/3050
  31176. }
  31177. },
  31178. dick: {
  31179. height: math.unit(0.98, "feet"),
  31180. name: "Dick",
  31181. image: {
  31182. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31183. }
  31184. },
  31185. anatomy: {
  31186. height: math.unit(2.86, "feet"),
  31187. name: "Anatomy",
  31188. image: {
  31189. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31190. }
  31191. },
  31192. },
  31193. [
  31194. {
  31195. name: "Really Small",
  31196. height: math.unit(2, "inches")
  31197. },
  31198. {
  31199. name: "Micro",
  31200. height: math.unit(5.583, "inches")
  31201. },
  31202. {
  31203. name: "Normal",
  31204. height: math.unit(5 + 7/12, "feet"),
  31205. default: true
  31206. },
  31207. {
  31208. name: "Macro",
  31209. height: math.unit(67, "feet")
  31210. },
  31211. {
  31212. name: "Megamacro",
  31213. height: math.unit(134, "feet")
  31214. },
  31215. ]
  31216. ))
  31217. characterMakers.push(() => makeCharacter(
  31218. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31219. {
  31220. front: {
  31221. height: math.unit(9, "feet"),
  31222. weight: math.unit(120, "lb"),
  31223. name: "Front",
  31224. image: {
  31225. source: "./media/characters/sally/front.svg",
  31226. extra: 1506/1349,
  31227. bottom: 66/1572
  31228. }
  31229. },
  31230. },
  31231. [
  31232. {
  31233. name: "Normal",
  31234. height: math.unit(9, "feet"),
  31235. default: true
  31236. },
  31237. ]
  31238. ))
  31239. characterMakers.push(() => makeCharacter(
  31240. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31241. {
  31242. front: {
  31243. height: math.unit(8, "feet"),
  31244. weight: math.unit(900, "lb"),
  31245. name: "Front",
  31246. image: {
  31247. source: "./media/characters/owen/front.svg",
  31248. extra: 1761/1657,
  31249. bottom: 74/1835
  31250. }
  31251. },
  31252. side: {
  31253. height: math.unit(8, "feet"),
  31254. weight: math.unit(900, "lb"),
  31255. name: "Side",
  31256. image: {
  31257. source: "./media/characters/owen/side.svg",
  31258. extra: 1797/1734,
  31259. bottom: 30/1827
  31260. }
  31261. },
  31262. back: {
  31263. height: math.unit(8, "feet"),
  31264. weight: math.unit(900, "lb"),
  31265. name: "Back",
  31266. image: {
  31267. source: "./media/characters/owen/back.svg",
  31268. extra: 1796/1706,
  31269. bottom: 59/1855
  31270. }
  31271. },
  31272. maw: {
  31273. height: math.unit(1.76, "feet"),
  31274. name: "Maw",
  31275. image: {
  31276. source: "./media/characters/owen/maw.svg"
  31277. }
  31278. },
  31279. },
  31280. [
  31281. {
  31282. name: "Normal",
  31283. height: math.unit(8, "feet"),
  31284. default: true
  31285. },
  31286. ]
  31287. ))
  31288. characterMakers.push(() => makeCharacter(
  31289. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31290. {
  31291. front: {
  31292. height: math.unit(4, "feet"),
  31293. weight: math.unit(400, "lb"),
  31294. name: "Front",
  31295. image: {
  31296. source: "./media/characters/ryth/front.svg",
  31297. extra: 876/691,
  31298. bottom: 25/901
  31299. }
  31300. },
  31301. },
  31302. [
  31303. {
  31304. name: "Normal",
  31305. height: math.unit(4, "feet"),
  31306. default: true
  31307. },
  31308. ]
  31309. ))
  31310. characterMakers.push(() => makeCharacter(
  31311. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31312. {
  31313. front: {
  31314. height: math.unit(7, "feet"),
  31315. weight: math.unit(180, "lb"),
  31316. name: "Front",
  31317. image: {
  31318. source: "./media/characters/necrolance/front.svg",
  31319. extra: 1062/947,
  31320. bottom: 41/1103
  31321. }
  31322. },
  31323. back: {
  31324. height: math.unit(7, "feet"),
  31325. weight: math.unit(180, "lb"),
  31326. name: "Back",
  31327. image: {
  31328. source: "./media/characters/necrolance/back.svg",
  31329. extra: 1045/984,
  31330. bottom: 14/1059
  31331. }
  31332. },
  31333. wing: {
  31334. height: math.unit(2.67, "feet"),
  31335. name: "Wing",
  31336. image: {
  31337. source: "./media/characters/necrolance/wing.svg"
  31338. }
  31339. },
  31340. },
  31341. [
  31342. {
  31343. name: "Normal",
  31344. height: math.unit(7, "feet"),
  31345. default: true
  31346. },
  31347. ]
  31348. ))
  31349. characterMakers.push(() => makeCharacter(
  31350. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31351. {
  31352. front: {
  31353. height: math.unit(76, "meters"),
  31354. weight: math.unit(30000, "tons"),
  31355. name: "Front",
  31356. image: {
  31357. source: "./media/characters/tyler/front.svg",
  31358. extra: 1640/1640,
  31359. bottom: 114/1754
  31360. }
  31361. },
  31362. },
  31363. [
  31364. {
  31365. name: "Macro",
  31366. height: math.unit(76, "meters"),
  31367. default: true
  31368. },
  31369. ]
  31370. ))
  31371. characterMakers.push(() => makeCharacter(
  31372. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31373. {
  31374. front: {
  31375. height: math.unit(4 + 11/12, "feet"),
  31376. weight: math.unit(132, "lb"),
  31377. name: "Front",
  31378. image: {
  31379. source: "./media/characters/icey/front.svg",
  31380. extra: 2750/2550,
  31381. bottom: 33/2783
  31382. }
  31383. },
  31384. back: {
  31385. height: math.unit(4 + 11/12, "feet"),
  31386. weight: math.unit(132, "lb"),
  31387. name: "Back",
  31388. image: {
  31389. source: "./media/characters/icey/back.svg",
  31390. extra: 2624/2481,
  31391. bottom: 35/2659
  31392. }
  31393. },
  31394. },
  31395. [
  31396. {
  31397. name: "Normal",
  31398. height: math.unit(4 + 11/12, "feet"),
  31399. default: true
  31400. },
  31401. ]
  31402. ))
  31403. characterMakers.push(() => makeCharacter(
  31404. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31405. {
  31406. front: {
  31407. height: math.unit(100, "feet"),
  31408. weight: math.unit(0, "lb"),
  31409. name: "Front",
  31410. image: {
  31411. source: "./media/characters/smile/front.svg",
  31412. extra: 2983/2912,
  31413. bottom: 162/3145
  31414. }
  31415. },
  31416. back: {
  31417. height: math.unit(100, "feet"),
  31418. weight: math.unit(0, "lb"),
  31419. name: "Back",
  31420. image: {
  31421. source: "./media/characters/smile/back.svg",
  31422. extra: 3143/3031,
  31423. bottom: 91/3234
  31424. }
  31425. },
  31426. head: {
  31427. height: math.unit(26.3, "feet"),
  31428. weight: math.unit(0, "lb"),
  31429. name: "Head",
  31430. image: {
  31431. source: "./media/characters/smile/head.svg"
  31432. }
  31433. },
  31434. collar: {
  31435. height: math.unit(5.3, "feet"),
  31436. weight: math.unit(0, "lb"),
  31437. name: "Collar",
  31438. image: {
  31439. source: "./media/characters/smile/collar.svg"
  31440. }
  31441. },
  31442. },
  31443. [
  31444. {
  31445. name: "Macro",
  31446. height: math.unit(100, "feet"),
  31447. default: true
  31448. },
  31449. ]
  31450. ))
  31451. characterMakers.push(() => makeCharacter(
  31452. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31453. {
  31454. dragon: {
  31455. height: math.unit(26, "feet"),
  31456. weight: math.unit(36, "tons"),
  31457. name: "Dragon",
  31458. image: {
  31459. source: "./media/characters/arimphae/dragon.svg",
  31460. extra: 1574/983,
  31461. bottom: 357/1931
  31462. }
  31463. },
  31464. drake: {
  31465. height: math.unit(9, "feet"),
  31466. weight: math.unit(1.5, "tons"),
  31467. name: "Drake",
  31468. image: {
  31469. source: "./media/characters/arimphae/drake.svg",
  31470. extra: 1120/925,
  31471. bottom: 435/1555
  31472. }
  31473. },
  31474. },
  31475. [
  31476. {
  31477. name: "Small",
  31478. height: math.unit(26*5/9, "feet")
  31479. },
  31480. {
  31481. name: "Normal",
  31482. height: math.unit(26, "feet"),
  31483. default: true
  31484. },
  31485. ]
  31486. ))
  31487. characterMakers.push(() => makeCharacter(
  31488. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31489. {
  31490. front: {
  31491. height: math.unit(8 + 9/12, "feet"),
  31492. name: "Front",
  31493. image: {
  31494. source: "./media/characters/xander/front.svg",
  31495. extra: 848/673,
  31496. bottom: 62/910
  31497. }
  31498. },
  31499. },
  31500. [
  31501. {
  31502. name: "Normal",
  31503. height: math.unit(8 + 9/12, "feet"),
  31504. default: true
  31505. },
  31506. {
  31507. name: "Gaze Grabber",
  31508. height: math.unit(13 + 8/12, "feet")
  31509. },
  31510. {
  31511. name: "Jaw Dropper",
  31512. height: math.unit(27, "feet")
  31513. },
  31514. {
  31515. name: "Show Stopper",
  31516. height: math.unit(136, "feet")
  31517. },
  31518. {
  31519. name: "Superstar",
  31520. height: math.unit(1.9e6, "miles")
  31521. },
  31522. ]
  31523. ))
  31524. characterMakers.push(() => makeCharacter(
  31525. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31526. {
  31527. side: {
  31528. height: math.unit(2100, "feet"),
  31529. name: "Side",
  31530. image: {
  31531. source: "./media/characters/osiris/side.svg",
  31532. extra: 1105/939,
  31533. bottom: 167/1272
  31534. }
  31535. },
  31536. },
  31537. [
  31538. {
  31539. name: "Macro",
  31540. height: math.unit(2100, "feet"),
  31541. default: true
  31542. },
  31543. ]
  31544. ))
  31545. characterMakers.push(() => makeCharacter(
  31546. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31547. {
  31548. front: {
  31549. height: math.unit(6 + 8/12, "feet"),
  31550. weight: math.unit(225, "lb"),
  31551. name: "Front",
  31552. image: {
  31553. source: "./media/characters/rhys-londe/front.svg",
  31554. extra: 2258/2141,
  31555. bottom: 188/2446
  31556. }
  31557. },
  31558. back: {
  31559. height: math.unit(6 + 8/12, "feet"),
  31560. weight: math.unit(225, "lb"),
  31561. name: "Back",
  31562. image: {
  31563. source: "./media/characters/rhys-londe/back.svg",
  31564. extra: 2237/2137,
  31565. bottom: 63/2300
  31566. }
  31567. },
  31568. frontNsfw: {
  31569. height: math.unit(6 + 8/12, "feet"),
  31570. weight: math.unit(225, "lb"),
  31571. name: "Front (NSFW)",
  31572. image: {
  31573. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31574. extra: 2258/2141,
  31575. bottom: 188/2446
  31576. }
  31577. },
  31578. backNsfw: {
  31579. height: math.unit(6 + 8/12, "feet"),
  31580. weight: math.unit(225, "lb"),
  31581. name: "Back (NSFW)",
  31582. image: {
  31583. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31584. extra: 2237/2137,
  31585. bottom: 63/2300
  31586. }
  31587. },
  31588. dick: {
  31589. height: math.unit(30, "inches"),
  31590. name: "Dick",
  31591. image: {
  31592. source: "./media/characters/rhys-londe/dick.svg"
  31593. }
  31594. },
  31595. maw: {
  31596. height: math.unit(1.6, "feet"),
  31597. name: "Maw",
  31598. image: {
  31599. source: "./media/characters/rhys-londe/maw.svg"
  31600. }
  31601. },
  31602. },
  31603. [
  31604. {
  31605. name: "Normal",
  31606. height: math.unit(6 + 8/12, "feet"),
  31607. default: true
  31608. },
  31609. ]
  31610. ))
  31611. characterMakers.push(() => makeCharacter(
  31612. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31613. {
  31614. front: {
  31615. height: math.unit(3 + 10/12, "feet"),
  31616. weight: math.unit(90, "lb"),
  31617. name: "Front",
  31618. image: {
  31619. source: "./media/characters/taivas-ensim/front.svg",
  31620. extra: 1327/1216,
  31621. bottom: 96/1423
  31622. }
  31623. },
  31624. back: {
  31625. height: math.unit(3 + 10/12, "feet"),
  31626. weight: math.unit(90, "lb"),
  31627. name: "Back",
  31628. image: {
  31629. source: "./media/characters/taivas-ensim/back.svg",
  31630. extra: 1355/1247,
  31631. bottom: 11/1366
  31632. }
  31633. },
  31634. frontNsfw: {
  31635. height: math.unit(3 + 10/12, "feet"),
  31636. weight: math.unit(90, "lb"),
  31637. name: "Front (NSFW)",
  31638. image: {
  31639. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31640. extra: 1327/1216,
  31641. bottom: 96/1423
  31642. }
  31643. },
  31644. backNsfw: {
  31645. height: math.unit(3 + 10/12, "feet"),
  31646. weight: math.unit(90, "lb"),
  31647. name: "Back (NSFW)",
  31648. image: {
  31649. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31650. extra: 1355/1247,
  31651. bottom: 11/1366
  31652. }
  31653. },
  31654. },
  31655. [
  31656. {
  31657. name: "Normal",
  31658. height: math.unit(3 + 10/12, "feet"),
  31659. default: true
  31660. },
  31661. ]
  31662. ))
  31663. characterMakers.push(() => makeCharacter(
  31664. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31665. {
  31666. front: {
  31667. height: math.unit(9 + 6/12, "feet"),
  31668. weight: math.unit(940, "lb"),
  31669. name: "Front",
  31670. image: {
  31671. source: "./media/characters/byliss/front.svg",
  31672. extra: 1327/1290,
  31673. bottom: 82/1409
  31674. }
  31675. },
  31676. back: {
  31677. height: math.unit(9 + 6/12, "feet"),
  31678. weight: math.unit(940, "lb"),
  31679. name: "Back",
  31680. image: {
  31681. source: "./media/characters/byliss/back.svg",
  31682. extra: 1376/1349,
  31683. bottom: 9/1385
  31684. }
  31685. },
  31686. frontNsfw: {
  31687. height: math.unit(9 + 6/12, "feet"),
  31688. weight: math.unit(940, "lb"),
  31689. name: "Front (NSFW)",
  31690. image: {
  31691. source: "./media/characters/byliss/front-nsfw.svg",
  31692. extra: 1327/1290,
  31693. bottom: 82/1409
  31694. }
  31695. },
  31696. backNsfw: {
  31697. height: math.unit(9 + 6/12, "feet"),
  31698. weight: math.unit(940, "lb"),
  31699. name: "Back (NSFW)",
  31700. image: {
  31701. source: "./media/characters/byliss/back-nsfw.svg",
  31702. extra: 1376/1349,
  31703. bottom: 9/1385
  31704. }
  31705. },
  31706. },
  31707. [
  31708. {
  31709. name: "Normal",
  31710. height: math.unit(9 + 6/12, "feet"),
  31711. default: true
  31712. },
  31713. ]
  31714. ))
  31715. characterMakers.push(() => makeCharacter(
  31716. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31717. {
  31718. full: {
  31719. height: math.unit(5 + 2/12, "feet"),
  31720. weight: math.unit(164, "lb"),
  31721. name: "Full",
  31722. image: {
  31723. source: "./media/characters/noraly/full.svg",
  31724. extra: 1114/1059,
  31725. bottom: 35/1149
  31726. }
  31727. },
  31728. fuller: {
  31729. height: math.unit(5 + 2/12, "feet"),
  31730. weight: math.unit(230, "lb"),
  31731. name: "Fuller",
  31732. image: {
  31733. source: "./media/characters/noraly/fuller.svg",
  31734. extra: 1114/1059,
  31735. bottom: 35/1149
  31736. }
  31737. },
  31738. fullest: {
  31739. height: math.unit(5 + 2/12, "feet"),
  31740. weight: math.unit(300, "lb"),
  31741. name: "Fullest",
  31742. image: {
  31743. source: "./media/characters/noraly/fullest.svg",
  31744. extra: 1114/1059,
  31745. bottom: 35/1149
  31746. }
  31747. },
  31748. },
  31749. [
  31750. {
  31751. name: "Normal",
  31752. height: math.unit(5 + 2/12, "feet"),
  31753. default: true
  31754. },
  31755. ]
  31756. ))
  31757. characterMakers.push(() => makeCharacter(
  31758. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31759. {
  31760. front: {
  31761. height: math.unit(5 + 2/12, "feet"),
  31762. weight: math.unit(210, "lb"),
  31763. name: "Front",
  31764. image: {
  31765. source: "./media/characters/pera/front.svg",
  31766. extra: 1560/1531,
  31767. bottom: 165/1725
  31768. }
  31769. },
  31770. back: {
  31771. height: math.unit(5 + 2/12, "feet"),
  31772. weight: math.unit(210, "lb"),
  31773. name: "Back",
  31774. image: {
  31775. source: "./media/characters/pera/back.svg",
  31776. extra: 1523/1493,
  31777. bottom: 152/1675
  31778. }
  31779. },
  31780. dick: {
  31781. height: math.unit(2.4, "feet"),
  31782. name: "Dick",
  31783. image: {
  31784. source: "./media/characters/pera/dick.svg"
  31785. }
  31786. },
  31787. },
  31788. [
  31789. {
  31790. name: "Normal",
  31791. height: math.unit(5 + 2/12, "feet"),
  31792. default: true
  31793. },
  31794. ]
  31795. ))
  31796. characterMakers.push(() => makeCharacter(
  31797. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31798. {
  31799. front: {
  31800. height: math.unit(12, "feet"),
  31801. weight: math.unit(3200, "lb"),
  31802. name: "Front",
  31803. image: {
  31804. source: "./media/characters/julian/front.svg",
  31805. extra: 2962/2701,
  31806. bottom: 184/3146
  31807. }
  31808. },
  31809. maw: {
  31810. height: math.unit(5.35, "feet"),
  31811. name: "Maw",
  31812. image: {
  31813. source: "./media/characters/julian/maw.svg"
  31814. }
  31815. },
  31816. paw: {
  31817. height: math.unit(3.07, "feet"),
  31818. name: "Paw",
  31819. image: {
  31820. source: "./media/characters/julian/paw.svg"
  31821. }
  31822. },
  31823. },
  31824. [
  31825. {
  31826. name: "Default",
  31827. height: math.unit(12, "feet"),
  31828. default: true
  31829. },
  31830. {
  31831. name: "Big",
  31832. height: math.unit(50, "feet")
  31833. },
  31834. {
  31835. name: "Really Big",
  31836. height: math.unit(1, "mile")
  31837. },
  31838. {
  31839. name: "Extremely Big",
  31840. height: math.unit(100, "miles")
  31841. },
  31842. {
  31843. name: "Planet Hugger",
  31844. height: math.unit(200, "megameters")
  31845. },
  31846. {
  31847. name: "Unreasonably Big",
  31848. height: math.unit(1e300, "meters")
  31849. },
  31850. ]
  31851. ))
  31852. characterMakers.push(() => makeCharacter(
  31853. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31854. {
  31855. solgooleo: {
  31856. height: math.unit(4, "meters"),
  31857. weight: math.unit(6000*1.5, "kg"),
  31858. volume: math.unit(6000, "liters"),
  31859. name: "Solgooleo",
  31860. image: {
  31861. source: "./media/characters/pi/solgooleo.svg",
  31862. extra: 388/331,
  31863. bottom: 29/417
  31864. }
  31865. },
  31866. },
  31867. [
  31868. {
  31869. name: "Normal",
  31870. height: math.unit(4, "meters"),
  31871. default: true
  31872. },
  31873. ]
  31874. ))
  31875. characterMakers.push(() => makeCharacter(
  31876. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31877. {
  31878. front: {
  31879. height: math.unit(8 + 2/12, "feet"),
  31880. weight: math.unit(4, "tons"),
  31881. name: "Front",
  31882. image: {
  31883. source: "./media/characters/shaun/front.svg",
  31884. extra: 1550/1505,
  31885. bottom: 353/1903
  31886. }
  31887. },
  31888. },
  31889. [
  31890. {
  31891. name: "Lorg",
  31892. height: math.unit(8 + 2/12, "feet"),
  31893. default: true
  31894. },
  31895. ]
  31896. ))
  31897. characterMakers.push(() => makeCharacter(
  31898. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31899. {
  31900. front: {
  31901. height: math.unit(7, "feet"),
  31902. name: "Front",
  31903. image: {
  31904. source: "./media/characters/sini/front.svg",
  31905. extra: 726/678,
  31906. bottom: 35/761
  31907. }
  31908. },
  31909. back: {
  31910. height: math.unit(7, "feet"),
  31911. name: "Back",
  31912. image: {
  31913. source: "./media/characters/sini/back.svg",
  31914. extra: 743/701,
  31915. bottom: 12/755
  31916. }
  31917. },
  31918. mawAnthro: {
  31919. height: math.unit(2.14, "feet"),
  31920. name: "Maw (Anthro)",
  31921. image: {
  31922. source: "./media/characters/sini/maw-anthro.svg"
  31923. }
  31924. },
  31925. dick: {
  31926. height: math.unit(1.45, "feet"),
  31927. name: "Dick (Anthro)",
  31928. image: {
  31929. source: "./media/characters/sini/dick-anthro.svg"
  31930. }
  31931. },
  31932. feral: {
  31933. height: math.unit(13, "feet"),
  31934. name: "Feral",
  31935. image: {
  31936. source: "./media/characters/sini/feral.svg",
  31937. extra: 814/605,
  31938. bottom: 11/825
  31939. }
  31940. },
  31941. mawFeral: {
  31942. height: math.unit(4.6, "feet"),
  31943. name: "Maw-feral",
  31944. image: {
  31945. source: "./media/characters/sini/maw-feral.svg"
  31946. }
  31947. },
  31948. footFeral: {
  31949. height: math.unit(4.2, "feet"),
  31950. name: "Foot-feral",
  31951. image: {
  31952. source: "./media/characters/sini/foot-feral.svg"
  31953. }
  31954. },
  31955. },
  31956. [
  31957. {
  31958. name: "Normal",
  31959. height: math.unit(7, "feet"),
  31960. default: true
  31961. },
  31962. ]
  31963. ))
  31964. characterMakers.push(() => makeCharacter(
  31965. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  31966. {
  31967. side: {
  31968. height: math.unit(13, "meters"),
  31969. weight: math.unit(9072, "kg"),
  31970. name: "Side",
  31971. image: {
  31972. source: "./media/characters/raylldo/side.svg",
  31973. extra: 403/344,
  31974. bottom: 42/445
  31975. }
  31976. },
  31977. leaping: {
  31978. height: math.unit(12.3, "meters"),
  31979. weight: math.unit(9072, "kg"),
  31980. name: "Leaping",
  31981. image: {
  31982. source: "./media/characters/raylldo/leaping.svg",
  31983. extra: 470/249,
  31984. bottom: 13/483
  31985. }
  31986. },
  31987. flying: {
  31988. height: math.unit(18, "meters"),
  31989. weight: math.unit(9072, "kg"),
  31990. name: "Flying",
  31991. image: {
  31992. source: "./media/characters/raylldo/flying.svg"
  31993. }
  31994. },
  31995. head: {
  31996. height: math.unit(5.85, "meters"),
  31997. name: "Head",
  31998. image: {
  31999. source: "./media/characters/raylldo/head.svg"
  32000. }
  32001. },
  32002. maw: {
  32003. height: math.unit(5.32, "meters"),
  32004. name: "Maw",
  32005. image: {
  32006. source: "./media/characters/raylldo/maw.svg"
  32007. }
  32008. },
  32009. eye: {
  32010. height: math.unit(0.54, "meters"),
  32011. name: "Eye",
  32012. image: {
  32013. source: "./media/characters/raylldo/eye.svg"
  32014. }
  32015. },
  32016. },
  32017. [
  32018. {
  32019. name: "Normal",
  32020. height: math.unit(13, "meters"),
  32021. default: true
  32022. },
  32023. ]
  32024. ))
  32025. characterMakers.push(() => makeCharacter(
  32026. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32027. {
  32028. anthroFront: {
  32029. height: math.unit(9, "feet"),
  32030. weight: math.unit(600, "lb"),
  32031. name: "Anthro (Front)",
  32032. image: {
  32033. source: "./media/characters/glint/anthro-front.svg",
  32034. extra: 1097/1018,
  32035. bottom: 28/1125
  32036. }
  32037. },
  32038. anthroBack: {
  32039. height: math.unit(9, "feet"),
  32040. weight: math.unit(600, "lb"),
  32041. name: "Anthro (Back)",
  32042. image: {
  32043. source: "./media/characters/glint/anthro-back.svg",
  32044. extra: 1154/997,
  32045. bottom: 36/1190
  32046. }
  32047. },
  32048. feral: {
  32049. height: math.unit(11, "feet"),
  32050. weight: math.unit(50000, "lb"),
  32051. name: "Feral",
  32052. image: {
  32053. source: "./media/characters/glint/feral.svg",
  32054. extra: 3035/1585,
  32055. bottom: 1169/4204
  32056. }
  32057. },
  32058. dickAnthro: {
  32059. height: math.unit(0.7, "meters"),
  32060. name: "Dick (Anthro)",
  32061. image: {
  32062. source: "./media/characters/glint/dick-anthro.svg"
  32063. }
  32064. },
  32065. dickFeral: {
  32066. height: math.unit(2.65, "meters"),
  32067. name: "Dick (Feral)",
  32068. image: {
  32069. source: "./media/characters/glint/dick-feral.svg"
  32070. }
  32071. },
  32072. slitHidden: {
  32073. height: math.unit(5.85, "meters"),
  32074. name: "Slit (Hidden)",
  32075. image: {
  32076. source: "./media/characters/glint/slit-hidden.svg"
  32077. }
  32078. },
  32079. slitErect: {
  32080. height: math.unit(5.85, "meters"),
  32081. name: "Slit (Erect)",
  32082. image: {
  32083. source: "./media/characters/glint/slit-erect.svg"
  32084. }
  32085. },
  32086. mawAnthro: {
  32087. height: math.unit(0.63, "meters"),
  32088. name: "Maw (Anthro)",
  32089. image: {
  32090. source: "./media/characters/glint/maw.svg"
  32091. }
  32092. },
  32093. mawFeral: {
  32094. height: math.unit(2.89, "meters"),
  32095. name: "Maw (Feral)",
  32096. image: {
  32097. source: "./media/characters/glint/maw.svg"
  32098. }
  32099. },
  32100. },
  32101. [
  32102. {
  32103. name: "Normal",
  32104. height: math.unit(9, "feet"),
  32105. default: true
  32106. },
  32107. ]
  32108. ))
  32109. characterMakers.push(() => makeCharacter(
  32110. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32111. {
  32112. side: {
  32113. height: math.unit(15, "feet"),
  32114. weight: math.unit(5000, "kg"),
  32115. name: "Side",
  32116. image: {
  32117. source: "./media/characters/kairne/side.svg",
  32118. extra: 979/811,
  32119. bottom: 13/992
  32120. }
  32121. },
  32122. front: {
  32123. height: math.unit(15, "feet"),
  32124. weight: math.unit(5000, "kg"),
  32125. name: "Front",
  32126. image: {
  32127. source: "./media/characters/kairne/front.svg",
  32128. extra: 908/814,
  32129. bottom: 26/934
  32130. }
  32131. },
  32132. sideNsfw: {
  32133. height: math.unit(15, "feet"),
  32134. weight: math.unit(5000, "kg"),
  32135. name: "Side (NSFW)",
  32136. image: {
  32137. source: "./media/characters/kairne/side-nsfw.svg",
  32138. extra: 979/811,
  32139. bottom: 13/992
  32140. }
  32141. },
  32142. frontNsfw: {
  32143. height: math.unit(15, "feet"),
  32144. weight: math.unit(5000, "kg"),
  32145. name: "Front (NSFW)",
  32146. image: {
  32147. source: "./media/characters/kairne/front-nsfw.svg",
  32148. extra: 908/814,
  32149. bottom: 26/934
  32150. }
  32151. },
  32152. dickCaged: {
  32153. height: math.unit(0.65, "meters"),
  32154. name: "Dick-caged",
  32155. image: {
  32156. source: "./media/characters/kairne/dick-caged.svg"
  32157. }
  32158. },
  32159. dick: {
  32160. height: math.unit(0.79, "meters"),
  32161. name: "Dick",
  32162. image: {
  32163. source: "./media/characters/kairne/dick.svg"
  32164. }
  32165. },
  32166. genitals: {
  32167. height: math.unit(1.29, "meters"),
  32168. name: "Genitals",
  32169. image: {
  32170. source: "./media/characters/kairne/genitals.svg"
  32171. }
  32172. },
  32173. maw: {
  32174. height: math.unit(1.73, "meters"),
  32175. name: "Maw",
  32176. image: {
  32177. source: "./media/characters/kairne/maw.svg"
  32178. }
  32179. },
  32180. },
  32181. [
  32182. {
  32183. name: "Normal",
  32184. height: math.unit(15, "feet"),
  32185. default: true
  32186. },
  32187. ]
  32188. ))
  32189. characterMakers.push(() => makeCharacter(
  32190. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32191. {
  32192. front: {
  32193. height: math.unit(5 + 8/12, "feet"),
  32194. weight: math.unit(139, "lb"),
  32195. name: "Front",
  32196. image: {
  32197. source: "./media/characters/biscuit-jackal/front.svg",
  32198. extra: 2106/1961,
  32199. bottom: 58/2164
  32200. }
  32201. },
  32202. back: {
  32203. height: math.unit(5 + 8/12, "feet"),
  32204. weight: math.unit(139, "lb"),
  32205. name: "Back",
  32206. image: {
  32207. source: "./media/characters/biscuit-jackal/back.svg",
  32208. extra: 2132/1976,
  32209. bottom: 57/2189
  32210. }
  32211. },
  32212. werejackal: {
  32213. height: math.unit(6 + 3/12, "feet"),
  32214. weight: math.unit(188, "lb"),
  32215. name: "Werejackal",
  32216. image: {
  32217. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32218. extra: 2373/2178,
  32219. bottom: 53/2426
  32220. }
  32221. },
  32222. },
  32223. [
  32224. {
  32225. name: "Normal",
  32226. height: math.unit(5 + 8/12, "feet"),
  32227. default: true
  32228. },
  32229. ]
  32230. ))
  32231. characterMakers.push(() => makeCharacter(
  32232. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32233. {
  32234. front: {
  32235. height: math.unit(140, "cm"),
  32236. weight: math.unit(45, "kg"),
  32237. name: "Front",
  32238. image: {
  32239. source: "./media/characters/tayra-white/front.svg",
  32240. extra: 2229/2192,
  32241. bottom: 75/2304
  32242. }
  32243. },
  32244. },
  32245. [
  32246. {
  32247. name: "Normal",
  32248. height: math.unit(140, "cm"),
  32249. default: true
  32250. },
  32251. ]
  32252. ))
  32253. characterMakers.push(() => makeCharacter(
  32254. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32255. {
  32256. front: {
  32257. height: math.unit(4 + 5/12, "feet"),
  32258. name: "Front",
  32259. image: {
  32260. source: "./media/characters/scoop/front.svg",
  32261. extra: 1257/1136,
  32262. bottom: 69/1326
  32263. }
  32264. },
  32265. back: {
  32266. height: math.unit(4 + 5/12, "feet"),
  32267. name: "Back",
  32268. image: {
  32269. source: "./media/characters/scoop/back.svg",
  32270. extra: 1321/1152,
  32271. bottom: 32/1353
  32272. }
  32273. },
  32274. maw: {
  32275. height: math.unit(0.68, "feet"),
  32276. name: "Maw",
  32277. image: {
  32278. source: "./media/characters/scoop/maw.svg"
  32279. }
  32280. },
  32281. },
  32282. [
  32283. {
  32284. name: "Really Small",
  32285. height: math.unit(1, "mm")
  32286. },
  32287. {
  32288. name: "Micro",
  32289. height: math.unit(1, "inch")
  32290. },
  32291. {
  32292. name: "Normal",
  32293. height: math.unit(4 + 5/12, "feet"),
  32294. default: true
  32295. },
  32296. {
  32297. name: "Macro",
  32298. height: math.unit(200, "feet")
  32299. },
  32300. {
  32301. name: "Megamacro",
  32302. height: math.unit(3240, "feet")
  32303. },
  32304. {
  32305. name: "Teramacro",
  32306. height: math.unit(2500, "miles")
  32307. },
  32308. ]
  32309. ))
  32310. characterMakers.push(() => makeCharacter(
  32311. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32312. {
  32313. front: {
  32314. height: math.unit(15 + 7/12, "feet"),
  32315. name: "Front",
  32316. image: {
  32317. source: "./media/characters/saphinara/front.svg",
  32318. extra: 604/546,
  32319. bottom: 19/623
  32320. }
  32321. },
  32322. side: {
  32323. height: math.unit(15 + 7/12, "feet"),
  32324. name: "Side",
  32325. image: {
  32326. source: "./media/characters/saphinara/side.svg",
  32327. extra: 605/547,
  32328. bottom: 6/611
  32329. }
  32330. },
  32331. back: {
  32332. height: math.unit(15 + 7/12, "feet"),
  32333. name: "Back",
  32334. image: {
  32335. source: "./media/characters/saphinara/back.svg",
  32336. extra: 591/531,
  32337. bottom: 13/604
  32338. }
  32339. },
  32340. frontTail: {
  32341. height: math.unit(15 + 7/12, "feet"),
  32342. name: "Front (Full Tail)",
  32343. image: {
  32344. source: "./media/characters/saphinara/front-tail.svg",
  32345. extra: 748/547,
  32346. bottom: 66/814
  32347. }
  32348. },
  32349. },
  32350. [
  32351. {
  32352. name: "Normal",
  32353. height: math.unit(15 + 7/12, "feet"),
  32354. default: true
  32355. },
  32356. {
  32357. name: "Angry",
  32358. height: math.unit(30 + 6/12, "feet")
  32359. },
  32360. {
  32361. name: "Enraged",
  32362. height: math.unit(102 + 1/12, "feet")
  32363. },
  32364. ]
  32365. ))
  32366. characterMakers.push(() => makeCharacter(
  32367. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32368. {
  32369. front: {
  32370. height: math.unit(6 + 8/12, "feet"),
  32371. weight: math.unit(300, "lb"),
  32372. name: "Front",
  32373. image: {
  32374. source: "./media/characters/jrain/front.svg",
  32375. extra: 3039/2865,
  32376. bottom: 399/3438
  32377. }
  32378. },
  32379. back: {
  32380. height: math.unit(6 + 8/12, "feet"),
  32381. weight: math.unit(300, "lb"),
  32382. name: "Back",
  32383. image: {
  32384. source: "./media/characters/jrain/back.svg",
  32385. extra: 3089/2938,
  32386. bottom: 172/3261
  32387. }
  32388. },
  32389. head: {
  32390. height: math.unit(2.14, "feet"),
  32391. name: "Head",
  32392. image: {
  32393. source: "./media/characters/jrain/head.svg"
  32394. }
  32395. },
  32396. maw: {
  32397. height: math.unit(1.77, "feet"),
  32398. name: "Maw",
  32399. image: {
  32400. source: "./media/characters/jrain/maw.svg"
  32401. }
  32402. },
  32403. leftHand: {
  32404. height: math.unit(1.1, "feet"),
  32405. name: "Left Hand",
  32406. image: {
  32407. source: "./media/characters/jrain/left-hand.svg"
  32408. }
  32409. },
  32410. rightHand: {
  32411. height: math.unit(1.1, "feet"),
  32412. name: "Right Hand",
  32413. image: {
  32414. source: "./media/characters/jrain/right-hand.svg"
  32415. }
  32416. },
  32417. eye: {
  32418. height: math.unit(0.35, "feet"),
  32419. name: "Eye",
  32420. image: {
  32421. source: "./media/characters/jrain/eye.svg"
  32422. }
  32423. },
  32424. },
  32425. [
  32426. {
  32427. name: "Normal",
  32428. height: math.unit(6 + 8/12, "feet"),
  32429. default: true
  32430. },
  32431. {
  32432. name: "Casually Large",
  32433. height: math.unit(25, "feet")
  32434. },
  32435. {
  32436. name: "Giant",
  32437. height: math.unit(100, "feet")
  32438. },
  32439. {
  32440. name: "Kaiju",
  32441. height: math.unit(300, "feet")
  32442. },
  32443. ]
  32444. ))
  32445. characterMakers.push(() => makeCharacter(
  32446. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32447. {
  32448. dragon: {
  32449. height: math.unit(5, "meters"),
  32450. name: "Dragon",
  32451. image: {
  32452. source: "./media/characters/sabrina/dragon.svg",
  32453. extra: 3670 / 2365,
  32454. bottom: 333 / 4003
  32455. }
  32456. },
  32457. gryphon: {
  32458. height: math.unit(3, "meters"),
  32459. name: "Gryphon",
  32460. image: {
  32461. source: "./media/characters/sabrina/gryphon.svg",
  32462. extra: 1576 / 945,
  32463. bottom: 71 / 1647
  32464. }
  32465. },
  32466. snake: {
  32467. height: math.unit(12, "meters"),
  32468. name: "Snake",
  32469. image: {
  32470. source: "./media/characters/sabrina/snake.svg",
  32471. extra: 1758 / 1320,
  32472. bottom: 186 / 1944
  32473. }
  32474. },
  32475. collar: {
  32476. height: math.unit(1.86, "meters"),
  32477. name: "Collar",
  32478. image: {
  32479. source: "./media/characters/sabrina/collar.svg"
  32480. }
  32481. },
  32482. eye: {
  32483. height: math.unit(0.53, "meters"),
  32484. name: "Eye",
  32485. image: {
  32486. source: "./media/characters/sabrina/eye.svg"
  32487. }
  32488. },
  32489. foot: {
  32490. height: math.unit(1.86, "meters"),
  32491. name: "Foot",
  32492. image: {
  32493. source: "./media/characters/sabrina/foot.svg"
  32494. }
  32495. },
  32496. hand: {
  32497. height: math.unit(1.32, "meters"),
  32498. name: "Hand",
  32499. image: {
  32500. source: "./media/characters/sabrina/hand.svg"
  32501. }
  32502. },
  32503. head: {
  32504. height: math.unit(2.44, "meters"),
  32505. name: "Head",
  32506. image: {
  32507. source: "./media/characters/sabrina/head.svg"
  32508. }
  32509. },
  32510. headAngry: {
  32511. height: math.unit(2.44, "meters"),
  32512. name: "Head (Angry))",
  32513. image: {
  32514. source: "./media/characters/sabrina/head-angry.svg"
  32515. }
  32516. },
  32517. maw: {
  32518. height: math.unit(1.65, "meters"),
  32519. name: "Maw",
  32520. image: {
  32521. source: "./media/characters/sabrina/maw.svg"
  32522. }
  32523. },
  32524. spikes: {
  32525. height: math.unit(1.69, "meters"),
  32526. name: "Spikes",
  32527. image: {
  32528. source: "./media/characters/sabrina/spikes.svg"
  32529. }
  32530. },
  32531. stomach: {
  32532. height: math.unit(1.15, "meters"),
  32533. name: "Stomach",
  32534. image: {
  32535. source: "./media/characters/sabrina/stomach.svg"
  32536. }
  32537. },
  32538. tongue: {
  32539. height: math.unit(1.27, "meters"),
  32540. name: "Tongue",
  32541. image: {
  32542. source: "./media/characters/sabrina/tongue.svg"
  32543. }
  32544. },
  32545. wingDorsal: {
  32546. height: math.unit(4.85, "meters"),
  32547. name: "Wing (Dorsal)",
  32548. image: {
  32549. source: "./media/characters/sabrina/wing-dorsal.svg"
  32550. }
  32551. },
  32552. wingVentral: {
  32553. height: math.unit(4.85, "meters"),
  32554. name: "Wing (Ventral)",
  32555. image: {
  32556. source: "./media/characters/sabrina/wing-ventral.svg"
  32557. }
  32558. },
  32559. },
  32560. [
  32561. {
  32562. name: "Normal",
  32563. height: math.unit(5, "meters"),
  32564. default: true
  32565. },
  32566. ]
  32567. ))
  32568. characterMakers.push(() => makeCharacter(
  32569. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32570. {
  32571. frontMaid: {
  32572. height: math.unit(5 + 5/12, "feet"),
  32573. weight: math.unit(130, "lb"),
  32574. name: "Front (Maid)",
  32575. image: {
  32576. source: "./media/characters/midnight-tales/front-maid.svg",
  32577. extra: 489/454,
  32578. bottom: 61/550
  32579. }
  32580. },
  32581. frontFormal: {
  32582. height: math.unit(5 + 5/12, "feet"),
  32583. weight: math.unit(130, "lb"),
  32584. name: "Front (Formal)",
  32585. image: {
  32586. source: "./media/characters/midnight-tales/front-formal.svg",
  32587. extra: 489/454,
  32588. bottom: 61/550
  32589. }
  32590. },
  32591. back: {
  32592. height: math.unit(5 + 5/12, "feet"),
  32593. weight: math.unit(130, "lb"),
  32594. name: "Back",
  32595. image: {
  32596. source: "./media/characters/midnight-tales/back.svg",
  32597. extra: 498/456,
  32598. bottom: 33/531
  32599. }
  32600. },
  32601. frontBeast: {
  32602. height: math.unit(40, "feet"),
  32603. weight: math.unit(64000, "lb"),
  32604. name: "Front (Beast)",
  32605. image: {
  32606. source: "./media/characters/midnight-tales/front-beast.svg",
  32607. extra: 927/860,
  32608. bottom: 53/980
  32609. }
  32610. },
  32611. backBeast: {
  32612. height: math.unit(40, "feet"),
  32613. weight: math.unit(64000, "lb"),
  32614. name: "Back (Beast)",
  32615. image: {
  32616. source: "./media/characters/midnight-tales/back-beast.svg",
  32617. extra: 929/855,
  32618. bottom: 16/945
  32619. }
  32620. },
  32621. footBeast: {
  32622. height: math.unit(6.7, "feet"),
  32623. name: "Foot (Beast)",
  32624. image: {
  32625. source: "./media/characters/midnight-tales/foot-beast.svg"
  32626. }
  32627. },
  32628. headBeast: {
  32629. height: math.unit(8, "feet"),
  32630. name: "Head (Beast)",
  32631. image: {
  32632. source: "./media/characters/midnight-tales/head-beast.svg"
  32633. }
  32634. },
  32635. },
  32636. [
  32637. {
  32638. name: "Normal",
  32639. height: math.unit(5 + 5 / 12, "feet"),
  32640. default: true
  32641. },
  32642. {
  32643. name: "Macro",
  32644. height: math.unit(25, "feet")
  32645. },
  32646. ]
  32647. ))
  32648. characterMakers.push(() => makeCharacter(
  32649. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32650. {
  32651. front: {
  32652. height: math.unit(5 + 10/12, "feet"),
  32653. name: "Front",
  32654. image: {
  32655. source: "./media/characters/argon/front.svg",
  32656. extra: 2009/1935,
  32657. bottom: 118/2127
  32658. }
  32659. },
  32660. back: {
  32661. height: math.unit(5 + 10/12, "feet"),
  32662. name: "Back",
  32663. image: {
  32664. source: "./media/characters/argon/back.svg",
  32665. extra: 2047/1992,
  32666. bottom: 20/2067
  32667. }
  32668. },
  32669. frontDressed: {
  32670. height: math.unit(5 + 10/12, "feet"),
  32671. name: "Front (Dressed)",
  32672. image: {
  32673. source: "./media/characters/argon/front-dressed.svg",
  32674. extra: 2009/1935,
  32675. bottom: 118/2127
  32676. }
  32677. },
  32678. },
  32679. [
  32680. {
  32681. name: "Normal",
  32682. height: math.unit(5 + 10/12, "feet"),
  32683. default: true
  32684. },
  32685. ]
  32686. ))
  32687. characterMakers.push(() => makeCharacter(
  32688. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32689. {
  32690. front: {
  32691. height: math.unit(8 + 6/12, "feet"),
  32692. weight: math.unit(1150, "lb"),
  32693. name: "Front",
  32694. image: {
  32695. source: "./media/characters/kichi/front.svg",
  32696. extra: 1267/1164,
  32697. bottom: 61/1328
  32698. }
  32699. },
  32700. back: {
  32701. height: math.unit(8 + 6/12, "feet"),
  32702. weight: math.unit(1150, "lb"),
  32703. name: "Back",
  32704. image: {
  32705. source: "./media/characters/kichi/back.svg",
  32706. extra: 1273/1166,
  32707. bottom: 33/1306
  32708. }
  32709. },
  32710. },
  32711. [
  32712. ]
  32713. ))
  32714. //characters
  32715. function makeCharacters() {
  32716. const results = [];
  32717. characterMakers.forEach(character => {
  32718. results.push(character());
  32719. });
  32720. return results;
  32721. }