less copy protection, more size visualization
Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
 
 
 

35037 wiersze
881 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. });
  45. return createEntityMaker(info, views, defaultSizes);
  46. }
  47. const speciesData = {
  48. animal: {
  49. name: "Animal"
  50. },
  51. dog: {
  52. name: "Dog",
  53. parents: [
  54. "canine"
  55. ]
  56. },
  57. canine: {
  58. name: "Canine",
  59. parents: [
  60. "mammal"
  61. ]
  62. },
  63. crux: {
  64. name: "Crux",
  65. parents: [
  66. "mammal"
  67. ]
  68. },
  69. mammal: {
  70. name: "Mammal",
  71. parents: [
  72. "animal"
  73. ]
  74. },
  75. "rough-collie": {
  76. name: "Rough Collie",
  77. parents: [
  78. "dog"
  79. ]
  80. },
  81. dragon: {
  82. name: "Dragon",
  83. parents: [
  84. "reptile"
  85. ]
  86. },
  87. reptile: {
  88. name: "Reptile",
  89. parents: [
  90. "animal"
  91. ]
  92. },
  93. woodpecker: {
  94. name: "Woodpecker",
  95. parents: [
  96. "avian"
  97. ]
  98. },
  99. avian: {
  100. name: "Avian",
  101. parents: [
  102. "animal"
  103. ]
  104. },
  105. kitsune: {
  106. name: "Kitsune",
  107. parents: [
  108. "fox"
  109. ]
  110. },
  111. fox: {
  112. name: "Fox",
  113. parents: [
  114. "mammal"
  115. ]
  116. },
  117. pokemon: {
  118. name: "Pokemon"
  119. },
  120. tiger: {
  121. name: "Tiger",
  122. parents: [
  123. "cat"
  124. ]
  125. },
  126. cat: {
  127. name: "Cat",
  128. parents: [
  129. "mammal"
  130. ]
  131. },
  132. "blue-jay": {
  133. name: "Blue Jay",
  134. parents: [
  135. "avian"
  136. ]
  137. },
  138. wolf: {
  139. name: "Wolf",
  140. parents: [
  141. "mammal"
  142. ]
  143. },
  144. coyote: {
  145. name: "Coyote",
  146. parents: [
  147. "mammal"
  148. ]
  149. },
  150. raccoon: {
  151. name: "Raccoon",
  152. parents: [
  153. "mammal"
  154. ]
  155. },
  156. weasel: {
  157. name: "Weasel",
  158. parents: [
  159. "mammal"
  160. ]
  161. },
  162. "red-panda": {
  163. name: "Red Panda",
  164. parents: [
  165. "mammal"
  166. ]
  167. },
  168. dolphin: {
  169. name: "Dolphin",
  170. parents: [
  171. "mammal"
  172. ]
  173. },
  174. "african-wild-dog": {
  175. name: "African Wild Dog",
  176. parents: [
  177. "canine"
  178. ]
  179. },
  180. "hyena": {
  181. name: "Hyena",
  182. parents: [
  183. "canine"
  184. ]
  185. },
  186. "carbuncle": {
  187. name: "Carbuncle",
  188. parents: [
  189. "animal"
  190. ]
  191. },
  192. bat: {
  193. name: "Bat",
  194. parents: [
  195. "mammal"
  196. ]
  197. },
  198. "leaf-nosed-bat": {
  199. name: "Leaf-Nosed Bat",
  200. parents: [
  201. "bat"
  202. ]
  203. },
  204. "fish": {
  205. name: "Fish",
  206. parents: [
  207. "animal"
  208. ]
  209. },
  210. "ram": {
  211. name: "Ram",
  212. parents: [
  213. "mammal"
  214. ]
  215. },
  216. "demon": {
  217. name: "Demon"
  218. },
  219. "cougar": {
  220. name: "Cougar",
  221. parents: [
  222. "cat"
  223. ]
  224. },
  225. "goat": {
  226. name: "Goat",
  227. parents: [
  228. "mammal"
  229. ]
  230. },
  231. "lion": {
  232. name: "Lion",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "harpy-eager": {
  238. name: "Harpy Eagle",
  239. parents: [
  240. "avian"
  241. ]
  242. },
  243. "deer": {
  244. name: "Deer",
  245. parents: [
  246. "mammal"
  247. ]
  248. },
  249. "phoenix": {
  250. name: "Phoenix",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "aeromorph": {
  256. name: "Aeromorph",
  257. parents: [
  258. "machine"
  259. ]
  260. },
  261. "machine": {
  262. name: "Machine",
  263. },
  264. "android": {
  265. name: "Android",
  266. parents: [
  267. "machine"
  268. ]
  269. },
  270. "jackal": {
  271. name: "Jackal",
  272. parents: [
  273. "canine"
  274. ]
  275. },
  276. "corvid": {
  277. name: "Corvid",
  278. parents: [
  279. "avian"
  280. ]
  281. },
  282. "pharaoh-hound": {
  283. name: "Pharaoh Hound",
  284. parents: [
  285. "dog"
  286. ]
  287. },
  288. "skunk": {
  289. name: "Skunk",
  290. parents: [
  291. "mammal"
  292. ]
  293. },
  294. "shark": {
  295. name: "Shark",
  296. parents: [
  297. "fish"
  298. ]
  299. },
  300. "black-panther": {
  301. name: "Black Panther",
  302. parents: [
  303. "cat"
  304. ]
  305. },
  306. "umbra": {
  307. name: "Umbra",
  308. parents: [
  309. "animal"
  310. ]
  311. },
  312. "raven": {
  313. name: "Raven",
  314. parents: [
  315. "corvid"
  316. ]
  317. },
  318. "snow-leopard": {
  319. name: "Snow Leopard",
  320. parents: [
  321. "cat"
  322. ]
  323. },
  324. "barbary-lion": {
  325. name: "Barbary Lion",
  326. parents: [
  327. "lion"
  328. ]
  329. },
  330. "dra'gal": {
  331. name: "Dra'Gal",
  332. parents: [
  333. "mammal"
  334. ]
  335. },
  336. "german-shepherd": {
  337. name: "German Shepherd",
  338. parents: [
  339. "dog"
  340. ]
  341. },
  342. "bayleef": {
  343. name: "Bayleef",
  344. parents: [
  345. "pokemon"
  346. ]
  347. },
  348. "mouse": {
  349. name: "Mouse",
  350. parents: [
  351. "rodent"
  352. ]
  353. },
  354. "rat": {
  355. name: "Rat",
  356. parents: [
  357. "mammal"
  358. ]
  359. },
  360. "hoshiko-beast": {
  361. name: "Hoshiko Beast",
  362. parents: ["animal"]
  363. },
  364. "snow-jugani": {
  365. name: "Snow Jugani",
  366. parents: ["cat"]
  367. },
  368. "patamon": {
  369. name: "Patamon",
  370. parents: ["digimon"]
  371. },
  372. "digimon": {
  373. name: "Digimon",
  374. },
  375. "jugani": {
  376. name: "Jugani",
  377. parents: ["cat"]
  378. },
  379. "luxray": {
  380. name: "Luxray",
  381. parents: ["pokemon"]
  382. },
  383. "mech": {
  384. name: "Mech",
  385. parents: ["machine"]
  386. },
  387. "zoid": {
  388. name: "Zoid",
  389. parents: ["mech"]
  390. },
  391. "monster": {
  392. name: "Monster",
  393. parents: ["animal"]
  394. },
  395. "foo-dog": {
  396. name: "Foo Dog",
  397. parents: ["mammal"]
  398. },
  399. "elephant": {
  400. name: "Elephant",
  401. parents: ["mammal"]
  402. },
  403. "eagle": {
  404. name: "Eagle",
  405. parents: ["avian"]
  406. },
  407. "cow": {
  408. name: "Cow",
  409. parents: ["mammal"]
  410. },
  411. "crocodile": {
  412. name: "Crocodile",
  413. parents: ["reptile"]
  414. },
  415. "borzoi": {
  416. name: "Borzoi",
  417. parents: ["dog"]
  418. },
  419. "snake": {
  420. name: "Snake",
  421. parents: ["reptile"]
  422. },
  423. "horned-bush-viper": {
  424. name: "Horned Bush Viper",
  425. parents: ["snake"]
  426. },
  427. "cobra": {
  428. name: "Cobra",
  429. parents: ["snake"]
  430. },
  431. "harpy-eagle": {
  432. name: "Harpy Eagle",
  433. parents: ["eagle"]
  434. },
  435. "raptor": {
  436. name: "Raptor",
  437. parents: ["dinosaur"]
  438. },
  439. "dinosaur": {
  440. name: "Dinosaur",
  441. parents: ["reptile"]
  442. },
  443. "veilhound": {
  444. name: "Veilhound",
  445. parents: ["hellhound", "demon"]
  446. },
  447. "hellhound": {
  448. name: "Hellhound",
  449. parents: ["canine"]
  450. },
  451. "insect": {
  452. name: "Insect",
  453. parents: ["animal"]
  454. },
  455. "beetle": {
  456. name: "Beetle",
  457. parents: ["insect"]
  458. },
  459. "moth": {
  460. name: "Moth",
  461. parents: ["insect"]
  462. },
  463. "eastern-dragon": {
  464. name: "Eastern Dragon",
  465. parents: ["dragon"]
  466. },
  467. "jaguar": {
  468. name: "Jaguar",
  469. parents: ["cat"]
  470. },
  471. "horse": {
  472. name: "Horse",
  473. parents: ["mammal"]
  474. },
  475. "sergal": {
  476. name: "Sergal",
  477. parents: ["mammal"]
  478. },
  479. "gryphon": {
  480. name: "Gryphon",
  481. parents: ["lion", "eagle"]
  482. },
  483. "robot": {
  484. name: "Robot",
  485. parents: ["machine"]
  486. },
  487. "medihound": {
  488. name: "Medihound",
  489. parents: ["robot", "dog"]
  490. },
  491. "sylveon": {
  492. name: "Sylveon",
  493. parents: ["pokemon"]
  494. },
  495. "catgirl": {
  496. name: "Catgirl",
  497. parents: ["mammal"]
  498. },
  499. "cowgirl": {
  500. name: "Cowgirl",
  501. parents: ["mammal"]
  502. },
  503. "pony": {
  504. name: "Pony",
  505. parents: ["horse"]
  506. },
  507. "rabbit": {
  508. name: "Rabbit",
  509. parents: ["mammal"]
  510. },
  511. "fennec-fox": {
  512. name: "Fennec Fox",
  513. parents: ["fox"]
  514. },
  515. "azodian": {
  516. name: "Azodian",
  517. parents: ["mouse"]
  518. },
  519. "shiba-inu": {
  520. name: "Shiba Inu",
  521. parents: ["dog"]
  522. },
  523. "changeling": {
  524. name: "Changeling",
  525. parents: ["insect"]
  526. },
  527. "cheetah": {
  528. name: "Cheetah",
  529. parents: ["cat"]
  530. },
  531. "golden-jackal": {
  532. name: "Golden Jackal",
  533. parents: ["jackal"]
  534. },
  535. "manectric": {
  536. name: "Manectric",
  537. parents: ["pokemon"]
  538. },
  539. "rat": {
  540. name: "Rat",
  541. parents: ["rodent"]
  542. },
  543. "rodent": {
  544. name: "Rodent",
  545. parents: ["mammal"]
  546. },
  547. "octocoon": {
  548. name: "Octocoon",
  549. parents: ["raccoon", "octopus"]
  550. },
  551. "octopus": {
  552. name: "Octopus",
  553. parents: ["fish"]
  554. },
  555. "werewolf": {
  556. name: "Werewolf",
  557. parents: ["wolf"]
  558. },
  559. "meerkat": {
  560. name: "Meerkat",
  561. parents: ["mammal"]
  562. },
  563. "human": {
  564. name: "Human",
  565. parents: ["mammal"]
  566. },
  567. "geth": {
  568. name: "Geth",
  569. parents: ["android"]
  570. },
  571. "husky": {
  572. name: "Husky",
  573. parents: ["dog"]
  574. },
  575. "long-eared-bat": {
  576. name: "Long Eared Bat",
  577. parents: ["bat"]
  578. },
  579. "lizard": {
  580. name: "Lizard",
  581. parents: ["reptile"]
  582. },
  583. "salamander": {
  584. name: "Salamander",
  585. parents: ["lizard"]
  586. },
  587. "chameleon": {
  588. name: "Chameleon",
  589. parents: ["lizard"]
  590. },
  591. "gecko": {
  592. name: "Gecko",
  593. parents: ["lizard"]
  594. },
  595. "kobold": {
  596. name: "Kobold",
  597. parents: ["reptile"]
  598. },
  599. "charizard": {
  600. name: "Charizard",
  601. parents: ["pokemon"]
  602. },
  603. "lugia": {
  604. name: "Lugia",
  605. parents: ["pokemon"]
  606. },
  607. "cerberus": {
  608. name: "Cerberus",
  609. parents: ["dog"]
  610. },
  611. "tyrantrum": {
  612. name: "Tyrantrum",
  613. parents: ["pokemon"]
  614. },
  615. "lemur": {
  616. name: "Lemur",
  617. parents: ["mammal"]
  618. },
  619. "kelpie": {
  620. name: "Kelpie",
  621. parents: ["horse", "monster"]
  622. },
  623. "labrador": {
  624. name: "Labrador",
  625. parents: ["dog"]
  626. },
  627. "sylveon": {
  628. name: "Sylveon",
  629. parents: ["eeveelution"]
  630. },
  631. "eeveelution": {
  632. name: "Eeveelution",
  633. parents: ["pokemon"]
  634. },
  635. "polar-bear": {
  636. name: "Polar Bear",
  637. parents: ["bear"]
  638. },
  639. "bear": {
  640. name: "Bear",
  641. parents: ["mammal"]
  642. },
  643. "absol": {
  644. name: "Absol",
  645. parents: ["pokemon"]
  646. },
  647. "wolver": {
  648. name: "Wolver",
  649. parents: ["mammal"]
  650. },
  651. "rottweiler": {
  652. name: "Rottweiler",
  653. parents: ["dog"]
  654. },
  655. "zebra": {
  656. name: "Zebra",
  657. parents: ["horse"]
  658. },
  659. "yoshi": {
  660. name: "Yoshi",
  661. parents: ["lizard"]
  662. },
  663. "lynx": {
  664. name: "Lynx",
  665. parents: ["cat"]
  666. },
  667. "unknown": {
  668. name: "Unknown",
  669. parents: []
  670. },
  671. "thylacine": {
  672. name: "Thylacine",
  673. parents: ["mammal"]
  674. },
  675. "gabumon": {
  676. name: "Gabumon",
  677. parents: ["digimon"]
  678. },
  679. "border-collie": {
  680. name: "Border Collie",
  681. parents: ["dog"]
  682. },
  683. "imp": {
  684. name: "Imp",
  685. parents: ["demon"]
  686. },
  687. "kangaroo": {
  688. name: "Kangaroo",
  689. parents: ["mammal"]
  690. },
  691. "renamon": {
  692. name: "Renamon",
  693. parents: ["digimon"]
  694. },
  695. "candy-orca-dragon": {
  696. name: "Candy Orca Dragon",
  697. parents: ["fish", "dragon", "candy"]
  698. },
  699. "sabertooth-tiger": {
  700. name: "Sabertooth Tiger",
  701. parents: ["cat"]
  702. },
  703. "espurr": {
  704. name: "Espurr",
  705. parents: ["pokemon"]
  706. },
  707. "otter": {
  708. name: "Otter",
  709. parents: ["mammal"]
  710. },
  711. "elemental": {
  712. name: "Elemental",
  713. parents: ["mammal"]
  714. },
  715. "mew": {
  716. name: "Mew",
  717. parents: ["pokemon"]
  718. },
  719. "goodra": {
  720. name: "Goodra",
  721. parents: ["pokemon"]
  722. },
  723. "fairy": {
  724. name: "Fairy",
  725. parents: ["magical"]
  726. },
  727. "typhlosion": {
  728. name: "Typhlosion",
  729. parents: ["pokemon"]
  730. },
  731. "magical": {
  732. name: "Magical",
  733. parents: []
  734. },
  735. "xenomorph": {
  736. name: "Xenomorph",
  737. parents: ["monster", "alien"]
  738. },
  739. "charr": {
  740. name: "Charr",
  741. parents: ["cat"]
  742. },
  743. "siberian-husky": {
  744. name: "Siberian Husky",
  745. parents: ["husky"]
  746. },
  747. "alligator": {
  748. name: "Alligator",
  749. parents: ["reptile"]
  750. },
  751. "bernese-mountain-dog": {
  752. name: "Bernese Mountain Dog",
  753. parents: ["dog"]
  754. },
  755. "reshiram": {
  756. name: "Reshiram",
  757. parents: ["pokemon"]
  758. },
  759. "grizzly-bear": {
  760. name: "Grizzly Bear",
  761. parents: ["bear"]
  762. },
  763. "water-monitor": {
  764. name: "Water Monitor",
  765. parents: ["lizard"]
  766. },
  767. "banchofossa": {
  768. name: "Banchofossa",
  769. parents: ["mammal"]
  770. },
  771. "kirin": {
  772. name: "Kirin",
  773. parents: ["monster"]
  774. },
  775. "quilava": {
  776. name: "Quilava",
  777. parents: ["pokemon"]
  778. },
  779. "seviper": {
  780. name: "Seviper",
  781. parents: ["pokemon"]
  782. },
  783. "flying-fox": {
  784. name: "Flying Fox",
  785. parents: ["bat"]
  786. },
  787. "keynain": {
  788. name: "Keynain",
  789. parents: ["avian"]
  790. },
  791. "lucario": {
  792. name: "Lucario",
  793. parents: ["pokemon"]
  794. },
  795. "siamese-cat": {
  796. name: "Siamese Cat",
  797. parents: ["cat"]
  798. },
  799. "spider": {
  800. name: "Spider",
  801. parents: ["insect"]
  802. },
  803. "samurott": {
  804. name: "Samurott",
  805. parents: ["pokemon"]
  806. },
  807. "megalodon": {
  808. name: "Megalodon",
  809. parents: ["shark"]
  810. },
  811. "unicorn": {
  812. name: "Unicorn",
  813. parents: ["horse"]
  814. },
  815. "greninja": {
  816. name: "Greninja",
  817. parents: ["pokemon"]
  818. },
  819. "water-dragon": {
  820. name: "Water Dragon",
  821. parents: ["dragon"]
  822. },
  823. "cross-fox": {
  824. name: "Cross Fox",
  825. parents: ["fox"]
  826. },
  827. "synth": {
  828. name: "Synth",
  829. parents: ["machine"]
  830. },
  831. "construct": {
  832. name: "Construct",
  833. parents: []
  834. },
  835. "mexican-wolf": {
  836. name: "Mexican Wolf",
  837. parents: ["wolf"]
  838. },
  839. "leopard": {
  840. name: "Leopard",
  841. parents: ["cat"]
  842. },
  843. "pig": {
  844. name: "Pig",
  845. parents: ["mammal"]
  846. },
  847. "ampharos": {
  848. name: "Ampharos",
  849. parents: ["pokemon"]
  850. },
  851. "orca": {
  852. name: "Orca",
  853. parents: ["fish"]
  854. },
  855. "lycanroc": {
  856. name: "Lycanroc",
  857. parents: ["pokemon"]
  858. },
  859. "surkanu": {
  860. name: "Surkanu",
  861. parents: ["monster"]
  862. },
  863. "seal": {
  864. name: "Seal",
  865. parents: ["mammal"]
  866. },
  867. "keldeo": {
  868. name: "Keldeo",
  869. parents: ["pokemon"]
  870. },
  871. "great-dane": {
  872. name: "Great Dane",
  873. parents: ["dog"]
  874. },
  875. "black-backed-jackal": {
  876. name: "Black Backed Jackal",
  877. parents: ["jackal"]
  878. },
  879. "sheep": {
  880. name: "Sheep",
  881. parents: ["mammal"]
  882. },
  883. "leopard-seal": {
  884. name: "Leopard Seal",
  885. parents: ["seal"]
  886. },
  887. "zoroark": {
  888. name: "Zoroark",
  889. parents: ["pokemon"]
  890. },
  891. "maned-wolf": {
  892. name: "Maned Wolf",
  893. parents: ["canine"]
  894. },
  895. "dracha": {
  896. name: "Dracha",
  897. parents: ["dragon"]
  898. },
  899. "wolxi": {
  900. name: "Wolxi",
  901. parents: ["mammal", "alien"]
  902. },
  903. "dratini": {
  904. name: "Dratini",
  905. parents: ["pokemon", "dragon"]
  906. },
  907. "skaven": {
  908. name: "Skaven",
  909. parents: ["rat"]
  910. },
  911. "mongoose": {
  912. name: "Mongoose",
  913. parents: ["mammal"]
  914. },
  915. "lopunny": {
  916. name: "Lopunny",
  917. parents: ["pokemon", "rabbit"]
  918. },
  919. "feraligatr": {
  920. name: "Feraligatr",
  921. parents: ["pokemon", "alligator"]
  922. },
  923. "houndoom": {
  924. name: "Houndoom",
  925. parents: ["pokemon", "dog"]
  926. },
  927. "protogen": {
  928. name: "Protogen",
  929. parents: ["machine"]
  930. },
  931. "saint-bernard": {
  932. name: "Saint Bernard",
  933. parents: ["dog"]
  934. },
  935. "crow": {
  936. name: "Crow",
  937. parents: ["corvid"]
  938. },
  939. "delphox": {
  940. name: "Delphox",
  941. parents: ["pokemon", "fox"]
  942. },
  943. "moose": {
  944. name: "Moose",
  945. parents: ["mammal"]
  946. },
  947. "joraxian": {
  948. name: "Joraxian",
  949. parents: ["monster", "canine", "demon"]
  950. },
  951. "nimbat": {
  952. name: "Nimbat",
  953. parents: ["mammal"]
  954. },
  955. "aardwolf": {
  956. name: "Aardwolf",
  957. parents: ["canine"]
  958. },
  959. "fluudrani": {
  960. name: "Fluudrani",
  961. parents: ["animal"]
  962. },
  963. "arcanine": {
  964. name: "Arcanine",
  965. parents: ["pokemon", "dog"]
  966. },
  967. "inteleon": {
  968. name: "Inteleon",
  969. parents: ["pokemon", "fish"]
  970. },
  971. "ninetales": {
  972. name: "Ninetales",
  973. parents: ["pokemon", "kitsune"]
  974. },
  975. "tigrex": {
  976. name: "Tigrex",
  977. parents: ["tiger"]
  978. },
  979. "zorua": {
  980. name: "Zorua",
  981. parents: ["pokemon", "fox"]
  982. },
  983. "vulpix": {
  984. name: "Vulpix",
  985. parents: ["pokemon", "fox"]
  986. },
  987. "barghest": {
  988. name: "Barghest",
  989. parents: ["monster"]
  990. },
  991. "gray-wolf": {
  992. name: "Gray Wolf",
  993. parents: ["wolf"]
  994. },
  995. "ruppells-fox": {
  996. name: "Rüppell's Fox",
  997. parents: ["fox"]
  998. },
  999. "bull-terrier": {
  1000. name: "Bull Terrier",
  1001. parents: ["dog"]
  1002. },
  1003. "european-honey-buzzard": {
  1004. name: "European Honey Buzzard",
  1005. parents: ["avian"]
  1006. },
  1007. "t-rex": {
  1008. name: "T Rex",
  1009. parents: ["dinosaur"]
  1010. },
  1011. "mactarian": {
  1012. name: "Mactarian",
  1013. parents: ["shark", "monster"]
  1014. },
  1015. "mewtwo-y": {
  1016. name: "Mewtwo Y",
  1017. parents: ["mewtwo"]
  1018. },
  1019. "mewtwo": {
  1020. name: "Mewtwo",
  1021. parents: ["pokemon"]
  1022. },
  1023. "mew": {
  1024. name: "Mew",
  1025. parents: ["pokemon"]
  1026. },
  1027. "eevee": {
  1028. name: "Eevee",
  1029. parents: ["eeveelution"]
  1030. },
  1031. "mienshao": {
  1032. name: "Mienshao",
  1033. parents: ["pokemon"]
  1034. },
  1035. "sugar-glider": {
  1036. name: "Sugar Glider",
  1037. parents: ["opossum"]
  1038. },
  1039. "spectral-bat": {
  1040. name: "Spectral Bat",
  1041. parents: ["bat"]
  1042. },
  1043. "scolipede": {
  1044. name: "Scolipede",
  1045. parents: ["pokemon", "insect"]
  1046. },
  1047. "jackalope": {
  1048. name: "Jackalope",
  1049. parents: ["rabbit", "antelope"]
  1050. },
  1051. "caracal": {
  1052. name: "Caracal",
  1053. parents: ["cat"]
  1054. },
  1055. "stoat": {
  1056. name: "Stoat",
  1057. parents: ["mammal"]
  1058. },
  1059. "african-golden-cat": {
  1060. name: "African Golden Cat",
  1061. parents: ["cat"]
  1062. },
  1063. "gigantosaurus": {
  1064. name: "Gigantosaurus",
  1065. parents: ["dinosaur"]
  1066. },
  1067. "zorgoia": {
  1068. name: "Zorgoia",
  1069. parents: ["mammal"]
  1070. },
  1071. "monitor-lizard": {
  1072. name: "Monitor Lizard",
  1073. parents: ["lizard"]
  1074. },
  1075. "ziralkia": {
  1076. name: "Ziralkia",
  1077. parents: ["mammal"]
  1078. },
  1079. "kiiasi": {
  1080. name: "Kiiasi",
  1081. parents: ["animal"]
  1082. },
  1083. "synx": {
  1084. name: "Synx",
  1085. parents: ["monster"]
  1086. },
  1087. "panther": {
  1088. name: "Panther",
  1089. parents: ["cat"]
  1090. },
  1091. "azumarill": {
  1092. name: "Azumarill",
  1093. parents: ["pokemon"]
  1094. },
  1095. "river-snaptail": {
  1096. name: "River Snaptail",
  1097. parents: ["otter", "crocodile"]
  1098. },
  1099. "great-blue-heron": {
  1100. name: "Great Blue Heron",
  1101. parents: ["avian"]
  1102. },
  1103. "smeargle": {
  1104. name: "Smeargle",
  1105. parents: ["pokemon"]
  1106. },
  1107. "vendeilen": {
  1108. name: "Vendeilen",
  1109. parents: ["monster"]
  1110. },
  1111. "ventura": {
  1112. name: "Ventura",
  1113. parents: ["canine"]
  1114. },
  1115. "clouded-leopard": {
  1116. name: "Clouded Leopard",
  1117. parents: ["leopard"]
  1118. },
  1119. "argonian": {
  1120. name: "Argonian",
  1121. parents: ["lizard"]
  1122. },
  1123. "salazzle": {
  1124. name: "Salazzle",
  1125. parents: ["pokemon", "lizard"]
  1126. },
  1127. "je-stoff-drachen": {
  1128. name: "Je-Stoff Drachen",
  1129. parents: ["dragon"]
  1130. },
  1131. "finnish-spitz-dog": {
  1132. name: "Finnish Spitz Dog",
  1133. parents: ["dog"]
  1134. },
  1135. "gray-fox": {
  1136. name: "Gray Fox",
  1137. parents: ["fox"]
  1138. },
  1139. "opossum": {
  1140. name: "opossum",
  1141. parents: ["mammal"]
  1142. },
  1143. "antelope": {
  1144. name: "Antelope",
  1145. parents: ["mammal"]
  1146. },
  1147. "weavile": {
  1148. name: "Weavile",
  1149. parents: ["pokemon"]
  1150. },
  1151. "pikachu": {
  1152. name: "Pikachu",
  1153. parents: ["pokemon", "mouse"]
  1154. },
  1155. "grovyle": {
  1156. name: "Grovyle",
  1157. parents: ["pokemon", "plant"]
  1158. },
  1159. "sthara": {
  1160. name: "Sthara",
  1161. parents: ["snow-leopard", "reptile"]
  1162. },
  1163. "star-warrior": {
  1164. name: "Star Warrior",
  1165. parents: ["magical"]
  1166. },
  1167. "dragonoid": {
  1168. name: "Dragonoid",
  1169. parents: ["dragon"]
  1170. },
  1171. "suicune": {
  1172. name: "Suicune",
  1173. parents: ["pokemon"]
  1174. },
  1175. "vole": {
  1176. name: "Vole",
  1177. parents: ["mammal"]
  1178. },
  1179. "blaziken": {
  1180. name: "Blaziken",
  1181. parents: ["pokemon", "avian"]
  1182. },
  1183. "buizel": {
  1184. name: "Buizel",
  1185. parents: ["pokemon", "fish"]
  1186. },
  1187. "floatzel": {
  1188. name: "Floatzel",
  1189. parents: ["pokemon", "fish"]
  1190. },
  1191. "umok": {
  1192. name: "Umok",
  1193. parents: ["avian"]
  1194. },
  1195. "sea-monster": {
  1196. name: "Sea Monster",
  1197. parents: ["monster", "fish"]
  1198. },
  1199. "egyptian-vulture": {
  1200. name: "Egyptian Vulture",
  1201. parents: ["avian"]
  1202. },
  1203. "doberman": {
  1204. name: "Doberman",
  1205. parents: ["dog"]
  1206. },
  1207. "zangoose": {
  1208. name: "Zangoose",
  1209. parents: ["pokemon", "mongoose"]
  1210. },
  1211. "mongoose": {
  1212. name: "Mongoose",
  1213. parents: ["mammal"]
  1214. },
  1215. "wickerbeast": {
  1216. name: "Wickerbeast",
  1217. parents: ["monster"]
  1218. },
  1219. "zenari": {
  1220. name: "Zenari",
  1221. parents: ["lizard"]
  1222. },
  1223. "plant": {
  1224. name: "Plant",
  1225. parents: []
  1226. },
  1227. "raskatox": {
  1228. name: "Raskatox",
  1229. parents: ["raccoon", "skunk", "cat", "fox"]
  1230. },
  1231. "mikromare": {
  1232. name: "mikromare",
  1233. parents: ["alien"]
  1234. },
  1235. "alien": {
  1236. name: "Alien",
  1237. parents: ["animal"]
  1238. },
  1239. "deity": {
  1240. name: "Deity",
  1241. parents: []
  1242. },
  1243. "skarlan": {
  1244. name: "Skarlan",
  1245. parents: ["slug", "dragon"]
  1246. },
  1247. "slug": {
  1248. name: "Slug",
  1249. parents: ["mollusk"]
  1250. },
  1251. "mollusk": {
  1252. name: "Mollusk",
  1253. parents: ["animal"]
  1254. },
  1255. "chimera": {
  1256. name: "Chimera",
  1257. parents: ["monster"]
  1258. },
  1259. "gestalt": {
  1260. name: "Gestalt",
  1261. parents: ["construct"]
  1262. },
  1263. "mimic": {
  1264. name: "Mimic",
  1265. parents: ["monster"]
  1266. },
  1267. "calico-rat": {
  1268. name: "Calico Rat",
  1269. parents: ["rat"]
  1270. },
  1271. "panda": {
  1272. name: "Panda",
  1273. parents: ["mammal"]
  1274. },
  1275. "oni": {
  1276. name: "Oni",
  1277. parents: ["monster"]
  1278. },
  1279. "pegasus": {
  1280. name: "Pegasus",
  1281. parents: ["horse"]
  1282. },
  1283. "vulpera": {
  1284. name: "Vulpera",
  1285. parents: ["fennec-fox"]
  1286. },
  1287. "ceratosaurus": {
  1288. name: "Ceratosaurus",
  1289. parents: ["dinosaur"]
  1290. },
  1291. "nykur": {
  1292. name: "Nykur",
  1293. parents: ["horse", "monster"]
  1294. },
  1295. "giraffe": {
  1296. name: "Giraffe",
  1297. parents: ["mammal"]
  1298. },
  1299. "tauren": {
  1300. name: "Tauren",
  1301. parents: ["cow"]
  1302. },
  1303. "draconi": {
  1304. name: "Draconi",
  1305. parents: ["alien", "cat", "cyborg"]
  1306. },
  1307. "dire-wolf": {
  1308. name: "Dire Wolf",
  1309. parents: ["wolf"]
  1310. },
  1311. "ferromorph": {
  1312. name: "Ferromorph",
  1313. parents: ["construct"]
  1314. },
  1315. "meowth": {
  1316. name: "Meowth",
  1317. parents: ["cat", "pokemon"]
  1318. },
  1319. "pavodragon": {
  1320. name: "Pavodragon",
  1321. parents: ["dragon"]
  1322. },
  1323. "aaltranae": {
  1324. name: "Aaltranae",
  1325. parents: ["dragon"]
  1326. },
  1327. "cyborg": {
  1328. name: "Cyborg",
  1329. parents: ["machine"]
  1330. },
  1331. "draptor": {
  1332. name: "Draptor",
  1333. parents: ["dragon"]
  1334. },
  1335. "candy": {
  1336. name: "Candy",
  1337. parents: []
  1338. },
  1339. "drenath": {
  1340. name: "Drenath",
  1341. parents: ["dragon", "snake", "rabbit"]
  1342. },
  1343. "coyju": {
  1344. name: "Coyju",
  1345. parents: ["coyote", "kaiju"]
  1346. },
  1347. "kaiju": {
  1348. name: "Kaiju",
  1349. parents: ["monster"]
  1350. },
  1351. "nickit": {
  1352. name: "Nickit",
  1353. parents: ["pokemon", "cat"]
  1354. },
  1355. "lopunny": {
  1356. name: "Lopunny",
  1357. parents: ["pokemon", "rabbit"]
  1358. },
  1359. "korean-jindo-dog": {
  1360. name: "Korean Jindo Dog",
  1361. parents: ["dog"]
  1362. },
  1363. "naga": {
  1364. name: "Naga",
  1365. parents: ["snake", "monster"]
  1366. },
  1367. "undead": {
  1368. name: "Undead",
  1369. parents: ["monster"]
  1370. },
  1371. "whale": {
  1372. name: "Whale",
  1373. parents: ["fish"]
  1374. },
  1375. "gelato-bee": {
  1376. name: "Gelato Bee",
  1377. parents: ["bee"]
  1378. },
  1379. "bee": {
  1380. name: "Bee",
  1381. parents: ["insect"]
  1382. },
  1383. "gardevoir": {
  1384. name: "Gardevoir",
  1385. parents: ["pokemon"]
  1386. },
  1387. "ant": {
  1388. name: "Ant",
  1389. parents: ["insect"]
  1390. },
  1391. "frog": {
  1392. name: "Frog",
  1393. parents: ["amphibian"]
  1394. },
  1395. "amphibian": {
  1396. name: "Amphibian",
  1397. parents: ["animal"]
  1398. },
  1399. "pangolin": {
  1400. name: "Pangolin",
  1401. parents: ["mammal"]
  1402. },
  1403. "uragi'viidorn": {
  1404. name: "Uragi'viidorn",
  1405. parents: ["avian", "bear"]
  1406. },
  1407. "gryphdelphais": {
  1408. name: "Gryphdelphais",
  1409. parents: ["dolphin", "gryphon"]
  1410. },
  1411. "plush": {
  1412. name: "Plush",
  1413. parents: ["construct"]
  1414. },
  1415. "draiger": {
  1416. name: "Draiger",
  1417. parents: ["dragon","tiger"]
  1418. },
  1419. "foxsky": {
  1420. name: "Foxsky",
  1421. parents: ["fox", "husky"]
  1422. },
  1423. "umbreon": {
  1424. name: "Umbreon",
  1425. parents: ["eeveelution"]
  1426. },
  1427. "slime-dragon": {
  1428. name: "Slime Dragon",
  1429. parents: ["dragon"]
  1430. },
  1431. "enderman": {
  1432. name: "Enderman",
  1433. parents: ["monster"]
  1434. },
  1435. "gremlin": {
  1436. name: "Gremlin",
  1437. parents: ["monster"]
  1438. },
  1439. "dragonsune": {
  1440. name: "Dragonsune",
  1441. parents: ["dragon", "kitsune"]
  1442. },
  1443. "ghost": {
  1444. name: "Ghost",
  1445. parents: ["monster"]
  1446. },
  1447. "false-vampire-bat": {
  1448. name: "False Vampire Bat",
  1449. parents: ["bat"]
  1450. },
  1451. "succubus": {
  1452. name: "Succubus",
  1453. parents: ["demon"]
  1454. },
  1455. "mia": {
  1456. name: "Mia",
  1457. parents: ["canine"]
  1458. },
  1459. "rainbow": {
  1460. name: "Rainbow",
  1461. parents: ["monster"]
  1462. },
  1463. "solgaleo": {
  1464. name: "Solgaleo",
  1465. parents: ["pokemon"]
  1466. },
  1467. "lucent-nargacuga": {
  1468. name: "Lucent Nargacuga",
  1469. parents: ["monster-hunter"]
  1470. },
  1471. "monster-hunter": {
  1472. name: "Monster Hunter",
  1473. parents: ["monster"]
  1474. },
  1475. "leviathan": {
  1476. "name": "Leviathan",
  1477. "url": "sea-monster"
  1478. },
  1479. "bull": {
  1480. name: "Bull",
  1481. parents: ["mammal"]
  1482. },
  1483. "tanuki": {
  1484. name: "Tanuki",
  1485. parents: ["monster"]
  1486. },
  1487. "chakat": {
  1488. name: "Chakat",
  1489. parents: ["cat"]
  1490. },
  1491. "hydra": {
  1492. name: "Hydra",
  1493. parents: ["monster"]
  1494. },
  1495. "zigzagoon": {
  1496. name: "Zigzagoon",
  1497. parents: ["raccoon", "pokemon"]
  1498. },
  1499. "vulture": {
  1500. name: "Vulture",
  1501. parents: ["avian"]
  1502. },
  1503. "eastern-dragon": {
  1504. name: "Eastern Dragon",
  1505. parents: ["dragon"]
  1506. },
  1507. "gryffon": {
  1508. name: "Gryffon",
  1509. parents: ["phoenix", "red-panda"]
  1510. },
  1511. "amtsvane": {
  1512. name: "Amtsvane",
  1513. parents: ["reptile"]
  1514. },
  1515. "kigavi": {
  1516. name: "Kigavi",
  1517. parents: ["avian"]
  1518. },
  1519. "turian": {
  1520. name: "Turian",
  1521. parents: ["avian"]
  1522. },
  1523. "zeraora": {
  1524. name: "Zeraora",
  1525. parents: ["pokemon"]
  1526. },
  1527. }
  1528. //species
  1529. function getSpeciesInfo(speciesList) {
  1530. let result = new Set();
  1531. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1532. result.add(entry)
  1533. });
  1534. return Array.from(result);
  1535. };
  1536. function getSpeciesInfoHelper(species) {
  1537. if (!speciesData[species]) {
  1538. console.warn(species + " doesn't exist");
  1539. return [];
  1540. }
  1541. if (speciesData[species].parents) {
  1542. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1543. } else {
  1544. return [species];
  1545. }
  1546. }
  1547. characterMakers.push(() => makeCharacter(
  1548. {
  1549. name: "Fen",
  1550. species: ["crux"],
  1551. description: {
  1552. title: "Bio",
  1553. text: "Very furry. Sheds on everything."
  1554. },
  1555. tags: [
  1556. "anthro",
  1557. "goo"
  1558. ]
  1559. },
  1560. {
  1561. back: {
  1562. height: math.unit(2.2428, "meter"),
  1563. weight: math.unit(124.738, "kg"),
  1564. name: "Back",
  1565. image: {
  1566. source: "./media/characters/fen/back.svg",
  1567. extra: 2024 / 1867,
  1568. bottom: 13 / 2037
  1569. },
  1570. info: {
  1571. description: {
  1572. mode: "append",
  1573. text: "\n\nHe is not currently looking at you."
  1574. }
  1575. }
  1576. },
  1577. full: {
  1578. height: math.unit(1.34, "meter"),
  1579. weight: math.unit(225, "kg"),
  1580. name: "Full",
  1581. image: {
  1582. source: "./media/characters/fen/full.svg"
  1583. },
  1584. info: {
  1585. description: {
  1586. mode: "append",
  1587. text: "\n\nMunch."
  1588. }
  1589. }
  1590. },
  1591. kneeling: {
  1592. height: math.unit(5.4, "feet"),
  1593. weight: math.unit(124.738, "kg"),
  1594. name: "Kneeling",
  1595. image: {
  1596. source: "./media/characters/fen/kneeling.svg",
  1597. extra: 563 / 507
  1598. }
  1599. },
  1600. goo: {
  1601. height: math.unit(2.8, "feet"),
  1602. weight: math.unit(125, "kg"),
  1603. capacity: math.unit(1, "people"),
  1604. name: "Goo",
  1605. image: {
  1606. source: "./media/characters/fen/goo.svg",
  1607. bottom: 116 / 613
  1608. }
  1609. },
  1610. lounging: {
  1611. height: math.unit(6.5, "feet"),
  1612. weight: math.unit(125, "kg"),
  1613. name: "Lounging",
  1614. image: {
  1615. source: "./media/characters/fen/lounging.svg"
  1616. }
  1617. },
  1618. },
  1619. [
  1620. {
  1621. name: "Normal",
  1622. height: math.unit(2.2428, "meter")
  1623. },
  1624. {
  1625. name: "Big",
  1626. height: math.unit(12, "feet")
  1627. },
  1628. {
  1629. name: "Minimacro",
  1630. height: math.unit(40, "feet"),
  1631. default: true,
  1632. info: {
  1633. description: {
  1634. mode: "append",
  1635. text: "\n\nTOO DAMN BIG"
  1636. }
  1637. }
  1638. },
  1639. {
  1640. name: "Macro",
  1641. height: math.unit(100, "feet"),
  1642. info: {
  1643. description: {
  1644. mode: "append",
  1645. text: "\n\nTOO DAMN BIG"
  1646. }
  1647. }
  1648. },
  1649. {
  1650. name: "Macro+",
  1651. height: math.unit(300, "feet")
  1652. },
  1653. {
  1654. name: "Megamacro",
  1655. height: math.unit(2, "miles")
  1656. }
  1657. ]
  1658. ))
  1659. characterMakers.push(() => makeCharacter(
  1660. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1661. {
  1662. front: {
  1663. height: math.unit(183, "cm"),
  1664. weight: math.unit(80, "kg"),
  1665. name: "Front",
  1666. image: {
  1667. source: "./media/characters/sofia-fluttertail/front.svg",
  1668. bottom: 0.01,
  1669. extra: 2154 / 2081
  1670. }
  1671. },
  1672. frontAlt: {
  1673. height: math.unit(183, "cm"),
  1674. weight: math.unit(80, "kg"),
  1675. name: "Front (alt)",
  1676. image: {
  1677. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1678. }
  1679. },
  1680. back: {
  1681. height: math.unit(183, "cm"),
  1682. weight: math.unit(80, "kg"),
  1683. name: "Back",
  1684. image: {
  1685. source: "./media/characters/sofia-fluttertail/back.svg"
  1686. }
  1687. },
  1688. kneeling: {
  1689. height: math.unit(125, "cm"),
  1690. weight: math.unit(80, "kg"),
  1691. name: "Kneeling",
  1692. image: {
  1693. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1694. extra: 1033 / 977,
  1695. bottom: 23.7 / 1057
  1696. }
  1697. },
  1698. maw: {
  1699. height: math.unit(183 / 5, "cm"),
  1700. name: "Maw",
  1701. image: {
  1702. source: "./media/characters/sofia-fluttertail/maw.svg"
  1703. }
  1704. },
  1705. mawcloseup: {
  1706. height: math.unit(183 / 5 * 0.41, "cm"),
  1707. name: "Maw (Closeup)",
  1708. image: {
  1709. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1710. }
  1711. },
  1712. paws: {
  1713. height: math.unit(1.17, "feet"),
  1714. name: "Paws",
  1715. image: {
  1716. source: "./media/characters/sofia-fluttertail/paws.svg",
  1717. extra: 851 / 851,
  1718. bottom: 17 / 868
  1719. }
  1720. },
  1721. },
  1722. [
  1723. {
  1724. name: "Normal",
  1725. height: math.unit(1.83, "meter")
  1726. },
  1727. {
  1728. name: "Size Thief",
  1729. height: math.unit(18, "feet")
  1730. },
  1731. {
  1732. name: "50 Foot Collie",
  1733. height: math.unit(50, "feet")
  1734. },
  1735. {
  1736. name: "Macro",
  1737. height: math.unit(96, "feet"),
  1738. default: true
  1739. },
  1740. {
  1741. name: "Megamerger",
  1742. height: math.unit(650, "feet")
  1743. },
  1744. ]
  1745. ))
  1746. characterMakers.push(() => makeCharacter(
  1747. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1748. {
  1749. front: {
  1750. height: math.unit(7, "feet"),
  1751. weight: math.unit(100, "kg"),
  1752. name: "Front",
  1753. image: {
  1754. source: "./media/characters/march/front.svg",
  1755. extra: 1,
  1756. bottom: 0.015
  1757. }
  1758. },
  1759. foot: {
  1760. height: math.unit(0.9, "feet"),
  1761. name: "Foot",
  1762. image: {
  1763. source: "./media/characters/march/foot.svg"
  1764. }
  1765. },
  1766. },
  1767. [
  1768. {
  1769. name: "Normal",
  1770. height: math.unit(7.9, "feet")
  1771. },
  1772. {
  1773. name: "Macro",
  1774. height: math.unit(220, "meters")
  1775. },
  1776. {
  1777. name: "Megamacro",
  1778. height: math.unit(2.98, "km"),
  1779. default: true
  1780. },
  1781. {
  1782. name: "Gigamacro",
  1783. height: math.unit(15963, "km")
  1784. },
  1785. {
  1786. name: "Teramacro",
  1787. height: math.unit(2980000000, "km")
  1788. },
  1789. {
  1790. name: "Examacro",
  1791. height: math.unit(250, "parsecs")
  1792. },
  1793. ]
  1794. ))
  1795. characterMakers.push(() => makeCharacter(
  1796. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1797. {
  1798. front: {
  1799. height: math.unit(6, "feet"),
  1800. weight: math.unit(60, "kg"),
  1801. name: "Front",
  1802. image: {
  1803. source: "./media/characters/noir/front.svg",
  1804. extra: 1,
  1805. bottom: 0.032
  1806. }
  1807. },
  1808. },
  1809. [
  1810. {
  1811. name: "Normal",
  1812. height: math.unit(6.6, "feet")
  1813. },
  1814. {
  1815. name: "Macro",
  1816. height: math.unit(500, "feet")
  1817. },
  1818. {
  1819. name: "Megamacro",
  1820. height: math.unit(2.5, "km"),
  1821. default: true
  1822. },
  1823. {
  1824. name: "Gigamacro",
  1825. height: math.unit(22500, "km")
  1826. },
  1827. {
  1828. name: "Teramacro",
  1829. height: math.unit(2500000000, "km")
  1830. },
  1831. {
  1832. name: "Examacro",
  1833. height: math.unit(200, "parsecs")
  1834. },
  1835. ]
  1836. ))
  1837. characterMakers.push(() => makeCharacter(
  1838. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1839. {
  1840. front: {
  1841. height: math.unit(7, "feet"),
  1842. weight: math.unit(100, "kg"),
  1843. name: "Front",
  1844. image: {
  1845. source: "./media/characters/okuri/front.svg",
  1846. extra: 1,
  1847. bottom: 0.037
  1848. }
  1849. },
  1850. back: {
  1851. height: math.unit(7, "feet"),
  1852. weight: math.unit(100, "kg"),
  1853. name: "Back",
  1854. image: {
  1855. source: "./media/characters/okuri/back.svg",
  1856. extra: 1,
  1857. bottom: 0.007
  1858. }
  1859. },
  1860. },
  1861. [
  1862. {
  1863. name: "Megamacro",
  1864. height: math.unit(100, "miles"),
  1865. default: true
  1866. },
  1867. ]
  1868. ))
  1869. characterMakers.push(() => makeCharacter(
  1870. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1871. {
  1872. front: {
  1873. height: math.unit(7, "feet"),
  1874. weight: math.unit(100, "kg"),
  1875. name: "Front",
  1876. image: {
  1877. source: "./media/characters/manny/front.svg",
  1878. extra: 1,
  1879. bottom: 0.06
  1880. }
  1881. },
  1882. back: {
  1883. height: math.unit(7, "feet"),
  1884. weight: math.unit(100, "kg"),
  1885. name: "Back",
  1886. image: {
  1887. source: "./media/characters/manny/back.svg",
  1888. extra: 1,
  1889. bottom: 0.014
  1890. }
  1891. },
  1892. },
  1893. [
  1894. {
  1895. name: "Normal",
  1896. height: math.unit(7, "feet"),
  1897. },
  1898. {
  1899. name: "Macro",
  1900. height: math.unit(78, "feet"),
  1901. default: true
  1902. },
  1903. {
  1904. name: "Macro+",
  1905. height: math.unit(300, "meters")
  1906. },
  1907. {
  1908. name: "Macro++",
  1909. height: math.unit(2400, "meters")
  1910. },
  1911. {
  1912. name: "Megamacro",
  1913. height: math.unit(5167, "meters")
  1914. },
  1915. {
  1916. name: "Gigamacro",
  1917. height: math.unit(41769, "miles")
  1918. },
  1919. ]
  1920. ))
  1921. characterMakers.push(() => makeCharacter(
  1922. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1923. {
  1924. front: {
  1925. height: math.unit(7, "feet"),
  1926. weight: math.unit(100, "kg"),
  1927. name: "Front",
  1928. image: {
  1929. source: "./media/characters/adake/front-1.svg"
  1930. }
  1931. },
  1932. frontAlt: {
  1933. height: math.unit(7, "feet"),
  1934. weight: math.unit(100, "kg"),
  1935. name: "Front (Alt)",
  1936. image: {
  1937. source: "./media/characters/adake/front-2.svg",
  1938. extra: 1,
  1939. bottom: 0.01
  1940. }
  1941. },
  1942. back: {
  1943. height: math.unit(7, "feet"),
  1944. weight: math.unit(100, "kg"),
  1945. name: "Back",
  1946. image: {
  1947. source: "./media/characters/adake/back.svg",
  1948. }
  1949. },
  1950. kneel: {
  1951. height: math.unit(5.385, "feet"),
  1952. weight: math.unit(100, "kg"),
  1953. name: "Kneeling",
  1954. image: {
  1955. source: "./media/characters/adake/kneel.svg",
  1956. bottom: 0.052
  1957. }
  1958. },
  1959. },
  1960. [
  1961. {
  1962. name: "Normal",
  1963. height: math.unit(7, "feet"),
  1964. },
  1965. {
  1966. name: "Macro",
  1967. height: math.unit(78, "feet"),
  1968. default: true
  1969. },
  1970. {
  1971. name: "Macro+",
  1972. height: math.unit(300, "meters")
  1973. },
  1974. {
  1975. name: "Macro++",
  1976. height: math.unit(2400, "meters")
  1977. },
  1978. {
  1979. name: "Megamacro",
  1980. height: math.unit(5167, "meters")
  1981. },
  1982. {
  1983. name: "Gigamacro",
  1984. height: math.unit(41769, "miles")
  1985. },
  1986. ]
  1987. ))
  1988. characterMakers.push(() => makeCharacter(
  1989. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1990. {
  1991. front: {
  1992. height: math.unit(1.65, "meters"),
  1993. weight: math.unit(50, "kg"),
  1994. name: "Front",
  1995. image: {
  1996. source: "./media/characters/elijah/front.svg",
  1997. extra: 858 / 830,
  1998. bottom: 95.5 / 953.8559
  1999. }
  2000. },
  2001. back: {
  2002. height: math.unit(1.65, "meters"),
  2003. weight: math.unit(50, "kg"),
  2004. name: "Back",
  2005. image: {
  2006. source: "./media/characters/elijah/back.svg",
  2007. extra: 895 / 850,
  2008. bottom: 5.3 / 897.956
  2009. }
  2010. },
  2011. frontNsfw: {
  2012. height: math.unit(1.65, "meters"),
  2013. weight: math.unit(50, "kg"),
  2014. name: "Front (NSFW)",
  2015. image: {
  2016. source: "./media/characters/elijah/front-nsfw.svg",
  2017. extra: 858 / 830,
  2018. bottom: 95.5 / 953.8559
  2019. }
  2020. },
  2021. backNsfw: {
  2022. height: math.unit(1.65, "meters"),
  2023. weight: math.unit(50, "kg"),
  2024. name: "Back (NSFW)",
  2025. image: {
  2026. source: "./media/characters/elijah/back-nsfw.svg",
  2027. extra: 895 / 850,
  2028. bottom: 5.3 / 897.956
  2029. }
  2030. },
  2031. dick: {
  2032. height: math.unit(1, "feet"),
  2033. name: "Dick",
  2034. image: {
  2035. source: "./media/characters/elijah/dick.svg"
  2036. }
  2037. },
  2038. beakOpen: {
  2039. height: math.unit(1.25, "feet"),
  2040. name: "Beak (Open)",
  2041. image: {
  2042. source: "./media/characters/elijah/beak-open.svg"
  2043. }
  2044. },
  2045. beakShut: {
  2046. height: math.unit(1.25, "feet"),
  2047. name: "Beak (Shut)",
  2048. image: {
  2049. source: "./media/characters/elijah/beak-shut.svg"
  2050. }
  2051. },
  2052. footFlexing: {
  2053. height: math.unit(1.61, "feet"),
  2054. name: "Foot (Flexing)",
  2055. image: {
  2056. source: "./media/characters/elijah/foot-flexing.svg"
  2057. }
  2058. },
  2059. footStepping: {
  2060. height: math.unit(1.44, "feet"),
  2061. name: "Foot (Stepping)",
  2062. image: {
  2063. source: "./media/characters/elijah/foot-stepping.svg"
  2064. }
  2065. },
  2066. plantigradeLeg: {
  2067. height: math.unit(2.34, "feet"),
  2068. name: "Plantigrade Leg",
  2069. image: {
  2070. source: "./media/characters/elijah/plantigrade-leg.svg"
  2071. }
  2072. },
  2073. plantigradeFootLeft: {
  2074. height: math.unit(0.9, "feet"),
  2075. name: "Plantigrade Foot (Left)",
  2076. image: {
  2077. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2078. }
  2079. },
  2080. plantigradeFootRight: {
  2081. height: math.unit(0.9, "feet"),
  2082. name: "Plantigrade Foot (Right)",
  2083. image: {
  2084. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2085. }
  2086. },
  2087. },
  2088. [
  2089. {
  2090. name: "Normal",
  2091. height: math.unit(1.65, "meters")
  2092. },
  2093. {
  2094. name: "Macro",
  2095. height: math.unit(55, "meters"),
  2096. default: true
  2097. },
  2098. {
  2099. name: "Macro+",
  2100. height: math.unit(105, "meters")
  2101. },
  2102. ]
  2103. ))
  2104. characterMakers.push(() => makeCharacter(
  2105. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2106. {
  2107. front: {
  2108. height: math.unit(11, "feet"),
  2109. weight: math.unit(80, "kg"),
  2110. name: "Front",
  2111. image: {
  2112. source: "./media/characters/rai/front.svg",
  2113. extra: 1,
  2114. bottom: 0.03
  2115. }
  2116. },
  2117. side: {
  2118. height: math.unit(11, "feet"),
  2119. weight: math.unit(80, "kg"),
  2120. name: "Side",
  2121. image: {
  2122. source: "./media/characters/rai/side.svg"
  2123. }
  2124. },
  2125. back: {
  2126. height: math.unit(11, "feet"),
  2127. weight: math.unit(80, "lb"),
  2128. name: "Back",
  2129. image: {
  2130. source: "./media/characters/rai/back.svg",
  2131. extra: 1,
  2132. bottom: 0.01
  2133. }
  2134. },
  2135. feral: {
  2136. height: math.unit(11, "feet"),
  2137. weight: math.unit(800, "lb"),
  2138. name: "Feral",
  2139. image: {
  2140. source: "./media/characters/rai/feral.svg",
  2141. extra: 1050 / 659,
  2142. bottom: 0.07
  2143. }
  2144. },
  2145. dragon: {
  2146. height: math.unit(23, "feet"),
  2147. weight: math.unit(50000, "lb"),
  2148. name: "Dragon",
  2149. image: {
  2150. source: "./media/characters/rai/dragon.svg",
  2151. extra: 2498 / 2030,
  2152. bottom: 85.2 / 2584
  2153. }
  2154. },
  2155. maw: {
  2156. height: math.unit(6 / 3.81416, "feet"),
  2157. name: "Maw",
  2158. image: {
  2159. source: "./media/characters/rai/maw.svg"
  2160. }
  2161. },
  2162. },
  2163. [
  2164. {
  2165. name: "Normal",
  2166. height: math.unit(11, "feet")
  2167. },
  2168. {
  2169. name: "Macro",
  2170. height: math.unit(302, "feet"),
  2171. default: true
  2172. },
  2173. ]
  2174. ))
  2175. characterMakers.push(() => makeCharacter(
  2176. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2177. {
  2178. frontDressed: {
  2179. height: math.unit(216, "feet"),
  2180. weight: math.unit(7000000, "lb"),
  2181. name: "Front (Dressed)",
  2182. image: {
  2183. source: "./media/characters/jazzy/front-dressed.svg",
  2184. extra: 2738 / 2651,
  2185. bottom: 41.8 / 2786
  2186. }
  2187. },
  2188. backDressed: {
  2189. height: math.unit(216, "feet"),
  2190. weight: math.unit(7000000, "lb"),
  2191. name: "Back (Dressed)",
  2192. image: {
  2193. source: "./media/characters/jazzy/back-dressed.svg",
  2194. extra: 2775 / 2673,
  2195. bottom: 36.8 / 2817
  2196. }
  2197. },
  2198. front: {
  2199. height: math.unit(216, "feet"),
  2200. weight: math.unit(7000000, "lb"),
  2201. name: "Front",
  2202. image: {
  2203. source: "./media/characters/jazzy/front.svg",
  2204. extra: 2738 / 2651,
  2205. bottom: 41.8 / 2786
  2206. }
  2207. },
  2208. back: {
  2209. height: math.unit(216, "feet"),
  2210. weight: math.unit(7000000, "lb"),
  2211. name: "Back",
  2212. image: {
  2213. source: "./media/characters/jazzy/back.svg",
  2214. extra: 2775 / 2673,
  2215. bottom: 36.8 / 2817
  2216. }
  2217. },
  2218. maw: {
  2219. height: math.unit(20, "feet"),
  2220. name: "Maw",
  2221. image: {
  2222. source: "./media/characters/jazzy/maw.svg"
  2223. }
  2224. },
  2225. paws: {
  2226. height: math.unit(27.5, "feet"),
  2227. name: "Paws",
  2228. image: {
  2229. source: "./media/characters/jazzy/paws.svg"
  2230. }
  2231. },
  2232. eye: {
  2233. height: math.unit(4.4, "feet"),
  2234. name: "Eye",
  2235. image: {
  2236. source: "./media/characters/jazzy/eye.svg"
  2237. }
  2238. },
  2239. droneOffense: {
  2240. height: math.unit(9.5, "inches"),
  2241. name: "Drone (Offense)",
  2242. image: {
  2243. source: "./media/characters/jazzy/drone-offense.svg"
  2244. }
  2245. },
  2246. droneRecon: {
  2247. height: math.unit(9.5, "inches"),
  2248. name: "Drone (Recon)",
  2249. image: {
  2250. source: "./media/characters/jazzy/drone-recon.svg"
  2251. }
  2252. },
  2253. droneDefense: {
  2254. height: math.unit(9.5, "inches"),
  2255. name: "Drone (Defense)",
  2256. image: {
  2257. source: "./media/characters/jazzy/drone-defense.svg"
  2258. }
  2259. },
  2260. },
  2261. [
  2262. {
  2263. name: "Macro",
  2264. height: math.unit(216, "feet"),
  2265. default: true
  2266. },
  2267. ]
  2268. ))
  2269. characterMakers.push(() => makeCharacter(
  2270. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2271. {
  2272. front: {
  2273. height: math.unit(7, "feet"),
  2274. weight: math.unit(80, "kg"),
  2275. name: "Front",
  2276. image: {
  2277. source: "./media/characters/flamm/front.svg",
  2278. extra: 1794 / 1677,
  2279. bottom: 31.7 / 1828.5
  2280. }
  2281. },
  2282. },
  2283. [
  2284. {
  2285. name: "Normal",
  2286. height: math.unit(9.5, "feet")
  2287. },
  2288. {
  2289. name: "Macro",
  2290. height: math.unit(200, "feet"),
  2291. default: true
  2292. },
  2293. ]
  2294. ))
  2295. characterMakers.push(() => makeCharacter(
  2296. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2297. {
  2298. front: {
  2299. height: math.unit(5 + 3/12, "feet"),
  2300. weight: math.unit(60, "kg"),
  2301. name: "Front",
  2302. image: {
  2303. source: "./media/characters/zephiro/front.svg",
  2304. extra: 2309 / 2162,
  2305. bottom: 0.069
  2306. }
  2307. },
  2308. side: {
  2309. height: math.unit(5 + 3/12, "feet"),
  2310. weight: math.unit(60, "kg"),
  2311. name: "Side",
  2312. image: {
  2313. source: "./media/characters/zephiro/side.svg",
  2314. extra: 2403 / 2279,
  2315. bottom: 0.015
  2316. }
  2317. },
  2318. back: {
  2319. height: math.unit(5 + 3/12, "feet"),
  2320. weight: math.unit(60, "kg"),
  2321. name: "Back",
  2322. image: {
  2323. source: "./media/characters/zephiro/back.svg",
  2324. extra: 2373 / 2244,
  2325. bottom: 0.013
  2326. }
  2327. },
  2328. hand: {
  2329. height: math.unit(0.68, "feet"),
  2330. name: "Hand",
  2331. image: {
  2332. source: "./media/characters/zephiro/hand.svg"
  2333. }
  2334. },
  2335. paw: {
  2336. height: math.unit(1, "feet"),
  2337. name: "Paw",
  2338. image: {
  2339. source: "./media/characters/zephiro/paw.svg"
  2340. }
  2341. },
  2342. beans: {
  2343. height: math.unit(0.93, "feet"),
  2344. name: "Beans",
  2345. image: {
  2346. source: "./media/characters/zephiro/beans.svg"
  2347. }
  2348. },
  2349. },
  2350. [
  2351. {
  2352. name: "Micro",
  2353. height: math.unit(3, "inches")
  2354. },
  2355. {
  2356. name: "Normal",
  2357. height: math.unit(5 + 3 / 12, "feet"),
  2358. default: true
  2359. },
  2360. {
  2361. name: "Macro",
  2362. height: math.unit(118, "feet")
  2363. },
  2364. ]
  2365. ))
  2366. characterMakers.push(() => makeCharacter(
  2367. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2368. {
  2369. front: {
  2370. height: math.unit(5, "feet"),
  2371. weight: math.unit(90, "kg"),
  2372. name: "Front",
  2373. image: {
  2374. source: "./media/characters/fory/front.svg",
  2375. extra: 2862 / 2674,
  2376. bottom: 180 / 3043.8
  2377. }
  2378. },
  2379. back: {
  2380. height: math.unit(5, "feet"),
  2381. weight: math.unit(90, "kg"),
  2382. name: "Back",
  2383. image: {
  2384. source: "./media/characters/fory/back.svg",
  2385. extra: 2962 / 2791,
  2386. bottom: 106 / 3071.8
  2387. }
  2388. },
  2389. foot: {
  2390. height: math.unit(2.14, "feet"),
  2391. name: "Foot",
  2392. image: {
  2393. source: "./media/characters/fory/foot.svg"
  2394. }
  2395. },
  2396. },
  2397. [
  2398. {
  2399. name: "Normal",
  2400. height: math.unit(5, "feet")
  2401. },
  2402. {
  2403. name: "Macro",
  2404. height: math.unit(50, "feet"),
  2405. default: true
  2406. },
  2407. {
  2408. name: "Megamacro",
  2409. height: math.unit(10, "miles")
  2410. },
  2411. {
  2412. name: "Gigamacro",
  2413. height: math.unit(5, "earths")
  2414. },
  2415. ]
  2416. ))
  2417. characterMakers.push(() => makeCharacter(
  2418. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2419. {
  2420. front: {
  2421. height: math.unit(7, "feet"),
  2422. weight: math.unit(90, "kg"),
  2423. name: "Front",
  2424. image: {
  2425. source: "./media/characters/kurrikage/front.svg",
  2426. extra: 1,
  2427. bottom: 0.035
  2428. }
  2429. },
  2430. back: {
  2431. height: math.unit(7, "feet"),
  2432. weight: math.unit(90, "lb"),
  2433. name: "Back",
  2434. image: {
  2435. source: "./media/characters/kurrikage/back.svg"
  2436. }
  2437. },
  2438. paw: {
  2439. height: math.unit(1.5, "feet"),
  2440. name: "Paw",
  2441. image: {
  2442. source: "./media/characters/kurrikage/paw.svg"
  2443. }
  2444. },
  2445. staff: {
  2446. height: math.unit(6.7, "feet"),
  2447. name: "Staff",
  2448. image: {
  2449. source: "./media/characters/kurrikage/staff.svg"
  2450. }
  2451. },
  2452. peek: {
  2453. height: math.unit(1.05, "feet"),
  2454. name: "Peeking",
  2455. image: {
  2456. source: "./media/characters/kurrikage/peek.svg",
  2457. bottom: 0.08
  2458. }
  2459. },
  2460. },
  2461. [
  2462. {
  2463. name: "Normal",
  2464. height: math.unit(12, "feet"),
  2465. default: true
  2466. },
  2467. {
  2468. name: "Big",
  2469. height: math.unit(20, "feet")
  2470. },
  2471. {
  2472. name: "Macro",
  2473. height: math.unit(500, "feet")
  2474. },
  2475. {
  2476. name: "Megamacro",
  2477. height: math.unit(20, "miles")
  2478. },
  2479. ]
  2480. ))
  2481. characterMakers.push(() => makeCharacter(
  2482. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2483. {
  2484. front: {
  2485. height: math.unit(6, "feet"),
  2486. weight: math.unit(75, "kg"),
  2487. name: "Front",
  2488. image: {
  2489. source: "./media/characters/shingo/front.svg",
  2490. extra: 706/681,
  2491. bottom: 11/717
  2492. }
  2493. },
  2494. frontAlt: {
  2495. height: math.unit(6, "feet"),
  2496. weight: math.unit(75, "kg"),
  2497. name: "Front (Alt)",
  2498. image: {
  2499. source: "./media/characters/shingo/front-alt.svg",
  2500. extra: 3511 / 3338,
  2501. bottom: 0.005
  2502. }
  2503. },
  2504. paw: {
  2505. height: math.unit(1, "feet"),
  2506. name: "Paw",
  2507. image: {
  2508. source: "./media/characters/shingo/paw.svg"
  2509. }
  2510. },
  2511. },
  2512. [
  2513. {
  2514. name: "Micro",
  2515. height: math.unit(4, "inches")
  2516. },
  2517. {
  2518. name: "Normal",
  2519. height: math.unit(6, "feet"),
  2520. default: true
  2521. },
  2522. {
  2523. name: "Macro",
  2524. height: math.unit(108, "feet")
  2525. },
  2526. {
  2527. name: "Macro+",
  2528. height: math.unit(1500, "feet")
  2529. },
  2530. ]
  2531. ))
  2532. characterMakers.push(() => makeCharacter(
  2533. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2534. {
  2535. side: {
  2536. height: math.unit(6, "feet"),
  2537. weight: math.unit(75, "kg"),
  2538. name: "Side",
  2539. image: {
  2540. source: "./media/characters/aigey/side.svg"
  2541. }
  2542. },
  2543. },
  2544. [
  2545. {
  2546. name: "Macro",
  2547. height: math.unit(200, "feet"),
  2548. default: true
  2549. },
  2550. {
  2551. name: "Megamacro",
  2552. height: math.unit(100, "miles")
  2553. },
  2554. ]
  2555. )
  2556. )
  2557. characterMakers.push(() => makeCharacter(
  2558. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2559. {
  2560. front: {
  2561. height: math.unit(5 + 5 / 12, "feet"),
  2562. weight: math.unit(75, "kg"),
  2563. name: "Front",
  2564. image: {
  2565. source: "./media/characters/natasha/front.svg",
  2566. extra: 859 / 824,
  2567. bottom: 23 / 879.6
  2568. }
  2569. },
  2570. frontNsfw: {
  2571. height: math.unit(5 + 5 / 12, "feet"),
  2572. weight: math.unit(75, "kg"),
  2573. name: "Front (NSFW)",
  2574. image: {
  2575. source: "./media/characters/natasha/front-nsfw.svg",
  2576. extra: 859 / 824,
  2577. bottom: 23 / 879.6
  2578. }
  2579. },
  2580. frontErect: {
  2581. height: math.unit(5 + 5 / 12, "feet"),
  2582. weight: math.unit(75, "kg"),
  2583. name: "Front (Erect)",
  2584. image: {
  2585. source: "./media/characters/natasha/front-erect.svg",
  2586. extra: 859 / 824,
  2587. bottom: 23 / 879.6
  2588. }
  2589. },
  2590. back: {
  2591. height: math.unit(5 + 5 / 12, "feet"),
  2592. weight: math.unit(75, "kg"),
  2593. name: "Back",
  2594. image: {
  2595. source: "./media/characters/natasha/back.svg",
  2596. extra: 887.9 / 852.6,
  2597. bottom: 9.7 / 896.4
  2598. }
  2599. },
  2600. backAlt: {
  2601. height: math.unit(5 + 5 / 12, "feet"),
  2602. weight: math.unit(75, "kg"),
  2603. name: "Back (Alt)",
  2604. image: {
  2605. source: "./media/characters/natasha/back-alt.svg",
  2606. extra: 1236.7 / 1192,
  2607. bottom: 22.3 / 1258.2
  2608. }
  2609. },
  2610. dick: {
  2611. height: math.unit(1.772, "feet"),
  2612. name: "Dick",
  2613. image: {
  2614. source: "./media/characters/natasha/dick.svg"
  2615. }
  2616. },
  2617. paw: {
  2618. height: math.unit(0.250, "meters"),
  2619. name: "Paw",
  2620. image: {
  2621. source: "./media/characters/natasha/paw.svg"
  2622. }
  2623. },
  2624. },
  2625. [
  2626. {
  2627. name: "Normal",
  2628. height: math.unit(5 + 5 / 12, "feet")
  2629. },
  2630. {
  2631. name: "Large",
  2632. height: math.unit(12, "feet")
  2633. },
  2634. {
  2635. name: "Macro",
  2636. height: math.unit(100, "feet"),
  2637. default: true
  2638. },
  2639. {
  2640. name: "Macro+",
  2641. height: math.unit(260, "feet")
  2642. },
  2643. {
  2644. name: "Macro++",
  2645. height: math.unit(1, "mile")
  2646. },
  2647. ]
  2648. ))
  2649. characterMakers.push(() => makeCharacter(
  2650. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2651. {
  2652. front: {
  2653. height: math.unit(6, "feet"),
  2654. weight: math.unit(75, "kg"),
  2655. name: "Front",
  2656. image: {
  2657. source: "./media/characters/malik/front.svg"
  2658. }
  2659. },
  2660. side: {
  2661. height: math.unit(6, "feet"),
  2662. weight: math.unit(75, "kg"),
  2663. name: "Side",
  2664. image: {
  2665. source: "./media/characters/malik/side.svg",
  2666. extra: 1.1539
  2667. }
  2668. },
  2669. back: {
  2670. height: math.unit(6, "feet"),
  2671. weight: math.unit(75, "kg"),
  2672. name: "Back",
  2673. image: {
  2674. source: "./media/characters/malik/back.svg"
  2675. }
  2676. },
  2677. },
  2678. [
  2679. {
  2680. name: "Macro",
  2681. height: math.unit(156, "feet"),
  2682. default: true
  2683. },
  2684. {
  2685. name: "Macro+",
  2686. height: math.unit(1188, "feet")
  2687. },
  2688. ]
  2689. ))
  2690. characterMakers.push(() => makeCharacter(
  2691. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2692. {
  2693. front: {
  2694. height: math.unit(6, "feet"),
  2695. weight: math.unit(75, "kg"),
  2696. name: "Front",
  2697. image: {
  2698. source: "./media/characters/sefer/front.svg",
  2699. extra: 848 / 659,
  2700. bottom: 28.3 / 876.442
  2701. }
  2702. },
  2703. back: {
  2704. height: math.unit(6, "feet"),
  2705. weight: math.unit(75, "kg"),
  2706. name: "Back",
  2707. image: {
  2708. source: "./media/characters/sefer/back.svg",
  2709. extra: 864 / 695,
  2710. bottom: 10 / 871
  2711. }
  2712. },
  2713. frontDressed: {
  2714. height: math.unit(6, "feet"),
  2715. weight: math.unit(75, "kg"),
  2716. name: "Front (Dressed)",
  2717. image: {
  2718. source: "./media/characters/sefer/front-dressed.svg",
  2719. extra: 839 / 653,
  2720. bottom: 37.6 / 878
  2721. }
  2722. },
  2723. },
  2724. [
  2725. {
  2726. name: "Normal",
  2727. height: math.unit(6, "feet"),
  2728. default: true
  2729. },
  2730. ]
  2731. ))
  2732. characterMakers.push(() => makeCharacter(
  2733. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2734. {
  2735. body: {
  2736. height: math.unit(2.2428, "meter"),
  2737. weight: math.unit(124.738, "kg"),
  2738. name: "Body",
  2739. image: {
  2740. extra: 1225 / 1050,
  2741. source: "./media/characters/north/front.svg"
  2742. }
  2743. }
  2744. },
  2745. [
  2746. {
  2747. name: "Micro",
  2748. height: math.unit(4, "inches")
  2749. },
  2750. {
  2751. name: "Macro",
  2752. height: math.unit(63, "meters")
  2753. },
  2754. {
  2755. name: "Megamacro",
  2756. height: math.unit(101, "miles"),
  2757. default: true
  2758. }
  2759. ]
  2760. ))
  2761. characterMakers.push(() => makeCharacter(
  2762. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2763. {
  2764. angled: {
  2765. height: math.unit(4, "meter"),
  2766. weight: math.unit(150, "kg"),
  2767. name: "Angled",
  2768. image: {
  2769. source: "./media/characters/talan/angled-sfw.svg",
  2770. bottom: 29 / 3734
  2771. }
  2772. },
  2773. angledNsfw: {
  2774. height: math.unit(4, "meter"),
  2775. weight: math.unit(150, "kg"),
  2776. name: "Angled (NSFW)",
  2777. image: {
  2778. source: "./media/characters/talan/angled-nsfw.svg",
  2779. bottom: 29 / 3734
  2780. }
  2781. },
  2782. frontNsfw: {
  2783. height: math.unit(4, "meter"),
  2784. weight: math.unit(150, "kg"),
  2785. name: "Front (NSFW)",
  2786. image: {
  2787. source: "./media/characters/talan/front-nsfw.svg",
  2788. bottom: 29 / 3734
  2789. }
  2790. },
  2791. sideNsfw: {
  2792. height: math.unit(4, "meter"),
  2793. weight: math.unit(150, "kg"),
  2794. name: "Side (NSFW)",
  2795. image: {
  2796. source: "./media/characters/talan/side-nsfw.svg",
  2797. bottom: 29 / 3734
  2798. }
  2799. },
  2800. back: {
  2801. height: math.unit(4, "meter"),
  2802. weight: math.unit(150, "kg"),
  2803. name: "Back",
  2804. image: {
  2805. source: "./media/characters/talan/back.svg"
  2806. }
  2807. },
  2808. dickBottom: {
  2809. height: math.unit(0.621, "meter"),
  2810. name: "Dick (Bottom)",
  2811. image: {
  2812. source: "./media/characters/talan/dick-bottom.svg"
  2813. }
  2814. },
  2815. dickTop: {
  2816. height: math.unit(0.621, "meter"),
  2817. name: "Dick (Top)",
  2818. image: {
  2819. source: "./media/characters/talan/dick-top.svg"
  2820. }
  2821. },
  2822. dickSide: {
  2823. height: math.unit(0.305, "meter"),
  2824. name: "Dick (Side)",
  2825. image: {
  2826. source: "./media/characters/talan/dick-side.svg"
  2827. }
  2828. },
  2829. dickFront: {
  2830. height: math.unit(0.305, "meter"),
  2831. name: "Dick (Front)",
  2832. image: {
  2833. source: "./media/characters/talan/dick-front.svg"
  2834. }
  2835. },
  2836. },
  2837. [
  2838. {
  2839. name: "Normal",
  2840. height: math.unit(4, "meters")
  2841. },
  2842. {
  2843. name: "Macro",
  2844. height: math.unit(100, "meters")
  2845. },
  2846. {
  2847. name: "Megamacro",
  2848. height: math.unit(2, "miles"),
  2849. default: true
  2850. },
  2851. {
  2852. name: "Gigamacro",
  2853. height: math.unit(5000, "miles")
  2854. },
  2855. {
  2856. name: "Teramacro",
  2857. height: math.unit(100, "parsecs")
  2858. }
  2859. ]
  2860. ))
  2861. characterMakers.push(() => makeCharacter(
  2862. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2863. {
  2864. front: {
  2865. height: math.unit(2, "meter"),
  2866. weight: math.unit(90, "kg"),
  2867. name: "Front",
  2868. image: {
  2869. source: "./media/characters/gael'rathus/front.svg"
  2870. }
  2871. },
  2872. frontAlt: {
  2873. height: math.unit(2, "meter"),
  2874. weight: math.unit(90, "kg"),
  2875. name: "Front (alt)",
  2876. image: {
  2877. source: "./media/characters/gael'rathus/front-alt.svg"
  2878. }
  2879. },
  2880. frontAlt2: {
  2881. height: math.unit(2, "meter"),
  2882. weight: math.unit(90, "kg"),
  2883. name: "Front (alt 2)",
  2884. image: {
  2885. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2886. }
  2887. }
  2888. },
  2889. [
  2890. {
  2891. name: "Normal",
  2892. height: math.unit(9, "feet"),
  2893. default: true
  2894. },
  2895. {
  2896. name: "Large",
  2897. height: math.unit(25, "feet")
  2898. },
  2899. {
  2900. name: "Macro",
  2901. height: math.unit(0.25, "miles")
  2902. },
  2903. {
  2904. name: "Megamacro",
  2905. height: math.unit(10, "miles")
  2906. }
  2907. ]
  2908. ))
  2909. characterMakers.push(() => makeCharacter(
  2910. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2911. {
  2912. side: {
  2913. height: math.unit(2, "meter"),
  2914. weight: math.unit(140, "kg"),
  2915. name: "Side",
  2916. image: {
  2917. source: "./media/characters/sosha/side.svg",
  2918. bottom: 0.042
  2919. }
  2920. },
  2921. },
  2922. [
  2923. {
  2924. name: "Normal",
  2925. height: math.unit(12, "feet"),
  2926. default: true
  2927. }
  2928. ]
  2929. ))
  2930. characterMakers.push(() => makeCharacter(
  2931. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2932. {
  2933. side: {
  2934. height: math.unit(5 + 5 / 12, "feet"),
  2935. weight: math.unit(170, "kg"),
  2936. name: "Side",
  2937. image: {
  2938. source: "./media/characters/runnola/side.svg",
  2939. extra: 741 / 448,
  2940. bottom: 0.05
  2941. }
  2942. },
  2943. },
  2944. [
  2945. {
  2946. name: "Small",
  2947. height: math.unit(3, "feet")
  2948. },
  2949. {
  2950. name: "Normal",
  2951. height: math.unit(5 + 5 / 12, "feet"),
  2952. default: true
  2953. },
  2954. {
  2955. name: "Big",
  2956. height: math.unit(10, "feet")
  2957. },
  2958. ]
  2959. ))
  2960. characterMakers.push(() => makeCharacter(
  2961. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2962. {
  2963. front: {
  2964. height: math.unit(2, "meter"),
  2965. weight: math.unit(50, "kg"),
  2966. name: "Front",
  2967. image: {
  2968. source: "./media/characters/kurribird/front.svg",
  2969. bottom: 0.015
  2970. }
  2971. },
  2972. frontAlt: {
  2973. height: math.unit(1.5, "meter"),
  2974. weight: math.unit(50, "kg"),
  2975. name: "Front (Alt)",
  2976. image: {
  2977. source: "./media/characters/kurribird/front-alt.svg",
  2978. extra: 1.45
  2979. }
  2980. },
  2981. },
  2982. [
  2983. {
  2984. name: "Normal",
  2985. height: math.unit(7, "feet")
  2986. },
  2987. {
  2988. name: "Big",
  2989. height: math.unit(12, "feet"),
  2990. default: true
  2991. },
  2992. {
  2993. name: "Macro",
  2994. height: math.unit(1500, "feet")
  2995. },
  2996. {
  2997. name: "Megamacro",
  2998. height: math.unit(2, "miles")
  2999. }
  3000. ]
  3001. ))
  3002. characterMakers.push(() => makeCharacter(
  3003. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3004. {
  3005. front: {
  3006. height: math.unit(2, "meter"),
  3007. weight: math.unit(80, "kg"),
  3008. name: "Front",
  3009. image: {
  3010. source: "./media/characters/elbial/front.svg",
  3011. extra: 1643 / 1556,
  3012. bottom: 60.2 / 1696
  3013. }
  3014. },
  3015. side: {
  3016. height: math.unit(2, "meter"),
  3017. weight: math.unit(80, "kg"),
  3018. name: "Side",
  3019. image: {
  3020. source: "./media/characters/elbial/side.svg",
  3021. extra: 1630 / 1565,
  3022. bottom: 71.5 / 1697
  3023. }
  3024. },
  3025. back: {
  3026. height: math.unit(2, "meter"),
  3027. weight: math.unit(80, "kg"),
  3028. name: "Back",
  3029. image: {
  3030. source: "./media/characters/elbial/back.svg",
  3031. extra: 1668 / 1595,
  3032. bottom: 5.6 / 1672
  3033. }
  3034. },
  3035. frontDressed: {
  3036. height: math.unit(2, "meter"),
  3037. weight: math.unit(80, "kg"),
  3038. name: "Front (Dressed)",
  3039. image: {
  3040. source: "./media/characters/elbial/front-dressed.svg",
  3041. extra: 1653 / 1584,
  3042. bottom: 57 / 1708
  3043. }
  3044. },
  3045. genitals: {
  3046. height: math.unit(2 / 3.367, "meter"),
  3047. name: "Genitals",
  3048. image: {
  3049. source: "./media/characters/elbial/genitals.svg"
  3050. }
  3051. },
  3052. },
  3053. [
  3054. {
  3055. name: "Large",
  3056. height: math.unit(100, "feet")
  3057. },
  3058. {
  3059. name: "Macro",
  3060. height: math.unit(500, "feet"),
  3061. default: true
  3062. },
  3063. {
  3064. name: "Megamacro",
  3065. height: math.unit(10, "miles")
  3066. },
  3067. {
  3068. name: "Gigamacro",
  3069. height: math.unit(25000, "miles")
  3070. },
  3071. {
  3072. name: "Full-Size",
  3073. height: math.unit(8000000, "gigaparsecs")
  3074. }
  3075. ]
  3076. ))
  3077. characterMakers.push(() => makeCharacter(
  3078. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3079. {
  3080. front: {
  3081. height: math.unit(2, "meter"),
  3082. weight: math.unit(60, "kg"),
  3083. name: "Front",
  3084. image: {
  3085. source: "./media/characters/noah/front.svg"
  3086. }
  3087. },
  3088. talons: {
  3089. height: math.unit(0.315, "meter"),
  3090. name: "Talons",
  3091. image: {
  3092. source: "./media/characters/noah/talons.svg"
  3093. }
  3094. }
  3095. },
  3096. [
  3097. {
  3098. name: "Large",
  3099. height: math.unit(50, "feet")
  3100. },
  3101. {
  3102. name: "Macro",
  3103. height: math.unit(750, "feet"),
  3104. default: true
  3105. },
  3106. {
  3107. name: "Megamacro",
  3108. height: math.unit(50, "miles")
  3109. },
  3110. {
  3111. name: "Gigamacro",
  3112. height: math.unit(100000, "miles")
  3113. },
  3114. {
  3115. name: "Full-Size",
  3116. height: math.unit(3000000000, "miles")
  3117. }
  3118. ]
  3119. ))
  3120. characterMakers.push(() => makeCharacter(
  3121. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3122. {
  3123. front: {
  3124. height: math.unit(2, "meter"),
  3125. weight: math.unit(80, "kg"),
  3126. name: "Front",
  3127. image: {
  3128. source: "./media/characters/natalya/front.svg"
  3129. }
  3130. },
  3131. back: {
  3132. height: math.unit(2, "meter"),
  3133. weight: math.unit(80, "kg"),
  3134. name: "Back",
  3135. image: {
  3136. source: "./media/characters/natalya/back.svg"
  3137. }
  3138. }
  3139. },
  3140. [
  3141. {
  3142. name: "Normal",
  3143. height: math.unit(150, "feet"),
  3144. default: true
  3145. },
  3146. {
  3147. name: "Megamacro",
  3148. height: math.unit(5, "miles")
  3149. },
  3150. {
  3151. name: "Full-Size",
  3152. height: math.unit(600, "kiloparsecs")
  3153. }
  3154. ]
  3155. ))
  3156. characterMakers.push(() => makeCharacter(
  3157. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3158. {
  3159. front: {
  3160. height: math.unit(2, "meter"),
  3161. weight: math.unit(50, "kg"),
  3162. name: "Front",
  3163. image: {
  3164. source: "./media/characters/erestrebah/front.svg",
  3165. extra: 208 / 193,
  3166. bottom: 0.055
  3167. }
  3168. },
  3169. back: {
  3170. height: math.unit(2, "meter"),
  3171. weight: math.unit(50, "kg"),
  3172. name: "Back",
  3173. image: {
  3174. source: "./media/characters/erestrebah/back.svg",
  3175. extra: 1.3
  3176. }
  3177. }
  3178. },
  3179. [
  3180. {
  3181. name: "Normal",
  3182. height: math.unit(10, "feet")
  3183. },
  3184. {
  3185. name: "Large",
  3186. height: math.unit(50, "feet"),
  3187. default: true
  3188. },
  3189. {
  3190. name: "Macro",
  3191. height: math.unit(300, "feet")
  3192. },
  3193. {
  3194. name: "Macro+",
  3195. height: math.unit(750, "feet")
  3196. },
  3197. {
  3198. name: "Megamacro",
  3199. height: math.unit(3, "miles")
  3200. }
  3201. ]
  3202. ))
  3203. characterMakers.push(() => makeCharacter(
  3204. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3205. {
  3206. front: {
  3207. height: math.unit(2, "meter"),
  3208. weight: math.unit(80, "kg"),
  3209. name: "Front",
  3210. image: {
  3211. source: "./media/characters/jennifer/front.svg",
  3212. bottom: 0.11,
  3213. extra: 1.16
  3214. }
  3215. },
  3216. frontAlt: {
  3217. height: math.unit(2, "meter"),
  3218. weight: math.unit(80, "kg"),
  3219. name: "Front (Alt)",
  3220. image: {
  3221. source: "./media/characters/jennifer/front-alt.svg"
  3222. }
  3223. }
  3224. },
  3225. [
  3226. {
  3227. name: "Canon Height",
  3228. height: math.unit(120, "feet"),
  3229. default: true
  3230. },
  3231. {
  3232. name: "Macro+",
  3233. height: math.unit(300, "feet")
  3234. },
  3235. {
  3236. name: "Megamacro",
  3237. height: math.unit(20000, "feet")
  3238. }
  3239. ]
  3240. ))
  3241. characterMakers.push(() => makeCharacter(
  3242. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3243. {
  3244. front: {
  3245. height: math.unit(2, "meter"),
  3246. weight: math.unit(50, "kg"),
  3247. name: "Front",
  3248. image: {
  3249. source: "./media/characters/kalista/front.svg",
  3250. extra: 1947 / 1700,
  3251. bottom: 76.6 / 1412.98
  3252. }
  3253. },
  3254. back: {
  3255. height: math.unit(2, "meter"),
  3256. weight: math.unit(50, "kg"),
  3257. name: "Back",
  3258. image: {
  3259. source: "./media/characters/kalista/back.svg",
  3260. extra: 1366 / 1156,
  3261. bottom: 33.9 / 1362.78
  3262. }
  3263. }
  3264. },
  3265. [
  3266. {
  3267. name: "Uncomfortably Small",
  3268. height: math.unit(10, "feet")
  3269. },
  3270. {
  3271. name: "Small",
  3272. height: math.unit(30, "feet")
  3273. },
  3274. {
  3275. name: "Macro",
  3276. height: math.unit(100, "feet"),
  3277. default: true
  3278. },
  3279. {
  3280. name: "Macro+",
  3281. height: math.unit(2000, "feet")
  3282. },
  3283. {
  3284. name: "True Form",
  3285. height: math.unit(8924, "miles")
  3286. }
  3287. ]
  3288. ))
  3289. characterMakers.push(() => makeCharacter(
  3290. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3291. {
  3292. front: {
  3293. height: math.unit(2, "meter"),
  3294. weight: math.unit(120, "kg"),
  3295. name: "Front",
  3296. image: {
  3297. source: "./media/characters/ggv/front.svg"
  3298. }
  3299. },
  3300. side: {
  3301. height: math.unit(2, "meter"),
  3302. weight: math.unit(120, "kg"),
  3303. name: "Side",
  3304. image: {
  3305. source: "./media/characters/ggv/side.svg"
  3306. }
  3307. }
  3308. },
  3309. [
  3310. {
  3311. name: "Extremely Puny",
  3312. height: math.unit(9 + 5 / 12, "feet")
  3313. },
  3314. {
  3315. name: "Horribly Small",
  3316. height: math.unit(47.7, "miles"),
  3317. default: true
  3318. },
  3319. {
  3320. name: "Reasonably Sized",
  3321. height: math.unit(25000, "parsecs")
  3322. },
  3323. {
  3324. name: "Slightly Uncompressed",
  3325. height: math.unit(7.77e31, "parsecs")
  3326. },
  3327. {
  3328. name: "Omniversal",
  3329. height: math.unit(1e300, "meters")
  3330. },
  3331. ]
  3332. ))
  3333. characterMakers.push(() => makeCharacter(
  3334. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3335. {
  3336. front: {
  3337. height: math.unit(2, "meter"),
  3338. weight: math.unit(75, "lb"),
  3339. name: "Front",
  3340. image: {
  3341. source: "./media/characters/napalm/front.svg"
  3342. }
  3343. },
  3344. back: {
  3345. height: math.unit(2, "meter"),
  3346. weight: math.unit(75, "lb"),
  3347. name: "Back",
  3348. image: {
  3349. source: "./media/characters/napalm/back.svg"
  3350. }
  3351. }
  3352. },
  3353. [
  3354. {
  3355. name: "Standard",
  3356. height: math.unit(55, "feet"),
  3357. default: true
  3358. }
  3359. ]
  3360. ))
  3361. characterMakers.push(() => makeCharacter(
  3362. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3363. {
  3364. front: {
  3365. height: math.unit(7 + 5 / 6, "feet"),
  3366. weight: math.unit(325, "lb"),
  3367. name: "Front",
  3368. image: {
  3369. source: "./media/characters/asana/front.svg",
  3370. extra: 1133 / 1060,
  3371. bottom: 15.2 / 1148.6
  3372. }
  3373. },
  3374. back: {
  3375. height: math.unit(7 + 5 / 6, "feet"),
  3376. weight: math.unit(325, "lb"),
  3377. name: "Back",
  3378. image: {
  3379. source: "./media/characters/asana/back.svg",
  3380. extra: 1114 / 1043,
  3381. bottom: 5 / 1120
  3382. }
  3383. },
  3384. dressedDark: {
  3385. height: math.unit(7 + 5 / 6, "feet"),
  3386. weight: math.unit(325, "lb"),
  3387. name: "Dressed (Dark)",
  3388. image: {
  3389. source: "./media/characters/asana/dressed-dark.svg",
  3390. extra: 1133 / 1060,
  3391. bottom: 15.2 / 1148.6
  3392. }
  3393. },
  3394. dressedLight: {
  3395. height: math.unit(7 + 5 / 6, "feet"),
  3396. weight: math.unit(325, "lb"),
  3397. name: "Dressed (Light)",
  3398. image: {
  3399. source: "./media/characters/asana/dressed-light.svg",
  3400. extra: 1133 / 1060,
  3401. bottom: 15.2 / 1148.6
  3402. }
  3403. },
  3404. },
  3405. [
  3406. {
  3407. name: "Standard",
  3408. height: math.unit(7 + 5 / 6, "feet"),
  3409. default: true
  3410. },
  3411. {
  3412. name: "Large",
  3413. height: math.unit(10, "meters")
  3414. },
  3415. {
  3416. name: "Macro",
  3417. height: math.unit(2500, "meters")
  3418. },
  3419. {
  3420. name: "Megamacro",
  3421. height: math.unit(5e6, "meters")
  3422. },
  3423. {
  3424. name: "Examacro",
  3425. height: math.unit(5e12, "lightyears")
  3426. },
  3427. {
  3428. name: "Max Size",
  3429. height: math.unit(1e31, "lightyears")
  3430. }
  3431. ]
  3432. ))
  3433. characterMakers.push(() => makeCharacter(
  3434. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3435. {
  3436. front: {
  3437. height: math.unit(2, "meter"),
  3438. weight: math.unit(60, "kg"),
  3439. name: "Front",
  3440. image: {
  3441. source: "./media/characters/ebony/front.svg",
  3442. bottom: 0.03,
  3443. extra: 1045 / 810 + 0.03
  3444. }
  3445. },
  3446. side: {
  3447. height: math.unit(2, "meter"),
  3448. weight: math.unit(60, "kg"),
  3449. name: "Side",
  3450. image: {
  3451. source: "./media/characters/ebony/side.svg",
  3452. bottom: 0.03,
  3453. extra: 1045 / 810 + 0.03
  3454. }
  3455. },
  3456. back: {
  3457. height: math.unit(2, "meter"),
  3458. weight: math.unit(60, "kg"),
  3459. name: "Back",
  3460. image: {
  3461. source: "./media/characters/ebony/back.svg",
  3462. bottom: 0.01,
  3463. extra: 1045 / 810 + 0.01
  3464. }
  3465. },
  3466. },
  3467. [
  3468. // TODO check why I did this lol
  3469. {
  3470. name: "Standard",
  3471. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3472. default: true
  3473. },
  3474. {
  3475. name: "Macro",
  3476. height: math.unit(200, "feet")
  3477. },
  3478. {
  3479. name: "Gigamacro",
  3480. height: math.unit(13000, "km")
  3481. }
  3482. ]
  3483. ))
  3484. characterMakers.push(() => makeCharacter(
  3485. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3486. {
  3487. front: {
  3488. height: math.unit(6, "feet"),
  3489. weight: math.unit(175, "lb"),
  3490. name: "Front",
  3491. image: {
  3492. source: "./media/characters/mountain/front.svg",
  3493. extra: 972 / 955,
  3494. bottom: 64 / 1036.6
  3495. }
  3496. },
  3497. back: {
  3498. height: math.unit(6, "feet"),
  3499. weight: math.unit(175, "lb"),
  3500. name: "Back",
  3501. image: {
  3502. source: "./media/characters/mountain/back.svg",
  3503. extra: 970 / 950,
  3504. bottom: 28.25 / 999
  3505. }
  3506. },
  3507. },
  3508. [
  3509. {
  3510. name: "Large",
  3511. height: math.unit(20, "meters")
  3512. },
  3513. {
  3514. name: "Macro",
  3515. height: math.unit(300, "meters")
  3516. },
  3517. {
  3518. name: "Gigamacro",
  3519. height: math.unit(10000, "km"),
  3520. default: true
  3521. },
  3522. {
  3523. name: "Examacro",
  3524. height: math.unit(10e9, "lightyears")
  3525. }
  3526. ]
  3527. ))
  3528. characterMakers.push(() => makeCharacter(
  3529. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3530. {
  3531. front: {
  3532. height: math.unit(8, "feet"),
  3533. weight: math.unit(500, "lb"),
  3534. name: "Front",
  3535. image: {
  3536. source: "./media/characters/rick/front.svg"
  3537. }
  3538. }
  3539. },
  3540. [
  3541. {
  3542. name: "Normal",
  3543. height: math.unit(8, "feet"),
  3544. default: true
  3545. },
  3546. {
  3547. name: "Macro",
  3548. height: math.unit(5, "km")
  3549. }
  3550. ]
  3551. ))
  3552. characterMakers.push(() => makeCharacter(
  3553. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3554. {
  3555. front: {
  3556. height: math.unit(8, "feet"),
  3557. weight: math.unit(120, "lb"),
  3558. name: "Front",
  3559. image: {
  3560. source: "./media/characters/ona/front.svg"
  3561. }
  3562. },
  3563. frontAlt: {
  3564. height: math.unit(8, "feet"),
  3565. weight: math.unit(120, "lb"),
  3566. name: "Front (Alt)",
  3567. image: {
  3568. source: "./media/characters/ona/front-alt.svg"
  3569. }
  3570. },
  3571. back: {
  3572. height: math.unit(8, "feet"),
  3573. weight: math.unit(120, "lb"),
  3574. name: "Back",
  3575. image: {
  3576. source: "./media/characters/ona/back.svg"
  3577. }
  3578. },
  3579. foot: {
  3580. height: math.unit(1.1, "feet"),
  3581. name: "Foot",
  3582. image: {
  3583. source: "./media/characters/ona/foot.svg"
  3584. }
  3585. }
  3586. },
  3587. [
  3588. {
  3589. name: "Megamacro",
  3590. height: math.unit(70, "km"),
  3591. default: true
  3592. },
  3593. {
  3594. name: "Gigamacro",
  3595. height: math.unit(681818, "miles")
  3596. },
  3597. {
  3598. name: "Examacro",
  3599. height: math.unit(3800000, "lightyears")
  3600. },
  3601. ]
  3602. ))
  3603. characterMakers.push(() => makeCharacter(
  3604. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3605. {
  3606. front: {
  3607. height: math.unit(12, "feet"),
  3608. weight: math.unit(3000, "lb"),
  3609. name: "Front",
  3610. image: {
  3611. source: "./media/characters/mech/front.svg",
  3612. extra: 2900 / 2770,
  3613. bottom: 110 / 3010
  3614. }
  3615. },
  3616. back: {
  3617. height: math.unit(12, "feet"),
  3618. weight: math.unit(3000, "lb"),
  3619. name: "Back",
  3620. image: {
  3621. source: "./media/characters/mech/back.svg",
  3622. extra: 3011 / 2890,
  3623. bottom: 94 / 3105
  3624. }
  3625. },
  3626. maw: {
  3627. height: math.unit(3.07, "feet"),
  3628. name: "Maw",
  3629. image: {
  3630. source: "./media/characters/mech/maw.svg"
  3631. }
  3632. },
  3633. head: {
  3634. height: math.unit(2.82, "feet"),
  3635. name: "Head",
  3636. image: {
  3637. source: "./media/characters/mech/head.svg"
  3638. }
  3639. },
  3640. dick: {
  3641. height: math.unit(1.43, "feet"),
  3642. name: "Dick",
  3643. image: {
  3644. source: "./media/characters/mech/dick.svg"
  3645. }
  3646. },
  3647. },
  3648. [
  3649. {
  3650. name: "Normal",
  3651. height: math.unit(12, "feet")
  3652. },
  3653. {
  3654. name: "Macro",
  3655. height: math.unit(300, "feet"),
  3656. default: true
  3657. },
  3658. {
  3659. name: "Macro+",
  3660. height: math.unit(1500, "feet")
  3661. },
  3662. ]
  3663. ))
  3664. characterMakers.push(() => makeCharacter(
  3665. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3666. {
  3667. front: {
  3668. height: math.unit(1.3, "meter"),
  3669. weight: math.unit(30, "kg"),
  3670. name: "Front",
  3671. image: {
  3672. source: "./media/characters/gregory/front.svg",
  3673. }
  3674. }
  3675. },
  3676. [
  3677. {
  3678. name: "Normal",
  3679. height: math.unit(1.3, "meter"),
  3680. default: true
  3681. },
  3682. {
  3683. name: "Macro",
  3684. height: math.unit(20, "meter")
  3685. }
  3686. ]
  3687. ))
  3688. characterMakers.push(() => makeCharacter(
  3689. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3690. {
  3691. front: {
  3692. height: math.unit(2.8, "meter"),
  3693. weight: math.unit(200, "kg"),
  3694. name: "Front",
  3695. image: {
  3696. source: "./media/characters/elory/front.svg",
  3697. }
  3698. }
  3699. },
  3700. [
  3701. {
  3702. name: "Normal",
  3703. height: math.unit(2.8, "meter"),
  3704. default: true
  3705. },
  3706. {
  3707. name: "Macro",
  3708. height: math.unit(38, "meter")
  3709. }
  3710. ]
  3711. ))
  3712. characterMakers.push(() => makeCharacter(
  3713. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3714. {
  3715. front: {
  3716. height: math.unit(470, "feet"),
  3717. weight: math.unit(924, "tons"),
  3718. name: "Front",
  3719. image: {
  3720. source: "./media/characters/angelpatamon/front.svg",
  3721. }
  3722. }
  3723. },
  3724. [
  3725. {
  3726. name: "Normal",
  3727. height: math.unit(470, "feet"),
  3728. default: true
  3729. },
  3730. {
  3731. name: "Deity Size I",
  3732. height: math.unit(28651.2, "km")
  3733. },
  3734. {
  3735. name: "Deity Size II",
  3736. height: math.unit(171907.2, "km")
  3737. }
  3738. ]
  3739. ))
  3740. characterMakers.push(() => makeCharacter(
  3741. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3742. {
  3743. side: {
  3744. height: math.unit(7.2, "meter"),
  3745. weight: math.unit(8.2, "tons"),
  3746. name: "Side",
  3747. image: {
  3748. source: "./media/characters/cryae/side.svg",
  3749. extra: 3500 / 1500
  3750. }
  3751. }
  3752. },
  3753. [
  3754. {
  3755. name: "Normal",
  3756. height: math.unit(7.2, "meter"),
  3757. default: true
  3758. }
  3759. ]
  3760. ))
  3761. characterMakers.push(() => makeCharacter(
  3762. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3763. {
  3764. front: {
  3765. height: math.unit(6, "feet"),
  3766. weight: math.unit(175, "lb"),
  3767. name: "Front",
  3768. image: {
  3769. source: "./media/characters/xera/front.svg",
  3770. extra: 2377 / 1972,
  3771. bottom: 75.5 / 2452
  3772. }
  3773. },
  3774. side: {
  3775. height: math.unit(6, "feet"),
  3776. weight: math.unit(175, "lb"),
  3777. name: "Side",
  3778. image: {
  3779. source: "./media/characters/xera/side.svg",
  3780. extra: 2345 / 2019,
  3781. bottom: 39.7 / 2384
  3782. }
  3783. },
  3784. back: {
  3785. height: math.unit(6, "feet"),
  3786. weight: math.unit(175, "lb"),
  3787. name: "Back",
  3788. image: {
  3789. source: "./media/characters/xera/back.svg",
  3790. extra: 2095 / 1984,
  3791. bottom: 67 / 2166
  3792. }
  3793. },
  3794. },
  3795. [
  3796. {
  3797. name: "Small",
  3798. height: math.unit(10, "feet")
  3799. },
  3800. {
  3801. name: "Macro",
  3802. height: math.unit(500, "meters"),
  3803. default: true
  3804. },
  3805. {
  3806. name: "Macro+",
  3807. height: math.unit(10, "km")
  3808. },
  3809. {
  3810. name: "Gigamacro",
  3811. height: math.unit(25000, "km")
  3812. },
  3813. {
  3814. name: "Teramacro",
  3815. height: math.unit(3e6, "km")
  3816. }
  3817. ]
  3818. ))
  3819. characterMakers.push(() => makeCharacter(
  3820. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3821. {
  3822. front: {
  3823. height: math.unit(6, "feet"),
  3824. weight: math.unit(175, "lb"),
  3825. name: "Front",
  3826. image: {
  3827. source: "./media/characters/nebula/front.svg",
  3828. extra: 2566 / 2362,
  3829. bottom: 81 / 2644
  3830. }
  3831. }
  3832. },
  3833. [
  3834. {
  3835. name: "Small",
  3836. height: math.unit(4.5, "meters")
  3837. },
  3838. {
  3839. name: "Macro",
  3840. height: math.unit(1500, "meters"),
  3841. default: true
  3842. },
  3843. {
  3844. name: "Megamacro",
  3845. height: math.unit(150, "km")
  3846. },
  3847. {
  3848. name: "Gigamacro",
  3849. height: math.unit(27000, "km")
  3850. }
  3851. ]
  3852. ))
  3853. characterMakers.push(() => makeCharacter(
  3854. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3855. {
  3856. front: {
  3857. height: math.unit(6, "feet"),
  3858. weight: math.unit(225, "lb"),
  3859. name: "Front",
  3860. image: {
  3861. source: "./media/characters/abysgar/front.svg"
  3862. }
  3863. }
  3864. },
  3865. [
  3866. {
  3867. name: "Small",
  3868. height: math.unit(4.5, "meters")
  3869. },
  3870. {
  3871. name: "Macro",
  3872. height: math.unit(1250, "meters"),
  3873. default: true
  3874. },
  3875. {
  3876. name: "Megamacro",
  3877. height: math.unit(125, "km")
  3878. },
  3879. {
  3880. name: "Gigamacro",
  3881. height: math.unit(26000, "km")
  3882. }
  3883. ]
  3884. ))
  3885. characterMakers.push(() => makeCharacter(
  3886. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3887. {
  3888. front: {
  3889. height: math.unit(6, "feet"),
  3890. weight: math.unit(180, "lb"),
  3891. name: "Front",
  3892. image: {
  3893. source: "./media/characters/yakuz/front.svg"
  3894. }
  3895. }
  3896. },
  3897. [
  3898. {
  3899. name: "Small",
  3900. height: math.unit(5, "meters")
  3901. },
  3902. {
  3903. name: "Macro",
  3904. height: math.unit(1500, "meters"),
  3905. default: true
  3906. },
  3907. {
  3908. name: "Megamacro",
  3909. height: math.unit(200, "km")
  3910. },
  3911. {
  3912. name: "Gigamacro",
  3913. height: math.unit(100000, "km")
  3914. }
  3915. ]
  3916. ))
  3917. characterMakers.push(() => makeCharacter(
  3918. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3919. {
  3920. front: {
  3921. height: math.unit(6, "feet"),
  3922. weight: math.unit(175, "lb"),
  3923. name: "Front",
  3924. image: {
  3925. source: "./media/characters/mirova/front.svg",
  3926. extra: 3334 / 3071,
  3927. bottom: 42 / 3375.6
  3928. }
  3929. }
  3930. },
  3931. [
  3932. {
  3933. name: "Small",
  3934. height: math.unit(5, "meters")
  3935. },
  3936. {
  3937. name: "Macro",
  3938. height: math.unit(900, "meters"),
  3939. default: true
  3940. },
  3941. {
  3942. name: "Megamacro",
  3943. height: math.unit(135, "km")
  3944. },
  3945. {
  3946. name: "Gigamacro",
  3947. height: math.unit(20000, "km")
  3948. }
  3949. ]
  3950. ))
  3951. characterMakers.push(() => makeCharacter(
  3952. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3953. {
  3954. side: {
  3955. height: math.unit(28.35, "feet"),
  3956. weight: math.unit(99.75, "tons"),
  3957. name: "Side",
  3958. image: {
  3959. source: "./media/characters/asana-mech/side.svg",
  3960. extra: 923 / 699,
  3961. bottom: 50 / 975
  3962. }
  3963. },
  3964. chaingun: {
  3965. height: math.unit(7, "feet"),
  3966. weight: math.unit(2400, "lb"),
  3967. name: "Chaingun",
  3968. image: {
  3969. source: "./media/characters/asana-mech/chaingun.svg"
  3970. }
  3971. },
  3972. laser: {
  3973. height: math.unit(7.12, "feet"),
  3974. weight: math.unit(2000, "lb"),
  3975. name: "Laser",
  3976. image: {
  3977. source: "./media/characters/asana-mech/laser.svg"
  3978. }
  3979. },
  3980. },
  3981. [
  3982. {
  3983. name: "Normal",
  3984. height: math.unit(28.35, "feet"),
  3985. default: true
  3986. },
  3987. {
  3988. name: "Macro",
  3989. height: math.unit(2500, "feet")
  3990. },
  3991. {
  3992. name: "Megamacro",
  3993. height: math.unit(25, "miles")
  3994. },
  3995. {
  3996. name: "Examacro",
  3997. height: math.unit(6e8, "lightyears")
  3998. },
  3999. ]
  4000. ))
  4001. characterMakers.push(() => makeCharacter(
  4002. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4003. {
  4004. front: {
  4005. height: math.unit(5, "meters"),
  4006. weight: math.unit(1000, "kg"),
  4007. name: "Front",
  4008. image: {
  4009. source: "./media/characters/asche/front.svg",
  4010. extra: 1258 / 1190,
  4011. bottom: 47 / 1305
  4012. }
  4013. },
  4014. frontUnderwear: {
  4015. height: math.unit(5, "meters"),
  4016. weight: math.unit(1000, "kg"),
  4017. name: "Front (Underwear)",
  4018. image: {
  4019. source: "./media/characters/asche/front-underwear.svg",
  4020. extra: 1258 / 1190,
  4021. bottom: 47 / 1305
  4022. }
  4023. },
  4024. frontDressed: {
  4025. height: math.unit(5, "meters"),
  4026. weight: math.unit(1000, "kg"),
  4027. name: "Front (Dressed)",
  4028. image: {
  4029. source: "./media/characters/asche/front-dressed.svg",
  4030. extra: 1258 / 1190,
  4031. bottom: 47 / 1305
  4032. }
  4033. },
  4034. frontArmor: {
  4035. height: math.unit(5, "meters"),
  4036. weight: math.unit(1000, "kg"),
  4037. name: "Front (Armored)",
  4038. image: {
  4039. source: "./media/characters/asche/front-armored.svg",
  4040. extra: 1374 / 1308,
  4041. bottom: 23 / 1397
  4042. }
  4043. },
  4044. mp724: {
  4045. height: math.unit(0.96, "meters"),
  4046. weight: math.unit(38, "kg"),
  4047. name: "H&K MP724",
  4048. image: {
  4049. source: "./media/characters/asche/h&k-mp724.svg"
  4050. }
  4051. },
  4052. side: {
  4053. height: math.unit(5, "meters"),
  4054. weight: math.unit(1000, "kg"),
  4055. name: "Side",
  4056. image: {
  4057. source: "./media/characters/asche/side.svg",
  4058. extra: 1717 / 1609,
  4059. bottom: 0.005
  4060. }
  4061. },
  4062. back: {
  4063. height: math.unit(5, "meters"),
  4064. weight: math.unit(1000, "kg"),
  4065. name: "Back",
  4066. image: {
  4067. source: "./media/characters/asche/back.svg",
  4068. extra: 1570 / 1501
  4069. }
  4070. },
  4071. },
  4072. [
  4073. {
  4074. name: "DEFCON 5",
  4075. height: math.unit(5, "meters")
  4076. },
  4077. {
  4078. name: "DEFCON 4",
  4079. height: math.unit(500, "meters"),
  4080. default: true
  4081. },
  4082. {
  4083. name: "DEFCON 3",
  4084. height: math.unit(5, "km")
  4085. },
  4086. {
  4087. name: "DEFCON 2",
  4088. height: math.unit(500, "km")
  4089. },
  4090. {
  4091. name: "DEFCON 1",
  4092. height: math.unit(500000, "km")
  4093. },
  4094. {
  4095. name: "DEFCON 0",
  4096. height: math.unit(3, "gigaparsecs")
  4097. },
  4098. ]
  4099. ))
  4100. characterMakers.push(() => makeCharacter(
  4101. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4102. {
  4103. front: {
  4104. height: math.unit(2, "meters"),
  4105. weight: math.unit(76, "kg"),
  4106. name: "Front",
  4107. image: {
  4108. source: "./media/characters/gale/front.svg"
  4109. }
  4110. },
  4111. frontAlt1: {
  4112. height: math.unit(2, "meters"),
  4113. weight: math.unit(76, "kg"),
  4114. name: "Front (Alt 1)",
  4115. image: {
  4116. source: "./media/characters/gale/front-alt-1.svg"
  4117. }
  4118. },
  4119. frontAlt2: {
  4120. height: math.unit(2, "meters"),
  4121. weight: math.unit(76, "kg"),
  4122. name: "Front (Alt 2)",
  4123. image: {
  4124. source: "./media/characters/gale/front-alt-2.svg"
  4125. }
  4126. },
  4127. },
  4128. [
  4129. {
  4130. name: "Normal",
  4131. height: math.unit(7, "feet")
  4132. },
  4133. {
  4134. name: "Macro",
  4135. height: math.unit(150, "feet"),
  4136. default: true
  4137. },
  4138. {
  4139. name: "Macro+",
  4140. height: math.unit(300, "feet")
  4141. },
  4142. ]
  4143. ))
  4144. characterMakers.push(() => makeCharacter(
  4145. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4146. {
  4147. front: {
  4148. height: math.unit(2, "meters"),
  4149. weight: math.unit(76, "kg"),
  4150. name: "Front",
  4151. image: {
  4152. source: "./media/characters/draylen/front.svg"
  4153. }
  4154. }
  4155. },
  4156. [
  4157. {
  4158. name: "Macro",
  4159. height: math.unit(150, "feet"),
  4160. default: true
  4161. }
  4162. ]
  4163. ))
  4164. characterMakers.push(() => makeCharacter(
  4165. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4166. {
  4167. front: {
  4168. height: math.unit(7 + 9 / 12, "feet"),
  4169. weight: math.unit(379, "lbs"),
  4170. name: "Front",
  4171. image: {
  4172. source: "./media/characters/chez/front.svg"
  4173. }
  4174. },
  4175. side: {
  4176. height: math.unit(7 + 9 / 12, "feet"),
  4177. weight: math.unit(379, "lbs"),
  4178. name: "Side",
  4179. image: {
  4180. source: "./media/characters/chez/side.svg"
  4181. }
  4182. }
  4183. },
  4184. [
  4185. {
  4186. name: "Normal",
  4187. height: math.unit(7 + 9 / 12, "feet"),
  4188. default: true
  4189. },
  4190. {
  4191. name: "God King",
  4192. height: math.unit(9750000, "meters")
  4193. }
  4194. ]
  4195. ))
  4196. characterMakers.push(() => makeCharacter(
  4197. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4198. {
  4199. front: {
  4200. height: math.unit(6, "feet"),
  4201. weight: math.unit(275, "lbs"),
  4202. name: "Front",
  4203. image: {
  4204. source: "./media/characters/kaylum/front.svg",
  4205. bottom: 0.01,
  4206. extra: 1166 / 1031
  4207. }
  4208. },
  4209. frontWingless: {
  4210. height: math.unit(6, "feet"),
  4211. weight: math.unit(275, "lbs"),
  4212. name: "Front (Wingless)",
  4213. image: {
  4214. source: "./media/characters/kaylum/front-wingless.svg",
  4215. bottom: 0.01,
  4216. extra: 1117 / 1031
  4217. }
  4218. }
  4219. },
  4220. [
  4221. {
  4222. name: "Normal",
  4223. height: math.unit(3.05, "meters")
  4224. },
  4225. {
  4226. name: "Master",
  4227. height: math.unit(5.5, "meters")
  4228. },
  4229. {
  4230. name: "Rampage",
  4231. height: math.unit(19, "meters")
  4232. },
  4233. {
  4234. name: "Macro Lite",
  4235. height: math.unit(37, "meters")
  4236. },
  4237. {
  4238. name: "Hyper Predator",
  4239. height: math.unit(61, "meters")
  4240. },
  4241. {
  4242. name: "Macro",
  4243. height: math.unit(138, "meters"),
  4244. default: true
  4245. }
  4246. ]
  4247. ))
  4248. characterMakers.push(() => makeCharacter(
  4249. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4250. {
  4251. front: {
  4252. height: math.unit(6, "feet"),
  4253. weight: math.unit(150, "lbs"),
  4254. name: "Front",
  4255. image: {
  4256. source: "./media/characters/geta/front.svg"
  4257. }
  4258. }
  4259. },
  4260. [
  4261. {
  4262. name: "Micro",
  4263. height: math.unit(3, "inches"),
  4264. default: true
  4265. },
  4266. {
  4267. name: "Normal",
  4268. height: math.unit(5 + 5 / 12, "feet")
  4269. }
  4270. ]
  4271. ))
  4272. characterMakers.push(() => makeCharacter(
  4273. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4274. {
  4275. front: {
  4276. height: math.unit(6, "feet"),
  4277. weight: math.unit(300, "lbs"),
  4278. name: "Front",
  4279. image: {
  4280. source: "./media/characters/tyrnn/front.svg"
  4281. }
  4282. }
  4283. },
  4284. [
  4285. {
  4286. name: "Main Height",
  4287. height: math.unit(355, "feet"),
  4288. default: true
  4289. },
  4290. {
  4291. name: "Fave. Height",
  4292. height: math.unit(2400, "feet")
  4293. }
  4294. ]
  4295. ))
  4296. characterMakers.push(() => makeCharacter(
  4297. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4298. {
  4299. front: {
  4300. height: math.unit(6, "feet"),
  4301. weight: math.unit(300, "lbs"),
  4302. name: "Front",
  4303. image: {
  4304. source: "./media/characters/appledectomy/front.svg"
  4305. }
  4306. }
  4307. },
  4308. [
  4309. {
  4310. name: "Macro",
  4311. height: math.unit(2500, "feet")
  4312. },
  4313. {
  4314. name: "Megamacro",
  4315. height: math.unit(50, "miles"),
  4316. default: true
  4317. },
  4318. {
  4319. name: "Gigamacro",
  4320. height: math.unit(5000, "miles")
  4321. },
  4322. {
  4323. name: "Teramacro",
  4324. height: math.unit(250000, "miles")
  4325. },
  4326. ]
  4327. ))
  4328. characterMakers.push(() => makeCharacter(
  4329. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4330. {
  4331. front: {
  4332. height: math.unit(6, "feet"),
  4333. weight: math.unit(200, "lbs"),
  4334. name: "Front",
  4335. image: {
  4336. source: "./media/characters/vulpes/front.svg",
  4337. extra: 573 / 543,
  4338. bottom: 0.033
  4339. }
  4340. },
  4341. side: {
  4342. height: math.unit(6, "feet"),
  4343. weight: math.unit(200, "lbs"),
  4344. name: "Side",
  4345. image: {
  4346. source: "./media/characters/vulpes/side.svg",
  4347. extra: 577 / 549,
  4348. bottom: 11 / 588
  4349. }
  4350. },
  4351. back: {
  4352. height: math.unit(6, "feet"),
  4353. weight: math.unit(200, "lbs"),
  4354. name: "Back",
  4355. image: {
  4356. source: "./media/characters/vulpes/back.svg",
  4357. extra: 573 / 549,
  4358. bottom: 20 / 593
  4359. }
  4360. },
  4361. feet: {
  4362. height: math.unit(1.276, "feet"),
  4363. name: "Feet",
  4364. image: {
  4365. source: "./media/characters/vulpes/feet.svg"
  4366. }
  4367. },
  4368. maw: {
  4369. height: math.unit(1.18, "feet"),
  4370. name: "Maw",
  4371. image: {
  4372. source: "./media/characters/vulpes/maw.svg"
  4373. }
  4374. },
  4375. },
  4376. [
  4377. {
  4378. name: "Micro",
  4379. height: math.unit(2, "inches")
  4380. },
  4381. {
  4382. name: "Normal",
  4383. height: math.unit(6.3, "feet")
  4384. },
  4385. {
  4386. name: "Macro",
  4387. height: math.unit(850, "feet")
  4388. },
  4389. {
  4390. name: "Megamacro",
  4391. height: math.unit(7500, "feet"),
  4392. default: true
  4393. },
  4394. {
  4395. name: "Gigamacro",
  4396. height: math.unit(570000, "miles")
  4397. }
  4398. ]
  4399. ))
  4400. characterMakers.push(() => makeCharacter(
  4401. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4402. {
  4403. front: {
  4404. height: math.unit(6, "feet"),
  4405. weight: math.unit(210, "lbs"),
  4406. name: "Front",
  4407. image: {
  4408. source: "./media/characters/rain-fallen/front.svg"
  4409. }
  4410. },
  4411. side: {
  4412. height: math.unit(6, "feet"),
  4413. weight: math.unit(210, "lbs"),
  4414. name: "Side",
  4415. image: {
  4416. source: "./media/characters/rain-fallen/side.svg"
  4417. }
  4418. },
  4419. back: {
  4420. height: math.unit(6, "feet"),
  4421. weight: math.unit(210, "lbs"),
  4422. name: "Back",
  4423. image: {
  4424. source: "./media/characters/rain-fallen/back.svg"
  4425. }
  4426. },
  4427. feral: {
  4428. height: math.unit(9, "feet"),
  4429. weight: math.unit(700, "lbs"),
  4430. name: "Feral",
  4431. image: {
  4432. source: "./media/characters/rain-fallen/feral.svg"
  4433. }
  4434. },
  4435. },
  4436. [
  4437. {
  4438. name: "Meddling with Mortals",
  4439. height: math.unit(8 + 8/12, "feet")
  4440. },
  4441. {
  4442. name: "Normal",
  4443. height: math.unit(5, "meter")
  4444. },
  4445. {
  4446. name: "Macro",
  4447. height: math.unit(150, "meter"),
  4448. default: true
  4449. },
  4450. {
  4451. name: "Megamacro",
  4452. height: math.unit(278e6, "meter")
  4453. },
  4454. {
  4455. name: "Gigamacro",
  4456. height: math.unit(2e9, "meter")
  4457. },
  4458. {
  4459. name: "Teramacro",
  4460. height: math.unit(8e12, "meter")
  4461. },
  4462. {
  4463. name: "Devourer",
  4464. height: math.unit(14, "zettameters")
  4465. },
  4466. {
  4467. name: "Scarlet King",
  4468. height: math.unit(18, "yottameters")
  4469. },
  4470. {
  4471. name: "Void",
  4472. height: math.unit(1e88, "yottameters")
  4473. }
  4474. ]
  4475. ))
  4476. characterMakers.push(() => makeCharacter(
  4477. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4478. {
  4479. standing: {
  4480. height: math.unit(6, "feet"),
  4481. weight: math.unit(180, "lbs"),
  4482. name: "Standing",
  4483. image: {
  4484. source: "./media/characters/zaakira/standing.svg"
  4485. }
  4486. },
  4487. laying: {
  4488. height: math.unit(3, "feet"),
  4489. weight: math.unit(180, "lbs"),
  4490. name: "Laying",
  4491. image: {
  4492. source: "./media/characters/zaakira/laying.svg"
  4493. }
  4494. },
  4495. },
  4496. [
  4497. {
  4498. name: "Normal",
  4499. height: math.unit(12, "feet")
  4500. },
  4501. {
  4502. name: "Macro",
  4503. height: math.unit(279, "feet"),
  4504. default: true
  4505. }
  4506. ]
  4507. ))
  4508. characterMakers.push(() => makeCharacter(
  4509. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4510. {
  4511. femSfw: {
  4512. height: math.unit(8, "feet"),
  4513. weight: math.unit(350, "lb"),
  4514. name: "Fem",
  4515. image: {
  4516. source: "./media/characters/sigvald/fem-sfw.svg",
  4517. extra: 182 / 164,
  4518. bottom: 8.7 / 190.5
  4519. }
  4520. },
  4521. femNsfw: {
  4522. height: math.unit(8, "feet"),
  4523. weight: math.unit(350, "lb"),
  4524. name: "Fem (NSFW)",
  4525. image: {
  4526. source: "./media/characters/sigvald/fem-nsfw.svg",
  4527. extra: 182 / 164,
  4528. bottom: 8.7 / 190.5
  4529. }
  4530. },
  4531. maleNsfw: {
  4532. height: math.unit(8, "feet"),
  4533. weight: math.unit(350, "lb"),
  4534. name: "Male (NSFW)",
  4535. image: {
  4536. source: "./media/characters/sigvald/male-nsfw.svg",
  4537. extra: 182 / 164,
  4538. bottom: 8.7 / 190.5
  4539. }
  4540. },
  4541. hermNsfw: {
  4542. height: math.unit(8, "feet"),
  4543. weight: math.unit(350, "lb"),
  4544. name: "Herm (NSFW)",
  4545. image: {
  4546. source: "./media/characters/sigvald/herm-nsfw.svg",
  4547. extra: 182 / 164,
  4548. bottom: 8.7 / 190.5
  4549. }
  4550. },
  4551. dick: {
  4552. height: math.unit(2.36, "feet"),
  4553. name: "Dick",
  4554. image: {
  4555. source: "./media/characters/sigvald/dick.svg"
  4556. }
  4557. },
  4558. eye: {
  4559. height: math.unit(0.31, "feet"),
  4560. name: "Eye",
  4561. image: {
  4562. source: "./media/characters/sigvald/eye.svg"
  4563. }
  4564. },
  4565. mouth: {
  4566. height: math.unit(0.92, "feet"),
  4567. name: "Mouth",
  4568. image: {
  4569. source: "./media/characters/sigvald/mouth.svg"
  4570. }
  4571. },
  4572. paws: {
  4573. height: math.unit(2.2, "feet"),
  4574. name: "Paws",
  4575. image: {
  4576. source: "./media/characters/sigvald/paws.svg"
  4577. }
  4578. }
  4579. },
  4580. [
  4581. {
  4582. name: "Normal",
  4583. height: math.unit(8, "feet")
  4584. },
  4585. {
  4586. name: "Large",
  4587. height: math.unit(12, "feet")
  4588. },
  4589. {
  4590. name: "Larger",
  4591. height: math.unit(20, "feet")
  4592. },
  4593. {
  4594. name: "Macro",
  4595. height: math.unit(150, "feet")
  4596. },
  4597. {
  4598. name: "Macro+",
  4599. height: math.unit(200, "feet"),
  4600. default: true
  4601. },
  4602. ]
  4603. ))
  4604. characterMakers.push(() => makeCharacter(
  4605. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4606. {
  4607. side: {
  4608. height: math.unit(12, "feet"),
  4609. weight: math.unit(2000, "kg"),
  4610. name: "Side",
  4611. image: {
  4612. source: "./media/characters/scott/side.svg",
  4613. extra: 754 / 724,
  4614. bottom: 0.069
  4615. }
  4616. },
  4617. upright: {
  4618. height: math.unit(12, "feet"),
  4619. weight: math.unit(2000, "kg"),
  4620. name: "Upright",
  4621. image: {
  4622. source: "./media/characters/scott/upright.svg",
  4623. extra: 3881 / 3722,
  4624. bottom: 0.05
  4625. }
  4626. },
  4627. },
  4628. [
  4629. {
  4630. name: "Normal",
  4631. height: math.unit(12, "feet"),
  4632. default: true
  4633. },
  4634. ]
  4635. ))
  4636. characterMakers.push(() => makeCharacter(
  4637. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4638. {
  4639. side: {
  4640. height: math.unit(8, "meters"),
  4641. weight: math.unit(84755, "lbs"),
  4642. name: "Side",
  4643. image: {
  4644. source: "./media/characters/tobias/side.svg",
  4645. extra: 1474 / 1096,
  4646. bottom: 38.9 / 1513.1235
  4647. }
  4648. },
  4649. },
  4650. [
  4651. {
  4652. name: "Normal",
  4653. height: math.unit(8, "meters"),
  4654. default: true
  4655. },
  4656. ]
  4657. ))
  4658. characterMakers.push(() => makeCharacter(
  4659. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4660. {
  4661. front: {
  4662. height: math.unit(5.5, "feet"),
  4663. weight: math.unit(400, "lbs"),
  4664. name: "Front",
  4665. image: {
  4666. source: "./media/characters/kieran/front.svg",
  4667. extra: 2694 / 2364,
  4668. bottom: 217 / 2908
  4669. }
  4670. },
  4671. side: {
  4672. height: math.unit(5.5, "feet"),
  4673. weight: math.unit(400, "lbs"),
  4674. name: "Side",
  4675. image: {
  4676. source: "./media/characters/kieran/side.svg",
  4677. extra: 875 / 777,
  4678. bottom: 84.6 / 959
  4679. }
  4680. },
  4681. },
  4682. [
  4683. {
  4684. name: "Normal",
  4685. height: math.unit(5.5, "feet"),
  4686. default: true
  4687. },
  4688. ]
  4689. ))
  4690. characterMakers.push(() => makeCharacter(
  4691. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4692. {
  4693. side: {
  4694. height: math.unit(2, "meters"),
  4695. weight: math.unit(70, "kg"),
  4696. name: "Side",
  4697. image: {
  4698. source: "./media/characters/sanya/side.svg",
  4699. bottom: 0.02,
  4700. extra: 1.02
  4701. }
  4702. },
  4703. },
  4704. [
  4705. {
  4706. name: "Small",
  4707. height: math.unit(2, "meters")
  4708. },
  4709. {
  4710. name: "Normal",
  4711. height: math.unit(3, "meters")
  4712. },
  4713. {
  4714. name: "Macro",
  4715. height: math.unit(16, "meters"),
  4716. default: true
  4717. },
  4718. ]
  4719. ))
  4720. characterMakers.push(() => makeCharacter(
  4721. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4722. {
  4723. front: {
  4724. height: math.unit(2, "meters"),
  4725. weight: math.unit(120, "kg"),
  4726. name: "Front",
  4727. image: {
  4728. source: "./media/characters/miranda/front.svg",
  4729. extra: 195 / 185,
  4730. bottom: 10.9 / 206.5
  4731. }
  4732. },
  4733. back: {
  4734. height: math.unit(2, "meters"),
  4735. weight: math.unit(120, "kg"),
  4736. name: "Back",
  4737. image: {
  4738. source: "./media/characters/miranda/back.svg",
  4739. extra: 201 / 193,
  4740. bottom: 2.3 / 203.7
  4741. }
  4742. },
  4743. },
  4744. [
  4745. {
  4746. name: "Normal",
  4747. height: math.unit(10, "feet"),
  4748. default: true
  4749. }
  4750. ]
  4751. ))
  4752. characterMakers.push(() => makeCharacter(
  4753. { name: "James", species: ["deer"], tags: ["anthro"] },
  4754. {
  4755. side: {
  4756. height: math.unit(2, "meters"),
  4757. weight: math.unit(100, "kg"),
  4758. name: "Front",
  4759. image: {
  4760. source: "./media/characters/james/front.svg",
  4761. extra: 10 / 8.5
  4762. }
  4763. },
  4764. },
  4765. [
  4766. {
  4767. name: "Normal",
  4768. height: math.unit(8.5, "feet"),
  4769. default: true
  4770. }
  4771. ]
  4772. ))
  4773. characterMakers.push(() => makeCharacter(
  4774. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4775. {
  4776. side: {
  4777. height: math.unit(9.5, "feet"),
  4778. weight: math.unit(2500, "lbs"),
  4779. name: "Side",
  4780. image: {
  4781. source: "./media/characters/heather/side.svg"
  4782. }
  4783. },
  4784. },
  4785. [
  4786. {
  4787. name: "Normal",
  4788. height: math.unit(9.5, "feet"),
  4789. default: true
  4790. }
  4791. ]
  4792. ))
  4793. characterMakers.push(() => makeCharacter(
  4794. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4795. {
  4796. side: {
  4797. height: math.unit(6.5, "feet"),
  4798. weight: math.unit(400, "lbs"),
  4799. name: "Side",
  4800. image: {
  4801. source: "./media/characters/lukas/side.svg",
  4802. extra: 7.25 / 6.5
  4803. }
  4804. },
  4805. },
  4806. [
  4807. {
  4808. name: "Normal",
  4809. height: math.unit(6.5, "feet"),
  4810. default: true
  4811. }
  4812. ]
  4813. ))
  4814. characterMakers.push(() => makeCharacter(
  4815. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4816. {
  4817. side: {
  4818. height: math.unit(5, "feet"),
  4819. weight: math.unit(3000, "lbs"),
  4820. name: "Side",
  4821. image: {
  4822. source: "./media/characters/louise/side.svg"
  4823. }
  4824. },
  4825. },
  4826. [
  4827. {
  4828. name: "Normal",
  4829. height: math.unit(5, "feet"),
  4830. default: true
  4831. }
  4832. ]
  4833. ))
  4834. characterMakers.push(() => makeCharacter(
  4835. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4836. {
  4837. side: {
  4838. height: math.unit(6, "feet"),
  4839. weight: math.unit(150, "lbs"),
  4840. name: "Side",
  4841. image: {
  4842. source: "./media/characters/ramona/side.svg"
  4843. }
  4844. },
  4845. },
  4846. [
  4847. {
  4848. name: "Normal",
  4849. height: math.unit(5.3, "meters"),
  4850. default: true
  4851. },
  4852. {
  4853. name: "Macro",
  4854. height: math.unit(20, "stories")
  4855. },
  4856. {
  4857. name: "Macro+",
  4858. height: math.unit(50, "stories")
  4859. },
  4860. ]
  4861. ))
  4862. characterMakers.push(() => makeCharacter(
  4863. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4864. {
  4865. standing: {
  4866. height: math.unit(5.75, "feet"),
  4867. weight: math.unit(160, "lbs"),
  4868. name: "Standing",
  4869. image: {
  4870. source: "./media/characters/deerpuff/standing.svg",
  4871. extra: 682 / 624
  4872. }
  4873. },
  4874. sitting: {
  4875. height: math.unit(5.75 / 1.79, "feet"),
  4876. weight: math.unit(160, "lbs"),
  4877. name: "Sitting",
  4878. image: {
  4879. source: "./media/characters/deerpuff/sitting.svg",
  4880. bottom: 44 / 400,
  4881. extra: 1
  4882. }
  4883. },
  4884. taurLaying: {
  4885. height: math.unit(6, "feet"),
  4886. weight: math.unit(400, "lbs"),
  4887. name: "Taur (Laying)",
  4888. image: {
  4889. source: "./media/characters/deerpuff/taur-laying.svg"
  4890. }
  4891. },
  4892. },
  4893. [
  4894. {
  4895. name: "Puffball",
  4896. height: math.unit(6, "inches")
  4897. },
  4898. {
  4899. name: "Normalpuff",
  4900. height: math.unit(5.75, "feet")
  4901. },
  4902. {
  4903. name: "Macropuff",
  4904. height: math.unit(1500, "feet"),
  4905. default: true
  4906. },
  4907. {
  4908. name: "Megapuff",
  4909. height: math.unit(500, "miles")
  4910. },
  4911. {
  4912. name: "Gigapuff",
  4913. height: math.unit(250000, "miles")
  4914. },
  4915. {
  4916. name: "Omegapuff",
  4917. height: math.unit(1000, "lightyears")
  4918. },
  4919. ]
  4920. ))
  4921. characterMakers.push(() => makeCharacter(
  4922. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4923. {
  4924. stomping: {
  4925. height: math.unit(6, "feet"),
  4926. weight: math.unit(170, "lbs"),
  4927. name: "Stomping",
  4928. image: {
  4929. source: "./media/characters/vivian/stomping.svg"
  4930. }
  4931. },
  4932. sitting: {
  4933. height: math.unit(6 / 1.75, "feet"),
  4934. weight: math.unit(170, "lbs"),
  4935. name: "Sitting",
  4936. image: {
  4937. source: "./media/characters/vivian/sitting.svg",
  4938. bottom: 1 / 6.4,
  4939. extra: 1,
  4940. }
  4941. },
  4942. },
  4943. [
  4944. {
  4945. name: "Normal",
  4946. height: math.unit(7, "feet"),
  4947. default: true
  4948. },
  4949. {
  4950. name: "Macro",
  4951. height: math.unit(10, "stories")
  4952. },
  4953. {
  4954. name: "Macro+",
  4955. height: math.unit(30, "stories")
  4956. },
  4957. {
  4958. name: "Megamacro",
  4959. height: math.unit(10, "miles")
  4960. },
  4961. {
  4962. name: "Megamacro+",
  4963. height: math.unit(2750000, "meters")
  4964. },
  4965. ]
  4966. ))
  4967. characterMakers.push(() => makeCharacter(
  4968. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4969. {
  4970. front: {
  4971. height: math.unit(6, "feet"),
  4972. weight: math.unit(160, "lbs"),
  4973. name: "Front",
  4974. image: {
  4975. source: "./media/characters/prince/front.svg",
  4976. extra: 3400 / 3000
  4977. }
  4978. },
  4979. jumping: {
  4980. height: math.unit(6, "feet"),
  4981. weight: math.unit(160, "lbs"),
  4982. name: "Jumping",
  4983. image: {
  4984. source: "./media/characters/prince/jump.svg",
  4985. extra: 2555 / 2134
  4986. }
  4987. },
  4988. },
  4989. [
  4990. {
  4991. name: "Normal",
  4992. height: math.unit(7.75, "feet"),
  4993. default: true
  4994. },
  4995. {
  4996. name: "Not cute",
  4997. height: math.unit(17, "feet")
  4998. },
  4999. {
  5000. name: "I said NOT",
  5001. height: math.unit(91, "feet")
  5002. },
  5003. {
  5004. name: "Please stop",
  5005. height: math.unit(560, "feet")
  5006. },
  5007. {
  5008. name: "What have you done",
  5009. height: math.unit(2200, "feet")
  5010. },
  5011. {
  5012. name: "Deer God",
  5013. height: math.unit(3.6, "miles")
  5014. },
  5015. ]
  5016. ))
  5017. characterMakers.push(() => makeCharacter(
  5018. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5019. {
  5020. standing: {
  5021. height: math.unit(6, "feet"),
  5022. weight: math.unit(300, "lbs"),
  5023. name: "Standing",
  5024. image: {
  5025. source: "./media/characters/psymon/standing.svg",
  5026. extra: 1888 / 1810,
  5027. bottom: 0.05
  5028. }
  5029. },
  5030. slithering: {
  5031. height: math.unit(6, "feet"),
  5032. weight: math.unit(300, "lbs"),
  5033. name: "Slithering",
  5034. image: {
  5035. source: "./media/characters/psymon/slithering.svg",
  5036. extra: 1330 / 1224
  5037. }
  5038. },
  5039. slitheringAlt: {
  5040. height: math.unit(6, "feet"),
  5041. weight: math.unit(300, "lbs"),
  5042. name: "Slithering (Alt)",
  5043. image: {
  5044. source: "./media/characters/psymon/slithering-alt.svg",
  5045. extra: 1330 / 1224
  5046. }
  5047. },
  5048. },
  5049. [
  5050. {
  5051. name: "Normal",
  5052. height: math.unit(11.25, "feet"),
  5053. default: true
  5054. },
  5055. {
  5056. name: "Large",
  5057. height: math.unit(27, "feet")
  5058. },
  5059. {
  5060. name: "Giant",
  5061. height: math.unit(87, "feet")
  5062. },
  5063. {
  5064. name: "Macro",
  5065. height: math.unit(365, "feet")
  5066. },
  5067. {
  5068. name: "Megamacro",
  5069. height: math.unit(3, "miles")
  5070. },
  5071. {
  5072. name: "World Serpent",
  5073. height: math.unit(8000, "miles")
  5074. },
  5075. ]
  5076. ))
  5077. characterMakers.push(() => makeCharacter(
  5078. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5079. {
  5080. front: {
  5081. height: math.unit(6, "feet"),
  5082. weight: math.unit(180, "lbs"),
  5083. name: "Front",
  5084. image: {
  5085. source: "./media/characters/daimos/front.svg",
  5086. extra: 4160 / 3897,
  5087. bottom: 0.021
  5088. }
  5089. }
  5090. },
  5091. [
  5092. {
  5093. name: "Normal",
  5094. height: math.unit(8, "feet"),
  5095. default: true
  5096. },
  5097. {
  5098. name: "Big Dog",
  5099. height: math.unit(22, "feet")
  5100. },
  5101. {
  5102. name: "Macro",
  5103. height: math.unit(127, "feet")
  5104. },
  5105. {
  5106. name: "Megamacro",
  5107. height: math.unit(3600, "feet")
  5108. },
  5109. ]
  5110. ))
  5111. characterMakers.push(() => makeCharacter(
  5112. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5113. {
  5114. side: {
  5115. height: math.unit(6, "feet"),
  5116. weight: math.unit(180, "lbs"),
  5117. name: "Side",
  5118. image: {
  5119. source: "./media/characters/blake/side.svg",
  5120. extra: 1212 / 1120,
  5121. bottom: 0.05
  5122. }
  5123. },
  5124. crouched: {
  5125. height: math.unit(6 * 0.57, "feet"),
  5126. weight: math.unit(180, "lbs"),
  5127. name: "Crouched",
  5128. image: {
  5129. source: "./media/characters/blake/crouched.svg",
  5130. extra: 840 / 587,
  5131. bottom: 0.04
  5132. }
  5133. },
  5134. bent: {
  5135. height: math.unit(6 * 0.75, "feet"),
  5136. weight: math.unit(180, "lbs"),
  5137. name: "Bent",
  5138. image: {
  5139. source: "./media/characters/blake/bent.svg",
  5140. extra: 592 / 544,
  5141. bottom: 0.035
  5142. }
  5143. },
  5144. },
  5145. [
  5146. {
  5147. name: "Normal",
  5148. height: math.unit(8 + 1 / 6, "feet"),
  5149. default: true
  5150. },
  5151. {
  5152. name: "Big Backside",
  5153. height: math.unit(37, "feet")
  5154. },
  5155. {
  5156. name: "Subway Shredder",
  5157. height: math.unit(72, "feet")
  5158. },
  5159. {
  5160. name: "City Carver",
  5161. height: math.unit(1675, "feet")
  5162. },
  5163. {
  5164. name: "Tectonic Tweaker",
  5165. height: math.unit(2300, "miles")
  5166. },
  5167. ]
  5168. ))
  5169. characterMakers.push(() => makeCharacter(
  5170. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5171. {
  5172. front: {
  5173. height: math.unit(6, "feet"),
  5174. weight: math.unit(180, "lbs"),
  5175. name: "Front",
  5176. image: {
  5177. source: "./media/characters/guisetto/front.svg",
  5178. extra: 856 / 817,
  5179. bottom: 0.06
  5180. }
  5181. },
  5182. airborne: {
  5183. height: math.unit(6, "feet"),
  5184. weight: math.unit(180, "lbs"),
  5185. name: "Airborne",
  5186. image: {
  5187. source: "./media/characters/guisetto/airborne.svg",
  5188. extra: 584 / 525
  5189. }
  5190. },
  5191. },
  5192. [
  5193. {
  5194. name: "Normal",
  5195. height: math.unit(10 + 11 / 12, "feet"),
  5196. default: true
  5197. },
  5198. {
  5199. name: "Large",
  5200. height: math.unit(35, "feet")
  5201. },
  5202. {
  5203. name: "Macro",
  5204. height: math.unit(475, "feet")
  5205. },
  5206. ]
  5207. ))
  5208. characterMakers.push(() => makeCharacter(
  5209. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5210. {
  5211. front: {
  5212. height: math.unit(6, "feet"),
  5213. weight: math.unit(180, "lbs"),
  5214. name: "Front",
  5215. image: {
  5216. source: "./media/characters/luxor/front.svg",
  5217. extra: 2940 / 2152
  5218. }
  5219. },
  5220. back: {
  5221. height: math.unit(6, "feet"),
  5222. weight: math.unit(180, "lbs"),
  5223. name: "Back",
  5224. image: {
  5225. source: "./media/characters/luxor/back.svg",
  5226. extra: 1083 / 960
  5227. }
  5228. },
  5229. },
  5230. [
  5231. {
  5232. name: "Normal",
  5233. height: math.unit(5 + 5 / 6, "feet"),
  5234. default: true
  5235. },
  5236. {
  5237. name: "Lamp",
  5238. height: math.unit(50, "feet")
  5239. },
  5240. {
  5241. name: "Lämp",
  5242. height: math.unit(300, "feet")
  5243. },
  5244. {
  5245. name: "The sun is a lamp",
  5246. height: math.unit(250000, "miles")
  5247. },
  5248. ]
  5249. ))
  5250. characterMakers.push(() => makeCharacter(
  5251. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5252. {
  5253. front: {
  5254. height: math.unit(6, "feet"),
  5255. weight: math.unit(50, "lbs"),
  5256. name: "Front",
  5257. image: {
  5258. source: "./media/characters/huoyan/front.svg"
  5259. }
  5260. },
  5261. side: {
  5262. height: math.unit(6, "feet"),
  5263. weight: math.unit(180, "lbs"),
  5264. name: "Side",
  5265. image: {
  5266. source: "./media/characters/huoyan/side.svg"
  5267. }
  5268. },
  5269. },
  5270. [
  5271. {
  5272. name: "Chef",
  5273. height: math.unit(9, "feet")
  5274. },
  5275. {
  5276. name: "Normal",
  5277. height: math.unit(65, "feet"),
  5278. default: true
  5279. },
  5280. {
  5281. name: "Macro",
  5282. height: math.unit(780, "feet")
  5283. },
  5284. {
  5285. name: "Flaming Mountain",
  5286. height: math.unit(4.8, "miles")
  5287. },
  5288. {
  5289. name: "Celestial",
  5290. height: math.unit(765000, "miles")
  5291. },
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(5 + 3 / 4, "feet"),
  5299. weight: math.unit(120, "lbs"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/tails/front.svg"
  5303. }
  5304. }
  5305. },
  5306. [
  5307. {
  5308. name: "Normal",
  5309. height: math.unit(5 + 3 / 4, "feet"),
  5310. default: true
  5311. }
  5312. ]
  5313. ))
  5314. characterMakers.push(() => makeCharacter(
  5315. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5316. {
  5317. front: {
  5318. height: math.unit(4, "feet"),
  5319. weight: math.unit(50, "lbs"),
  5320. name: "Front",
  5321. image: {
  5322. source: "./media/characters/rainy/front.svg"
  5323. }
  5324. }
  5325. },
  5326. [
  5327. {
  5328. name: "Macro",
  5329. height: math.unit(800, "feet"),
  5330. default: true
  5331. }
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5336. {
  5337. front: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(150, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/rainier/front.svg"
  5343. }
  5344. }
  5345. },
  5346. [
  5347. {
  5348. name: "Micro",
  5349. height: math.unit(2, "mm"),
  5350. default: true
  5351. }
  5352. ]
  5353. ))
  5354. characterMakers.push(() => makeCharacter(
  5355. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5356. {
  5357. front: {
  5358. height: math.unit(6, "feet"),
  5359. weight: math.unit(180, "lbs"),
  5360. name: "Front",
  5361. image: {
  5362. source: "./media/characters/andy/front.svg"
  5363. }
  5364. }
  5365. },
  5366. [
  5367. {
  5368. name: "Normal",
  5369. height: math.unit(8, "feet"),
  5370. default: true
  5371. },
  5372. {
  5373. name: "Macro",
  5374. height: math.unit(1000, "feet")
  5375. },
  5376. {
  5377. name: "Megamacro",
  5378. height: math.unit(5, "miles")
  5379. },
  5380. {
  5381. name: "Gigamacro",
  5382. height: math.unit(5000, "miles")
  5383. },
  5384. ]
  5385. ))
  5386. characterMakers.push(() => makeCharacter(
  5387. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5388. {
  5389. front: {
  5390. height: math.unit(6, "feet"),
  5391. weight: math.unit(210, "lbs"),
  5392. name: "Front",
  5393. image: {
  5394. source: "./media/characters/cimmaron/front-sfw.svg",
  5395. extra: 701 / 676,
  5396. bottom: 0.046
  5397. }
  5398. },
  5399. back: {
  5400. height: math.unit(6, "feet"),
  5401. weight: math.unit(210, "lbs"),
  5402. name: "Back",
  5403. image: {
  5404. source: "./media/characters/cimmaron/back-sfw.svg",
  5405. extra: 701 / 676,
  5406. bottom: 0.046
  5407. }
  5408. },
  5409. frontNsfw: {
  5410. height: math.unit(6, "feet"),
  5411. weight: math.unit(210, "lbs"),
  5412. name: "Front (NSFW)",
  5413. image: {
  5414. source: "./media/characters/cimmaron/front-nsfw.svg",
  5415. extra: 701 / 676,
  5416. bottom: 0.046
  5417. }
  5418. },
  5419. backNsfw: {
  5420. height: math.unit(6, "feet"),
  5421. weight: math.unit(210, "lbs"),
  5422. name: "Back (NSFW)",
  5423. image: {
  5424. source: "./media/characters/cimmaron/back-nsfw.svg",
  5425. extra: 701 / 676,
  5426. bottom: 0.046
  5427. }
  5428. },
  5429. dick: {
  5430. height: math.unit(1.714, "feet"),
  5431. name: "Dick",
  5432. image: {
  5433. source: "./media/characters/cimmaron/dick.svg"
  5434. }
  5435. },
  5436. },
  5437. [
  5438. {
  5439. name: "Normal",
  5440. height: math.unit(6, "feet"),
  5441. default: true
  5442. },
  5443. {
  5444. name: "Macro Mayor",
  5445. height: math.unit(350, "meters")
  5446. },
  5447. ]
  5448. ))
  5449. characterMakers.push(() => makeCharacter(
  5450. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5451. {
  5452. front: {
  5453. height: math.unit(6, "feet"),
  5454. weight: math.unit(200, "lbs"),
  5455. name: "Front",
  5456. image: {
  5457. source: "./media/characters/akari/front.svg",
  5458. extra: 962 / 901,
  5459. bottom: 0.04
  5460. }
  5461. }
  5462. },
  5463. [
  5464. {
  5465. name: "Micro",
  5466. height: math.unit(5, "inches"),
  5467. default: true
  5468. },
  5469. {
  5470. name: "Normal",
  5471. height: math.unit(7, "feet")
  5472. },
  5473. ]
  5474. ))
  5475. characterMakers.push(() => makeCharacter(
  5476. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5477. {
  5478. front: {
  5479. height: math.unit(6, "feet"),
  5480. weight: math.unit(140, "lbs"),
  5481. name: "Front",
  5482. image: {
  5483. source: "./media/characters/cynosura/front.svg",
  5484. extra: 896 / 847
  5485. }
  5486. },
  5487. back: {
  5488. height: math.unit(6, "feet"),
  5489. weight: math.unit(140, "lbs"),
  5490. name: "Back",
  5491. image: {
  5492. source: "./media/characters/cynosura/back.svg",
  5493. extra: 1365 / 1250
  5494. }
  5495. },
  5496. },
  5497. [
  5498. {
  5499. name: "Micro",
  5500. height: math.unit(4, "inches")
  5501. },
  5502. {
  5503. name: "Normal",
  5504. height: math.unit(5.75, "feet"),
  5505. default: true
  5506. },
  5507. {
  5508. name: "Tall",
  5509. height: math.unit(10, "feet")
  5510. },
  5511. {
  5512. name: "Big",
  5513. height: math.unit(20, "feet")
  5514. },
  5515. {
  5516. name: "Macro",
  5517. height: math.unit(50, "feet")
  5518. },
  5519. ]
  5520. ))
  5521. characterMakers.push(() => makeCharacter(
  5522. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5523. {
  5524. front: {
  5525. height: math.unit(6, "feet"),
  5526. weight: math.unit(170, "lbs"),
  5527. name: "Front",
  5528. image: {
  5529. source: "./media/characters/gin/front.svg",
  5530. extra: 1.053,
  5531. bottom: 0.025
  5532. }
  5533. },
  5534. foot: {
  5535. height: math.unit(6 / 4.25, "feet"),
  5536. name: "Foot",
  5537. image: {
  5538. source: "./media/characters/gin/foot.svg"
  5539. }
  5540. },
  5541. sole: {
  5542. height: math.unit(6 / 4.40, "feet"),
  5543. name: "Sole",
  5544. image: {
  5545. source: "./media/characters/gin/sole.svg"
  5546. }
  5547. },
  5548. },
  5549. [
  5550. {
  5551. name: "Normal",
  5552. height: math.unit(13 + 2 / 12, "feet")
  5553. },
  5554. {
  5555. name: "Macro",
  5556. height: math.unit(1500, "feet")
  5557. },
  5558. {
  5559. name: "Megamacro",
  5560. height: math.unit(200, "miles"),
  5561. default: true
  5562. },
  5563. {
  5564. name: "Gigamacro",
  5565. height: math.unit(500, "megameters")
  5566. },
  5567. {
  5568. name: "Teramacro",
  5569. height: math.unit(15, "lightyears")
  5570. }
  5571. ]
  5572. ))
  5573. characterMakers.push(() => makeCharacter(
  5574. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5575. {
  5576. front: {
  5577. height: math.unit(6 + 1 / 6, "feet"),
  5578. weight: math.unit(178, "lbs"),
  5579. name: "Front",
  5580. image: {
  5581. source: "./media/characters/guy/front.svg"
  5582. }
  5583. }
  5584. },
  5585. [
  5586. {
  5587. name: "Normal",
  5588. height: math.unit(6 + 1 / 6, "feet"),
  5589. default: true
  5590. },
  5591. {
  5592. name: "Large",
  5593. height: math.unit(25 + 7 / 12, "feet")
  5594. },
  5595. {
  5596. name: "Macro",
  5597. height: math.unit(60 + 9 / 12, "feet")
  5598. },
  5599. {
  5600. name: "Macro+",
  5601. height: math.unit(246, "feet")
  5602. },
  5603. {
  5604. name: "Macro++",
  5605. height: math.unit(878, "feet")
  5606. }
  5607. ]
  5608. ))
  5609. characterMakers.push(() => makeCharacter(
  5610. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5611. {
  5612. front: {
  5613. height: math.unit(9, "feet"),
  5614. weight: math.unit(800, "lbs"),
  5615. name: "Front",
  5616. image: {
  5617. source: "./media/characters/tiberius/front.svg",
  5618. extra: 2295 / 2071
  5619. }
  5620. },
  5621. back: {
  5622. height: math.unit(9, "feet"),
  5623. weight: math.unit(800, "lbs"),
  5624. name: "Back",
  5625. image: {
  5626. source: "./media/characters/tiberius/back.svg",
  5627. extra: 2373 / 2160
  5628. }
  5629. },
  5630. },
  5631. [
  5632. {
  5633. name: "Normal",
  5634. height: math.unit(9, "feet"),
  5635. default: true
  5636. }
  5637. ]
  5638. ))
  5639. characterMakers.push(() => makeCharacter(
  5640. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5641. {
  5642. front: {
  5643. height: math.unit(6, "feet"),
  5644. weight: math.unit(600, "lbs"),
  5645. name: "Front",
  5646. image: {
  5647. source: "./media/characters/surgo/front.svg",
  5648. extra: 3591 / 2227
  5649. }
  5650. },
  5651. back: {
  5652. height: math.unit(6, "feet"),
  5653. weight: math.unit(600, "lbs"),
  5654. name: "Back",
  5655. image: {
  5656. source: "./media/characters/surgo/back.svg",
  5657. extra: 3557 / 2228
  5658. }
  5659. },
  5660. laying: {
  5661. height: math.unit(6 * 0.85, "feet"),
  5662. weight: math.unit(600, "lbs"),
  5663. name: "Laying",
  5664. image: {
  5665. source: "./media/characters/surgo/laying.svg"
  5666. }
  5667. },
  5668. },
  5669. [
  5670. {
  5671. name: "Normal",
  5672. height: math.unit(6, "feet"),
  5673. default: true
  5674. }
  5675. ]
  5676. ))
  5677. characterMakers.push(() => makeCharacter(
  5678. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5679. {
  5680. side: {
  5681. height: math.unit(6, "feet"),
  5682. weight: math.unit(150, "lbs"),
  5683. name: "Side",
  5684. image: {
  5685. source: "./media/characters/cibus/side.svg",
  5686. extra: 800 / 400
  5687. }
  5688. },
  5689. },
  5690. [
  5691. {
  5692. name: "Normal",
  5693. height: math.unit(6, "feet"),
  5694. default: true
  5695. }
  5696. ]
  5697. ))
  5698. characterMakers.push(() => makeCharacter(
  5699. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5700. {
  5701. front: {
  5702. height: math.unit(6, "feet"),
  5703. weight: math.unit(240, "lbs"),
  5704. name: "Front",
  5705. image: {
  5706. source: "./media/characters/nibbles/front.svg"
  5707. }
  5708. },
  5709. side: {
  5710. height: math.unit(6, "feet"),
  5711. weight: math.unit(240, "lbs"),
  5712. name: "Side",
  5713. image: {
  5714. source: "./media/characters/nibbles/side.svg"
  5715. }
  5716. },
  5717. },
  5718. [
  5719. {
  5720. name: "Normal",
  5721. height: math.unit(9, "feet"),
  5722. default: true
  5723. }
  5724. ]
  5725. ))
  5726. characterMakers.push(() => makeCharacter(
  5727. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5728. {
  5729. side: {
  5730. height: math.unit(5 + 1 / 6, "feet"),
  5731. weight: math.unit(130, "lbs"),
  5732. name: "Side",
  5733. image: {
  5734. source: "./media/characters/rikky/side.svg",
  5735. extra: 851 / 801
  5736. }
  5737. },
  5738. },
  5739. [
  5740. {
  5741. name: "Normal",
  5742. height: math.unit(5 + 1 / 6, "feet")
  5743. },
  5744. {
  5745. name: "Macro",
  5746. height: math.unit(152, "feet"),
  5747. default: true
  5748. },
  5749. {
  5750. name: "Megamacro",
  5751. height: math.unit(7, "miles")
  5752. }
  5753. ]
  5754. ))
  5755. characterMakers.push(() => makeCharacter(
  5756. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5757. {
  5758. side: {
  5759. height: math.unit(370, "cm"),
  5760. weight: math.unit(350, "lbs"),
  5761. name: "Side",
  5762. image: {
  5763. source: "./media/characters/malfressa/side.svg"
  5764. }
  5765. },
  5766. walking: {
  5767. height: math.unit(370, "cm"),
  5768. weight: math.unit(350, "lbs"),
  5769. name: "Walking",
  5770. image: {
  5771. source: "./media/characters/malfressa/walking.svg"
  5772. }
  5773. },
  5774. feral: {
  5775. height: math.unit(2500, "cm"),
  5776. weight: math.unit(100000, "lbs"),
  5777. name: "Feral",
  5778. image: {
  5779. source: "./media/characters/malfressa/feral.svg",
  5780. extra: 2108 / 837,
  5781. bottom: 0.02
  5782. }
  5783. },
  5784. },
  5785. [
  5786. {
  5787. name: "Normal",
  5788. height: math.unit(370, "cm")
  5789. },
  5790. {
  5791. name: "Macro",
  5792. height: math.unit(300, "meters"),
  5793. default: true
  5794. }
  5795. ]
  5796. ))
  5797. characterMakers.push(() => makeCharacter(
  5798. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5799. {
  5800. front: {
  5801. height: math.unit(6, "feet"),
  5802. weight: math.unit(60, "kg"),
  5803. name: "Front",
  5804. image: {
  5805. source: "./media/characters/jaro/front.svg"
  5806. }
  5807. },
  5808. back: {
  5809. height: math.unit(6, "feet"),
  5810. weight: math.unit(60, "kg"),
  5811. name: "Back",
  5812. image: {
  5813. source: "./media/characters/jaro/back.svg"
  5814. }
  5815. },
  5816. },
  5817. [
  5818. {
  5819. name: "Micro",
  5820. height: math.unit(7, "inches")
  5821. },
  5822. {
  5823. name: "Normal",
  5824. height: math.unit(5.5, "feet"),
  5825. default: true
  5826. },
  5827. {
  5828. name: "Minimacro",
  5829. height: math.unit(20, "feet")
  5830. },
  5831. {
  5832. name: "Macro",
  5833. height: math.unit(200, "meters")
  5834. }
  5835. ]
  5836. ))
  5837. characterMakers.push(() => makeCharacter(
  5838. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5839. {
  5840. front: {
  5841. height: math.unit(6, "feet"),
  5842. weight: math.unit(195, "lb"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/rogue/front.svg"
  5846. }
  5847. },
  5848. },
  5849. [
  5850. {
  5851. name: "Macro",
  5852. height: math.unit(90, "feet"),
  5853. default: true
  5854. },
  5855. ]
  5856. ))
  5857. characterMakers.push(() => makeCharacter(
  5858. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5859. {
  5860. front: {
  5861. height: math.unit(5 + 8 / 12, "feet"),
  5862. weight: math.unit(140, "lb"),
  5863. name: "Front",
  5864. image: {
  5865. source: "./media/characters/piper/front.svg",
  5866. extra: 3948/3655,
  5867. bottom: 0/3948
  5868. }
  5869. },
  5870. },
  5871. [
  5872. {
  5873. name: "Micro",
  5874. height: math.unit(2, "inches")
  5875. },
  5876. {
  5877. name: "Normal",
  5878. height: math.unit(5 + 8 / 12, "feet")
  5879. },
  5880. {
  5881. name: "Macro",
  5882. height: math.unit(250, "feet"),
  5883. default: true
  5884. },
  5885. {
  5886. name: "Megamacro",
  5887. height: math.unit(7, "miles")
  5888. },
  5889. ]
  5890. ))
  5891. characterMakers.push(() => makeCharacter(
  5892. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5893. {
  5894. front: {
  5895. height: math.unit(6, "feet"),
  5896. weight: math.unit(220, "lb"),
  5897. name: "Front",
  5898. image: {
  5899. source: "./media/characters/gemini/front.svg"
  5900. }
  5901. },
  5902. back: {
  5903. height: math.unit(6, "feet"),
  5904. weight: math.unit(220, "lb"),
  5905. name: "Back",
  5906. image: {
  5907. source: "./media/characters/gemini/back.svg"
  5908. }
  5909. },
  5910. kneeling: {
  5911. height: math.unit(6 / 1.5, "feet"),
  5912. weight: math.unit(220, "lb"),
  5913. name: "Kneeling",
  5914. image: {
  5915. source: "./media/characters/gemini/kneeling.svg",
  5916. bottom: 0.02
  5917. }
  5918. },
  5919. },
  5920. [
  5921. {
  5922. name: "Macro",
  5923. height: math.unit(300, "meters"),
  5924. default: true
  5925. },
  5926. {
  5927. name: "Megamacro",
  5928. height: math.unit(6900, "meters")
  5929. },
  5930. ]
  5931. ))
  5932. characterMakers.push(() => makeCharacter(
  5933. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5934. {
  5935. anthro: {
  5936. height: math.unit(2.35, "meters"),
  5937. weight: math.unit(73, "kg"),
  5938. name: "Anthro",
  5939. image: {
  5940. source: "./media/characters/alicia/anthro.svg",
  5941. extra: 2571 / 2385,
  5942. bottom: 75 / 2648
  5943. }
  5944. },
  5945. paw: {
  5946. height: math.unit(1.32, "feet"),
  5947. name: "Paw",
  5948. image: {
  5949. source: "./media/characters/alicia/paw.svg"
  5950. }
  5951. },
  5952. feral: {
  5953. height: math.unit(1.69, "meters"),
  5954. weight: math.unit(73, "kg"),
  5955. name: "Feral",
  5956. image: {
  5957. source: "./media/characters/alicia/feral.svg",
  5958. extra: 2123 / 1715,
  5959. bottom: 222 / 2349
  5960. }
  5961. },
  5962. },
  5963. [
  5964. {
  5965. name: "Normal",
  5966. height: math.unit(2.35, "meters")
  5967. },
  5968. {
  5969. name: "Macro",
  5970. height: math.unit(60, "meters"),
  5971. default: true
  5972. },
  5973. {
  5974. name: "Megamacro",
  5975. height: math.unit(10000, "kilometers")
  5976. },
  5977. ]
  5978. ))
  5979. characterMakers.push(() => makeCharacter(
  5980. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5981. {
  5982. front: {
  5983. height: math.unit(7, "feet"),
  5984. weight: math.unit(250, "lbs"),
  5985. name: "Front",
  5986. image: {
  5987. source: "./media/characters/archy/front.svg"
  5988. }
  5989. }
  5990. },
  5991. [
  5992. {
  5993. name: "Micro",
  5994. height: math.unit(1, "inch")
  5995. },
  5996. {
  5997. name: "Shorty",
  5998. height: math.unit(5, "feet")
  5999. },
  6000. {
  6001. name: "Normal",
  6002. height: math.unit(7, "feet")
  6003. },
  6004. {
  6005. name: "Macro",
  6006. height: math.unit(600, "meters"),
  6007. default: true
  6008. },
  6009. {
  6010. name: "Megamacro",
  6011. height: math.unit(1, "mile")
  6012. },
  6013. ]
  6014. ))
  6015. characterMakers.push(() => makeCharacter(
  6016. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6017. {
  6018. front: {
  6019. height: math.unit(1.65, "meters"),
  6020. weight: math.unit(74, "kg"),
  6021. name: "Front",
  6022. image: {
  6023. source: "./media/characters/berri/front.svg",
  6024. extra: 857 / 837,
  6025. bottom: 18 / 877
  6026. }
  6027. },
  6028. bum: {
  6029. height: math.unit(1.46, "feet"),
  6030. name: "Bum",
  6031. image: {
  6032. source: "./media/characters/berri/bum.svg"
  6033. }
  6034. },
  6035. mouth: {
  6036. height: math.unit(0.44, "feet"),
  6037. name: "Mouth",
  6038. image: {
  6039. source: "./media/characters/berri/mouth.svg"
  6040. }
  6041. },
  6042. paw: {
  6043. height: math.unit(0.826, "feet"),
  6044. name: "Paw",
  6045. image: {
  6046. source: "./media/characters/berri/paw.svg"
  6047. }
  6048. },
  6049. },
  6050. [
  6051. {
  6052. name: "Normal",
  6053. height: math.unit(1.65, "meters")
  6054. },
  6055. {
  6056. name: "Macro",
  6057. height: math.unit(60, "m"),
  6058. default: true
  6059. },
  6060. {
  6061. name: "Megamacro",
  6062. height: math.unit(9.213, "km")
  6063. },
  6064. {
  6065. name: "Planet Eater",
  6066. height: math.unit(489, "megameters")
  6067. },
  6068. {
  6069. name: "Teramacro",
  6070. height: math.unit(2471635000000, "meters")
  6071. },
  6072. {
  6073. name: "Examacro",
  6074. height: math.unit(8.0624e+26, "meters")
  6075. }
  6076. ]
  6077. ))
  6078. characterMakers.push(() => makeCharacter(
  6079. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6080. {
  6081. front: {
  6082. height: math.unit(1.72, "meters"),
  6083. weight: math.unit(68, "kg"),
  6084. name: "Front",
  6085. image: {
  6086. source: "./media/characters/lexi/front.svg"
  6087. }
  6088. }
  6089. },
  6090. [
  6091. {
  6092. name: "Very Smol",
  6093. height: math.unit(10, "mm")
  6094. },
  6095. {
  6096. name: "Micro",
  6097. height: math.unit(6.8, "cm"),
  6098. default: true
  6099. },
  6100. {
  6101. name: "Normal",
  6102. height: math.unit(1.72, "m")
  6103. }
  6104. ]
  6105. ))
  6106. characterMakers.push(() => makeCharacter(
  6107. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6108. {
  6109. front: {
  6110. height: math.unit(1.69, "meters"),
  6111. weight: math.unit(68, "kg"),
  6112. name: "Front",
  6113. image: {
  6114. source: "./media/characters/martin/front.svg",
  6115. extra: 596 / 581
  6116. }
  6117. }
  6118. },
  6119. [
  6120. {
  6121. name: "Micro",
  6122. height: math.unit(6.85, "cm"),
  6123. default: true
  6124. },
  6125. {
  6126. name: "Normal",
  6127. height: math.unit(1.69, "m")
  6128. }
  6129. ]
  6130. ))
  6131. characterMakers.push(() => makeCharacter(
  6132. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6133. {
  6134. front: {
  6135. height: math.unit(1.69, "meters"),
  6136. weight: math.unit(68, "kg"),
  6137. name: "Front",
  6138. image: {
  6139. source: "./media/characters/juno/front.svg"
  6140. }
  6141. }
  6142. },
  6143. [
  6144. {
  6145. name: "Micro",
  6146. height: math.unit(7, "cm")
  6147. },
  6148. {
  6149. name: "Normal",
  6150. height: math.unit(1.89, "m")
  6151. },
  6152. {
  6153. name: "Macro",
  6154. height: math.unit(353, "meters"),
  6155. default: true
  6156. }
  6157. ]
  6158. ))
  6159. characterMakers.push(() => makeCharacter(
  6160. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6161. {
  6162. front: {
  6163. height: math.unit(1.93, "meters"),
  6164. weight: math.unit(83, "kg"),
  6165. name: "Front",
  6166. image: {
  6167. source: "./media/characters/samantha/front.svg"
  6168. }
  6169. },
  6170. frontClothed: {
  6171. height: math.unit(1.93, "meters"),
  6172. weight: math.unit(83, "kg"),
  6173. name: "Front (Clothed)",
  6174. image: {
  6175. source: "./media/characters/samantha/front-clothed.svg"
  6176. }
  6177. },
  6178. back: {
  6179. height: math.unit(1.93, "meters"),
  6180. weight: math.unit(83, "kg"),
  6181. name: "Back",
  6182. image: {
  6183. source: "./media/characters/samantha/back.svg"
  6184. }
  6185. },
  6186. },
  6187. [
  6188. {
  6189. name: "Normal",
  6190. height: math.unit(1.93, "m")
  6191. },
  6192. {
  6193. name: "Macro",
  6194. height: math.unit(74, "meters"),
  6195. default: true
  6196. },
  6197. {
  6198. name: "Macro+",
  6199. height: math.unit(223, "meters"),
  6200. },
  6201. {
  6202. name: "Megamacro",
  6203. height: math.unit(8381, "meters"),
  6204. },
  6205. {
  6206. name: "Megamacro+",
  6207. height: math.unit(12000, "kilometers")
  6208. },
  6209. ]
  6210. ))
  6211. characterMakers.push(() => makeCharacter(
  6212. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6213. {
  6214. front: {
  6215. height: math.unit(1.92, "meters"),
  6216. weight: math.unit(80, "kg"),
  6217. name: "Front",
  6218. image: {
  6219. source: "./media/characters/dr-clay/front.svg"
  6220. }
  6221. },
  6222. frontClothed: {
  6223. height: math.unit(1.92, "meters"),
  6224. weight: math.unit(80, "kg"),
  6225. name: "Front (Clothed)",
  6226. image: {
  6227. source: "./media/characters/dr-clay/front-clothed.svg"
  6228. }
  6229. }
  6230. },
  6231. [
  6232. {
  6233. name: "Normal",
  6234. height: math.unit(1.92, "m")
  6235. },
  6236. {
  6237. name: "Macro",
  6238. height: math.unit(214, "meters"),
  6239. default: true
  6240. },
  6241. {
  6242. name: "Macro+",
  6243. height: math.unit(12.237, "meters"),
  6244. },
  6245. {
  6246. name: "Megamacro",
  6247. height: math.unit(557, "megameters"),
  6248. },
  6249. {
  6250. name: "Unimaginable",
  6251. height: math.unit(120e9, "lightyears")
  6252. },
  6253. ]
  6254. ))
  6255. characterMakers.push(() => makeCharacter(
  6256. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6257. {
  6258. front: {
  6259. height: math.unit(2, "meters"),
  6260. weight: math.unit(80, "kg"),
  6261. name: "Front",
  6262. image: {
  6263. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6264. }
  6265. }
  6266. },
  6267. [
  6268. {
  6269. name: "Teramacro",
  6270. height: math.unit(500000, "lightyears"),
  6271. default: true
  6272. },
  6273. ]
  6274. ))
  6275. characterMakers.push(() => makeCharacter(
  6276. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6277. {
  6278. front: {
  6279. height: math.unit(2, "meters"),
  6280. weight: math.unit(150, "kg"),
  6281. name: "Front",
  6282. image: {
  6283. source: "./media/characters/vemus/front.svg",
  6284. extra: 2384 / 2084,
  6285. bottom: 0.0123
  6286. }
  6287. }
  6288. },
  6289. [
  6290. {
  6291. name: "Normal",
  6292. height: math.unit(3.75, "meters"),
  6293. default: true
  6294. },
  6295. {
  6296. name: "Big",
  6297. height: math.unit(8, "meters")
  6298. },
  6299. {
  6300. name: "Macro",
  6301. height: math.unit(100, "meters")
  6302. },
  6303. {
  6304. name: "Macro+",
  6305. height: math.unit(1500, "meters")
  6306. },
  6307. {
  6308. name: "Stellar",
  6309. height: math.unit(14e8, "meters")
  6310. },
  6311. ]
  6312. ))
  6313. characterMakers.push(() => makeCharacter(
  6314. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6315. {
  6316. front: {
  6317. height: math.unit(2, "meters"),
  6318. weight: math.unit(70, "kg"),
  6319. name: "Front",
  6320. image: {
  6321. source: "./media/characters/beherit/front.svg",
  6322. extra: 1408 / 1242
  6323. }
  6324. }
  6325. },
  6326. [
  6327. {
  6328. name: "Normal",
  6329. height: math.unit(6, "feet")
  6330. },
  6331. {
  6332. name: "Lorg",
  6333. height: math.unit(25, "feet"),
  6334. default: true
  6335. },
  6336. {
  6337. name: "Lorger",
  6338. height: math.unit(75, "feet")
  6339. },
  6340. {
  6341. name: "Macro",
  6342. height: math.unit(200, "meters")
  6343. },
  6344. ]
  6345. ))
  6346. characterMakers.push(() => makeCharacter(
  6347. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6348. {
  6349. front: {
  6350. height: math.unit(2, "meters"),
  6351. weight: math.unit(150, "kg"),
  6352. name: "Front",
  6353. image: {
  6354. source: "./media/characters/everett/front.svg",
  6355. extra: 2038 / 1737,
  6356. bottom: 0.03
  6357. }
  6358. },
  6359. paw: {
  6360. height: math.unit(2 / 3.6, "meters"),
  6361. name: "Paw",
  6362. image: {
  6363. source: "./media/characters/everett/paw.svg"
  6364. }
  6365. },
  6366. },
  6367. [
  6368. {
  6369. name: "Normal",
  6370. height: math.unit(15, "feet"),
  6371. default: true
  6372. },
  6373. {
  6374. name: "Lorg",
  6375. height: math.unit(70, "feet"),
  6376. default: true
  6377. },
  6378. {
  6379. name: "Lorger",
  6380. height: math.unit(250, "feet")
  6381. },
  6382. {
  6383. name: "Macro",
  6384. height: math.unit(500, "meters")
  6385. },
  6386. ]
  6387. ))
  6388. characterMakers.push(() => makeCharacter(
  6389. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6390. {
  6391. front: {
  6392. height: math.unit(2, "meters"),
  6393. weight: math.unit(86, "kg"),
  6394. name: "Front",
  6395. image: {
  6396. source: "./media/characters/rose/front.svg",
  6397. extra: 350/335,
  6398. bottom: 10/360
  6399. }
  6400. },
  6401. frontAlt: {
  6402. height: math.unit(1.6, "meters"),
  6403. weight: math.unit(86, "kg"),
  6404. name: "Front (Alt)",
  6405. image: {
  6406. source: "./media/characters/rose/front-alt.svg",
  6407. extra: 299/283,
  6408. bottom: 3/302
  6409. }
  6410. },
  6411. plush: {
  6412. height: math.unit(2, "meters"),
  6413. weight: math.unit(86/3, "kg"),
  6414. name: "Plush",
  6415. image: {
  6416. source: "./media/characters/rose/plush.svg",
  6417. extra: 361/337,
  6418. bottom: 11/372
  6419. }
  6420. },
  6421. },
  6422. [
  6423. {
  6424. name: "Mini-Micro",
  6425. height: math.unit(1, "cm")
  6426. },
  6427. {
  6428. name: "Micro",
  6429. height: math.unit(3.5, "inches"),
  6430. default: true
  6431. },
  6432. {
  6433. name: "Normal",
  6434. height: math.unit(6 + 1 / 6, "feet")
  6435. },
  6436. {
  6437. name: "Mini-Macro",
  6438. height: math.unit(9 + 10 / 12, "feet")
  6439. },
  6440. ]
  6441. ))
  6442. characterMakers.push(() => makeCharacter(
  6443. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6444. {
  6445. front: {
  6446. height: math.unit(2, "meters"),
  6447. weight: math.unit(350, "lbs"),
  6448. name: "Front",
  6449. image: {
  6450. source: "./media/characters/regal/front.svg"
  6451. }
  6452. },
  6453. back: {
  6454. height: math.unit(2, "meters"),
  6455. weight: math.unit(350, "lbs"),
  6456. name: "Back",
  6457. image: {
  6458. source: "./media/characters/regal/back.svg"
  6459. }
  6460. },
  6461. },
  6462. [
  6463. {
  6464. name: "Macro",
  6465. height: math.unit(350, "feet"),
  6466. default: true
  6467. }
  6468. ]
  6469. ))
  6470. characterMakers.push(() => makeCharacter(
  6471. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6472. {
  6473. front: {
  6474. height: math.unit(4 + 11 / 12, "feet"),
  6475. weight: math.unit(100, "lbs"),
  6476. name: "Front",
  6477. image: {
  6478. source: "./media/characters/opal/front.svg"
  6479. }
  6480. },
  6481. frontAlt: {
  6482. height: math.unit(4 + 11 / 12, "feet"),
  6483. weight: math.unit(100, "lbs"),
  6484. name: "Front (Alt)",
  6485. image: {
  6486. source: "./media/characters/opal/front-alt.svg"
  6487. }
  6488. },
  6489. },
  6490. [
  6491. {
  6492. name: "Small",
  6493. height: math.unit(4 + 11 / 12, "feet")
  6494. },
  6495. {
  6496. name: "Normal",
  6497. height: math.unit(20, "feet"),
  6498. default: true
  6499. },
  6500. {
  6501. name: "Macro",
  6502. height: math.unit(120, "feet")
  6503. },
  6504. {
  6505. name: "Megamacro",
  6506. height: math.unit(80, "miles")
  6507. },
  6508. {
  6509. name: "True Size",
  6510. height: math.unit(100000, "lightyears")
  6511. },
  6512. ]
  6513. ))
  6514. characterMakers.push(() => makeCharacter(
  6515. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6516. {
  6517. front: {
  6518. height: math.unit(6, "feet"),
  6519. weight: math.unit(200, "lbs"),
  6520. name: "Front",
  6521. image: {
  6522. source: "./media/characters/vector-wuff/front.svg"
  6523. }
  6524. }
  6525. },
  6526. [
  6527. {
  6528. name: "Normal",
  6529. height: math.unit(2.8, "meters")
  6530. },
  6531. {
  6532. name: "Macro",
  6533. height: math.unit(450, "meters"),
  6534. default: true
  6535. },
  6536. {
  6537. name: "Megamacro",
  6538. height: math.unit(15, "kilometers")
  6539. }
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(256, "lbs"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/dannik/front.svg"
  6551. }
  6552. }
  6553. },
  6554. [
  6555. {
  6556. name: "Macro",
  6557. height: math.unit(69.57, "meters"),
  6558. default: true
  6559. },
  6560. ]
  6561. ))
  6562. characterMakers.push(() => makeCharacter(
  6563. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6564. {
  6565. front: {
  6566. height: math.unit(6, "feet"),
  6567. weight: math.unit(120, "lbs"),
  6568. name: "Front",
  6569. image: {
  6570. source: "./media/characters/azura-saharah/front.svg"
  6571. }
  6572. },
  6573. back: {
  6574. height: math.unit(6, "feet"),
  6575. weight: math.unit(120, "lbs"),
  6576. name: "Back",
  6577. image: {
  6578. source: "./media/characters/azura-saharah/back.svg"
  6579. }
  6580. },
  6581. },
  6582. [
  6583. {
  6584. name: "Macro",
  6585. height: math.unit(100, "feet"),
  6586. default: true
  6587. },
  6588. ]
  6589. ))
  6590. characterMakers.push(() => makeCharacter(
  6591. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6592. {
  6593. side: {
  6594. height: math.unit(5 + 4 / 12, "feet"),
  6595. weight: math.unit(163, "lbs"),
  6596. name: "Side",
  6597. image: {
  6598. source: "./media/characters/kennedy/side.svg"
  6599. }
  6600. }
  6601. },
  6602. [
  6603. {
  6604. name: "Standard Doggo",
  6605. height: math.unit(5 + 4 / 12, "feet")
  6606. },
  6607. {
  6608. name: "Big Doggo",
  6609. height: math.unit(25 + 3 / 12, "feet"),
  6610. default: true
  6611. },
  6612. ]
  6613. ))
  6614. characterMakers.push(() => makeCharacter(
  6615. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6616. {
  6617. front: {
  6618. height: math.unit(6, "feet"),
  6619. weight: math.unit(90, "lbs"),
  6620. name: "Front",
  6621. image: {
  6622. source: "./media/characters/odi-lunar/front.svg"
  6623. }
  6624. }
  6625. },
  6626. [
  6627. {
  6628. name: "Micro",
  6629. height: math.unit(3, "inches"),
  6630. default: true
  6631. },
  6632. {
  6633. name: "Normal",
  6634. height: math.unit(5.5, "feet")
  6635. }
  6636. ]
  6637. ))
  6638. characterMakers.push(() => makeCharacter(
  6639. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6640. {
  6641. back: {
  6642. height: math.unit(6, "feet"),
  6643. weight: math.unit(220, "lbs"),
  6644. name: "Back",
  6645. image: {
  6646. source: "./media/characters/mandake/back.svg"
  6647. }
  6648. }
  6649. },
  6650. [
  6651. {
  6652. name: "Normal",
  6653. height: math.unit(7, "feet"),
  6654. default: true
  6655. },
  6656. {
  6657. name: "Macro",
  6658. height: math.unit(78, "feet")
  6659. },
  6660. {
  6661. name: "Macro+",
  6662. height: math.unit(300, "meters")
  6663. },
  6664. {
  6665. name: "Macro++",
  6666. height: math.unit(2400, "feet")
  6667. },
  6668. {
  6669. name: "Megamacro",
  6670. height: math.unit(5167, "meters")
  6671. },
  6672. {
  6673. name: "Gigamacro",
  6674. height: math.unit(41769, "miles")
  6675. },
  6676. ]
  6677. ))
  6678. characterMakers.push(() => makeCharacter(
  6679. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6680. {
  6681. front: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(120, "lbs"),
  6684. name: "Front",
  6685. image: {
  6686. source: "./media/characters/yozey/front.svg"
  6687. }
  6688. },
  6689. frontAlt: {
  6690. height: math.unit(6, "feet"),
  6691. weight: math.unit(120, "lbs"),
  6692. name: "Front (Alt)",
  6693. image: {
  6694. source: "./media/characters/yozey/front-alt.svg"
  6695. }
  6696. },
  6697. side: {
  6698. height: math.unit(6, "feet"),
  6699. weight: math.unit(120, "lbs"),
  6700. name: "Side",
  6701. image: {
  6702. source: "./media/characters/yozey/side.svg"
  6703. }
  6704. },
  6705. },
  6706. [
  6707. {
  6708. name: "Micro",
  6709. height: math.unit(3, "inches"),
  6710. default: true
  6711. },
  6712. {
  6713. name: "Normal",
  6714. height: math.unit(6, "feet")
  6715. }
  6716. ]
  6717. ))
  6718. characterMakers.push(() => makeCharacter(
  6719. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6720. {
  6721. front: {
  6722. height: math.unit(6, "feet"),
  6723. weight: math.unit(103, "lbs"),
  6724. name: "Front",
  6725. image: {
  6726. source: "./media/characters/valeska-voss/front.svg"
  6727. }
  6728. }
  6729. },
  6730. [
  6731. {
  6732. name: "Mini-Sized Sub",
  6733. height: math.unit(3.1, "inches")
  6734. },
  6735. {
  6736. name: "Mid-Sized Sub",
  6737. height: math.unit(6.2, "inches")
  6738. },
  6739. {
  6740. name: "Full-Sized Sub",
  6741. height: math.unit(9.3, "inches")
  6742. },
  6743. {
  6744. name: "Normal",
  6745. height: math.unit(5 + 2 / 12, "foot"),
  6746. default: true
  6747. },
  6748. ]
  6749. ))
  6750. characterMakers.push(() => makeCharacter(
  6751. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6752. {
  6753. front: {
  6754. height: math.unit(6, "feet"),
  6755. weight: math.unit(160, "lbs"),
  6756. name: "Front",
  6757. image: {
  6758. source: "./media/characters/gene-zeta/front.svg",
  6759. extra: 3006 / 2826,
  6760. bottom: 182 / 3188
  6761. }
  6762. }
  6763. },
  6764. [
  6765. {
  6766. name: "Micro",
  6767. height: math.unit(6, "inches")
  6768. },
  6769. {
  6770. name: "Normal",
  6771. height: math.unit(5 + 11 / 12, "foot"),
  6772. default: true
  6773. },
  6774. {
  6775. name: "Macro",
  6776. height: math.unit(140, "feet")
  6777. },
  6778. {
  6779. name: "Supercharged",
  6780. height: math.unit(2500, "feet")
  6781. },
  6782. ]
  6783. ))
  6784. characterMakers.push(() => makeCharacter(
  6785. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6786. {
  6787. front: {
  6788. height: math.unit(6, "feet"),
  6789. weight: math.unit(350, "lbs"),
  6790. name: "Front",
  6791. image: {
  6792. source: "./media/characters/razinox/front.svg",
  6793. extra: 1686 / 1548,
  6794. bottom: 28.2 / 1868
  6795. }
  6796. },
  6797. back: {
  6798. height: math.unit(6, "feet"),
  6799. weight: math.unit(350, "lbs"),
  6800. name: "Back",
  6801. image: {
  6802. source: "./media/characters/razinox/back.svg",
  6803. extra: 1660 / 1590,
  6804. bottom: 15 / 1665
  6805. }
  6806. },
  6807. },
  6808. [
  6809. {
  6810. name: "Normal",
  6811. height: math.unit(10 + 8 / 12, "foot")
  6812. },
  6813. {
  6814. name: "Minimacro",
  6815. height: math.unit(15, "foot")
  6816. },
  6817. {
  6818. name: "Macro",
  6819. height: math.unit(60, "foot"),
  6820. default: true
  6821. },
  6822. {
  6823. name: "Megamacro",
  6824. height: math.unit(5, "miles")
  6825. },
  6826. {
  6827. name: "Gigamacro",
  6828. height: math.unit(6000, "miles")
  6829. },
  6830. ]
  6831. ))
  6832. characterMakers.push(() => makeCharacter(
  6833. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6834. {
  6835. front: {
  6836. height: math.unit(6, "feet"),
  6837. weight: math.unit(150, "lbs"),
  6838. name: "Front",
  6839. image: {
  6840. source: "./media/characters/cobalt/front.svg"
  6841. }
  6842. }
  6843. },
  6844. [
  6845. {
  6846. name: "Normal",
  6847. height: math.unit(8 + 1 / 12, "foot")
  6848. },
  6849. {
  6850. name: "Macro",
  6851. height: math.unit(111, "foot"),
  6852. default: true
  6853. },
  6854. {
  6855. name: "Supracosmic",
  6856. height: math.unit(1e42, "feet")
  6857. },
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(6, "feet"),
  6865. weight: math.unit(140, "lbs"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/amanda/front.svg"
  6869. }
  6870. }
  6871. },
  6872. [
  6873. {
  6874. name: "Micro",
  6875. height: math.unit(5, "inches"),
  6876. default: true
  6877. },
  6878. ]
  6879. ))
  6880. characterMakers.push(() => makeCharacter(
  6881. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6882. {
  6883. front: {
  6884. height: math.unit(2.75, "meters"),
  6885. weight: math.unit(1200, "lb"),
  6886. name: "Front",
  6887. image: {
  6888. source: "./media/characters/teal/front.svg",
  6889. extra: 2463 / 2320,
  6890. bottom: 166 / 2629
  6891. }
  6892. },
  6893. back: {
  6894. height: math.unit(2.75, "meters"),
  6895. weight: math.unit(1200, "lb"),
  6896. name: "Back",
  6897. image: {
  6898. source: "./media/characters/teal/back.svg",
  6899. extra: 2580 / 2489,
  6900. bottom: 151 / 2731
  6901. }
  6902. },
  6903. sitting: {
  6904. height: math.unit(1.9, "meters"),
  6905. weight: math.unit(1200, "lb"),
  6906. name: "Sitting",
  6907. image: {
  6908. source: "./media/characters/teal/sitting.svg",
  6909. extra: 623 / 590,
  6910. bottom: 121 / 744
  6911. }
  6912. },
  6913. standing: {
  6914. height: math.unit(2.75, "meters"),
  6915. weight: math.unit(1200, "lb"),
  6916. name: "Standing",
  6917. image: {
  6918. source: "./media/characters/teal/standing.svg",
  6919. extra: 923 / 893,
  6920. bottom: 60 / 983
  6921. }
  6922. },
  6923. stretching: {
  6924. height: math.unit(3.65, "meters"),
  6925. weight: math.unit(1200, "lb"),
  6926. name: "Stretching",
  6927. image: {
  6928. source: "./media/characters/teal/stretching.svg",
  6929. extra: 1276 / 1244,
  6930. bottom: 0 / 1276
  6931. }
  6932. },
  6933. legged: {
  6934. height: math.unit(1.3, "meters"),
  6935. weight: math.unit(100, "lb"),
  6936. name: "Legged",
  6937. image: {
  6938. source: "./media/characters/teal/legged.svg",
  6939. extra: 462 / 437,
  6940. bottom: 24 / 486
  6941. }
  6942. },
  6943. naga: {
  6944. height: math.unit(5.4, "meters"),
  6945. weight: math.unit(4000, "lb"),
  6946. name: "Naga",
  6947. image: {
  6948. source: "./media/characters/teal/naga.svg",
  6949. extra: 1902 / 1858,
  6950. bottom: 0 / 1902
  6951. }
  6952. },
  6953. hand: {
  6954. height: math.unit(0.52, "meters"),
  6955. name: "Hand",
  6956. image: {
  6957. source: "./media/characters/teal/hand.svg"
  6958. }
  6959. },
  6960. maw: {
  6961. height: math.unit(0.43, "meters"),
  6962. name: "Maw",
  6963. image: {
  6964. source: "./media/characters/teal/maw.svg"
  6965. }
  6966. },
  6967. slit: {
  6968. height: math.unit(0.25, "meters"),
  6969. name: "Slit",
  6970. image: {
  6971. source: "./media/characters/teal/slit.svg"
  6972. }
  6973. },
  6974. },
  6975. [
  6976. {
  6977. name: "Normal",
  6978. height: math.unit(2.75, "meters"),
  6979. default: true
  6980. },
  6981. {
  6982. name: "Macro",
  6983. height: math.unit(300, "feet")
  6984. },
  6985. {
  6986. name: "Macro+",
  6987. height: math.unit(2000, "feet")
  6988. },
  6989. ]
  6990. ))
  6991. characterMakers.push(() => makeCharacter(
  6992. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6993. {
  6994. frontCat: {
  6995. height: math.unit(6, "feet"),
  6996. weight: math.unit(180, "lbs"),
  6997. name: "Front (Cat)",
  6998. image: {
  6999. source: "./media/characters/ravin-amulet/front-cat.svg"
  7000. }
  7001. },
  7002. frontCatAlt: {
  7003. height: math.unit(6, "feet"),
  7004. weight: math.unit(180, "lbs"),
  7005. name: "Front (Alt, Cat)",
  7006. image: {
  7007. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7008. }
  7009. },
  7010. frontWerewolf: {
  7011. height: math.unit(6 * 1.2, "feet"),
  7012. weight: math.unit(225, "lbs"),
  7013. name: "Front (Werewolf)",
  7014. image: {
  7015. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7016. }
  7017. },
  7018. backWerewolf: {
  7019. height: math.unit(6 * 1.2, "feet"),
  7020. weight: math.unit(225, "lbs"),
  7021. name: "Back (Werewolf)",
  7022. image: {
  7023. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7024. }
  7025. },
  7026. },
  7027. [
  7028. {
  7029. name: "Nano",
  7030. height: math.unit(1, "micrometer")
  7031. },
  7032. {
  7033. name: "Micro",
  7034. height: math.unit(1, "inch")
  7035. },
  7036. {
  7037. name: "Normal",
  7038. height: math.unit(6, "feet"),
  7039. default: true
  7040. },
  7041. {
  7042. name: "Macro",
  7043. height: math.unit(60, "feet")
  7044. }
  7045. ]
  7046. ))
  7047. characterMakers.push(() => makeCharacter(
  7048. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7049. {
  7050. front: {
  7051. height: math.unit(6, "feet"),
  7052. weight: math.unit(165, "lbs"),
  7053. name: "Front",
  7054. image: {
  7055. source: "./media/characters/fluoresce/front.svg"
  7056. }
  7057. }
  7058. },
  7059. [
  7060. {
  7061. name: "Micro",
  7062. height: math.unit(6, "cm")
  7063. },
  7064. {
  7065. name: "Normal",
  7066. height: math.unit(5 + 7 / 12, "feet"),
  7067. default: true
  7068. },
  7069. {
  7070. name: "Macro",
  7071. height: math.unit(56, "feet")
  7072. },
  7073. {
  7074. name: "Megamacro",
  7075. height: math.unit(1.9, "miles")
  7076. },
  7077. ]
  7078. ))
  7079. characterMakers.push(() => makeCharacter(
  7080. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7081. {
  7082. front: {
  7083. height: math.unit(9 + 6 / 12, "feet"),
  7084. weight: math.unit(523, "lbs"),
  7085. name: "Side",
  7086. image: {
  7087. source: "./media/characters/aurora/side.svg"
  7088. }
  7089. }
  7090. },
  7091. [
  7092. {
  7093. name: "Normal",
  7094. height: math.unit(9 + 6 / 12, "feet")
  7095. },
  7096. {
  7097. name: "Macro",
  7098. height: math.unit(96, "feet"),
  7099. default: true
  7100. },
  7101. {
  7102. name: "Macro+",
  7103. height: math.unit(243, "feet")
  7104. },
  7105. ]
  7106. ))
  7107. characterMakers.push(() => makeCharacter(
  7108. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7109. {
  7110. front: {
  7111. height: math.unit(194, "cm"),
  7112. weight: math.unit(90, "kg"),
  7113. name: "Front",
  7114. image: {
  7115. source: "./media/characters/ranek/front.svg"
  7116. }
  7117. },
  7118. side: {
  7119. height: math.unit(194, "cm"),
  7120. weight: math.unit(90, "kg"),
  7121. name: "Side",
  7122. image: {
  7123. source: "./media/characters/ranek/side.svg"
  7124. }
  7125. },
  7126. back: {
  7127. height: math.unit(194, "cm"),
  7128. weight: math.unit(90, "kg"),
  7129. name: "Back",
  7130. image: {
  7131. source: "./media/characters/ranek/back.svg"
  7132. }
  7133. },
  7134. feral: {
  7135. height: math.unit(30, "cm"),
  7136. weight: math.unit(1.6, "lbs"),
  7137. name: "Feral",
  7138. image: {
  7139. source: "./media/characters/ranek/feral.svg"
  7140. }
  7141. },
  7142. },
  7143. [
  7144. {
  7145. name: "Normal",
  7146. height: math.unit(194, "cm"),
  7147. default: true
  7148. },
  7149. {
  7150. name: "Macro",
  7151. height: math.unit(100, "meters")
  7152. },
  7153. ]
  7154. ))
  7155. characterMakers.push(() => makeCharacter(
  7156. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7157. {
  7158. front: {
  7159. height: math.unit(5 + 6 / 12, "feet"),
  7160. weight: math.unit(153, "lbs"),
  7161. name: "Front",
  7162. image: {
  7163. source: "./media/characters/andrew-cooper/front.svg"
  7164. }
  7165. },
  7166. },
  7167. [
  7168. {
  7169. name: "Nano",
  7170. height: math.unit(1, "mm")
  7171. },
  7172. {
  7173. name: "Micro",
  7174. height: math.unit(2, "inches")
  7175. },
  7176. {
  7177. name: "Normal",
  7178. height: math.unit(5 + 6 / 12, "feet"),
  7179. default: true
  7180. }
  7181. ]
  7182. ))
  7183. characterMakers.push(() => makeCharacter(
  7184. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7185. {
  7186. front: {
  7187. height: math.unit(6, "feet"),
  7188. weight: math.unit(180, "lbs"),
  7189. name: "Front",
  7190. image: {
  7191. source: "./media/characters/akane-sato/front.svg",
  7192. extra: 1219 / 1140
  7193. }
  7194. },
  7195. back: {
  7196. height: math.unit(6, "feet"),
  7197. weight: math.unit(180, "lbs"),
  7198. name: "Back",
  7199. image: {
  7200. source: "./media/characters/akane-sato/back.svg",
  7201. extra: 1219 / 1170
  7202. }
  7203. },
  7204. },
  7205. [
  7206. {
  7207. name: "Normal",
  7208. height: math.unit(2.5, "meters")
  7209. },
  7210. {
  7211. name: "Macro",
  7212. height: math.unit(250, "meters"),
  7213. default: true
  7214. },
  7215. {
  7216. name: "Megamacro",
  7217. height: math.unit(25, "km")
  7218. },
  7219. ]
  7220. ))
  7221. characterMakers.push(() => makeCharacter(
  7222. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7223. {
  7224. front: {
  7225. height: math.unit(6, "feet"),
  7226. weight: math.unit(65, "kg"),
  7227. name: "Front",
  7228. image: {
  7229. source: "./media/characters/rook/front.svg",
  7230. extra: 960 / 950
  7231. }
  7232. }
  7233. },
  7234. [
  7235. {
  7236. name: "Normal",
  7237. height: math.unit(8.8, "feet")
  7238. },
  7239. {
  7240. name: "Macro",
  7241. height: math.unit(88, "feet"),
  7242. default: true
  7243. },
  7244. {
  7245. name: "Megamacro",
  7246. height: math.unit(8, "miles")
  7247. },
  7248. ]
  7249. ))
  7250. characterMakers.push(() => makeCharacter(
  7251. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7252. {
  7253. front: {
  7254. height: math.unit(12 + 2 / 12, "feet"),
  7255. weight: math.unit(808, "lbs"),
  7256. name: "Front",
  7257. image: {
  7258. source: "./media/characters/prodigy/front.svg"
  7259. }
  7260. }
  7261. },
  7262. [
  7263. {
  7264. name: "Normal",
  7265. height: math.unit(12 + 2 / 12, "feet"),
  7266. default: true
  7267. },
  7268. {
  7269. name: "Macro",
  7270. height: math.unit(143, "feet")
  7271. },
  7272. {
  7273. name: "Macro+",
  7274. height: math.unit(400, "feet")
  7275. },
  7276. ]
  7277. ))
  7278. characterMakers.push(() => makeCharacter(
  7279. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7280. {
  7281. front: {
  7282. height: math.unit(6, "feet"),
  7283. weight: math.unit(225, "lbs"),
  7284. name: "Front",
  7285. image: {
  7286. source: "./media/characters/daniel/front.svg"
  7287. }
  7288. },
  7289. leaning: {
  7290. height: math.unit(6, "feet"),
  7291. weight: math.unit(225, "lbs"),
  7292. name: "Leaning",
  7293. image: {
  7294. source: "./media/characters/daniel/leaning.svg"
  7295. }
  7296. },
  7297. },
  7298. [
  7299. {
  7300. name: "Macro",
  7301. height: math.unit(1000, "feet"),
  7302. default: true
  7303. },
  7304. ]
  7305. ))
  7306. characterMakers.push(() => makeCharacter(
  7307. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7308. {
  7309. front: {
  7310. height: math.unit(6, "feet"),
  7311. weight: math.unit(88, "lbs"),
  7312. name: "Front",
  7313. image: {
  7314. source: "./media/characters/chiros/front.svg",
  7315. extra: 306 / 226
  7316. }
  7317. },
  7318. side: {
  7319. height: math.unit(6, "feet"),
  7320. weight: math.unit(88, "lbs"),
  7321. name: "Side",
  7322. image: {
  7323. source: "./media/characters/chiros/side.svg",
  7324. extra: 306 / 226
  7325. }
  7326. },
  7327. },
  7328. [
  7329. {
  7330. name: "Normal",
  7331. height: math.unit(6, "cm"),
  7332. default: true
  7333. },
  7334. ]
  7335. ))
  7336. characterMakers.push(() => makeCharacter(
  7337. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7338. {
  7339. front: {
  7340. height: math.unit(6, "feet"),
  7341. weight: math.unit(100, "lbs"),
  7342. name: "Front",
  7343. image: {
  7344. source: "./media/characters/selka/front.svg",
  7345. extra: 947 / 887
  7346. }
  7347. }
  7348. },
  7349. [
  7350. {
  7351. name: "Normal",
  7352. height: math.unit(5, "cm"),
  7353. default: true
  7354. },
  7355. ]
  7356. ))
  7357. characterMakers.push(() => makeCharacter(
  7358. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7359. {
  7360. front: {
  7361. height: math.unit(8 + 3 / 12, "feet"),
  7362. weight: math.unit(424, "lbs"),
  7363. name: "Front",
  7364. image: {
  7365. source: "./media/characters/verin/front.svg",
  7366. extra: 1845 / 1550
  7367. }
  7368. },
  7369. frontArmored: {
  7370. height: math.unit(8 + 3 / 12, "feet"),
  7371. weight: math.unit(424, "lbs"),
  7372. name: "Front (Armored)",
  7373. image: {
  7374. source: "./media/characters/verin/front-armor.svg",
  7375. extra: 1845 / 1550,
  7376. bottom: 0.01
  7377. }
  7378. },
  7379. back: {
  7380. height: math.unit(8 + 3 / 12, "feet"),
  7381. weight: math.unit(424, "lbs"),
  7382. name: "Back",
  7383. image: {
  7384. source: "./media/characters/verin/back.svg",
  7385. bottom: 0.1,
  7386. extra: 1
  7387. }
  7388. },
  7389. foot: {
  7390. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7391. name: "Foot",
  7392. image: {
  7393. source: "./media/characters/verin/foot.svg"
  7394. }
  7395. },
  7396. },
  7397. [
  7398. {
  7399. name: "Normal",
  7400. height: math.unit(8 + 3 / 12, "feet")
  7401. },
  7402. {
  7403. name: "Minimacro",
  7404. height: math.unit(21, "feet"),
  7405. default: true
  7406. },
  7407. {
  7408. name: "Macro",
  7409. height: math.unit(626, "feet")
  7410. },
  7411. ]
  7412. ))
  7413. characterMakers.push(() => makeCharacter(
  7414. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7415. {
  7416. front: {
  7417. height: math.unit(2.718, "meters"),
  7418. weight: math.unit(150, "lbs"),
  7419. name: "Front",
  7420. image: {
  7421. source: "./media/characters/sovrim-terraquian/front.svg"
  7422. }
  7423. },
  7424. back: {
  7425. height: math.unit(2.718, "meters"),
  7426. weight: math.unit(150, "lbs"),
  7427. name: "Back",
  7428. image: {
  7429. source: "./media/characters/sovrim-terraquian/back.svg"
  7430. }
  7431. }
  7432. },
  7433. [
  7434. {
  7435. name: "Micro",
  7436. height: math.unit(2, "inches")
  7437. },
  7438. {
  7439. name: "Small",
  7440. height: math.unit(1, "meter")
  7441. },
  7442. {
  7443. name: "Normal",
  7444. height: math.unit(Math.E, "meters"),
  7445. default: true
  7446. },
  7447. {
  7448. name: "Macro",
  7449. height: math.unit(20, "meters")
  7450. },
  7451. {
  7452. name: "Macro+",
  7453. height: math.unit(400, "meters")
  7454. },
  7455. ]
  7456. ))
  7457. characterMakers.push(() => makeCharacter(
  7458. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7459. {
  7460. front: {
  7461. height: math.unit(7, "feet"),
  7462. weight: math.unit(489, "lbs"),
  7463. name: "Front",
  7464. image: {
  7465. source: "./media/characters/reece-silvermane/front.svg",
  7466. bottom: 0.02,
  7467. extra: 1
  7468. }
  7469. },
  7470. },
  7471. [
  7472. {
  7473. name: "Macro",
  7474. height: math.unit(1.5, "miles"),
  7475. default: true
  7476. },
  7477. ]
  7478. ))
  7479. characterMakers.push(() => makeCharacter(
  7480. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7481. {
  7482. front: {
  7483. height: math.unit(6, "feet"),
  7484. weight: math.unit(78, "kg"),
  7485. name: "Front",
  7486. image: {
  7487. source: "./media/characters/kane/front.svg",
  7488. extra: 978 / 899
  7489. }
  7490. },
  7491. },
  7492. [
  7493. {
  7494. name: "Normal",
  7495. height: math.unit(2.1, "m"),
  7496. },
  7497. {
  7498. name: "Macro",
  7499. height: math.unit(1, "km"),
  7500. default: true
  7501. },
  7502. ]
  7503. ))
  7504. characterMakers.push(() => makeCharacter(
  7505. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7506. {
  7507. front: {
  7508. height: math.unit(6, "feet"),
  7509. weight: math.unit(200, "kg"),
  7510. name: "Front",
  7511. image: {
  7512. source: "./media/characters/tegon/front.svg",
  7513. bottom: 0.01,
  7514. extra: 1
  7515. }
  7516. },
  7517. },
  7518. [
  7519. {
  7520. name: "Micro",
  7521. height: math.unit(1, "inch")
  7522. },
  7523. {
  7524. name: "Normal",
  7525. height: math.unit(6 + 3 / 12, "feet"),
  7526. default: true
  7527. },
  7528. {
  7529. name: "Macro",
  7530. height: math.unit(300, "feet")
  7531. },
  7532. {
  7533. name: "Megamacro",
  7534. height: math.unit(69, "miles")
  7535. },
  7536. ]
  7537. ))
  7538. characterMakers.push(() => makeCharacter(
  7539. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7540. {
  7541. side: {
  7542. height: math.unit(6, "feet"),
  7543. weight: math.unit(2304, "lbs"),
  7544. name: "Side",
  7545. image: {
  7546. source: "./media/characters/arcturax/side.svg",
  7547. extra: 790 / 376,
  7548. bottom: 0.01
  7549. }
  7550. },
  7551. },
  7552. [
  7553. {
  7554. name: "Micro",
  7555. height: math.unit(2, "inch")
  7556. },
  7557. {
  7558. name: "Normal",
  7559. height: math.unit(6, "feet")
  7560. },
  7561. {
  7562. name: "Macro",
  7563. height: math.unit(39, "feet"),
  7564. default: true
  7565. },
  7566. {
  7567. name: "Megamacro",
  7568. height: math.unit(7, "miles")
  7569. },
  7570. ]
  7571. ))
  7572. characterMakers.push(() => makeCharacter(
  7573. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7574. {
  7575. front: {
  7576. height: math.unit(6, "feet"),
  7577. weight: math.unit(50, "lbs"),
  7578. name: "Front",
  7579. image: {
  7580. source: "./media/characters/sentri/front.svg",
  7581. extra: 1750 / 1570,
  7582. bottom: 0.025
  7583. }
  7584. },
  7585. frontAlt: {
  7586. height: math.unit(6, "feet"),
  7587. weight: math.unit(50, "lbs"),
  7588. name: "Front (Alt)",
  7589. image: {
  7590. source: "./media/characters/sentri/front-alt.svg",
  7591. extra: 1750 / 1570,
  7592. bottom: 0.025
  7593. }
  7594. },
  7595. },
  7596. [
  7597. {
  7598. name: "Normal",
  7599. height: math.unit(15, "feet"),
  7600. default: true
  7601. },
  7602. {
  7603. name: "Macro",
  7604. height: math.unit(2500, "feet")
  7605. }
  7606. ]
  7607. ))
  7608. characterMakers.push(() => makeCharacter(
  7609. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7610. {
  7611. front: {
  7612. height: math.unit(5 + 8 / 12, "feet"),
  7613. weight: math.unit(130, "lbs"),
  7614. name: "Front",
  7615. image: {
  7616. source: "./media/characters/corvin/front.svg",
  7617. extra: 1803 / 1629
  7618. }
  7619. },
  7620. frontShirt: {
  7621. height: math.unit(5 + 8 / 12, "feet"),
  7622. weight: math.unit(130, "lbs"),
  7623. name: "Front (Shirt)",
  7624. image: {
  7625. source: "./media/characters/corvin/front-shirt.svg",
  7626. extra: 1803 / 1629
  7627. }
  7628. },
  7629. frontPoncho: {
  7630. height: math.unit(5 + 8 / 12, "feet"),
  7631. weight: math.unit(130, "lbs"),
  7632. name: "Front (Poncho)",
  7633. image: {
  7634. source: "./media/characters/corvin/front-poncho.svg",
  7635. extra: 1803 / 1629
  7636. }
  7637. },
  7638. side: {
  7639. height: math.unit(5 + 8 / 12, "feet"),
  7640. weight: math.unit(130, "lbs"),
  7641. name: "Side",
  7642. image: {
  7643. source: "./media/characters/corvin/side.svg",
  7644. extra: 1012 / 945
  7645. }
  7646. },
  7647. back: {
  7648. height: math.unit(5 + 8 / 12, "feet"),
  7649. weight: math.unit(130, "lbs"),
  7650. name: "Back",
  7651. image: {
  7652. source: "./media/characters/corvin/back.svg",
  7653. extra: 1803 / 1629
  7654. }
  7655. },
  7656. },
  7657. [
  7658. {
  7659. name: "Micro",
  7660. height: math.unit(3, "inches")
  7661. },
  7662. {
  7663. name: "Normal",
  7664. height: math.unit(5 + 8 / 12, "feet")
  7665. },
  7666. {
  7667. name: "Macro",
  7668. height: math.unit(300, "feet"),
  7669. default: true
  7670. },
  7671. {
  7672. name: "Megamacro",
  7673. height: math.unit(500, "miles")
  7674. }
  7675. ]
  7676. ))
  7677. characterMakers.push(() => makeCharacter(
  7678. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7679. {
  7680. front: {
  7681. height: math.unit(6, "feet"),
  7682. weight: math.unit(135, "lbs"),
  7683. name: "Front",
  7684. image: {
  7685. source: "./media/characters/q/front.svg",
  7686. extra: 854 / 752,
  7687. bottom: 0.005
  7688. }
  7689. },
  7690. back: {
  7691. height: math.unit(6, "feet"),
  7692. weight: math.unit(130, "lbs"),
  7693. name: "Back",
  7694. image: {
  7695. source: "./media/characters/q/back.svg",
  7696. extra: 854 / 752
  7697. }
  7698. },
  7699. },
  7700. [
  7701. {
  7702. name: "Macro",
  7703. height: math.unit(90, "feet"),
  7704. default: true
  7705. },
  7706. {
  7707. name: "Extra Macro",
  7708. height: math.unit(300, "feet"),
  7709. },
  7710. {
  7711. name: "BIG WALF",
  7712. height: math.unit(750, "feet"),
  7713. },
  7714. ]
  7715. ))
  7716. characterMakers.push(() => makeCharacter(
  7717. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7718. {
  7719. front: {
  7720. height: math.unit(6, "feet"),
  7721. weight: math.unit(150, "lbs"),
  7722. name: "Front",
  7723. image: {
  7724. source: "./media/characters/carley/front.svg",
  7725. extra: 3927 / 3540,
  7726. bottom: 29.2 / 735
  7727. }
  7728. }
  7729. },
  7730. [
  7731. {
  7732. name: "Normal",
  7733. height: math.unit(6 + 3 / 12, "feet")
  7734. },
  7735. {
  7736. name: "Macro",
  7737. height: math.unit(185, "feet"),
  7738. default: true
  7739. },
  7740. {
  7741. name: "Megamacro",
  7742. height: math.unit(8, "miles"),
  7743. },
  7744. ]
  7745. ))
  7746. characterMakers.push(() => makeCharacter(
  7747. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7748. {
  7749. front: {
  7750. height: math.unit(3, "feet"),
  7751. weight: math.unit(28, "lbs"),
  7752. name: "Front",
  7753. image: {
  7754. source: "./media/characters/citrine/front.svg"
  7755. }
  7756. }
  7757. },
  7758. [
  7759. {
  7760. name: "Normal",
  7761. height: math.unit(3, "feet"),
  7762. default: true
  7763. }
  7764. ]
  7765. ))
  7766. characterMakers.push(() => makeCharacter(
  7767. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7768. {
  7769. front: {
  7770. height: math.unit(14, "feet"),
  7771. weight: math.unit(1450, "kg"),
  7772. capacity: math.unit(15, "people"),
  7773. name: "Front",
  7774. image: {
  7775. source: "./media/characters/aura-starwind/front.svg",
  7776. extra: 1455 / 1335
  7777. }
  7778. },
  7779. side: {
  7780. height: math.unit(14, "feet"),
  7781. weight: math.unit(1450, "kg"),
  7782. capacity: math.unit(15, "people"),
  7783. name: "Side",
  7784. image: {
  7785. source: "./media/characters/aura-starwind/side.svg",
  7786. extra: 1654 / 1497
  7787. }
  7788. },
  7789. taur: {
  7790. height: math.unit(18, "feet"),
  7791. weight: math.unit(5500, "kg"),
  7792. capacity: math.unit(50, "people"),
  7793. name: "Taur",
  7794. image: {
  7795. source: "./media/characters/aura-starwind/taur.svg",
  7796. extra: 1760 / 1650
  7797. }
  7798. },
  7799. feral: {
  7800. height: math.unit(46, "feet"),
  7801. weight: math.unit(25000, "kg"),
  7802. capacity: math.unit(120, "people"),
  7803. name: "Feral",
  7804. image: {
  7805. source: "./media/characters/aura-starwind/feral.svg"
  7806. }
  7807. },
  7808. },
  7809. [
  7810. {
  7811. name: "Normal",
  7812. height: math.unit(14, "feet"),
  7813. default: true
  7814. },
  7815. {
  7816. name: "Macro",
  7817. height: math.unit(50, "meters")
  7818. },
  7819. {
  7820. name: "Megamacro",
  7821. height: math.unit(5000, "meters")
  7822. },
  7823. {
  7824. name: "Gigamacro",
  7825. height: math.unit(100000, "kilometers")
  7826. },
  7827. ]
  7828. ))
  7829. characterMakers.push(() => makeCharacter(
  7830. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7831. {
  7832. front: {
  7833. height: math.unit(2 + 7 / 12, "feet"),
  7834. weight: math.unit(32, "lbs"),
  7835. name: "Front",
  7836. image: {
  7837. source: "./media/characters/rivet/front.svg",
  7838. extra: 1716 / 1658,
  7839. bottom: 0.03
  7840. }
  7841. },
  7842. foot: {
  7843. height: math.unit(0.551, "feet"),
  7844. name: "Rivet's Foot",
  7845. image: {
  7846. source: "./media/characters/rivet/foot.svg"
  7847. },
  7848. rename: true
  7849. }
  7850. },
  7851. [
  7852. {
  7853. name: "Micro",
  7854. height: math.unit(1.5, "inches"),
  7855. },
  7856. {
  7857. name: "Normal",
  7858. height: math.unit(2 + 7 / 12, "feet"),
  7859. default: true
  7860. },
  7861. {
  7862. name: "Macro",
  7863. height: math.unit(85, "feet")
  7864. },
  7865. {
  7866. name: "Megamacro",
  7867. height: math.unit(2.2, "km")
  7868. }
  7869. ]
  7870. ))
  7871. characterMakers.push(() => makeCharacter(
  7872. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7873. {
  7874. front: {
  7875. height: math.unit(5 + 9 / 12, "feet"),
  7876. weight: math.unit(150, "lbs"),
  7877. name: "Front",
  7878. image: {
  7879. source: "./media/characters/coffee/front.svg",
  7880. extra: 3666 / 3032,
  7881. bottom: 0.04
  7882. }
  7883. },
  7884. foot: {
  7885. height: math.unit(1.29, "feet"),
  7886. name: "Foot",
  7887. image: {
  7888. source: "./media/characters/coffee/foot.svg"
  7889. }
  7890. },
  7891. },
  7892. [
  7893. {
  7894. name: "Micro",
  7895. height: math.unit(2, "inches"),
  7896. },
  7897. {
  7898. name: "Normal",
  7899. height: math.unit(5 + 9 / 12, "feet"),
  7900. default: true
  7901. },
  7902. {
  7903. name: "Macro",
  7904. height: math.unit(800, "feet")
  7905. },
  7906. {
  7907. name: "Megamacro",
  7908. height: math.unit(25, "miles")
  7909. }
  7910. ]
  7911. ))
  7912. characterMakers.push(() => makeCharacter(
  7913. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7914. {
  7915. front: {
  7916. height: math.unit(6, "feet"),
  7917. weight: math.unit(200, "lbs"),
  7918. name: "Front",
  7919. image: {
  7920. source: "./media/characters/chari-gal/front.svg",
  7921. extra: 1568 / 1385,
  7922. bottom: 0.047
  7923. }
  7924. },
  7925. gigantamax: {
  7926. height: math.unit(6 * 16, "feet"),
  7927. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7928. name: "Gigantamax",
  7929. image: {
  7930. source: "./media/characters/chari-gal/gigantamax.svg",
  7931. extra: 1124 / 888,
  7932. bottom: 0.03
  7933. }
  7934. },
  7935. },
  7936. [
  7937. {
  7938. name: "Normal",
  7939. height: math.unit(5 + 7 / 12, "feet")
  7940. },
  7941. {
  7942. name: "Macro",
  7943. height: math.unit(200, "feet"),
  7944. default: true
  7945. }
  7946. ]
  7947. ))
  7948. characterMakers.push(() => makeCharacter(
  7949. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7950. {
  7951. front: {
  7952. height: math.unit(6, "feet"),
  7953. weight: math.unit(150, "lbs"),
  7954. name: "Front",
  7955. image: {
  7956. source: "./media/characters/nova/front.svg",
  7957. extra: 5000 / 4722,
  7958. bottom: 0.02
  7959. }
  7960. }
  7961. },
  7962. [
  7963. {
  7964. name: "Micro-",
  7965. height: math.unit(0.8, "inches")
  7966. },
  7967. {
  7968. name: "Micro",
  7969. height: math.unit(2, "inches"),
  7970. default: true
  7971. },
  7972. ]
  7973. ))
  7974. characterMakers.push(() => makeCharacter(
  7975. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7976. {
  7977. front: {
  7978. height: math.unit(3 + 1 / 12, "feet"),
  7979. weight: math.unit(21.7, "lbs"),
  7980. name: "Front",
  7981. image: {
  7982. source: "./media/characters/argent/front.svg",
  7983. extra: 1471 / 1331,
  7984. bottom: 100.8 / 1575.5
  7985. }
  7986. }
  7987. },
  7988. [
  7989. {
  7990. name: "Micro",
  7991. height: math.unit(2, "inches")
  7992. },
  7993. {
  7994. name: "Normal",
  7995. height: math.unit(3 + 1 / 12, "feet"),
  7996. default: true
  7997. },
  7998. {
  7999. name: "Macro",
  8000. height: math.unit(120, "feet")
  8001. },
  8002. ]
  8003. ))
  8004. characterMakers.push(() => makeCharacter(
  8005. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8006. {
  8007. lamp: {
  8008. height: math.unit(7 * 1559 / 989, "feet"),
  8009. name: "Magic Lamp",
  8010. image: {
  8011. source: "./media/characters/mira-al-cul/lamp.svg",
  8012. extra: 1617 / 1559
  8013. }
  8014. },
  8015. front: {
  8016. height: math.unit(7, "feet"),
  8017. name: "Front",
  8018. image: {
  8019. source: "./media/characters/mira-al-cul/front.svg",
  8020. extra: 1044 / 990
  8021. }
  8022. },
  8023. },
  8024. [
  8025. {
  8026. name: "Heavily Restricted",
  8027. height: math.unit(7 * 1559 / 989, "feet")
  8028. },
  8029. {
  8030. name: "Freshly Freed",
  8031. height: math.unit(50 * 1559 / 989, "feet")
  8032. },
  8033. {
  8034. name: "World Encompassing",
  8035. height: math.unit(10000 * 1559 / 989, "miles")
  8036. },
  8037. {
  8038. name: "Galactic",
  8039. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8040. },
  8041. {
  8042. name: "Palmed Universe",
  8043. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8044. default: true
  8045. },
  8046. {
  8047. name: "Multiversal Matriarch",
  8048. height: math.unit(8.87e10, "yottameters")
  8049. },
  8050. {
  8051. name: "Void Mother",
  8052. height: math.unit(3.14e110, "yottaparsecs")
  8053. },
  8054. {
  8055. name: "Toying with Transcendence",
  8056. height: math.unit(1e307, "meters")
  8057. },
  8058. ]
  8059. ))
  8060. characterMakers.push(() => makeCharacter(
  8061. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8062. {
  8063. front: {
  8064. height: math.unit(17 + 1 / 12, "feet"),
  8065. weight: math.unit(476.2 * 5, "lbs"),
  8066. name: "Front",
  8067. image: {
  8068. source: "./media/characters/kuro-shi-uchū/front.svg",
  8069. extra: 2329 / 1835,
  8070. bottom: 0.02
  8071. }
  8072. },
  8073. },
  8074. [
  8075. {
  8076. name: "Micro",
  8077. height: math.unit(2, "inches")
  8078. },
  8079. {
  8080. name: "Normal",
  8081. height: math.unit(12, "meters")
  8082. },
  8083. {
  8084. name: "Planetary",
  8085. height: math.unit(0.00929, "AU"),
  8086. default: true
  8087. },
  8088. {
  8089. name: "Universal",
  8090. height: math.unit(20, "gigaparsecs")
  8091. },
  8092. ]
  8093. ))
  8094. characterMakers.push(() => makeCharacter(
  8095. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8096. {
  8097. front: {
  8098. height: math.unit(5 + 2 / 12, "feet"),
  8099. weight: math.unit(120, "lbs"),
  8100. name: "Front",
  8101. image: {
  8102. source: "./media/characters/katherine/front.svg",
  8103. extra: 2075 / 1969
  8104. }
  8105. },
  8106. dress: {
  8107. height: math.unit(5 + 2 / 12, "feet"),
  8108. weight: math.unit(120, "lbs"),
  8109. name: "Dress",
  8110. image: {
  8111. source: "./media/characters/katherine/dress.svg",
  8112. extra: 2258 / 2064
  8113. }
  8114. },
  8115. },
  8116. [
  8117. {
  8118. name: "Micro",
  8119. height: math.unit(1, "inches"),
  8120. default: true
  8121. },
  8122. {
  8123. name: "Normal",
  8124. height: math.unit(5 + 2 / 12, "feet")
  8125. },
  8126. {
  8127. name: "Macro",
  8128. height: math.unit(100, "meters")
  8129. },
  8130. {
  8131. name: "Megamacro",
  8132. height: math.unit(80, "miles")
  8133. },
  8134. ]
  8135. ))
  8136. characterMakers.push(() => makeCharacter(
  8137. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8138. {
  8139. front: {
  8140. height: math.unit(7 + 8 / 12, "feet"),
  8141. weight: math.unit(250, "lbs"),
  8142. name: "Front",
  8143. image: {
  8144. source: "./media/characters/yevis/front.svg",
  8145. extra: 1938 / 1755
  8146. }
  8147. }
  8148. },
  8149. [
  8150. {
  8151. name: "Mortal",
  8152. height: math.unit(7 + 8 / 12, "feet")
  8153. },
  8154. {
  8155. name: "Battle",
  8156. height: math.unit(25 + 11 / 12, "feet")
  8157. },
  8158. {
  8159. name: "Wrath",
  8160. height: math.unit(1654 + 11 / 12, "feet")
  8161. },
  8162. {
  8163. name: "Planet Destroyer",
  8164. height: math.unit(12000, "miles")
  8165. },
  8166. {
  8167. name: "Galaxy Conqueror",
  8168. height: math.unit(1.45, "zettameters"),
  8169. default: true
  8170. },
  8171. {
  8172. name: "Universal War",
  8173. height: math.unit(184, "gigaparsecs")
  8174. },
  8175. {
  8176. name: "Eternity War",
  8177. height: math.unit(1.98e55, "yottaparsecs")
  8178. },
  8179. ]
  8180. ))
  8181. characterMakers.push(() => makeCharacter(
  8182. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8183. {
  8184. front: {
  8185. height: math.unit(5 + 8 / 12, "feet"),
  8186. weight: math.unit(63, "kg"),
  8187. name: "Front",
  8188. image: {
  8189. source: "./media/characters/xavier/front.svg",
  8190. extra: 944 / 883
  8191. }
  8192. },
  8193. frontStretch: {
  8194. height: math.unit(5 + 8 / 12, "feet"),
  8195. weight: math.unit(63, "kg"),
  8196. name: "Stretching",
  8197. image: {
  8198. source: "./media/characters/xavier/front-stretch.svg",
  8199. extra: 962 / 820
  8200. }
  8201. },
  8202. },
  8203. [
  8204. {
  8205. name: "Normal",
  8206. height: math.unit(5 + 8 / 12, "feet")
  8207. },
  8208. {
  8209. name: "Macro",
  8210. height: math.unit(100, "meters"),
  8211. default: true
  8212. },
  8213. {
  8214. name: "McLargeHuge",
  8215. height: math.unit(10, "miles")
  8216. },
  8217. ]
  8218. ))
  8219. characterMakers.push(() => makeCharacter(
  8220. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8221. {
  8222. front: {
  8223. height: math.unit(5 + 5 / 12, "feet"),
  8224. weight: math.unit(150, "lb"),
  8225. name: "Front",
  8226. image: {
  8227. source: "./media/characters/joshii/front.svg",
  8228. extra: 765 / 653,
  8229. bottom: 51 / 816
  8230. }
  8231. },
  8232. foot: {
  8233. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8234. name: "Foot",
  8235. image: {
  8236. source: "./media/characters/joshii/foot.svg"
  8237. }
  8238. },
  8239. },
  8240. [
  8241. {
  8242. name: "Micro",
  8243. height: math.unit(2, "inches"),
  8244. default: true
  8245. },
  8246. {
  8247. name: "Normal",
  8248. height: math.unit(5 + 5 / 12, "feet")
  8249. },
  8250. {
  8251. name: "Macro",
  8252. height: math.unit(785, "feet")
  8253. },
  8254. {
  8255. name: "Megamacro",
  8256. height: math.unit(24.5, "miles")
  8257. },
  8258. ]
  8259. ))
  8260. characterMakers.push(() => makeCharacter(
  8261. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8262. {
  8263. front: {
  8264. height: math.unit(6, "feet"),
  8265. weight: math.unit(150, "lb"),
  8266. name: "Front",
  8267. image: {
  8268. source: "./media/characters/goddess-elizabeth/front.svg",
  8269. extra: 1800 / 1525,
  8270. bottom: 0.005
  8271. }
  8272. },
  8273. foot: {
  8274. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8275. name: "Foot",
  8276. image: {
  8277. source: "./media/characters/goddess-elizabeth/foot.svg"
  8278. }
  8279. },
  8280. mouth: {
  8281. height: math.unit(6, "feet"),
  8282. name: "Mouth",
  8283. image: {
  8284. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8285. }
  8286. },
  8287. },
  8288. [
  8289. {
  8290. name: "Micro",
  8291. height: math.unit(12, "feet")
  8292. },
  8293. {
  8294. name: "Normal",
  8295. height: math.unit(80, "miles"),
  8296. default: true
  8297. },
  8298. {
  8299. name: "Macro",
  8300. height: math.unit(15000, "parsecs")
  8301. },
  8302. ]
  8303. ))
  8304. characterMakers.push(() => makeCharacter(
  8305. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8306. {
  8307. front: {
  8308. height: math.unit(5 + 9 / 12, "feet"),
  8309. weight: math.unit(144, "lb"),
  8310. name: "Front",
  8311. image: {
  8312. source: "./media/characters/kara/front.svg"
  8313. }
  8314. },
  8315. feet: {
  8316. height: math.unit(6 / 6.765, "feet"),
  8317. name: "Kara's Feet",
  8318. rename: true,
  8319. image: {
  8320. source: "./media/characters/kara/feet.svg"
  8321. }
  8322. },
  8323. },
  8324. [
  8325. {
  8326. name: "Normal",
  8327. height: math.unit(5 + 9 / 12, "feet")
  8328. },
  8329. {
  8330. name: "Macro",
  8331. height: math.unit(174, "feet"),
  8332. default: true
  8333. },
  8334. ]
  8335. ))
  8336. characterMakers.push(() => makeCharacter(
  8337. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8338. {
  8339. front: {
  8340. height: math.unit(18, "feet"),
  8341. weight: math.unit(4050, "lb"),
  8342. name: "Front",
  8343. image: {
  8344. source: "./media/characters/tyrone/front.svg",
  8345. extra: 2405 / 2270,
  8346. bottom: 182 / 2587
  8347. }
  8348. },
  8349. },
  8350. [
  8351. {
  8352. name: "Normal",
  8353. height: math.unit(18, "feet"),
  8354. default: true
  8355. },
  8356. {
  8357. name: "Macro",
  8358. height: math.unit(300, "feet")
  8359. },
  8360. {
  8361. name: "Megamacro",
  8362. height: math.unit(15, "km")
  8363. },
  8364. {
  8365. name: "Gigamacro",
  8366. height: math.unit(500, "km")
  8367. },
  8368. {
  8369. name: "Teramacro",
  8370. height: math.unit(0.5, "gigameters")
  8371. },
  8372. {
  8373. name: "Omnimacro",
  8374. height: math.unit(1e252, "yottauniverse")
  8375. },
  8376. ]
  8377. ))
  8378. characterMakers.push(() => makeCharacter(
  8379. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8380. {
  8381. front: {
  8382. height: math.unit(7 + 8 / 12, "feet"),
  8383. weight: math.unit(120, "lb"),
  8384. name: "Front",
  8385. image: {
  8386. source: "./media/characters/danny/front.svg",
  8387. extra: 1490 / 1350
  8388. }
  8389. },
  8390. back: {
  8391. height: math.unit(7 + 8 / 12, "feet"),
  8392. weight: math.unit(120, "lb"),
  8393. name: "Back",
  8394. image: {
  8395. source: "./media/characters/danny/back.svg",
  8396. extra: 1490 / 1350
  8397. }
  8398. },
  8399. },
  8400. [
  8401. {
  8402. name: "Normal",
  8403. height: math.unit(7 + 8 / 12, "feet"),
  8404. default: true
  8405. },
  8406. ]
  8407. ))
  8408. characterMakers.push(() => makeCharacter(
  8409. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8410. {
  8411. front: {
  8412. height: math.unit(3.5, "inches"),
  8413. weight: math.unit(19, "grams"),
  8414. name: "Front",
  8415. image: {
  8416. source: "./media/characters/mallow/front.svg",
  8417. extra: 471 / 431
  8418. }
  8419. },
  8420. back: {
  8421. height: math.unit(3.5, "inches"),
  8422. weight: math.unit(19, "grams"),
  8423. name: "Back",
  8424. image: {
  8425. source: "./media/characters/mallow/back.svg",
  8426. extra: 471 / 431
  8427. }
  8428. },
  8429. },
  8430. [
  8431. {
  8432. name: "Normal",
  8433. height: math.unit(3.5, "inches"),
  8434. default: true
  8435. },
  8436. ]
  8437. ))
  8438. characterMakers.push(() => makeCharacter(
  8439. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8440. {
  8441. front: {
  8442. height: math.unit(9, "feet"),
  8443. weight: math.unit(230, "kg"),
  8444. name: "Front",
  8445. image: {
  8446. source: "./media/characters/starry-aqua/front.svg"
  8447. }
  8448. },
  8449. back: {
  8450. height: math.unit(9, "feet"),
  8451. weight: math.unit(230, "kg"),
  8452. name: "Back",
  8453. image: {
  8454. source: "./media/characters/starry-aqua/back.svg"
  8455. }
  8456. },
  8457. hand: {
  8458. height: math.unit(9 * 0.1168, "feet"),
  8459. name: "Hand",
  8460. image: {
  8461. source: "./media/characters/starry-aqua/hand.svg"
  8462. }
  8463. },
  8464. foot: {
  8465. height: math.unit(9 * 0.18, "feet"),
  8466. name: "Foot",
  8467. image: {
  8468. source: "./media/characters/starry-aqua/foot.svg"
  8469. }
  8470. }
  8471. },
  8472. [
  8473. {
  8474. name: "Micro",
  8475. height: math.unit(3, "inches")
  8476. },
  8477. {
  8478. name: "Normal",
  8479. height: math.unit(9, "feet")
  8480. },
  8481. {
  8482. name: "Macro",
  8483. height: math.unit(300, "feet"),
  8484. default: true
  8485. },
  8486. {
  8487. name: "Megamacro",
  8488. height: math.unit(3200, "feet")
  8489. }
  8490. ]
  8491. ))
  8492. characterMakers.push(() => makeCharacter(
  8493. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8494. {
  8495. front: {
  8496. height: math.unit(6, "feet"),
  8497. weight: math.unit(230, "lb"),
  8498. name: "Front",
  8499. image: {
  8500. source: "./media/characters/luka/front.svg",
  8501. extra: 1,
  8502. bottom: 0.025
  8503. }
  8504. },
  8505. },
  8506. [
  8507. {
  8508. name: "Normal",
  8509. height: math.unit(12 + 8 / 12, "feet"),
  8510. default: true
  8511. },
  8512. {
  8513. name: "Minimacro",
  8514. height: math.unit(20, "feet")
  8515. },
  8516. {
  8517. name: "Macro",
  8518. height: math.unit(250, "feet")
  8519. },
  8520. {
  8521. name: "Megamacro",
  8522. height: math.unit(5, "miles")
  8523. },
  8524. {
  8525. name: "Gigamacro",
  8526. height: math.unit(8000, "miles")
  8527. },
  8528. ]
  8529. ))
  8530. characterMakers.push(() => makeCharacter(
  8531. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8532. {
  8533. front: {
  8534. height: math.unit(6, "feet"),
  8535. weight: math.unit(150, "lb"),
  8536. name: "Front",
  8537. image: {
  8538. source: "./media/characters/natalie-nightring/front.svg",
  8539. extra: 1,
  8540. bottom: 0.06
  8541. }
  8542. },
  8543. },
  8544. [
  8545. {
  8546. name: "Uh Oh",
  8547. height: math.unit(0.1, "mm")
  8548. },
  8549. {
  8550. name: "Small",
  8551. height: math.unit(3, "inches")
  8552. },
  8553. {
  8554. name: "Human Scale",
  8555. height: math.unit(6, "feet")
  8556. },
  8557. {
  8558. name: "Librarian",
  8559. height: math.unit(50, "feet"),
  8560. default: true
  8561. },
  8562. {
  8563. name: "Immense",
  8564. height: math.unit(200, "miles")
  8565. },
  8566. ]
  8567. ))
  8568. characterMakers.push(() => makeCharacter(
  8569. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8570. {
  8571. front: {
  8572. height: math.unit(6, "feet"),
  8573. weight: math.unit(180, "lbs"),
  8574. name: "Front",
  8575. image: {
  8576. source: "./media/characters/danni-rosie/front.svg",
  8577. extra: 1260 / 1128,
  8578. bottom: 0.022
  8579. }
  8580. },
  8581. },
  8582. [
  8583. {
  8584. name: "Micro",
  8585. height: math.unit(2, "inches"),
  8586. default: true
  8587. },
  8588. ]
  8589. ))
  8590. characterMakers.push(() => makeCharacter(
  8591. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8592. {
  8593. front: {
  8594. height: math.unit(5 + 9 / 12, "feet"),
  8595. weight: math.unit(220, "lb"),
  8596. name: "Front",
  8597. image: {
  8598. source: "./media/characters/samantha-kruse/front.svg",
  8599. extra: (985 / 935),
  8600. bottom: 0.03
  8601. }
  8602. },
  8603. frontUndressed: {
  8604. height: math.unit(5 + 9 / 12, "feet"),
  8605. weight: math.unit(220, "lb"),
  8606. name: "Front (Undressed)",
  8607. image: {
  8608. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8609. extra: (973 / 923),
  8610. bottom: 0.025
  8611. }
  8612. },
  8613. fat: {
  8614. height: math.unit(5 + 9 / 12, "feet"),
  8615. weight: math.unit(900, "lb"),
  8616. name: "Front (Fat)",
  8617. image: {
  8618. source: "./media/characters/samantha-kruse/fat.svg",
  8619. extra: 2688 / 2561
  8620. }
  8621. },
  8622. },
  8623. [
  8624. {
  8625. name: "Normal",
  8626. height: math.unit(5 + 9 / 12, "feet"),
  8627. default: true
  8628. }
  8629. ]
  8630. ))
  8631. characterMakers.push(() => makeCharacter(
  8632. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8633. {
  8634. back: {
  8635. height: math.unit(5 + 4 / 12, "feet"),
  8636. weight: math.unit(4963, "lb"),
  8637. name: "Back",
  8638. image: {
  8639. source: "./media/characters/amelia-rosie/back.svg",
  8640. extra: 1113 / 963,
  8641. bottom: 0.01
  8642. }
  8643. },
  8644. },
  8645. [
  8646. {
  8647. name: "Level 0",
  8648. height: math.unit(5 + 4 / 12, "feet")
  8649. },
  8650. {
  8651. name: "Level 1",
  8652. height: math.unit(164597, "feet"),
  8653. default: true
  8654. },
  8655. {
  8656. name: "Level 2",
  8657. height: math.unit(956243, "miles")
  8658. },
  8659. {
  8660. name: "Level 3",
  8661. height: math.unit(29421709423, "miles")
  8662. },
  8663. {
  8664. name: "Level 4",
  8665. height: math.unit(154, "lightyears")
  8666. },
  8667. {
  8668. name: "Level 5",
  8669. height: math.unit(4738272, "lightyears")
  8670. },
  8671. {
  8672. name: "Level 6",
  8673. height: math.unit(145787152896, "lightyears")
  8674. },
  8675. ]
  8676. ))
  8677. characterMakers.push(() => makeCharacter(
  8678. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8679. {
  8680. front: {
  8681. height: math.unit(5 + 11 / 12, "feet"),
  8682. weight: math.unit(65, "kg"),
  8683. name: "Front",
  8684. image: {
  8685. source: "./media/characters/rook-kitara/front.svg",
  8686. extra: 1347 / 1274,
  8687. bottom: 0.005
  8688. }
  8689. },
  8690. },
  8691. [
  8692. {
  8693. name: "Totally Unfair",
  8694. height: math.unit(1.8, "mm")
  8695. },
  8696. {
  8697. name: "Lap Rookie",
  8698. height: math.unit(1.4, "feet")
  8699. },
  8700. {
  8701. name: "Normal",
  8702. height: math.unit(5 + 11 / 12, "feet"),
  8703. default: true
  8704. },
  8705. {
  8706. name: "How Did This Happen",
  8707. height: math.unit(80, "miles")
  8708. }
  8709. ]
  8710. ))
  8711. characterMakers.push(() => makeCharacter(
  8712. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8713. {
  8714. front: {
  8715. height: math.unit(7, "feet"),
  8716. weight: math.unit(300, "lb"),
  8717. name: "Front",
  8718. image: {
  8719. source: "./media/characters/pisces/front.svg",
  8720. extra: 2255 / 2115,
  8721. bottom: 0.03
  8722. }
  8723. },
  8724. back: {
  8725. height: math.unit(7, "feet"),
  8726. weight: math.unit(300, "lb"),
  8727. name: "Back",
  8728. image: {
  8729. source: "./media/characters/pisces/back.svg",
  8730. extra: 2146 / 2055,
  8731. bottom: 0.04
  8732. }
  8733. },
  8734. },
  8735. [
  8736. {
  8737. name: "Normal",
  8738. height: math.unit(7, "feet"),
  8739. default: true
  8740. },
  8741. {
  8742. name: "Swimming Pool",
  8743. height: math.unit(12.2, "meters")
  8744. },
  8745. {
  8746. name: "Olympic Swimming Pool",
  8747. height: math.unit(56.3, "meters")
  8748. },
  8749. {
  8750. name: "Lake Superior",
  8751. height: math.unit(93900, "meters")
  8752. },
  8753. {
  8754. name: "Mediterranean Sea",
  8755. height: math.unit(644457, "meters")
  8756. },
  8757. {
  8758. name: "World's Oceans",
  8759. height: math.unit(4567491, "meters")
  8760. },
  8761. ]
  8762. ))
  8763. characterMakers.push(() => makeCharacter(
  8764. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8765. {
  8766. front: {
  8767. height: math.unit(2.3, "meters"),
  8768. weight: math.unit(120, "kg"),
  8769. name: "Front",
  8770. image: {
  8771. source: "./media/characters/zelas/front.svg"
  8772. }
  8773. },
  8774. side: {
  8775. height: math.unit(2.3, "meters"),
  8776. weight: math.unit(120, "kg"),
  8777. name: "Side",
  8778. image: {
  8779. source: "./media/characters/zelas/side.svg"
  8780. }
  8781. },
  8782. back: {
  8783. height: math.unit(2.3, "meters"),
  8784. weight: math.unit(120, "kg"),
  8785. name: "Back",
  8786. image: {
  8787. source: "./media/characters/zelas/back.svg"
  8788. }
  8789. },
  8790. foot: {
  8791. height: math.unit(1.116, "feet"),
  8792. name: "Foot",
  8793. image: {
  8794. source: "./media/characters/zelas/foot.svg"
  8795. }
  8796. },
  8797. },
  8798. [
  8799. {
  8800. name: "Normal",
  8801. height: math.unit(2.3, "meters")
  8802. },
  8803. {
  8804. name: "Macro",
  8805. height: math.unit(30, "meters"),
  8806. default: true
  8807. },
  8808. ]
  8809. ))
  8810. characterMakers.push(() => makeCharacter(
  8811. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8812. {
  8813. front: {
  8814. height: math.unit(1, "inch"),
  8815. weight: math.unit(0.21, "grams"),
  8816. name: "Front",
  8817. image: {
  8818. source: "./media/characters/talbot/front.svg",
  8819. extra: 594 / 544
  8820. }
  8821. },
  8822. },
  8823. [
  8824. {
  8825. name: "Micro",
  8826. height: math.unit(1, "inch"),
  8827. default: true
  8828. },
  8829. ]
  8830. ))
  8831. characterMakers.push(() => makeCharacter(
  8832. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8833. {
  8834. front: {
  8835. height: math.unit(3 + 3 / 12, "feet"),
  8836. weight: math.unit(51.8, "lb"),
  8837. name: "Front",
  8838. image: {
  8839. source: "./media/characters/fliss/front.svg",
  8840. extra: 840 / 640
  8841. }
  8842. },
  8843. },
  8844. [
  8845. {
  8846. name: "Teeny Tiny",
  8847. height: math.unit(1, "mm")
  8848. },
  8849. {
  8850. name: "Small",
  8851. height: math.unit(1, "inch"),
  8852. default: true
  8853. },
  8854. {
  8855. name: "Standard Sylveon",
  8856. height: math.unit(3 + 3 / 12, "feet")
  8857. },
  8858. {
  8859. name: "Large Nuisance",
  8860. height: math.unit(33, "feet")
  8861. },
  8862. {
  8863. name: "City Filler",
  8864. height: math.unit(3000, "feet")
  8865. },
  8866. {
  8867. name: "New Horizon",
  8868. height: math.unit(6000, "miles")
  8869. },
  8870. ]
  8871. ))
  8872. characterMakers.push(() => makeCharacter(
  8873. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8874. {
  8875. front: {
  8876. height: math.unit(5, "cm"),
  8877. weight: math.unit(1.94, "g"),
  8878. name: "Front",
  8879. image: {
  8880. source: "./media/characters/fleta/front.svg",
  8881. extra: 835 / 803
  8882. }
  8883. },
  8884. back: {
  8885. height: math.unit(5, "cm"),
  8886. weight: math.unit(1.94, "g"),
  8887. name: "Back",
  8888. image: {
  8889. source: "./media/characters/fleta/back.svg",
  8890. extra: 835 / 803
  8891. }
  8892. },
  8893. },
  8894. [
  8895. {
  8896. name: "Micro",
  8897. height: math.unit(5, "cm"),
  8898. default: true
  8899. },
  8900. ]
  8901. ))
  8902. characterMakers.push(() => makeCharacter(
  8903. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8904. {
  8905. front: {
  8906. height: math.unit(6, "feet"),
  8907. weight: math.unit(225, "lb"),
  8908. name: "Front",
  8909. image: {
  8910. source: "./media/characters/dominic/front.svg",
  8911. extra: 1770 / 1620,
  8912. bottom: 0.025
  8913. }
  8914. },
  8915. back: {
  8916. height: math.unit(6, "feet"),
  8917. weight: math.unit(225, "lb"),
  8918. name: "Back",
  8919. image: {
  8920. source: "./media/characters/dominic/back.svg",
  8921. extra: 1745 / 1620,
  8922. bottom: 0.065
  8923. }
  8924. },
  8925. },
  8926. [
  8927. {
  8928. name: "Nano",
  8929. height: math.unit(0.1, "mm")
  8930. },
  8931. {
  8932. name: "Micro-",
  8933. height: math.unit(1, "mm")
  8934. },
  8935. {
  8936. name: "Micro",
  8937. height: math.unit(4, "inches")
  8938. },
  8939. {
  8940. name: "Normal",
  8941. height: math.unit(6 + 4 / 12, "feet"),
  8942. default: true
  8943. },
  8944. {
  8945. name: "Macro",
  8946. height: math.unit(115, "feet")
  8947. },
  8948. {
  8949. name: "Macro+",
  8950. height: math.unit(955, "feet")
  8951. },
  8952. {
  8953. name: "Megamacro",
  8954. height: math.unit(8990, "feet")
  8955. },
  8956. {
  8957. name: "Gigmacro",
  8958. height: math.unit(9310, "miles")
  8959. },
  8960. {
  8961. name: "Teramacro",
  8962. height: math.unit(1567005010, "miles")
  8963. },
  8964. {
  8965. name: "Examacro",
  8966. height: math.unit(1425, "parsecs")
  8967. },
  8968. ]
  8969. ))
  8970. characterMakers.push(() => makeCharacter(
  8971. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8972. {
  8973. front: {
  8974. height: math.unit(400, "feet"),
  8975. weight: math.unit(44444444, "lb"),
  8976. name: "Front",
  8977. image: {
  8978. source: "./media/characters/major-colonel/front.svg"
  8979. }
  8980. },
  8981. back: {
  8982. height: math.unit(400, "feet"),
  8983. weight: math.unit(44444444, "lb"),
  8984. name: "Back",
  8985. image: {
  8986. source: "./media/characters/major-colonel/back.svg"
  8987. }
  8988. },
  8989. },
  8990. [
  8991. {
  8992. name: "Macro",
  8993. height: math.unit(400, "feet"),
  8994. default: true
  8995. },
  8996. ]
  8997. ))
  8998. characterMakers.push(() => makeCharacter(
  8999. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9000. {
  9001. catFront: {
  9002. height: math.unit(6, "feet"),
  9003. weight: math.unit(120, "lb"),
  9004. name: "Front (Cat Side)",
  9005. image: {
  9006. source: "./media/characters/axel-lycan/cat-front.svg",
  9007. extra: 430 / 402,
  9008. bottom: 43 / 472.35
  9009. }
  9010. },
  9011. catBack: {
  9012. height: math.unit(6, "feet"),
  9013. weight: math.unit(120, "lb"),
  9014. name: "Back (Cat Side)",
  9015. image: {
  9016. source: "./media/characters/axel-lycan/cat-back.svg",
  9017. extra: 447 / 419,
  9018. bottom: 23.3 / 469
  9019. }
  9020. },
  9021. wolfFront: {
  9022. height: math.unit(6, "feet"),
  9023. weight: math.unit(120, "lb"),
  9024. name: "Front (Wolf Side)",
  9025. image: {
  9026. source: "./media/characters/axel-lycan/wolf-front.svg",
  9027. extra: 485 / 456,
  9028. bottom: 19 / 504
  9029. }
  9030. },
  9031. wolfBack: {
  9032. height: math.unit(6, "feet"),
  9033. weight: math.unit(120, "lb"),
  9034. name: "Back (Wolf Side)",
  9035. image: {
  9036. source: "./media/characters/axel-lycan/wolf-back.svg",
  9037. extra: 475 / 438,
  9038. bottom: 39.2 / 514
  9039. }
  9040. },
  9041. },
  9042. [
  9043. {
  9044. name: "Macro",
  9045. height: math.unit(1, "km"),
  9046. default: true
  9047. },
  9048. ]
  9049. ))
  9050. characterMakers.push(() => makeCharacter(
  9051. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9052. {
  9053. front: {
  9054. height: math.unit(5 + 9 / 12, "feet"),
  9055. weight: math.unit(175, "lb"),
  9056. name: "Front",
  9057. image: {
  9058. source: "./media/characters/vanrel-hyena/front.svg",
  9059. extra: 1086 / 1010,
  9060. bottom: 0.04
  9061. }
  9062. },
  9063. },
  9064. [
  9065. {
  9066. name: "Normal",
  9067. height: math.unit(5 + 9 / 12, "feet"),
  9068. default: true
  9069. },
  9070. ]
  9071. ))
  9072. characterMakers.push(() => makeCharacter(
  9073. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9074. {
  9075. front: {
  9076. height: math.unit(6, "feet"),
  9077. weight: math.unit(103, "lb"),
  9078. name: "Front",
  9079. image: {
  9080. source: "./media/characters/abbott-absol/front.svg",
  9081. extra: 2010 / 1842
  9082. }
  9083. },
  9084. },
  9085. [
  9086. {
  9087. name: "Megamicro",
  9088. height: math.unit(0.1, "mm")
  9089. },
  9090. {
  9091. name: "Micro",
  9092. height: math.unit(1, "inch")
  9093. },
  9094. {
  9095. name: "Normal",
  9096. height: math.unit(6, "feet"),
  9097. default: true
  9098. },
  9099. ]
  9100. ))
  9101. characterMakers.push(() => makeCharacter(
  9102. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9103. {
  9104. front: {
  9105. height: math.unit(6, "feet"),
  9106. weight: math.unit(264, "lb"),
  9107. name: "Front",
  9108. image: {
  9109. source: "./media/characters/hector/front.svg",
  9110. extra: 2280 / 2130,
  9111. bottom: 0.07
  9112. }
  9113. },
  9114. },
  9115. [
  9116. {
  9117. name: "Normal",
  9118. height: math.unit(12.25, "foot"),
  9119. default: true
  9120. },
  9121. {
  9122. name: "Macro",
  9123. height: math.unit(160, "feet")
  9124. },
  9125. ]
  9126. ))
  9127. characterMakers.push(() => makeCharacter(
  9128. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9129. {
  9130. front: {
  9131. height: math.unit(6, "feet"),
  9132. weight: math.unit(150, "lb"),
  9133. name: "Front",
  9134. image: {
  9135. source: "./media/characters/sal/front.svg",
  9136. extra: 1846 / 1699,
  9137. bottom: 0.04
  9138. }
  9139. },
  9140. },
  9141. [
  9142. {
  9143. name: "Megamacro",
  9144. height: math.unit(10, "miles"),
  9145. default: true
  9146. },
  9147. ]
  9148. ))
  9149. characterMakers.push(() => makeCharacter(
  9150. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9151. {
  9152. front: {
  9153. height: math.unit(3, "meters"),
  9154. weight: math.unit(450, "kg"),
  9155. name: "front",
  9156. image: {
  9157. source: "./media/characters/ranger/front.svg",
  9158. extra: 2401 / 2243,
  9159. bottom: 0.05
  9160. }
  9161. },
  9162. },
  9163. [
  9164. {
  9165. name: "Normal",
  9166. height: math.unit(3, "meters"),
  9167. default: true
  9168. },
  9169. ]
  9170. ))
  9171. characterMakers.push(() => makeCharacter(
  9172. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9173. {
  9174. front: {
  9175. height: math.unit(14, "feet"),
  9176. weight: math.unit(800, "kg"),
  9177. name: "Front",
  9178. image: {
  9179. source: "./media/characters/theresa/front.svg",
  9180. extra: 3575 / 3346,
  9181. bottom: 0.03
  9182. }
  9183. },
  9184. },
  9185. [
  9186. {
  9187. name: "Normal",
  9188. height: math.unit(14, "feet"),
  9189. default: true
  9190. },
  9191. ]
  9192. ))
  9193. characterMakers.push(() => makeCharacter(
  9194. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9195. {
  9196. front: {
  9197. height: math.unit(6, "feet"),
  9198. weight: math.unit(3, "kg"),
  9199. name: "Front",
  9200. image: {
  9201. source: "./media/characters/ine/front.svg",
  9202. extra: 678 / 539,
  9203. bottom: 0.023
  9204. }
  9205. },
  9206. },
  9207. [
  9208. {
  9209. name: "Normal",
  9210. height: math.unit(2.265, "feet"),
  9211. default: true
  9212. },
  9213. ]
  9214. ))
  9215. characterMakers.push(() => makeCharacter(
  9216. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9217. {
  9218. front: {
  9219. height: math.unit(5, "feet"),
  9220. weight: math.unit(30, "kg"),
  9221. name: "Front",
  9222. image: {
  9223. source: "./media/characters/vial/front.svg",
  9224. extra: 1365 / 1277,
  9225. bottom: 0.04
  9226. }
  9227. },
  9228. },
  9229. [
  9230. {
  9231. name: "Normal",
  9232. height: math.unit(5, "feet"),
  9233. default: true
  9234. },
  9235. ]
  9236. ))
  9237. characterMakers.push(() => makeCharacter(
  9238. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9239. {
  9240. side: {
  9241. height: math.unit(3.4, "meters"),
  9242. weight: math.unit(1000, "lb"),
  9243. name: "Side",
  9244. image: {
  9245. source: "./media/characters/rovoska/side.svg",
  9246. extra: 4403 / 1515
  9247. }
  9248. },
  9249. },
  9250. [
  9251. {
  9252. name: "Normal",
  9253. height: math.unit(3.4, "meters"),
  9254. default: true
  9255. },
  9256. ]
  9257. ))
  9258. characterMakers.push(() => makeCharacter(
  9259. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9260. {
  9261. front: {
  9262. height: math.unit(8, "feet"),
  9263. weight: math.unit(315, "lb"),
  9264. name: "Front",
  9265. image: {
  9266. source: "./media/characters/gunner-rotthbauer/front.svg"
  9267. }
  9268. },
  9269. back: {
  9270. height: math.unit(8, "feet"),
  9271. weight: math.unit(315, "lb"),
  9272. name: "Back",
  9273. image: {
  9274. source: "./media/characters/gunner-rotthbauer/back.svg"
  9275. }
  9276. },
  9277. },
  9278. [
  9279. {
  9280. name: "Micro",
  9281. height: math.unit(3.5, "inches")
  9282. },
  9283. {
  9284. name: "Normal",
  9285. height: math.unit(8, "feet"),
  9286. default: true
  9287. },
  9288. {
  9289. name: "Macro",
  9290. height: math.unit(250, "feet")
  9291. },
  9292. {
  9293. name: "Megamacro",
  9294. height: math.unit(1, "AU")
  9295. },
  9296. ]
  9297. ))
  9298. characterMakers.push(() => makeCharacter(
  9299. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9300. {
  9301. front: {
  9302. height: math.unit(5 + 5 / 12, "feet"),
  9303. weight: math.unit(140, "lb"),
  9304. name: "Front",
  9305. image: {
  9306. source: "./media/characters/allatia/front.svg",
  9307. extra: 1227 / 1180,
  9308. bottom: 0.027
  9309. }
  9310. },
  9311. },
  9312. [
  9313. {
  9314. name: "Normal",
  9315. height: math.unit(5 + 5 / 12, "feet")
  9316. },
  9317. {
  9318. name: "Macro",
  9319. height: math.unit(250, "feet"),
  9320. default: true
  9321. },
  9322. {
  9323. name: "Megamacro",
  9324. height: math.unit(8, "miles")
  9325. }
  9326. ]
  9327. ))
  9328. characterMakers.push(() => makeCharacter(
  9329. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9330. {
  9331. front: {
  9332. height: math.unit(6, "feet"),
  9333. weight: math.unit(120, "lb"),
  9334. name: "Front",
  9335. image: {
  9336. source: "./media/characters/tene/front.svg",
  9337. extra: 1728 / 1578,
  9338. bottom: 0.022
  9339. }
  9340. },
  9341. stomping: {
  9342. height: math.unit(2.025, "meters"),
  9343. weight: math.unit(120, "lb"),
  9344. name: "Stomping",
  9345. image: {
  9346. source: "./media/characters/tene/stomping.svg",
  9347. extra: 938 / 873,
  9348. bottom: 0.01
  9349. }
  9350. },
  9351. sitting: {
  9352. height: math.unit(1, "meter"),
  9353. weight: math.unit(120, "lb"),
  9354. name: "Sitting",
  9355. image: {
  9356. source: "./media/characters/tene/sitting.svg",
  9357. extra: 437 / 415,
  9358. bottom: 0.1
  9359. }
  9360. },
  9361. feral: {
  9362. height: math.unit(3.9, "feet"),
  9363. weight: math.unit(250, "lb"),
  9364. name: "Feral",
  9365. image: {
  9366. source: "./media/characters/tene/feral.svg",
  9367. extra: 717 / 458,
  9368. bottom: 0.179
  9369. }
  9370. },
  9371. },
  9372. [
  9373. {
  9374. name: "Normal",
  9375. height: math.unit(6, "feet")
  9376. },
  9377. {
  9378. name: "Macro",
  9379. height: math.unit(300, "feet"),
  9380. default: true
  9381. },
  9382. {
  9383. name: "Megamacro",
  9384. height: math.unit(5, "miles")
  9385. },
  9386. ]
  9387. ))
  9388. characterMakers.push(() => makeCharacter(
  9389. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9390. {
  9391. side: {
  9392. height: math.unit(6, "feet"),
  9393. name: "Side",
  9394. image: {
  9395. source: "./media/characters/evander/side.svg",
  9396. extra: 877 / 477
  9397. }
  9398. },
  9399. },
  9400. [
  9401. {
  9402. name: "Normal",
  9403. height: math.unit(0.83, "meters"),
  9404. default: true
  9405. },
  9406. ]
  9407. ))
  9408. characterMakers.push(() => makeCharacter(
  9409. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9410. {
  9411. front: {
  9412. height: math.unit(12, "feet"),
  9413. weight: math.unit(1000, "lb"),
  9414. name: "Front",
  9415. image: {
  9416. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9417. extra: 1762 / 1611
  9418. }
  9419. },
  9420. back: {
  9421. height: math.unit(12, "feet"),
  9422. weight: math.unit(1000, "lb"),
  9423. name: "Back",
  9424. image: {
  9425. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9426. extra: 1762 / 1611
  9427. }
  9428. },
  9429. },
  9430. [
  9431. {
  9432. name: "Normal",
  9433. height: math.unit(12, "feet"),
  9434. default: true
  9435. },
  9436. {
  9437. name: "Kaiju",
  9438. height: math.unit(150, "feet")
  9439. },
  9440. ]
  9441. ))
  9442. characterMakers.push(() => makeCharacter(
  9443. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9444. {
  9445. front: {
  9446. height: math.unit(6, "feet"),
  9447. weight: math.unit(150, "lb"),
  9448. name: "Front",
  9449. image: {
  9450. source: "./media/characters/zero-alurus/front.svg"
  9451. }
  9452. },
  9453. back: {
  9454. height: math.unit(6, "feet"),
  9455. weight: math.unit(150, "lb"),
  9456. name: "Back",
  9457. image: {
  9458. source: "./media/characters/zero-alurus/back.svg"
  9459. }
  9460. },
  9461. },
  9462. [
  9463. {
  9464. name: "Normal",
  9465. height: math.unit(5 + 10 / 12, "feet")
  9466. },
  9467. {
  9468. name: "Macro",
  9469. height: math.unit(60, "feet"),
  9470. default: true
  9471. },
  9472. {
  9473. name: "Macro+",
  9474. height: math.unit(450, "feet")
  9475. },
  9476. ]
  9477. ))
  9478. characterMakers.push(() => makeCharacter(
  9479. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9480. {
  9481. front: {
  9482. height: math.unit(6, "feet"),
  9483. weight: math.unit(200, "lb"),
  9484. name: "Front",
  9485. image: {
  9486. source: "./media/characters/mega-shi/front.svg",
  9487. extra: 1279 / 1250,
  9488. bottom: 0.02
  9489. }
  9490. },
  9491. back: {
  9492. height: math.unit(6, "feet"),
  9493. weight: math.unit(200, "lb"),
  9494. name: "Back",
  9495. image: {
  9496. source: "./media/characters/mega-shi/back.svg",
  9497. extra: 1279 / 1250,
  9498. bottom: 0.02
  9499. }
  9500. },
  9501. },
  9502. [
  9503. {
  9504. name: "Micro",
  9505. height: math.unit(16 + 6 / 12, "feet")
  9506. },
  9507. {
  9508. name: "Third Dimension",
  9509. height: math.unit(40, "meters")
  9510. },
  9511. {
  9512. name: "Normal",
  9513. height: math.unit(660, "feet"),
  9514. default: true
  9515. },
  9516. {
  9517. name: "Megamacro",
  9518. height: math.unit(10, "miles")
  9519. },
  9520. {
  9521. name: "Planetary Launch",
  9522. height: math.unit(500, "miles")
  9523. },
  9524. {
  9525. name: "Interstellar",
  9526. height: math.unit(1e9, "miles")
  9527. },
  9528. {
  9529. name: "Leaving the Universe",
  9530. height: math.unit(1, "gigaparsec")
  9531. },
  9532. {
  9533. name: "Travelling Universes",
  9534. height: math.unit(30e15, "parsecs")
  9535. },
  9536. ]
  9537. ))
  9538. characterMakers.push(() => makeCharacter(
  9539. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9540. {
  9541. front: {
  9542. height: math.unit(6, "feet"),
  9543. weight: math.unit(150, "lb"),
  9544. name: "Front",
  9545. image: {
  9546. source: "./media/characters/odyssey/front.svg",
  9547. extra: 1782 / 1582,
  9548. bottom: 0.01
  9549. }
  9550. },
  9551. side: {
  9552. height: math.unit(5.7, "feet"),
  9553. weight: math.unit(140, "lb"),
  9554. name: "Side",
  9555. image: {
  9556. source: "./media/characters/odyssey/side.svg",
  9557. extra: 6462 / 5700
  9558. }
  9559. },
  9560. },
  9561. [
  9562. {
  9563. name: "Normal",
  9564. height: math.unit(5 + 4 / 12, "feet")
  9565. },
  9566. {
  9567. name: "Macro",
  9568. height: math.unit(1, "km")
  9569. },
  9570. {
  9571. name: "Megamacro",
  9572. height: math.unit(3000, "km")
  9573. },
  9574. {
  9575. name: "Gigamacro",
  9576. height: math.unit(1, "AU"),
  9577. default: true
  9578. },
  9579. {
  9580. name: "Omniversal",
  9581. height: math.unit(100e14, "lightyears")
  9582. },
  9583. ]
  9584. ))
  9585. characterMakers.push(() => makeCharacter(
  9586. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9587. {
  9588. front: {
  9589. height: math.unit(6, "feet"),
  9590. weight: math.unit(300, "lb"),
  9591. name: "Front",
  9592. image: {
  9593. source: "./media/characters/mekuto/front.svg",
  9594. extra: 921 / 832,
  9595. bottom: 0.03
  9596. }
  9597. },
  9598. hand: {
  9599. height: math.unit(6 / 10.24, "feet"),
  9600. name: "Hand",
  9601. image: {
  9602. source: "./media/characters/mekuto/hand.svg"
  9603. }
  9604. },
  9605. foot: {
  9606. height: math.unit(6 / 5.05, "feet"),
  9607. name: "Foot",
  9608. image: {
  9609. source: "./media/characters/mekuto/foot.svg"
  9610. }
  9611. },
  9612. },
  9613. [
  9614. {
  9615. name: "Minimicro",
  9616. height: math.unit(0.2, "inches")
  9617. },
  9618. {
  9619. name: "Micro",
  9620. height: math.unit(1.5, "inches")
  9621. },
  9622. {
  9623. name: "Normal",
  9624. height: math.unit(5 + 11 / 12, "feet"),
  9625. default: true
  9626. },
  9627. {
  9628. name: "Minimacro",
  9629. height: math.unit(17 + 9 / 12, "feet")
  9630. },
  9631. {
  9632. name: "Macro",
  9633. height: math.unit(177.5, "feet")
  9634. },
  9635. {
  9636. name: "Megamacro",
  9637. height: math.unit(152, "miles")
  9638. },
  9639. ]
  9640. ))
  9641. characterMakers.push(() => makeCharacter(
  9642. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9643. {
  9644. front: {
  9645. height: math.unit(6.5, "inches"),
  9646. weight: math.unit(13, "oz"),
  9647. name: "Front",
  9648. image: {
  9649. source: "./media/characters/dafydd-tomos/front.svg",
  9650. extra: 2990 / 2603,
  9651. bottom: 0.03
  9652. }
  9653. },
  9654. },
  9655. [
  9656. {
  9657. name: "Micro",
  9658. height: math.unit(6.5, "inches"),
  9659. default: true
  9660. },
  9661. ]
  9662. ))
  9663. characterMakers.push(() => makeCharacter(
  9664. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9665. {
  9666. front: {
  9667. height: math.unit(6, "feet"),
  9668. weight: math.unit(150, "lb"),
  9669. name: "Front",
  9670. image: {
  9671. source: "./media/characters/splinter/front.svg",
  9672. extra: 2990 / 2882,
  9673. bottom: 0.04
  9674. }
  9675. },
  9676. back: {
  9677. height: math.unit(6, "feet"),
  9678. weight: math.unit(150, "lb"),
  9679. name: "Back",
  9680. image: {
  9681. source: "./media/characters/splinter/back.svg",
  9682. extra: 2990 / 2882,
  9683. bottom: 0.04
  9684. }
  9685. },
  9686. },
  9687. [
  9688. {
  9689. name: "Normal",
  9690. height: math.unit(6, "feet")
  9691. },
  9692. {
  9693. name: "Macro",
  9694. height: math.unit(230, "meters"),
  9695. default: true
  9696. },
  9697. ]
  9698. ))
  9699. characterMakers.push(() => makeCharacter(
  9700. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9701. {
  9702. front: {
  9703. height: math.unit(4 + 10 / 12, "feet"),
  9704. weight: math.unit(480, "lb"),
  9705. name: "Front",
  9706. image: {
  9707. source: "./media/characters/snow-gabumon/front.svg",
  9708. extra: 1140 / 963,
  9709. bottom: 0.058
  9710. }
  9711. },
  9712. back: {
  9713. height: math.unit(4 + 10 / 12, "feet"),
  9714. weight: math.unit(480, "lb"),
  9715. name: "Back",
  9716. image: {
  9717. source: "./media/characters/snow-gabumon/back.svg",
  9718. extra: 1115 / 962,
  9719. bottom: 0.041
  9720. }
  9721. },
  9722. frontUndresed: {
  9723. height: math.unit(4 + 10 / 12, "feet"),
  9724. weight: math.unit(480, "lb"),
  9725. name: "Front (Undressed)",
  9726. image: {
  9727. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9728. extra: 1061 / 960,
  9729. bottom: 0.045
  9730. }
  9731. },
  9732. },
  9733. [
  9734. {
  9735. name: "Micro",
  9736. height: math.unit(1, "inch")
  9737. },
  9738. {
  9739. name: "Normal",
  9740. height: math.unit(4 + 10 / 12, "feet"),
  9741. default: true
  9742. },
  9743. {
  9744. name: "Macro",
  9745. height: math.unit(200, "feet")
  9746. },
  9747. {
  9748. name: "Megamacro",
  9749. height: math.unit(120, "miles")
  9750. },
  9751. {
  9752. name: "Gigamacro",
  9753. height: math.unit(9800, "miles")
  9754. },
  9755. ]
  9756. ))
  9757. characterMakers.push(() => makeCharacter(
  9758. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9759. {
  9760. front: {
  9761. height: math.unit(1.7, "meters"),
  9762. weight: math.unit(140, "lb"),
  9763. name: "Front",
  9764. image: {
  9765. source: "./media/characters/moody/front.svg",
  9766. extra: 3226 / 3007,
  9767. bottom: 0.087
  9768. }
  9769. },
  9770. },
  9771. [
  9772. {
  9773. name: "Micro",
  9774. height: math.unit(1, "mm")
  9775. },
  9776. {
  9777. name: "Normal",
  9778. height: math.unit(1.7, "meters"),
  9779. default: true
  9780. },
  9781. {
  9782. name: "Macro",
  9783. height: math.unit(80, "meters")
  9784. },
  9785. {
  9786. name: "Macro+",
  9787. height: math.unit(500, "meters")
  9788. },
  9789. ]
  9790. ))
  9791. characterMakers.push(() => makeCharacter(
  9792. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9793. {
  9794. front: {
  9795. height: math.unit(6, "feet"),
  9796. weight: math.unit(150, "lb"),
  9797. name: "Front",
  9798. image: {
  9799. source: "./media/characters/zyas/front.svg",
  9800. extra: 1180 / 1120,
  9801. bottom: 0.045
  9802. }
  9803. },
  9804. },
  9805. [
  9806. {
  9807. name: "Normal",
  9808. height: math.unit(10, "feet"),
  9809. default: true
  9810. },
  9811. {
  9812. name: "Macro",
  9813. height: math.unit(500, "feet")
  9814. },
  9815. {
  9816. name: "Megamacro",
  9817. height: math.unit(5, "miles")
  9818. },
  9819. {
  9820. name: "Teramacro",
  9821. height: math.unit(150000, "miles")
  9822. },
  9823. ]
  9824. ))
  9825. characterMakers.push(() => makeCharacter(
  9826. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9827. {
  9828. front: {
  9829. height: math.unit(6, "feet"),
  9830. weight: math.unit(150, "lb"),
  9831. name: "Front",
  9832. image: {
  9833. source: "./media/characters/cuon/front.svg",
  9834. extra: 1390 / 1320,
  9835. bottom: 0.008
  9836. }
  9837. },
  9838. },
  9839. [
  9840. {
  9841. name: "Micro",
  9842. height: math.unit(3, "inches")
  9843. },
  9844. {
  9845. name: "Normal",
  9846. height: math.unit(18 + 9 / 12, "feet"),
  9847. default: true
  9848. },
  9849. {
  9850. name: "Macro",
  9851. height: math.unit(360, "feet")
  9852. },
  9853. {
  9854. name: "Megamacro",
  9855. height: math.unit(360, "miles")
  9856. },
  9857. ]
  9858. ))
  9859. characterMakers.push(() => makeCharacter(
  9860. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9861. {
  9862. front: {
  9863. height: math.unit(2.4, "meters"),
  9864. weight: math.unit(70, "kg"),
  9865. name: "Front",
  9866. image: {
  9867. source: "./media/characters/nyanuxk/front.svg",
  9868. extra: 1172 / 1084,
  9869. bottom: 0.065
  9870. }
  9871. },
  9872. side: {
  9873. height: math.unit(2.4, "meters"),
  9874. weight: math.unit(70, "kg"),
  9875. name: "Side",
  9876. image: {
  9877. source: "./media/characters/nyanuxk/side.svg",
  9878. extra: 1190 / 1132,
  9879. bottom: 0.007
  9880. }
  9881. },
  9882. back: {
  9883. height: math.unit(2.4, "meters"),
  9884. weight: math.unit(70, "kg"),
  9885. name: "Back",
  9886. image: {
  9887. source: "./media/characters/nyanuxk/back.svg",
  9888. extra: 1200 / 1141,
  9889. bottom: 0.015
  9890. }
  9891. },
  9892. foot: {
  9893. height: math.unit(0.52, "meters"),
  9894. name: "Foot",
  9895. image: {
  9896. source: "./media/characters/nyanuxk/foot.svg"
  9897. }
  9898. },
  9899. },
  9900. [
  9901. {
  9902. name: "Micro",
  9903. height: math.unit(2, "cm")
  9904. },
  9905. {
  9906. name: "Normal",
  9907. height: math.unit(2.4, "meters"),
  9908. default: true
  9909. },
  9910. {
  9911. name: "Smaller Macro",
  9912. height: math.unit(120, "meters")
  9913. },
  9914. {
  9915. name: "Bigger Macro",
  9916. height: math.unit(1.2, "km")
  9917. },
  9918. {
  9919. name: "Megamacro",
  9920. height: math.unit(15, "kilometers")
  9921. },
  9922. {
  9923. name: "Gigamacro",
  9924. height: math.unit(2000, "km")
  9925. },
  9926. {
  9927. name: "Teramacro",
  9928. height: math.unit(500000, "km")
  9929. },
  9930. ]
  9931. ))
  9932. characterMakers.push(() => makeCharacter(
  9933. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9934. {
  9935. side: {
  9936. height: math.unit(6, "feet"),
  9937. name: "Side",
  9938. image: {
  9939. source: "./media/characters/ailbhe/side.svg",
  9940. extra: 757 / 464,
  9941. bottom: 0.041
  9942. }
  9943. },
  9944. },
  9945. [
  9946. {
  9947. name: "Normal",
  9948. height: math.unit(1.07, "meters"),
  9949. default: true
  9950. },
  9951. ]
  9952. ))
  9953. characterMakers.push(() => makeCharacter(
  9954. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9955. {
  9956. front: {
  9957. height: math.unit(6, "feet"),
  9958. weight: math.unit(120, "kg"),
  9959. name: "Front",
  9960. image: {
  9961. source: "./media/characters/zevulfius/front.svg",
  9962. extra: 965 / 903
  9963. }
  9964. },
  9965. side: {
  9966. height: math.unit(6, "feet"),
  9967. weight: math.unit(120, "kg"),
  9968. name: "Side",
  9969. image: {
  9970. source: "./media/characters/zevulfius/side.svg",
  9971. extra: 939 / 900
  9972. }
  9973. },
  9974. back: {
  9975. height: math.unit(6, "feet"),
  9976. weight: math.unit(120, "kg"),
  9977. name: "Back",
  9978. image: {
  9979. source: "./media/characters/zevulfius/back.svg",
  9980. extra: 918 / 854,
  9981. bottom: 0.005
  9982. }
  9983. },
  9984. foot: {
  9985. height: math.unit(6 / 3.72, "feet"),
  9986. name: "Foot",
  9987. image: {
  9988. source: "./media/characters/zevulfius/foot.svg"
  9989. }
  9990. },
  9991. },
  9992. [
  9993. {
  9994. name: "Macro",
  9995. height: math.unit(750, "meters")
  9996. },
  9997. {
  9998. name: "Megamacro",
  9999. height: math.unit(20, "km"),
  10000. default: true
  10001. },
  10002. {
  10003. name: "Gigamacro",
  10004. height: math.unit(2000, "km")
  10005. },
  10006. {
  10007. name: "Teramacro",
  10008. height: math.unit(250000, "km")
  10009. },
  10010. ]
  10011. ))
  10012. characterMakers.push(() => makeCharacter(
  10013. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10014. {
  10015. front: {
  10016. height: math.unit(100, "feet"),
  10017. weight: math.unit(350, "kg"),
  10018. name: "Front",
  10019. image: {
  10020. source: "./media/characters/rikes/front.svg",
  10021. extra: 1565 / 1483,
  10022. bottom: 0.017
  10023. }
  10024. },
  10025. },
  10026. [
  10027. {
  10028. name: "Macro",
  10029. height: math.unit(100, "feet"),
  10030. default: true
  10031. },
  10032. ]
  10033. ))
  10034. characterMakers.push(() => makeCharacter(
  10035. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10036. {
  10037. anthro: {
  10038. height: math.unit(8, "feet"),
  10039. weight: math.unit(120, "kg"),
  10040. name: "Anthro",
  10041. image: {
  10042. source: "./media/characters/adam-silver-mane/anthro.svg",
  10043. extra: 5743 / 5339,
  10044. bottom: 0.07
  10045. }
  10046. },
  10047. taur: {
  10048. height: math.unit(16, "feet"),
  10049. weight: math.unit(1500, "kg"),
  10050. name: "Taur",
  10051. image: {
  10052. source: "./media/characters/adam-silver-mane/taur.svg",
  10053. extra: 1713 / 1571,
  10054. bottom: 0.01
  10055. }
  10056. },
  10057. },
  10058. [
  10059. {
  10060. name: "Normal",
  10061. height: math.unit(8, "feet")
  10062. },
  10063. {
  10064. name: "Minimacro",
  10065. height: math.unit(80, "feet")
  10066. },
  10067. {
  10068. name: "Macro",
  10069. height: math.unit(800, "feet"),
  10070. default: true
  10071. },
  10072. {
  10073. name: "Megamacro",
  10074. height: math.unit(8000, "feet")
  10075. },
  10076. {
  10077. name: "Gigamacro",
  10078. height: math.unit(800, "miles")
  10079. },
  10080. {
  10081. name: "Teramacro",
  10082. height: math.unit(80000, "miles")
  10083. },
  10084. {
  10085. name: "Celestial",
  10086. height: math.unit(8e6, "miles")
  10087. },
  10088. {
  10089. name: "Star Dragon",
  10090. height: math.unit(800000, "parsecs")
  10091. },
  10092. {
  10093. name: "Godly",
  10094. height: math.unit(800, "teraparsecs")
  10095. },
  10096. ]
  10097. ))
  10098. characterMakers.push(() => makeCharacter(
  10099. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10100. {
  10101. front: {
  10102. height: math.unit(6, "feet"),
  10103. weight: math.unit(150, "lb"),
  10104. name: "Front",
  10105. image: {
  10106. source: "./media/characters/ky'owin/front.svg",
  10107. extra: 3888 / 3068,
  10108. bottom: 0.015
  10109. }
  10110. },
  10111. },
  10112. [
  10113. {
  10114. name: "Normal",
  10115. height: math.unit(6 + 8 / 12, "feet")
  10116. },
  10117. {
  10118. name: "Large",
  10119. height: math.unit(68, "feet")
  10120. },
  10121. {
  10122. name: "Macro",
  10123. height: math.unit(132, "feet")
  10124. },
  10125. {
  10126. name: "Macro+",
  10127. height: math.unit(340, "feet")
  10128. },
  10129. {
  10130. name: "Macro++",
  10131. height: math.unit(680, "feet"),
  10132. default: true
  10133. },
  10134. {
  10135. name: "Megamacro",
  10136. height: math.unit(1, "mile")
  10137. },
  10138. {
  10139. name: "Megamacro+",
  10140. height: math.unit(10, "miles")
  10141. },
  10142. ]
  10143. ))
  10144. characterMakers.push(() => makeCharacter(
  10145. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10146. {
  10147. front: {
  10148. height: math.unit(4, "feet"),
  10149. weight: math.unit(50, "lb"),
  10150. name: "Front",
  10151. image: {
  10152. source: "./media/characters/mal/front.svg",
  10153. extra: 785 / 724,
  10154. bottom: 0.07
  10155. }
  10156. },
  10157. },
  10158. [
  10159. {
  10160. name: "Micro",
  10161. height: math.unit(4, "inches")
  10162. },
  10163. {
  10164. name: "Normal",
  10165. height: math.unit(4, "feet"),
  10166. default: true
  10167. },
  10168. {
  10169. name: "Macro",
  10170. height: math.unit(200, "feet")
  10171. },
  10172. ]
  10173. ))
  10174. characterMakers.push(() => makeCharacter(
  10175. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10176. {
  10177. front: {
  10178. height: math.unit(6, "feet"),
  10179. weight: math.unit(150, "lb"),
  10180. name: "Front",
  10181. image: {
  10182. source: "./media/characters/jordan-deware/front.svg",
  10183. extra: 1191 / 1012
  10184. }
  10185. },
  10186. },
  10187. [
  10188. {
  10189. name: "Nano",
  10190. height: math.unit(0.01, "mm")
  10191. },
  10192. {
  10193. name: "Minimicro",
  10194. height: math.unit(1, "mm")
  10195. },
  10196. {
  10197. name: "Micro",
  10198. height: math.unit(0.5, "inches")
  10199. },
  10200. {
  10201. name: "Normal",
  10202. height: math.unit(4, "feet"),
  10203. default: true
  10204. },
  10205. {
  10206. name: "Minimacro",
  10207. height: math.unit(40, "meters")
  10208. },
  10209. {
  10210. name: "Small Macro",
  10211. height: math.unit(400, "meters")
  10212. },
  10213. {
  10214. name: "Macro",
  10215. height: math.unit(4, "miles")
  10216. },
  10217. {
  10218. name: "Megamacro",
  10219. height: math.unit(40, "miles")
  10220. },
  10221. {
  10222. name: "Megamacro+",
  10223. height: math.unit(400, "miles")
  10224. },
  10225. {
  10226. name: "Gigamacro",
  10227. height: math.unit(400000, "miles")
  10228. },
  10229. ]
  10230. ))
  10231. characterMakers.push(() => makeCharacter(
  10232. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10233. {
  10234. side: {
  10235. height: math.unit(6, "feet"),
  10236. weight: math.unit(150, "lb"),
  10237. name: "Side",
  10238. image: {
  10239. source: "./media/characters/kimiko/side.svg",
  10240. extra: 600 / 358
  10241. }
  10242. },
  10243. },
  10244. [
  10245. {
  10246. name: "Normal",
  10247. height: math.unit(15, "feet"),
  10248. default: true
  10249. },
  10250. {
  10251. name: "Macro",
  10252. height: math.unit(220, "feet")
  10253. },
  10254. {
  10255. name: "Macro+",
  10256. height: math.unit(1450, "feet")
  10257. },
  10258. {
  10259. name: "Megamacro",
  10260. height: math.unit(11500, "feet")
  10261. },
  10262. {
  10263. name: "Gigamacro",
  10264. height: math.unit(9500, "miles")
  10265. },
  10266. {
  10267. name: "Teramacro",
  10268. height: math.unit(2208005005, "miles")
  10269. },
  10270. {
  10271. name: "Examacro",
  10272. height: math.unit(2750, "parsecs")
  10273. },
  10274. {
  10275. name: "Zettamacro",
  10276. height: math.unit(101500, "parsecs")
  10277. },
  10278. ]
  10279. ))
  10280. characterMakers.push(() => makeCharacter(
  10281. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10282. {
  10283. front: {
  10284. height: math.unit(6, "feet"),
  10285. weight: math.unit(70, "kg"),
  10286. name: "Front",
  10287. image: {
  10288. source: "./media/characters/andrew-sleepy/front.svg"
  10289. }
  10290. },
  10291. side: {
  10292. height: math.unit(6, "feet"),
  10293. weight: math.unit(70, "kg"),
  10294. name: "Side",
  10295. image: {
  10296. source: "./media/characters/andrew-sleepy/side.svg"
  10297. }
  10298. },
  10299. },
  10300. [
  10301. {
  10302. name: "Micro",
  10303. height: math.unit(1, "mm"),
  10304. default: true
  10305. },
  10306. ]
  10307. ))
  10308. characterMakers.push(() => makeCharacter(
  10309. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10310. {
  10311. front: {
  10312. height: math.unit(6, "feet"),
  10313. weight: math.unit(150, "lb"),
  10314. name: "Front",
  10315. image: {
  10316. source: "./media/characters/judio/front.svg",
  10317. extra: 1258 / 1110
  10318. }
  10319. },
  10320. },
  10321. [
  10322. {
  10323. name: "Normal",
  10324. height: math.unit(5 + 6 / 12, "feet")
  10325. },
  10326. {
  10327. name: "Macro",
  10328. height: math.unit(1000, "feet"),
  10329. default: true
  10330. },
  10331. {
  10332. name: "Megamacro",
  10333. height: math.unit(10, "miles")
  10334. },
  10335. ]
  10336. ))
  10337. characterMakers.push(() => makeCharacter(
  10338. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10339. {
  10340. front: {
  10341. height: math.unit(6, "feet"),
  10342. weight: math.unit(68, "kg"),
  10343. name: "Front",
  10344. image: {
  10345. source: "./media/characters/nomaxice/front.svg",
  10346. extra: 1498 / 1073,
  10347. bottom: 0.075
  10348. }
  10349. },
  10350. foot: {
  10351. height: math.unit(1.1, "feet"),
  10352. name: "Foot",
  10353. image: {
  10354. source: "./media/characters/nomaxice/foot.svg"
  10355. }
  10356. },
  10357. },
  10358. [
  10359. {
  10360. name: "Micro",
  10361. height: math.unit(8, "cm")
  10362. },
  10363. {
  10364. name: "Norm",
  10365. height: math.unit(1.82, "m")
  10366. },
  10367. {
  10368. name: "Norm+",
  10369. height: math.unit(8.8, "feet")
  10370. },
  10371. {
  10372. name: "Big",
  10373. height: math.unit(8, "meters"),
  10374. default: true
  10375. },
  10376. {
  10377. name: "Macro",
  10378. height: math.unit(18, "meters")
  10379. },
  10380. {
  10381. name: "Macro+",
  10382. height: math.unit(88, "meters")
  10383. },
  10384. ]
  10385. ))
  10386. characterMakers.push(() => makeCharacter(
  10387. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10388. {
  10389. front: {
  10390. height: math.unit(12, "feet"),
  10391. weight: math.unit(1.5, "tons"),
  10392. name: "Front",
  10393. image: {
  10394. source: "./media/characters/dydros/front.svg",
  10395. extra: 863 / 800,
  10396. bottom: 0.015
  10397. }
  10398. },
  10399. back: {
  10400. height: math.unit(12, "feet"),
  10401. weight: math.unit(1.5, "tons"),
  10402. name: "Back",
  10403. image: {
  10404. source: "./media/characters/dydros/back.svg",
  10405. extra: 900 / 843,
  10406. bottom: 0.005
  10407. }
  10408. },
  10409. },
  10410. [
  10411. {
  10412. name: "Normal",
  10413. height: math.unit(12, "feet"),
  10414. default: true
  10415. },
  10416. ]
  10417. ))
  10418. characterMakers.push(() => makeCharacter(
  10419. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10420. {
  10421. front: {
  10422. height: math.unit(6, "feet"),
  10423. weight: math.unit(100, "kg"),
  10424. name: "Front",
  10425. image: {
  10426. source: "./media/characters/riggi/front.svg",
  10427. extra: 5787 / 5303
  10428. }
  10429. },
  10430. hyper: {
  10431. height: math.unit(6 * 5 / 3, "feet"),
  10432. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10433. name: "Hyper",
  10434. image: {
  10435. source: "./media/characters/riggi/hyper.svg",
  10436. extra: 3595 / 3485
  10437. }
  10438. },
  10439. },
  10440. [
  10441. {
  10442. name: "Small Macro",
  10443. height: math.unit(50, "feet")
  10444. },
  10445. {
  10446. name: "Default",
  10447. height: math.unit(200, "feet"),
  10448. default: true
  10449. },
  10450. {
  10451. name: "Loom",
  10452. height: math.unit(10000, "feet")
  10453. },
  10454. {
  10455. name: "Cruising Altitude",
  10456. height: math.unit(30000, "feet")
  10457. },
  10458. {
  10459. name: "Megamacro",
  10460. height: math.unit(100, "miles")
  10461. },
  10462. {
  10463. name: "Continent Sized",
  10464. height: math.unit(2800, "miles")
  10465. },
  10466. {
  10467. name: "Earth Sized",
  10468. height: math.unit(8000, "miles")
  10469. },
  10470. ]
  10471. ))
  10472. characterMakers.push(() => makeCharacter(
  10473. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10474. {
  10475. front: {
  10476. height: math.unit(6, "feet"),
  10477. weight: math.unit(250, "lb"),
  10478. name: "Front",
  10479. image: {
  10480. source: "./media/characters/alexi/front.svg",
  10481. extra: 3483 / 3291,
  10482. bottom: 0.04
  10483. }
  10484. },
  10485. back: {
  10486. height: math.unit(6, "feet"),
  10487. weight: math.unit(250, "lb"),
  10488. name: "Back",
  10489. image: {
  10490. source: "./media/characters/alexi/back.svg",
  10491. extra: 3533 / 3356,
  10492. bottom: 0.021
  10493. }
  10494. },
  10495. frontTransforming: {
  10496. height: math.unit(8.58, "feet"),
  10497. weight: math.unit(1300, "lb"),
  10498. name: "Transforming",
  10499. image: {
  10500. source: "./media/characters/alexi/front-transforming.svg",
  10501. extra: 437 / 409,
  10502. bottom: 19 / 458.66
  10503. }
  10504. },
  10505. frontTransformed: {
  10506. height: math.unit(12.5, "feet"),
  10507. weight: math.unit(4000, "lb"),
  10508. name: "Transformed",
  10509. image: {
  10510. source: "./media/characters/alexi/front-transformed.svg",
  10511. extra: 639 / 614,
  10512. bottom: 30.55 / 671
  10513. }
  10514. },
  10515. },
  10516. [
  10517. {
  10518. name: "Normal",
  10519. height: math.unit(14, "feet"),
  10520. default: true
  10521. },
  10522. {
  10523. name: "Minimacro",
  10524. height: math.unit(30, "meters")
  10525. },
  10526. {
  10527. name: "Macro",
  10528. height: math.unit(500, "meters")
  10529. },
  10530. {
  10531. name: "Megamacro",
  10532. height: math.unit(9000, "km")
  10533. },
  10534. {
  10535. name: "Teramacro",
  10536. height: math.unit(384000, "km")
  10537. },
  10538. ]
  10539. ))
  10540. characterMakers.push(() => makeCharacter(
  10541. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10542. {
  10543. front: {
  10544. height: math.unit(6, "feet"),
  10545. weight: math.unit(150, "lb"),
  10546. name: "Front",
  10547. image: {
  10548. source: "./media/characters/kayroo/front.svg",
  10549. extra: 1153 / 1038,
  10550. bottom: 0.06
  10551. }
  10552. },
  10553. foot: {
  10554. height: math.unit(6, "feet"),
  10555. weight: math.unit(150, "lb"),
  10556. name: "Foot",
  10557. image: {
  10558. source: "./media/characters/kayroo/foot.svg"
  10559. }
  10560. },
  10561. },
  10562. [
  10563. {
  10564. name: "Normal",
  10565. height: math.unit(8, "feet"),
  10566. default: true
  10567. },
  10568. {
  10569. name: "Minimacro",
  10570. height: math.unit(250, "feet")
  10571. },
  10572. {
  10573. name: "Macro",
  10574. height: math.unit(2800, "feet")
  10575. },
  10576. {
  10577. name: "Megamacro",
  10578. height: math.unit(5200, "feet")
  10579. },
  10580. {
  10581. name: "Gigamacro",
  10582. height: math.unit(27000, "feet")
  10583. },
  10584. {
  10585. name: "Omega",
  10586. height: math.unit(45000, "feet")
  10587. },
  10588. ]
  10589. ))
  10590. characterMakers.push(() => makeCharacter(
  10591. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10592. {
  10593. front: {
  10594. height: math.unit(18, "feet"),
  10595. weight: math.unit(5800, "lb"),
  10596. name: "Front",
  10597. image: {
  10598. source: "./media/characters/rhys/front.svg",
  10599. extra: 3386 / 3090,
  10600. bottom: 0.07
  10601. }
  10602. },
  10603. },
  10604. [
  10605. {
  10606. name: "Normal",
  10607. height: math.unit(18, "feet"),
  10608. default: true
  10609. },
  10610. {
  10611. name: "Working Size",
  10612. height: math.unit(200, "feet")
  10613. },
  10614. {
  10615. name: "Demolition Size",
  10616. height: math.unit(2000, "feet")
  10617. },
  10618. {
  10619. name: "Maximum Licensed Size",
  10620. height: math.unit(5, "miles")
  10621. },
  10622. {
  10623. name: "Maximum Observed Size",
  10624. height: math.unit(10, "yottameters")
  10625. },
  10626. ]
  10627. ))
  10628. characterMakers.push(() => makeCharacter(
  10629. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10630. {
  10631. front: {
  10632. height: math.unit(6, "feet"),
  10633. weight: math.unit(250, "lb"),
  10634. name: "Front",
  10635. image: {
  10636. source: "./media/characters/toto/front.svg",
  10637. extra: 527 / 479,
  10638. bottom: 0.05
  10639. }
  10640. },
  10641. },
  10642. [
  10643. {
  10644. name: "Micro",
  10645. height: math.unit(3, "feet")
  10646. },
  10647. {
  10648. name: "Normal",
  10649. height: math.unit(10, "feet")
  10650. },
  10651. {
  10652. name: "Macro",
  10653. height: math.unit(150, "feet"),
  10654. default: true
  10655. },
  10656. {
  10657. name: "Megamacro",
  10658. height: math.unit(1200, "feet")
  10659. },
  10660. ]
  10661. ))
  10662. characterMakers.push(() => makeCharacter(
  10663. { name: "King", species: ["lion"], tags: ["anthro"] },
  10664. {
  10665. back: {
  10666. height: math.unit(6, "feet"),
  10667. weight: math.unit(150, "lb"),
  10668. name: "Back",
  10669. image: {
  10670. source: "./media/characters/king/back.svg"
  10671. }
  10672. },
  10673. },
  10674. [
  10675. {
  10676. name: "Micro",
  10677. height: math.unit(2, "inches")
  10678. },
  10679. {
  10680. name: "Normal",
  10681. height: math.unit(8, "feet")
  10682. },
  10683. {
  10684. name: "Macro",
  10685. height: math.unit(200, "feet"),
  10686. default: true
  10687. },
  10688. {
  10689. name: "Megamacro",
  10690. height: math.unit(50, "miles")
  10691. },
  10692. ]
  10693. ))
  10694. characterMakers.push(() => makeCharacter(
  10695. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10696. {
  10697. anthro: {
  10698. height: math.unit(6 + 5 / 12, "feet"),
  10699. weight: math.unit(280, "lb"),
  10700. name: "Anthro",
  10701. image: {
  10702. source: "./media/characters/cordite/anthro.svg",
  10703. extra: 1986 / 1905,
  10704. bottom: 0.025
  10705. }
  10706. },
  10707. feral: {
  10708. height: math.unit(2, "feet"),
  10709. weight: math.unit(90, "lb"),
  10710. name: "Feral",
  10711. image: {
  10712. source: "./media/characters/cordite/feral.svg",
  10713. extra: 1260 / 755,
  10714. bottom: 0.05
  10715. }
  10716. },
  10717. },
  10718. [
  10719. {
  10720. name: "Normal",
  10721. height: math.unit(6 + 5 / 12, "feet"),
  10722. default: true
  10723. },
  10724. ]
  10725. ))
  10726. characterMakers.push(() => makeCharacter(
  10727. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10728. {
  10729. front: {
  10730. height: math.unit(6, "feet"),
  10731. weight: math.unit(150, "lb"),
  10732. name: "Front",
  10733. image: {
  10734. source: "./media/characters/pianostrong/front.svg",
  10735. extra: 6577 / 6254,
  10736. bottom: 0.02
  10737. }
  10738. },
  10739. side: {
  10740. height: math.unit(6, "feet"),
  10741. weight: math.unit(150, "lb"),
  10742. name: "Side",
  10743. image: {
  10744. source: "./media/characters/pianostrong/side.svg",
  10745. extra: 6106 / 5730
  10746. }
  10747. },
  10748. back: {
  10749. height: math.unit(6, "feet"),
  10750. weight: math.unit(150, "lb"),
  10751. name: "Back",
  10752. image: {
  10753. source: "./media/characters/pianostrong/back.svg",
  10754. extra: 6085 / 5733,
  10755. bottom: 0.01
  10756. }
  10757. },
  10758. },
  10759. [
  10760. {
  10761. name: "Macro",
  10762. height: math.unit(100, "feet")
  10763. },
  10764. {
  10765. name: "Macro+",
  10766. height: math.unit(300, "feet"),
  10767. default: true
  10768. },
  10769. {
  10770. name: "Macro++",
  10771. height: math.unit(1000, "feet")
  10772. },
  10773. ]
  10774. ))
  10775. characterMakers.push(() => makeCharacter(
  10776. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10777. {
  10778. front: {
  10779. height: math.unit(6, "feet"),
  10780. weight: math.unit(150, "lb"),
  10781. name: "Front",
  10782. image: {
  10783. source: "./media/characters/kona/front.svg",
  10784. extra: 2960 / 2629,
  10785. bottom: 0.005
  10786. }
  10787. },
  10788. },
  10789. [
  10790. {
  10791. name: "Normal",
  10792. height: math.unit(11 + 8 / 12, "feet")
  10793. },
  10794. {
  10795. name: "Macro",
  10796. height: math.unit(850, "feet"),
  10797. default: true
  10798. },
  10799. {
  10800. name: "Macro+",
  10801. height: math.unit(1.5, "km"),
  10802. default: true
  10803. },
  10804. {
  10805. name: "Megamacro",
  10806. height: math.unit(80, "miles")
  10807. },
  10808. {
  10809. name: "Gigamacro",
  10810. height: math.unit(3500, "miles")
  10811. },
  10812. ]
  10813. ))
  10814. characterMakers.push(() => makeCharacter(
  10815. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10816. {
  10817. side: {
  10818. height: math.unit(1.9, "meters"),
  10819. weight: math.unit(326, "kg"),
  10820. name: "Side",
  10821. image: {
  10822. source: "./media/characters/levi/side.svg",
  10823. extra: 1704 / 1334,
  10824. bottom: 0.02
  10825. }
  10826. },
  10827. },
  10828. [
  10829. {
  10830. name: "Normal",
  10831. height: math.unit(1.9, "meters"),
  10832. default: true
  10833. },
  10834. {
  10835. name: "Macro",
  10836. height: math.unit(20, "meters")
  10837. },
  10838. {
  10839. name: "Macro+",
  10840. height: math.unit(200, "meters")
  10841. },
  10842. {
  10843. name: "Megamacro",
  10844. height: math.unit(2, "km")
  10845. },
  10846. {
  10847. name: "Megamacro+",
  10848. height: math.unit(20, "km")
  10849. },
  10850. {
  10851. name: "Gigamacro",
  10852. height: math.unit(2500, "km")
  10853. },
  10854. {
  10855. name: "Gigamacro+",
  10856. height: math.unit(120000, "km")
  10857. },
  10858. {
  10859. name: "Teramacro",
  10860. height: math.unit(7.77e6, "km")
  10861. },
  10862. ]
  10863. ))
  10864. characterMakers.push(() => makeCharacter(
  10865. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10866. {
  10867. front: {
  10868. height: math.unit(6 + 4 / 12, "feet"),
  10869. weight: math.unit(188, "lb"),
  10870. name: "Front",
  10871. image: {
  10872. source: "./media/characters/bmc/front.svg",
  10873. extra: 1067 / 1022,
  10874. bottom: 0.047
  10875. }
  10876. },
  10877. },
  10878. [
  10879. {
  10880. name: "Human-sized",
  10881. height: math.unit(6 + 4 / 12, "feet")
  10882. },
  10883. {
  10884. name: "Small",
  10885. height: math.unit(250, "feet")
  10886. },
  10887. {
  10888. name: "Normal",
  10889. height: math.unit(1250, "feet"),
  10890. default: true
  10891. },
  10892. {
  10893. name: "Good Day",
  10894. height: math.unit(88, "miles")
  10895. },
  10896. {
  10897. name: "Largest Measured Size",
  10898. height: math.unit(11.2e6, "lightyears")
  10899. },
  10900. ]
  10901. ))
  10902. characterMakers.push(() => makeCharacter(
  10903. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10904. {
  10905. front: {
  10906. height: math.unit(20, "feet"),
  10907. weight: math.unit(2016, "kg"),
  10908. name: "Front",
  10909. image: {
  10910. source: "./media/characters/sven-the-kaiju/front.svg",
  10911. extra: 1479 / 1449,
  10912. bottom: 0.05
  10913. }
  10914. },
  10915. },
  10916. [
  10917. {
  10918. name: "Fairy",
  10919. height: math.unit(6, "inches")
  10920. },
  10921. {
  10922. name: "Normal",
  10923. height: math.unit(20, "feet"),
  10924. default: true
  10925. },
  10926. {
  10927. name: "Rampage",
  10928. height: math.unit(200, "feet")
  10929. },
  10930. {
  10931. name: "Archfey Forest Guardian",
  10932. height: math.unit(1, "mile")
  10933. },
  10934. ]
  10935. ))
  10936. characterMakers.push(() => makeCharacter(
  10937. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10938. {
  10939. front: {
  10940. height: math.unit(4, "meters"),
  10941. weight: math.unit(2, "tons"),
  10942. name: "Front",
  10943. image: {
  10944. source: "./media/characters/marik/front.svg",
  10945. extra: 1057 / 1003,
  10946. bottom: 0.08
  10947. }
  10948. },
  10949. },
  10950. [
  10951. {
  10952. name: "Normal",
  10953. height: math.unit(4, "meters"),
  10954. default: true
  10955. },
  10956. {
  10957. name: "Macro",
  10958. height: math.unit(20, "meters")
  10959. },
  10960. {
  10961. name: "Megamacro",
  10962. height: math.unit(50, "km")
  10963. },
  10964. {
  10965. name: "Gigamacro",
  10966. height: math.unit(100, "km")
  10967. },
  10968. {
  10969. name: "Alpha Macro",
  10970. height: math.unit(7.88e7, "yottameters")
  10971. },
  10972. ]
  10973. ))
  10974. characterMakers.push(() => makeCharacter(
  10975. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10976. {
  10977. front: {
  10978. height: math.unit(6, "feet"),
  10979. weight: math.unit(110, "lb"),
  10980. name: "Front",
  10981. image: {
  10982. source: "./media/characters/mel/front.svg",
  10983. extra: 736 / 617,
  10984. bottom: 0.017
  10985. }
  10986. },
  10987. },
  10988. [
  10989. {
  10990. name: "Pico",
  10991. height: math.unit(3, "pm")
  10992. },
  10993. {
  10994. name: "Nano",
  10995. height: math.unit(3, "nm")
  10996. },
  10997. {
  10998. name: "Micro",
  10999. height: math.unit(0.3, "mm"),
  11000. default: true
  11001. },
  11002. {
  11003. name: "Micro+",
  11004. height: math.unit(3, "mm")
  11005. },
  11006. {
  11007. name: "Normal",
  11008. height: math.unit(5 + 10.5 / 12, "feet")
  11009. },
  11010. ]
  11011. ))
  11012. characterMakers.push(() => makeCharacter(
  11013. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11014. {
  11015. kaiju: {
  11016. height: math.unit(1.75, "meters"),
  11017. weight: math.unit(55, "kg"),
  11018. name: "Kaiju",
  11019. image: {
  11020. source: "./media/characters/lykonous/kaiju.svg",
  11021. extra: 1055 / 946,
  11022. bottom: 0.135
  11023. }
  11024. },
  11025. },
  11026. [
  11027. {
  11028. name: "Normal",
  11029. height: math.unit(2.5, "meters"),
  11030. default: true
  11031. },
  11032. {
  11033. name: "Kaiju Dragon",
  11034. height: math.unit(60, "meters")
  11035. },
  11036. {
  11037. name: "Mega Kaiju",
  11038. height: math.unit(120, "km")
  11039. },
  11040. {
  11041. name: "Giga Kaiju",
  11042. height: math.unit(200, "megameters")
  11043. },
  11044. {
  11045. name: "Terra Kaiju",
  11046. height: math.unit(400, "gigameters")
  11047. },
  11048. {
  11049. name: "Kaiju Dragon God",
  11050. height: math.unit(13000, "exaparsecs")
  11051. },
  11052. ]
  11053. ))
  11054. characterMakers.push(() => makeCharacter(
  11055. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11056. {
  11057. front: {
  11058. height: math.unit(6, "feet"),
  11059. weight: math.unit(150, "lb"),
  11060. name: "Front",
  11061. image: {
  11062. source: "./media/characters/blü/front.svg",
  11063. extra: 1883 / 1564,
  11064. bottom: 0.031
  11065. }
  11066. },
  11067. },
  11068. [
  11069. {
  11070. name: "Normal",
  11071. height: math.unit(13, "feet"),
  11072. default: true
  11073. },
  11074. {
  11075. name: "Big Boi",
  11076. height: math.unit(150, "meters")
  11077. },
  11078. {
  11079. name: "Mini Stomper",
  11080. height: math.unit(300, "meters")
  11081. },
  11082. {
  11083. name: "Macro",
  11084. height: math.unit(1000, "meters")
  11085. },
  11086. {
  11087. name: "Megamacro",
  11088. height: math.unit(11000, "meters")
  11089. },
  11090. {
  11091. name: "Gigamacro",
  11092. height: math.unit(11000, "km")
  11093. },
  11094. {
  11095. name: "Teramacro",
  11096. height: math.unit(420000, "km")
  11097. },
  11098. {
  11099. name: "Examacro",
  11100. height: math.unit(120, "parsecs")
  11101. },
  11102. {
  11103. name: "God Tho",
  11104. height: math.unit(98000000000, "parsecs")
  11105. },
  11106. ]
  11107. ))
  11108. characterMakers.push(() => makeCharacter(
  11109. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11110. {
  11111. taurFront: {
  11112. height: math.unit(6, "feet"),
  11113. weight: math.unit(200, "lb"),
  11114. name: "Taur (Front)",
  11115. image: {
  11116. source: "./media/characters/scales/taur-front.svg",
  11117. extra: 1,
  11118. bottom: 0.05
  11119. }
  11120. },
  11121. taurBack: {
  11122. height: math.unit(6, "feet"),
  11123. weight: math.unit(200, "lb"),
  11124. name: "Taur (Back)",
  11125. image: {
  11126. source: "./media/characters/scales/taur-back.svg",
  11127. extra: 1,
  11128. bottom: 0.08
  11129. }
  11130. },
  11131. anthro: {
  11132. height: math.unit(6 * 7 / 12, "feet"),
  11133. weight: math.unit(100, "lb"),
  11134. name: "Anthro",
  11135. image: {
  11136. source: "./media/characters/scales/anthro.svg",
  11137. extra: 1,
  11138. bottom: 0.06
  11139. }
  11140. },
  11141. },
  11142. [
  11143. {
  11144. name: "Normal",
  11145. height: math.unit(12, "feet"),
  11146. default: true
  11147. },
  11148. ]
  11149. ))
  11150. characterMakers.push(() => makeCharacter(
  11151. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11152. {
  11153. front: {
  11154. height: math.unit(6, "feet"),
  11155. weight: math.unit(150, "lb"),
  11156. name: "Front",
  11157. image: {
  11158. source: "./media/characters/koragos/front.svg",
  11159. extra: 841 / 794,
  11160. bottom: 0.035
  11161. }
  11162. },
  11163. back: {
  11164. height: math.unit(6, "feet"),
  11165. weight: math.unit(150, "lb"),
  11166. name: "Back",
  11167. image: {
  11168. source: "./media/characters/koragos/back.svg",
  11169. extra: 841 / 810,
  11170. bottom: 0.022
  11171. }
  11172. },
  11173. },
  11174. [
  11175. {
  11176. name: "Normal",
  11177. height: math.unit(6 + 11 / 12, "feet"),
  11178. default: true
  11179. },
  11180. {
  11181. name: "Macro",
  11182. height: math.unit(490, "feet")
  11183. },
  11184. {
  11185. name: "Megamacro",
  11186. height: math.unit(10, "miles")
  11187. },
  11188. {
  11189. name: "Gigamacro",
  11190. height: math.unit(50, "miles")
  11191. },
  11192. ]
  11193. ))
  11194. characterMakers.push(() => makeCharacter(
  11195. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11196. {
  11197. front: {
  11198. height: math.unit(6, "feet"),
  11199. weight: math.unit(250, "lb"),
  11200. name: "Front",
  11201. image: {
  11202. source: "./media/characters/xylrem/front.svg",
  11203. extra: 3323 / 3050,
  11204. bottom: 0.065
  11205. }
  11206. },
  11207. },
  11208. [
  11209. {
  11210. name: "Micro",
  11211. height: math.unit(4, "feet")
  11212. },
  11213. {
  11214. name: "Normal",
  11215. height: math.unit(16, "feet"),
  11216. default: true
  11217. },
  11218. {
  11219. name: "Macro",
  11220. height: math.unit(2720, "feet")
  11221. },
  11222. {
  11223. name: "Megamacro",
  11224. height: math.unit(25000, "miles")
  11225. },
  11226. ]
  11227. ))
  11228. characterMakers.push(() => makeCharacter(
  11229. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11230. {
  11231. front: {
  11232. height: math.unit(8, "feet"),
  11233. weight: math.unit(250, "kg"),
  11234. name: "Front",
  11235. image: {
  11236. source: "./media/characters/ikideru/front.svg",
  11237. extra: 930 / 870,
  11238. bottom: 0.087
  11239. }
  11240. },
  11241. back: {
  11242. height: math.unit(8, "feet"),
  11243. weight: math.unit(250, "kg"),
  11244. name: "Back",
  11245. image: {
  11246. source: "./media/characters/ikideru/back.svg",
  11247. extra: 919 / 852,
  11248. bottom: 0.055
  11249. }
  11250. },
  11251. },
  11252. [
  11253. {
  11254. name: "Rare",
  11255. height: math.unit(8, "feet"),
  11256. default: true
  11257. },
  11258. {
  11259. name: "Playful Loom",
  11260. height: math.unit(80, "feet")
  11261. },
  11262. {
  11263. name: "City Leaner",
  11264. height: math.unit(230, "feet")
  11265. },
  11266. {
  11267. name: "Megamacro",
  11268. height: math.unit(2500, "feet")
  11269. },
  11270. {
  11271. name: "Gigamacro",
  11272. height: math.unit(26400, "feet")
  11273. },
  11274. {
  11275. name: "Tectonic Shifter",
  11276. height: math.unit(1.7, "megameters")
  11277. },
  11278. {
  11279. name: "Planet Carer",
  11280. height: math.unit(21, "megameters")
  11281. },
  11282. {
  11283. name: "God",
  11284. height: math.unit(11157.22, "parsecs")
  11285. },
  11286. ]
  11287. ))
  11288. characterMakers.push(() => makeCharacter(
  11289. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11290. {
  11291. front: {
  11292. height: math.unit(6, "feet"),
  11293. weight: math.unit(120, "lb"),
  11294. name: "Front",
  11295. image: {
  11296. source: "./media/characters/neo/front.svg"
  11297. }
  11298. },
  11299. },
  11300. [
  11301. {
  11302. name: "Micro",
  11303. height: math.unit(2, "inches"),
  11304. default: true
  11305. },
  11306. {
  11307. name: "Human Size",
  11308. height: math.unit(5 + 8 / 12, "feet")
  11309. },
  11310. ]
  11311. ))
  11312. characterMakers.push(() => makeCharacter(
  11313. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11314. {
  11315. front: {
  11316. height: math.unit(13 + 10 / 12, "feet"),
  11317. weight: math.unit(5320, "lb"),
  11318. name: "Front",
  11319. image: {
  11320. source: "./media/characters/chauncey-chantz/front.svg",
  11321. extra: 1587 / 1435,
  11322. bottom: 0.02
  11323. }
  11324. },
  11325. },
  11326. [
  11327. {
  11328. name: "Normal",
  11329. height: math.unit(13 + 10 / 12, "feet"),
  11330. default: true
  11331. },
  11332. {
  11333. name: "Macro",
  11334. height: math.unit(45, "feet")
  11335. },
  11336. {
  11337. name: "Megamacro",
  11338. height: math.unit(250, "miles")
  11339. },
  11340. {
  11341. name: "Planetary",
  11342. height: math.unit(10000, "miles")
  11343. },
  11344. {
  11345. name: "Galactic",
  11346. height: math.unit(40000, "parsecs")
  11347. },
  11348. {
  11349. name: "Universal",
  11350. height: math.unit(1, "yottameter")
  11351. },
  11352. ]
  11353. ))
  11354. characterMakers.push(() => makeCharacter(
  11355. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11356. {
  11357. front: {
  11358. height: math.unit(6, "feet"),
  11359. weight: math.unit(150, "lb"),
  11360. name: "Front",
  11361. image: {
  11362. source: "./media/characters/epifox/front.svg",
  11363. extra: 1,
  11364. bottom: 0.075
  11365. }
  11366. },
  11367. },
  11368. [
  11369. {
  11370. name: "Micro",
  11371. height: math.unit(6, "inches")
  11372. },
  11373. {
  11374. name: "Normal",
  11375. height: math.unit(12, "feet"),
  11376. default: true
  11377. },
  11378. {
  11379. name: "Macro",
  11380. height: math.unit(3810, "feet")
  11381. },
  11382. {
  11383. name: "Megamacro",
  11384. height: math.unit(500, "miles")
  11385. },
  11386. ]
  11387. ))
  11388. characterMakers.push(() => makeCharacter(
  11389. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11390. {
  11391. front: {
  11392. height: math.unit(1.8796, "m"),
  11393. weight: math.unit(230, "lb"),
  11394. name: "Front",
  11395. image: {
  11396. source: "./media/characters/colin-t/front.svg",
  11397. extra: 1272 / 1193,
  11398. bottom: 0.07
  11399. }
  11400. },
  11401. },
  11402. [
  11403. {
  11404. name: "Micro",
  11405. height: math.unit(0.571, "meters")
  11406. },
  11407. {
  11408. name: "Normal",
  11409. height: math.unit(1.8796, "meters"),
  11410. default: true
  11411. },
  11412. {
  11413. name: "Tall",
  11414. height: math.unit(4, "meters")
  11415. },
  11416. {
  11417. name: "Macro",
  11418. height: math.unit(67.241, "meters")
  11419. },
  11420. {
  11421. name: "Megamacro",
  11422. height: math.unit(371.856, "meters")
  11423. },
  11424. {
  11425. name: "Planetary",
  11426. height: math.unit(12631.5689, "km")
  11427. },
  11428. ]
  11429. ))
  11430. characterMakers.push(() => makeCharacter(
  11431. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11432. {
  11433. front: {
  11434. height: math.unit(1.85, "meters"),
  11435. weight: math.unit(80, "kg"),
  11436. name: "Front",
  11437. image: {
  11438. source: "./media/characters/matvei/front.svg",
  11439. extra: 614 / 594,
  11440. bottom: 0.01
  11441. }
  11442. },
  11443. },
  11444. [
  11445. {
  11446. name: "Normal",
  11447. height: math.unit(1.85, "meters"),
  11448. default: true
  11449. },
  11450. ]
  11451. ))
  11452. characterMakers.push(() => makeCharacter(
  11453. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11454. {
  11455. front: {
  11456. height: math.unit(5 + 9 / 12, "feet"),
  11457. weight: math.unit(70, "lb"),
  11458. name: "Front",
  11459. image: {
  11460. source: "./media/characters/quincy/front.svg",
  11461. extra: 3041 / 2751
  11462. }
  11463. },
  11464. back: {
  11465. height: math.unit(5 + 9 / 12, "feet"),
  11466. weight: math.unit(70, "lb"),
  11467. name: "Back",
  11468. image: {
  11469. source: "./media/characters/quincy/back.svg",
  11470. extra: 3041 / 2751
  11471. }
  11472. },
  11473. flying: {
  11474. height: math.unit(5 + 4 / 12, "feet"),
  11475. weight: math.unit(70, "lb"),
  11476. name: "Flying",
  11477. image: {
  11478. source: "./media/characters/quincy/flying.svg",
  11479. extra: 1044 / 930
  11480. }
  11481. },
  11482. },
  11483. [
  11484. {
  11485. name: "Micro",
  11486. height: math.unit(3, "cm")
  11487. },
  11488. {
  11489. name: "Normal",
  11490. height: math.unit(5 + 9 / 12, "feet")
  11491. },
  11492. {
  11493. name: "Macro",
  11494. height: math.unit(200, "meters"),
  11495. default: true
  11496. },
  11497. {
  11498. name: "Megamacro",
  11499. height: math.unit(1000, "meters")
  11500. },
  11501. ]
  11502. ))
  11503. characterMakers.push(() => makeCharacter(
  11504. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11505. {
  11506. front: {
  11507. height: math.unit(4 + 7 / 12, "feet"),
  11508. weight: math.unit(50, "lb"),
  11509. name: "Front",
  11510. image: {
  11511. source: "./media/characters/vanrel/front.svg",
  11512. extra: 1,
  11513. bottom: 0.02
  11514. }
  11515. },
  11516. frontAlt: {
  11517. height: math.unit(4 + 7 / 12, "feet"),
  11518. weight: math.unit(50, "lb"),
  11519. name: "Front-alt",
  11520. image: {
  11521. source: "./media/characters/vanrel/front-alt.svg",
  11522. extra: 1,
  11523. bottom: 15 / 1511
  11524. }
  11525. },
  11526. elemental: {
  11527. height: math.unit(3, "feet"),
  11528. weight: math.unit(50, "lb"),
  11529. name: "Elemental",
  11530. image: {
  11531. source: "./media/characters/vanrel/elemental.svg",
  11532. extra: 192.3 / 162.8,
  11533. bottom: 1.79 / 194.17
  11534. }
  11535. },
  11536. side: {
  11537. height: math.unit(4 + 7 / 12, "feet"),
  11538. weight: math.unit(50, "lb"),
  11539. name: "Side",
  11540. image: {
  11541. source: "./media/characters/vanrel/side.svg",
  11542. extra: 1,
  11543. bottom: 0.025
  11544. }
  11545. },
  11546. tome: {
  11547. height: math.unit(1.35, "feet"),
  11548. weight: math.unit(10, "lb"),
  11549. name: "Vanrel's Tome",
  11550. rename: true,
  11551. image: {
  11552. source: "./media/characters/vanrel/tome.svg"
  11553. }
  11554. },
  11555. beans: {
  11556. height: math.unit(0.89, "feet"),
  11557. name: "Beans",
  11558. image: {
  11559. source: "./media/characters/vanrel/beans.svg"
  11560. }
  11561. },
  11562. },
  11563. [
  11564. {
  11565. name: "Normal",
  11566. height: math.unit(4 + 7 / 12, "feet"),
  11567. default: true
  11568. },
  11569. ]
  11570. ))
  11571. characterMakers.push(() => makeCharacter(
  11572. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11573. {
  11574. front: {
  11575. height: math.unit(7 + 5 / 12, "feet"),
  11576. weight: math.unit(150, "lb"),
  11577. name: "Front",
  11578. image: {
  11579. source: "./media/characters/kuiper-vanrel/front.svg",
  11580. extra: 1118 / 1068,
  11581. bottom: 0.09
  11582. }
  11583. },
  11584. foot: {
  11585. height: math.unit(0.55, "meters"),
  11586. name: "Foot",
  11587. image: {
  11588. source: "./media/characters/kuiper-vanrel/foot.svg",
  11589. }
  11590. },
  11591. battle: {
  11592. height: math.unit(6.824, "feet"),
  11593. weight: math.unit(150, "lb"),
  11594. name: "Battle",
  11595. image: {
  11596. source: "./media/characters/kuiper-vanrel/battle.svg",
  11597. extra: 1466 / 1327,
  11598. bottom: 29 / 1492.5
  11599. }
  11600. },
  11601. battleAlt: {
  11602. height: math.unit(6.824, "feet"),
  11603. weight: math.unit(150, "lb"),
  11604. name: "Battle (Alt)",
  11605. image: {
  11606. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11607. extra: 2081 / 1965,
  11608. bottom: 40 / 2121
  11609. }
  11610. },
  11611. },
  11612. [
  11613. {
  11614. name: "Normal",
  11615. height: math.unit(7 + 5 / 12, "feet"),
  11616. default: true
  11617. },
  11618. ]
  11619. ))
  11620. characterMakers.push(() => makeCharacter(
  11621. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11622. {
  11623. front: {
  11624. height: math.unit(8 + 5 / 12, "feet"),
  11625. weight: math.unit(150, "lb"),
  11626. name: "Front",
  11627. image: {
  11628. source: "./media/characters/keset-vanrel/front.svg",
  11629. extra: 1150 / 1084,
  11630. bottom: 0.05
  11631. }
  11632. },
  11633. hand: {
  11634. height: math.unit(0.6, "meters"),
  11635. name: "Hand",
  11636. image: {
  11637. source: "./media/characters/keset-vanrel/hand.svg"
  11638. }
  11639. },
  11640. foot: {
  11641. height: math.unit(0.94978, "meters"),
  11642. name: "Foot",
  11643. image: {
  11644. source: "./media/characters/keset-vanrel/foot.svg"
  11645. }
  11646. },
  11647. battle: {
  11648. height: math.unit(7.408, "feet"),
  11649. weight: math.unit(150, "lb"),
  11650. name: "Battle",
  11651. image: {
  11652. source: "./media/characters/keset-vanrel/battle.svg",
  11653. extra: 1890 / 1386,
  11654. bottom: 73.28 / 1970
  11655. }
  11656. },
  11657. },
  11658. [
  11659. {
  11660. name: "Normal",
  11661. height: math.unit(8 + 5 / 12, "feet"),
  11662. default: true
  11663. },
  11664. ]
  11665. ))
  11666. characterMakers.push(() => makeCharacter(
  11667. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11668. {
  11669. front: {
  11670. height: math.unit(6, "feet"),
  11671. weight: math.unit(150, "lb"),
  11672. name: "Front",
  11673. image: {
  11674. source: "./media/characters/neos/front.svg",
  11675. extra: 1696 / 992,
  11676. bottom: 0.14
  11677. }
  11678. },
  11679. },
  11680. [
  11681. {
  11682. name: "Normal",
  11683. height: math.unit(54, "cm"),
  11684. default: true
  11685. },
  11686. {
  11687. name: "Macro",
  11688. height: math.unit(100, "m")
  11689. },
  11690. {
  11691. name: "Megamacro",
  11692. height: math.unit(10, "km")
  11693. },
  11694. {
  11695. name: "Megamacro+",
  11696. height: math.unit(100, "km")
  11697. },
  11698. {
  11699. name: "Gigamacro",
  11700. height: math.unit(100, "Mm")
  11701. },
  11702. {
  11703. name: "Teramacro",
  11704. height: math.unit(100, "Gm")
  11705. },
  11706. {
  11707. name: "Examacro",
  11708. height: math.unit(100, "Em")
  11709. },
  11710. {
  11711. name: "Godly",
  11712. height: math.unit(10000, "Ym")
  11713. },
  11714. {
  11715. name: "Beyond Godly",
  11716. height: math.unit(25, "multiverses")
  11717. },
  11718. ]
  11719. ))
  11720. characterMakers.push(() => makeCharacter(
  11721. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11722. {
  11723. feminine: {
  11724. height: math.unit(5, "feet"),
  11725. weight: math.unit(100, "lb"),
  11726. name: "Feminine",
  11727. image: {
  11728. source: "./media/characters/sammy-mouse/feminine.svg",
  11729. extra: 2526 / 2425,
  11730. bottom: 0.123
  11731. }
  11732. },
  11733. masculine: {
  11734. height: math.unit(5, "feet"),
  11735. weight: math.unit(100, "lb"),
  11736. name: "Masculine",
  11737. image: {
  11738. source: "./media/characters/sammy-mouse/masculine.svg",
  11739. extra: 2526 / 2425,
  11740. bottom: 0.123
  11741. }
  11742. },
  11743. },
  11744. [
  11745. {
  11746. name: "Micro",
  11747. height: math.unit(5, "inches")
  11748. },
  11749. {
  11750. name: "Normal",
  11751. height: math.unit(5, "feet"),
  11752. default: true
  11753. },
  11754. {
  11755. name: "Macro",
  11756. height: math.unit(60, "feet")
  11757. },
  11758. ]
  11759. ))
  11760. characterMakers.push(() => makeCharacter(
  11761. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11762. {
  11763. front: {
  11764. height: math.unit(4, "feet"),
  11765. weight: math.unit(50, "lb"),
  11766. name: "Front",
  11767. image: {
  11768. source: "./media/characters/kole/front.svg",
  11769. extra: 1423 / 1303,
  11770. bottom: 0.025
  11771. }
  11772. },
  11773. back: {
  11774. height: math.unit(4, "feet"),
  11775. weight: math.unit(50, "lb"),
  11776. name: "Back",
  11777. image: {
  11778. source: "./media/characters/kole/back.svg",
  11779. extra: 1426 / 1280,
  11780. bottom: 0.02
  11781. }
  11782. },
  11783. },
  11784. [
  11785. {
  11786. name: "Normal",
  11787. height: math.unit(4, "feet"),
  11788. default: true
  11789. },
  11790. ]
  11791. ))
  11792. characterMakers.push(() => makeCharacter(
  11793. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11794. {
  11795. front: {
  11796. height: math.unit(2 + 6 / 12, "feet"),
  11797. weight: math.unit(20, "lb"),
  11798. name: "Front",
  11799. image: {
  11800. source: "./media/characters/rufran/front.svg",
  11801. extra: 2041 / 1839,
  11802. bottom: 0.055
  11803. }
  11804. },
  11805. back: {
  11806. height: math.unit(2 + 6 / 12, "feet"),
  11807. weight: math.unit(20, "lb"),
  11808. name: "Back",
  11809. image: {
  11810. source: "./media/characters/rufran/back.svg",
  11811. extra: 2054 / 1839,
  11812. bottom: 0.01
  11813. }
  11814. },
  11815. hand: {
  11816. height: math.unit(0.2166, "meters"),
  11817. name: "Hand",
  11818. image: {
  11819. source: "./media/characters/rufran/hand.svg"
  11820. }
  11821. },
  11822. foot: {
  11823. height: math.unit(0.185, "meters"),
  11824. name: "Foot",
  11825. image: {
  11826. source: "./media/characters/rufran/foot.svg"
  11827. }
  11828. },
  11829. },
  11830. [
  11831. {
  11832. name: "Micro",
  11833. height: math.unit(1, "inch")
  11834. },
  11835. {
  11836. name: "Normal",
  11837. height: math.unit(2 + 6 / 12, "feet"),
  11838. default: true
  11839. },
  11840. {
  11841. name: "Big",
  11842. height: math.unit(60, "feet")
  11843. },
  11844. {
  11845. name: "Macro",
  11846. height: math.unit(325, "feet")
  11847. },
  11848. ]
  11849. ))
  11850. characterMakers.push(() => makeCharacter(
  11851. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11852. {
  11853. front: {
  11854. height: math.unit(0.3, "meters"),
  11855. weight: math.unit(3.5, "kg"),
  11856. name: "Front",
  11857. image: {
  11858. source: "./media/characters/chip/front.svg",
  11859. extra: 748 / 674
  11860. }
  11861. },
  11862. },
  11863. [
  11864. {
  11865. name: "Micro",
  11866. height: math.unit(1, "inch"),
  11867. default: true
  11868. },
  11869. ]
  11870. ))
  11871. characterMakers.push(() => makeCharacter(
  11872. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11873. {
  11874. side: {
  11875. height: math.unit(2.3, "meters"),
  11876. weight: math.unit(3500, "lb"),
  11877. name: "Side",
  11878. image: {
  11879. source: "./media/characters/torvid/side.svg",
  11880. extra: 1972 / 722,
  11881. bottom: 0.035
  11882. }
  11883. },
  11884. },
  11885. [
  11886. {
  11887. name: "Normal",
  11888. height: math.unit(2.3, "meters"),
  11889. default: true
  11890. },
  11891. ]
  11892. ))
  11893. characterMakers.push(() => makeCharacter(
  11894. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11895. {
  11896. front: {
  11897. height: math.unit(2, "meters"),
  11898. weight: math.unit(150.5, "kg"),
  11899. name: "Front",
  11900. image: {
  11901. source: "./media/characters/susan/front.svg",
  11902. extra: 693 / 635,
  11903. bottom: 0.05
  11904. }
  11905. },
  11906. },
  11907. [
  11908. {
  11909. name: "Megamacro",
  11910. height: math.unit(505, "miles"),
  11911. default: true
  11912. },
  11913. ]
  11914. ))
  11915. characterMakers.push(() => makeCharacter(
  11916. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11917. {
  11918. front: {
  11919. height: math.unit(6, "feet"),
  11920. weight: math.unit(150, "lb"),
  11921. name: "Front",
  11922. image: {
  11923. source: "./media/characters/raindrops/front.svg",
  11924. extra: 2655 / 2461,
  11925. bottom: 49 / 2705
  11926. }
  11927. },
  11928. back: {
  11929. height: math.unit(6, "feet"),
  11930. weight: math.unit(150, "lb"),
  11931. name: "Back",
  11932. image: {
  11933. source: "./media/characters/raindrops/back.svg",
  11934. extra: 2574 / 2400,
  11935. bottom: 65 / 2634
  11936. }
  11937. },
  11938. },
  11939. [
  11940. {
  11941. name: "Micro",
  11942. height: math.unit(6, "inches")
  11943. },
  11944. {
  11945. name: "Normal",
  11946. height: math.unit(6 + 2 / 12, "feet")
  11947. },
  11948. {
  11949. name: "Macro",
  11950. height: math.unit(131, "feet"),
  11951. default: true
  11952. },
  11953. {
  11954. name: "Megamacro",
  11955. height: math.unit(15, "miles")
  11956. },
  11957. {
  11958. name: "Gigamacro",
  11959. height: math.unit(4000, "miles")
  11960. },
  11961. {
  11962. name: "Teramacro",
  11963. height: math.unit(315000, "miles")
  11964. },
  11965. ]
  11966. ))
  11967. characterMakers.push(() => makeCharacter(
  11968. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11969. {
  11970. front: {
  11971. height: math.unit(2.794, "meters"),
  11972. weight: math.unit(325, "kg"),
  11973. name: "Front",
  11974. image: {
  11975. source: "./media/characters/tezwa/front.svg",
  11976. extra: 2083 / 1906,
  11977. bottom: 0.031
  11978. }
  11979. },
  11980. foot: {
  11981. height: math.unit(0.687, "meters"),
  11982. name: "Foot",
  11983. image: {
  11984. source: "./media/characters/tezwa/foot.svg"
  11985. }
  11986. },
  11987. },
  11988. [
  11989. {
  11990. name: "Normal",
  11991. height: math.unit(9 + 2 / 12, "feet"),
  11992. default: true
  11993. },
  11994. ]
  11995. ))
  11996. characterMakers.push(() => makeCharacter(
  11997. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11998. {
  11999. front: {
  12000. height: math.unit(58, "feet"),
  12001. weight: math.unit(89000, "lb"),
  12002. name: "Front",
  12003. image: {
  12004. source: "./media/characters/typhus/front.svg",
  12005. extra: 816 / 800,
  12006. bottom: 0.065
  12007. }
  12008. },
  12009. },
  12010. [
  12011. {
  12012. name: "Macro",
  12013. height: math.unit(58, "feet"),
  12014. default: true
  12015. },
  12016. ]
  12017. ))
  12018. characterMakers.push(() => makeCharacter(
  12019. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12020. {
  12021. front: {
  12022. height: math.unit(12, "feet"),
  12023. weight: math.unit(6, "tonnes"),
  12024. name: "Front",
  12025. image: {
  12026. source: "./media/characters/lyra-von-wulf/front.svg",
  12027. extra: 1,
  12028. bottom: 0.10
  12029. }
  12030. },
  12031. frontMecha: {
  12032. height: math.unit(12, "feet"),
  12033. weight: math.unit(12, "tonnes"),
  12034. name: "Front (Mecha)",
  12035. image: {
  12036. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12037. extra: 1,
  12038. bottom: 0.042
  12039. }
  12040. },
  12041. maw: {
  12042. height: math.unit(2.2, "feet"),
  12043. name: "Maw",
  12044. image: {
  12045. source: "./media/characters/lyra-von-wulf/maw.svg"
  12046. }
  12047. },
  12048. },
  12049. [
  12050. {
  12051. name: "Normal",
  12052. height: math.unit(12, "feet"),
  12053. default: true
  12054. },
  12055. {
  12056. name: "Classic",
  12057. height: math.unit(50, "feet")
  12058. },
  12059. {
  12060. name: "Macro",
  12061. height: math.unit(500, "feet")
  12062. },
  12063. {
  12064. name: "Megamacro",
  12065. height: math.unit(1, "mile")
  12066. },
  12067. {
  12068. name: "Gigamacro",
  12069. height: math.unit(400, "miles")
  12070. },
  12071. {
  12072. name: "Teramacro",
  12073. height: math.unit(22000, "miles")
  12074. },
  12075. {
  12076. name: "Solarmacro",
  12077. height: math.unit(8600000, "miles")
  12078. },
  12079. {
  12080. name: "Galactic",
  12081. height: math.unit(1057000, "lightyears")
  12082. },
  12083. ]
  12084. ))
  12085. characterMakers.push(() => makeCharacter(
  12086. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12087. {
  12088. front: {
  12089. height: math.unit(6 + 10 / 12, "feet"),
  12090. weight: math.unit(150, "lb"),
  12091. name: "Front",
  12092. image: {
  12093. source: "./media/characters/dixon/front.svg",
  12094. extra: 3361 / 3209,
  12095. bottom: 0.01
  12096. }
  12097. },
  12098. },
  12099. [
  12100. {
  12101. name: "Normal",
  12102. height: math.unit(6 + 10 / 12, "feet"),
  12103. default: true
  12104. },
  12105. {
  12106. name: "Big",
  12107. height: math.unit(12, "meters")
  12108. },
  12109. {
  12110. name: "Macro",
  12111. height: math.unit(500, "meters")
  12112. },
  12113. {
  12114. name: "Megamacro",
  12115. height: math.unit(2, "km")
  12116. },
  12117. ]
  12118. ))
  12119. characterMakers.push(() => makeCharacter(
  12120. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12121. {
  12122. front: {
  12123. height: math.unit(185, "cm"),
  12124. weight: math.unit(68, "kg"),
  12125. name: "Front",
  12126. image: {
  12127. source: "./media/characters/kauko/front.svg",
  12128. extra: 1455 / 1421,
  12129. bottom: 0.03
  12130. }
  12131. },
  12132. back: {
  12133. height: math.unit(185, "cm"),
  12134. weight: math.unit(68, "kg"),
  12135. name: "Back",
  12136. image: {
  12137. source: "./media/characters/kauko/back.svg",
  12138. extra: 1455 / 1421,
  12139. bottom: 0.004
  12140. }
  12141. },
  12142. },
  12143. [
  12144. {
  12145. name: "Normal",
  12146. height: math.unit(185, "cm"),
  12147. default: true
  12148. },
  12149. ]
  12150. ))
  12151. characterMakers.push(() => makeCharacter(
  12152. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12153. {
  12154. front: {
  12155. height: math.unit(6, "feet"),
  12156. weight: math.unit(150, "kg"),
  12157. name: "Front",
  12158. image: {
  12159. source: "./media/characters/varg/front.svg",
  12160. extra: 1108 / 1018,
  12161. bottom: 0.0375
  12162. }
  12163. },
  12164. },
  12165. [
  12166. {
  12167. name: "Normal",
  12168. height: math.unit(5, "meters")
  12169. },
  12170. {
  12171. name: "Macro",
  12172. height: math.unit(200, "meters")
  12173. },
  12174. {
  12175. name: "Megamacro",
  12176. height: math.unit(20, "kilometers")
  12177. },
  12178. {
  12179. name: "True Size",
  12180. height: math.unit(211, "km"),
  12181. default: true
  12182. },
  12183. {
  12184. name: "Gigamacro",
  12185. height: math.unit(1000, "km")
  12186. },
  12187. {
  12188. name: "Gigamacro+",
  12189. height: math.unit(8000, "km")
  12190. },
  12191. {
  12192. name: "Teramacro",
  12193. height: math.unit(1000000, "km")
  12194. },
  12195. ]
  12196. ))
  12197. characterMakers.push(() => makeCharacter(
  12198. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12199. {
  12200. front: {
  12201. height: math.unit(7 + 7 / 12, "feet"),
  12202. weight: math.unit(267, "lb"),
  12203. name: "Front",
  12204. image: {
  12205. source: "./media/characters/dayza/front.svg",
  12206. extra: 1262 / 1200,
  12207. bottom: 0.035
  12208. }
  12209. },
  12210. side: {
  12211. height: math.unit(7 + 7 / 12, "feet"),
  12212. weight: math.unit(267, "lb"),
  12213. name: "Side",
  12214. image: {
  12215. source: "./media/characters/dayza/side.svg",
  12216. extra: 1295 / 1245,
  12217. bottom: 0.05
  12218. }
  12219. },
  12220. back: {
  12221. height: math.unit(7 + 7 / 12, "feet"),
  12222. weight: math.unit(267, "lb"),
  12223. name: "Back",
  12224. image: {
  12225. source: "./media/characters/dayza/back.svg",
  12226. extra: 1241 / 1170
  12227. }
  12228. },
  12229. },
  12230. [
  12231. {
  12232. name: "Normal",
  12233. height: math.unit(7 + 7 / 12, "feet"),
  12234. default: true
  12235. },
  12236. {
  12237. name: "Macro",
  12238. height: math.unit(155, "feet")
  12239. },
  12240. ]
  12241. ))
  12242. characterMakers.push(() => makeCharacter(
  12243. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12244. {
  12245. front: {
  12246. height: math.unit(6 + 5 / 12, "feet"),
  12247. weight: math.unit(160, "lb"),
  12248. name: "Front",
  12249. image: {
  12250. source: "./media/characters/xanthos/front.svg",
  12251. extra: 1,
  12252. bottom: 0.04
  12253. }
  12254. },
  12255. back: {
  12256. height: math.unit(6 + 5 / 12, "feet"),
  12257. weight: math.unit(160, "lb"),
  12258. name: "Back",
  12259. image: {
  12260. source: "./media/characters/xanthos/back.svg",
  12261. extra: 1,
  12262. bottom: 0.03
  12263. }
  12264. },
  12265. hand: {
  12266. height: math.unit(0.928, "feet"),
  12267. name: "Hand",
  12268. image: {
  12269. source: "./media/characters/xanthos/hand.svg"
  12270. }
  12271. },
  12272. foot: {
  12273. height: math.unit(1.286, "feet"),
  12274. name: "Foot",
  12275. image: {
  12276. source: "./media/characters/xanthos/foot.svg"
  12277. }
  12278. },
  12279. },
  12280. [
  12281. {
  12282. name: "Normal",
  12283. height: math.unit(6 + 5 / 12, "feet"),
  12284. default: true
  12285. },
  12286. {
  12287. name: "Normal+",
  12288. height: math.unit(6, "meters")
  12289. },
  12290. {
  12291. name: "Macro",
  12292. height: math.unit(40, "feet")
  12293. },
  12294. {
  12295. name: "Macro+",
  12296. height: math.unit(200, "meters")
  12297. },
  12298. {
  12299. name: "Megamacro",
  12300. height: math.unit(20, "km")
  12301. },
  12302. {
  12303. name: "Megamacro+",
  12304. height: math.unit(100, "km")
  12305. },
  12306. ]
  12307. ))
  12308. characterMakers.push(() => makeCharacter(
  12309. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12310. {
  12311. front: {
  12312. height: math.unit(6 + 3 / 12, "feet"),
  12313. weight: math.unit(215, "lb"),
  12314. name: "Front",
  12315. image: {
  12316. source: "./media/characters/grynn/front.svg",
  12317. extra: 4627 / 4209,
  12318. bottom: 0.047
  12319. }
  12320. },
  12321. },
  12322. [
  12323. {
  12324. name: "Micro",
  12325. height: math.unit(6, "inches")
  12326. },
  12327. {
  12328. name: "Normal",
  12329. height: math.unit(6 + 3 / 12, "feet"),
  12330. default: true
  12331. },
  12332. {
  12333. name: "Big",
  12334. height: math.unit(104, "feet")
  12335. },
  12336. {
  12337. name: "Macro",
  12338. height: math.unit(944, "feet")
  12339. },
  12340. {
  12341. name: "Macro+",
  12342. height: math.unit(9480, "feet")
  12343. },
  12344. {
  12345. name: "Megamacro",
  12346. height: math.unit(78752, "feet")
  12347. },
  12348. {
  12349. name: "Megamacro+",
  12350. height: math.unit(630128, "feet")
  12351. },
  12352. {
  12353. name: "Megamacro++",
  12354. height: math.unit(3150695, "feet")
  12355. },
  12356. ]
  12357. ))
  12358. characterMakers.push(() => makeCharacter(
  12359. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12360. {
  12361. front: {
  12362. height: math.unit(7 + 5 / 12, "feet"),
  12363. weight: math.unit(450, "lb"),
  12364. name: "Front",
  12365. image: {
  12366. source: "./media/characters/mocha-aura/front.svg",
  12367. extra: 1907 / 1817,
  12368. bottom: 0.04
  12369. }
  12370. },
  12371. back: {
  12372. height: math.unit(7 + 5 / 12, "feet"),
  12373. weight: math.unit(450, "lb"),
  12374. name: "Back",
  12375. image: {
  12376. source: "./media/characters/mocha-aura/back.svg",
  12377. extra: 1900 / 1825,
  12378. bottom: 0.045
  12379. }
  12380. },
  12381. },
  12382. [
  12383. {
  12384. name: "Nano",
  12385. height: math.unit(1, "nm")
  12386. },
  12387. {
  12388. name: "Megamicro",
  12389. height: math.unit(1, "mm")
  12390. },
  12391. {
  12392. name: "Micro",
  12393. height: math.unit(3, "inches")
  12394. },
  12395. {
  12396. name: "Normal",
  12397. height: math.unit(7 + 5 / 12, "feet"),
  12398. default: true
  12399. },
  12400. {
  12401. name: "Macro",
  12402. height: math.unit(30, "feet")
  12403. },
  12404. {
  12405. name: "Megamacro",
  12406. height: math.unit(3500, "feet")
  12407. },
  12408. {
  12409. name: "Teramacro",
  12410. height: math.unit(500000, "miles")
  12411. },
  12412. {
  12413. name: "Petamacro",
  12414. height: math.unit(50000000000000000, "parsecs")
  12415. },
  12416. ]
  12417. ))
  12418. characterMakers.push(() => makeCharacter(
  12419. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12420. {
  12421. front: {
  12422. height: math.unit(6, "feet"),
  12423. weight: math.unit(150, "lb"),
  12424. name: "Front",
  12425. image: {
  12426. source: "./media/characters/ilisha-devya/front.svg",
  12427. extra: 1,
  12428. bottom: 0.175
  12429. }
  12430. },
  12431. back: {
  12432. height: math.unit(6, "feet"),
  12433. weight: math.unit(150, "lb"),
  12434. name: "Back",
  12435. image: {
  12436. source: "./media/characters/ilisha-devya/back.svg",
  12437. extra: 1,
  12438. bottom: 0.015
  12439. }
  12440. },
  12441. },
  12442. [
  12443. {
  12444. name: "Macro",
  12445. height: math.unit(500, "feet"),
  12446. default: true
  12447. },
  12448. {
  12449. name: "Megamacro",
  12450. height: math.unit(10, "miles")
  12451. },
  12452. {
  12453. name: "Gigamacro",
  12454. height: math.unit(100000, "miles")
  12455. },
  12456. {
  12457. name: "Examacro",
  12458. height: math.unit(1e9, "lightyears")
  12459. },
  12460. {
  12461. name: "Omniversal",
  12462. height: math.unit(1e33, "lightyears")
  12463. },
  12464. {
  12465. name: "Beyond Infinite",
  12466. height: math.unit(1e100, "lightyears")
  12467. },
  12468. ]
  12469. ))
  12470. characterMakers.push(() => makeCharacter(
  12471. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12472. {
  12473. Side: {
  12474. height: math.unit(6, "feet"),
  12475. weight: math.unit(150, "lb"),
  12476. name: "Side",
  12477. image: {
  12478. source: "./media/characters/mira/side.svg",
  12479. extra: 900 / 799,
  12480. bottom: 0.02
  12481. }
  12482. },
  12483. },
  12484. [
  12485. {
  12486. name: "Human Size",
  12487. height: math.unit(6, "feet")
  12488. },
  12489. {
  12490. name: "Macro",
  12491. height: math.unit(100, "feet"),
  12492. default: true
  12493. },
  12494. {
  12495. name: "Megamacro",
  12496. height: math.unit(10, "miles")
  12497. },
  12498. {
  12499. name: "Gigamacro",
  12500. height: math.unit(25000, "miles")
  12501. },
  12502. {
  12503. name: "Teramacro",
  12504. height: math.unit(300, "AU")
  12505. },
  12506. {
  12507. name: "Full Size",
  12508. height: math.unit(4.5e10, "lightyears")
  12509. },
  12510. ]
  12511. ))
  12512. characterMakers.push(() => makeCharacter(
  12513. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12514. {
  12515. front: {
  12516. height: math.unit(6, "feet"),
  12517. weight: math.unit(150, "lb"),
  12518. name: "Front",
  12519. image: {
  12520. source: "./media/characters/holly/front.svg",
  12521. extra: 639 / 606
  12522. }
  12523. },
  12524. back: {
  12525. height: math.unit(6, "feet"),
  12526. weight: math.unit(150, "lb"),
  12527. name: "Back",
  12528. image: {
  12529. source: "./media/characters/holly/back.svg",
  12530. extra: 623 / 598
  12531. }
  12532. },
  12533. frontWorking: {
  12534. height: math.unit(6, "feet"),
  12535. weight: math.unit(150, "lb"),
  12536. name: "Front (Working)",
  12537. image: {
  12538. source: "./media/characters/holly/front-working.svg",
  12539. extra: 607 / 577,
  12540. bottom: 0.048
  12541. }
  12542. },
  12543. },
  12544. [
  12545. {
  12546. name: "Normal",
  12547. height: math.unit(12 + 3 / 12, "feet"),
  12548. default: true
  12549. },
  12550. ]
  12551. ))
  12552. characterMakers.push(() => makeCharacter(
  12553. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12554. {
  12555. front: {
  12556. height: math.unit(6, "feet"),
  12557. weight: math.unit(150, "lb"),
  12558. name: "Front",
  12559. image: {
  12560. source: "./media/characters/porter/front.svg",
  12561. extra: 1,
  12562. bottom: 0.01
  12563. }
  12564. },
  12565. frontRobes: {
  12566. height: math.unit(6, "feet"),
  12567. weight: math.unit(150, "lb"),
  12568. name: "Front (Robes)",
  12569. image: {
  12570. source: "./media/characters/porter/front-robes.svg",
  12571. extra: 1.01,
  12572. bottom: 0.01
  12573. }
  12574. },
  12575. },
  12576. [
  12577. {
  12578. name: "Normal",
  12579. height: math.unit(11 + 9 / 12, "feet"),
  12580. default: true
  12581. },
  12582. ]
  12583. ))
  12584. characterMakers.push(() => makeCharacter(
  12585. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12586. {
  12587. legendary: {
  12588. height: math.unit(6, "feet"),
  12589. weight: math.unit(150, "lb"),
  12590. name: "Legendary",
  12591. image: {
  12592. source: "./media/characters/lucy/legendary.svg",
  12593. extra: 1355 / 1100,
  12594. bottom: 0.045
  12595. }
  12596. },
  12597. },
  12598. [
  12599. {
  12600. name: "Legendary",
  12601. height: math.unit(86882 * 2, "miles"),
  12602. default: true
  12603. },
  12604. ]
  12605. ))
  12606. characterMakers.push(() => makeCharacter(
  12607. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12608. {
  12609. front: {
  12610. height: math.unit(6, "feet"),
  12611. weight: math.unit(150, "lb"),
  12612. name: "Front",
  12613. image: {
  12614. source: "./media/characters/drusilla/front.svg",
  12615. extra: 678 / 635,
  12616. bottom: 0.03
  12617. }
  12618. },
  12619. back: {
  12620. height: math.unit(6, "feet"),
  12621. weight: math.unit(150, "lb"),
  12622. name: "Back",
  12623. image: {
  12624. source: "./media/characters/drusilla/back.svg",
  12625. extra: 678 / 635,
  12626. bottom: 0.005
  12627. }
  12628. },
  12629. },
  12630. [
  12631. {
  12632. name: "Macro",
  12633. height: math.unit(100, "feet")
  12634. },
  12635. {
  12636. name: "Canon Height",
  12637. height: math.unit(2000, "feet"),
  12638. default: true
  12639. },
  12640. ]
  12641. ))
  12642. characterMakers.push(() => makeCharacter(
  12643. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12644. {
  12645. front: {
  12646. height: math.unit(6, "feet"),
  12647. weight: math.unit(180, "lb"),
  12648. name: "Front",
  12649. image: {
  12650. source: "./media/characters/renard-thatch/front.svg",
  12651. extra: 2411 / 2275,
  12652. bottom: 0.01
  12653. }
  12654. },
  12655. frontPosing: {
  12656. height: math.unit(6, "feet"),
  12657. weight: math.unit(180, "lb"),
  12658. name: "Front (Posing)",
  12659. image: {
  12660. source: "./media/characters/renard-thatch/front-posing.svg",
  12661. extra: 2381 / 2261,
  12662. bottom: 0.01
  12663. }
  12664. },
  12665. back: {
  12666. height: math.unit(6, "feet"),
  12667. weight: math.unit(180, "lb"),
  12668. name: "Back",
  12669. image: {
  12670. source: "./media/characters/renard-thatch/back.svg",
  12671. extra: 2428 / 2288
  12672. }
  12673. },
  12674. },
  12675. [
  12676. {
  12677. name: "Micro",
  12678. height: math.unit(3, "inches")
  12679. },
  12680. {
  12681. name: "Default",
  12682. height: math.unit(6, "feet"),
  12683. default: true
  12684. },
  12685. {
  12686. name: "Macro",
  12687. height: math.unit(75, "feet")
  12688. },
  12689. ]
  12690. ))
  12691. characterMakers.push(() => makeCharacter(
  12692. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12693. {
  12694. front: {
  12695. height: math.unit(1450, "feet"),
  12696. weight: math.unit(1.21e6, "tons"),
  12697. name: "Front",
  12698. image: {
  12699. source: "./media/characters/sekvra/front.svg",
  12700. extra: 1,
  12701. bottom: 0.03
  12702. }
  12703. },
  12704. frontClothed: {
  12705. height: math.unit(1450, "feet"),
  12706. weight: math.unit(1.21e6, "tons"),
  12707. name: "Front (Clothed)",
  12708. image: {
  12709. source: "./media/characters/sekvra/front-clothed.svg",
  12710. extra: 1,
  12711. bottom: 0.03
  12712. }
  12713. },
  12714. side: {
  12715. height: math.unit(1450, "feet"),
  12716. weight: math.unit(1.21e6, "tons"),
  12717. name: "Side",
  12718. image: {
  12719. source: "./media/characters/sekvra/side.svg",
  12720. extra: 1,
  12721. bottom: 0.025
  12722. }
  12723. },
  12724. back: {
  12725. height: math.unit(1450, "feet"),
  12726. weight: math.unit(1.21e6, "tons"),
  12727. name: "Back",
  12728. image: {
  12729. source: "./media/characters/sekvra/back.svg",
  12730. extra: 1,
  12731. bottom: 0.005
  12732. }
  12733. },
  12734. },
  12735. [
  12736. {
  12737. name: "Macro",
  12738. height: math.unit(1450, "feet"),
  12739. default: true
  12740. },
  12741. {
  12742. name: "Megamacro",
  12743. height: math.unit(15000, "feet")
  12744. },
  12745. ]
  12746. ))
  12747. characterMakers.push(() => makeCharacter(
  12748. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12749. {
  12750. front: {
  12751. height: math.unit(6, "feet"),
  12752. weight: math.unit(150, "lb"),
  12753. name: "Front",
  12754. image: {
  12755. source: "./media/characters/carmine/front.svg",
  12756. extra: 1,
  12757. bottom: 0.035
  12758. }
  12759. },
  12760. frontArmor: {
  12761. height: math.unit(6, "feet"),
  12762. weight: math.unit(150, "lb"),
  12763. name: "Front (Armor)",
  12764. image: {
  12765. source: "./media/characters/carmine/front-armor.svg",
  12766. extra: 1,
  12767. bottom: 0.035
  12768. }
  12769. },
  12770. },
  12771. [
  12772. {
  12773. name: "Large",
  12774. height: math.unit(1, "mile")
  12775. },
  12776. {
  12777. name: "Huge",
  12778. height: math.unit(40, "miles"),
  12779. default: true
  12780. },
  12781. {
  12782. name: "Colossal",
  12783. height: math.unit(2500, "miles")
  12784. },
  12785. ]
  12786. ))
  12787. characterMakers.push(() => makeCharacter(
  12788. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12789. {
  12790. front: {
  12791. height: math.unit(6, "feet"),
  12792. weight: math.unit(150, "lb"),
  12793. name: "Front",
  12794. image: {
  12795. source: "./media/characters/elyssia/front.svg",
  12796. extra: 2201 / 2035,
  12797. bottom: 0.05
  12798. }
  12799. },
  12800. frontClothed: {
  12801. height: math.unit(6, "feet"),
  12802. weight: math.unit(150, "lb"),
  12803. name: "Front (Clothed)",
  12804. image: {
  12805. source: "./media/characters/elyssia/front-clothed.svg",
  12806. extra: 2201 / 2035,
  12807. bottom: 0.05
  12808. }
  12809. },
  12810. back: {
  12811. height: math.unit(6, "feet"),
  12812. weight: math.unit(150, "lb"),
  12813. name: "Back",
  12814. image: {
  12815. source: "./media/characters/elyssia/back.svg",
  12816. extra: 2201 / 2035,
  12817. bottom: 0.013
  12818. }
  12819. },
  12820. },
  12821. [
  12822. {
  12823. name: "Smaller",
  12824. height: math.unit(150, "feet")
  12825. },
  12826. {
  12827. name: "Standard",
  12828. height: math.unit(1400, "feet"),
  12829. default: true
  12830. },
  12831. {
  12832. name: "Distracted",
  12833. height: math.unit(15000, "feet")
  12834. },
  12835. ]
  12836. ))
  12837. characterMakers.push(() => makeCharacter(
  12838. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12839. {
  12840. front: {
  12841. height: math.unit(7 + 4 / 12, "feet"),
  12842. weight: math.unit(500, "lb"),
  12843. name: "Front",
  12844. image: {
  12845. source: "./media/characters/geno-maxwell/front.svg",
  12846. extra: 2207 / 2040,
  12847. bottom: 0.015
  12848. }
  12849. },
  12850. },
  12851. [
  12852. {
  12853. name: "Micro",
  12854. height: math.unit(3, "inches")
  12855. },
  12856. {
  12857. name: "Normal",
  12858. height: math.unit(7 + 4 / 12, "feet"),
  12859. default: true
  12860. },
  12861. {
  12862. name: "Macro",
  12863. height: math.unit(220, "feet")
  12864. },
  12865. {
  12866. name: "Megamacro",
  12867. height: math.unit(11, "miles")
  12868. },
  12869. ]
  12870. ))
  12871. characterMakers.push(() => makeCharacter(
  12872. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12873. {
  12874. front: {
  12875. height: math.unit(7 + 4 / 12, "feet"),
  12876. weight: math.unit(500, "lb"),
  12877. name: "Front",
  12878. image: {
  12879. source: "./media/characters/regena-maxwell/front.svg",
  12880. extra: 3115 / 2770,
  12881. bottom: 0.02
  12882. }
  12883. },
  12884. },
  12885. [
  12886. {
  12887. name: "Normal",
  12888. height: math.unit(7 + 4 / 12, "feet"),
  12889. default: true
  12890. },
  12891. {
  12892. name: "Macro",
  12893. height: math.unit(220, "feet")
  12894. },
  12895. {
  12896. name: "Megamacro",
  12897. height: math.unit(11, "miles")
  12898. },
  12899. ]
  12900. ))
  12901. characterMakers.push(() => makeCharacter(
  12902. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12903. {
  12904. front: {
  12905. height: math.unit(6, "feet"),
  12906. weight: math.unit(150, "lb"),
  12907. name: "Front",
  12908. image: {
  12909. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12910. extra: 860 / 690,
  12911. bottom: 0.03
  12912. }
  12913. },
  12914. },
  12915. [
  12916. {
  12917. name: "Normal",
  12918. height: math.unit(1.7, "meters"),
  12919. default: true
  12920. },
  12921. ]
  12922. ))
  12923. characterMakers.push(() => makeCharacter(
  12924. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12925. {
  12926. front: {
  12927. height: math.unit(6, "feet"),
  12928. weight: math.unit(150, "lb"),
  12929. name: "Front",
  12930. image: {
  12931. source: "./media/characters/quilly/front.svg",
  12932. extra: 890 / 776
  12933. }
  12934. },
  12935. },
  12936. [
  12937. {
  12938. name: "Gigamacro",
  12939. height: math.unit(404090, "miles"),
  12940. default: true
  12941. },
  12942. ]
  12943. ))
  12944. characterMakers.push(() => makeCharacter(
  12945. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12946. {
  12947. front: {
  12948. height: math.unit(7 + 8 / 12, "feet"),
  12949. weight: math.unit(350, "lb"),
  12950. name: "Front",
  12951. image: {
  12952. source: "./media/characters/tempest/front.svg",
  12953. extra: 1175 / 1086,
  12954. bottom: 0.02
  12955. }
  12956. },
  12957. },
  12958. [
  12959. {
  12960. name: "Normal",
  12961. height: math.unit(7 + 8 / 12, "feet"),
  12962. default: true
  12963. },
  12964. ]
  12965. ))
  12966. characterMakers.push(() => makeCharacter(
  12967. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12968. {
  12969. side: {
  12970. height: math.unit(4 + 5 / 12, "feet"),
  12971. weight: math.unit(80, "lb"),
  12972. name: "Side",
  12973. image: {
  12974. source: "./media/characters/rodger/side.svg",
  12975. extra: 1235 / 1118
  12976. }
  12977. },
  12978. },
  12979. [
  12980. {
  12981. name: "Micro",
  12982. height: math.unit(1, "inch")
  12983. },
  12984. {
  12985. name: "Normal",
  12986. height: math.unit(4 + 5 / 12, "feet"),
  12987. default: true
  12988. },
  12989. {
  12990. name: "Macro",
  12991. height: math.unit(120, "feet")
  12992. },
  12993. ]
  12994. ))
  12995. characterMakers.push(() => makeCharacter(
  12996. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12997. {
  12998. front: {
  12999. height: math.unit(6, "feet"),
  13000. weight: math.unit(150, "lb"),
  13001. name: "Front",
  13002. image: {
  13003. source: "./media/characters/danyel/front.svg",
  13004. extra: 1185 / 1123,
  13005. bottom: 0.05
  13006. }
  13007. },
  13008. },
  13009. [
  13010. {
  13011. name: "Shrunken",
  13012. height: math.unit(0.5, "mm")
  13013. },
  13014. {
  13015. name: "Micro",
  13016. height: math.unit(1, "mm"),
  13017. default: true
  13018. },
  13019. {
  13020. name: "Upsized",
  13021. height: math.unit(5 + 5 / 12, "feet")
  13022. },
  13023. ]
  13024. ))
  13025. characterMakers.push(() => makeCharacter(
  13026. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13027. {
  13028. front: {
  13029. height: math.unit(5 + 6 / 12, "feet"),
  13030. weight: math.unit(200, "lb"),
  13031. name: "Front",
  13032. image: {
  13033. source: "./media/characters/vivian-bijoux/front.svg",
  13034. extra: 1,
  13035. bottom: 0.072
  13036. }
  13037. },
  13038. },
  13039. [
  13040. {
  13041. name: "Normal",
  13042. height: math.unit(5 + 6 / 12, "feet"),
  13043. default: true
  13044. },
  13045. {
  13046. name: "Bad Dream",
  13047. height: math.unit(500, "feet")
  13048. },
  13049. {
  13050. name: "Nightmare",
  13051. height: math.unit(500, "miles")
  13052. },
  13053. ]
  13054. ))
  13055. characterMakers.push(() => makeCharacter(
  13056. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13057. {
  13058. front: {
  13059. height: math.unit(6 + 1 / 12, "feet"),
  13060. weight: math.unit(260, "lb"),
  13061. name: "Front",
  13062. image: {
  13063. source: "./media/characters/zeta/front.svg",
  13064. extra: 1968 / 1889,
  13065. bottom: 0.06
  13066. }
  13067. },
  13068. back: {
  13069. height: math.unit(6 + 1 / 12, "feet"),
  13070. weight: math.unit(260, "lb"),
  13071. name: "Back",
  13072. image: {
  13073. source: "./media/characters/zeta/back.svg",
  13074. extra: 1944 / 1858,
  13075. bottom: 0.03
  13076. }
  13077. },
  13078. hand: {
  13079. height: math.unit(1.112, "feet"),
  13080. name: "Hand",
  13081. image: {
  13082. source: "./media/characters/zeta/hand.svg"
  13083. }
  13084. },
  13085. foot: {
  13086. height: math.unit(1.48, "feet"),
  13087. name: "Foot",
  13088. image: {
  13089. source: "./media/characters/zeta/foot.svg"
  13090. }
  13091. },
  13092. },
  13093. [
  13094. {
  13095. name: "Micro",
  13096. height: math.unit(6, "inches")
  13097. },
  13098. {
  13099. name: "Normal",
  13100. height: math.unit(6 + 1 / 12, "feet"),
  13101. default: true
  13102. },
  13103. {
  13104. name: "Macro",
  13105. height: math.unit(20, "feet")
  13106. },
  13107. ]
  13108. ))
  13109. characterMakers.push(() => makeCharacter(
  13110. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13111. {
  13112. front: {
  13113. height: math.unit(6, "feet"),
  13114. weight: math.unit(150, "lb"),
  13115. name: "Front",
  13116. image: {
  13117. source: "./media/characters/jamie-larsen/front.svg",
  13118. extra: 962 / 933,
  13119. bottom: 0.02
  13120. }
  13121. },
  13122. back: {
  13123. height: math.unit(6, "feet"),
  13124. weight: math.unit(150, "lb"),
  13125. name: "Back",
  13126. image: {
  13127. source: "./media/characters/jamie-larsen/back.svg",
  13128. extra: 997 / 946
  13129. }
  13130. },
  13131. },
  13132. [
  13133. {
  13134. name: "Macro",
  13135. height: math.unit(28 + 7 / 12, "feet"),
  13136. default: true
  13137. },
  13138. {
  13139. name: "Macro+",
  13140. height: math.unit(180, "feet")
  13141. },
  13142. {
  13143. name: "Megamacro",
  13144. height: math.unit(10, "miles")
  13145. },
  13146. {
  13147. name: "Gigamacro",
  13148. height: math.unit(200000, "miles")
  13149. },
  13150. ]
  13151. ))
  13152. characterMakers.push(() => makeCharacter(
  13153. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13154. {
  13155. front: {
  13156. height: math.unit(6, "feet"),
  13157. weight: math.unit(120, "lb"),
  13158. name: "Front",
  13159. image: {
  13160. source: "./media/characters/vance/front.svg",
  13161. extra: 1980 / 1890,
  13162. bottom: 0.09
  13163. }
  13164. },
  13165. back: {
  13166. height: math.unit(6, "feet"),
  13167. weight: math.unit(120, "lb"),
  13168. name: "Back",
  13169. image: {
  13170. source: "./media/characters/vance/back.svg",
  13171. extra: 2081 / 1994,
  13172. bottom: 0.014
  13173. }
  13174. },
  13175. hand: {
  13176. height: math.unit(0.88, "feet"),
  13177. name: "Hand",
  13178. image: {
  13179. source: "./media/characters/vance/hand.svg"
  13180. }
  13181. },
  13182. foot: {
  13183. height: math.unit(0.64, "feet"),
  13184. name: "Foot",
  13185. image: {
  13186. source: "./media/characters/vance/foot.svg"
  13187. }
  13188. },
  13189. },
  13190. [
  13191. {
  13192. name: "Small",
  13193. height: math.unit(90, "feet"),
  13194. default: true
  13195. },
  13196. {
  13197. name: "Macro",
  13198. height: math.unit(100, "meters")
  13199. },
  13200. {
  13201. name: "Megamacro",
  13202. height: math.unit(15, "miles")
  13203. },
  13204. ]
  13205. ))
  13206. characterMakers.push(() => makeCharacter(
  13207. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13208. {
  13209. front: {
  13210. height: math.unit(6, "feet"),
  13211. weight: math.unit(180, "lb"),
  13212. name: "Front",
  13213. image: {
  13214. source: "./media/characters/xochitl/front.svg",
  13215. extra: 2297 / 2261,
  13216. bottom: 0.065
  13217. }
  13218. },
  13219. back: {
  13220. height: math.unit(6, "feet"),
  13221. weight: math.unit(180, "lb"),
  13222. name: "Back",
  13223. image: {
  13224. source: "./media/characters/xochitl/back.svg",
  13225. extra: 2386 / 2354,
  13226. bottom: 0.01
  13227. }
  13228. },
  13229. foot: {
  13230. height: math.unit(6 / 5 * 1.15, "feet"),
  13231. weight: math.unit(150, "lb"),
  13232. name: "Foot",
  13233. image: {
  13234. source: "./media/characters/xochitl/foot.svg"
  13235. }
  13236. },
  13237. },
  13238. [
  13239. {
  13240. name: "Macro",
  13241. height: math.unit(80, "feet")
  13242. },
  13243. {
  13244. name: "Macro+",
  13245. height: math.unit(400, "feet"),
  13246. default: true
  13247. },
  13248. {
  13249. name: "Gigamacro",
  13250. height: math.unit(80000, "miles")
  13251. },
  13252. {
  13253. name: "Gigamacro+",
  13254. height: math.unit(400000, "miles")
  13255. },
  13256. {
  13257. name: "Teramacro",
  13258. height: math.unit(300, "AU")
  13259. },
  13260. ]
  13261. ))
  13262. characterMakers.push(() => makeCharacter(
  13263. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13264. {
  13265. front: {
  13266. height: math.unit(6, "feet"),
  13267. weight: math.unit(150, "lb"),
  13268. name: "Front",
  13269. image: {
  13270. source: "./media/characters/vincent/front.svg",
  13271. extra: 1130 / 1080,
  13272. bottom: 0.055
  13273. }
  13274. },
  13275. beak: {
  13276. height: math.unit(6 * 0.1, "feet"),
  13277. name: "Beak",
  13278. image: {
  13279. source: "./media/characters/vincent/beak.svg"
  13280. }
  13281. },
  13282. hand: {
  13283. height: math.unit(6 * 0.85, "feet"),
  13284. weight: math.unit(150, "lb"),
  13285. name: "Hand",
  13286. image: {
  13287. source: "./media/characters/vincent/hand.svg"
  13288. }
  13289. },
  13290. foot: {
  13291. height: math.unit(6 * 0.19, "feet"),
  13292. weight: math.unit(150, "lb"),
  13293. name: "Foot",
  13294. image: {
  13295. source: "./media/characters/vincent/foot.svg"
  13296. }
  13297. },
  13298. },
  13299. [
  13300. {
  13301. name: "Base",
  13302. height: math.unit(6 + 5 / 12, "feet"),
  13303. default: true
  13304. },
  13305. {
  13306. name: "Macro",
  13307. height: math.unit(300, "feet")
  13308. },
  13309. {
  13310. name: "Megamacro",
  13311. height: math.unit(2, "miles")
  13312. },
  13313. {
  13314. name: "Gigamacro",
  13315. height: math.unit(1000, "miles")
  13316. },
  13317. ]
  13318. ))
  13319. characterMakers.push(() => makeCharacter(
  13320. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13321. {
  13322. front: {
  13323. height: math.unit(6 + 2 / 12, "feet"),
  13324. weight: math.unit(265, "lb"),
  13325. name: "Front",
  13326. image: {
  13327. source: "./media/characters/jay/front.svg",
  13328. extra: 1510 / 1430,
  13329. bottom: 0.042
  13330. }
  13331. },
  13332. back: {
  13333. height: math.unit(6 + 2 / 12, "feet"),
  13334. weight: math.unit(265, "lb"),
  13335. name: "Back",
  13336. image: {
  13337. source: "./media/characters/jay/back.svg",
  13338. extra: 1510 / 1430,
  13339. bottom: 0.025
  13340. }
  13341. },
  13342. clothed: {
  13343. height: math.unit(6 + 2 / 12, "feet"),
  13344. weight: math.unit(265, "lb"),
  13345. name: "Front (Clothed)",
  13346. image: {
  13347. source: "./media/characters/jay/clothed.svg",
  13348. extra: 744 / 699,
  13349. bottom: 0.043
  13350. }
  13351. },
  13352. head: {
  13353. height: math.unit(1.772, "feet"),
  13354. name: "Head",
  13355. image: {
  13356. source: "./media/characters/jay/head.svg"
  13357. }
  13358. },
  13359. sizeRay: {
  13360. height: math.unit(1.331, "feet"),
  13361. name: "Size Ray",
  13362. image: {
  13363. source: "./media/characters/jay/size-ray.svg"
  13364. }
  13365. },
  13366. },
  13367. [
  13368. {
  13369. name: "Micro",
  13370. height: math.unit(1, "inch")
  13371. },
  13372. {
  13373. name: "Normal",
  13374. height: math.unit(6 + 2 / 12, "feet"),
  13375. default: true
  13376. },
  13377. {
  13378. name: "Macro",
  13379. height: math.unit(1, "mile")
  13380. },
  13381. {
  13382. name: "Megamacro",
  13383. height: math.unit(100, "miles")
  13384. },
  13385. ]
  13386. ))
  13387. characterMakers.push(() => makeCharacter(
  13388. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13389. {
  13390. front: {
  13391. height: math.unit(2, "meters"),
  13392. weight: math.unit(500, "kg"),
  13393. name: "Front",
  13394. image: {
  13395. source: "./media/characters/coatl/front.svg",
  13396. extra: 3948 / 3500,
  13397. bottom: 0.082
  13398. }
  13399. },
  13400. },
  13401. [
  13402. {
  13403. name: "Normal",
  13404. height: math.unit(4, "meters")
  13405. },
  13406. {
  13407. name: "Macro",
  13408. height: math.unit(100, "meters"),
  13409. default: true
  13410. },
  13411. {
  13412. name: "Macro+",
  13413. height: math.unit(300, "meters")
  13414. },
  13415. {
  13416. name: "Megamacro",
  13417. height: math.unit(3, "gigameters")
  13418. },
  13419. {
  13420. name: "Megamacro+",
  13421. height: math.unit(300, "terameters")
  13422. },
  13423. {
  13424. name: "Megamacro++",
  13425. height: math.unit(3, "lightyears")
  13426. },
  13427. ]
  13428. ))
  13429. characterMakers.push(() => makeCharacter(
  13430. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13431. {
  13432. front: {
  13433. height: math.unit(6, "feet"),
  13434. weight: math.unit(50, "kg"),
  13435. name: "front",
  13436. image: {
  13437. source: "./media/characters/shiroryu/front.svg",
  13438. extra: 1990 / 1935
  13439. }
  13440. },
  13441. },
  13442. [
  13443. {
  13444. name: "Mortal Mingling",
  13445. height: math.unit(3, "meters")
  13446. },
  13447. {
  13448. name: "Kaiju-ish",
  13449. height: math.unit(250, "meters")
  13450. },
  13451. {
  13452. name: "Somewhat Godly",
  13453. height: math.unit(400, "km"),
  13454. default: true
  13455. },
  13456. {
  13457. name: "Planetary",
  13458. height: math.unit(300, "megameters")
  13459. },
  13460. {
  13461. name: "Galaxy-dwarfing",
  13462. height: math.unit(450, "kiloparsecs")
  13463. },
  13464. {
  13465. name: "Universe Eater",
  13466. height: math.unit(150, "gigaparsecs")
  13467. },
  13468. {
  13469. name: "Almost Immeasurable",
  13470. height: math.unit(1.3e266, "yottaparsecs")
  13471. },
  13472. ]
  13473. ))
  13474. characterMakers.push(() => makeCharacter(
  13475. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13476. {
  13477. front: {
  13478. height: math.unit(6, "feet"),
  13479. weight: math.unit(150, "lb"),
  13480. name: "Front",
  13481. image: {
  13482. source: "./media/characters/umeko/front.svg",
  13483. extra: 1,
  13484. bottom: 0.019
  13485. }
  13486. },
  13487. frontArmored: {
  13488. height: math.unit(6, "feet"),
  13489. weight: math.unit(150, "lb"),
  13490. name: "Front (Armored)",
  13491. image: {
  13492. source: "./media/characters/umeko/front-armored.svg",
  13493. extra: 1,
  13494. bottom: 0.021
  13495. }
  13496. },
  13497. },
  13498. [
  13499. {
  13500. name: "Macro",
  13501. height: math.unit(220, "feet"),
  13502. default: true
  13503. },
  13504. {
  13505. name: "Guardian Dragon",
  13506. height: math.unit(50, "miles")
  13507. },
  13508. {
  13509. name: "Cosmic",
  13510. height: math.unit(800000, "miles")
  13511. },
  13512. ]
  13513. ))
  13514. characterMakers.push(() => makeCharacter(
  13515. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13516. {
  13517. front: {
  13518. height: math.unit(6, "feet"),
  13519. weight: math.unit(150, "lb"),
  13520. name: "Front",
  13521. image: {
  13522. source: "./media/characters/cassidy/front.svg",
  13523. extra: 1,
  13524. bottom: 0.043
  13525. }
  13526. },
  13527. },
  13528. [
  13529. {
  13530. name: "Canon Height",
  13531. height: math.unit(120, "feet"),
  13532. default: true
  13533. },
  13534. {
  13535. name: "Macro+",
  13536. height: math.unit(400, "feet")
  13537. },
  13538. {
  13539. name: "Macro++",
  13540. height: math.unit(4000, "feet")
  13541. },
  13542. {
  13543. name: "Megamacro",
  13544. height: math.unit(3, "miles")
  13545. },
  13546. ]
  13547. ))
  13548. characterMakers.push(() => makeCharacter(
  13549. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13550. {
  13551. front: {
  13552. height: math.unit(6, "feet"),
  13553. weight: math.unit(150, "lb"),
  13554. name: "Front",
  13555. image: {
  13556. source: "./media/characters/isaac/front.svg",
  13557. extra: 896 / 815,
  13558. bottom: 0.11
  13559. }
  13560. },
  13561. },
  13562. [
  13563. {
  13564. name: "Human Size",
  13565. height: math.unit(8, "feet"),
  13566. default: true
  13567. },
  13568. {
  13569. name: "Macro",
  13570. height: math.unit(400, "feet")
  13571. },
  13572. {
  13573. name: "Megamacro",
  13574. height: math.unit(50, "miles")
  13575. },
  13576. {
  13577. name: "Canon Height",
  13578. height: math.unit(200, "AU")
  13579. },
  13580. ]
  13581. ))
  13582. characterMakers.push(() => makeCharacter(
  13583. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13584. {
  13585. front: {
  13586. height: math.unit(6, "feet"),
  13587. weight: math.unit(72, "kg"),
  13588. name: "Front",
  13589. image: {
  13590. source: "./media/characters/sleekit/front.svg",
  13591. extra: 4693 / 4487,
  13592. bottom: 0.012
  13593. }
  13594. },
  13595. },
  13596. [
  13597. {
  13598. name: "Minimum Height",
  13599. height: math.unit(10, "meters")
  13600. },
  13601. {
  13602. name: "Smaller",
  13603. height: math.unit(25, "meters")
  13604. },
  13605. {
  13606. name: "Larger",
  13607. height: math.unit(38, "meters"),
  13608. default: true
  13609. },
  13610. {
  13611. name: "Maximum height",
  13612. height: math.unit(100, "meters")
  13613. },
  13614. ]
  13615. ))
  13616. characterMakers.push(() => makeCharacter(
  13617. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13618. {
  13619. front: {
  13620. height: math.unit(6, "feet"),
  13621. weight: math.unit(150, "lb"),
  13622. name: "Front",
  13623. image: {
  13624. source: "./media/characters/nillia/front.svg",
  13625. extra: 2195 / 2037,
  13626. bottom: 0.005
  13627. }
  13628. },
  13629. back: {
  13630. height: math.unit(6, "feet"),
  13631. weight: math.unit(150, "lb"),
  13632. name: "Back",
  13633. image: {
  13634. source: "./media/characters/nillia/back.svg",
  13635. extra: 2195 / 2037,
  13636. bottom: 0.005
  13637. }
  13638. },
  13639. },
  13640. [
  13641. {
  13642. name: "Canon Height",
  13643. height: math.unit(489, "feet"),
  13644. default: true
  13645. }
  13646. ]
  13647. ))
  13648. characterMakers.push(() => makeCharacter(
  13649. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13650. {
  13651. front: {
  13652. height: math.unit(6, "feet"),
  13653. weight: math.unit(150, "lb"),
  13654. name: "Front",
  13655. image: {
  13656. source: "./media/characters/mesmyriza/front.svg",
  13657. extra: 2067 / 1784,
  13658. bottom: 0.035
  13659. }
  13660. },
  13661. foot: {
  13662. height: math.unit(6 / (250 / 35), "feet"),
  13663. name: "Foot",
  13664. image: {
  13665. source: "./media/characters/mesmyriza/foot.svg"
  13666. }
  13667. },
  13668. },
  13669. [
  13670. {
  13671. name: "Macro",
  13672. height: math.unit(457, "meters"),
  13673. default: true
  13674. },
  13675. {
  13676. name: "Megamacro",
  13677. height: math.unit(8, "megameters")
  13678. },
  13679. ]
  13680. ))
  13681. characterMakers.push(() => makeCharacter(
  13682. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13683. {
  13684. front: {
  13685. height: math.unit(6, "feet"),
  13686. weight: math.unit(250, "lb"),
  13687. name: "Front",
  13688. image: {
  13689. source: "./media/characters/saudade/front.svg",
  13690. extra: 1172 / 1139,
  13691. bottom: 0.035
  13692. }
  13693. },
  13694. },
  13695. [
  13696. {
  13697. name: "Micro",
  13698. height: math.unit(3, "inches")
  13699. },
  13700. {
  13701. name: "Normal",
  13702. height: math.unit(6, "feet"),
  13703. default: true
  13704. },
  13705. {
  13706. name: "Macro",
  13707. height: math.unit(50, "feet")
  13708. },
  13709. {
  13710. name: "Megamacro",
  13711. height: math.unit(2800, "feet")
  13712. },
  13713. ]
  13714. ))
  13715. characterMakers.push(() => makeCharacter(
  13716. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13717. {
  13718. front: {
  13719. height: math.unit(5 + 4 / 12, "feet"),
  13720. weight: math.unit(100, "lb"),
  13721. name: "Front",
  13722. image: {
  13723. source: "./media/characters/keireer/front.svg",
  13724. extra: 716 / 666,
  13725. bottom: 0.05
  13726. }
  13727. },
  13728. },
  13729. [
  13730. {
  13731. name: "Normal",
  13732. height: math.unit(5 + 4 / 12, "feet"),
  13733. default: true
  13734. },
  13735. ]
  13736. ))
  13737. characterMakers.push(() => makeCharacter(
  13738. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13739. {
  13740. front: {
  13741. height: math.unit(6, "feet"),
  13742. weight: math.unit(90, "kg"),
  13743. name: "Front",
  13744. image: {
  13745. source: "./media/characters/mirja/front.svg",
  13746. extra: 1789 / 1683,
  13747. bottom: 0.05
  13748. }
  13749. },
  13750. frontDressed: {
  13751. height: math.unit(6, "feet"),
  13752. weight: math.unit(90, "lb"),
  13753. name: "Front (Dressed)",
  13754. image: {
  13755. source: "./media/characters/mirja/front-dressed.svg",
  13756. extra: 1789 / 1683,
  13757. bottom: 0.05
  13758. }
  13759. },
  13760. back: {
  13761. height: math.unit(6, "feet"),
  13762. weight: math.unit(90, "lb"),
  13763. name: "Back",
  13764. image: {
  13765. source: "./media/characters/mirja/back.svg",
  13766. extra: 953 / 917,
  13767. bottom: 0.017
  13768. }
  13769. },
  13770. },
  13771. [
  13772. {
  13773. name: "\"Incognito\"",
  13774. height: math.unit(3, "meters")
  13775. },
  13776. {
  13777. name: "Strolling Size",
  13778. height: math.unit(15, "km")
  13779. },
  13780. {
  13781. name: "Larger Strolling Size",
  13782. height: math.unit(400, "km")
  13783. },
  13784. {
  13785. name: "Preferred Size",
  13786. height: math.unit(5000, "km")
  13787. },
  13788. {
  13789. name: "True Size",
  13790. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13791. default: true
  13792. },
  13793. ]
  13794. ))
  13795. characterMakers.push(() => makeCharacter(
  13796. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13797. {
  13798. front: {
  13799. height: math.unit(15, "feet"),
  13800. weight: math.unit(880, "kg"),
  13801. name: "Front",
  13802. image: {
  13803. source: "./media/characters/nightraver/front.svg",
  13804. extra: 2444 / 2160,
  13805. bottom: 0.027
  13806. }
  13807. },
  13808. back: {
  13809. height: math.unit(15, "feet"),
  13810. weight: math.unit(880, "kg"),
  13811. name: "Back",
  13812. image: {
  13813. source: "./media/characters/nightraver/back.svg",
  13814. extra: 2309 / 2180,
  13815. bottom: 0.005
  13816. }
  13817. },
  13818. sole: {
  13819. height: math.unit(2.878, "feet"),
  13820. name: "Sole",
  13821. image: {
  13822. source: "./media/characters/nightraver/sole.svg"
  13823. }
  13824. },
  13825. foot: {
  13826. height: math.unit(2.285, "feet"),
  13827. name: "Foot",
  13828. image: {
  13829. source: "./media/characters/nightraver/foot.svg"
  13830. }
  13831. },
  13832. maw: {
  13833. height: math.unit(2.67, "feet"),
  13834. name: "Maw",
  13835. image: {
  13836. source: "./media/characters/nightraver/maw.svg"
  13837. }
  13838. },
  13839. },
  13840. [
  13841. {
  13842. name: "Micro",
  13843. height: math.unit(1, "cm")
  13844. },
  13845. {
  13846. name: "Normal",
  13847. height: math.unit(15, "feet"),
  13848. default: true
  13849. },
  13850. {
  13851. name: "Macro",
  13852. height: math.unit(300, "feet")
  13853. },
  13854. {
  13855. name: "Megamacro",
  13856. height: math.unit(300, "miles")
  13857. },
  13858. {
  13859. name: "Gigamacro",
  13860. height: math.unit(10000, "miles")
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13866. {
  13867. side: {
  13868. height: math.unit(2, "inches"),
  13869. weight: math.unit(5, "grams"),
  13870. name: "Side",
  13871. image: {
  13872. source: "./media/characters/arc/side.svg"
  13873. }
  13874. },
  13875. },
  13876. [
  13877. {
  13878. name: "Micro",
  13879. height: math.unit(2, "inches"),
  13880. default: true
  13881. },
  13882. ]
  13883. ))
  13884. characterMakers.push(() => makeCharacter(
  13885. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13886. {
  13887. front: {
  13888. height: math.unit(1.1938, "meters"),
  13889. weight: math.unit(54, "kg"),
  13890. name: "Front",
  13891. image: {
  13892. source: "./media/characters/nebula-shahar/front.svg",
  13893. extra: 1642 / 1436,
  13894. bottom: 0.06
  13895. }
  13896. },
  13897. },
  13898. [
  13899. {
  13900. name: "Megamicro",
  13901. height: math.unit(0.3, "mm")
  13902. },
  13903. {
  13904. name: "Micro",
  13905. height: math.unit(3, "cm")
  13906. },
  13907. {
  13908. name: "Normal",
  13909. height: math.unit(138, "cm"),
  13910. default: true
  13911. },
  13912. {
  13913. name: "Macro",
  13914. height: math.unit(30, "m")
  13915. },
  13916. ]
  13917. ))
  13918. characterMakers.push(() => makeCharacter(
  13919. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13920. {
  13921. front: {
  13922. height: math.unit(5.24, "feet"),
  13923. weight: math.unit(150, "lb"),
  13924. name: "Front",
  13925. image: {
  13926. source: "./media/characters/shayla/front.svg",
  13927. extra: 1512 / 1414,
  13928. bottom: 0.01
  13929. }
  13930. },
  13931. back: {
  13932. height: math.unit(5.24, "feet"),
  13933. weight: math.unit(150, "lb"),
  13934. name: "Back",
  13935. image: {
  13936. source: "./media/characters/shayla/back.svg",
  13937. extra: 1512 / 1414
  13938. }
  13939. },
  13940. hand: {
  13941. height: math.unit(0.7781496062992126, "feet"),
  13942. name: "Hand",
  13943. image: {
  13944. source: "./media/characters/shayla/hand.svg"
  13945. }
  13946. },
  13947. foot: {
  13948. height: math.unit(1.4206036745406823, "feet"),
  13949. name: "Foot",
  13950. image: {
  13951. source: "./media/characters/shayla/foot.svg"
  13952. }
  13953. },
  13954. },
  13955. [
  13956. {
  13957. name: "Micro",
  13958. height: math.unit(0.32, "feet")
  13959. },
  13960. {
  13961. name: "Normal",
  13962. height: math.unit(5.24, "feet"),
  13963. default: true
  13964. },
  13965. {
  13966. name: "Macro",
  13967. height: math.unit(492.12, "feet")
  13968. },
  13969. {
  13970. name: "Megamacro",
  13971. height: math.unit(186.41, "miles")
  13972. },
  13973. ]
  13974. ))
  13975. characterMakers.push(() => makeCharacter(
  13976. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13977. {
  13978. front: {
  13979. height: math.unit(2.2, "m"),
  13980. weight: math.unit(120, "kg"),
  13981. name: "Front",
  13982. image: {
  13983. source: "./media/characters/pia-jr/front.svg",
  13984. extra: 1000 / 970,
  13985. bottom: 0.035
  13986. }
  13987. },
  13988. hand: {
  13989. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13990. name: "Hand",
  13991. image: {
  13992. source: "./media/characters/pia-jr/hand.svg"
  13993. }
  13994. },
  13995. paw: {
  13996. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13997. name: "Paw",
  13998. image: {
  13999. source: "./media/characters/pia-jr/paw.svg"
  14000. }
  14001. },
  14002. },
  14003. [
  14004. {
  14005. name: "Micro",
  14006. height: math.unit(1.2, "cm")
  14007. },
  14008. {
  14009. name: "Normal",
  14010. height: math.unit(2.2, "m"),
  14011. default: true
  14012. },
  14013. {
  14014. name: "Macro",
  14015. height: math.unit(180, "m")
  14016. },
  14017. {
  14018. name: "Megamacro",
  14019. height: math.unit(420, "km")
  14020. },
  14021. ]
  14022. ))
  14023. characterMakers.push(() => makeCharacter(
  14024. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14025. {
  14026. front: {
  14027. height: math.unit(2, "m"),
  14028. weight: math.unit(115, "kg"),
  14029. name: "Front",
  14030. image: {
  14031. source: "./media/characters/pia-sr/front.svg",
  14032. extra: 760 / 730,
  14033. bottom: 0.015
  14034. }
  14035. },
  14036. back: {
  14037. height: math.unit(2, "m"),
  14038. weight: math.unit(115, "kg"),
  14039. name: "Back",
  14040. image: {
  14041. source: "./media/characters/pia-sr/back.svg",
  14042. extra: 760 / 730,
  14043. bottom: 0.01
  14044. }
  14045. },
  14046. hand: {
  14047. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14048. name: "Hand",
  14049. image: {
  14050. source: "./media/characters/pia-sr/hand.svg"
  14051. }
  14052. },
  14053. foot: {
  14054. height: math.unit(1.83, "feet"),
  14055. name: "Foot",
  14056. image: {
  14057. source: "./media/characters/pia-sr/foot.svg"
  14058. }
  14059. },
  14060. },
  14061. [
  14062. {
  14063. name: "Micro",
  14064. height: math.unit(88, "mm")
  14065. },
  14066. {
  14067. name: "Normal",
  14068. height: math.unit(2, "m"),
  14069. default: true
  14070. },
  14071. {
  14072. name: "Macro",
  14073. height: math.unit(200, "m")
  14074. },
  14075. {
  14076. name: "Megamacro",
  14077. height: math.unit(420, "km")
  14078. },
  14079. ]
  14080. ))
  14081. characterMakers.push(() => makeCharacter(
  14082. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14083. {
  14084. front: {
  14085. height: math.unit(8 + 2 / 12, "feet"),
  14086. weight: math.unit(300, "lb"),
  14087. name: "Front",
  14088. image: {
  14089. source: "./media/characters/kibibyte/front.svg",
  14090. extra: 2221 / 2098,
  14091. bottom: 0.04
  14092. }
  14093. },
  14094. },
  14095. [
  14096. {
  14097. name: "Normal",
  14098. height: math.unit(8 + 2 / 12, "feet"),
  14099. default: true
  14100. },
  14101. {
  14102. name: "Socialable Macro",
  14103. height: math.unit(50, "feet")
  14104. },
  14105. {
  14106. name: "Macro",
  14107. height: math.unit(300, "feet")
  14108. },
  14109. {
  14110. name: "Megamacro",
  14111. height: math.unit(500, "miles")
  14112. },
  14113. ]
  14114. ))
  14115. characterMakers.push(() => makeCharacter(
  14116. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14117. {
  14118. front: {
  14119. height: math.unit(6, "feet"),
  14120. weight: math.unit(150, "lb"),
  14121. name: "Front",
  14122. image: {
  14123. source: "./media/characters/felix/front.svg",
  14124. extra: 762 / 722,
  14125. bottom: 0.02
  14126. }
  14127. },
  14128. frontClothed: {
  14129. height: math.unit(6, "feet"),
  14130. weight: math.unit(150, "lb"),
  14131. name: "Front (Clothed)",
  14132. image: {
  14133. source: "./media/characters/felix/front-clothed.svg",
  14134. extra: 762 / 722,
  14135. bottom: 0.02
  14136. }
  14137. },
  14138. },
  14139. [
  14140. {
  14141. name: "Normal",
  14142. height: math.unit(6 + 8 / 12, "feet"),
  14143. default: true
  14144. },
  14145. {
  14146. name: "Macro",
  14147. height: math.unit(2600, "feet")
  14148. },
  14149. {
  14150. name: "Megamacro",
  14151. height: math.unit(450, "miles")
  14152. },
  14153. ]
  14154. ))
  14155. characterMakers.push(() => makeCharacter(
  14156. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14157. {
  14158. front: {
  14159. height: math.unit(6 + 1 / 12, "feet"),
  14160. weight: math.unit(250, "lb"),
  14161. name: "Front",
  14162. image: {
  14163. source: "./media/characters/tobo/front.svg",
  14164. extra: 608 / 586,
  14165. bottom: 0.023
  14166. }
  14167. },
  14168. back: {
  14169. height: math.unit(6 + 1 / 12, "feet"),
  14170. weight: math.unit(250, "lb"),
  14171. name: "Back",
  14172. image: {
  14173. source: "./media/characters/tobo/back.svg",
  14174. extra: 608 / 586
  14175. }
  14176. },
  14177. },
  14178. [
  14179. {
  14180. name: "Nano",
  14181. height: math.unit(2, "nm")
  14182. },
  14183. {
  14184. name: "Megamicro",
  14185. height: math.unit(0.1, "mm")
  14186. },
  14187. {
  14188. name: "Micro",
  14189. height: math.unit(1, "inch"),
  14190. default: true
  14191. },
  14192. {
  14193. name: "Human-sized",
  14194. height: math.unit(6 + 1 / 12, "feet")
  14195. },
  14196. {
  14197. name: "Macro",
  14198. height: math.unit(250, "feet")
  14199. },
  14200. {
  14201. name: "Megamacro",
  14202. height: math.unit(75, "miles")
  14203. },
  14204. {
  14205. name: "Texas-sized",
  14206. height: math.unit(750, "miles")
  14207. },
  14208. {
  14209. name: "Teramacro",
  14210. height: math.unit(50000, "miles")
  14211. },
  14212. ]
  14213. ))
  14214. characterMakers.push(() => makeCharacter(
  14215. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14216. {
  14217. front: {
  14218. height: math.unit(6, "feet"),
  14219. weight: math.unit(269, "lb"),
  14220. name: "Front",
  14221. image: {
  14222. source: "./media/characters/danny-kapowsky/front.svg",
  14223. extra: 766 / 736,
  14224. bottom: 0.044
  14225. }
  14226. },
  14227. back: {
  14228. height: math.unit(6, "feet"),
  14229. weight: math.unit(269, "lb"),
  14230. name: "Back",
  14231. image: {
  14232. source: "./media/characters/danny-kapowsky/back.svg",
  14233. extra: 797 / 760,
  14234. bottom: 0.025
  14235. }
  14236. },
  14237. },
  14238. [
  14239. {
  14240. name: "Macro",
  14241. height: math.unit(150, "feet"),
  14242. default: true
  14243. },
  14244. {
  14245. name: "Macro+",
  14246. height: math.unit(200, "feet")
  14247. },
  14248. {
  14249. name: "Macro++",
  14250. height: math.unit(300, "feet")
  14251. },
  14252. {
  14253. name: "Macro+++",
  14254. height: math.unit(400, "feet")
  14255. },
  14256. ]
  14257. ))
  14258. characterMakers.push(() => makeCharacter(
  14259. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14260. {
  14261. side: {
  14262. height: math.unit(6, "feet"),
  14263. weight: math.unit(170, "lb"),
  14264. name: "Side",
  14265. image: {
  14266. source: "./media/characters/finn/side.svg",
  14267. extra: 1953 / 1807,
  14268. bottom: 0.057
  14269. }
  14270. },
  14271. },
  14272. [
  14273. {
  14274. name: "Megamacro",
  14275. height: math.unit(14445, "feet"),
  14276. default: true
  14277. },
  14278. ]
  14279. ))
  14280. characterMakers.push(() => makeCharacter(
  14281. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14282. {
  14283. front: {
  14284. height: math.unit(5 + 6 / 12, "feet"),
  14285. weight: math.unit(125, "lb"),
  14286. name: "Front",
  14287. image: {
  14288. source: "./media/characters/roy/front.svg",
  14289. extra: 1,
  14290. bottom: 0.11
  14291. }
  14292. },
  14293. },
  14294. [
  14295. {
  14296. name: "Micro",
  14297. height: math.unit(3, "inches"),
  14298. default: true
  14299. },
  14300. {
  14301. name: "Normal",
  14302. height: math.unit(5 + 6 / 12, "feet")
  14303. },
  14304. {
  14305. name: "Lesser Macro",
  14306. height: math.unit(60, "feet")
  14307. },
  14308. {
  14309. name: "Greater Macro",
  14310. height: math.unit(120, "feet")
  14311. },
  14312. ]
  14313. ))
  14314. characterMakers.push(() => makeCharacter(
  14315. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14316. {
  14317. front: {
  14318. height: math.unit(6, "feet"),
  14319. weight: math.unit(100, "lb"),
  14320. name: "Front",
  14321. image: {
  14322. source: "./media/characters/aevsivs/front.svg",
  14323. extra: 1,
  14324. bottom: 0.03
  14325. }
  14326. },
  14327. back: {
  14328. height: math.unit(6, "feet"),
  14329. weight: math.unit(100, "lb"),
  14330. name: "Back",
  14331. image: {
  14332. source: "./media/characters/aevsivs/back.svg"
  14333. }
  14334. },
  14335. },
  14336. [
  14337. {
  14338. name: "Micro",
  14339. height: math.unit(2, "inches"),
  14340. default: true
  14341. },
  14342. {
  14343. name: "Normal",
  14344. height: math.unit(5, "feet")
  14345. },
  14346. ]
  14347. ))
  14348. characterMakers.push(() => makeCharacter(
  14349. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14350. {
  14351. front: {
  14352. height: math.unit(5 + 7 / 12, "feet"),
  14353. weight: math.unit(159, "lb"),
  14354. name: "Front",
  14355. image: {
  14356. source: "./media/characters/hildegard/front.svg",
  14357. extra: 289 / 269,
  14358. bottom: 7.63 / 297.8
  14359. }
  14360. },
  14361. back: {
  14362. height: math.unit(5 + 7 / 12, "feet"),
  14363. weight: math.unit(159, "lb"),
  14364. name: "Back",
  14365. image: {
  14366. source: "./media/characters/hildegard/back.svg",
  14367. extra: 280 / 260,
  14368. bottom: 2.3 / 282
  14369. }
  14370. },
  14371. },
  14372. [
  14373. {
  14374. name: "Normal",
  14375. height: math.unit(5 + 7 / 12, "feet"),
  14376. default: true
  14377. },
  14378. ]
  14379. ))
  14380. characterMakers.push(() => makeCharacter(
  14381. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14382. {
  14383. bernard: {
  14384. height: math.unit(2 + 7 / 12, "feet"),
  14385. weight: math.unit(66, "lb"),
  14386. name: "Bernard",
  14387. rename: true,
  14388. image: {
  14389. source: "./media/characters/bernard-wilder/bernard.svg",
  14390. extra: 192 / 128,
  14391. bottom: 0.05
  14392. }
  14393. },
  14394. wilder: {
  14395. height: math.unit(5 + 8 / 12, "feet"),
  14396. weight: math.unit(143, "lb"),
  14397. name: "Wilder",
  14398. rename: true,
  14399. image: {
  14400. source: "./media/characters/bernard-wilder/wilder.svg",
  14401. extra: 361 / 312,
  14402. bottom: 0.02
  14403. }
  14404. },
  14405. },
  14406. [
  14407. {
  14408. name: "Normal",
  14409. height: math.unit(2 + 7 / 12, "feet"),
  14410. default: true
  14411. },
  14412. ]
  14413. ))
  14414. characterMakers.push(() => makeCharacter(
  14415. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14416. {
  14417. anthro: {
  14418. height: math.unit(6 + 1 / 12, "feet"),
  14419. weight: math.unit(155, "lb"),
  14420. name: "Anthro",
  14421. image: {
  14422. source: "./media/characters/hearth/anthro.svg",
  14423. extra: 260 / 250,
  14424. bottom: 0.02
  14425. }
  14426. },
  14427. feral: {
  14428. height: math.unit(3.78, "feet"),
  14429. weight: math.unit(35, "kg"),
  14430. name: "Feral",
  14431. image: {
  14432. source: "./media/characters/hearth/feral.svg",
  14433. extra: 153 / 135,
  14434. bottom: 0.03
  14435. }
  14436. },
  14437. },
  14438. [
  14439. {
  14440. name: "Normal",
  14441. height: math.unit(6 + 1 / 12, "feet"),
  14442. default: true
  14443. },
  14444. ]
  14445. ))
  14446. characterMakers.push(() => makeCharacter(
  14447. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14448. {
  14449. front: {
  14450. height: math.unit(6, "feet"),
  14451. weight: math.unit(182, "lb"),
  14452. name: "Front",
  14453. image: {
  14454. source: "./media/characters/ingrid/front.svg",
  14455. extra: 294 / 268,
  14456. bottom: 0.027
  14457. }
  14458. },
  14459. },
  14460. [
  14461. {
  14462. name: "Normal",
  14463. height: math.unit(6, "feet"),
  14464. default: true
  14465. },
  14466. ]
  14467. ))
  14468. characterMakers.push(() => makeCharacter(
  14469. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14470. {
  14471. eevee: {
  14472. height: math.unit(2 + 10 / 12, "feet"),
  14473. weight: math.unit(86, "lb"),
  14474. name: "Malgam",
  14475. image: {
  14476. source: "./media/characters/malgam/eevee.svg",
  14477. extra: 218 / 180,
  14478. bottom: 0.2
  14479. }
  14480. },
  14481. sylveon: {
  14482. height: math.unit(4, "feet"),
  14483. weight: math.unit(101, "lb"),
  14484. name: "Future Malgam",
  14485. rename: true,
  14486. image: {
  14487. source: "./media/characters/malgam/sylveon.svg",
  14488. extra: 371 / 325,
  14489. bottom: 0.015
  14490. }
  14491. },
  14492. gigantamax: {
  14493. height: math.unit(50, "feet"),
  14494. name: "Gigantamax Malgam",
  14495. rename: true,
  14496. image: {
  14497. source: "./media/characters/malgam/gigantamax.svg"
  14498. }
  14499. },
  14500. },
  14501. [
  14502. {
  14503. name: "Normal",
  14504. height: math.unit(2 + 10 / 12, "feet"),
  14505. default: true
  14506. },
  14507. ]
  14508. ))
  14509. characterMakers.push(() => makeCharacter(
  14510. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14511. {
  14512. front: {
  14513. height: math.unit(5 + 11 / 12, "feet"),
  14514. weight: math.unit(188, "lb"),
  14515. name: "Front",
  14516. image: {
  14517. source: "./media/characters/fleur/front.svg",
  14518. extra: 309 / 283,
  14519. bottom: 0.007
  14520. }
  14521. },
  14522. },
  14523. [
  14524. {
  14525. name: "Normal",
  14526. height: math.unit(5 + 11 / 12, "feet"),
  14527. default: true
  14528. },
  14529. ]
  14530. ))
  14531. characterMakers.push(() => makeCharacter(
  14532. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14533. {
  14534. front: {
  14535. height: math.unit(5 + 4 / 12, "feet"),
  14536. weight: math.unit(122, "lb"),
  14537. name: "Front",
  14538. image: {
  14539. source: "./media/characters/jude/front.svg",
  14540. extra: 288 / 273,
  14541. bottom: 0.03
  14542. }
  14543. },
  14544. },
  14545. [
  14546. {
  14547. name: "Normal",
  14548. height: math.unit(5 + 4 / 12, "feet"),
  14549. default: true
  14550. },
  14551. ]
  14552. ))
  14553. characterMakers.push(() => makeCharacter(
  14554. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14555. {
  14556. front: {
  14557. height: math.unit(5 + 11 / 12, "feet"),
  14558. weight: math.unit(190, "lb"),
  14559. name: "Front",
  14560. image: {
  14561. source: "./media/characters/seara/front.svg",
  14562. extra: 1,
  14563. bottom: 0.05
  14564. }
  14565. },
  14566. },
  14567. [
  14568. {
  14569. name: "Normal",
  14570. height: math.unit(5 + 11 / 12, "feet"),
  14571. default: true
  14572. },
  14573. ]
  14574. ))
  14575. characterMakers.push(() => makeCharacter(
  14576. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14577. {
  14578. front: {
  14579. height: math.unit(16 + 5 / 12, "feet"),
  14580. weight: math.unit(524, "lb"),
  14581. name: "Front",
  14582. image: {
  14583. source: "./media/characters/caspian/front.svg",
  14584. extra: 1,
  14585. bottom: 0.04
  14586. }
  14587. },
  14588. },
  14589. [
  14590. {
  14591. name: "Normal",
  14592. height: math.unit(16 + 5 / 12, "feet"),
  14593. default: true
  14594. },
  14595. ]
  14596. ))
  14597. characterMakers.push(() => makeCharacter(
  14598. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14599. {
  14600. front: {
  14601. height: math.unit(5 + 7 / 12, "feet"),
  14602. weight: math.unit(170, "lb"),
  14603. name: "Front",
  14604. image: {
  14605. source: "./media/characters/mika/front.svg",
  14606. extra: 1,
  14607. bottom: 0.016
  14608. }
  14609. },
  14610. },
  14611. [
  14612. {
  14613. name: "Normal",
  14614. height: math.unit(5 + 7 / 12, "feet"),
  14615. default: true
  14616. },
  14617. ]
  14618. ))
  14619. characterMakers.push(() => makeCharacter(
  14620. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14621. {
  14622. front: {
  14623. height: math.unit(6 + 2 / 12, "feet"),
  14624. weight: math.unit(268, "lb"),
  14625. name: "Front",
  14626. image: {
  14627. source: "./media/characters/sol/front.svg",
  14628. extra: 247 / 231,
  14629. bottom: 0.05
  14630. }
  14631. },
  14632. },
  14633. [
  14634. {
  14635. name: "Normal",
  14636. height: math.unit(6 + 2 / 12, "feet"),
  14637. default: true
  14638. },
  14639. ]
  14640. ))
  14641. characterMakers.push(() => makeCharacter(
  14642. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14643. {
  14644. buizel: {
  14645. height: math.unit(2 + 5 / 12, "feet"),
  14646. weight: math.unit(87, "lb"),
  14647. name: "Buizel",
  14648. image: {
  14649. source: "./media/characters/umiko/buizel.svg",
  14650. extra: 172 / 157,
  14651. bottom: 0.01
  14652. }
  14653. },
  14654. floatzel: {
  14655. height: math.unit(5 + 9 / 12, "feet"),
  14656. weight: math.unit(250, "lb"),
  14657. name: "Floatzel",
  14658. image: {
  14659. source: "./media/characters/umiko/floatzel.svg",
  14660. extra: 262 / 248
  14661. }
  14662. },
  14663. },
  14664. [
  14665. {
  14666. name: "Normal",
  14667. height: math.unit(2 + 5 / 12, "feet"),
  14668. default: true
  14669. },
  14670. ]
  14671. ))
  14672. characterMakers.push(() => makeCharacter(
  14673. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14674. {
  14675. front: {
  14676. height: math.unit(6 + 2 / 12, "feet"),
  14677. weight: math.unit(146, "lb"),
  14678. name: "Front",
  14679. image: {
  14680. source: "./media/characters/iliac/front.svg",
  14681. extra: 389 / 365,
  14682. bottom: 0.035
  14683. }
  14684. },
  14685. },
  14686. [
  14687. {
  14688. name: "Normal",
  14689. height: math.unit(6 + 2 / 12, "feet"),
  14690. default: true
  14691. },
  14692. ]
  14693. ))
  14694. characterMakers.push(() => makeCharacter(
  14695. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14696. {
  14697. front: {
  14698. height: math.unit(6, "feet"),
  14699. weight: math.unit(170, "lb"),
  14700. name: "Front",
  14701. image: {
  14702. source: "./media/characters/topaz/front.svg",
  14703. extra: 317 / 303,
  14704. bottom: 0.055
  14705. }
  14706. },
  14707. },
  14708. [
  14709. {
  14710. name: "Normal",
  14711. height: math.unit(6, "feet"),
  14712. default: true
  14713. },
  14714. ]
  14715. ))
  14716. characterMakers.push(() => makeCharacter(
  14717. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14718. {
  14719. front: {
  14720. height: math.unit(5 + 11 / 12, "feet"),
  14721. weight: math.unit(144, "lb"),
  14722. name: "Front",
  14723. image: {
  14724. source: "./media/characters/gabriel/front.svg",
  14725. extra: 285 / 262,
  14726. bottom: 0.004
  14727. }
  14728. },
  14729. },
  14730. [
  14731. {
  14732. name: "Normal",
  14733. height: math.unit(5 + 11 / 12, "feet"),
  14734. default: true
  14735. },
  14736. ]
  14737. ))
  14738. characterMakers.push(() => makeCharacter(
  14739. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14740. {
  14741. side: {
  14742. height: math.unit(6 + 5 / 12, "feet"),
  14743. weight: math.unit(300, "lb"),
  14744. name: "Side",
  14745. image: {
  14746. source: "./media/characters/tempest-suicune/side.svg",
  14747. extra: 195 / 154,
  14748. bottom: 0.04
  14749. }
  14750. },
  14751. },
  14752. [
  14753. {
  14754. name: "Normal",
  14755. height: math.unit(6 + 5 / 12, "feet"),
  14756. default: true
  14757. },
  14758. ]
  14759. ))
  14760. characterMakers.push(() => makeCharacter(
  14761. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14762. {
  14763. front: {
  14764. height: math.unit(7 + 2 / 12, "feet"),
  14765. weight: math.unit(322, "lb"),
  14766. name: "Front",
  14767. image: {
  14768. source: "./media/characters/vulcan/front.svg",
  14769. extra: 154 / 147,
  14770. bottom: 0.04
  14771. }
  14772. },
  14773. },
  14774. [
  14775. {
  14776. name: "Normal",
  14777. height: math.unit(7 + 2 / 12, "feet"),
  14778. default: true
  14779. },
  14780. ]
  14781. ))
  14782. characterMakers.push(() => makeCharacter(
  14783. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14784. {
  14785. front: {
  14786. height: math.unit(5 + 10 / 12, "feet"),
  14787. weight: math.unit(264, "lb"),
  14788. name: "Front",
  14789. image: {
  14790. source: "./media/characters/gault/front.svg",
  14791. extra: 161 / 140,
  14792. bottom: 0.028
  14793. }
  14794. },
  14795. },
  14796. [
  14797. {
  14798. name: "Normal",
  14799. height: math.unit(5 + 10 / 12, "feet"),
  14800. default: true
  14801. },
  14802. ]
  14803. ))
  14804. characterMakers.push(() => makeCharacter(
  14805. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14806. {
  14807. front: {
  14808. height: math.unit(6, "feet"),
  14809. weight: math.unit(150, "lb"),
  14810. name: "Front",
  14811. image: {
  14812. source: "./media/characters/shard/front.svg",
  14813. extra: 273 / 238,
  14814. bottom: 0.02
  14815. }
  14816. },
  14817. },
  14818. [
  14819. {
  14820. name: "Normal",
  14821. height: math.unit(3 + 6 / 12, "feet"),
  14822. default: true
  14823. },
  14824. ]
  14825. ))
  14826. characterMakers.push(() => makeCharacter(
  14827. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14828. {
  14829. front: {
  14830. height: math.unit(5 + 11 / 12, "feet"),
  14831. weight: math.unit(146, "lb"),
  14832. name: "Front",
  14833. image: {
  14834. source: "./media/characters/ashe/front.svg",
  14835. extra: 400 / 373,
  14836. bottom: 0.01
  14837. }
  14838. },
  14839. },
  14840. [
  14841. {
  14842. name: "Normal",
  14843. height: math.unit(5 + 11 / 12, "feet"),
  14844. default: true
  14845. },
  14846. ]
  14847. ))
  14848. characterMakers.push(() => makeCharacter(
  14849. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14850. {
  14851. front: {
  14852. height: math.unit(5 + 5 / 12, "feet"),
  14853. weight: math.unit(135, "lb"),
  14854. name: "Front",
  14855. image: {
  14856. source: "./media/characters/beatrix/front.svg",
  14857. extra: 392 / 379,
  14858. bottom: 0.01
  14859. }
  14860. },
  14861. },
  14862. [
  14863. {
  14864. name: "Normal",
  14865. height: math.unit(6, "feet"),
  14866. default: true
  14867. },
  14868. ]
  14869. ))
  14870. characterMakers.push(() => makeCharacter(
  14871. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14872. {
  14873. front: {
  14874. height: math.unit(6, "feet"),
  14875. weight: math.unit(150, "lb"),
  14876. name: "Front",
  14877. image: {
  14878. source: "./media/characters/ignatius/front.svg",
  14879. extra: 245 / 222,
  14880. bottom: 0.01
  14881. }
  14882. },
  14883. },
  14884. [
  14885. {
  14886. name: "Normal",
  14887. height: math.unit(5 + 5 / 12, "feet"),
  14888. default: true
  14889. },
  14890. ]
  14891. ))
  14892. characterMakers.push(() => makeCharacter(
  14893. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14894. {
  14895. front: {
  14896. height: math.unit(6 + 2 / 12, "feet"),
  14897. weight: math.unit(138, "lb"),
  14898. name: "Front",
  14899. image: {
  14900. source: "./media/characters/mei-li/front.svg",
  14901. extra: 237 / 229,
  14902. bottom: 0.03
  14903. }
  14904. },
  14905. },
  14906. [
  14907. {
  14908. name: "Normal",
  14909. height: math.unit(6 + 2 / 12, "feet"),
  14910. default: true
  14911. },
  14912. ]
  14913. ))
  14914. characterMakers.push(() => makeCharacter(
  14915. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14916. {
  14917. front: {
  14918. height: math.unit(2 + 4 / 12, "feet"),
  14919. weight: math.unit(62, "lb"),
  14920. name: "Front",
  14921. image: {
  14922. source: "./media/characters/puru/front.svg",
  14923. extra: 206 / 149,
  14924. bottom: 0.06
  14925. }
  14926. },
  14927. },
  14928. [
  14929. {
  14930. name: "Normal",
  14931. height: math.unit(2 + 4 / 12, "feet"),
  14932. default: true
  14933. },
  14934. ]
  14935. ))
  14936. characterMakers.push(() => makeCharacter(
  14937. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14938. {
  14939. taur: {
  14940. height: math.unit(11, "feet"),
  14941. weight: math.unit(500, "lb"),
  14942. name: "Taur",
  14943. image: {
  14944. source: "./media/characters/kee/taur.svg",
  14945. extra: 1,
  14946. bottom: 0.04
  14947. }
  14948. },
  14949. },
  14950. [
  14951. {
  14952. name: "Normal",
  14953. height: math.unit(11, "feet"),
  14954. default: true
  14955. },
  14956. ]
  14957. ))
  14958. characterMakers.push(() => makeCharacter(
  14959. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14960. {
  14961. anthro: {
  14962. height: math.unit(7, "feet"),
  14963. weight: math.unit(190, "lb"),
  14964. name: "Anthro",
  14965. image: {
  14966. source: "./media/characters/cobalt-dracha/anthro.svg",
  14967. extra: 231 / 225,
  14968. bottom: 0.04
  14969. }
  14970. },
  14971. feral: {
  14972. height: math.unit(9 + 7 / 12, "feet"),
  14973. weight: math.unit(294, "lb"),
  14974. name: "Feral",
  14975. image: {
  14976. source: "./media/characters/cobalt-dracha/feral.svg",
  14977. extra: 692 / 633,
  14978. bottom: 0.05
  14979. }
  14980. },
  14981. },
  14982. [
  14983. {
  14984. name: "Normal",
  14985. height: math.unit(7, "feet"),
  14986. default: true
  14987. },
  14988. ]
  14989. ))
  14990. characterMakers.push(() => makeCharacter(
  14991. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14992. {
  14993. fallen: {
  14994. height: math.unit(11 + 8 / 12, "feet"),
  14995. weight: math.unit(485, "lb"),
  14996. name: "Java (Fallen)",
  14997. rename: true,
  14998. image: {
  14999. source: "./media/characters/java/fallen.svg",
  15000. extra: 226 / 208,
  15001. bottom: 0.005
  15002. }
  15003. },
  15004. godkin: {
  15005. height: math.unit(10 + 6 / 12, "feet"),
  15006. weight: math.unit(328, "lb"),
  15007. name: "Java (Godkin)",
  15008. rename: true,
  15009. image: {
  15010. source: "./media/characters/java/godkin.svg",
  15011. extra: 270 / 262,
  15012. bottom: 0.02
  15013. }
  15014. },
  15015. },
  15016. [
  15017. {
  15018. name: "Normal",
  15019. height: math.unit(11 + 8 / 12, "feet"),
  15020. default: true
  15021. },
  15022. ]
  15023. ))
  15024. characterMakers.push(() => makeCharacter(
  15025. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15026. {
  15027. front: {
  15028. height: math.unit(7 + 8 / 12, "feet"),
  15029. weight: math.unit(320, "lb"),
  15030. name: "Front",
  15031. image: {
  15032. source: "./media/characters/skoll/front.svg",
  15033. extra: 232 / 220,
  15034. bottom: 0.02
  15035. }
  15036. },
  15037. },
  15038. [
  15039. {
  15040. name: "Normal",
  15041. height: math.unit(7 + 8 / 12, "feet"),
  15042. default: true
  15043. },
  15044. ]
  15045. ))
  15046. characterMakers.push(() => makeCharacter(
  15047. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15048. {
  15049. front: {
  15050. height: math.unit(5 + 9 / 12, "feet"),
  15051. weight: math.unit(170, "lb"),
  15052. name: "Front",
  15053. image: {
  15054. source: "./media/characters/purna/front.svg",
  15055. extra: 239 / 229,
  15056. bottom: 0.01
  15057. }
  15058. },
  15059. },
  15060. [
  15061. {
  15062. name: "Normal",
  15063. height: math.unit(5 + 9 / 12, "feet"),
  15064. default: true
  15065. },
  15066. ]
  15067. ))
  15068. characterMakers.push(() => makeCharacter(
  15069. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15070. {
  15071. front: {
  15072. height: math.unit(5 + 9 / 12, "feet"),
  15073. weight: math.unit(142, "lb"),
  15074. name: "Front",
  15075. image: {
  15076. source: "./media/characters/kuva/front.svg",
  15077. extra: 281 / 271,
  15078. bottom: 0.006
  15079. }
  15080. },
  15081. },
  15082. [
  15083. {
  15084. name: "Normal",
  15085. height: math.unit(5 + 9 / 12, "feet"),
  15086. default: true
  15087. },
  15088. ]
  15089. ))
  15090. characterMakers.push(() => makeCharacter(
  15091. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15092. {
  15093. anthro: {
  15094. height: math.unit(9 + 2 / 12, "feet"),
  15095. weight: math.unit(270, "lb"),
  15096. name: "Anthro",
  15097. image: {
  15098. source: "./media/characters/embra/anthro.svg",
  15099. extra: 200 / 187,
  15100. bottom: 0.02
  15101. }
  15102. },
  15103. feral: {
  15104. height: math.unit(18 + 8 / 12, "feet"),
  15105. weight: math.unit(576, "lb"),
  15106. name: "Feral",
  15107. image: {
  15108. source: "./media/characters/embra/feral.svg",
  15109. extra: 152 / 137,
  15110. bottom: 0.037
  15111. }
  15112. },
  15113. },
  15114. [
  15115. {
  15116. name: "Normal",
  15117. height: math.unit(9 + 2 / 12, "feet"),
  15118. default: true
  15119. },
  15120. ]
  15121. ))
  15122. characterMakers.push(() => makeCharacter(
  15123. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15124. {
  15125. anthro: {
  15126. height: math.unit(10 + 9 / 12, "feet"),
  15127. weight: math.unit(224, "lb"),
  15128. name: "Anthro",
  15129. image: {
  15130. source: "./media/characters/grottos/anthro.svg",
  15131. extra: 350 / 332,
  15132. bottom: 0.045
  15133. }
  15134. },
  15135. feral: {
  15136. height: math.unit(20 + 7 / 12, "feet"),
  15137. weight: math.unit(629, "lb"),
  15138. name: "Feral",
  15139. image: {
  15140. source: "./media/characters/grottos/feral.svg",
  15141. extra: 207 / 190,
  15142. bottom: 0.05
  15143. }
  15144. },
  15145. },
  15146. [
  15147. {
  15148. name: "Normal",
  15149. height: math.unit(10 + 9 / 12, "feet"),
  15150. default: true
  15151. },
  15152. ]
  15153. ))
  15154. characterMakers.push(() => makeCharacter(
  15155. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15156. {
  15157. anthro: {
  15158. height: math.unit(9 + 6 / 12, "feet"),
  15159. weight: math.unit(298, "lb"),
  15160. name: "Anthro",
  15161. image: {
  15162. source: "./media/characters/frifna/anthro.svg",
  15163. extra: 282 / 269,
  15164. bottom: 0.015
  15165. }
  15166. },
  15167. feral: {
  15168. height: math.unit(16 + 2 / 12, "feet"),
  15169. weight: math.unit(624, "lb"),
  15170. name: "Feral",
  15171. image: {
  15172. source: "./media/characters/frifna/feral.svg"
  15173. }
  15174. },
  15175. },
  15176. [
  15177. {
  15178. name: "Normal",
  15179. height: math.unit(9 + 6 / 12, "feet"),
  15180. default: true
  15181. },
  15182. ]
  15183. ))
  15184. characterMakers.push(() => makeCharacter(
  15185. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15186. {
  15187. front: {
  15188. height: math.unit(6 + 2 / 12, "feet"),
  15189. weight: math.unit(168, "lb"),
  15190. name: "Front",
  15191. image: {
  15192. source: "./media/characters/elise/front.svg",
  15193. extra: 276 / 271
  15194. }
  15195. },
  15196. },
  15197. [
  15198. {
  15199. name: "Normal",
  15200. height: math.unit(6 + 2 / 12, "feet"),
  15201. default: true
  15202. },
  15203. ]
  15204. ))
  15205. characterMakers.push(() => makeCharacter(
  15206. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15207. {
  15208. front: {
  15209. height: math.unit(5 + 10 / 12, "feet"),
  15210. weight: math.unit(210, "lb"),
  15211. name: "Front",
  15212. image: {
  15213. source: "./media/characters/glade/front.svg",
  15214. extra: 258 / 247,
  15215. bottom: 0.008
  15216. }
  15217. },
  15218. },
  15219. [
  15220. {
  15221. name: "Normal",
  15222. height: math.unit(5 + 10 / 12, "feet"),
  15223. default: true
  15224. },
  15225. ]
  15226. ))
  15227. characterMakers.push(() => makeCharacter(
  15228. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15229. {
  15230. front: {
  15231. height: math.unit(5 + 10 / 12, "feet"),
  15232. weight: math.unit(129, "lb"),
  15233. name: "Front",
  15234. image: {
  15235. source: "./media/characters/rina/front.svg",
  15236. extra: 266 / 255,
  15237. bottom: 0.005
  15238. }
  15239. },
  15240. },
  15241. [
  15242. {
  15243. name: "Normal",
  15244. height: math.unit(5 + 10 / 12, "feet"),
  15245. default: true
  15246. },
  15247. ]
  15248. ))
  15249. characterMakers.push(() => makeCharacter(
  15250. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15251. {
  15252. front: {
  15253. height: math.unit(6 + 1 / 12, "feet"),
  15254. weight: math.unit(192, "lb"),
  15255. name: "Front",
  15256. image: {
  15257. source: "./media/characters/veronica/front.svg",
  15258. extra: 319 / 309,
  15259. bottom: 0.005
  15260. }
  15261. },
  15262. },
  15263. [
  15264. {
  15265. name: "Normal",
  15266. height: math.unit(6 + 1 / 12, "feet"),
  15267. default: true
  15268. },
  15269. ]
  15270. ))
  15271. characterMakers.push(() => makeCharacter(
  15272. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15273. {
  15274. front: {
  15275. height: math.unit(9 + 3 / 12, "feet"),
  15276. weight: math.unit(1100, "lb"),
  15277. name: "Front",
  15278. image: {
  15279. source: "./media/characters/braxton/front.svg",
  15280. extra: 1057 / 984,
  15281. bottom: 0.05
  15282. }
  15283. },
  15284. },
  15285. [
  15286. {
  15287. name: "Normal",
  15288. height: math.unit(9 + 3 / 12, "feet")
  15289. },
  15290. {
  15291. name: "Giant",
  15292. height: math.unit(300, "feet"),
  15293. default: true
  15294. },
  15295. {
  15296. name: "Macro",
  15297. height: math.unit(700, "feet")
  15298. },
  15299. {
  15300. name: "Megamacro",
  15301. height: math.unit(6000, "feet")
  15302. },
  15303. ]
  15304. ))
  15305. characterMakers.push(() => makeCharacter(
  15306. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15307. {
  15308. front: {
  15309. height: math.unit(6 + 7 / 12, "feet"),
  15310. weight: math.unit(150, "lb"),
  15311. name: "Front",
  15312. image: {
  15313. source: "./media/characters/blue-feyonics/front.svg",
  15314. extra: 1403 / 1306,
  15315. bottom: 0.047
  15316. }
  15317. },
  15318. },
  15319. [
  15320. {
  15321. name: "Normal",
  15322. height: math.unit(6 + 7 / 12, "feet"),
  15323. default: true
  15324. },
  15325. ]
  15326. ))
  15327. characterMakers.push(() => makeCharacter(
  15328. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15329. {
  15330. front: {
  15331. height: math.unit(1.8, "meters"),
  15332. weight: math.unit(60, "kg"),
  15333. name: "Front",
  15334. image: {
  15335. source: "./media/characters/maxwell/front.svg",
  15336. extra: 2060 / 1873
  15337. }
  15338. },
  15339. },
  15340. [
  15341. {
  15342. name: "Micro",
  15343. height: math.unit(1, "mm")
  15344. },
  15345. {
  15346. name: "Normal",
  15347. height: math.unit(1.8, "meter"),
  15348. default: true
  15349. },
  15350. {
  15351. name: "Macro",
  15352. height: math.unit(30, "meters")
  15353. },
  15354. {
  15355. name: "Megamacro",
  15356. height: math.unit(10, "km")
  15357. },
  15358. ]
  15359. ))
  15360. characterMakers.push(() => makeCharacter(
  15361. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15362. {
  15363. front: {
  15364. height: math.unit(6, "feet"),
  15365. weight: math.unit(150, "lb"),
  15366. name: "Front",
  15367. image: {
  15368. source: "./media/characters/jack/front.svg",
  15369. extra: 1754 / 1640,
  15370. bottom: 0.01
  15371. }
  15372. },
  15373. },
  15374. [
  15375. {
  15376. name: "Normal",
  15377. height: math.unit(80000, "feet"),
  15378. default: true
  15379. },
  15380. {
  15381. name: "Max size",
  15382. height: math.unit(10, "lightyears")
  15383. },
  15384. ]
  15385. ))
  15386. characterMakers.push(() => makeCharacter(
  15387. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15388. {
  15389. upright: {
  15390. height: math.unit(7, "feet"),
  15391. weight: math.unit(170, "lb"),
  15392. name: "Upright",
  15393. image: {
  15394. source: "./media/characters/cafat/upright.svg",
  15395. bottom: 0.01
  15396. }
  15397. },
  15398. uprightFull: {
  15399. height: math.unit(7, "feet"),
  15400. weight: math.unit(170, "lb"),
  15401. name: "Upright (Full)",
  15402. image: {
  15403. source: "./media/characters/cafat/upright-full.svg",
  15404. bottom: 0.01
  15405. }
  15406. },
  15407. side: {
  15408. height: math.unit(5, "feet"),
  15409. weight: math.unit(150, "lb"),
  15410. name: "Side",
  15411. image: {
  15412. source: "./media/characters/cafat/side.svg"
  15413. }
  15414. },
  15415. },
  15416. [
  15417. {
  15418. name: "Small",
  15419. height: math.unit(7, "feet"),
  15420. default: true
  15421. },
  15422. {
  15423. name: "Large",
  15424. height: math.unit(15.5, "feet")
  15425. },
  15426. ]
  15427. ))
  15428. characterMakers.push(() => makeCharacter(
  15429. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15430. {
  15431. front: {
  15432. height: math.unit(6, "feet"),
  15433. weight: math.unit(150, "lb"),
  15434. name: "Front",
  15435. image: {
  15436. source: "./media/characters/verin-raharra/front.svg",
  15437. extra: 5019 / 4835,
  15438. bottom: 0.023
  15439. }
  15440. },
  15441. },
  15442. [
  15443. {
  15444. name: "Normal",
  15445. height: math.unit(7 + 5 / 12, "feet"),
  15446. default: true
  15447. },
  15448. {
  15449. name: "Upsized",
  15450. height: math.unit(20, "feet")
  15451. },
  15452. ]
  15453. ))
  15454. characterMakers.push(() => makeCharacter(
  15455. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15456. {
  15457. front: {
  15458. height: math.unit(7, "feet"),
  15459. weight: math.unit(230, "lb"),
  15460. name: "Front",
  15461. image: {
  15462. source: "./media/characters/nakata/front.svg",
  15463. extra: 1.005,
  15464. bottom: 0.01
  15465. }
  15466. },
  15467. },
  15468. [
  15469. {
  15470. name: "Normal",
  15471. height: math.unit(7, "feet"),
  15472. default: true
  15473. },
  15474. {
  15475. name: "Big",
  15476. height: math.unit(14, "feet")
  15477. },
  15478. {
  15479. name: "Macro",
  15480. height: math.unit(400, "feet")
  15481. },
  15482. ]
  15483. ))
  15484. characterMakers.push(() => makeCharacter(
  15485. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15486. {
  15487. front: {
  15488. height: math.unit(4.91, "feet"),
  15489. weight: math.unit(100, "lb"),
  15490. name: "Front",
  15491. image: {
  15492. source: "./media/characters/lily/front.svg",
  15493. extra: 1585 / 1415,
  15494. bottom: 0.02
  15495. }
  15496. },
  15497. },
  15498. [
  15499. {
  15500. name: "Normal",
  15501. height: math.unit(4.91, "feet"),
  15502. default: true
  15503. },
  15504. ]
  15505. ))
  15506. characterMakers.push(() => makeCharacter(
  15507. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15508. {
  15509. laying: {
  15510. height: math.unit(4 + 4 / 12, "feet"),
  15511. weight: math.unit(600, "lb"),
  15512. name: "Laying",
  15513. image: {
  15514. source: "./media/characters/sheila/laying.svg",
  15515. extra: 1333 / 1265,
  15516. bottom: 0.16
  15517. }
  15518. },
  15519. },
  15520. [
  15521. {
  15522. name: "Normal",
  15523. height: math.unit(4 + 4 / 12, "feet"),
  15524. default: true
  15525. },
  15526. ]
  15527. ))
  15528. characterMakers.push(() => makeCharacter(
  15529. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15530. {
  15531. front: {
  15532. height: math.unit(6, "feet"),
  15533. weight: math.unit(190, "lb"),
  15534. name: "Front",
  15535. image: {
  15536. source: "./media/characters/sax/front.svg",
  15537. extra: 1187 / 973,
  15538. bottom: 0.042
  15539. }
  15540. },
  15541. },
  15542. [
  15543. {
  15544. name: "Micro",
  15545. height: math.unit(4, "inches"),
  15546. default: true
  15547. },
  15548. ]
  15549. ))
  15550. characterMakers.push(() => makeCharacter(
  15551. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15552. {
  15553. front: {
  15554. height: math.unit(6, "feet"),
  15555. weight: math.unit(150, "lb"),
  15556. name: "Front",
  15557. image: {
  15558. source: "./media/characters/pandora/front.svg",
  15559. extra: 2720 / 2556,
  15560. bottom: 0.015
  15561. }
  15562. },
  15563. back: {
  15564. height: math.unit(6, "feet"),
  15565. weight: math.unit(150, "lb"),
  15566. name: "Back",
  15567. image: {
  15568. source: "./media/characters/pandora/back.svg",
  15569. extra: 2720 / 2556,
  15570. bottom: 0.01
  15571. }
  15572. },
  15573. beans: {
  15574. height: math.unit(6 / 8, "feet"),
  15575. name: "Beans",
  15576. image: {
  15577. source: "./media/characters/pandora/beans.svg"
  15578. }
  15579. },
  15580. skirt: {
  15581. height: math.unit(6, "feet"),
  15582. weight: math.unit(150, "lb"),
  15583. name: "Skirt",
  15584. image: {
  15585. source: "./media/characters/pandora/skirt.svg",
  15586. extra: 1622 / 1525,
  15587. bottom: 0.015
  15588. }
  15589. },
  15590. hoodie: {
  15591. height: math.unit(6, "feet"),
  15592. weight: math.unit(150, "lb"),
  15593. name: "Hoodie",
  15594. image: {
  15595. source: "./media/characters/pandora/hoodie.svg",
  15596. extra: 1622 / 1525,
  15597. bottom: 0.015
  15598. }
  15599. },
  15600. casual: {
  15601. height: math.unit(6, "feet"),
  15602. weight: math.unit(150, "lb"),
  15603. name: "Casual",
  15604. image: {
  15605. source: "./media/characters/pandora/casual.svg",
  15606. extra: 1622 / 1525,
  15607. bottom: 0.015
  15608. }
  15609. },
  15610. },
  15611. [
  15612. {
  15613. name: "Normal",
  15614. height: math.unit(6, "feet")
  15615. },
  15616. {
  15617. name: "Big Steppy",
  15618. height: math.unit(1, "km"),
  15619. default: true
  15620. },
  15621. ]
  15622. ))
  15623. characterMakers.push(() => makeCharacter(
  15624. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15625. {
  15626. side: {
  15627. height: math.unit(10, "feet"),
  15628. weight: math.unit(800, "kg"),
  15629. name: "Side",
  15630. image: {
  15631. source: "./media/characters/venio-darcony/side.svg",
  15632. extra: 1373 / 1003,
  15633. bottom: 0.037
  15634. }
  15635. },
  15636. front: {
  15637. height: math.unit(19, "feet"),
  15638. weight: math.unit(800, "kg"),
  15639. name: "Front",
  15640. image: {
  15641. source: "./media/characters/venio-darcony/front.svg"
  15642. }
  15643. },
  15644. back: {
  15645. height: math.unit(19, "feet"),
  15646. weight: math.unit(800, "kg"),
  15647. name: "Back",
  15648. image: {
  15649. source: "./media/characters/venio-darcony/back.svg"
  15650. }
  15651. },
  15652. sideNsfw: {
  15653. height: math.unit(10, "feet"),
  15654. weight: math.unit(800, "kg"),
  15655. name: "Side (NSFW)",
  15656. image: {
  15657. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15658. extra: 1373 / 1003,
  15659. bottom: 0.037
  15660. }
  15661. },
  15662. frontNsfw: {
  15663. height: math.unit(19, "feet"),
  15664. weight: math.unit(800, "kg"),
  15665. name: "Front (NSFW)",
  15666. image: {
  15667. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15668. }
  15669. },
  15670. backNsfw: {
  15671. height: math.unit(19, "feet"),
  15672. weight: math.unit(800, "kg"),
  15673. name: "Back (NSFW)",
  15674. image: {
  15675. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15676. }
  15677. },
  15678. sideArmored: {
  15679. height: math.unit(10, "feet"),
  15680. weight: math.unit(800, "kg"),
  15681. name: "Side (Armored)",
  15682. image: {
  15683. source: "./media/characters/venio-darcony/side-armored.svg",
  15684. extra: 1373 / 1003,
  15685. bottom: 0.037
  15686. }
  15687. },
  15688. frontArmored: {
  15689. height: math.unit(19, "feet"),
  15690. weight: math.unit(900, "kg"),
  15691. name: "Front (Armored)",
  15692. image: {
  15693. source: "./media/characters/venio-darcony/front-armored.svg"
  15694. }
  15695. },
  15696. backArmored: {
  15697. height: math.unit(19, "feet"),
  15698. weight: math.unit(900, "kg"),
  15699. name: "Back (Armored)",
  15700. image: {
  15701. source: "./media/characters/venio-darcony/back-armored.svg"
  15702. }
  15703. },
  15704. sword: {
  15705. height: math.unit(10, "feet"),
  15706. weight: math.unit(50, "lb"),
  15707. name: "Sword",
  15708. image: {
  15709. source: "./media/characters/venio-darcony/sword.svg"
  15710. }
  15711. },
  15712. },
  15713. [
  15714. {
  15715. name: "Normal",
  15716. height: math.unit(10, "feet")
  15717. },
  15718. {
  15719. name: "Macro",
  15720. height: math.unit(130, "feet"),
  15721. default: true
  15722. },
  15723. {
  15724. name: "Macro+",
  15725. height: math.unit(240, "feet")
  15726. },
  15727. ]
  15728. ))
  15729. characterMakers.push(() => makeCharacter(
  15730. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15731. {
  15732. front: {
  15733. height: math.unit(6, "feet"),
  15734. weight: math.unit(150, "lb"),
  15735. name: "Front",
  15736. image: {
  15737. source: "./media/characters/veski/front.svg",
  15738. extra: 1299 / 1225,
  15739. bottom: 0.04
  15740. }
  15741. },
  15742. back: {
  15743. height: math.unit(6, "feet"),
  15744. weight: math.unit(150, "lb"),
  15745. name: "Back",
  15746. image: {
  15747. source: "./media/characters/veski/back.svg",
  15748. extra: 1299 / 1225,
  15749. bottom: 0.008
  15750. }
  15751. },
  15752. maw: {
  15753. height: math.unit(1.5 * 1.21, "feet"),
  15754. name: "Maw",
  15755. image: {
  15756. source: "./media/characters/veski/maw.svg"
  15757. }
  15758. },
  15759. },
  15760. [
  15761. {
  15762. name: "Macro",
  15763. height: math.unit(2, "km"),
  15764. default: true
  15765. },
  15766. ]
  15767. ))
  15768. characterMakers.push(() => makeCharacter(
  15769. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15770. {
  15771. front: {
  15772. height: math.unit(5 + 7 / 12, "feet"),
  15773. name: "Front",
  15774. image: {
  15775. source: "./media/characters/isabelle/front.svg",
  15776. extra: 2130 / 1976,
  15777. bottom: 0.05
  15778. }
  15779. },
  15780. },
  15781. [
  15782. {
  15783. name: "Supermicro",
  15784. height: math.unit(10, "micrometers")
  15785. },
  15786. {
  15787. name: "Micro",
  15788. height: math.unit(1, "inch")
  15789. },
  15790. {
  15791. name: "Tiny",
  15792. height: math.unit(5, "inches")
  15793. },
  15794. {
  15795. name: "Standard",
  15796. height: math.unit(5 + 7 / 12, "inches")
  15797. },
  15798. {
  15799. name: "Macro",
  15800. height: math.unit(80, "meters"),
  15801. default: true
  15802. },
  15803. {
  15804. name: "Megamacro",
  15805. height: math.unit(250, "meters")
  15806. },
  15807. {
  15808. name: "Gigamacro",
  15809. height: math.unit(5, "km")
  15810. },
  15811. {
  15812. name: "Cosmic",
  15813. height: math.unit(2.5e6, "miles")
  15814. },
  15815. ]
  15816. ))
  15817. characterMakers.push(() => makeCharacter(
  15818. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15819. {
  15820. front: {
  15821. height: math.unit(6, "feet"),
  15822. weight: math.unit(150, "lb"),
  15823. name: "Front",
  15824. image: {
  15825. source: "./media/characters/hanzo/front.svg",
  15826. extra: 374 / 344,
  15827. bottom: 0.02
  15828. }
  15829. },
  15830. },
  15831. [
  15832. {
  15833. name: "Normal",
  15834. height: math.unit(8, "feet"),
  15835. default: true
  15836. },
  15837. ]
  15838. ))
  15839. characterMakers.push(() => makeCharacter(
  15840. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15841. {
  15842. front: {
  15843. height: math.unit(7, "feet"),
  15844. weight: math.unit(130, "lb"),
  15845. name: "Front",
  15846. image: {
  15847. source: "./media/characters/anna/front.svg",
  15848. extra: 169 / 145,
  15849. bottom: 0.06
  15850. }
  15851. },
  15852. full: {
  15853. height: math.unit(4.96, "feet"),
  15854. weight: math.unit(220, "lb"),
  15855. name: "Full",
  15856. image: {
  15857. source: "./media/characters/anna/full.svg",
  15858. extra: 138 / 114,
  15859. bottom: 0.15
  15860. }
  15861. },
  15862. tongue: {
  15863. height: math.unit(2.53, "feet"),
  15864. name: "Tongue",
  15865. image: {
  15866. source: "./media/characters/anna/tongue.svg"
  15867. }
  15868. },
  15869. },
  15870. [
  15871. {
  15872. name: "Normal",
  15873. height: math.unit(7, "feet"),
  15874. default: true
  15875. },
  15876. ]
  15877. ))
  15878. characterMakers.push(() => makeCharacter(
  15879. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15880. {
  15881. front: {
  15882. height: math.unit(7, "feet"),
  15883. weight: math.unit(150, "lb"),
  15884. name: "Front",
  15885. image: {
  15886. source: "./media/characters/ian-corvid/front.svg",
  15887. extra: 150 / 142,
  15888. bottom: 0.02
  15889. }
  15890. },
  15891. back: {
  15892. height: math.unit(7, "feet"),
  15893. weight: math.unit(150, "lb"),
  15894. name: "Back",
  15895. image: {
  15896. source: "./media/characters/ian-corvid/back.svg",
  15897. extra: 150 / 143,
  15898. bottom: 0.01
  15899. }
  15900. },
  15901. stomping: {
  15902. height: math.unit(7, "feet"),
  15903. weight: math.unit(150, "lb"),
  15904. name: "Stomping",
  15905. image: {
  15906. source: "./media/characters/ian-corvid/stomping.svg",
  15907. extra: 76 / 72
  15908. }
  15909. },
  15910. sitting: {
  15911. height: math.unit(7 / 1.8, "feet"),
  15912. weight: math.unit(150, "lb"),
  15913. name: "Sitting",
  15914. image: {
  15915. source: "./media/characters/ian-corvid/sitting.svg",
  15916. extra: 1400 / 1269,
  15917. bottom: 0.15
  15918. }
  15919. },
  15920. },
  15921. [
  15922. {
  15923. name: "Tiny Microw",
  15924. height: math.unit(1, "inch")
  15925. },
  15926. {
  15927. name: "Microw",
  15928. height: math.unit(6, "inches")
  15929. },
  15930. {
  15931. name: "Crow",
  15932. height: math.unit(7 + 1 / 12, "feet"),
  15933. default: true
  15934. },
  15935. {
  15936. name: "Macrow",
  15937. height: math.unit(176, "feet")
  15938. },
  15939. ]
  15940. ))
  15941. characterMakers.push(() => makeCharacter(
  15942. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15943. {
  15944. front: {
  15945. height: math.unit(5 + 7 / 12, "feet"),
  15946. weight: math.unit(147, "lb"),
  15947. name: "Front",
  15948. image: {
  15949. source: "./media/characters/natalie-kellon/front.svg",
  15950. extra: 1214 / 1141,
  15951. bottom: 0.02
  15952. }
  15953. },
  15954. },
  15955. [
  15956. {
  15957. name: "Micro",
  15958. height: math.unit(1 / 16, "inch")
  15959. },
  15960. {
  15961. name: "Tiny",
  15962. height: math.unit(4, "inches")
  15963. },
  15964. {
  15965. name: "Normal",
  15966. height: math.unit(5 + 7 / 12, "feet"),
  15967. default: true
  15968. },
  15969. {
  15970. name: "Amazon",
  15971. height: math.unit(12, "feet")
  15972. },
  15973. {
  15974. name: "Giantess",
  15975. height: math.unit(160, "meters")
  15976. },
  15977. {
  15978. name: "Titaness",
  15979. height: math.unit(800, "meters")
  15980. },
  15981. ]
  15982. ))
  15983. characterMakers.push(() => makeCharacter(
  15984. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15985. {
  15986. front: {
  15987. height: math.unit(6, "feet"),
  15988. weight: math.unit(150, "lb"),
  15989. name: "Front",
  15990. image: {
  15991. source: "./media/characters/alluria/front.svg",
  15992. extra: 806 / 738,
  15993. bottom: 0.01
  15994. }
  15995. },
  15996. side: {
  15997. height: math.unit(6, "feet"),
  15998. weight: math.unit(150, "lb"),
  15999. name: "Side",
  16000. image: {
  16001. source: "./media/characters/alluria/side.svg",
  16002. extra: 800 / 750,
  16003. }
  16004. },
  16005. back: {
  16006. height: math.unit(6, "feet"),
  16007. weight: math.unit(150, "lb"),
  16008. name: "Back",
  16009. image: {
  16010. source: "./media/characters/alluria/back.svg",
  16011. extra: 806 / 738,
  16012. }
  16013. },
  16014. frontMaid: {
  16015. height: math.unit(6, "feet"),
  16016. weight: math.unit(150, "lb"),
  16017. name: "Front (Maid)",
  16018. image: {
  16019. source: "./media/characters/alluria/front-maid.svg",
  16020. extra: 806 / 738,
  16021. bottom: 0.01
  16022. }
  16023. },
  16024. sideMaid: {
  16025. height: math.unit(6, "feet"),
  16026. weight: math.unit(150, "lb"),
  16027. name: "Side (Maid)",
  16028. image: {
  16029. source: "./media/characters/alluria/side-maid.svg",
  16030. extra: 800 / 750,
  16031. bottom: 0.005
  16032. }
  16033. },
  16034. backMaid: {
  16035. height: math.unit(6, "feet"),
  16036. weight: math.unit(150, "lb"),
  16037. name: "Back (Maid)",
  16038. image: {
  16039. source: "./media/characters/alluria/back-maid.svg",
  16040. extra: 806 / 738,
  16041. }
  16042. },
  16043. },
  16044. [
  16045. {
  16046. name: "Micro",
  16047. height: math.unit(6, "inches"),
  16048. default: true
  16049. },
  16050. ]
  16051. ))
  16052. characterMakers.push(() => makeCharacter(
  16053. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16054. {
  16055. front: {
  16056. height: math.unit(6, "feet"),
  16057. weight: math.unit(150, "lb"),
  16058. name: "Front",
  16059. image: {
  16060. source: "./media/characters/kyle/front.svg",
  16061. extra: 1069 / 962,
  16062. bottom: 77.228 / 1727.45
  16063. }
  16064. },
  16065. },
  16066. [
  16067. {
  16068. name: "Macro",
  16069. height: math.unit(150, "feet"),
  16070. default: true
  16071. },
  16072. ]
  16073. ))
  16074. characterMakers.push(() => makeCharacter(
  16075. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16076. {
  16077. front: {
  16078. height: math.unit(6, "feet"),
  16079. weight: math.unit(300, "lb"),
  16080. name: "Front",
  16081. image: {
  16082. source: "./media/characters/duncan/front.svg",
  16083. extra: 1650 / 1482,
  16084. bottom: 0.05
  16085. }
  16086. },
  16087. },
  16088. [
  16089. {
  16090. name: "Macro",
  16091. height: math.unit(100, "feet"),
  16092. default: true
  16093. },
  16094. ]
  16095. ))
  16096. characterMakers.push(() => makeCharacter(
  16097. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16098. {
  16099. front: {
  16100. height: math.unit(5 + 4 / 12, "feet"),
  16101. weight: math.unit(220, "lb"),
  16102. name: "Front",
  16103. image: {
  16104. source: "./media/characters/memory/front.svg",
  16105. extra: 3641 / 3545,
  16106. bottom: 0.03
  16107. }
  16108. },
  16109. back: {
  16110. height: math.unit(5 + 4 / 12, "feet"),
  16111. weight: math.unit(220, "lb"),
  16112. name: "Back",
  16113. image: {
  16114. source: "./media/characters/memory/back.svg",
  16115. extra: 3641 / 3545,
  16116. bottom: 0.025
  16117. }
  16118. },
  16119. frontSkirt: {
  16120. height: math.unit(5 + 4 / 12, "feet"),
  16121. weight: math.unit(220, "lb"),
  16122. name: "Front (Skirt)",
  16123. image: {
  16124. source: "./media/characters/memory/front-skirt.svg",
  16125. extra: 3641 / 3545,
  16126. bottom: 0.03
  16127. }
  16128. },
  16129. frontDress: {
  16130. height: math.unit(5 + 4 / 12, "feet"),
  16131. weight: math.unit(220, "lb"),
  16132. name: "Front (Dress)",
  16133. image: {
  16134. source: "./media/characters/memory/front-dress.svg",
  16135. extra: 3641 / 3545,
  16136. bottom: 0.03
  16137. }
  16138. },
  16139. },
  16140. [
  16141. {
  16142. name: "Micro",
  16143. height: math.unit(6, "inches"),
  16144. default: true
  16145. },
  16146. {
  16147. name: "Normal",
  16148. height: math.unit(5 + 4 / 12, "feet")
  16149. },
  16150. ]
  16151. ))
  16152. characterMakers.push(() => makeCharacter(
  16153. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16154. {
  16155. front: {
  16156. height: math.unit(4 + 11 / 12, "feet"),
  16157. weight: math.unit(100, "lb"),
  16158. name: "Front",
  16159. image: {
  16160. source: "./media/characters/luno/front.svg",
  16161. extra: 1535 / 1487,
  16162. bottom: 0.03
  16163. }
  16164. },
  16165. },
  16166. [
  16167. {
  16168. name: "Micro",
  16169. height: math.unit(3, "inches")
  16170. },
  16171. {
  16172. name: "Normal",
  16173. height: math.unit(4 + 11 / 12, "feet"),
  16174. default: true
  16175. },
  16176. {
  16177. name: "Macro",
  16178. height: math.unit(300, "feet")
  16179. },
  16180. {
  16181. name: "Megamacro",
  16182. height: math.unit(700, "miles")
  16183. },
  16184. ]
  16185. ))
  16186. characterMakers.push(() => makeCharacter(
  16187. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16188. {
  16189. front: {
  16190. height: math.unit(6 + 2 / 12, "feet"),
  16191. weight: math.unit(170, "lb"),
  16192. name: "Front",
  16193. image: {
  16194. source: "./media/characters/jamesy/front.svg",
  16195. extra: 440 / 382,
  16196. bottom: 0.005
  16197. }
  16198. },
  16199. },
  16200. [
  16201. {
  16202. name: "Micro",
  16203. height: math.unit(3, "inches")
  16204. },
  16205. {
  16206. name: "Normal",
  16207. height: math.unit(6 + 2 / 12, "feet"),
  16208. default: true
  16209. },
  16210. {
  16211. name: "Macro",
  16212. height: math.unit(300, "feet")
  16213. },
  16214. {
  16215. name: "Megamacro",
  16216. height: math.unit(700, "miles")
  16217. },
  16218. ]
  16219. ))
  16220. characterMakers.push(() => makeCharacter(
  16221. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16222. {
  16223. front: {
  16224. height: math.unit(6, "feet"),
  16225. weight: math.unit(160, "lb"),
  16226. name: "Front",
  16227. image: {
  16228. source: "./media/characters/mark/front.svg",
  16229. extra: 3300 / 3100,
  16230. bottom: 136.42 / 3440.47
  16231. }
  16232. },
  16233. },
  16234. [
  16235. {
  16236. name: "Macro",
  16237. height: math.unit(120, "meters")
  16238. },
  16239. {
  16240. name: "Bigger Macro",
  16241. height: math.unit(350, "meters")
  16242. },
  16243. {
  16244. name: "Megamacro",
  16245. height: math.unit(8, "km"),
  16246. default: true
  16247. },
  16248. {
  16249. name: "Continental",
  16250. height: math.unit(4550, "km")
  16251. },
  16252. {
  16253. name: "Planetary",
  16254. height: math.unit(65000, "km")
  16255. },
  16256. ]
  16257. ))
  16258. characterMakers.push(() => makeCharacter(
  16259. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16260. {
  16261. front: {
  16262. height: math.unit(6, "feet"),
  16263. weight: math.unit(400, "lb"),
  16264. name: "Front",
  16265. image: {
  16266. source: "./media/characters/mac/front.svg",
  16267. extra: 1048 / 987.7,
  16268. bottom: 60 / 1107.6,
  16269. }
  16270. },
  16271. },
  16272. [
  16273. {
  16274. name: "Macro",
  16275. height: math.unit(500, "feet"),
  16276. default: true
  16277. },
  16278. ]
  16279. ))
  16280. characterMakers.push(() => makeCharacter(
  16281. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16282. {
  16283. front: {
  16284. height: math.unit(5 + 2 / 12, "feet"),
  16285. weight: math.unit(190, "lb"),
  16286. name: "Front",
  16287. image: {
  16288. source: "./media/characters/bari/front.svg",
  16289. extra: 3156 / 2880,
  16290. bottom: 0.03
  16291. }
  16292. },
  16293. back: {
  16294. height: math.unit(5 + 2 / 12, "feet"),
  16295. weight: math.unit(190, "lb"),
  16296. name: "Back",
  16297. image: {
  16298. source: "./media/characters/bari/back.svg",
  16299. extra: 3260 / 2834,
  16300. bottom: 0.025
  16301. }
  16302. },
  16303. frontPlush: {
  16304. height: math.unit(5 + 2 / 12, "feet"),
  16305. weight: math.unit(190, "lb"),
  16306. name: "Front (Plush)",
  16307. image: {
  16308. source: "./media/characters/bari/front-plush.svg",
  16309. extra: 1112 / 1061,
  16310. bottom: 0.002
  16311. }
  16312. },
  16313. },
  16314. [
  16315. {
  16316. name: "Micro",
  16317. height: math.unit(3, "inches")
  16318. },
  16319. {
  16320. name: "Normal",
  16321. height: math.unit(5 + 2 / 12, "feet"),
  16322. default: true
  16323. },
  16324. {
  16325. name: "Macro",
  16326. height: math.unit(20, "feet")
  16327. },
  16328. ]
  16329. ))
  16330. characterMakers.push(() => makeCharacter(
  16331. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16332. {
  16333. front: {
  16334. height: math.unit(6 + 1 / 12, "feet"),
  16335. weight: math.unit(275, "lb"),
  16336. name: "Front",
  16337. image: {
  16338. source: "./media/characters/hunter-misha-raven/front.svg"
  16339. }
  16340. },
  16341. },
  16342. [
  16343. {
  16344. name: "Mortal",
  16345. height: math.unit(6 + 1 / 12, "feet")
  16346. },
  16347. {
  16348. name: "Divine",
  16349. height: math.unit(1.12134e34, "parsecs"),
  16350. default: true
  16351. },
  16352. ]
  16353. ))
  16354. characterMakers.push(() => makeCharacter(
  16355. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16356. {
  16357. front: {
  16358. height: math.unit(6 + 3 / 12, "feet"),
  16359. weight: math.unit(220, "lb"),
  16360. name: "Front",
  16361. image: {
  16362. source: "./media/characters/max-calore/front.svg",
  16363. extra: 1700 / 1648,
  16364. bottom: 0.01
  16365. }
  16366. },
  16367. back: {
  16368. height: math.unit(6 + 3 / 12, "feet"),
  16369. weight: math.unit(220, "lb"),
  16370. name: "Back",
  16371. image: {
  16372. source: "./media/characters/max-calore/back.svg",
  16373. extra: 1700 / 1648,
  16374. bottom: 0.01
  16375. }
  16376. },
  16377. },
  16378. [
  16379. {
  16380. name: "Normal",
  16381. height: math.unit(6 + 3 / 12, "feet"),
  16382. default: true
  16383. },
  16384. ]
  16385. ))
  16386. characterMakers.push(() => makeCharacter(
  16387. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16388. {
  16389. side: {
  16390. height: math.unit(2 + 8 / 12, "feet"),
  16391. weight: math.unit(99, "lb"),
  16392. name: "Side",
  16393. image: {
  16394. source: "./media/characters/aspen/side.svg",
  16395. extra: 152 / 138,
  16396. bottom: 0.032
  16397. }
  16398. },
  16399. },
  16400. [
  16401. {
  16402. name: "Normal",
  16403. height: math.unit(2 + 8 / 12, "feet"),
  16404. default: true
  16405. },
  16406. ]
  16407. ))
  16408. characterMakers.push(() => makeCharacter(
  16409. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16410. {
  16411. side: {
  16412. height: math.unit(3 + 2 / 12, "feet"),
  16413. weight: math.unit(224, "lb"),
  16414. name: "Side",
  16415. image: {
  16416. source: "./media/characters/sheila-feral-wolf/side.svg",
  16417. extra: 179 / 166,
  16418. bottom: 0.03
  16419. }
  16420. },
  16421. },
  16422. [
  16423. {
  16424. name: "Normal",
  16425. height: math.unit(3 + 2 / 12, "feet"),
  16426. default: true
  16427. },
  16428. ]
  16429. ))
  16430. characterMakers.push(() => makeCharacter(
  16431. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16432. {
  16433. side: {
  16434. height: math.unit(1 + 9 / 12, "feet"),
  16435. weight: math.unit(38, "lb"),
  16436. name: "Side",
  16437. image: {
  16438. source: "./media/characters/michelle/side.svg",
  16439. extra: 147 / 136.7,
  16440. bottom: 0.03
  16441. }
  16442. },
  16443. },
  16444. [
  16445. {
  16446. name: "Normal",
  16447. height: math.unit(1 + 9 / 12, "feet"),
  16448. default: true
  16449. },
  16450. ]
  16451. ))
  16452. characterMakers.push(() => makeCharacter(
  16453. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16454. {
  16455. front: {
  16456. height: math.unit(1 + 1 / 12, "feet"),
  16457. weight: math.unit(18, "lb"),
  16458. name: "Front",
  16459. image: {
  16460. source: "./media/characters/nino/front.svg"
  16461. }
  16462. },
  16463. },
  16464. [
  16465. {
  16466. name: "Normal",
  16467. height: math.unit(1 + 1 / 12, "feet"),
  16468. default: true
  16469. },
  16470. ]
  16471. ))
  16472. characterMakers.push(() => makeCharacter(
  16473. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16474. {
  16475. front: {
  16476. height: math.unit(1, "feet"),
  16477. weight: math.unit(16, "lb"),
  16478. name: "Front",
  16479. image: {
  16480. source: "./media/characters/viola/front.svg"
  16481. }
  16482. },
  16483. },
  16484. [
  16485. {
  16486. name: "Normal",
  16487. height: math.unit(1, "feet"),
  16488. default: true
  16489. },
  16490. ]
  16491. ))
  16492. characterMakers.push(() => makeCharacter(
  16493. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16494. {
  16495. front: {
  16496. height: math.unit(6 + 5 / 12, "feet"),
  16497. weight: math.unit(580, "lb"),
  16498. name: "Front",
  16499. image: {
  16500. source: "./media/characters/atlas/front.svg",
  16501. extra: 298.5 / 290,
  16502. bottom: 0.015
  16503. }
  16504. },
  16505. },
  16506. [
  16507. {
  16508. name: "Normal",
  16509. height: math.unit(6 + 5 / 12, "feet"),
  16510. default: true
  16511. },
  16512. ]
  16513. ))
  16514. characterMakers.push(() => makeCharacter(
  16515. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16516. {
  16517. side: {
  16518. height: math.unit(1 + 10 / 12, "feet"),
  16519. weight: math.unit(25, "lb"),
  16520. name: "Side",
  16521. image: {
  16522. source: "./media/characters/davy/side.svg",
  16523. extra: 200 / 170,
  16524. bottom: 0.01
  16525. }
  16526. },
  16527. },
  16528. [
  16529. {
  16530. name: "Normal",
  16531. height: math.unit(1 + 10 / 12, "feet"),
  16532. default: true
  16533. },
  16534. ]
  16535. ))
  16536. characterMakers.push(() => makeCharacter(
  16537. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16538. {
  16539. side: {
  16540. height: math.unit(4 + 8 / 12, "feet"),
  16541. weight: math.unit(166, "lb"),
  16542. name: "Side",
  16543. image: {
  16544. source: "./media/characters/fiona/side.svg",
  16545. extra: 232 / 220,
  16546. bottom: 0.03
  16547. }
  16548. },
  16549. },
  16550. [
  16551. {
  16552. name: "Normal",
  16553. height: math.unit(4 + 8 / 12, "feet"),
  16554. default: true
  16555. },
  16556. ]
  16557. ))
  16558. characterMakers.push(() => makeCharacter(
  16559. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16560. {
  16561. front: {
  16562. height: math.unit(2, "feet"),
  16563. weight: math.unit(62, "lb"),
  16564. name: "Front",
  16565. image: {
  16566. source: "./media/characters/lyla/front.svg",
  16567. bottom: 0.1
  16568. }
  16569. },
  16570. },
  16571. [
  16572. {
  16573. name: "Normal",
  16574. height: math.unit(2, "feet"),
  16575. default: true
  16576. },
  16577. ]
  16578. ))
  16579. characterMakers.push(() => makeCharacter(
  16580. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16581. {
  16582. side: {
  16583. height: math.unit(1.8, "feet"),
  16584. weight: math.unit(44, "lb"),
  16585. name: "Side",
  16586. image: {
  16587. source: "./media/characters/perseus/side.svg",
  16588. bottom: 0.21
  16589. }
  16590. },
  16591. },
  16592. [
  16593. {
  16594. name: "Normal",
  16595. height: math.unit(1.8, "feet"),
  16596. default: true
  16597. },
  16598. ]
  16599. ))
  16600. characterMakers.push(() => makeCharacter(
  16601. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16602. {
  16603. side: {
  16604. height: math.unit(4 + 2 / 12, "feet"),
  16605. weight: math.unit(20, "lb"),
  16606. name: "Side",
  16607. image: {
  16608. source: "./media/characters/remus/side.svg"
  16609. }
  16610. },
  16611. },
  16612. [
  16613. {
  16614. name: "Normal",
  16615. height: math.unit(4 + 2 / 12, "feet"),
  16616. default: true
  16617. },
  16618. ]
  16619. ))
  16620. characterMakers.push(() => makeCharacter(
  16621. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16622. {
  16623. front: {
  16624. height: math.unit(4 + 11 / 12, "feet"),
  16625. weight: math.unit(114, "lb"),
  16626. name: "Front",
  16627. image: {
  16628. source: "./media/characters/raf/front.svg",
  16629. bottom: 20.5 / 1863
  16630. }
  16631. },
  16632. side: {
  16633. height: math.unit(4 + 11 / 12, "feet"),
  16634. weight: math.unit(114, "lb"),
  16635. name: "Side",
  16636. image: {
  16637. source: "./media/characters/raf/side.svg",
  16638. bottom: 22 / 1822
  16639. }
  16640. },
  16641. },
  16642. [
  16643. {
  16644. name: "Micro",
  16645. height: math.unit(2, "inches")
  16646. },
  16647. {
  16648. name: "Normal",
  16649. height: math.unit(4 + 11 / 12, "feet"),
  16650. default: true
  16651. },
  16652. {
  16653. name: "Macro",
  16654. height: math.unit(70, "feet")
  16655. },
  16656. ]
  16657. ))
  16658. characterMakers.push(() => makeCharacter(
  16659. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16660. {
  16661. front: {
  16662. height: math.unit(1.5, "meters"),
  16663. weight: math.unit(68, "kg"),
  16664. name: "Front",
  16665. image: {
  16666. source: "./media/characters/liam-einarr/front.svg",
  16667. extra: 2822 / 2666
  16668. }
  16669. },
  16670. back: {
  16671. height: math.unit(1.5, "meters"),
  16672. weight: math.unit(68, "kg"),
  16673. name: "Back",
  16674. image: {
  16675. source: "./media/characters/liam-einarr/back.svg",
  16676. extra: 2822 / 2666,
  16677. bottom: 0.015
  16678. }
  16679. },
  16680. },
  16681. [
  16682. {
  16683. name: "Normal",
  16684. height: math.unit(1.5, "meters"),
  16685. default: true
  16686. },
  16687. {
  16688. name: "Macro",
  16689. height: math.unit(150, "meters")
  16690. },
  16691. {
  16692. name: "Megamacro",
  16693. height: math.unit(35, "km")
  16694. },
  16695. ]
  16696. ))
  16697. characterMakers.push(() => makeCharacter(
  16698. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16699. {
  16700. front: {
  16701. height: math.unit(6, "feet"),
  16702. weight: math.unit(75, "kg"),
  16703. name: "Front",
  16704. image: {
  16705. source: "./media/characters/linda/front.svg",
  16706. extra: 930 / 874,
  16707. bottom: 0.004
  16708. }
  16709. },
  16710. },
  16711. [
  16712. {
  16713. name: "Normal",
  16714. height: math.unit(6, "feet"),
  16715. default: true
  16716. },
  16717. ]
  16718. ))
  16719. characterMakers.push(() => makeCharacter(
  16720. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16721. {
  16722. front: {
  16723. height: math.unit(6 + 8 / 12, "feet"),
  16724. weight: math.unit(220, "lb"),
  16725. name: "Front",
  16726. image: {
  16727. source: "./media/characters/caylex/front.svg",
  16728. extra: 821 / 772,
  16729. bottom: 0.07
  16730. }
  16731. },
  16732. back: {
  16733. height: math.unit(6 + 8 / 12, "feet"),
  16734. weight: math.unit(220, "lb"),
  16735. name: "Back",
  16736. image: {
  16737. source: "./media/characters/caylex/back.svg",
  16738. extra: 821 / 772,
  16739. bottom: 0.022
  16740. }
  16741. },
  16742. hand: {
  16743. height: math.unit(1.25, "feet"),
  16744. name: "Hand",
  16745. image: {
  16746. source: "./media/characters/caylex/hand.svg"
  16747. }
  16748. },
  16749. foot: {
  16750. height: math.unit(1.6, "feet"),
  16751. name: "Foot",
  16752. image: {
  16753. source: "./media/characters/caylex/foot.svg"
  16754. }
  16755. },
  16756. armored: {
  16757. height: math.unit(6 + 8 / 12, "feet"),
  16758. weight: math.unit(250, "lb"),
  16759. name: "Armored",
  16760. image: {
  16761. source: "./media/characters/caylex/armored.svg",
  16762. extra: 1420 / 1310,
  16763. bottom: 0.045
  16764. }
  16765. },
  16766. },
  16767. [
  16768. {
  16769. name: "Normal",
  16770. height: math.unit(6 + 8 / 12, "feet"),
  16771. default: true
  16772. },
  16773. {
  16774. name: "Normal+",
  16775. height: math.unit(12, "feet")
  16776. },
  16777. ]
  16778. ))
  16779. characterMakers.push(() => makeCharacter(
  16780. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16781. {
  16782. front: {
  16783. height: math.unit(7 + 6 / 12, "feet"),
  16784. weight: math.unit(288, "lb"),
  16785. name: "Front",
  16786. image: {
  16787. source: "./media/characters/alana/front.svg",
  16788. extra: 679 / 653,
  16789. bottom: 22.5 / 701
  16790. }
  16791. },
  16792. },
  16793. [
  16794. {
  16795. name: "Normal",
  16796. height: math.unit(7 + 6 / 12, "feet")
  16797. },
  16798. {
  16799. name: "Large",
  16800. height: math.unit(50, "feet")
  16801. },
  16802. {
  16803. name: "Macro",
  16804. height: math.unit(100, "feet"),
  16805. default: true
  16806. },
  16807. {
  16808. name: "Macro+",
  16809. height: math.unit(200, "feet")
  16810. },
  16811. ]
  16812. ))
  16813. characterMakers.push(() => makeCharacter(
  16814. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16815. {
  16816. front: {
  16817. height: math.unit(6 + 1 / 12, "feet"),
  16818. weight: math.unit(210, "lb"),
  16819. name: "Front",
  16820. image: {
  16821. source: "./media/characters/hasani/front.svg",
  16822. extra: 244 / 232,
  16823. bottom: 0.01
  16824. }
  16825. },
  16826. back: {
  16827. height: math.unit(6 + 1 / 12, "feet"),
  16828. weight: math.unit(210, "lb"),
  16829. name: "Back",
  16830. image: {
  16831. source: "./media/characters/hasani/back.svg",
  16832. extra: 244 / 232,
  16833. bottom: 0.01
  16834. }
  16835. },
  16836. },
  16837. [
  16838. {
  16839. name: "Normal",
  16840. height: math.unit(6 + 1 / 12, "feet")
  16841. },
  16842. {
  16843. name: "Macro",
  16844. height: math.unit(175, "feet"),
  16845. default: true
  16846. },
  16847. ]
  16848. ))
  16849. characterMakers.push(() => makeCharacter(
  16850. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16851. {
  16852. front: {
  16853. height: math.unit(1.82, "meters"),
  16854. weight: math.unit(140, "lb"),
  16855. name: "Front",
  16856. image: {
  16857. source: "./media/characters/nita/front.svg",
  16858. extra: 2473 / 2363,
  16859. bottom: 0.01
  16860. }
  16861. },
  16862. },
  16863. [
  16864. {
  16865. name: "Normal",
  16866. height: math.unit(1.82, "m")
  16867. },
  16868. {
  16869. name: "Macro",
  16870. height: math.unit(300, "m")
  16871. },
  16872. {
  16873. name: "Mistake Canon",
  16874. height: math.unit(0.5, "miles"),
  16875. default: true
  16876. },
  16877. {
  16878. name: "Big Mistake",
  16879. height: math.unit(13, "miles")
  16880. },
  16881. {
  16882. name: "Playing God",
  16883. height: math.unit(2450, "miles")
  16884. },
  16885. ]
  16886. ))
  16887. characterMakers.push(() => makeCharacter(
  16888. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16889. {
  16890. front: {
  16891. height: math.unit(4, "feet"),
  16892. weight: math.unit(120, "lb"),
  16893. name: "Front",
  16894. image: {
  16895. source: "./media/characters/shiriko/front.svg",
  16896. extra: 195 / 188
  16897. }
  16898. },
  16899. },
  16900. [
  16901. {
  16902. name: "Normal",
  16903. height: math.unit(4, "feet"),
  16904. default: true
  16905. },
  16906. ]
  16907. ))
  16908. characterMakers.push(() => makeCharacter(
  16909. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16910. {
  16911. front: {
  16912. height: math.unit(6, "feet"),
  16913. name: "front",
  16914. image: {
  16915. source: "./media/characters/deja/front.svg",
  16916. extra: 926 / 840,
  16917. bottom: 0.07
  16918. }
  16919. },
  16920. },
  16921. [
  16922. {
  16923. name: "Planck Length",
  16924. height: math.unit(1.6e-35, "meters")
  16925. },
  16926. {
  16927. name: "Normal",
  16928. height: math.unit(30.48, "meters"),
  16929. default: true
  16930. },
  16931. {
  16932. name: "Universal",
  16933. height: math.unit(8.8e26, "meters")
  16934. },
  16935. ]
  16936. ))
  16937. characterMakers.push(() => makeCharacter(
  16938. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16939. {
  16940. side: {
  16941. height: math.unit(8, "feet"),
  16942. weight: math.unit(6300, "lb"),
  16943. name: "Side",
  16944. image: {
  16945. source: "./media/characters/anima/side.svg",
  16946. bottom: 0.035
  16947. }
  16948. },
  16949. },
  16950. [
  16951. {
  16952. name: "Normal",
  16953. height: math.unit(8, "feet"),
  16954. default: true
  16955. },
  16956. ]
  16957. ))
  16958. characterMakers.push(() => makeCharacter(
  16959. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16960. {
  16961. front: {
  16962. height: math.unit(8, "feet"),
  16963. weight: math.unit(350, "lb"),
  16964. name: "Front",
  16965. image: {
  16966. source: "./media/characters/bianca/front.svg",
  16967. extra: 234 / 225,
  16968. bottom: 0.03
  16969. }
  16970. },
  16971. },
  16972. [
  16973. {
  16974. name: "Normal",
  16975. height: math.unit(8, "feet"),
  16976. default: true
  16977. },
  16978. ]
  16979. ))
  16980. characterMakers.push(() => makeCharacter(
  16981. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16982. {
  16983. front: {
  16984. height: math.unit(6, "feet"),
  16985. weight: math.unit(150, "lb"),
  16986. name: "Front",
  16987. image: {
  16988. source: "./media/characters/adinia/front.svg",
  16989. extra: 1845 / 1672,
  16990. bottom: 0.02
  16991. }
  16992. },
  16993. back: {
  16994. height: math.unit(6, "feet"),
  16995. weight: math.unit(150, "lb"),
  16996. name: "Back",
  16997. image: {
  16998. source: "./media/characters/adinia/back.svg",
  16999. extra: 1845 / 1672,
  17000. bottom: 0.002
  17001. }
  17002. },
  17003. },
  17004. [
  17005. {
  17006. name: "Normal",
  17007. height: math.unit(11 + 5 / 12, "feet"),
  17008. default: true
  17009. },
  17010. ]
  17011. ))
  17012. characterMakers.push(() => makeCharacter(
  17013. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17014. {
  17015. front: {
  17016. height: math.unit(3, "meters"),
  17017. weight: math.unit(200, "kg"),
  17018. name: "Front",
  17019. image: {
  17020. source: "./media/characters/lykasa/front.svg",
  17021. extra: 1076 / 976,
  17022. bottom: 0.06
  17023. }
  17024. },
  17025. },
  17026. [
  17027. {
  17028. name: "Normal",
  17029. height: math.unit(3, "meters")
  17030. },
  17031. {
  17032. name: "Kaiju",
  17033. height: math.unit(120, "meters"),
  17034. default: true
  17035. },
  17036. {
  17037. name: "Mega Kaiju",
  17038. height: math.unit(240, "km")
  17039. },
  17040. {
  17041. name: "Giga Kaiju",
  17042. height: math.unit(400, "megameters")
  17043. },
  17044. {
  17045. name: "Tera Kaiju",
  17046. height: math.unit(800, "gigameters")
  17047. },
  17048. {
  17049. name: "Kaiju Dragon Goddess",
  17050. height: math.unit(26, "zettaparsecs")
  17051. },
  17052. ]
  17053. ))
  17054. characterMakers.push(() => makeCharacter(
  17055. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17056. {
  17057. side: {
  17058. height: math.unit(283 / 124 * 6, "feet"),
  17059. weight: math.unit(35000, "lb"),
  17060. name: "Side",
  17061. image: {
  17062. source: "./media/characters/malfaren/side.svg",
  17063. extra: 2500 / 1010,
  17064. bottom: 0.01
  17065. }
  17066. },
  17067. front: {
  17068. height: math.unit(22.36, "feet"),
  17069. weight: math.unit(35000, "lb"),
  17070. name: "Front",
  17071. image: {
  17072. source: "./media/characters/malfaren/front.svg",
  17073. extra: 1631 / 1476,
  17074. bottom: 0.01
  17075. }
  17076. },
  17077. maw: {
  17078. height: math.unit(6.9, "feet"),
  17079. name: "Maw",
  17080. image: {
  17081. source: "./media/characters/malfaren/maw.svg"
  17082. }
  17083. },
  17084. },
  17085. [
  17086. {
  17087. name: "Big",
  17088. height: math.unit(283 / 162 * 6, "feet"),
  17089. },
  17090. {
  17091. name: "Bigger",
  17092. height: math.unit(283 / 124 * 6, "feet")
  17093. },
  17094. {
  17095. name: "Massive",
  17096. height: math.unit(283 / 92 * 6, "feet"),
  17097. default: true
  17098. },
  17099. {
  17100. name: "👀💦",
  17101. height: math.unit(283 / 73 * 6, "feet"),
  17102. },
  17103. ]
  17104. ))
  17105. characterMakers.push(() => makeCharacter(
  17106. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17107. {
  17108. front: {
  17109. height: math.unit(1.7, "m"),
  17110. weight: math.unit(70, "kg"),
  17111. name: "Front",
  17112. image: {
  17113. source: "./media/characters/kernel/front.svg",
  17114. extra: 222 / 210,
  17115. bottom: 0.007
  17116. }
  17117. },
  17118. },
  17119. [
  17120. {
  17121. name: "Nano",
  17122. height: math.unit(17, "micrometers")
  17123. },
  17124. {
  17125. name: "Micro",
  17126. height: math.unit(1.7, "mm")
  17127. },
  17128. {
  17129. name: "Small",
  17130. height: math.unit(1.7, "cm")
  17131. },
  17132. {
  17133. name: "Normal",
  17134. height: math.unit(1.7, "m"),
  17135. default: true
  17136. },
  17137. ]
  17138. ))
  17139. characterMakers.push(() => makeCharacter(
  17140. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17141. {
  17142. front: {
  17143. height: math.unit(1.75, "meters"),
  17144. weight: math.unit(65, "kg"),
  17145. name: "Front",
  17146. image: {
  17147. source: "./media/characters/jayne-folest/front.svg",
  17148. extra: 2115 / 2007,
  17149. bottom: 0.02
  17150. }
  17151. },
  17152. back: {
  17153. height: math.unit(1.75, "meters"),
  17154. weight: math.unit(65, "kg"),
  17155. name: "Back",
  17156. image: {
  17157. source: "./media/characters/jayne-folest/back.svg",
  17158. extra: 2115 / 2007,
  17159. bottom: 0.005
  17160. }
  17161. },
  17162. frontClothed: {
  17163. height: math.unit(1.75, "meters"),
  17164. weight: math.unit(65, "kg"),
  17165. name: "Front (Clothed)",
  17166. image: {
  17167. source: "./media/characters/jayne-folest/front-clothed.svg",
  17168. extra: 2115 / 2007,
  17169. bottom: 0.035
  17170. }
  17171. },
  17172. hand: {
  17173. height: math.unit(1 / 1.260, "feet"),
  17174. name: "Hand",
  17175. image: {
  17176. source: "./media/characters/jayne-folest/hand.svg"
  17177. }
  17178. },
  17179. foot: {
  17180. height: math.unit(1 / 0.918, "feet"),
  17181. name: "Foot",
  17182. image: {
  17183. source: "./media/characters/jayne-folest/foot.svg"
  17184. }
  17185. },
  17186. },
  17187. [
  17188. {
  17189. name: "Micro",
  17190. height: math.unit(4, "cm")
  17191. },
  17192. {
  17193. name: "Normal",
  17194. height: math.unit(1.75, "meters")
  17195. },
  17196. {
  17197. name: "Macro",
  17198. height: math.unit(47.5, "meters"),
  17199. default: true
  17200. },
  17201. ]
  17202. ))
  17203. characterMakers.push(() => makeCharacter(
  17204. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17205. {
  17206. front: {
  17207. height: math.unit(180, "cm"),
  17208. weight: math.unit(70, "kg"),
  17209. name: "Front",
  17210. image: {
  17211. source: "./media/characters/algier/front.svg",
  17212. extra: 596 / 572,
  17213. bottom: 0.04
  17214. }
  17215. },
  17216. back: {
  17217. height: math.unit(180, "cm"),
  17218. weight: math.unit(70, "kg"),
  17219. name: "Back",
  17220. image: {
  17221. source: "./media/characters/algier/back.svg",
  17222. extra: 596 / 572,
  17223. bottom: 0.025
  17224. }
  17225. },
  17226. frontdressed: {
  17227. height: math.unit(180, "cm"),
  17228. weight: math.unit(150, "kg"),
  17229. name: "Front-dressed",
  17230. image: {
  17231. source: "./media/characters/algier/front-dressed.svg",
  17232. extra: 596 / 572,
  17233. bottom: 0.038
  17234. }
  17235. },
  17236. },
  17237. [
  17238. {
  17239. name: "Micro",
  17240. height: math.unit(5, "cm")
  17241. },
  17242. {
  17243. name: "Normal",
  17244. height: math.unit(180, "cm"),
  17245. default: true
  17246. },
  17247. {
  17248. name: "Macro",
  17249. height: math.unit(64, "m")
  17250. },
  17251. ]
  17252. ))
  17253. characterMakers.push(() => makeCharacter(
  17254. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17255. {
  17256. upright: {
  17257. height: math.unit(7, "feet"),
  17258. weight: math.unit(300, "lb"),
  17259. name: "Upright",
  17260. image: {
  17261. source: "./media/characters/pretzel/upright.svg",
  17262. extra: 534 / 522,
  17263. bottom: 0.065
  17264. }
  17265. },
  17266. sprawling: {
  17267. height: math.unit(3.75, "feet"),
  17268. weight: math.unit(300, "lb"),
  17269. name: "Sprawling",
  17270. image: {
  17271. source: "./media/characters/pretzel/sprawling.svg",
  17272. extra: 314 / 281,
  17273. bottom: 0.1
  17274. }
  17275. },
  17276. tongue: {
  17277. height: math.unit(2, "feet"),
  17278. name: "Tongue",
  17279. image: {
  17280. source: "./media/characters/pretzel/tongue.svg"
  17281. }
  17282. },
  17283. },
  17284. [
  17285. {
  17286. name: "Normal",
  17287. height: math.unit(7, "feet"),
  17288. default: true
  17289. },
  17290. {
  17291. name: "Oversized",
  17292. height: math.unit(15, "feet")
  17293. },
  17294. {
  17295. name: "Huge",
  17296. height: math.unit(30, "feet")
  17297. },
  17298. {
  17299. name: "Macro",
  17300. height: math.unit(250, "feet")
  17301. },
  17302. ]
  17303. ))
  17304. characterMakers.push(() => makeCharacter(
  17305. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17306. {
  17307. sideFront: {
  17308. height: math.unit(5 + 2 / 12, "feet"),
  17309. weight: math.unit(120, "lb"),
  17310. name: "Front Side",
  17311. image: {
  17312. source: "./media/characters/roxi/side-front.svg",
  17313. extra: 2924 / 2717,
  17314. bottom: 0.08
  17315. }
  17316. },
  17317. sideBack: {
  17318. height: math.unit(5 + 2 / 12, "feet"),
  17319. weight: math.unit(120, "lb"),
  17320. name: "Back Side",
  17321. image: {
  17322. source: "./media/characters/roxi/side-back.svg",
  17323. extra: 2904 / 2693,
  17324. bottom: 0.06
  17325. }
  17326. },
  17327. front: {
  17328. height: math.unit(5 + 2 / 12, "feet"),
  17329. weight: math.unit(120, "lb"),
  17330. name: "Front",
  17331. image: {
  17332. source: "./media/characters/roxi/front.svg",
  17333. extra: 2028 / 1907,
  17334. bottom: 0.01
  17335. }
  17336. },
  17337. frontAlt: {
  17338. height: math.unit(5 + 2 / 12, "feet"),
  17339. weight: math.unit(120, "lb"),
  17340. name: "Front (Alt)",
  17341. image: {
  17342. source: "./media/characters/roxi/front-alt.svg",
  17343. extra: 1828 / 1798,
  17344. bottom: 0.01
  17345. }
  17346. },
  17347. sitting: {
  17348. height: math.unit(2.8, "feet"),
  17349. weight: math.unit(120, "lb"),
  17350. name: "Sitting",
  17351. image: {
  17352. source: "./media/characters/roxi/sitting.svg",
  17353. extra: 2660 / 2462,
  17354. bottom: 0.1
  17355. }
  17356. },
  17357. },
  17358. [
  17359. {
  17360. name: "Normal",
  17361. height: math.unit(5 + 2 / 12, "feet"),
  17362. default: true
  17363. },
  17364. ]
  17365. ))
  17366. characterMakers.push(() => makeCharacter(
  17367. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17368. {
  17369. side: {
  17370. height: math.unit(55, "feet"),
  17371. weight: math.unit(153, "tons"),
  17372. name: "Side",
  17373. image: {
  17374. source: "./media/characters/shadow/side.svg",
  17375. extra: 701 / 628,
  17376. bottom: 0.02
  17377. }
  17378. },
  17379. flying: {
  17380. height: math.unit(145, "feet"),
  17381. weight: math.unit(153, "tons"),
  17382. name: "Flying",
  17383. image: {
  17384. source: "./media/characters/shadow/flying.svg"
  17385. }
  17386. },
  17387. },
  17388. [
  17389. {
  17390. name: "Normal",
  17391. height: math.unit(55, "feet"),
  17392. default: true
  17393. },
  17394. ]
  17395. ))
  17396. characterMakers.push(() => makeCharacter(
  17397. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17398. {
  17399. front: {
  17400. height: math.unit(6, "feet"),
  17401. weight: math.unit(200, "lb"),
  17402. name: "Front",
  17403. image: {
  17404. source: "./media/characters/marcie/front.svg",
  17405. extra: 960 / 876,
  17406. bottom: 58 / 1017.87
  17407. }
  17408. },
  17409. },
  17410. [
  17411. {
  17412. name: "Macro",
  17413. height: math.unit(1, "mile"),
  17414. default: true
  17415. },
  17416. ]
  17417. ))
  17418. characterMakers.push(() => makeCharacter(
  17419. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17420. {
  17421. front: {
  17422. height: math.unit(7, "feet"),
  17423. weight: math.unit(200, "lb"),
  17424. name: "Front",
  17425. image: {
  17426. source: "./media/characters/kachina/front.svg",
  17427. extra: 1290.68 / 1119,
  17428. bottom: 36.5 / 1327.18
  17429. }
  17430. },
  17431. },
  17432. [
  17433. {
  17434. name: "Normal",
  17435. height: math.unit(7, "feet"),
  17436. default: true
  17437. },
  17438. ]
  17439. ))
  17440. characterMakers.push(() => makeCharacter(
  17441. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17442. {
  17443. looking: {
  17444. height: math.unit(2, "meters"),
  17445. weight: math.unit(300, "kg"),
  17446. name: "Looking",
  17447. image: {
  17448. source: "./media/characters/kash/looking.svg",
  17449. extra: 474 / 344,
  17450. bottom: 0.03
  17451. }
  17452. },
  17453. side: {
  17454. height: math.unit(2, "meters"),
  17455. weight: math.unit(300, "kg"),
  17456. name: "Side",
  17457. image: {
  17458. source: "./media/characters/kash/side.svg",
  17459. extra: 302 / 251,
  17460. bottom: 0.03
  17461. }
  17462. },
  17463. front: {
  17464. height: math.unit(2, "meters"),
  17465. weight: math.unit(300, "kg"),
  17466. name: "Front",
  17467. image: {
  17468. source: "./media/characters/kash/front.svg",
  17469. extra: 495 / 360,
  17470. bottom: 0.015
  17471. }
  17472. },
  17473. },
  17474. [
  17475. {
  17476. name: "Normal",
  17477. height: math.unit(2, "meters"),
  17478. default: true
  17479. },
  17480. {
  17481. name: "Big",
  17482. height: math.unit(3, "meters")
  17483. },
  17484. {
  17485. name: "Large",
  17486. height: math.unit(5, "meters")
  17487. },
  17488. ]
  17489. ))
  17490. characterMakers.push(() => makeCharacter(
  17491. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17492. {
  17493. feeding: {
  17494. height: math.unit(6.7, "feet"),
  17495. weight: math.unit(350, "lb"),
  17496. name: "Feeding",
  17497. image: {
  17498. source: "./media/characters/lalim/feeding.svg",
  17499. }
  17500. },
  17501. },
  17502. [
  17503. {
  17504. name: "Normal",
  17505. height: math.unit(6.7, "feet"),
  17506. default: true
  17507. },
  17508. ]
  17509. ))
  17510. characterMakers.push(() => makeCharacter(
  17511. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17512. {
  17513. front: {
  17514. height: math.unit(9.5, "feet"),
  17515. weight: math.unit(600, "lb"),
  17516. name: "Front",
  17517. image: {
  17518. source: "./media/characters/de'vout/front.svg",
  17519. extra: 1443 / 1328,
  17520. bottom: 0.025
  17521. }
  17522. },
  17523. back: {
  17524. height: math.unit(9.5, "feet"),
  17525. weight: math.unit(600, "lb"),
  17526. name: "Back",
  17527. image: {
  17528. source: "./media/characters/de'vout/back.svg",
  17529. extra: 1443 / 1328
  17530. }
  17531. },
  17532. frontDressed: {
  17533. height: math.unit(9.5, "feet"),
  17534. weight: math.unit(600, "lb"),
  17535. name: "Front (Dressed",
  17536. image: {
  17537. source: "./media/characters/de'vout/front-dressed.svg",
  17538. extra: 1443 / 1328,
  17539. bottom: 0.025
  17540. }
  17541. },
  17542. backDressed: {
  17543. height: math.unit(9.5, "feet"),
  17544. weight: math.unit(600, "lb"),
  17545. name: "Back (Dressed",
  17546. image: {
  17547. source: "./media/characters/de'vout/back-dressed.svg",
  17548. extra: 1443 / 1328
  17549. }
  17550. },
  17551. },
  17552. [
  17553. {
  17554. name: "Normal",
  17555. height: math.unit(9.5, "feet"),
  17556. default: true
  17557. },
  17558. ]
  17559. ))
  17560. characterMakers.push(() => makeCharacter(
  17561. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17562. {
  17563. front: {
  17564. height: math.unit(8, "feet"),
  17565. weight: math.unit(225, "lb"),
  17566. name: "Front",
  17567. image: {
  17568. source: "./media/characters/talana/front.svg",
  17569. extra: 1410 / 1300,
  17570. bottom: 0.015
  17571. }
  17572. },
  17573. frontDressed: {
  17574. height: math.unit(8, "feet"),
  17575. weight: math.unit(225, "lb"),
  17576. name: "Front (Dressed",
  17577. image: {
  17578. source: "./media/characters/talana/front-dressed.svg",
  17579. extra: 1410 / 1300,
  17580. bottom: 0.015
  17581. }
  17582. },
  17583. },
  17584. [
  17585. {
  17586. name: "Normal",
  17587. height: math.unit(8, "feet"),
  17588. default: true
  17589. },
  17590. ]
  17591. ))
  17592. characterMakers.push(() => makeCharacter(
  17593. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17594. {
  17595. side: {
  17596. height: math.unit(7.2, "feet"),
  17597. weight: math.unit(150, "lb"),
  17598. name: "Side",
  17599. image: {
  17600. source: "./media/characters/xeauvok/side.svg",
  17601. extra: 1975 / 1523,
  17602. bottom: 0.07
  17603. }
  17604. },
  17605. },
  17606. [
  17607. {
  17608. name: "Normal",
  17609. height: math.unit(7.2, "feet"),
  17610. default: true
  17611. },
  17612. ]
  17613. ))
  17614. characterMakers.push(() => makeCharacter(
  17615. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17616. {
  17617. side: {
  17618. height: math.unit(10, "feet"),
  17619. weight: math.unit(900, "kg"),
  17620. name: "Side",
  17621. image: {
  17622. source: "./media/characters/zara/side.svg",
  17623. extra: 504 / 498
  17624. }
  17625. },
  17626. },
  17627. [
  17628. {
  17629. name: "Normal",
  17630. height: math.unit(10, "feet"),
  17631. default: true
  17632. },
  17633. ]
  17634. ))
  17635. characterMakers.push(() => makeCharacter(
  17636. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17637. {
  17638. side: {
  17639. height: math.unit(6, "feet"),
  17640. weight: math.unit(150, "lb"),
  17641. name: "Side",
  17642. image: {
  17643. source: "./media/characters/richard-dragon/side.svg",
  17644. extra: 845 / 340,
  17645. bottom: 0.017
  17646. }
  17647. },
  17648. maw: {
  17649. height: math.unit(2.97, "feet"),
  17650. name: "Maw",
  17651. image: {
  17652. source: "./media/characters/richard-dragon/maw.svg"
  17653. }
  17654. },
  17655. },
  17656. [
  17657. ]
  17658. ))
  17659. characterMakers.push(() => makeCharacter(
  17660. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17661. {
  17662. front: {
  17663. height: math.unit(4, "feet"),
  17664. weight: math.unit(100, "lb"),
  17665. name: "Front",
  17666. image: {
  17667. source: "./media/characters/richard-smeargle/front.svg",
  17668. extra: 2952 / 2820,
  17669. bottom: 0.028
  17670. }
  17671. },
  17672. },
  17673. [
  17674. {
  17675. name: "Normal",
  17676. height: math.unit(4, "feet"),
  17677. default: true
  17678. },
  17679. {
  17680. name: "Dynamax",
  17681. height: math.unit(20, "meters")
  17682. },
  17683. ]
  17684. ))
  17685. characterMakers.push(() => makeCharacter(
  17686. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17687. {
  17688. front: {
  17689. height: math.unit(6, "feet"),
  17690. weight: math.unit(110, "lb"),
  17691. name: "Front",
  17692. image: {
  17693. source: "./media/characters/klay/front.svg",
  17694. extra: 962 / 883,
  17695. bottom: 0.04
  17696. }
  17697. },
  17698. back: {
  17699. height: math.unit(6, "feet"),
  17700. weight: math.unit(110, "lb"),
  17701. name: "Back",
  17702. image: {
  17703. source: "./media/characters/klay/back.svg",
  17704. extra: 962 / 883
  17705. }
  17706. },
  17707. beans: {
  17708. height: math.unit(1.15, "feet"),
  17709. name: "Beans",
  17710. image: {
  17711. source: "./media/characters/klay/beans.svg"
  17712. }
  17713. },
  17714. },
  17715. [
  17716. {
  17717. name: "Micro",
  17718. height: math.unit(6, "inches")
  17719. },
  17720. {
  17721. name: "Mini",
  17722. height: math.unit(3, "feet")
  17723. },
  17724. {
  17725. name: "Normal",
  17726. height: math.unit(6, "feet"),
  17727. default: true
  17728. },
  17729. {
  17730. name: "Big",
  17731. height: math.unit(25, "feet")
  17732. },
  17733. {
  17734. name: "Macro",
  17735. height: math.unit(100, "feet")
  17736. },
  17737. {
  17738. name: "Megamacro",
  17739. height: math.unit(400, "feet")
  17740. },
  17741. ]
  17742. ))
  17743. characterMakers.push(() => makeCharacter(
  17744. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17745. {
  17746. front: {
  17747. height: math.unit(6, "feet"),
  17748. weight: math.unit(160, "lb"),
  17749. name: "Front",
  17750. image: {
  17751. source: "./media/characters/marcus/front.svg",
  17752. extra: 734 / 676,
  17753. bottom: 0.03
  17754. }
  17755. },
  17756. },
  17757. [
  17758. {
  17759. name: "Little",
  17760. height: math.unit(6, "feet")
  17761. },
  17762. {
  17763. name: "Normal",
  17764. height: math.unit(110, "feet"),
  17765. default: true
  17766. },
  17767. {
  17768. name: "Macro",
  17769. height: math.unit(250, "feet")
  17770. },
  17771. {
  17772. name: "Megamacro",
  17773. height: math.unit(1000, "feet")
  17774. },
  17775. ]
  17776. ))
  17777. characterMakers.push(() => makeCharacter(
  17778. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17779. {
  17780. front: {
  17781. height: math.unit(7, "feet"),
  17782. weight: math.unit(275, "lb"),
  17783. name: "Front",
  17784. image: {
  17785. source: "./media/characters/claude-delroute/front.svg",
  17786. extra: 230 / 214,
  17787. bottom: 0.007
  17788. }
  17789. },
  17790. side: {
  17791. height: math.unit(7, "feet"),
  17792. weight: math.unit(275, "lb"),
  17793. name: "Side",
  17794. image: {
  17795. source: "./media/characters/claude-delroute/side.svg",
  17796. extra: 222 / 214,
  17797. bottom: 0.01
  17798. }
  17799. },
  17800. back: {
  17801. height: math.unit(7, "feet"),
  17802. weight: math.unit(275, "lb"),
  17803. name: "Back",
  17804. image: {
  17805. source: "./media/characters/claude-delroute/back.svg",
  17806. extra: 230 / 214,
  17807. bottom: 0.015
  17808. }
  17809. },
  17810. maw: {
  17811. height: math.unit(0.6407, "meters"),
  17812. name: "Maw",
  17813. image: {
  17814. source: "./media/characters/claude-delroute/maw.svg"
  17815. }
  17816. },
  17817. },
  17818. [
  17819. {
  17820. name: "Normal",
  17821. height: math.unit(7, "feet"),
  17822. default: true
  17823. },
  17824. {
  17825. name: "Lorge",
  17826. height: math.unit(20, "feet")
  17827. },
  17828. ]
  17829. ))
  17830. characterMakers.push(() => makeCharacter(
  17831. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17832. {
  17833. front: {
  17834. height: math.unit(8 + 4 / 12, "feet"),
  17835. weight: math.unit(600, "lb"),
  17836. name: "Front",
  17837. image: {
  17838. source: "./media/characters/dragonien/front.svg",
  17839. extra: 100 / 94,
  17840. bottom: 3.3 / 103.3445
  17841. }
  17842. },
  17843. back: {
  17844. height: math.unit(8 + 4 / 12, "feet"),
  17845. weight: math.unit(600, "lb"),
  17846. name: "Back",
  17847. image: {
  17848. source: "./media/characters/dragonien/back.svg",
  17849. extra: 776 / 746,
  17850. bottom: 6.4 / 782.0616
  17851. }
  17852. },
  17853. foot: {
  17854. height: math.unit(1.54, "feet"),
  17855. name: "Foot",
  17856. image: {
  17857. source: "./media/characters/dragonien/foot.svg",
  17858. }
  17859. },
  17860. },
  17861. [
  17862. {
  17863. name: "Normal",
  17864. height: math.unit(8 + 4 / 12, "feet"),
  17865. default: true
  17866. },
  17867. {
  17868. name: "Macro",
  17869. height: math.unit(200, "feet")
  17870. },
  17871. {
  17872. name: "Megamacro",
  17873. height: math.unit(1, "mile")
  17874. },
  17875. {
  17876. name: "Gigamacro",
  17877. height: math.unit(1000, "miles")
  17878. },
  17879. ]
  17880. ))
  17881. characterMakers.push(() => makeCharacter(
  17882. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17883. {
  17884. front: {
  17885. height: math.unit(5 + 2 / 12, "feet"),
  17886. weight: math.unit(110, "lb"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/desta/front.svg",
  17890. extra: 767 / 726,
  17891. bottom: 11.7 / 779
  17892. }
  17893. },
  17894. back: {
  17895. height: math.unit(5 + 2 / 12, "feet"),
  17896. weight: math.unit(110, "lb"),
  17897. name: "Back",
  17898. image: {
  17899. source: "./media/characters/desta/back.svg",
  17900. extra: 777 / 728,
  17901. bottom: 6 / 784
  17902. }
  17903. },
  17904. frontAlt: {
  17905. height: math.unit(5 + 2 / 12, "feet"),
  17906. weight: math.unit(110, "lb"),
  17907. name: "Front",
  17908. image: {
  17909. source: "./media/characters/desta/front-alt.svg",
  17910. extra: 1482 / 1417
  17911. }
  17912. },
  17913. side: {
  17914. height: math.unit(5 + 2 / 12, "feet"),
  17915. weight: math.unit(110, "lb"),
  17916. name: "Side",
  17917. image: {
  17918. source: "./media/characters/desta/side.svg",
  17919. extra: 2579 / 2491,
  17920. bottom: 0.053
  17921. }
  17922. },
  17923. },
  17924. [
  17925. {
  17926. name: "Micro",
  17927. height: math.unit(6, "inches")
  17928. },
  17929. {
  17930. name: "Normal",
  17931. height: math.unit(5 + 2 / 12, "feet"),
  17932. default: true
  17933. },
  17934. {
  17935. name: "Macro",
  17936. height: math.unit(62, "feet")
  17937. },
  17938. {
  17939. name: "Megamacro",
  17940. height: math.unit(1800, "feet")
  17941. },
  17942. ]
  17943. ))
  17944. characterMakers.push(() => makeCharacter(
  17945. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17946. {
  17947. front: {
  17948. height: math.unit(10, "feet"),
  17949. weight: math.unit(700, "lb"),
  17950. name: "Front",
  17951. image: {
  17952. source: "./media/characters/storm-alystar/front.svg",
  17953. extra: 2112 / 1898,
  17954. bottom: 0.034
  17955. }
  17956. },
  17957. },
  17958. [
  17959. {
  17960. name: "Micro",
  17961. height: math.unit(3.5, "inches")
  17962. },
  17963. {
  17964. name: "Normal",
  17965. height: math.unit(10, "feet"),
  17966. default: true
  17967. },
  17968. {
  17969. name: "Macro",
  17970. height: math.unit(400, "feet")
  17971. },
  17972. {
  17973. name: "Deific",
  17974. height: math.unit(60, "miles")
  17975. },
  17976. ]
  17977. ))
  17978. characterMakers.push(() => makeCharacter(
  17979. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17980. {
  17981. front: {
  17982. height: math.unit(2.35, "meters"),
  17983. weight: math.unit(119, "kg"),
  17984. name: "Front",
  17985. image: {
  17986. source: "./media/characters/ilia/front.svg",
  17987. extra: 1285 / 1255,
  17988. bottom: 0.06
  17989. }
  17990. },
  17991. },
  17992. [
  17993. {
  17994. name: "Normal",
  17995. height: math.unit(2.35, "meters")
  17996. },
  17997. {
  17998. name: "Macro",
  17999. height: math.unit(140, "meters"),
  18000. default: true
  18001. },
  18002. {
  18003. name: "Megamacro",
  18004. height: math.unit(100, "miles")
  18005. },
  18006. ]
  18007. ))
  18008. characterMakers.push(() => makeCharacter(
  18009. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18010. {
  18011. front: {
  18012. height: math.unit(6 + 5 / 12, "feet"),
  18013. weight: math.unit(190, "lb"),
  18014. name: "Front",
  18015. image: {
  18016. source: "./media/characters/kingdead/front.svg",
  18017. extra: 1228 / 1177
  18018. }
  18019. },
  18020. },
  18021. [
  18022. {
  18023. name: "Micro",
  18024. height: math.unit(7, "inches")
  18025. },
  18026. {
  18027. name: "Normal",
  18028. height: math.unit(6 + 5 / 12, "feet")
  18029. },
  18030. {
  18031. name: "Macro",
  18032. height: math.unit(150, "feet"),
  18033. default: true
  18034. },
  18035. {
  18036. name: "Megamacro",
  18037. height: math.unit(200, "miles")
  18038. },
  18039. ]
  18040. ))
  18041. characterMakers.push(() => makeCharacter(
  18042. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18043. {
  18044. front: {
  18045. height: math.unit(8, "feet"),
  18046. weight: math.unit(600, "lb"),
  18047. name: "Front",
  18048. image: {
  18049. source: "./media/characters/kyrehx/front.svg",
  18050. extra: 1195 / 1095,
  18051. bottom: 0.034
  18052. }
  18053. },
  18054. },
  18055. [
  18056. {
  18057. name: "Micro",
  18058. height: math.unit(2, "inches")
  18059. },
  18060. {
  18061. name: "Normal",
  18062. height: math.unit(8, "feet"),
  18063. default: true
  18064. },
  18065. {
  18066. name: "Macro",
  18067. height: math.unit(255, "feet")
  18068. },
  18069. ]
  18070. ))
  18071. characterMakers.push(() => makeCharacter(
  18072. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18073. {
  18074. front: {
  18075. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18076. weight: math.unit(184, "lb"),
  18077. name: "Front",
  18078. image: {
  18079. source: "./media/characters/xang/front.svg",
  18080. extra: 845 / 755
  18081. }
  18082. },
  18083. },
  18084. [
  18085. {
  18086. name: "Normal",
  18087. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18088. default: true
  18089. },
  18090. {
  18091. name: "Macro",
  18092. height: math.unit(0.935 * 146, "feet")
  18093. },
  18094. {
  18095. name: "Megamacro",
  18096. height: math.unit(0.935 * 3, "miles")
  18097. },
  18098. ]
  18099. ))
  18100. characterMakers.push(() => makeCharacter(
  18101. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18102. {
  18103. frontDressed: {
  18104. height: math.unit(5 + 7 / 12, "feet"),
  18105. weight: math.unit(140, "lb"),
  18106. name: "Front (Dressed)",
  18107. image: {
  18108. source: "./media/characters/doc-weardno/front-dressed.svg",
  18109. extra: 263 / 234
  18110. }
  18111. },
  18112. backDressed: {
  18113. height: math.unit(5 + 7 / 12, "feet"),
  18114. weight: math.unit(140, "lb"),
  18115. name: "Back (Dressed)",
  18116. image: {
  18117. source: "./media/characters/doc-weardno/back-dressed.svg",
  18118. extra: 266 / 238
  18119. }
  18120. },
  18121. front: {
  18122. height: math.unit(5 + 7 / 12, "feet"),
  18123. weight: math.unit(140, "lb"),
  18124. name: "Front",
  18125. image: {
  18126. source: "./media/characters/doc-weardno/front.svg",
  18127. extra: 254 / 233
  18128. }
  18129. },
  18130. },
  18131. [
  18132. {
  18133. name: "Micro",
  18134. height: math.unit(3, "inches")
  18135. },
  18136. {
  18137. name: "Normal",
  18138. height: math.unit(5 + 7 / 12, "feet"),
  18139. default: true
  18140. },
  18141. {
  18142. name: "Macro",
  18143. height: math.unit(25, "feet")
  18144. },
  18145. {
  18146. name: "Megamacro",
  18147. height: math.unit(2, "miles")
  18148. },
  18149. ]
  18150. ))
  18151. characterMakers.push(() => makeCharacter(
  18152. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18153. {
  18154. front: {
  18155. height: math.unit(6 + 2 / 12, "feet"),
  18156. weight: math.unit(153, "lb"),
  18157. name: "Front",
  18158. image: {
  18159. source: "./media/characters/seth-whilst/front.svg",
  18160. bottom: 0.07
  18161. }
  18162. },
  18163. },
  18164. [
  18165. {
  18166. name: "Micro",
  18167. height: math.unit(5, "inches")
  18168. },
  18169. {
  18170. name: "Normal",
  18171. height: math.unit(6 + 2 / 12, "feet"),
  18172. default: true
  18173. },
  18174. ]
  18175. ))
  18176. characterMakers.push(() => makeCharacter(
  18177. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18178. {
  18179. front: {
  18180. height: math.unit(3, "inches"),
  18181. weight: math.unit(8, "grams"),
  18182. name: "Front",
  18183. image: {
  18184. source: "./media/characters/pocket-jabari/front.svg",
  18185. extra: 1024 / 974,
  18186. bottom: 0.039
  18187. }
  18188. },
  18189. },
  18190. [
  18191. {
  18192. name: "Minimicro",
  18193. height: math.unit(8, "mm")
  18194. },
  18195. {
  18196. name: "Micro",
  18197. height: math.unit(3, "inches"),
  18198. default: true
  18199. },
  18200. {
  18201. name: "Normal",
  18202. height: math.unit(3, "feet")
  18203. },
  18204. ]
  18205. ))
  18206. characterMakers.push(() => makeCharacter(
  18207. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18208. {
  18209. front: {
  18210. height: math.unit(15, "feet"),
  18211. weight: math.unit(3280, "lb"),
  18212. name: "Front",
  18213. image: {
  18214. source: "./media/characters/sapphy/front.svg",
  18215. extra: 671 / 577,
  18216. bottom: 0.085
  18217. }
  18218. },
  18219. back: {
  18220. height: math.unit(15, "feet"),
  18221. weight: math.unit(3280, "lb"),
  18222. name: "Back",
  18223. image: {
  18224. source: "./media/characters/sapphy/back.svg",
  18225. extra: 631 / 607,
  18226. bottom: 0.045
  18227. }
  18228. },
  18229. },
  18230. [
  18231. {
  18232. name: "Normal",
  18233. height: math.unit(15, "feet")
  18234. },
  18235. {
  18236. name: "Casual Macro",
  18237. height: math.unit(120, "feet")
  18238. },
  18239. {
  18240. name: "Macro",
  18241. height: math.unit(2150, "feet"),
  18242. default: true
  18243. },
  18244. {
  18245. name: "Megamacro",
  18246. height: math.unit(8, "miles")
  18247. },
  18248. {
  18249. name: "Galaxy Mom",
  18250. height: math.unit(6, "megalightyears")
  18251. },
  18252. ]
  18253. ))
  18254. characterMakers.push(() => makeCharacter(
  18255. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18256. {
  18257. front: {
  18258. height: math.unit(6, "feet"),
  18259. weight: math.unit(170, "lb"),
  18260. name: "Front",
  18261. image: {
  18262. source: "./media/characters/kiro/front.svg",
  18263. extra: 1064 / 1012,
  18264. bottom: 0.052
  18265. }
  18266. },
  18267. },
  18268. [
  18269. {
  18270. name: "Micro",
  18271. height: math.unit(6, "inches")
  18272. },
  18273. {
  18274. name: "Normal",
  18275. height: math.unit(6, "feet"),
  18276. default: true
  18277. },
  18278. {
  18279. name: "Macro",
  18280. height: math.unit(72, "feet")
  18281. },
  18282. ]
  18283. ))
  18284. characterMakers.push(() => makeCharacter(
  18285. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18286. {
  18287. front: {
  18288. height: math.unit(5 + 9 / 12, "feet"),
  18289. weight: math.unit(175, "lb"),
  18290. name: "Front",
  18291. image: {
  18292. source: "./media/characters/irishfox/front.svg",
  18293. extra: 1912 / 1680,
  18294. bottom: 0.02
  18295. }
  18296. },
  18297. },
  18298. [
  18299. {
  18300. name: "Nano",
  18301. height: math.unit(1, "mm")
  18302. },
  18303. {
  18304. name: "Micro",
  18305. height: math.unit(2, "inches")
  18306. },
  18307. {
  18308. name: "Normal",
  18309. height: math.unit(5 + 9 / 12, "feet"),
  18310. default: true
  18311. },
  18312. {
  18313. name: "Macro",
  18314. height: math.unit(45, "feet")
  18315. },
  18316. ]
  18317. ))
  18318. characterMakers.push(() => makeCharacter(
  18319. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18320. {
  18321. front: {
  18322. height: math.unit(6 + 1 / 12, "feet"),
  18323. weight: math.unit(75, "lb"),
  18324. name: "Front",
  18325. image: {
  18326. source: "./media/characters/aronai-sieyes/front.svg",
  18327. extra: 1556 / 1480,
  18328. bottom: 0.015
  18329. }
  18330. },
  18331. side: {
  18332. height: math.unit(6 + 1 / 12, "feet"),
  18333. weight: math.unit(75, "lb"),
  18334. name: "Side",
  18335. image: {
  18336. source: "./media/characters/aronai-sieyes/side.svg",
  18337. extra: 1433 / 1390,
  18338. bottom: 0.0393
  18339. }
  18340. },
  18341. back: {
  18342. height: math.unit(6 + 1 / 12, "feet"),
  18343. weight: math.unit(75, "lb"),
  18344. name: "Back",
  18345. image: {
  18346. source: "./media/characters/aronai-sieyes/back.svg",
  18347. extra: 1544 / 1494,
  18348. bottom: 0.02
  18349. }
  18350. },
  18351. frontClothed: {
  18352. height: math.unit(6 + 1 / 12, "feet"),
  18353. weight: math.unit(75, "lb"),
  18354. name: "Front (Clothed)",
  18355. image: {
  18356. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18357. extra: 1582 / 1527
  18358. }
  18359. },
  18360. feral: {
  18361. height: math.unit(18, "feet"),
  18362. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18363. name: "Feral",
  18364. image: {
  18365. source: "./media/characters/aronai-sieyes/feral.svg",
  18366. extra: 1530 / 1240,
  18367. bottom: 0.035
  18368. }
  18369. },
  18370. },
  18371. [
  18372. {
  18373. name: "Micro",
  18374. height: math.unit(2, "inches")
  18375. },
  18376. {
  18377. name: "Normal",
  18378. height: math.unit(6 + 1 / 12, "feet"),
  18379. default: true
  18380. }
  18381. ]
  18382. ))
  18383. characterMakers.push(() => makeCharacter(
  18384. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18385. {
  18386. front: {
  18387. height: math.unit(12, "feet"),
  18388. weight: math.unit(410, "kg"),
  18389. name: "Front",
  18390. image: {
  18391. source: "./media/characters/xuna/front.svg",
  18392. extra: 2184 / 1980
  18393. }
  18394. },
  18395. side: {
  18396. height: math.unit(12, "feet"),
  18397. weight: math.unit(410, "kg"),
  18398. name: "Side",
  18399. image: {
  18400. source: "./media/characters/xuna/side.svg",
  18401. extra: 2184 / 1980
  18402. }
  18403. },
  18404. back: {
  18405. height: math.unit(12, "feet"),
  18406. weight: math.unit(410, "kg"),
  18407. name: "Back",
  18408. image: {
  18409. source: "./media/characters/xuna/back.svg",
  18410. extra: 2184 / 1980
  18411. }
  18412. },
  18413. },
  18414. [
  18415. {
  18416. name: "Nano glow",
  18417. height: math.unit(10, "nm")
  18418. },
  18419. {
  18420. name: "Micro floof",
  18421. height: math.unit(0.3, "m")
  18422. },
  18423. {
  18424. name: "Huggable softy boi",
  18425. height: math.unit(3.6576, "m"),
  18426. default: true
  18427. },
  18428. {
  18429. name: "Admirable floof",
  18430. height: math.unit(80, "meters")
  18431. },
  18432. {
  18433. name: "Gentle macro",
  18434. height: math.unit(300, "meters")
  18435. },
  18436. {
  18437. name: "Very careful floof",
  18438. height: math.unit(3200, "meters")
  18439. },
  18440. {
  18441. name: "The mega floof",
  18442. height: math.unit(36000, "meters")
  18443. },
  18444. {
  18445. name: "Giga-fur-Wicker",
  18446. height: math.unit(4800000, "meters")
  18447. },
  18448. {
  18449. name: "Licky world",
  18450. height: math.unit(20000000, "meters")
  18451. },
  18452. {
  18453. name: "Floofy cyan sun",
  18454. height: math.unit(1500000000, "meters")
  18455. },
  18456. {
  18457. name: "Milky Wicker",
  18458. height: math.unit(1000000000000000000000, "meters")
  18459. },
  18460. {
  18461. name: "The observing Wicker",
  18462. height: math.unit(999999999999999999999999999, "meters")
  18463. },
  18464. ]
  18465. ))
  18466. characterMakers.push(() => makeCharacter(
  18467. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18468. {
  18469. front: {
  18470. height: math.unit(5 + 9 / 12, "feet"),
  18471. weight: math.unit(150, "lb"),
  18472. name: "Front",
  18473. image: {
  18474. source: "./media/characters/arokha-sieyes/front.svg",
  18475. extra: 1425 / 1284,
  18476. bottom: 0.05
  18477. }
  18478. },
  18479. },
  18480. [
  18481. {
  18482. name: "Normal",
  18483. height: math.unit(5 + 9 / 12, "feet")
  18484. },
  18485. {
  18486. name: "Macro",
  18487. height: math.unit(30, "meters"),
  18488. default: true
  18489. },
  18490. ]
  18491. ))
  18492. characterMakers.push(() => makeCharacter(
  18493. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18494. {
  18495. front: {
  18496. height: math.unit(6, "feet"),
  18497. weight: math.unit(180, "lb"),
  18498. name: "Front",
  18499. image: {
  18500. source: "./media/characters/arokh-sieyes/front.svg",
  18501. extra: 1830 / 1769,
  18502. bottom: 0.01
  18503. }
  18504. },
  18505. },
  18506. [
  18507. {
  18508. name: "Normal",
  18509. height: math.unit(6, "feet")
  18510. },
  18511. {
  18512. name: "Macro",
  18513. height: math.unit(30, "meters"),
  18514. default: true
  18515. },
  18516. ]
  18517. ))
  18518. characterMakers.push(() => makeCharacter(
  18519. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18520. {
  18521. side: {
  18522. height: math.unit(13 + 1 / 12, "feet"),
  18523. weight: math.unit(8.5, "tonnes"),
  18524. name: "Side",
  18525. image: {
  18526. source: "./media/characters/goldeneye/side.svg",
  18527. extra: 1182 / 778,
  18528. bottom: 0.067
  18529. }
  18530. },
  18531. paw: {
  18532. height: math.unit(3.4, "feet"),
  18533. name: "Paw",
  18534. image: {
  18535. source: "./media/characters/goldeneye/paw.svg"
  18536. }
  18537. },
  18538. },
  18539. [
  18540. {
  18541. name: "Normal",
  18542. height: math.unit(13 + 1 / 12, "feet"),
  18543. default: true
  18544. },
  18545. ]
  18546. ))
  18547. characterMakers.push(() => makeCharacter(
  18548. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18549. {
  18550. front: {
  18551. height: math.unit(6 + 1 / 12, "feet"),
  18552. weight: math.unit(210, "lb"),
  18553. name: "Front",
  18554. image: {
  18555. source: "./media/characters/leonardo-lycheborne/front.svg",
  18556. extra: 390 / 365,
  18557. bottom: 0.032
  18558. }
  18559. },
  18560. side: {
  18561. height: math.unit(6 + 1 / 12, "feet"),
  18562. weight: math.unit(210, "lb"),
  18563. name: "Side",
  18564. image: {
  18565. source: "./media/characters/leonardo-lycheborne/side.svg",
  18566. extra: 390 / 365,
  18567. bottom: 0.005
  18568. }
  18569. },
  18570. back: {
  18571. height: math.unit(6 + 1 / 12, "feet"),
  18572. weight: math.unit(210, "lb"),
  18573. name: "Back",
  18574. image: {
  18575. source: "./media/characters/leonardo-lycheborne/back.svg",
  18576. extra: 392 / 366,
  18577. bottom: 0.01
  18578. }
  18579. },
  18580. hand: {
  18581. height: math.unit(1.08, "feet"),
  18582. name: "Hand",
  18583. image: {
  18584. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18585. }
  18586. },
  18587. foot: {
  18588. height: math.unit(1.32, "feet"),
  18589. name: "Foot",
  18590. image: {
  18591. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18592. }
  18593. },
  18594. were: {
  18595. height: math.unit(20, "feet"),
  18596. weight: math.unit(7800, "lb"),
  18597. name: "Were",
  18598. image: {
  18599. source: "./media/characters/leonardo-lycheborne/were.svg",
  18600. extra: 308 / 294,
  18601. bottom: 0.048
  18602. }
  18603. },
  18604. feral: {
  18605. height: math.unit(7.5, "feet"),
  18606. weight: math.unit(600, "lb"),
  18607. name: "Feral",
  18608. image: {
  18609. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18610. extra: 210 / 186,
  18611. bottom: 0.108
  18612. }
  18613. },
  18614. taur: {
  18615. height: math.unit(11, "feet"),
  18616. weight: math.unit(3300, "lb"),
  18617. name: "Taur",
  18618. image: {
  18619. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18620. extra: 320 / 303,
  18621. bottom: 0.025
  18622. }
  18623. },
  18624. barghest: {
  18625. height: math.unit(11, "feet"),
  18626. weight: math.unit(1300, "lb"),
  18627. name: "Barghest",
  18628. image: {
  18629. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18630. extra: 323 / 302,
  18631. bottom: 0.027
  18632. }
  18633. },
  18634. dick: {
  18635. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18636. name: "Dick",
  18637. image: {
  18638. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18639. }
  18640. },
  18641. dickWere: {
  18642. height: math.unit((20) / 3.8, "feet"),
  18643. name: "Dick (Were)",
  18644. image: {
  18645. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18646. }
  18647. },
  18648. },
  18649. [
  18650. {
  18651. name: "Normal",
  18652. height: math.unit(6 + 1 / 12, "feet"),
  18653. default: true
  18654. },
  18655. ]
  18656. ))
  18657. characterMakers.push(() => makeCharacter(
  18658. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18659. {
  18660. front: {
  18661. height: math.unit(10, "feet"),
  18662. weight: math.unit(350, "lb"),
  18663. name: "Front",
  18664. image: {
  18665. source: "./media/characters/jet/front.svg",
  18666. extra: 2050 / 1980,
  18667. bottom: 0.013
  18668. }
  18669. },
  18670. back: {
  18671. height: math.unit(10, "feet"),
  18672. weight: math.unit(350, "lb"),
  18673. name: "Back",
  18674. image: {
  18675. source: "./media/characters/jet/back.svg",
  18676. extra: 2050 / 1980,
  18677. bottom: 0.013
  18678. }
  18679. },
  18680. },
  18681. [
  18682. {
  18683. name: "Micro",
  18684. height: math.unit(6, "inches")
  18685. },
  18686. {
  18687. name: "Normal",
  18688. height: math.unit(10, "feet"),
  18689. default: true
  18690. },
  18691. {
  18692. name: "Macro",
  18693. height: math.unit(100, "feet")
  18694. },
  18695. ]
  18696. ))
  18697. characterMakers.push(() => makeCharacter(
  18698. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18699. {
  18700. front: {
  18701. height: math.unit(15, "feet"),
  18702. weight: math.unit(2800, "lb"),
  18703. name: "Front",
  18704. image: {
  18705. source: "./media/characters/tanarath/front.svg",
  18706. extra: 2392 / 2220,
  18707. bottom: 0.03
  18708. }
  18709. },
  18710. back: {
  18711. height: math.unit(15, "feet"),
  18712. weight: math.unit(2800, "lb"),
  18713. name: "Back",
  18714. image: {
  18715. source: "./media/characters/tanarath/back.svg",
  18716. extra: 2392 / 2220,
  18717. bottom: 0.03
  18718. }
  18719. },
  18720. },
  18721. [
  18722. {
  18723. name: "Normal",
  18724. height: math.unit(15, "feet"),
  18725. default: true
  18726. },
  18727. ]
  18728. ))
  18729. characterMakers.push(() => makeCharacter(
  18730. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18731. {
  18732. front: {
  18733. height: math.unit(7 + 1 / 12, "feet"),
  18734. weight: math.unit(175, "lb"),
  18735. name: "Front",
  18736. image: {
  18737. source: "./media/characters/patty-cattybatty/front.svg",
  18738. extra: 908 / 874,
  18739. bottom: 0.025
  18740. }
  18741. },
  18742. },
  18743. [
  18744. {
  18745. name: "Micro",
  18746. height: math.unit(1, "inch")
  18747. },
  18748. {
  18749. name: "Normal",
  18750. height: math.unit(7 + 1 / 12, "feet")
  18751. },
  18752. {
  18753. name: "Mini Macro",
  18754. height: math.unit(155, "feet")
  18755. },
  18756. {
  18757. name: "Macro",
  18758. height: math.unit(1077, "feet")
  18759. },
  18760. {
  18761. name: "Mega Macro",
  18762. height: math.unit(47650, "feet"),
  18763. default: true
  18764. },
  18765. {
  18766. name: "Giga Macro",
  18767. height: math.unit(440, "miles")
  18768. },
  18769. {
  18770. name: "Tera Macro",
  18771. height: math.unit(8700, "miles")
  18772. },
  18773. {
  18774. name: "Planetary Macro",
  18775. height: math.unit(32700, "miles")
  18776. },
  18777. {
  18778. name: "Solar Macro",
  18779. height: math.unit(550000, "miles")
  18780. },
  18781. {
  18782. name: "Celestial Macro",
  18783. height: math.unit(2.5, "AU")
  18784. },
  18785. ]
  18786. ))
  18787. characterMakers.push(() => makeCharacter(
  18788. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18789. {
  18790. front: {
  18791. height: math.unit(4 + 5 / 12, "feet"),
  18792. weight: math.unit(90, "lb"),
  18793. name: "Front",
  18794. image: {
  18795. source: "./media/characters/cappu/front.svg",
  18796. extra: 1247 / 1152,
  18797. bottom: 0.012
  18798. }
  18799. },
  18800. },
  18801. [
  18802. {
  18803. name: "Normal",
  18804. height: math.unit(4 + 5 / 12, "feet"),
  18805. default: true
  18806. },
  18807. ]
  18808. ))
  18809. characterMakers.push(() => makeCharacter(
  18810. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18811. {
  18812. frontDressed: {
  18813. height: math.unit(70, "cm"),
  18814. weight: math.unit(6, "kg"),
  18815. name: "Front (Dressed)",
  18816. image: {
  18817. source: "./media/characters/sebi/front-dressed.svg",
  18818. extra: 713.5 / 686.5,
  18819. bottom: 0.003
  18820. }
  18821. },
  18822. front: {
  18823. height: math.unit(70, "cm"),
  18824. weight: math.unit(5, "kg"),
  18825. name: "Front",
  18826. image: {
  18827. source: "./media/characters/sebi/front.svg",
  18828. extra: 713.5 / 686.5,
  18829. bottom: 0.003
  18830. }
  18831. }
  18832. },
  18833. [
  18834. {
  18835. name: "Normal",
  18836. height: math.unit(70, "cm"),
  18837. default: true
  18838. },
  18839. {
  18840. name: "Macro",
  18841. height: math.unit(8, "meters")
  18842. },
  18843. ]
  18844. ))
  18845. characterMakers.push(() => makeCharacter(
  18846. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18847. {
  18848. front: {
  18849. height: math.unit(6, "feet"),
  18850. weight: math.unit(150, "lb"),
  18851. name: "Front",
  18852. image: {
  18853. source: "./media/characters/typhek/front.svg",
  18854. extra: 1948 / 1929,
  18855. bottom: 0.025
  18856. }
  18857. },
  18858. side: {
  18859. height: math.unit(6, "feet"),
  18860. weight: math.unit(150, "lb"),
  18861. name: "Side",
  18862. image: {
  18863. source: "./media/characters/typhek/side.svg",
  18864. extra: 2034 / 2010,
  18865. bottom: 0.003
  18866. }
  18867. },
  18868. back: {
  18869. height: math.unit(6, "feet"),
  18870. weight: math.unit(150, "lb"),
  18871. name: "Back",
  18872. image: {
  18873. source: "./media/characters/typhek/back.svg",
  18874. extra: 2005 / 1978,
  18875. bottom: 0.004
  18876. }
  18877. },
  18878. palm: {
  18879. height: math.unit(1.2, "feet"),
  18880. name: "Palm",
  18881. image: {
  18882. source: "./media/characters/typhek/palm.svg"
  18883. }
  18884. },
  18885. fist: {
  18886. height: math.unit(1.1, "feet"),
  18887. name: "Fist",
  18888. image: {
  18889. source: "./media/characters/typhek/fist.svg"
  18890. }
  18891. },
  18892. foot: {
  18893. height: math.unit(1.57, "feet"),
  18894. name: "Foot",
  18895. image: {
  18896. source: "./media/characters/typhek/foot.svg"
  18897. }
  18898. },
  18899. sole: {
  18900. height: math.unit(2.05, "feet"),
  18901. name: "Sole",
  18902. image: {
  18903. source: "./media/characters/typhek/sole.svg"
  18904. }
  18905. },
  18906. },
  18907. [
  18908. {
  18909. name: "Macro",
  18910. height: math.unit(40, "stories"),
  18911. default: true
  18912. },
  18913. {
  18914. name: "Megamacro",
  18915. height: math.unit(1, "mile")
  18916. },
  18917. {
  18918. name: "Gigamacro",
  18919. height: math.unit(4000, "solarradii")
  18920. },
  18921. {
  18922. name: "Universal",
  18923. height: math.unit(1.1, "universes")
  18924. }
  18925. ]
  18926. ))
  18927. characterMakers.push(() => makeCharacter(
  18928. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18929. {
  18930. side: {
  18931. height: math.unit(5 + 7 / 12, "feet"),
  18932. weight: math.unit(150, "lb"),
  18933. name: "Side",
  18934. image: {
  18935. source: "./media/characters/kassy/side.svg",
  18936. extra: 1280 / 1225,
  18937. bottom: 0.002
  18938. }
  18939. },
  18940. front: {
  18941. height: math.unit(5 + 7 / 12, "feet"),
  18942. weight: math.unit(150, "lb"),
  18943. name: "Front",
  18944. image: {
  18945. source: "./media/characters/kassy/front.svg",
  18946. extra: 1280 / 1225,
  18947. bottom: 0.025
  18948. }
  18949. },
  18950. back: {
  18951. height: math.unit(5 + 7 / 12, "feet"),
  18952. weight: math.unit(150, "lb"),
  18953. name: "Back",
  18954. image: {
  18955. source: "./media/characters/kassy/back.svg",
  18956. extra: 1280 / 1225,
  18957. bottom: 0.002
  18958. }
  18959. },
  18960. foot: {
  18961. height: math.unit(1.266, "feet"),
  18962. name: "Foot",
  18963. image: {
  18964. source: "./media/characters/kassy/foot.svg"
  18965. }
  18966. },
  18967. },
  18968. [
  18969. {
  18970. name: "Normal",
  18971. height: math.unit(5 + 7 / 12, "feet")
  18972. },
  18973. {
  18974. name: "Macro",
  18975. height: math.unit(137, "feet"),
  18976. default: true
  18977. },
  18978. {
  18979. name: "Megamacro",
  18980. height: math.unit(1, "mile")
  18981. },
  18982. ]
  18983. ))
  18984. characterMakers.push(() => makeCharacter(
  18985. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18986. {
  18987. front: {
  18988. height: math.unit(6 + 1 / 12, "feet"),
  18989. weight: math.unit(200, "lb"),
  18990. name: "Front",
  18991. image: {
  18992. source: "./media/characters/neil/front.svg",
  18993. extra: 1326 / 1250,
  18994. bottom: 0.023
  18995. }
  18996. },
  18997. },
  18998. [
  18999. {
  19000. name: "Normal",
  19001. height: math.unit(6 + 1 / 12, "feet"),
  19002. default: true
  19003. },
  19004. {
  19005. name: "Macro",
  19006. height: math.unit(200, "feet")
  19007. },
  19008. ]
  19009. ))
  19010. characterMakers.push(() => makeCharacter(
  19011. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19012. {
  19013. front: {
  19014. height: math.unit(5 + 9 / 12, "feet"),
  19015. weight: math.unit(190, "lb"),
  19016. name: "Front",
  19017. image: {
  19018. source: "./media/characters/atticus/front.svg",
  19019. extra: 2934 / 2785,
  19020. bottom: 0.025
  19021. }
  19022. },
  19023. },
  19024. [
  19025. {
  19026. name: "Normal",
  19027. height: math.unit(5 + 9 / 12, "feet"),
  19028. default: true
  19029. },
  19030. {
  19031. name: "Macro",
  19032. height: math.unit(180, "feet")
  19033. },
  19034. ]
  19035. ))
  19036. characterMakers.push(() => makeCharacter(
  19037. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19038. {
  19039. side: {
  19040. height: math.unit(9, "feet"),
  19041. weight: math.unit(650, "lb"),
  19042. name: "Side",
  19043. image: {
  19044. source: "./media/characters/milo/side.svg",
  19045. extra: 2644 / 2310,
  19046. bottom: 0.032
  19047. }
  19048. },
  19049. },
  19050. [
  19051. {
  19052. name: "Normal",
  19053. height: math.unit(9, "feet"),
  19054. default: true
  19055. },
  19056. {
  19057. name: "Macro",
  19058. height: math.unit(300, "feet")
  19059. },
  19060. ]
  19061. ))
  19062. characterMakers.push(() => makeCharacter(
  19063. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19064. {
  19065. side: {
  19066. height: math.unit(8, "meters"),
  19067. weight: math.unit(90000, "kg"),
  19068. name: "Side",
  19069. image: {
  19070. source: "./media/characters/ijzer/side.svg",
  19071. extra: 2756 / 1600,
  19072. bottom: 0.01
  19073. }
  19074. },
  19075. },
  19076. [
  19077. {
  19078. name: "Small",
  19079. height: math.unit(3, "meters")
  19080. },
  19081. {
  19082. name: "Normal",
  19083. height: math.unit(8, "meters"),
  19084. default: true
  19085. },
  19086. {
  19087. name: "Normal+",
  19088. height: math.unit(10, "meters")
  19089. },
  19090. {
  19091. name: "Bigger",
  19092. height: math.unit(24, "meters")
  19093. },
  19094. {
  19095. name: "Huge",
  19096. height: math.unit(80, "meters")
  19097. },
  19098. ]
  19099. ))
  19100. characterMakers.push(() => makeCharacter(
  19101. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19102. {
  19103. front: {
  19104. height: math.unit(6 + 2 / 12, "feet"),
  19105. weight: math.unit(153, "lb"),
  19106. name: "Front",
  19107. image: {
  19108. source: "./media/characters/luca-cervicum/front.svg",
  19109. extra: 370 / 327,
  19110. bottom: 0.015
  19111. }
  19112. },
  19113. back: {
  19114. height: math.unit(6 + 2 / 12, "feet"),
  19115. weight: math.unit(153, "lb"),
  19116. name: "Back",
  19117. image: {
  19118. source: "./media/characters/luca-cervicum/back.svg",
  19119. extra: 367 / 333,
  19120. bottom: 0.005
  19121. }
  19122. },
  19123. frontGear: {
  19124. height: math.unit(6 + 2 / 12, "feet"),
  19125. weight: math.unit(173, "lb"),
  19126. name: "Front (Gear)",
  19127. image: {
  19128. source: "./media/characters/luca-cervicum/front-gear.svg",
  19129. extra: 377 / 333,
  19130. bottom: 0.006
  19131. }
  19132. },
  19133. },
  19134. [
  19135. {
  19136. name: "Normal",
  19137. height: math.unit(6 + 2 / 12, "feet"),
  19138. default: true
  19139. },
  19140. ]
  19141. ))
  19142. characterMakers.push(() => makeCharacter(
  19143. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19144. {
  19145. front: {
  19146. height: math.unit(6 + 1 / 12, "feet"),
  19147. weight: math.unit(304, "lb"),
  19148. name: "Front",
  19149. image: {
  19150. source: "./media/characters/oliver/front.svg",
  19151. extra: 157 / 143,
  19152. bottom: 0.08
  19153. }
  19154. },
  19155. },
  19156. [
  19157. {
  19158. name: "Normal",
  19159. height: math.unit(6 + 1 / 12, "feet"),
  19160. default: true
  19161. },
  19162. ]
  19163. ))
  19164. characterMakers.push(() => makeCharacter(
  19165. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19166. {
  19167. front: {
  19168. height: math.unit(5 + 7 / 12, "feet"),
  19169. weight: math.unit(140, "lb"),
  19170. name: "Front",
  19171. image: {
  19172. source: "./media/characters/shane/front.svg",
  19173. extra: 304 / 289,
  19174. bottom: 0.005
  19175. }
  19176. },
  19177. },
  19178. [
  19179. {
  19180. name: "Normal",
  19181. height: math.unit(5 + 7 / 12, "feet"),
  19182. default: true
  19183. },
  19184. ]
  19185. ))
  19186. characterMakers.push(() => makeCharacter(
  19187. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19188. {
  19189. front: {
  19190. height: math.unit(5 + 9 / 12, "feet"),
  19191. weight: math.unit(178, "lb"),
  19192. name: "Front",
  19193. image: {
  19194. source: "./media/characters/shin/front.svg",
  19195. extra: 159 / 151,
  19196. bottom: 0.015
  19197. }
  19198. },
  19199. },
  19200. [
  19201. {
  19202. name: "Normal",
  19203. height: math.unit(5 + 9 / 12, "feet"),
  19204. default: true
  19205. },
  19206. ]
  19207. ))
  19208. characterMakers.push(() => makeCharacter(
  19209. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19210. {
  19211. front: {
  19212. height: math.unit(5 + 10 / 12, "feet"),
  19213. weight: math.unit(168, "lb"),
  19214. name: "Front",
  19215. image: {
  19216. source: "./media/characters/xerxes/front.svg",
  19217. extra: 282 / 260,
  19218. bottom: 0.045
  19219. }
  19220. },
  19221. },
  19222. [
  19223. {
  19224. name: "Normal",
  19225. height: math.unit(5 + 10 / 12, "feet"),
  19226. default: true
  19227. },
  19228. ]
  19229. ))
  19230. characterMakers.push(() => makeCharacter(
  19231. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19232. {
  19233. front: {
  19234. height: math.unit(6 + 7 / 12, "feet"),
  19235. weight: math.unit(208, "lb"),
  19236. name: "Front",
  19237. image: {
  19238. source: "./media/characters/chaska/front.svg",
  19239. extra: 332 / 319,
  19240. bottom: 0.015
  19241. }
  19242. },
  19243. },
  19244. [
  19245. {
  19246. name: "Normal",
  19247. height: math.unit(6 + 7 / 12, "feet"),
  19248. default: true
  19249. },
  19250. ]
  19251. ))
  19252. characterMakers.push(() => makeCharacter(
  19253. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19254. {
  19255. front: {
  19256. height: math.unit(5 + 8 / 12, "feet"),
  19257. weight: math.unit(208, "lb"),
  19258. name: "Front",
  19259. image: {
  19260. source: "./media/characters/enuk/front.svg",
  19261. extra: 437 / 406,
  19262. bottom: 0.02
  19263. }
  19264. },
  19265. },
  19266. [
  19267. {
  19268. name: "Normal",
  19269. height: math.unit(5 + 8 / 12, "feet"),
  19270. default: true
  19271. },
  19272. ]
  19273. ))
  19274. characterMakers.push(() => makeCharacter(
  19275. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19276. {
  19277. front: {
  19278. height: math.unit(5 + 10 / 12, "feet"),
  19279. weight: math.unit(252, "lb"),
  19280. name: "Front",
  19281. image: {
  19282. source: "./media/characters/bruun/front.svg",
  19283. extra: 197 / 187,
  19284. bottom: 0.012
  19285. }
  19286. },
  19287. },
  19288. [
  19289. {
  19290. name: "Normal",
  19291. height: math.unit(5 + 10 / 12, "feet"),
  19292. default: true
  19293. },
  19294. ]
  19295. ))
  19296. characterMakers.push(() => makeCharacter(
  19297. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19298. {
  19299. front: {
  19300. height: math.unit(6 + 10 / 12, "feet"),
  19301. weight: math.unit(255, "lb"),
  19302. name: "Front",
  19303. image: {
  19304. source: "./media/characters/alexeev/front.svg",
  19305. extra: 213 / 200,
  19306. bottom: 0.05
  19307. }
  19308. },
  19309. },
  19310. [
  19311. {
  19312. name: "Normal",
  19313. height: math.unit(6 + 10 / 12, "feet"),
  19314. default: true
  19315. },
  19316. ]
  19317. ))
  19318. characterMakers.push(() => makeCharacter(
  19319. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19320. {
  19321. front: {
  19322. height: math.unit(2 + 8 / 12, "feet"),
  19323. weight: math.unit(22, "lb"),
  19324. name: "Front",
  19325. image: {
  19326. source: "./media/characters/evelyn/front.svg",
  19327. extra: 208 / 180
  19328. }
  19329. },
  19330. },
  19331. [
  19332. {
  19333. name: "Normal",
  19334. height: math.unit(2 + 8 / 12, "feet"),
  19335. default: true
  19336. },
  19337. ]
  19338. ))
  19339. characterMakers.push(() => makeCharacter(
  19340. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19341. {
  19342. front: {
  19343. height: math.unit(5 + 9 / 12, "feet"),
  19344. weight: math.unit(139, "lb"),
  19345. name: "Front",
  19346. image: {
  19347. source: "./media/characters/inca/front.svg",
  19348. extra: 294 / 291,
  19349. bottom: 0.03
  19350. }
  19351. },
  19352. },
  19353. [
  19354. {
  19355. name: "Normal",
  19356. height: math.unit(5 + 9 / 12, "feet"),
  19357. default: true
  19358. },
  19359. ]
  19360. ))
  19361. characterMakers.push(() => makeCharacter(
  19362. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19363. {
  19364. front: {
  19365. height: math.unit(5 + 1 / 12, "feet"),
  19366. weight: math.unit(84, "lb"),
  19367. name: "Front",
  19368. image: {
  19369. source: "./media/characters/magdalene/front.svg",
  19370. extra: 293 / 273
  19371. }
  19372. },
  19373. },
  19374. [
  19375. {
  19376. name: "Normal",
  19377. height: math.unit(5 + 1 / 12, "feet"),
  19378. default: true
  19379. },
  19380. ]
  19381. ))
  19382. characterMakers.push(() => makeCharacter(
  19383. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19384. {
  19385. front: {
  19386. height: math.unit(6 + 3 / 12, "feet"),
  19387. weight: math.unit(185, "lb"),
  19388. name: "Front",
  19389. image: {
  19390. source: "./media/characters/mera/front.svg",
  19391. extra: 291 / 277,
  19392. bottom: 0.03
  19393. }
  19394. },
  19395. },
  19396. [
  19397. {
  19398. name: "Normal",
  19399. height: math.unit(6 + 3 / 12, "feet"),
  19400. default: true
  19401. },
  19402. ]
  19403. ))
  19404. characterMakers.push(() => makeCharacter(
  19405. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19406. {
  19407. front: {
  19408. height: math.unit(6 + 7 / 12, "feet"),
  19409. weight: math.unit(160, "lb"),
  19410. name: "Front",
  19411. image: {
  19412. source: "./media/characters/ceres/front.svg",
  19413. extra: 1023 / 950,
  19414. bottom: 0.027
  19415. }
  19416. },
  19417. back: {
  19418. height: math.unit(6 + 7 / 12, "feet"),
  19419. weight: math.unit(160, "lb"),
  19420. name: "Back",
  19421. image: {
  19422. source: "./media/characters/ceres/back.svg",
  19423. extra: 1023 / 950
  19424. }
  19425. },
  19426. },
  19427. [
  19428. {
  19429. name: "Normal",
  19430. height: math.unit(6 + 7 / 12, "feet"),
  19431. default: true
  19432. },
  19433. ]
  19434. ))
  19435. characterMakers.push(() => makeCharacter(
  19436. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19437. {
  19438. front: {
  19439. height: math.unit(5 + 10 / 12, "feet"),
  19440. weight: math.unit(150, "lb"),
  19441. name: "Front",
  19442. image: {
  19443. source: "./media/characters/kris/front.svg",
  19444. extra: 885 / 803,
  19445. bottom: 0.03
  19446. }
  19447. },
  19448. },
  19449. [
  19450. {
  19451. name: "Normal",
  19452. height: math.unit(5 + 10 / 12, "feet"),
  19453. default: true
  19454. },
  19455. ]
  19456. ))
  19457. characterMakers.push(() => makeCharacter(
  19458. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19459. {
  19460. front: {
  19461. height: math.unit(7, "feet"),
  19462. weight: math.unit(120, "kg"),
  19463. name: "Front",
  19464. image: {
  19465. source: "./media/characters/taluthus/front.svg",
  19466. extra: 903 / 833,
  19467. bottom: 0.015
  19468. }
  19469. },
  19470. },
  19471. [
  19472. {
  19473. name: "Normal",
  19474. height: math.unit(7, "feet"),
  19475. default: true
  19476. },
  19477. {
  19478. name: "Macro",
  19479. height: math.unit(300, "feet")
  19480. },
  19481. ]
  19482. ))
  19483. characterMakers.push(() => makeCharacter(
  19484. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19485. {
  19486. front: {
  19487. height: math.unit(5 + 9 / 12, "feet"),
  19488. weight: math.unit(145, "lb"),
  19489. name: "Front",
  19490. image: {
  19491. source: "./media/characters/dawn/front.svg",
  19492. extra: 2094 / 2016,
  19493. bottom: 0.025
  19494. }
  19495. },
  19496. back: {
  19497. height: math.unit(5 + 9 / 12, "feet"),
  19498. weight: math.unit(160, "lb"),
  19499. name: "Back",
  19500. image: {
  19501. source: "./media/characters/dawn/back.svg",
  19502. extra: 2112 / 2080,
  19503. bottom: 0.005
  19504. }
  19505. },
  19506. },
  19507. [
  19508. {
  19509. name: "Normal",
  19510. height: math.unit(6 + 7 / 12, "feet"),
  19511. default: true
  19512. },
  19513. ]
  19514. ))
  19515. characterMakers.push(() => makeCharacter(
  19516. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19517. {
  19518. anthro: {
  19519. height: math.unit(8 + 3 / 12, "feet"),
  19520. weight: math.unit(450, "lb"),
  19521. name: "Anthro",
  19522. image: {
  19523. source: "./media/characters/arador/anthro.svg",
  19524. extra: 1835 / 1718,
  19525. bottom: 0.025
  19526. }
  19527. },
  19528. feral: {
  19529. height: math.unit(4, "feet"),
  19530. weight: math.unit(200, "lb"),
  19531. name: "Feral",
  19532. image: {
  19533. source: "./media/characters/arador/feral.svg",
  19534. extra: 1683 / 1514,
  19535. bottom: 0.07
  19536. }
  19537. },
  19538. },
  19539. [
  19540. {
  19541. name: "Normal",
  19542. height: math.unit(8 + 3 / 12, "feet")
  19543. },
  19544. {
  19545. name: "Macro",
  19546. height: math.unit(82.5, "feet"),
  19547. default: true
  19548. },
  19549. ]
  19550. ))
  19551. characterMakers.push(() => makeCharacter(
  19552. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19553. {
  19554. front: {
  19555. height: math.unit(5 + 10 / 12, "feet"),
  19556. weight: math.unit(125, "lb"),
  19557. name: "Front",
  19558. image: {
  19559. source: "./media/characters/dharsi/front.svg",
  19560. extra: 716 / 630,
  19561. bottom: 0.035
  19562. }
  19563. },
  19564. },
  19565. [
  19566. {
  19567. name: "Nano",
  19568. height: math.unit(100, "nm")
  19569. },
  19570. {
  19571. name: "Micro",
  19572. height: math.unit(2, "inches")
  19573. },
  19574. {
  19575. name: "Normal",
  19576. height: math.unit(5 + 10 / 12, "feet"),
  19577. default: true
  19578. },
  19579. {
  19580. name: "Macro",
  19581. height: math.unit(1000, "feet")
  19582. },
  19583. {
  19584. name: "Megamacro",
  19585. height: math.unit(10, "miles")
  19586. },
  19587. {
  19588. name: "Gigamacro",
  19589. height: math.unit(3000, "miles")
  19590. },
  19591. {
  19592. name: "Teramacro",
  19593. height: math.unit(500000, "miles")
  19594. },
  19595. {
  19596. name: "Teramacro+",
  19597. height: math.unit(30, "galaxies")
  19598. },
  19599. ]
  19600. ))
  19601. characterMakers.push(() => makeCharacter(
  19602. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19603. {
  19604. front: {
  19605. height: math.unit(6, "feet"),
  19606. weight: math.unit(150, "lb"),
  19607. name: "Front",
  19608. image: {
  19609. source: "./media/characters/deathy/front.svg",
  19610. extra: 1552 / 1463,
  19611. bottom: 0.025
  19612. }
  19613. },
  19614. side: {
  19615. height: math.unit(6, "feet"),
  19616. weight: math.unit(150, "lb"),
  19617. name: "Side",
  19618. image: {
  19619. source: "./media/characters/deathy/side.svg",
  19620. extra: 1604 / 1455,
  19621. bottom: 0.025
  19622. }
  19623. },
  19624. back: {
  19625. height: math.unit(6, "feet"),
  19626. weight: math.unit(150, "lb"),
  19627. name: "Back",
  19628. image: {
  19629. source: "./media/characters/deathy/back.svg",
  19630. extra: 1580 / 1463,
  19631. bottom: 0.005
  19632. }
  19633. },
  19634. },
  19635. [
  19636. {
  19637. name: "Micro",
  19638. height: math.unit(5, "millimeters")
  19639. },
  19640. {
  19641. name: "Normal",
  19642. height: math.unit(6 + 5 / 12, "feet"),
  19643. default: true
  19644. },
  19645. ]
  19646. ))
  19647. characterMakers.push(() => makeCharacter(
  19648. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19649. {
  19650. front: {
  19651. height: math.unit(16, "feet"),
  19652. weight: math.unit(4000, "lb"),
  19653. name: "Front",
  19654. image: {
  19655. source: "./media/characters/juniper/front.svg",
  19656. bottom: 0.04
  19657. }
  19658. },
  19659. },
  19660. [
  19661. {
  19662. name: "Normal",
  19663. height: math.unit(16, "feet"),
  19664. default: true
  19665. },
  19666. ]
  19667. ))
  19668. characterMakers.push(() => makeCharacter(
  19669. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19670. {
  19671. front: {
  19672. height: math.unit(6, "feet"),
  19673. weight: math.unit(150, "lb"),
  19674. name: "Front",
  19675. image: {
  19676. source: "./media/characters/hipster/front.svg",
  19677. extra: 1312 / 1209,
  19678. bottom: 0.025
  19679. }
  19680. },
  19681. back: {
  19682. height: math.unit(6, "feet"),
  19683. weight: math.unit(150, "lb"),
  19684. name: "Back",
  19685. image: {
  19686. source: "./media/characters/hipster/back.svg",
  19687. extra: 1281 / 1196,
  19688. bottom: 0.01
  19689. }
  19690. },
  19691. },
  19692. [
  19693. {
  19694. name: "Micro",
  19695. height: math.unit(1, "mm")
  19696. },
  19697. {
  19698. name: "Normal",
  19699. height: math.unit(4, "inches"),
  19700. default: true
  19701. },
  19702. {
  19703. name: "Macro",
  19704. height: math.unit(500, "feet")
  19705. },
  19706. {
  19707. name: "Megamacro",
  19708. height: math.unit(1000, "miles")
  19709. },
  19710. ]
  19711. ))
  19712. characterMakers.push(() => makeCharacter(
  19713. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19714. {
  19715. front: {
  19716. height: math.unit(6, "feet"),
  19717. weight: math.unit(150, "lb"),
  19718. name: "Front",
  19719. image: {
  19720. source: "./media/characters/tendirmuldr/front.svg",
  19721. extra: 1878 / 1772,
  19722. bottom: 0.015
  19723. }
  19724. },
  19725. },
  19726. [
  19727. {
  19728. name: "Megamacro",
  19729. height: math.unit(1500, "miles"),
  19730. default: true
  19731. },
  19732. ]
  19733. ))
  19734. characterMakers.push(() => makeCharacter(
  19735. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19736. {
  19737. front: {
  19738. height: math.unit(14, "feet"),
  19739. weight: math.unit(12000, "lb"),
  19740. name: "Front",
  19741. image: {
  19742. source: "./media/characters/mort/front.svg",
  19743. extra: 365 / 318,
  19744. bottom: 0.01
  19745. }
  19746. },
  19747. side: {
  19748. height: math.unit(14, "feet"),
  19749. weight: math.unit(12000, "lb"),
  19750. name: "Side",
  19751. image: {
  19752. source: "./media/characters/mort/side.svg",
  19753. extra: 365 / 318,
  19754. bottom: 0.052
  19755. },
  19756. default: true
  19757. },
  19758. back: {
  19759. height: math.unit(14, "feet"),
  19760. weight: math.unit(12000, "lb"),
  19761. name: "Back",
  19762. image: {
  19763. source: "./media/characters/mort/back.svg",
  19764. extra: 371 / 332,
  19765. bottom: 0.18
  19766. }
  19767. },
  19768. },
  19769. [
  19770. {
  19771. name: "Normal",
  19772. height: math.unit(14, "feet"),
  19773. default: true
  19774. },
  19775. ]
  19776. ))
  19777. characterMakers.push(() => makeCharacter(
  19778. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19779. {
  19780. front: {
  19781. height: math.unit(8, "feet"),
  19782. weight: math.unit(1, "ton"),
  19783. name: "Front",
  19784. image: {
  19785. source: "./media/characters/lycoa/front.svg",
  19786. extra: 1875 / 1789,
  19787. bottom: 0.022
  19788. }
  19789. },
  19790. back: {
  19791. height: math.unit(8, "feet"),
  19792. weight: math.unit(1, "ton"),
  19793. name: "Back",
  19794. image: {
  19795. source: "./media/characters/lycoa/back.svg",
  19796. extra: 1835 / 1781,
  19797. bottom: 0.03
  19798. }
  19799. },
  19800. head: {
  19801. height: math.unit(2.1, "feet"),
  19802. name: "Head",
  19803. image: {
  19804. source: "./media/characters/lycoa/head.svg"
  19805. }
  19806. },
  19807. tailmaw: {
  19808. height: math.unit(1.9, "feet"),
  19809. name: "Tailmaw",
  19810. image: {
  19811. source: "./media/characters/lycoa/tailmaw.svg"
  19812. }
  19813. },
  19814. tentacles: {
  19815. height: math.unit(2.1, "feet"),
  19816. name: "Tentacles",
  19817. image: {
  19818. source: "./media/characters/lycoa/tentacles.svg"
  19819. }
  19820. },
  19821. dick: {
  19822. height: math.unit(1.73, "feet"),
  19823. name: "Dick",
  19824. image: {
  19825. source: "./media/characters/lycoa/dick.svg"
  19826. }
  19827. },
  19828. },
  19829. [
  19830. {
  19831. name: "Normal",
  19832. height: math.unit(8, "feet"),
  19833. default: true
  19834. },
  19835. {
  19836. name: "Macro",
  19837. height: math.unit(30, "feet")
  19838. },
  19839. ]
  19840. ))
  19841. characterMakers.push(() => makeCharacter(
  19842. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19843. {
  19844. front: {
  19845. height: math.unit(4 + 2 / 12, "feet"),
  19846. weight: math.unit(70, "lb"),
  19847. name: "Front",
  19848. image: {
  19849. source: "./media/characters/naldara/front.svg",
  19850. extra: 841 / 720,
  19851. bottom: 0.04
  19852. }
  19853. },
  19854. naga: {
  19855. height: math.unit(23, "feet"),
  19856. weight: math.unit(15000, "kg"),
  19857. name: "Naga",
  19858. image: {
  19859. source: "./media/characters/naldara/naga.svg",
  19860. extra: 3290 / 2959,
  19861. bottom: 124 / 3432
  19862. }
  19863. },
  19864. },
  19865. [
  19866. {
  19867. name: "Normal",
  19868. height: math.unit(4 + 2 / 12, "feet"),
  19869. default: true
  19870. },
  19871. ]
  19872. ))
  19873. characterMakers.push(() => makeCharacter(
  19874. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19875. {
  19876. front: {
  19877. height: math.unit(13 + 7 / 12, "feet"),
  19878. weight: math.unit(1500, "lb"),
  19879. name: "Front",
  19880. image: {
  19881. source: "./media/characters/briar/front.svg",
  19882. extra: 626 / 596,
  19883. bottom: 0.08
  19884. }
  19885. },
  19886. },
  19887. [
  19888. {
  19889. name: "Normal",
  19890. height: math.unit(13 + 7 / 12, "feet"),
  19891. default: true
  19892. },
  19893. ]
  19894. ))
  19895. characterMakers.push(() => makeCharacter(
  19896. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19897. {
  19898. side: {
  19899. height: math.unit(10, "feet"),
  19900. weight: math.unit(500, "lb"),
  19901. name: "Side",
  19902. image: {
  19903. source: "./media/characters/vanguard/side.svg",
  19904. extra: 502 / 425,
  19905. bottom: 0.087
  19906. }
  19907. },
  19908. },
  19909. [
  19910. {
  19911. name: "Normal",
  19912. height: math.unit(10, "feet"),
  19913. default: true
  19914. },
  19915. ]
  19916. ))
  19917. characterMakers.push(() => makeCharacter(
  19918. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19919. {
  19920. front: {
  19921. height: math.unit(7.5, "feet"),
  19922. weight: math.unit(2, "lb"),
  19923. name: "Front",
  19924. image: {
  19925. source: "./media/characters/artemis/front.svg",
  19926. extra: 1192 / 1075,
  19927. bottom: 0.07
  19928. }
  19929. },
  19930. frontNsfw: {
  19931. height: math.unit(7.5, "feet"),
  19932. weight: math.unit(2, "lb"),
  19933. name: "Front (NSFW)",
  19934. image: {
  19935. source: "./media/characters/artemis/front-nsfw.svg",
  19936. extra: 1192 / 1075,
  19937. bottom: 0.07
  19938. }
  19939. },
  19940. frontNsfwer: {
  19941. height: math.unit(7.5, "feet"),
  19942. weight: math.unit(2, "lb"),
  19943. name: "Front (NSFW-er)",
  19944. image: {
  19945. source: "./media/characters/artemis/front-nsfwer.svg",
  19946. extra: 1192 / 1075,
  19947. bottom: 0.07
  19948. }
  19949. },
  19950. side: {
  19951. height: math.unit(7.5, "feet"),
  19952. weight: math.unit(2, "lb"),
  19953. name: "Side",
  19954. image: {
  19955. source: "./media/characters/artemis/side.svg",
  19956. extra: 1192 / 1075,
  19957. bottom: 0.07
  19958. }
  19959. },
  19960. sideNsfw: {
  19961. height: math.unit(7.5, "feet"),
  19962. weight: math.unit(2, "lb"),
  19963. name: "Side (NSFW)",
  19964. image: {
  19965. source: "./media/characters/artemis/side-nsfw.svg",
  19966. extra: 1192 / 1075,
  19967. bottom: 0.07
  19968. }
  19969. },
  19970. sideNsfwer: {
  19971. height: math.unit(7.5, "feet"),
  19972. weight: math.unit(2, "lb"),
  19973. name: "Side (NSFW-er)",
  19974. image: {
  19975. source: "./media/characters/artemis/side-nsfwer.svg",
  19976. extra: 1192 / 1075,
  19977. bottom: 0.07
  19978. }
  19979. },
  19980. maw: {
  19981. height: math.unit(1.1, "feet"),
  19982. name: "Maw",
  19983. image: {
  19984. source: "./media/characters/artemis/maw.svg"
  19985. }
  19986. },
  19987. stomach: {
  19988. height: math.unit(0.95, "feet"),
  19989. name: "Stomach",
  19990. image: {
  19991. source: "./media/characters/artemis/stomach.svg"
  19992. }
  19993. },
  19994. dickCanine: {
  19995. height: math.unit(1, "feet"),
  19996. name: "Dick (Canine)",
  19997. image: {
  19998. source: "./media/characters/artemis/dick-canine.svg"
  19999. }
  20000. },
  20001. dickEquine: {
  20002. height: math.unit(0.85, "feet"),
  20003. name: "Dick (Equine)",
  20004. image: {
  20005. source: "./media/characters/artemis/dick-equine.svg"
  20006. }
  20007. },
  20008. dickExotic: {
  20009. height: math.unit(0.85, "feet"),
  20010. name: "Dick (Exotic)",
  20011. image: {
  20012. source: "./media/characters/artemis/dick-exotic.svg"
  20013. }
  20014. },
  20015. },
  20016. [
  20017. {
  20018. name: "Normal",
  20019. height: math.unit(7.5, "feet"),
  20020. default: true
  20021. },
  20022. {
  20023. name: "Enlarged",
  20024. height: math.unit(12, "feet")
  20025. },
  20026. ]
  20027. ))
  20028. characterMakers.push(() => makeCharacter(
  20029. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20030. {
  20031. front: {
  20032. height: math.unit(5 + 3 / 12, "feet"),
  20033. weight: math.unit(160, "lb"),
  20034. name: "Front",
  20035. image: {
  20036. source: "./media/characters/kira/front.svg",
  20037. extra: 906 / 786,
  20038. bottom: 0.01
  20039. }
  20040. },
  20041. back: {
  20042. height: math.unit(5 + 3 / 12, "feet"),
  20043. weight: math.unit(160, "lb"),
  20044. name: "Back",
  20045. image: {
  20046. source: "./media/characters/kira/back.svg",
  20047. extra: 882 / 757,
  20048. bottom: 0.005
  20049. }
  20050. },
  20051. frontDressed: {
  20052. height: math.unit(5 + 3 / 12, "feet"),
  20053. weight: math.unit(160, "lb"),
  20054. name: "Front (Dressed)",
  20055. image: {
  20056. source: "./media/characters/kira/front-dressed.svg",
  20057. extra: 906 / 786,
  20058. bottom: 0.01
  20059. }
  20060. },
  20061. beans: {
  20062. height: math.unit(0.92, "feet"),
  20063. name: "Beans",
  20064. image: {
  20065. source: "./media/characters/kira/beans.svg"
  20066. }
  20067. },
  20068. },
  20069. [
  20070. {
  20071. name: "Normal",
  20072. height: math.unit(5 + 3 / 12, "feet"),
  20073. default: true
  20074. },
  20075. ]
  20076. ))
  20077. characterMakers.push(() => makeCharacter(
  20078. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20079. {
  20080. front: {
  20081. height: math.unit(5 + 4 / 12, "feet"),
  20082. weight: math.unit(145, "lb"),
  20083. name: "Front",
  20084. image: {
  20085. source: "./media/characters/scramble/front.svg",
  20086. extra: 763 / 727,
  20087. bottom: 0.05
  20088. }
  20089. },
  20090. back: {
  20091. height: math.unit(5 + 4 / 12, "feet"),
  20092. weight: math.unit(145, "lb"),
  20093. name: "Back",
  20094. image: {
  20095. source: "./media/characters/scramble/back.svg",
  20096. extra: 826 / 737,
  20097. bottom: 0.002
  20098. }
  20099. },
  20100. },
  20101. [
  20102. {
  20103. name: "Normal",
  20104. height: math.unit(5 + 4 / 12, "feet"),
  20105. default: true
  20106. },
  20107. ]
  20108. ))
  20109. characterMakers.push(() => makeCharacter(
  20110. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20111. {
  20112. side: {
  20113. height: math.unit(6 + 2 / 12, "feet"),
  20114. weight: math.unit(190, "lb"),
  20115. name: "Side",
  20116. image: {
  20117. source: "./media/characters/biscuit/side.svg",
  20118. extra: 858 / 791,
  20119. bottom: 0.044
  20120. }
  20121. },
  20122. },
  20123. [
  20124. {
  20125. name: "Normal",
  20126. height: math.unit(6 + 2 / 12, "feet"),
  20127. default: true
  20128. },
  20129. ]
  20130. ))
  20131. characterMakers.push(() => makeCharacter(
  20132. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20133. {
  20134. front: {
  20135. height: math.unit(5 + 2 / 12, "feet"),
  20136. weight: math.unit(120, "lb"),
  20137. name: "Front",
  20138. image: {
  20139. source: "./media/characters/poffin/front.svg",
  20140. extra: 786 / 680,
  20141. bottom: 0.005
  20142. }
  20143. },
  20144. },
  20145. [
  20146. {
  20147. name: "Normal",
  20148. height: math.unit(5 + 2 / 12, "feet"),
  20149. default: true
  20150. },
  20151. ]
  20152. ))
  20153. characterMakers.push(() => makeCharacter(
  20154. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20155. {
  20156. front: {
  20157. height: math.unit(6 + 3 / 12, "feet"),
  20158. weight: math.unit(519, "lb"),
  20159. name: "Front",
  20160. image: {
  20161. source: "./media/characters/dhari/front.svg",
  20162. extra: 1048 / 946,
  20163. bottom: 0.015
  20164. }
  20165. },
  20166. back: {
  20167. height: math.unit(6 + 3 / 12, "feet"),
  20168. weight: math.unit(519, "lb"),
  20169. name: "Back",
  20170. image: {
  20171. source: "./media/characters/dhari/back.svg",
  20172. extra: 1048 / 931,
  20173. bottom: 0.005
  20174. }
  20175. },
  20176. frontDressed: {
  20177. height: math.unit(6 + 3 / 12, "feet"),
  20178. weight: math.unit(519, "lb"),
  20179. name: "Front (Dressed)",
  20180. image: {
  20181. source: "./media/characters/dhari/front-dressed.svg",
  20182. extra: 1713 / 1546,
  20183. bottom: 0.02
  20184. }
  20185. },
  20186. backDressed: {
  20187. height: math.unit(6 + 3 / 12, "feet"),
  20188. weight: math.unit(519, "lb"),
  20189. name: "Back (Dressed)",
  20190. image: {
  20191. source: "./media/characters/dhari/back-dressed.svg",
  20192. extra: 1699 / 1537,
  20193. bottom: 0.01
  20194. }
  20195. },
  20196. maw: {
  20197. height: math.unit(0.95, "feet"),
  20198. name: "Maw",
  20199. image: {
  20200. source: "./media/characters/dhari/maw.svg"
  20201. }
  20202. },
  20203. wereFront: {
  20204. height: math.unit(12 + 8 / 12, "feet"),
  20205. weight: math.unit(4000, "lb"),
  20206. name: "Front (Were)",
  20207. image: {
  20208. source: "./media/characters/dhari/were-front.svg",
  20209. extra: 1065 / 969,
  20210. bottom: 0.015
  20211. }
  20212. },
  20213. wereBack: {
  20214. height: math.unit(12 + 8 / 12, "feet"),
  20215. weight: math.unit(4000, "lb"),
  20216. name: "Back (Were)",
  20217. image: {
  20218. source: "./media/characters/dhari/were-back.svg",
  20219. extra: 1065 / 969,
  20220. bottom: 0.012
  20221. }
  20222. },
  20223. wereMaw: {
  20224. height: math.unit(0.625, "meters"),
  20225. name: "Maw (Were)",
  20226. image: {
  20227. source: "./media/characters/dhari/were-maw.svg"
  20228. }
  20229. },
  20230. },
  20231. [
  20232. {
  20233. name: "Normal",
  20234. height: math.unit(6 + 3 / 12, "feet"),
  20235. default: true
  20236. },
  20237. ]
  20238. ))
  20239. characterMakers.push(() => makeCharacter(
  20240. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20241. {
  20242. anthro: {
  20243. height: math.unit(5 + 7 / 12, "feet"),
  20244. weight: math.unit(175, "lb"),
  20245. name: "Anthro",
  20246. image: {
  20247. source: "./media/characters/rena-dyne/anthro.svg",
  20248. extra: 1849 / 1785,
  20249. bottom: 0.005
  20250. }
  20251. },
  20252. taur: {
  20253. height: math.unit(15 + 6 / 12, "feet"),
  20254. weight: math.unit(8000, "lb"),
  20255. name: "Taur",
  20256. image: {
  20257. source: "./media/characters/rena-dyne/taur.svg",
  20258. extra: 2315 / 2234,
  20259. bottom: 0.033
  20260. }
  20261. },
  20262. },
  20263. [
  20264. {
  20265. name: "Normal",
  20266. height: math.unit(5 + 7 / 12, "feet"),
  20267. default: true
  20268. },
  20269. ]
  20270. ))
  20271. characterMakers.push(() => makeCharacter(
  20272. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20273. {
  20274. front: {
  20275. height: math.unit(8, "feet"),
  20276. weight: math.unit(600, "lb"),
  20277. name: "Front",
  20278. image: {
  20279. source: "./media/characters/weremeep/front.svg",
  20280. extra: 967 / 862,
  20281. bottom: 0.01
  20282. }
  20283. },
  20284. },
  20285. [
  20286. {
  20287. name: "Normal",
  20288. height: math.unit(8, "feet"),
  20289. default: true
  20290. },
  20291. {
  20292. name: "Lorg",
  20293. height: math.unit(12, "feet")
  20294. },
  20295. {
  20296. name: "Oh Lawd She Comin'",
  20297. height: math.unit(20, "feet")
  20298. },
  20299. ]
  20300. ))
  20301. characterMakers.push(() => makeCharacter(
  20302. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20303. {
  20304. front: {
  20305. height: math.unit(4, "feet"),
  20306. weight: math.unit(90, "lb"),
  20307. name: "Front",
  20308. image: {
  20309. source: "./media/characters/reza/front.svg",
  20310. extra: 1183 / 1111,
  20311. bottom: 0.017
  20312. }
  20313. },
  20314. back: {
  20315. height: math.unit(4, "feet"),
  20316. weight: math.unit(90, "lb"),
  20317. name: "Back",
  20318. image: {
  20319. source: "./media/characters/reza/back.svg",
  20320. extra: 1183 / 1111,
  20321. bottom: 0.01
  20322. }
  20323. },
  20324. drake: {
  20325. height: math.unit(30, "feet"),
  20326. weight: math.unit(246960, "lb"),
  20327. name: "Drake",
  20328. image: {
  20329. source: "./media/characters/reza/drake.svg",
  20330. extra: 2350 / 2024,
  20331. bottom: 60.7 / 2403
  20332. }
  20333. },
  20334. },
  20335. [
  20336. {
  20337. name: "Normal",
  20338. height: math.unit(4, "feet"),
  20339. default: true
  20340. },
  20341. ]
  20342. ))
  20343. characterMakers.push(() => makeCharacter(
  20344. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20345. {
  20346. side: {
  20347. height: math.unit(15, "feet"),
  20348. weight: math.unit(14, "tons"),
  20349. name: "Side",
  20350. image: {
  20351. source: "./media/characters/athea/side.svg",
  20352. extra: 960 / 540,
  20353. bottom: 0.003
  20354. }
  20355. },
  20356. sitting: {
  20357. height: math.unit(6 * 2.85, "feet"),
  20358. weight: math.unit(14, "tons"),
  20359. name: "Sitting",
  20360. image: {
  20361. source: "./media/characters/athea/sitting.svg",
  20362. extra: 621 / 581,
  20363. bottom: 0.075
  20364. }
  20365. },
  20366. maw: {
  20367. height: math.unit(7.59498031496063, "feet"),
  20368. name: "Maw",
  20369. image: {
  20370. source: "./media/characters/athea/maw.svg"
  20371. }
  20372. },
  20373. },
  20374. [
  20375. {
  20376. name: "Lap Cat",
  20377. height: math.unit(2.5, "feet")
  20378. },
  20379. {
  20380. name: "Minimacro",
  20381. height: math.unit(15, "feet"),
  20382. default: true
  20383. },
  20384. {
  20385. name: "Macro",
  20386. height: math.unit(120, "feet")
  20387. },
  20388. {
  20389. name: "Macro+",
  20390. height: math.unit(640, "feet")
  20391. },
  20392. {
  20393. name: "Colossus",
  20394. height: math.unit(2.2, "miles")
  20395. },
  20396. ]
  20397. ))
  20398. characterMakers.push(() => makeCharacter(
  20399. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20400. {
  20401. front: {
  20402. height: math.unit(8 + 8 / 12, "feet"),
  20403. weight: math.unit(130, "kg"),
  20404. name: "Front",
  20405. image: {
  20406. source: "./media/characters/seroko/front.svg",
  20407. extra: 1385 / 1280,
  20408. bottom: 0.025
  20409. }
  20410. },
  20411. back: {
  20412. height: math.unit(8 + 8 / 12, "feet"),
  20413. weight: math.unit(130, "kg"),
  20414. name: "Back",
  20415. image: {
  20416. source: "./media/characters/seroko/back.svg",
  20417. extra: 1369 / 1238,
  20418. bottom: 0.018
  20419. }
  20420. },
  20421. frontDressed: {
  20422. height: math.unit(8 + 8 / 12, "feet"),
  20423. weight: math.unit(130, "kg"),
  20424. name: "Front (Dressed)",
  20425. image: {
  20426. source: "./media/characters/seroko/front-dressed.svg",
  20427. extra: 1366 / 1275,
  20428. bottom: 0.03
  20429. }
  20430. },
  20431. },
  20432. [
  20433. {
  20434. name: "Normal",
  20435. height: math.unit(8 + 8 / 12, "feet"),
  20436. default: true
  20437. },
  20438. ]
  20439. ))
  20440. characterMakers.push(() => makeCharacter(
  20441. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20442. {
  20443. front: {
  20444. height: math.unit(5.5, "feet"),
  20445. weight: math.unit(160, "lb"),
  20446. name: "Front",
  20447. image: {
  20448. source: "./media/characters/quatzi/front.svg",
  20449. extra: 2346 / 2242,
  20450. bottom: 0.015
  20451. }
  20452. },
  20453. },
  20454. [
  20455. {
  20456. name: "Normal",
  20457. height: math.unit(5.5, "feet"),
  20458. default: true
  20459. },
  20460. {
  20461. name: "Big",
  20462. height: math.unit(7.7, "feet")
  20463. },
  20464. ]
  20465. ))
  20466. characterMakers.push(() => makeCharacter(
  20467. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20468. {
  20469. front: {
  20470. height: math.unit(5 + 11 / 12, "feet"),
  20471. weight: math.unit(180, "lb"),
  20472. name: "Front",
  20473. image: {
  20474. source: "./media/characters/sen/front.svg",
  20475. extra: 1321 / 1254,
  20476. bottom: 0.015
  20477. }
  20478. },
  20479. side: {
  20480. height: math.unit(5 + 11 / 12, "feet"),
  20481. weight: math.unit(180, "lb"),
  20482. name: "Side",
  20483. image: {
  20484. source: "./media/characters/sen/side.svg",
  20485. extra: 1321 / 1254,
  20486. bottom: 0.007
  20487. }
  20488. },
  20489. back: {
  20490. height: math.unit(5 + 11 / 12, "feet"),
  20491. weight: math.unit(180, "lb"),
  20492. name: "Back",
  20493. image: {
  20494. source: "./media/characters/sen/back.svg",
  20495. extra: 1321 / 1254
  20496. }
  20497. },
  20498. },
  20499. [
  20500. {
  20501. name: "Normal",
  20502. height: math.unit(5 + 11 / 12, "feet"),
  20503. default: true
  20504. },
  20505. ]
  20506. ))
  20507. characterMakers.push(() => makeCharacter(
  20508. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20509. {
  20510. front: {
  20511. height: math.unit(166.6, "cm"),
  20512. weight: math.unit(66.6, "kg"),
  20513. name: "Front",
  20514. image: {
  20515. source: "./media/characters/fruity/front.svg",
  20516. extra: 1510 / 1386,
  20517. bottom: 0.04
  20518. }
  20519. },
  20520. back: {
  20521. height: math.unit(166.6, "cm"),
  20522. weight: math.unit(66.6, "lb"),
  20523. name: "Back",
  20524. image: {
  20525. source: "./media/characters/fruity/back.svg",
  20526. extra: 1563 / 1435,
  20527. bottom: 0.005
  20528. }
  20529. },
  20530. },
  20531. [
  20532. {
  20533. name: "Normal",
  20534. height: math.unit(166.6, "cm"),
  20535. default: true
  20536. },
  20537. {
  20538. name: "Demonic",
  20539. height: math.unit(166.6, "feet")
  20540. },
  20541. ]
  20542. ))
  20543. characterMakers.push(() => makeCharacter(
  20544. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20545. {
  20546. side: {
  20547. height: math.unit(10, "feet"),
  20548. weight: math.unit(500, "lb"),
  20549. name: "Side",
  20550. image: {
  20551. source: "./media/characters/zost/side.svg",
  20552. extra: 966 / 880,
  20553. bottom: 0.075
  20554. }
  20555. },
  20556. mawFront: {
  20557. height: math.unit(1.08, "meters"),
  20558. name: "Maw (Front)",
  20559. image: {
  20560. source: "./media/characters/zost/maw-front.svg"
  20561. }
  20562. },
  20563. mawSide: {
  20564. height: math.unit(2.66, "feet"),
  20565. name: "Maw (Side)",
  20566. image: {
  20567. source: "./media/characters/zost/maw-side.svg"
  20568. }
  20569. },
  20570. },
  20571. [
  20572. {
  20573. name: "Normal",
  20574. height: math.unit(10, "feet"),
  20575. default: true
  20576. },
  20577. ]
  20578. ))
  20579. characterMakers.push(() => makeCharacter(
  20580. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20581. {
  20582. front: {
  20583. height: math.unit(5 + 4 / 12, "feet"),
  20584. weight: math.unit(120, "lb"),
  20585. name: "Front",
  20586. image: {
  20587. source: "./media/characters/luci/front.svg",
  20588. extra: 1985 / 1884,
  20589. bottom: 0.04
  20590. }
  20591. },
  20592. back: {
  20593. height: math.unit(5 + 4 / 12, "feet"),
  20594. weight: math.unit(120, "lb"),
  20595. name: "Back",
  20596. image: {
  20597. source: "./media/characters/luci/back.svg",
  20598. extra: 1892 / 1791,
  20599. bottom: 0.002
  20600. }
  20601. },
  20602. },
  20603. [
  20604. {
  20605. name: "Normal",
  20606. height: math.unit(5 + 4 / 12, "feet"),
  20607. default: true
  20608. },
  20609. ]
  20610. ))
  20611. characterMakers.push(() => makeCharacter(
  20612. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20613. {
  20614. front: {
  20615. height: math.unit(1500, "feet"),
  20616. weight: math.unit(3.8e6, "tons"),
  20617. name: "Front",
  20618. image: {
  20619. source: "./media/characters/2th/front.svg",
  20620. extra: 3489 / 3350,
  20621. bottom: 0.1
  20622. }
  20623. },
  20624. foot: {
  20625. height: math.unit(461, "feet"),
  20626. name: "Foot",
  20627. image: {
  20628. source: "./media/characters/2th/foot.svg"
  20629. }
  20630. },
  20631. },
  20632. [
  20633. {
  20634. name: "\"Micro\"",
  20635. height: math.unit(15 + 7 / 12, "feet")
  20636. },
  20637. {
  20638. name: "Normal",
  20639. height: math.unit(1500, "feet"),
  20640. default: true
  20641. },
  20642. {
  20643. name: "Macro",
  20644. height: math.unit(5000, "feet")
  20645. },
  20646. {
  20647. name: "Megamacro",
  20648. height: math.unit(15, "miles")
  20649. },
  20650. {
  20651. name: "Gigamacro",
  20652. height: math.unit(4000, "miles")
  20653. },
  20654. {
  20655. name: "Galactic",
  20656. height: math.unit(50, "AU")
  20657. },
  20658. ]
  20659. ))
  20660. characterMakers.push(() => makeCharacter(
  20661. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20662. {
  20663. front: {
  20664. height: math.unit(5 + 6 / 12, "feet"),
  20665. weight: math.unit(220, "lb"),
  20666. name: "Front",
  20667. image: {
  20668. source: "./media/characters/amethyst/front.svg",
  20669. extra: 2078 / 2040,
  20670. bottom: 0.045
  20671. }
  20672. },
  20673. back: {
  20674. height: math.unit(5 + 6 / 12, "feet"),
  20675. weight: math.unit(220, "lb"),
  20676. name: "Back",
  20677. image: {
  20678. source: "./media/characters/amethyst/back.svg",
  20679. extra: 2021 / 1989,
  20680. bottom: 0.02
  20681. }
  20682. },
  20683. },
  20684. [
  20685. {
  20686. name: "Normal",
  20687. height: math.unit(5 + 6 / 12, "feet"),
  20688. default: true
  20689. },
  20690. ]
  20691. ))
  20692. characterMakers.push(() => makeCharacter(
  20693. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20694. {
  20695. front: {
  20696. height: math.unit(4 + 11 / 12, "feet"),
  20697. weight: math.unit(120, "lb"),
  20698. name: "Front",
  20699. image: {
  20700. source: "./media/characters/yumi-akiyama/front.svg",
  20701. extra: 1327 / 1235,
  20702. bottom: 0.02
  20703. }
  20704. },
  20705. back: {
  20706. height: math.unit(4 + 11 / 12, "feet"),
  20707. weight: math.unit(120, "lb"),
  20708. name: "Back",
  20709. image: {
  20710. source: "./media/characters/yumi-akiyama/back.svg",
  20711. extra: 1287 / 1245,
  20712. bottom: 0.002
  20713. }
  20714. },
  20715. },
  20716. [
  20717. {
  20718. name: "Galactic",
  20719. height: math.unit(50, "galaxies"),
  20720. default: true
  20721. },
  20722. {
  20723. name: "Universal",
  20724. height: math.unit(100, "universes")
  20725. },
  20726. ]
  20727. ))
  20728. characterMakers.push(() => makeCharacter(
  20729. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20730. {
  20731. front: {
  20732. height: math.unit(8, "feet"),
  20733. weight: math.unit(500, "lb"),
  20734. name: "Front",
  20735. image: {
  20736. source: "./media/characters/rifter-yrmori/front.svg",
  20737. extra: 1180 / 1125,
  20738. bottom: 0.02
  20739. }
  20740. },
  20741. back: {
  20742. height: math.unit(8, "feet"),
  20743. weight: math.unit(500, "lb"),
  20744. name: "Back",
  20745. image: {
  20746. source: "./media/characters/rifter-yrmori/back.svg",
  20747. extra: 1190 / 1145,
  20748. bottom: 0.001
  20749. }
  20750. },
  20751. wings: {
  20752. height: math.unit(7.75, "feet"),
  20753. weight: math.unit(500, "lb"),
  20754. name: "Wings",
  20755. image: {
  20756. source: "./media/characters/rifter-yrmori/wings.svg",
  20757. extra: 1357 / 1285
  20758. }
  20759. },
  20760. maw: {
  20761. height: math.unit(0.8, "feet"),
  20762. name: "Maw",
  20763. image: {
  20764. source: "./media/characters/rifter-yrmori/maw.svg"
  20765. }
  20766. },
  20767. mawfront: {
  20768. height: math.unit(1.45, "feet"),
  20769. name: "Maw (Front)",
  20770. image: {
  20771. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20772. }
  20773. },
  20774. },
  20775. [
  20776. {
  20777. name: "Normal",
  20778. height: math.unit(8, "feet"),
  20779. default: true
  20780. },
  20781. {
  20782. name: "Macro",
  20783. height: math.unit(42, "meters")
  20784. },
  20785. ]
  20786. ))
  20787. characterMakers.push(() => makeCharacter(
  20788. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20789. {
  20790. were: {
  20791. height: math.unit(25 + 6 / 12, "feet"),
  20792. weight: math.unit(10000, "lb"),
  20793. name: "Were",
  20794. image: {
  20795. source: "./media/characters/tahajin/were.svg",
  20796. extra: 801 / 770,
  20797. bottom: 0.042
  20798. }
  20799. },
  20800. aquatic: {
  20801. height: math.unit(6 + 4 / 12, "feet"),
  20802. weight: math.unit(160, "lb"),
  20803. name: "Aquatic",
  20804. image: {
  20805. source: "./media/characters/tahajin/aquatic.svg",
  20806. extra: 572 / 542,
  20807. bottom: 0.04
  20808. }
  20809. },
  20810. chow: {
  20811. height: math.unit(8 + 11 / 12, "feet"),
  20812. weight: math.unit(450, "lb"),
  20813. name: "Chow",
  20814. image: {
  20815. source: "./media/characters/tahajin/chow.svg",
  20816. extra: 660 / 640,
  20817. bottom: 0.015
  20818. }
  20819. },
  20820. demiNaga: {
  20821. height: math.unit(6 + 8 / 12, "feet"),
  20822. weight: math.unit(300, "lb"),
  20823. name: "Demi Naga",
  20824. image: {
  20825. source: "./media/characters/tahajin/demi-naga.svg",
  20826. extra: 643 / 615,
  20827. bottom: 0.1
  20828. }
  20829. },
  20830. data: {
  20831. height: math.unit(5, "inches"),
  20832. weight: math.unit(0.1, "lb"),
  20833. name: "Data",
  20834. image: {
  20835. source: "./media/characters/tahajin/data.svg"
  20836. }
  20837. },
  20838. fluu: {
  20839. height: math.unit(5 + 7 / 12, "feet"),
  20840. weight: math.unit(140, "lb"),
  20841. name: "Fluu",
  20842. image: {
  20843. source: "./media/characters/tahajin/fluu.svg",
  20844. extra: 628 / 592,
  20845. bottom: 0.02
  20846. }
  20847. },
  20848. starWarrior: {
  20849. height: math.unit(4 + 5 / 12, "feet"),
  20850. weight: math.unit(50, "lb"),
  20851. name: "Star Warrior",
  20852. image: {
  20853. source: "./media/characters/tahajin/star-warrior.svg"
  20854. }
  20855. },
  20856. },
  20857. [
  20858. {
  20859. name: "Normal",
  20860. height: math.unit(25 + 6 / 12, "feet"),
  20861. default: true
  20862. },
  20863. ]
  20864. ))
  20865. characterMakers.push(() => makeCharacter(
  20866. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20867. {
  20868. front: {
  20869. height: math.unit(8, "feet"),
  20870. weight: math.unit(350, "lb"),
  20871. name: "Front",
  20872. image: {
  20873. source: "./media/characters/gabira/front.svg",
  20874. extra: 608 / 580,
  20875. bottom: 0.03
  20876. }
  20877. },
  20878. back: {
  20879. height: math.unit(8, "feet"),
  20880. weight: math.unit(350, "lb"),
  20881. name: "Back",
  20882. image: {
  20883. source: "./media/characters/gabira/back.svg",
  20884. extra: 608 / 580,
  20885. bottom: 0.03
  20886. }
  20887. },
  20888. },
  20889. [
  20890. {
  20891. name: "Normal",
  20892. height: math.unit(8, "feet"),
  20893. default: true
  20894. },
  20895. ]
  20896. ))
  20897. characterMakers.push(() => makeCharacter(
  20898. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20899. {
  20900. front: {
  20901. height: math.unit(5 + 3 / 12, "feet"),
  20902. weight: math.unit(137, "lb"),
  20903. name: "Front",
  20904. image: {
  20905. source: "./media/characters/sasha-katraine/front.svg",
  20906. bottom: 0.045
  20907. }
  20908. },
  20909. },
  20910. [
  20911. {
  20912. name: "Micro",
  20913. height: math.unit(5, "inches")
  20914. },
  20915. {
  20916. name: "Normal",
  20917. height: math.unit(5 + 3 / 12, "feet"),
  20918. default: true
  20919. },
  20920. ]
  20921. ))
  20922. characterMakers.push(() => makeCharacter(
  20923. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20924. {
  20925. side: {
  20926. height: math.unit(4, "inches"),
  20927. weight: math.unit(200, "grams"),
  20928. name: "Side",
  20929. image: {
  20930. source: "./media/characters/der/side.svg",
  20931. extra: 719 / 400,
  20932. bottom: 30.6 / 749.9187
  20933. }
  20934. },
  20935. },
  20936. [
  20937. {
  20938. name: "Micro",
  20939. height: math.unit(4, "inches"),
  20940. default: true
  20941. },
  20942. ]
  20943. ))
  20944. characterMakers.push(() => makeCharacter(
  20945. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20946. {
  20947. side: {
  20948. height: math.unit(30, "meters"),
  20949. weight: math.unit(700, "tonnes"),
  20950. name: "Side",
  20951. image: {
  20952. source: "./media/characters/fixerdragon/side.svg",
  20953. extra: (1293.0514 - 116.03) / 1106.86,
  20954. bottom: 116.03 / 1293.0514
  20955. }
  20956. },
  20957. },
  20958. [
  20959. {
  20960. name: "Planck",
  20961. height: math.unit(1.6e-35, "meters")
  20962. },
  20963. {
  20964. name: "Micro",
  20965. height: math.unit(0.4, "meters")
  20966. },
  20967. {
  20968. name: "Normal",
  20969. height: math.unit(30, "meters"),
  20970. default: true
  20971. },
  20972. {
  20973. name: "Megamacro",
  20974. height: math.unit(1.2, "megameters")
  20975. },
  20976. {
  20977. name: "Teramacro",
  20978. height: math.unit(130, "terameters")
  20979. },
  20980. {
  20981. name: "Yottamacro",
  20982. height: math.unit(6200, "yottameters")
  20983. },
  20984. ]
  20985. ));
  20986. characterMakers.push(() => makeCharacter(
  20987. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20988. {
  20989. front: {
  20990. height: math.unit(8, "feet"),
  20991. weight: math.unit(250, "lb"),
  20992. name: "Front",
  20993. image: {
  20994. source: "./media/characters/kite/front.svg",
  20995. extra: 2796 / 2659,
  20996. bottom: 0.002
  20997. }
  20998. },
  20999. },
  21000. [
  21001. {
  21002. name: "Normal",
  21003. height: math.unit(8, "feet"),
  21004. default: true
  21005. },
  21006. {
  21007. name: "Macro",
  21008. height: math.unit(360, "feet")
  21009. },
  21010. {
  21011. name: "Megamacro",
  21012. height: math.unit(1500, "feet")
  21013. },
  21014. ]
  21015. ))
  21016. characterMakers.push(() => makeCharacter(
  21017. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21018. {
  21019. front: {
  21020. height: math.unit(5 + 10 / 12, "feet"),
  21021. weight: math.unit(150, "lb"),
  21022. name: "Front",
  21023. image: {
  21024. source: "./media/characters/poojawa-vynar/front.svg",
  21025. extra: (1506.1547 - 55) / 1356.6,
  21026. bottom: 55 / 1506.1547
  21027. }
  21028. },
  21029. frontTailless: {
  21030. height: math.unit(5 + 10 / 12, "feet"),
  21031. weight: math.unit(150, "lb"),
  21032. name: "Front (Tailless)",
  21033. image: {
  21034. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21035. extra: (1506.1547 - 55) / 1356.6,
  21036. bottom: 55 / 1506.1547
  21037. }
  21038. },
  21039. },
  21040. [
  21041. {
  21042. name: "Normal",
  21043. height: math.unit(5 + 10 / 12, "feet"),
  21044. default: true
  21045. },
  21046. ]
  21047. ))
  21048. characterMakers.push(() => makeCharacter(
  21049. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21050. {
  21051. front: {
  21052. height: math.unit(293, "meters"),
  21053. weight: math.unit(70400, "tons"),
  21054. name: "Front",
  21055. image: {
  21056. source: "./media/characters/violette/front.svg",
  21057. extra: 1227 / 1180,
  21058. bottom: 0.005
  21059. }
  21060. },
  21061. back: {
  21062. height: math.unit(293, "meters"),
  21063. weight: math.unit(70400, "tons"),
  21064. name: "Back",
  21065. image: {
  21066. source: "./media/characters/violette/back.svg",
  21067. extra: 1227 / 1180,
  21068. bottom: 0.005
  21069. }
  21070. },
  21071. },
  21072. [
  21073. {
  21074. name: "Macro",
  21075. height: math.unit(293, "meters"),
  21076. default: true
  21077. },
  21078. ]
  21079. ))
  21080. characterMakers.push(() => makeCharacter(
  21081. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21082. {
  21083. front: {
  21084. height: math.unit(1050, "feet"),
  21085. weight: math.unit(200000, "tons"),
  21086. name: "Front",
  21087. image: {
  21088. source: "./media/characters/alessandra/front.svg",
  21089. extra: 960 / 912,
  21090. bottom: 0.06
  21091. }
  21092. },
  21093. },
  21094. [
  21095. {
  21096. name: "Macro",
  21097. height: math.unit(1050, "feet")
  21098. },
  21099. {
  21100. name: "Macro+",
  21101. height: math.unit(900, "meters"),
  21102. default: true
  21103. },
  21104. ]
  21105. ))
  21106. characterMakers.push(() => makeCharacter(
  21107. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21108. {
  21109. front: {
  21110. height: math.unit(5, "feet"),
  21111. weight: math.unit(187, "lb"),
  21112. name: "Front",
  21113. image: {
  21114. source: "./media/characters/person/front.svg",
  21115. extra: 3087 / 2945,
  21116. bottom: 91 / 3181
  21117. }
  21118. },
  21119. },
  21120. [
  21121. {
  21122. name: "Micro",
  21123. height: math.unit(3, "inches")
  21124. },
  21125. {
  21126. name: "Normal",
  21127. height: math.unit(5, "feet"),
  21128. default: true
  21129. },
  21130. {
  21131. name: "Macro",
  21132. height: math.unit(90, "feet")
  21133. },
  21134. {
  21135. name: "Max Size",
  21136. height: math.unit(280, "feet")
  21137. },
  21138. ]
  21139. ))
  21140. characterMakers.push(() => makeCharacter(
  21141. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21142. {
  21143. front: {
  21144. height: math.unit(4.5, "meters"),
  21145. weight: math.unit(3200, "lb"),
  21146. name: "Front",
  21147. image: {
  21148. source: "./media/characters/ty/front.svg",
  21149. extra: 1038 / 960,
  21150. bottom: 31.156 / 1068
  21151. }
  21152. },
  21153. back: {
  21154. height: math.unit(4.5, "meters"),
  21155. weight: math.unit(3200, "lb"),
  21156. name: "Back",
  21157. image: {
  21158. source: "./media/characters/ty/back.svg",
  21159. extra: 1044 / 966,
  21160. bottom: 7.48 / 1049
  21161. }
  21162. },
  21163. },
  21164. [
  21165. {
  21166. name: "Normal",
  21167. height: math.unit(4.5, "meters"),
  21168. default: true
  21169. },
  21170. ]
  21171. ))
  21172. characterMakers.push(() => makeCharacter(
  21173. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21174. {
  21175. front: {
  21176. height: math.unit(5 + 4 / 12, "feet"),
  21177. weight: math.unit(115, "lb"),
  21178. name: "Front",
  21179. image: {
  21180. source: "./media/characters/rocky/front.svg",
  21181. extra: 1012 / 975,
  21182. bottom: 54 / 1066
  21183. }
  21184. },
  21185. },
  21186. [
  21187. {
  21188. name: "Normal",
  21189. height: math.unit(5 + 4 / 12, "feet"),
  21190. default: true
  21191. },
  21192. ]
  21193. ))
  21194. characterMakers.push(() => makeCharacter(
  21195. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21196. {
  21197. upright: {
  21198. height: math.unit(6, "meters"),
  21199. weight: math.unit(4000, "kg"),
  21200. name: "Upright",
  21201. image: {
  21202. source: "./media/characters/ruin/upright.svg",
  21203. extra: 668 / 661,
  21204. bottom: 42 / 799.8396
  21205. }
  21206. },
  21207. },
  21208. [
  21209. {
  21210. name: "Normal",
  21211. height: math.unit(6, "meters"),
  21212. default: true
  21213. },
  21214. ]
  21215. ))
  21216. characterMakers.push(() => makeCharacter(
  21217. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21218. {
  21219. front: {
  21220. height: math.unit(5, "feet"),
  21221. weight: math.unit(106, "lb"),
  21222. name: "Front",
  21223. image: {
  21224. source: "./media/characters/robin/front.svg",
  21225. extra: 862 / 799,
  21226. bottom: 42.4 / 914.8856
  21227. }
  21228. },
  21229. },
  21230. [
  21231. {
  21232. name: "Normal",
  21233. height: math.unit(5, "feet"),
  21234. default: true
  21235. },
  21236. ]
  21237. ))
  21238. characterMakers.push(() => makeCharacter(
  21239. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21240. {
  21241. side: {
  21242. height: math.unit(3, "feet"),
  21243. weight: math.unit(225, "lb"),
  21244. name: "Side",
  21245. image: {
  21246. source: "./media/characters/saian/side.svg",
  21247. extra: 566 / 356,
  21248. bottom: 79.7 / 643
  21249. }
  21250. },
  21251. maw: {
  21252. height: math.unit(2.85, "feet"),
  21253. name: "Maw",
  21254. image: {
  21255. source: "./media/characters/saian/maw.svg"
  21256. }
  21257. },
  21258. },
  21259. [
  21260. {
  21261. name: "Normal",
  21262. height: math.unit(3, "feet"),
  21263. default: true
  21264. },
  21265. ]
  21266. ))
  21267. characterMakers.push(() => makeCharacter(
  21268. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21269. {
  21270. side: {
  21271. height: math.unit(8, "feet"),
  21272. weight: math.unit(300, "lb"),
  21273. name: "Side",
  21274. image: {
  21275. source: "./media/characters/equus-silvermane/side.svg",
  21276. extra: 2176 / 2050,
  21277. bottom: 65.7 / 2245
  21278. }
  21279. },
  21280. front: {
  21281. height: math.unit(8, "feet"),
  21282. weight: math.unit(300, "lb"),
  21283. name: "Front",
  21284. image: {
  21285. source: "./media/characters/equus-silvermane/front.svg",
  21286. extra: 4633 / 4400,
  21287. bottom: 71.3 / 4706.915
  21288. }
  21289. },
  21290. sideStepping: {
  21291. height: math.unit(8, "feet"),
  21292. weight: math.unit(300, "lb"),
  21293. name: "Side (Stepping)",
  21294. image: {
  21295. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21296. extra: 1968 / 1860,
  21297. bottom: 16.4 / 1989
  21298. }
  21299. },
  21300. },
  21301. [
  21302. {
  21303. name: "Normal",
  21304. height: math.unit(8, "feet")
  21305. },
  21306. {
  21307. name: "Minimacro",
  21308. height: math.unit(75, "feet"),
  21309. default: true
  21310. },
  21311. {
  21312. name: "Macro",
  21313. height: math.unit(150, "feet")
  21314. },
  21315. {
  21316. name: "Macro+",
  21317. height: math.unit(1000, "feet")
  21318. },
  21319. {
  21320. name: "Megamacro",
  21321. height: math.unit(1, "mile")
  21322. },
  21323. ]
  21324. ))
  21325. characterMakers.push(() => makeCharacter(
  21326. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21327. {
  21328. side: {
  21329. height: math.unit(20, "feet"),
  21330. weight: math.unit(30000, "kg"),
  21331. name: "Side",
  21332. image: {
  21333. source: "./media/characters/windar/side.svg",
  21334. extra: 1491 / 1248,
  21335. bottom: 82.56 / 1568
  21336. }
  21337. },
  21338. },
  21339. [
  21340. {
  21341. name: "Normal",
  21342. height: math.unit(20, "feet"),
  21343. default: true
  21344. },
  21345. ]
  21346. ))
  21347. characterMakers.push(() => makeCharacter(
  21348. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21349. {
  21350. side: {
  21351. height: math.unit(15.66, "feet"),
  21352. weight: math.unit(150, "lb"),
  21353. name: "Side",
  21354. image: {
  21355. source: "./media/characters/melody/side.svg",
  21356. extra: 1097 / 944,
  21357. bottom: 11.8 / 1109
  21358. }
  21359. },
  21360. sideOutfit: {
  21361. height: math.unit(15.66, "feet"),
  21362. weight: math.unit(150, "lb"),
  21363. name: "Side (Outfit)",
  21364. image: {
  21365. source: "./media/characters/melody/side-outfit.svg",
  21366. extra: 1097 / 944,
  21367. bottom: 11.8 / 1109
  21368. }
  21369. },
  21370. },
  21371. [
  21372. {
  21373. name: "Normal",
  21374. height: math.unit(15.66, "feet"),
  21375. default: true
  21376. },
  21377. ]
  21378. ))
  21379. characterMakers.push(() => makeCharacter(
  21380. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21381. {
  21382. front: {
  21383. height: math.unit(8, "feet"),
  21384. weight: math.unit(325, "lb"),
  21385. name: "Front",
  21386. image: {
  21387. source: "./media/characters/windera/front.svg",
  21388. extra: 3180 / 2845,
  21389. bottom: 178 / 3365
  21390. }
  21391. },
  21392. },
  21393. [
  21394. {
  21395. name: "Normal",
  21396. height: math.unit(8, "feet"),
  21397. default: true
  21398. },
  21399. ]
  21400. ))
  21401. characterMakers.push(() => makeCharacter(
  21402. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21403. {
  21404. front: {
  21405. height: math.unit(28.75, "feet"),
  21406. weight: math.unit(2000, "kg"),
  21407. name: "Front",
  21408. image: {
  21409. source: "./media/characters/sonear/front.svg",
  21410. extra: 1041.1 / 964.9,
  21411. bottom: 53.7 / 1096.6
  21412. }
  21413. },
  21414. },
  21415. [
  21416. {
  21417. name: "Normal",
  21418. height: math.unit(28.75, "feet"),
  21419. default: true
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21425. {
  21426. side: {
  21427. height: math.unit(25.5, "feet"),
  21428. weight: math.unit(23000, "kg"),
  21429. name: "Side",
  21430. image: {
  21431. source: "./media/characters/kanara/side.svg"
  21432. }
  21433. },
  21434. },
  21435. [
  21436. {
  21437. name: "Normal",
  21438. height: math.unit(25.5, "feet"),
  21439. default: true
  21440. },
  21441. ]
  21442. ))
  21443. characterMakers.push(() => makeCharacter(
  21444. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21445. {
  21446. side: {
  21447. height: math.unit(10, "feet"),
  21448. weight: math.unit(1000, "kg"),
  21449. name: "Side",
  21450. image: {
  21451. source: "./media/characters/ereus/side.svg",
  21452. extra: 1157 / 959,
  21453. bottom: 153 / 1312.5
  21454. }
  21455. },
  21456. },
  21457. [
  21458. {
  21459. name: "Normal",
  21460. height: math.unit(10, "feet"),
  21461. default: true
  21462. },
  21463. ]
  21464. ))
  21465. characterMakers.push(() => makeCharacter(
  21466. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21467. {
  21468. side: {
  21469. height: math.unit(4.5, "feet"),
  21470. weight: math.unit(500, "lb"),
  21471. name: "Side",
  21472. image: {
  21473. source: "./media/characters/e-ter/side.svg",
  21474. extra: 1550 / 1248,
  21475. bottom: 146 / 1694
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(4.5, "feet"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21489. {
  21490. side: {
  21491. height: math.unit(9.7, "feet"),
  21492. weight: math.unit(4000, "kg"),
  21493. name: "Side",
  21494. image: {
  21495. source: "./media/characters/yamie/side.svg"
  21496. }
  21497. },
  21498. },
  21499. [
  21500. {
  21501. name: "Normal",
  21502. height: math.unit(9.7, "feet"),
  21503. default: true
  21504. },
  21505. ]
  21506. ))
  21507. characterMakers.push(() => makeCharacter(
  21508. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21509. {
  21510. front: {
  21511. height: math.unit(50, "feet"),
  21512. weight: math.unit(50000, "kg"),
  21513. name: "Front",
  21514. image: {
  21515. source: "./media/characters/anders/front.svg",
  21516. extra: 570 / 539,
  21517. bottom: 14.7 / 586.7
  21518. }
  21519. },
  21520. },
  21521. [
  21522. {
  21523. name: "Large",
  21524. height: math.unit(50, "feet")
  21525. },
  21526. {
  21527. name: "Macro",
  21528. height: math.unit(2000, "feet"),
  21529. default: true
  21530. },
  21531. {
  21532. name: "Megamacro",
  21533. height: math.unit(12, "miles")
  21534. },
  21535. ]
  21536. ))
  21537. characterMakers.push(() => makeCharacter(
  21538. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21539. {
  21540. front: {
  21541. height: math.unit(7 + 2 / 12, "feet"),
  21542. weight: math.unit(300, "lb"),
  21543. name: "Front",
  21544. image: {
  21545. source: "./media/characters/reban/front.svg",
  21546. extra: 516 / 487,
  21547. bottom: 42.82 / 558.356
  21548. }
  21549. },
  21550. dick: {
  21551. height: math.unit(7 / 5, "feet"),
  21552. name: "Dick",
  21553. image: {
  21554. source: "./media/characters/reban/dick.svg"
  21555. }
  21556. },
  21557. },
  21558. [
  21559. {
  21560. name: "Natural Height",
  21561. height: math.unit(7 + 2 / 12, "feet")
  21562. },
  21563. {
  21564. name: "Macro",
  21565. height: math.unit(500, "feet"),
  21566. default: true
  21567. },
  21568. {
  21569. name: "Canon Height",
  21570. height: math.unit(50, "AU")
  21571. },
  21572. ]
  21573. ))
  21574. characterMakers.push(() => makeCharacter(
  21575. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21576. {
  21577. front: {
  21578. height: math.unit(6, "feet"),
  21579. weight: math.unit(150, "lb"),
  21580. name: "Front",
  21581. image: {
  21582. source: "./media/characters/terrance-keayes/front.svg",
  21583. extra: 1.005,
  21584. bottom: 151 / 1615
  21585. }
  21586. },
  21587. side: {
  21588. height: math.unit(6, "feet"),
  21589. weight: math.unit(150, "lb"),
  21590. name: "Side",
  21591. image: {
  21592. source: "./media/characters/terrance-keayes/side.svg",
  21593. extra: 1.005,
  21594. bottom: 129.4 / 1544
  21595. }
  21596. },
  21597. back: {
  21598. height: math.unit(6, "feet"),
  21599. weight: math.unit(150, "lb"),
  21600. name: "Back",
  21601. image: {
  21602. source: "./media/characters/terrance-keayes/back.svg",
  21603. extra: 1.005,
  21604. bottom: 58.4 / 1557.3
  21605. }
  21606. },
  21607. dick: {
  21608. height: math.unit(6 * 0.208, "feet"),
  21609. name: "Dick",
  21610. image: {
  21611. source: "./media/characters/terrance-keayes/dick.svg"
  21612. }
  21613. },
  21614. },
  21615. [
  21616. {
  21617. name: "Canon Height",
  21618. height: math.unit(35, "miles"),
  21619. default: true
  21620. },
  21621. ]
  21622. ))
  21623. characterMakers.push(() => makeCharacter(
  21624. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21625. {
  21626. front: {
  21627. height: math.unit(6, "feet"),
  21628. weight: math.unit(150, "lb"),
  21629. name: "Front",
  21630. image: {
  21631. source: "./media/characters/ofelia/front.svg",
  21632. extra: 546 / 541,
  21633. bottom: 39 / 583
  21634. }
  21635. },
  21636. back: {
  21637. height: math.unit(6, "feet"),
  21638. weight: math.unit(150, "lb"),
  21639. name: "Back",
  21640. image: {
  21641. source: "./media/characters/ofelia/back.svg",
  21642. extra: 564 / 559.5,
  21643. bottom: 8.69 / 573.02
  21644. }
  21645. },
  21646. maw: {
  21647. height: math.unit(1, "feet"),
  21648. name: "Maw",
  21649. image: {
  21650. source: "./media/characters/ofelia/maw.svg"
  21651. }
  21652. },
  21653. foot: {
  21654. height: math.unit(1.949, "feet"),
  21655. name: "Foot",
  21656. image: {
  21657. source: "./media/characters/ofelia/foot.svg"
  21658. }
  21659. },
  21660. },
  21661. [
  21662. {
  21663. name: "Canon Height",
  21664. height: math.unit(2000, "miles"),
  21665. default: true
  21666. },
  21667. ]
  21668. ))
  21669. characterMakers.push(() => makeCharacter(
  21670. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21671. {
  21672. front: {
  21673. height: math.unit(6, "feet"),
  21674. weight: math.unit(150, "lb"),
  21675. name: "Front",
  21676. image: {
  21677. source: "./media/characters/samuel/front.svg",
  21678. extra: 265 / 258,
  21679. bottom: 2 / 266.1566
  21680. }
  21681. },
  21682. },
  21683. [
  21684. {
  21685. name: "Macro",
  21686. height: math.unit(100, "feet"),
  21687. default: true
  21688. },
  21689. {
  21690. name: "Full Size",
  21691. height: math.unit(1000, "miles")
  21692. },
  21693. ]
  21694. ))
  21695. characterMakers.push(() => makeCharacter(
  21696. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21697. {
  21698. front: {
  21699. height: math.unit(6, "feet"),
  21700. weight: math.unit(300, "lb"),
  21701. name: "Front",
  21702. image: {
  21703. source: "./media/characters/beishir-kiel/front.svg",
  21704. extra: 569 / 547,
  21705. bottom: 41.9 / 609
  21706. }
  21707. },
  21708. maw: {
  21709. height: math.unit(6 * 0.202, "feet"),
  21710. name: "Maw",
  21711. image: {
  21712. source: "./media/characters/beishir-kiel/maw.svg"
  21713. }
  21714. },
  21715. },
  21716. [
  21717. {
  21718. name: "Macro",
  21719. height: math.unit(300, "feet"),
  21720. default: true
  21721. },
  21722. ]
  21723. ))
  21724. characterMakers.push(() => makeCharacter(
  21725. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21726. {
  21727. front: {
  21728. height: math.unit(5 + 8 / 12, "feet"),
  21729. weight: math.unit(120, "lb"),
  21730. name: "Front",
  21731. image: {
  21732. source: "./media/characters/logan-grey/front.svg",
  21733. extra: 2539 / 2393,
  21734. bottom: 97.6 / 2636.37
  21735. }
  21736. },
  21737. frontAlt: {
  21738. height: math.unit(5 + 8 / 12, "feet"),
  21739. weight: math.unit(120, "lb"),
  21740. name: "Front (Alt)",
  21741. image: {
  21742. source: "./media/characters/logan-grey/front-alt.svg",
  21743. extra: 958 / 893,
  21744. bottom: 15 / 970.768
  21745. }
  21746. },
  21747. back: {
  21748. height: math.unit(5 + 8 / 12, "feet"),
  21749. weight: math.unit(120, "lb"),
  21750. name: "Back",
  21751. image: {
  21752. source: "./media/characters/logan-grey/back.svg",
  21753. extra: 958 / 893,
  21754. bottom: 2.1881 / 970.9788
  21755. }
  21756. },
  21757. dick: {
  21758. height: math.unit(1.437, "feet"),
  21759. name: "Dick",
  21760. image: {
  21761. source: "./media/characters/logan-grey/dick.svg"
  21762. }
  21763. },
  21764. },
  21765. [
  21766. {
  21767. name: "Normal",
  21768. height: math.unit(5 + 8 / 12, "feet")
  21769. },
  21770. {
  21771. name: "The 500 Foot Femboy",
  21772. height: math.unit(500, "feet"),
  21773. default: true
  21774. },
  21775. {
  21776. name: "Megmacro",
  21777. height: math.unit(20, "miles")
  21778. },
  21779. ]
  21780. ))
  21781. characterMakers.push(() => makeCharacter(
  21782. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21783. {
  21784. front: {
  21785. height: math.unit(8 + 2 / 12, "feet"),
  21786. weight: math.unit(275, "lb"),
  21787. name: "Front",
  21788. image: {
  21789. source: "./media/characters/draganta/front.svg",
  21790. extra: 1177 / 1135,
  21791. bottom: 33.46 / 1212.1
  21792. }
  21793. },
  21794. },
  21795. [
  21796. {
  21797. name: "Normal",
  21798. height: math.unit(8 + 6 / 12, "feet"),
  21799. default: true
  21800. },
  21801. {
  21802. name: "Macro",
  21803. height: math.unit(150, "feet")
  21804. },
  21805. {
  21806. name: "Megamacro",
  21807. height: math.unit(1000, "miles")
  21808. },
  21809. ]
  21810. ))
  21811. characterMakers.push(() => makeCharacter(
  21812. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21813. {
  21814. front: {
  21815. height: math.unit(1.72, "m"),
  21816. weight: math.unit(80, "lb"),
  21817. name: "Front",
  21818. image: {
  21819. source: "./media/characters/voski/front.svg",
  21820. extra: 2076.22 / 2022.4,
  21821. bottom: 102.7 / 2177.3866
  21822. }
  21823. },
  21824. frontNsfw: {
  21825. height: math.unit(1.72, "m"),
  21826. weight: math.unit(80, "lb"),
  21827. name: "Front (NSFW)",
  21828. image: {
  21829. source: "./media/characters/voski/front-nsfw.svg",
  21830. extra: 2076.22 / 2022.4,
  21831. bottom: 102.7 / 2177.3866
  21832. }
  21833. },
  21834. back: {
  21835. height: math.unit(1.72, "m"),
  21836. weight: math.unit(80, "lb"),
  21837. name: "Back",
  21838. image: {
  21839. source: "./media/characters/voski/back.svg",
  21840. extra: 2104 / 2051,
  21841. bottom: 10.45 / 2113.63
  21842. }
  21843. },
  21844. },
  21845. [
  21846. {
  21847. name: "Normal",
  21848. height: math.unit(1.72, "m")
  21849. },
  21850. {
  21851. name: "Macro",
  21852. height: math.unit(55, "m"),
  21853. default: true
  21854. },
  21855. {
  21856. name: "Macro+",
  21857. height: math.unit(300, "m")
  21858. },
  21859. {
  21860. name: "Macro++",
  21861. height: math.unit(700, "m")
  21862. },
  21863. {
  21864. name: "Macro+++",
  21865. height: math.unit(4500, "m")
  21866. },
  21867. {
  21868. name: "Macro++++",
  21869. height: math.unit(45, "km")
  21870. },
  21871. {
  21872. name: "Macro+++++",
  21873. height: math.unit(1220, "km")
  21874. },
  21875. ]
  21876. ))
  21877. characterMakers.push(() => makeCharacter(
  21878. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21879. {
  21880. front: {
  21881. height: math.unit(2.3, "m"),
  21882. weight: math.unit(304, "kg"),
  21883. name: "Front",
  21884. image: {
  21885. source: "./media/characters/icowom-lee/front.svg",
  21886. extra: 985 / 955,
  21887. bottom: 25.4 / 1012
  21888. }
  21889. },
  21890. fronttentacles: {
  21891. height: math.unit(2.3, "m"),
  21892. weight: math.unit(304, "kg"),
  21893. name: "Front-tentacles",
  21894. image: {
  21895. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21896. extra: 985 / 955,
  21897. bottom: 25.4 / 1012
  21898. }
  21899. },
  21900. back: {
  21901. height: math.unit(2.3, "m"),
  21902. weight: math.unit(304, "kg"),
  21903. name: "Back",
  21904. image: {
  21905. source: "./media/characters/icowom-lee/back.svg",
  21906. extra: 975 / 954,
  21907. bottom: 9.5 / 985
  21908. }
  21909. },
  21910. backtentacles: {
  21911. height: math.unit(2.3, "m"),
  21912. weight: math.unit(304, "kg"),
  21913. name: "Back-tentacles",
  21914. image: {
  21915. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21916. extra: 975 / 954,
  21917. bottom: 9.5 / 985
  21918. }
  21919. },
  21920. frontDressed: {
  21921. height: math.unit(2.3, "m"),
  21922. weight: math.unit(304, "kg"),
  21923. name: "Front (Dressed)",
  21924. image: {
  21925. source: "./media/characters/icowom-lee/front-dressed.svg",
  21926. extra: 3076 / 2933,
  21927. bottom: 51.4 / 3125.1889
  21928. }
  21929. },
  21930. rump: {
  21931. height: math.unit(0.776, "meters"),
  21932. name: "Rump",
  21933. image: {
  21934. source: "./media/characters/icowom-lee/rump.svg"
  21935. }
  21936. },
  21937. genitals: {
  21938. height: math.unit(0.78, "meters"),
  21939. name: "Genitals",
  21940. image: {
  21941. source: "./media/characters/icowom-lee/genitals.svg"
  21942. }
  21943. },
  21944. },
  21945. [
  21946. {
  21947. name: "Normal",
  21948. height: math.unit(2.3, "meters"),
  21949. default: true
  21950. },
  21951. {
  21952. name: "Macro",
  21953. height: math.unit(94, "meters"),
  21954. default: true
  21955. },
  21956. ]
  21957. ))
  21958. characterMakers.push(() => makeCharacter(
  21959. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21960. {
  21961. front: {
  21962. height: math.unit(22, "meters"),
  21963. weight: math.unit(21000, "kg"),
  21964. name: "Front",
  21965. image: {
  21966. source: "./media/characters/shock-diamond/front.svg",
  21967. extra: 2204 / 2053,
  21968. bottom: 65 / 2239.47
  21969. }
  21970. },
  21971. frontNude: {
  21972. height: math.unit(22, "meters"),
  21973. weight: math.unit(21000, "kg"),
  21974. name: "Front (Nude)",
  21975. image: {
  21976. source: "./media/characters/shock-diamond/front-nude.svg",
  21977. extra: 2514 / 2285,
  21978. bottom: 13 / 2527.56
  21979. }
  21980. },
  21981. },
  21982. [
  21983. {
  21984. name: "Normal",
  21985. height: math.unit(3, "meters")
  21986. },
  21987. {
  21988. name: "Macro",
  21989. height: math.unit(22, "meters"),
  21990. default: true
  21991. },
  21992. ]
  21993. ))
  21994. characterMakers.push(() => makeCharacter(
  21995. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21996. {
  21997. front: {
  21998. height: math.unit(5 + 4 / 12, "feet"),
  21999. weight: math.unit(120, "lb"),
  22000. name: "Front",
  22001. image: {
  22002. source: "./media/characters/rory/front.svg",
  22003. extra: 589 / 556,
  22004. bottom: 45.7 / 635.76
  22005. }
  22006. },
  22007. frontNude: {
  22008. height: math.unit(5 + 4 / 12, "feet"),
  22009. weight: math.unit(120, "lb"),
  22010. name: "Front (Nude)",
  22011. image: {
  22012. source: "./media/characters/rory/front-nude.svg",
  22013. extra: 589 / 556,
  22014. bottom: 45.7 / 635.76
  22015. }
  22016. },
  22017. side: {
  22018. height: math.unit(5 + 4 / 12, "feet"),
  22019. weight: math.unit(120, "lb"),
  22020. name: "Side",
  22021. image: {
  22022. source: "./media/characters/rory/side.svg",
  22023. extra: 597 / 564,
  22024. bottom: 55 / 653
  22025. }
  22026. },
  22027. back: {
  22028. height: math.unit(5 + 4 / 12, "feet"),
  22029. weight: math.unit(120, "lb"),
  22030. name: "Back",
  22031. image: {
  22032. source: "./media/characters/rory/back.svg",
  22033. extra: 620 / 585,
  22034. bottom: 8.86 / 630.43
  22035. }
  22036. },
  22037. dick: {
  22038. height: math.unit(0.86, "feet"),
  22039. name: "Dick",
  22040. image: {
  22041. source: "./media/characters/rory/dick.svg"
  22042. }
  22043. },
  22044. },
  22045. [
  22046. {
  22047. name: "Normal",
  22048. height: math.unit(5 + 4 / 12, "feet"),
  22049. default: true
  22050. },
  22051. {
  22052. name: "Macro",
  22053. height: math.unit(100, "feet")
  22054. },
  22055. {
  22056. name: "Macro+",
  22057. height: math.unit(140, "feet")
  22058. },
  22059. {
  22060. name: "Macro++",
  22061. height: math.unit(300, "feet")
  22062. },
  22063. ]
  22064. ))
  22065. characterMakers.push(() => makeCharacter(
  22066. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22067. {
  22068. front: {
  22069. height: math.unit(5 + 9 / 12, "feet"),
  22070. weight: math.unit(190, "lb"),
  22071. name: "Front",
  22072. image: {
  22073. source: "./media/characters/sprisk/front.svg",
  22074. extra: 1225 / 1180,
  22075. bottom: 42.7 / 1266.4
  22076. }
  22077. },
  22078. frontNsfw: {
  22079. height: math.unit(5 + 9 / 12, "feet"),
  22080. weight: math.unit(190, "lb"),
  22081. name: "Front (NSFW)",
  22082. image: {
  22083. source: "./media/characters/sprisk/front-nsfw.svg",
  22084. extra: 1225 / 1180,
  22085. bottom: 42.7 / 1266.4
  22086. }
  22087. },
  22088. back: {
  22089. height: math.unit(5 + 9 / 12, "feet"),
  22090. weight: math.unit(190, "lb"),
  22091. name: "Back",
  22092. image: {
  22093. source: "./media/characters/sprisk/back.svg",
  22094. extra: 1247 / 1200,
  22095. bottom: 5.6 / 1253.04
  22096. }
  22097. },
  22098. },
  22099. [
  22100. {
  22101. name: "Tiny",
  22102. height: math.unit(2, "inches")
  22103. },
  22104. {
  22105. name: "Normal",
  22106. height: math.unit(5 + 9 / 12, "feet"),
  22107. default: true
  22108. },
  22109. {
  22110. name: "Mini Macro",
  22111. height: math.unit(18, "feet")
  22112. },
  22113. {
  22114. name: "Macro",
  22115. height: math.unit(100, "feet")
  22116. },
  22117. {
  22118. name: "MACRO",
  22119. height: math.unit(50, "miles")
  22120. },
  22121. {
  22122. name: "M A C R O",
  22123. height: math.unit(300, "miles")
  22124. },
  22125. ]
  22126. ))
  22127. characterMakers.push(() => makeCharacter(
  22128. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22129. {
  22130. side: {
  22131. height: math.unit(15.6, "meters"),
  22132. weight: math.unit(700000, "kg"),
  22133. name: "Side",
  22134. image: {
  22135. source: "./media/characters/bunsen/side.svg",
  22136. extra: 1644 / 358
  22137. }
  22138. },
  22139. foot: {
  22140. height: math.unit(1.611 * 1644 / 358, "meter"),
  22141. name: "Foot",
  22142. image: {
  22143. source: "./media/characters/bunsen/foot.svg"
  22144. }
  22145. },
  22146. },
  22147. [
  22148. {
  22149. name: "Small",
  22150. height: math.unit(10, "feet")
  22151. },
  22152. {
  22153. name: "Normal",
  22154. height: math.unit(15.6, "meters"),
  22155. default: true
  22156. },
  22157. ]
  22158. ))
  22159. characterMakers.push(() => makeCharacter(
  22160. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22161. {
  22162. front: {
  22163. height: math.unit(4 + 11 / 12, "feet"),
  22164. weight: math.unit(140, "lb"),
  22165. name: "Front",
  22166. image: {
  22167. source: "./media/characters/sesh/front.svg",
  22168. extra: 3420 / 3231,
  22169. bottom: 72 / 3949.5
  22170. }
  22171. },
  22172. },
  22173. [
  22174. {
  22175. name: "Normal",
  22176. height: math.unit(4 + 11 / 12, "feet")
  22177. },
  22178. {
  22179. name: "Grown",
  22180. height: math.unit(15, "feet"),
  22181. default: true
  22182. },
  22183. {
  22184. name: "Macro",
  22185. height: math.unit(1500, "feet")
  22186. },
  22187. {
  22188. name: "Megamacro",
  22189. height: math.unit(30, "miles")
  22190. },
  22191. {
  22192. name: "Continental",
  22193. height: math.unit(3000, "miles")
  22194. },
  22195. {
  22196. name: "Gravity Mass",
  22197. height: math.unit(300000, "miles")
  22198. },
  22199. {
  22200. name: "Planet Buster",
  22201. height: math.unit(30000000, "miles")
  22202. },
  22203. {
  22204. name: "Big",
  22205. height: math.unit(3000000000, "miles")
  22206. },
  22207. ]
  22208. ))
  22209. characterMakers.push(() => makeCharacter(
  22210. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22211. {
  22212. front: {
  22213. height: math.unit(9, "feet"),
  22214. weight: math.unit(350, "lb"),
  22215. name: "Front",
  22216. image: {
  22217. source: "./media/characters/pepper/front.svg",
  22218. extra: 1448 / 1312,
  22219. bottom: 9.4 / 1457.88
  22220. }
  22221. },
  22222. back: {
  22223. height: math.unit(9, "feet"),
  22224. weight: math.unit(350, "lb"),
  22225. name: "Back",
  22226. image: {
  22227. source: "./media/characters/pepper/back.svg",
  22228. extra: 1423 / 1300,
  22229. bottom: 4.6 / 1429
  22230. }
  22231. },
  22232. maw: {
  22233. height: math.unit(0.932, "feet"),
  22234. name: "Maw",
  22235. image: {
  22236. source: "./media/characters/pepper/maw.svg"
  22237. }
  22238. },
  22239. },
  22240. [
  22241. {
  22242. name: "Normal",
  22243. height: math.unit(9, "feet"),
  22244. default: true
  22245. },
  22246. ]
  22247. ))
  22248. characterMakers.push(() => makeCharacter(
  22249. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22250. {
  22251. front: {
  22252. height: math.unit(6, "feet"),
  22253. weight: math.unit(150, "lb"),
  22254. name: "Front",
  22255. image: {
  22256. source: "./media/characters/maelstrom/front.svg",
  22257. extra: 2100 / 1883,
  22258. bottom: 94 / 2196.7
  22259. }
  22260. },
  22261. },
  22262. [
  22263. {
  22264. name: "Less Kaiju",
  22265. height: math.unit(200, "feet")
  22266. },
  22267. {
  22268. name: "Kaiju",
  22269. height: math.unit(400, "feet"),
  22270. default: true
  22271. },
  22272. {
  22273. name: "Kaiju-er",
  22274. height: math.unit(600, "feet")
  22275. },
  22276. ]
  22277. ))
  22278. characterMakers.push(() => makeCharacter(
  22279. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22280. {
  22281. front: {
  22282. height: math.unit(6 + 5 / 12, "feet"),
  22283. weight: math.unit(180, "lb"),
  22284. name: "Front",
  22285. image: {
  22286. source: "./media/characters/lexir/front.svg",
  22287. extra: 180 / 172,
  22288. bottom: 12 / 192
  22289. }
  22290. },
  22291. back: {
  22292. height: math.unit(6 + 5 / 12, "feet"),
  22293. weight: math.unit(180, "lb"),
  22294. name: "Back",
  22295. image: {
  22296. source: "./media/characters/lexir/back.svg",
  22297. extra: 183.84 / 175.5,
  22298. bottom: 3.1 / 187
  22299. }
  22300. },
  22301. },
  22302. [
  22303. {
  22304. name: "Very Smal",
  22305. height: math.unit(1, "nm")
  22306. },
  22307. {
  22308. name: "Normal",
  22309. height: math.unit(6 + 5 / 12, "feet"),
  22310. default: true
  22311. },
  22312. {
  22313. name: "Macro",
  22314. height: math.unit(1, "mile")
  22315. },
  22316. {
  22317. name: "Megamacro",
  22318. height: math.unit(50, "miles")
  22319. },
  22320. ]
  22321. ))
  22322. characterMakers.push(() => makeCharacter(
  22323. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22324. {
  22325. front: {
  22326. height: math.unit(1.5, "meters"),
  22327. weight: math.unit(100, "lb"),
  22328. name: "Front",
  22329. image: {
  22330. source: "./media/characters/maksio/front.svg",
  22331. extra: 1549 / 1531,
  22332. bottom: 123.7 / 1674.5429
  22333. }
  22334. },
  22335. back: {
  22336. height: math.unit(1.5, "meters"),
  22337. weight: math.unit(100, "lb"),
  22338. name: "Back",
  22339. image: {
  22340. source: "./media/characters/maksio/back.svg",
  22341. extra: 1541 / 1509,
  22342. bottom: 97 / 1639
  22343. }
  22344. },
  22345. hand: {
  22346. height: math.unit(0.621, "feet"),
  22347. name: "Hand",
  22348. image: {
  22349. source: "./media/characters/maksio/hand.svg"
  22350. }
  22351. },
  22352. foot: {
  22353. height: math.unit(1.611, "feet"),
  22354. name: "Foot",
  22355. image: {
  22356. source: "./media/characters/maksio/foot.svg"
  22357. }
  22358. },
  22359. },
  22360. [
  22361. {
  22362. name: "Shrunken",
  22363. height: math.unit(10, "cm")
  22364. },
  22365. {
  22366. name: "Normal",
  22367. height: math.unit(150, "cm"),
  22368. default: true
  22369. },
  22370. ]
  22371. ))
  22372. characterMakers.push(() => makeCharacter(
  22373. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22374. {
  22375. front: {
  22376. height: math.unit(100, "feet"),
  22377. name: "Front",
  22378. image: {
  22379. source: "./media/characters/erza-bear/front.svg",
  22380. extra: 2449 / 2390,
  22381. bottom: 46 / 2494
  22382. }
  22383. },
  22384. back: {
  22385. height: math.unit(100, "feet"),
  22386. name: "Back",
  22387. image: {
  22388. source: "./media/characters/erza-bear/back.svg",
  22389. extra: 2489 / 2430,
  22390. bottom: 85.4 / 2480
  22391. }
  22392. },
  22393. tail: {
  22394. height: math.unit(42, "feet"),
  22395. name: "Tail",
  22396. image: {
  22397. source: "./media/characters/erza-bear/tail.svg"
  22398. }
  22399. },
  22400. tongue: {
  22401. height: math.unit(8, "feet"),
  22402. name: "Tongue",
  22403. image: {
  22404. source: "./media/characters/erza-bear/tongue.svg"
  22405. }
  22406. },
  22407. dick: {
  22408. height: math.unit(10.5, "feet"),
  22409. name: "Dick",
  22410. image: {
  22411. source: "./media/characters/erza-bear/dick.svg"
  22412. }
  22413. },
  22414. dickVertical: {
  22415. height: math.unit(16.9, "feet"),
  22416. name: "Dick (Vertical)",
  22417. image: {
  22418. source: "./media/characters/erza-bear/dick-vertical.svg"
  22419. }
  22420. },
  22421. },
  22422. [
  22423. {
  22424. name: "Macro",
  22425. height: math.unit(100, "feet"),
  22426. default: true
  22427. },
  22428. ]
  22429. ))
  22430. characterMakers.push(() => makeCharacter(
  22431. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22432. {
  22433. front: {
  22434. height: math.unit(172, "cm"),
  22435. weight: math.unit(73, "kg"),
  22436. name: "Front",
  22437. image: {
  22438. source: "./media/characters/violet-flor/front.svg",
  22439. extra: 1530 / 1442,
  22440. bottom: 61.9 / 1588.8
  22441. }
  22442. },
  22443. back: {
  22444. height: math.unit(180, "cm"),
  22445. weight: math.unit(73, "kg"),
  22446. name: "Back",
  22447. image: {
  22448. source: "./media/characters/violet-flor/back.svg",
  22449. extra: 1692 / 1630,
  22450. bottom: 20 / 1712
  22451. }
  22452. },
  22453. },
  22454. [
  22455. {
  22456. name: "Normal",
  22457. height: math.unit(172, "cm"),
  22458. default: true
  22459. },
  22460. ]
  22461. ))
  22462. characterMakers.push(() => makeCharacter(
  22463. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22464. {
  22465. front: {
  22466. height: math.unit(6, "feet"),
  22467. weight: math.unit(220, "lb"),
  22468. name: "Front",
  22469. image: {
  22470. source: "./media/characters/lynn-rhea/front.svg",
  22471. extra: 310 / 273
  22472. }
  22473. },
  22474. back: {
  22475. height: math.unit(6, "feet"),
  22476. weight: math.unit(220, "lb"),
  22477. name: "Back",
  22478. image: {
  22479. source: "./media/characters/lynn-rhea/back.svg",
  22480. extra: 310 / 273
  22481. }
  22482. },
  22483. dicks: {
  22484. height: math.unit(0.9, "feet"),
  22485. name: "Dicks",
  22486. image: {
  22487. source: "./media/characters/lynn-rhea/dicks.svg"
  22488. }
  22489. },
  22490. slit: {
  22491. height: math.unit(0.4, "feet"),
  22492. name: "Slit",
  22493. image: {
  22494. source: "./media/characters/lynn-rhea/slit.svg"
  22495. }
  22496. },
  22497. },
  22498. [
  22499. {
  22500. name: "Micro",
  22501. height: math.unit(1, "inch")
  22502. },
  22503. {
  22504. name: "Macro",
  22505. height: math.unit(60, "feet"),
  22506. default: true
  22507. },
  22508. {
  22509. name: "Megamacro",
  22510. height: math.unit(2, "miles")
  22511. },
  22512. {
  22513. name: "Gigamacro",
  22514. height: math.unit(3, "earths")
  22515. },
  22516. {
  22517. name: "Galactic",
  22518. height: math.unit(0.8, "galaxies")
  22519. },
  22520. ]
  22521. ))
  22522. characterMakers.push(() => makeCharacter(
  22523. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22524. {
  22525. front: {
  22526. height: math.unit(1600, "feet"),
  22527. weight: math.unit(85758785169, "kg"),
  22528. name: "Front",
  22529. image: {
  22530. source: "./media/characters/valathos/front.svg",
  22531. extra: 1451 / 1339
  22532. }
  22533. },
  22534. },
  22535. [
  22536. {
  22537. name: "Macro",
  22538. height: math.unit(1600, "feet"),
  22539. default: true
  22540. },
  22541. ]
  22542. ))
  22543. characterMakers.push(() => makeCharacter(
  22544. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22545. {
  22546. front: {
  22547. height: math.unit(7 + 5 / 12, "feet"),
  22548. weight: math.unit(300, "lb"),
  22549. name: "Front",
  22550. image: {
  22551. source: "./media/characters/azula/front.svg",
  22552. extra: 3208 / 2880,
  22553. bottom: 80.2 / 3277
  22554. }
  22555. },
  22556. back: {
  22557. height: math.unit(7 + 5 / 12, "feet"),
  22558. weight: math.unit(300, "lb"),
  22559. name: "Back",
  22560. image: {
  22561. source: "./media/characters/azula/back.svg",
  22562. extra: 3169 / 2822,
  22563. bottom: 150.6 / 3321
  22564. }
  22565. },
  22566. },
  22567. [
  22568. {
  22569. name: "Normal",
  22570. height: math.unit(7 + 5 / 12, "feet"),
  22571. default: true
  22572. },
  22573. {
  22574. name: "Big",
  22575. height: math.unit(20, "feet")
  22576. },
  22577. ]
  22578. ))
  22579. characterMakers.push(() => makeCharacter(
  22580. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22581. {
  22582. front: {
  22583. height: math.unit(5 + 1 / 12, "feet"),
  22584. weight: math.unit(110, "lb"),
  22585. name: "Front",
  22586. image: {
  22587. source: "./media/characters/rupert/front.svg",
  22588. extra: 1549 / 1495,
  22589. bottom: 54.2 / 1604.4
  22590. }
  22591. },
  22592. },
  22593. [
  22594. {
  22595. name: "Normal",
  22596. height: math.unit(5 + 1 / 12, "feet"),
  22597. default: true
  22598. },
  22599. ]
  22600. ))
  22601. characterMakers.push(() => makeCharacter(
  22602. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22603. {
  22604. front: {
  22605. height: math.unit(8 + 4 / 12, "feet"),
  22606. weight: math.unit(350, "lb"),
  22607. name: "Front",
  22608. image: {
  22609. source: "./media/characters/sheera-castellar/front.svg",
  22610. extra: 1957 / 1894,
  22611. bottom: 26.97 / 1975.017
  22612. }
  22613. },
  22614. side: {
  22615. height: math.unit(8 + 4 / 12, "feet"),
  22616. weight: math.unit(350, "lb"),
  22617. name: "Side",
  22618. image: {
  22619. source: "./media/characters/sheera-castellar/side.svg",
  22620. extra: 1957 / 1894
  22621. }
  22622. },
  22623. back: {
  22624. height: math.unit(8 + 4 / 12, "feet"),
  22625. weight: math.unit(350, "lb"),
  22626. name: "Back",
  22627. image: {
  22628. source: "./media/characters/sheera-castellar/back.svg",
  22629. extra: 1957 / 1894
  22630. }
  22631. },
  22632. angled: {
  22633. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22634. weight: math.unit(350, "lb"),
  22635. name: "Angled",
  22636. image: {
  22637. source: "./media/characters/sheera-castellar/angled.svg",
  22638. extra: 1807 / 1707,
  22639. bottom: 68 / 1875
  22640. }
  22641. },
  22642. genitals: {
  22643. height: math.unit(2.2, "feet"),
  22644. name: "Genitals",
  22645. image: {
  22646. source: "./media/characters/sheera-castellar/genitals.svg"
  22647. }
  22648. },
  22649. taur: {
  22650. height: math.unit(10 + 6/12, "feet"),
  22651. name: "Taur",
  22652. image: {
  22653. source: "./media/characters/sheera-castellar/taur.svg",
  22654. extra: 2017/1909,
  22655. bottom: 185/2202
  22656. }
  22657. },
  22658. },
  22659. [
  22660. {
  22661. name: "Normal",
  22662. height: math.unit(8 + 4 / 12, "feet")
  22663. },
  22664. {
  22665. name: "Macro",
  22666. height: math.unit(150, "feet"),
  22667. default: true
  22668. },
  22669. {
  22670. name: "Macro+",
  22671. height: math.unit(800, "feet")
  22672. },
  22673. ]
  22674. ))
  22675. characterMakers.push(() => makeCharacter(
  22676. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22677. {
  22678. front: {
  22679. height: math.unit(6, "feet"),
  22680. weight: math.unit(150, "lb"),
  22681. name: "Front",
  22682. image: {
  22683. source: "./media/characters/jaipur/front.svg",
  22684. extra: 3860 / 3731,
  22685. bottom: 287 / 4140
  22686. }
  22687. },
  22688. back: {
  22689. height: math.unit(6, "feet"),
  22690. weight: math.unit(150, "lb"),
  22691. name: "Back",
  22692. image: {
  22693. source: "./media/characters/jaipur/back.svg",
  22694. extra: 4060 / 3930,
  22695. bottom: 151 / 4200
  22696. }
  22697. },
  22698. },
  22699. [
  22700. {
  22701. name: "Normal",
  22702. height: math.unit(1.85, "meters"),
  22703. default: true
  22704. },
  22705. {
  22706. name: "Macro",
  22707. height: math.unit(150, "meters")
  22708. },
  22709. {
  22710. name: "Macro+",
  22711. height: math.unit(0.5, "miles")
  22712. },
  22713. {
  22714. name: "Macro++",
  22715. height: math.unit(2.5, "miles")
  22716. },
  22717. {
  22718. name: "Macro+++",
  22719. height: math.unit(12, "miles")
  22720. },
  22721. {
  22722. name: "Macro++++",
  22723. height: math.unit(120, "miles")
  22724. },
  22725. {
  22726. name: "Macro+++++",
  22727. height: math.unit(1200, "miles")
  22728. },
  22729. ]
  22730. ))
  22731. characterMakers.push(() => makeCharacter(
  22732. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22733. {
  22734. front: {
  22735. height: math.unit(6, "feet"),
  22736. weight: math.unit(150, "lb"),
  22737. name: "Front",
  22738. image: {
  22739. source: "./media/characters/sheila-wolf/front.svg",
  22740. extra: 1931 / 1808,
  22741. bottom: 29.5 / 1960
  22742. }
  22743. },
  22744. dick: {
  22745. height: math.unit(1.464, "feet"),
  22746. name: "Dick",
  22747. image: {
  22748. source: "./media/characters/sheila-wolf/dick.svg"
  22749. }
  22750. },
  22751. muzzle: {
  22752. height: math.unit(0.513, "feet"),
  22753. name: "Muzzle",
  22754. image: {
  22755. source: "./media/characters/sheila-wolf/muzzle.svg"
  22756. }
  22757. },
  22758. },
  22759. [
  22760. {
  22761. name: "Macro",
  22762. height: math.unit(70, "feet"),
  22763. default: true
  22764. },
  22765. ]
  22766. ))
  22767. characterMakers.push(() => makeCharacter(
  22768. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22769. {
  22770. front: {
  22771. height: math.unit(32, "meters"),
  22772. weight: math.unit(300000, "kg"),
  22773. name: "Front",
  22774. image: {
  22775. source: "./media/characters/almor/front.svg",
  22776. extra: 1408 / 1322,
  22777. bottom: 94.6 / 1506.5
  22778. }
  22779. },
  22780. },
  22781. [
  22782. {
  22783. name: "Macro",
  22784. height: math.unit(32, "meters"),
  22785. default: true
  22786. },
  22787. ]
  22788. ))
  22789. characterMakers.push(() => makeCharacter(
  22790. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22791. {
  22792. front: {
  22793. height: math.unit(7, "feet"),
  22794. weight: math.unit(200, "lb"),
  22795. name: "Front",
  22796. image: {
  22797. source: "./media/characters/silver/front.svg",
  22798. extra: 472.1 / 450.5,
  22799. bottom: 26.5 / 499.424
  22800. }
  22801. },
  22802. },
  22803. [
  22804. {
  22805. name: "Normal",
  22806. height: math.unit(7, "feet"),
  22807. default: true
  22808. },
  22809. {
  22810. name: "Macro",
  22811. height: math.unit(800, "feet")
  22812. },
  22813. {
  22814. name: "Megamacro",
  22815. height: math.unit(250, "miles")
  22816. },
  22817. ]
  22818. ))
  22819. characterMakers.push(() => makeCharacter(
  22820. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22821. {
  22822. front: {
  22823. height: math.unit(6, "feet"),
  22824. weight: math.unit(150, "lb"),
  22825. name: "Front",
  22826. image: {
  22827. source: "./media/characters/pliskin/front.svg",
  22828. extra: 1469 / 1359,
  22829. bottom: 70 / 1540
  22830. }
  22831. },
  22832. },
  22833. [
  22834. {
  22835. name: "Micro",
  22836. height: math.unit(3, "inches")
  22837. },
  22838. {
  22839. name: "Normal",
  22840. height: math.unit(5 + 11 / 12, "feet"),
  22841. default: true
  22842. },
  22843. {
  22844. name: "Macro",
  22845. height: math.unit(120, "feet")
  22846. },
  22847. ]
  22848. ))
  22849. characterMakers.push(() => makeCharacter(
  22850. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22851. {
  22852. front: {
  22853. height: math.unit(6, "feet"),
  22854. weight: math.unit(150, "lb"),
  22855. name: "Front",
  22856. image: {
  22857. source: "./media/characters/sammy/front.svg",
  22858. extra: 1193 / 1089,
  22859. bottom: 30.5 / 1226
  22860. }
  22861. },
  22862. },
  22863. [
  22864. {
  22865. name: "Macro",
  22866. height: math.unit(1700, "feet"),
  22867. default: true
  22868. },
  22869. {
  22870. name: "Examacro",
  22871. height: math.unit(2.5e9, "lightyears")
  22872. },
  22873. ]
  22874. ))
  22875. characterMakers.push(() => makeCharacter(
  22876. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22877. {
  22878. front: {
  22879. height: math.unit(21, "meters"),
  22880. weight: math.unit(12, "tonnes"),
  22881. name: "Front",
  22882. image: {
  22883. source: "./media/characters/kuru/front.svg",
  22884. extra: 4301 / 3785,
  22885. bottom: 371.3 / 4691
  22886. }
  22887. },
  22888. },
  22889. [
  22890. {
  22891. name: "Macro",
  22892. height: math.unit(21, "meters"),
  22893. default: true
  22894. },
  22895. ]
  22896. ))
  22897. characterMakers.push(() => makeCharacter(
  22898. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22899. {
  22900. front: {
  22901. height: math.unit(23, "meters"),
  22902. weight: math.unit(12.2, "tonnes"),
  22903. name: "Front",
  22904. image: {
  22905. source: "./media/characters/rakka/front.svg",
  22906. extra: 4670 / 4169,
  22907. bottom: 301 / 4968.7
  22908. }
  22909. },
  22910. },
  22911. [
  22912. {
  22913. name: "Macro",
  22914. height: math.unit(23, "meters"),
  22915. default: true
  22916. },
  22917. ]
  22918. ))
  22919. characterMakers.push(() => makeCharacter(
  22920. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22921. {
  22922. front: {
  22923. height: math.unit(6, "feet"),
  22924. weight: math.unit(150, "lb"),
  22925. name: "Front",
  22926. image: {
  22927. source: "./media/characters/rhys-feline/front.svg",
  22928. extra: 2488 / 2308,
  22929. bottom: 35.67 / 2519.19
  22930. }
  22931. },
  22932. },
  22933. [
  22934. {
  22935. name: "Really Small",
  22936. height: math.unit(1, "nm")
  22937. },
  22938. {
  22939. name: "Micro",
  22940. height: math.unit(4, "inches")
  22941. },
  22942. {
  22943. name: "Normal",
  22944. height: math.unit(4 + 10 / 12, "feet"),
  22945. default: true
  22946. },
  22947. {
  22948. name: "Macro",
  22949. height: math.unit(100, "feet")
  22950. },
  22951. {
  22952. name: "Megamacto",
  22953. height: math.unit(50, "miles")
  22954. },
  22955. ]
  22956. ))
  22957. characterMakers.push(() => makeCharacter(
  22958. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22959. {
  22960. side: {
  22961. height: math.unit(30, "feet"),
  22962. weight: math.unit(35000, "kg"),
  22963. name: "Side",
  22964. image: {
  22965. source: "./media/characters/alydar/side.svg",
  22966. extra: 234 / 222,
  22967. bottom: 6.5 / 241
  22968. }
  22969. },
  22970. front: {
  22971. height: math.unit(30, "feet"),
  22972. weight: math.unit(35000, "kg"),
  22973. name: "Front",
  22974. image: {
  22975. source: "./media/characters/alydar/front.svg",
  22976. extra: 223.37 / 210.2,
  22977. bottom: 22.3 / 246.76
  22978. }
  22979. },
  22980. top: {
  22981. height: math.unit(64.54, "feet"),
  22982. weight: math.unit(35000, "kg"),
  22983. name: "Top",
  22984. image: {
  22985. source: "./media/characters/alydar/top.svg"
  22986. }
  22987. },
  22988. anthro: {
  22989. height: math.unit(30, "feet"),
  22990. weight: math.unit(9000, "kg"),
  22991. name: "Anthro",
  22992. image: {
  22993. source: "./media/characters/alydar/anthro.svg",
  22994. extra: 432 / 421,
  22995. bottom: 7.18 / 440
  22996. }
  22997. },
  22998. maw: {
  22999. height: math.unit(11.693, "feet"),
  23000. name: "Maw",
  23001. image: {
  23002. source: "./media/characters/alydar/maw.svg"
  23003. }
  23004. },
  23005. head: {
  23006. height: math.unit(11.693, "feet"),
  23007. name: "Head",
  23008. image: {
  23009. source: "./media/characters/alydar/head.svg"
  23010. }
  23011. },
  23012. headAlt: {
  23013. height: math.unit(12.861, "feet"),
  23014. name: "Head (Alt)",
  23015. image: {
  23016. source: "./media/characters/alydar/head-alt.svg"
  23017. }
  23018. },
  23019. wing: {
  23020. height: math.unit(20.712, "feet"),
  23021. name: "Wing",
  23022. image: {
  23023. source: "./media/characters/alydar/wing.svg"
  23024. }
  23025. },
  23026. wingFeather: {
  23027. height: math.unit(9.662, "feet"),
  23028. name: "Wing Feather",
  23029. image: {
  23030. source: "./media/characters/alydar/wing-feather.svg"
  23031. }
  23032. },
  23033. countourFeather: {
  23034. height: math.unit(4.154, "feet"),
  23035. name: "Contour Feather",
  23036. image: {
  23037. source: "./media/characters/alydar/contour-feather.svg"
  23038. }
  23039. },
  23040. },
  23041. [
  23042. {
  23043. name: "Diplomatic",
  23044. height: math.unit(13, "feet"),
  23045. default: true
  23046. },
  23047. {
  23048. name: "Small",
  23049. height: math.unit(30, "feet")
  23050. },
  23051. {
  23052. name: "Normal",
  23053. height: math.unit(95, "feet"),
  23054. default: true
  23055. },
  23056. {
  23057. name: "Large",
  23058. height: math.unit(285, "feet")
  23059. },
  23060. {
  23061. name: "Incomprehensible",
  23062. height: math.unit(450, "megameters")
  23063. },
  23064. ]
  23065. ))
  23066. characterMakers.push(() => makeCharacter(
  23067. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23068. {
  23069. side: {
  23070. height: math.unit(11, "feet"),
  23071. weight: math.unit(1750, "kg"),
  23072. name: "Side",
  23073. image: {
  23074. source: "./media/characters/selicia/side.svg",
  23075. extra: 440 / 396,
  23076. bottom: 24.8 / 465.979
  23077. }
  23078. },
  23079. maw: {
  23080. height: math.unit(4.665, "feet"),
  23081. name: "Maw",
  23082. image: {
  23083. source: "./media/characters/selicia/maw.svg"
  23084. }
  23085. },
  23086. },
  23087. [
  23088. {
  23089. name: "Normal",
  23090. height: math.unit(11, "feet"),
  23091. default: true
  23092. },
  23093. ]
  23094. ))
  23095. characterMakers.push(() => makeCharacter(
  23096. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23097. {
  23098. side: {
  23099. height: math.unit(2 + 6 / 12, "feet"),
  23100. weight: math.unit(30, "lb"),
  23101. name: "Side",
  23102. image: {
  23103. source: "./media/characters/layla/side.svg",
  23104. extra: 244 / 188,
  23105. bottom: 18.2 / 262.1
  23106. }
  23107. },
  23108. back: {
  23109. height: math.unit(2 + 6 / 12, "feet"),
  23110. weight: math.unit(30, "lb"),
  23111. name: "Back",
  23112. image: {
  23113. source: "./media/characters/layla/back.svg",
  23114. extra: 308 / 241.5,
  23115. bottom: 8.9 / 316.8
  23116. }
  23117. },
  23118. cumming: {
  23119. height: math.unit(2 + 6 / 12, "feet"),
  23120. weight: math.unit(30, "lb"),
  23121. name: "Cumming",
  23122. image: {
  23123. source: "./media/characters/layla/cumming.svg",
  23124. extra: 342 / 279,
  23125. bottom: 595 / 938
  23126. }
  23127. },
  23128. dickFlaccid: {
  23129. height: math.unit(2.595, "feet"),
  23130. name: "Flaccid Genitals",
  23131. image: {
  23132. source: "./media/characters/layla/dick-flaccid.svg"
  23133. }
  23134. },
  23135. dickErect: {
  23136. height: math.unit(2.359, "feet"),
  23137. name: "Erect Genitals",
  23138. image: {
  23139. source: "./media/characters/layla/dick-erect.svg"
  23140. }
  23141. },
  23142. },
  23143. [
  23144. {
  23145. name: "Micro",
  23146. height: math.unit(1, "inch")
  23147. },
  23148. {
  23149. name: "Small",
  23150. height: math.unit(1, "foot")
  23151. },
  23152. {
  23153. name: "Normal",
  23154. height: math.unit(2 + 6 / 12, "feet"),
  23155. default: true
  23156. },
  23157. {
  23158. name: "Macro",
  23159. height: math.unit(200, "feet")
  23160. },
  23161. {
  23162. name: "Megamacro",
  23163. height: math.unit(1000, "miles")
  23164. },
  23165. {
  23166. name: "Planetary",
  23167. height: math.unit(8000, "miles")
  23168. },
  23169. {
  23170. name: "True Layla",
  23171. height: math.unit(200000 * 7, "multiverses")
  23172. },
  23173. ]
  23174. ))
  23175. characterMakers.push(() => makeCharacter(
  23176. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23177. {
  23178. back: {
  23179. height: math.unit(10.5, "feet"),
  23180. weight: math.unit(800, "lb"),
  23181. name: "Back",
  23182. image: {
  23183. source: "./media/characters/knox/back.svg",
  23184. extra: 1486 / 1089,
  23185. bottom: 107 / 1601.4
  23186. }
  23187. },
  23188. side: {
  23189. height: math.unit(10.5, "feet"),
  23190. weight: math.unit(800, "lb"),
  23191. name: "Side",
  23192. image: {
  23193. source: "./media/characters/knox/side.svg",
  23194. extra: 244 / 218,
  23195. bottom: 14 / 260
  23196. }
  23197. },
  23198. },
  23199. [
  23200. {
  23201. name: "Compact",
  23202. height: math.unit(10.5, "feet"),
  23203. default: true
  23204. },
  23205. {
  23206. name: "Dynamax",
  23207. height: math.unit(210, "feet")
  23208. },
  23209. {
  23210. name: "Full Macro",
  23211. height: math.unit(850, "feet")
  23212. },
  23213. ]
  23214. ))
  23215. characterMakers.push(() => makeCharacter(
  23216. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23217. {
  23218. front: {
  23219. height: math.unit(6, "feet"),
  23220. weight: math.unit(152, "lb"),
  23221. name: "Front",
  23222. image: {
  23223. source: "./media/characters/shin-pikachu/front.svg",
  23224. extra: 1574 / 1480,
  23225. bottom: 53.3 / 1626
  23226. }
  23227. },
  23228. hand: {
  23229. height: math.unit(1.055, "feet"),
  23230. name: "Hand",
  23231. image: {
  23232. source: "./media/characters/shin-pikachu/hand.svg"
  23233. }
  23234. },
  23235. foot: {
  23236. height: math.unit(1.1, "feet"),
  23237. name: "Foot",
  23238. image: {
  23239. source: "./media/characters/shin-pikachu/foot.svg"
  23240. }
  23241. },
  23242. collar: {
  23243. height: math.unit(0.386, "feet"),
  23244. name: "Collar",
  23245. image: {
  23246. source: "./media/characters/shin-pikachu/collar.svg"
  23247. }
  23248. },
  23249. },
  23250. [
  23251. {
  23252. name: "Smallest",
  23253. height: math.unit(0.5, "inches")
  23254. },
  23255. {
  23256. name: "Micro",
  23257. height: math.unit(6, "inches")
  23258. },
  23259. {
  23260. name: "Normal",
  23261. height: math.unit(6, "feet"),
  23262. default: true
  23263. },
  23264. {
  23265. name: "Macro",
  23266. height: math.unit(150, "feet")
  23267. },
  23268. ]
  23269. ))
  23270. characterMakers.push(() => makeCharacter(
  23271. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23272. {
  23273. front: {
  23274. height: math.unit(28, "feet"),
  23275. weight: math.unit(10500, "lb"),
  23276. name: "Front",
  23277. image: {
  23278. source: "./media/characters/kayda/front.svg",
  23279. extra: 1536 / 1428,
  23280. bottom: 68.7 / 1603
  23281. }
  23282. },
  23283. back: {
  23284. height: math.unit(28, "feet"),
  23285. weight: math.unit(10500, "lb"),
  23286. name: "Back",
  23287. image: {
  23288. source: "./media/characters/kayda/back.svg",
  23289. extra: 1557 / 1464,
  23290. bottom: 39.5 / 1597.49
  23291. }
  23292. },
  23293. dick: {
  23294. height: math.unit(3.858, "feet"),
  23295. name: "Dick",
  23296. image: {
  23297. source: "./media/characters/kayda/dick.svg"
  23298. }
  23299. },
  23300. },
  23301. [
  23302. {
  23303. name: "Macro",
  23304. height: math.unit(28, "feet"),
  23305. default: true
  23306. },
  23307. ]
  23308. ))
  23309. characterMakers.push(() => makeCharacter(
  23310. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23311. {
  23312. front: {
  23313. height: math.unit(10 + 11 / 12, "feet"),
  23314. weight: math.unit(1400, "lb"),
  23315. name: "Front",
  23316. image: {
  23317. source: "./media/characters/brian/front.svg",
  23318. extra: 737 / 692,
  23319. bottom: 55.4 / 785
  23320. }
  23321. },
  23322. },
  23323. [
  23324. {
  23325. name: "Normal",
  23326. height: math.unit(10 + 11 / 12, "feet"),
  23327. default: true
  23328. },
  23329. ]
  23330. ))
  23331. characterMakers.push(() => makeCharacter(
  23332. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23333. {
  23334. front: {
  23335. height: math.unit(5 + 8 / 12, "feet"),
  23336. weight: math.unit(140, "lb"),
  23337. name: "Front",
  23338. image: {
  23339. source: "./media/characters/khemri/front.svg",
  23340. extra: 4780 / 4059,
  23341. bottom: 80.1 / 4859.25
  23342. }
  23343. },
  23344. },
  23345. [
  23346. {
  23347. name: "Micro",
  23348. height: math.unit(6, "inches")
  23349. },
  23350. {
  23351. name: "Normal",
  23352. height: math.unit(5 + 8 / 12, "feet"),
  23353. default: true
  23354. },
  23355. ]
  23356. ))
  23357. characterMakers.push(() => makeCharacter(
  23358. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23359. {
  23360. front: {
  23361. height: math.unit(13, "feet"),
  23362. weight: math.unit(1700, "lb"),
  23363. name: "Front",
  23364. image: {
  23365. source: "./media/characters/felix-braveheart/front.svg",
  23366. extra: 1222 / 1157,
  23367. bottom: 53.2 / 1280
  23368. }
  23369. },
  23370. back: {
  23371. height: math.unit(13, "feet"),
  23372. weight: math.unit(1700, "lb"),
  23373. name: "Back",
  23374. image: {
  23375. source: "./media/characters/felix-braveheart/back.svg",
  23376. extra: 1277 / 1203,
  23377. bottom: 50.2 / 1327
  23378. }
  23379. },
  23380. feral: {
  23381. height: math.unit(6, "feet"),
  23382. weight: math.unit(400, "lb"),
  23383. name: "Feral",
  23384. image: {
  23385. source: "./media/characters/felix-braveheart/feral.svg",
  23386. extra: 682 / 625,
  23387. bottom: 6.9 / 688
  23388. }
  23389. },
  23390. },
  23391. [
  23392. {
  23393. name: "Normal",
  23394. height: math.unit(13, "feet"),
  23395. default: true
  23396. },
  23397. ]
  23398. ))
  23399. characterMakers.push(() => makeCharacter(
  23400. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23401. {
  23402. side: {
  23403. height: math.unit(5 + 11 / 12, "feet"),
  23404. weight: math.unit(1400, "lb"),
  23405. name: "Side",
  23406. image: {
  23407. source: "./media/characters/shadow-blade/side.svg",
  23408. extra: 1726 / 1267,
  23409. bottom: 58.4 / 1785
  23410. }
  23411. },
  23412. },
  23413. [
  23414. {
  23415. name: "Normal",
  23416. height: math.unit(5 + 11 / 12, "feet"),
  23417. default: true
  23418. },
  23419. ]
  23420. ))
  23421. characterMakers.push(() => makeCharacter(
  23422. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23423. {
  23424. front: {
  23425. height: math.unit(1 + 6 / 12, "feet"),
  23426. weight: math.unit(25, "lb"),
  23427. name: "Front",
  23428. image: {
  23429. source: "./media/characters/karla-halldor/front.svg",
  23430. extra: 1459 / 1383,
  23431. bottom: 12 / 1472
  23432. }
  23433. },
  23434. },
  23435. [
  23436. {
  23437. name: "Normal",
  23438. height: math.unit(1 + 6 / 12, "feet"),
  23439. default: true
  23440. },
  23441. ]
  23442. ))
  23443. characterMakers.push(() => makeCharacter(
  23444. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23445. {
  23446. front: {
  23447. height: math.unit(6 + 2 / 12, "feet"),
  23448. weight: math.unit(160, "lb"),
  23449. name: "Front",
  23450. image: {
  23451. source: "./media/characters/ariam/front.svg",
  23452. extra: 714 / 617,
  23453. bottom: 23.4 / 737,
  23454. }
  23455. },
  23456. squatting: {
  23457. height: math.unit(4.1, "feet"),
  23458. weight: math.unit(160, "lb"),
  23459. name: "Squatting",
  23460. image: {
  23461. source: "./media/characters/ariam/squatting.svg",
  23462. extra: 2617 / 2112,
  23463. bottom: 61.2 / 2681,
  23464. }
  23465. },
  23466. },
  23467. [
  23468. {
  23469. name: "Normal",
  23470. height: math.unit(6 + 2 / 12, "feet"),
  23471. default: true
  23472. },
  23473. {
  23474. name: "Normal+",
  23475. height: math.unit(4, "meters")
  23476. },
  23477. {
  23478. name: "Macro",
  23479. height: math.unit(50, "meters")
  23480. },
  23481. {
  23482. name: "Macro+",
  23483. height: math.unit(100, "meters")
  23484. },
  23485. {
  23486. name: "Megamacro",
  23487. height: math.unit(20, "km")
  23488. },
  23489. ]
  23490. ))
  23491. characterMakers.push(() => makeCharacter(
  23492. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23493. {
  23494. front: {
  23495. height: math.unit(1.67, "meters"),
  23496. weight: math.unit(140, "lb"),
  23497. name: "Front",
  23498. image: {
  23499. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23500. extra: 438 / 410,
  23501. bottom: 0.75 / 439
  23502. }
  23503. },
  23504. },
  23505. [
  23506. {
  23507. name: "Shrunken",
  23508. height: math.unit(7.6, "cm")
  23509. },
  23510. {
  23511. name: "Human Scale",
  23512. height: math.unit(1.67, "meters")
  23513. },
  23514. {
  23515. name: "Wolxi Scale",
  23516. height: math.unit(36.7, "meters"),
  23517. default: true
  23518. },
  23519. ]
  23520. ))
  23521. characterMakers.push(() => makeCharacter(
  23522. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23523. {
  23524. front: {
  23525. height: math.unit(1.73, "meters"),
  23526. weight: math.unit(240, "lb"),
  23527. name: "Front",
  23528. image: {
  23529. source: "./media/characters/izue-two-mothers/front.svg",
  23530. extra: 469 / 437,
  23531. bottom: 1.24 / 470.6
  23532. }
  23533. },
  23534. },
  23535. [
  23536. {
  23537. name: "Shrunken",
  23538. height: math.unit(7.86, "cm")
  23539. },
  23540. {
  23541. name: "Human Scale",
  23542. height: math.unit(1.73, "meters")
  23543. },
  23544. {
  23545. name: "Wolxi Scale",
  23546. height: math.unit(38, "meters"),
  23547. default: true
  23548. },
  23549. ]
  23550. ))
  23551. characterMakers.push(() => makeCharacter(
  23552. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23553. {
  23554. front: {
  23555. height: math.unit(1.55, "meters"),
  23556. weight: math.unit(120, "lb"),
  23557. name: "Front",
  23558. image: {
  23559. source: "./media/characters/teeku-love-shack/front.svg",
  23560. extra: 387 / 362,
  23561. bottom: 1.51 / 388
  23562. }
  23563. },
  23564. },
  23565. [
  23566. {
  23567. name: "Shrunken",
  23568. height: math.unit(7, "cm")
  23569. },
  23570. {
  23571. name: "Human Scale",
  23572. height: math.unit(1.55, "meters")
  23573. },
  23574. {
  23575. name: "Wolxi Scale",
  23576. height: math.unit(34.1, "meters"),
  23577. default: true
  23578. },
  23579. ]
  23580. ))
  23581. characterMakers.push(() => makeCharacter(
  23582. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23583. {
  23584. front: {
  23585. height: math.unit(1.83, "meters"),
  23586. weight: math.unit(135, "lb"),
  23587. name: "Front",
  23588. image: {
  23589. source: "./media/characters/dejma-the-red/front.svg",
  23590. extra: 480 / 458,
  23591. bottom: 1.8 / 482
  23592. }
  23593. },
  23594. },
  23595. [
  23596. {
  23597. name: "Shrunken",
  23598. height: math.unit(8.3, "cm")
  23599. },
  23600. {
  23601. name: "Human Scale",
  23602. height: math.unit(1.83, "meters")
  23603. },
  23604. {
  23605. name: "Wolxi Scale",
  23606. height: math.unit(40, "meters"),
  23607. default: true
  23608. },
  23609. ]
  23610. ))
  23611. characterMakers.push(() => makeCharacter(
  23612. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23613. {
  23614. front: {
  23615. height: math.unit(1.78, "meters"),
  23616. weight: math.unit(65, "kg"),
  23617. name: "Front",
  23618. image: {
  23619. source: "./media/characters/aki/front.svg",
  23620. extra: 452 / 415
  23621. }
  23622. },
  23623. frontNsfw: {
  23624. height: math.unit(1.78, "meters"),
  23625. weight: math.unit(65, "kg"),
  23626. name: "Front (NSFW)",
  23627. image: {
  23628. source: "./media/characters/aki/front-nsfw.svg",
  23629. extra: 452 / 415
  23630. }
  23631. },
  23632. back: {
  23633. height: math.unit(1.78, "meters"),
  23634. weight: math.unit(65, "kg"),
  23635. name: "Back",
  23636. image: {
  23637. source: "./media/characters/aki/back.svg",
  23638. extra: 452 / 415
  23639. }
  23640. },
  23641. rump: {
  23642. height: math.unit(2.05, "feet"),
  23643. name: "Rump",
  23644. image: {
  23645. source: "./media/characters/aki/rump.svg"
  23646. }
  23647. },
  23648. dick: {
  23649. height: math.unit(0.95, "feet"),
  23650. name: "Dick",
  23651. image: {
  23652. source: "./media/characters/aki/dick.svg"
  23653. }
  23654. },
  23655. },
  23656. [
  23657. {
  23658. name: "Micro",
  23659. height: math.unit(15, "cm")
  23660. },
  23661. {
  23662. name: "Normal",
  23663. height: math.unit(178, "cm"),
  23664. default: true
  23665. },
  23666. {
  23667. name: "Macro",
  23668. height: math.unit(214, "m")
  23669. },
  23670. {
  23671. name: "Macro+",
  23672. height: math.unit(534, "m")
  23673. },
  23674. ]
  23675. ))
  23676. characterMakers.push(() => makeCharacter(
  23677. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23678. {
  23679. front: {
  23680. height: math.unit(5 + 5 / 12, "feet"),
  23681. weight: math.unit(120, "lb"),
  23682. name: "Front",
  23683. image: {
  23684. source: "./media/characters/ari/front.svg",
  23685. extra: 714.5 / 682,
  23686. bottom: 8 / 722.5
  23687. }
  23688. },
  23689. },
  23690. [
  23691. {
  23692. name: "Normal",
  23693. height: math.unit(5 + 5 / 12, "feet")
  23694. },
  23695. {
  23696. name: "Macro",
  23697. height: math.unit(100, "feet"),
  23698. default: true
  23699. },
  23700. {
  23701. name: "Megamacro",
  23702. height: math.unit(100, "miles")
  23703. },
  23704. {
  23705. name: "Gigamacro",
  23706. height: math.unit(80000, "miles")
  23707. },
  23708. ]
  23709. ))
  23710. characterMakers.push(() => makeCharacter(
  23711. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23712. {
  23713. side: {
  23714. height: math.unit(9, "feet"),
  23715. weight: math.unit(400, "kg"),
  23716. name: "Side",
  23717. image: {
  23718. source: "./media/characters/bolt/side.svg",
  23719. extra: 1126 / 896,
  23720. bottom: 60 / 1187.3,
  23721. }
  23722. },
  23723. },
  23724. [
  23725. {
  23726. name: "Micro",
  23727. height: math.unit(5, "inches")
  23728. },
  23729. {
  23730. name: "Normal",
  23731. height: math.unit(9, "feet"),
  23732. default: true
  23733. },
  23734. {
  23735. name: "Macro",
  23736. height: math.unit(700, "feet")
  23737. },
  23738. {
  23739. name: "Max Size",
  23740. height: math.unit(1.52e22, "yottameters")
  23741. },
  23742. ]
  23743. ))
  23744. characterMakers.push(() => makeCharacter(
  23745. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23746. {
  23747. front: {
  23748. height: math.unit(4.53, "meters"),
  23749. weight: math.unit(3, "tons"),
  23750. name: "Front",
  23751. image: {
  23752. source: "./media/characters/draekon-sylviar/front.svg",
  23753. extra: 1228 / 1068,
  23754. bottom: 41 / 1270
  23755. }
  23756. },
  23757. tail: {
  23758. height: math.unit(1.772, "meter"),
  23759. name: "Tail",
  23760. image: {
  23761. source: "./media/characters/draekon-sylviar/tail.svg"
  23762. }
  23763. },
  23764. head: {
  23765. height: math.unit(1.331, "meter"),
  23766. name: "Head",
  23767. image: {
  23768. source: "./media/characters/draekon-sylviar/head.svg"
  23769. }
  23770. },
  23771. hand: {
  23772. height: math.unit(0.564, "meter"),
  23773. name: "Hand",
  23774. image: {
  23775. source: "./media/characters/draekon-sylviar/hand.svg"
  23776. }
  23777. },
  23778. foot: {
  23779. height: math.unit(0.621, "meter"),
  23780. name: "Foot",
  23781. image: {
  23782. source: "./media/characters/draekon-sylviar/foot.svg",
  23783. bottom: 32 / 324
  23784. }
  23785. },
  23786. dick: {
  23787. height: math.unit(61, "cm"),
  23788. name: "Dick",
  23789. image: {
  23790. source: "./media/characters/draekon-sylviar/dick.svg"
  23791. }
  23792. },
  23793. dickseparated: {
  23794. height: math.unit(61, "cm"),
  23795. name: "Dick-separated",
  23796. image: {
  23797. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23798. }
  23799. },
  23800. },
  23801. [
  23802. {
  23803. name: "Small",
  23804. height: math.unit(4.53 / 2, "meters"),
  23805. default: true
  23806. },
  23807. {
  23808. name: "Normal",
  23809. height: math.unit(4.53, "meters"),
  23810. default: true
  23811. },
  23812. {
  23813. name: "Large",
  23814. height: math.unit(4.53 * 2, "meters"),
  23815. },
  23816. ]
  23817. ))
  23818. characterMakers.push(() => makeCharacter(
  23819. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23820. {
  23821. front: {
  23822. height: math.unit(6 + 2 / 12, "feet"),
  23823. weight: math.unit(180, "lb"),
  23824. name: "Front",
  23825. image: {
  23826. source: "./media/characters/brawler/front.svg",
  23827. extra: 3301 / 3027,
  23828. bottom: 138 / 3439
  23829. }
  23830. },
  23831. },
  23832. [
  23833. {
  23834. name: "Normal",
  23835. height: math.unit(6 + 2 / 12, "feet"),
  23836. default: true
  23837. },
  23838. ]
  23839. ))
  23840. characterMakers.push(() => makeCharacter(
  23841. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23842. {
  23843. front: {
  23844. height: math.unit(11, "feet"),
  23845. weight: math.unit(1000, "lb"),
  23846. name: "Front",
  23847. image: {
  23848. source: "./media/characters/alex/front.svg",
  23849. bottom: 44.5 / 620
  23850. }
  23851. },
  23852. },
  23853. [
  23854. {
  23855. name: "Micro",
  23856. height: math.unit(5, "inches")
  23857. },
  23858. {
  23859. name: "Normal",
  23860. height: math.unit(11, "feet"),
  23861. default: true
  23862. },
  23863. {
  23864. name: "Macro",
  23865. height: math.unit(9.5e9, "feet")
  23866. },
  23867. {
  23868. name: "Max Size",
  23869. height: math.unit(1.4e283, "yottameters")
  23870. },
  23871. ]
  23872. ))
  23873. characterMakers.push(() => makeCharacter(
  23874. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23875. {
  23876. female: {
  23877. height: math.unit(29.9, "m"),
  23878. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23879. name: "Female",
  23880. image: {
  23881. source: "./media/characters/zenari/female.svg",
  23882. extra: 3281.6 / 3217,
  23883. bottom: 72.2 / 3353
  23884. }
  23885. },
  23886. male: {
  23887. height: math.unit(27.7, "m"),
  23888. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23889. name: "Male",
  23890. image: {
  23891. source: "./media/characters/zenari/male.svg",
  23892. extra: 3008 / 2991,
  23893. bottom: 54.6 / 3069
  23894. }
  23895. },
  23896. },
  23897. [
  23898. {
  23899. name: "Macro",
  23900. height: math.unit(29.7, "meters"),
  23901. default: true
  23902. },
  23903. ]
  23904. ))
  23905. characterMakers.push(() => makeCharacter(
  23906. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23907. {
  23908. female: {
  23909. height: math.unit(23.8, "m"),
  23910. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23911. name: "Female",
  23912. image: {
  23913. source: "./media/characters/mactarian/female.svg",
  23914. extra: 2662 / 2569,
  23915. bottom: 73 / 2736
  23916. }
  23917. },
  23918. male: {
  23919. height: math.unit(23.8, "m"),
  23920. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23921. name: "Male",
  23922. image: {
  23923. source: "./media/characters/mactarian/male.svg",
  23924. extra: 2673 / 2600,
  23925. bottom: 76 / 2750
  23926. }
  23927. },
  23928. },
  23929. [
  23930. {
  23931. name: "Macro",
  23932. height: math.unit(23.8, "meters"),
  23933. default: true
  23934. },
  23935. ]
  23936. ))
  23937. characterMakers.push(() => makeCharacter(
  23938. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23939. {
  23940. female: {
  23941. height: math.unit(19.3, "m"),
  23942. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23943. name: "Female",
  23944. image: {
  23945. source: "./media/characters/umok/female.svg",
  23946. extra: 2186 / 2078,
  23947. bottom: 87 / 2277
  23948. }
  23949. },
  23950. male: {
  23951. height: math.unit(19.5, "m"),
  23952. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23953. name: "Male",
  23954. image: {
  23955. source: "./media/characters/umok/male.svg",
  23956. extra: 2233 / 2140,
  23957. bottom: 24.4 / 2258
  23958. }
  23959. },
  23960. },
  23961. [
  23962. {
  23963. name: "Macro",
  23964. height: math.unit(19.3, "meters"),
  23965. default: true
  23966. },
  23967. ]
  23968. ))
  23969. characterMakers.push(() => makeCharacter(
  23970. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23971. {
  23972. female: {
  23973. height: math.unit(26.15, "m"),
  23974. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23975. name: "Female",
  23976. image: {
  23977. source: "./media/characters/joraxian/female.svg",
  23978. extra: 2912 / 2824,
  23979. bottom: 36 / 2956
  23980. }
  23981. },
  23982. male: {
  23983. height: math.unit(25.4, "m"),
  23984. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23985. name: "Male",
  23986. image: {
  23987. source: "./media/characters/joraxian/male.svg",
  23988. extra: 2877 / 2721,
  23989. bottom: 82 / 2967
  23990. }
  23991. },
  23992. },
  23993. [
  23994. {
  23995. name: "Macro",
  23996. height: math.unit(26.15, "meters"),
  23997. default: true
  23998. },
  23999. ]
  24000. ))
  24001. characterMakers.push(() => makeCharacter(
  24002. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24003. {
  24004. female: {
  24005. height: math.unit(21.6, "m"),
  24006. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24007. name: "Female",
  24008. image: {
  24009. source: "./media/characters/sthara/female.svg",
  24010. extra: 2516 / 2347,
  24011. bottom: 21.5 / 2537
  24012. }
  24013. },
  24014. male: {
  24015. height: math.unit(24, "m"),
  24016. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24017. name: "Male",
  24018. image: {
  24019. source: "./media/characters/sthara/male.svg",
  24020. extra: 2732 / 2607,
  24021. bottom: 23 / 2732
  24022. }
  24023. },
  24024. },
  24025. [
  24026. {
  24027. name: "Macro",
  24028. height: math.unit(21.6, "meters"),
  24029. default: true
  24030. },
  24031. ]
  24032. ))
  24033. characterMakers.push(() => makeCharacter(
  24034. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24035. {
  24036. front: {
  24037. height: math.unit(6 + 4 / 12, "feet"),
  24038. weight: math.unit(175, "lb"),
  24039. name: "Front",
  24040. image: {
  24041. source: "./media/characters/luka-bryzant/front.svg",
  24042. extra: 311 / 289,
  24043. bottom: 4 / 315
  24044. }
  24045. },
  24046. back: {
  24047. height: math.unit(6 + 4 / 12, "feet"),
  24048. weight: math.unit(175, "lb"),
  24049. name: "Back",
  24050. image: {
  24051. source: "./media/characters/luka-bryzant/back.svg",
  24052. extra: 311 / 289,
  24053. bottom: 3.8 / 313.7
  24054. }
  24055. },
  24056. },
  24057. [
  24058. {
  24059. name: "Micro",
  24060. height: math.unit(10, "inches")
  24061. },
  24062. {
  24063. name: "Normal",
  24064. height: math.unit(6 + 4 / 12, "feet"),
  24065. default: true
  24066. },
  24067. {
  24068. name: "Large",
  24069. height: math.unit(12, "feet")
  24070. },
  24071. ]
  24072. ))
  24073. characterMakers.push(() => makeCharacter(
  24074. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24075. {
  24076. front: {
  24077. height: math.unit(5 + 7 / 12, "feet"),
  24078. weight: math.unit(185, "lb"),
  24079. name: "Front",
  24080. image: {
  24081. source: "./media/characters/aman-aquila/front.svg",
  24082. extra: 1013 / 976,
  24083. bottom: 45.6 / 1057
  24084. }
  24085. },
  24086. side: {
  24087. height: math.unit(5 + 7 / 12, "feet"),
  24088. weight: math.unit(185, "lb"),
  24089. name: "Side",
  24090. image: {
  24091. source: "./media/characters/aman-aquila/side.svg",
  24092. extra: 1054 / 1011,
  24093. bottom: 15 / 1070
  24094. }
  24095. },
  24096. back: {
  24097. height: math.unit(5 + 7 / 12, "feet"),
  24098. weight: math.unit(185, "lb"),
  24099. name: "Back",
  24100. image: {
  24101. source: "./media/characters/aman-aquila/back.svg",
  24102. extra: 1026 / 970,
  24103. bottom: 12 / 1039
  24104. }
  24105. },
  24106. head: {
  24107. height: math.unit(1.211, "feet"),
  24108. name: "Head",
  24109. image: {
  24110. source: "./media/characters/aman-aquila/head.svg",
  24111. }
  24112. },
  24113. },
  24114. [
  24115. {
  24116. name: "Minimicro",
  24117. height: math.unit(0.057, "inches")
  24118. },
  24119. {
  24120. name: "Micro",
  24121. height: math.unit(7, "inches")
  24122. },
  24123. {
  24124. name: "Mini",
  24125. height: math.unit(3 + 7 / 12, "feet")
  24126. },
  24127. {
  24128. name: "Normal",
  24129. height: math.unit(5 + 7 / 12, "feet"),
  24130. default: true
  24131. },
  24132. {
  24133. name: "Macro",
  24134. height: math.unit(157 + 7 / 12, "feet")
  24135. },
  24136. {
  24137. name: "Megamacro",
  24138. height: math.unit(1557 + 7 / 12, "feet")
  24139. },
  24140. {
  24141. name: "Gigamacro",
  24142. height: math.unit(15557 + 7 / 12, "feet")
  24143. },
  24144. ]
  24145. ))
  24146. characterMakers.push(() => makeCharacter(
  24147. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24148. {
  24149. front: {
  24150. height: math.unit(3 + 2 / 12, "inches"),
  24151. weight: math.unit(0.3, "ounces"),
  24152. name: "Front",
  24153. image: {
  24154. source: "./media/characters/hiphae/front.svg",
  24155. extra: 1931 / 1683,
  24156. bottom: 24 / 1955
  24157. }
  24158. },
  24159. },
  24160. [
  24161. {
  24162. name: "Normal",
  24163. height: math.unit(3 + 1 / 2, "inches"),
  24164. default: true
  24165. },
  24166. ]
  24167. ))
  24168. characterMakers.push(() => makeCharacter(
  24169. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24170. {
  24171. front: {
  24172. height: math.unit(5 + 10 / 12, "feet"),
  24173. weight: math.unit(165, "lb"),
  24174. name: "Front",
  24175. image: {
  24176. source: "./media/characters/nicky/front.svg",
  24177. extra: 3144 / 2886,
  24178. bottom: 45.6 / 3192
  24179. }
  24180. },
  24181. back: {
  24182. height: math.unit(5 + 10 / 12, "feet"),
  24183. weight: math.unit(165, "lb"),
  24184. name: "Back",
  24185. image: {
  24186. source: "./media/characters/nicky/back.svg",
  24187. extra: 3055 / 2804,
  24188. bottom: 28.4 / 3087
  24189. }
  24190. },
  24191. frontclothed: {
  24192. height: math.unit(5 + 10 / 12, "feet"),
  24193. weight: math.unit(165, "lb"),
  24194. name: "Front-clothed",
  24195. image: {
  24196. source: "./media/characters/nicky/front-clothed.svg",
  24197. extra: 3184.9 / 2926.9,
  24198. bottom: 86.5 / 3239.9
  24199. }
  24200. },
  24201. foot: {
  24202. height: math.unit(1.16, "feet"),
  24203. name: "Foot",
  24204. image: {
  24205. source: "./media/characters/nicky/foot.svg"
  24206. }
  24207. },
  24208. feet: {
  24209. height: math.unit(1.34, "feet"),
  24210. name: "Feet",
  24211. image: {
  24212. source: "./media/characters/nicky/feet.svg"
  24213. }
  24214. },
  24215. maw: {
  24216. height: math.unit(0.9, "feet"),
  24217. name: "Maw",
  24218. image: {
  24219. source: "./media/characters/nicky/maw.svg"
  24220. }
  24221. },
  24222. },
  24223. [
  24224. {
  24225. name: "Normal",
  24226. height: math.unit(5 + 10 / 12, "feet"),
  24227. default: true
  24228. },
  24229. {
  24230. name: "Macro",
  24231. height: math.unit(60, "feet")
  24232. },
  24233. {
  24234. name: "Megamacro",
  24235. height: math.unit(1, "mile")
  24236. },
  24237. ]
  24238. ))
  24239. characterMakers.push(() => makeCharacter(
  24240. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24241. {
  24242. side: {
  24243. height: math.unit(10, "feet"),
  24244. weight: math.unit(600, "lb"),
  24245. name: "Side",
  24246. image: {
  24247. source: "./media/characters/blair/side.svg",
  24248. bottom: 16.6 / 475,
  24249. extra: 458 / 431
  24250. }
  24251. },
  24252. },
  24253. [
  24254. {
  24255. name: "Micro",
  24256. height: math.unit(8, "inches")
  24257. },
  24258. {
  24259. name: "Normal",
  24260. height: math.unit(10, "feet"),
  24261. default: true
  24262. },
  24263. {
  24264. name: "Macro",
  24265. height: math.unit(180, "feet")
  24266. },
  24267. ]
  24268. ))
  24269. characterMakers.push(() => makeCharacter(
  24270. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24271. {
  24272. front: {
  24273. height: math.unit(5 + 4 / 12, "feet"),
  24274. weight: math.unit(125, "lb"),
  24275. name: "Front",
  24276. image: {
  24277. source: "./media/characters/fisher/front.svg",
  24278. extra: 444 / 390,
  24279. bottom: 2 / 444.8
  24280. }
  24281. },
  24282. },
  24283. [
  24284. {
  24285. name: "Micro",
  24286. height: math.unit(4, "inches")
  24287. },
  24288. {
  24289. name: "Normal",
  24290. height: math.unit(5 + 4 / 12, "feet"),
  24291. default: true
  24292. },
  24293. {
  24294. name: "Macro",
  24295. height: math.unit(100, "feet")
  24296. },
  24297. ]
  24298. ))
  24299. characterMakers.push(() => makeCharacter(
  24300. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24301. {
  24302. front: {
  24303. height: math.unit(6.71, "feet"),
  24304. weight: math.unit(200, "lb"),
  24305. capacity: math.unit(1000000, "people"),
  24306. name: "Front",
  24307. image: {
  24308. source: "./media/characters/gliss/front.svg",
  24309. extra: 2347 / 2231,
  24310. bottom: 113 / 2462
  24311. }
  24312. },
  24313. hammerspaceSize: {
  24314. height: math.unit(6.71 * 717, "feet"),
  24315. weight: math.unit(200, "lb"),
  24316. capacity: math.unit(1000000, "people"),
  24317. name: "Hammerspace Size",
  24318. image: {
  24319. source: "./media/characters/gliss/front.svg",
  24320. extra: 2347 / 2231,
  24321. bottom: 113 / 2462
  24322. }
  24323. },
  24324. },
  24325. [
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(6.71, "feet"),
  24329. default: true
  24330. },
  24331. ]
  24332. ))
  24333. characterMakers.push(() => makeCharacter(
  24334. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24335. {
  24336. side: {
  24337. height: math.unit(1.44, "m"),
  24338. weight: math.unit(80, "kg"),
  24339. name: "Side",
  24340. image: {
  24341. source: "./media/characters/dune-anderson/side.svg",
  24342. bottom: 49 / 1426
  24343. }
  24344. },
  24345. },
  24346. [
  24347. {
  24348. name: "Wolf-sized",
  24349. height: math.unit(1.44, "meters")
  24350. },
  24351. {
  24352. name: "Normal",
  24353. height: math.unit(5.05, "meters"),
  24354. default: true
  24355. },
  24356. {
  24357. name: "Big",
  24358. height: math.unit(14.4, "meters")
  24359. },
  24360. {
  24361. name: "Huge",
  24362. height: math.unit(144, "meters")
  24363. },
  24364. ]
  24365. ))
  24366. characterMakers.push(() => makeCharacter(
  24367. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24368. {
  24369. front: {
  24370. height: math.unit(7, "feet"),
  24371. weight: math.unit(425, "lb"),
  24372. name: "Front",
  24373. image: {
  24374. source: "./media/characters/hind/front.svg",
  24375. extra: 2091 / 1860,
  24376. bottom: 129 / 2220
  24377. }
  24378. },
  24379. back: {
  24380. height: math.unit(7, "feet"),
  24381. weight: math.unit(425, "lb"),
  24382. name: "Back",
  24383. image: {
  24384. source: "./media/characters/hind/back.svg",
  24385. extra: 2091 / 1860,
  24386. bottom: 24.6 / 2309
  24387. }
  24388. },
  24389. tail: {
  24390. height: math.unit(2.8, "feet"),
  24391. name: "Tail",
  24392. image: {
  24393. source: "./media/characters/hind/tail.svg"
  24394. }
  24395. },
  24396. head: {
  24397. height: math.unit(2.55, "feet"),
  24398. name: "Head",
  24399. image: {
  24400. source: "./media/characters/hind/head.svg"
  24401. }
  24402. },
  24403. },
  24404. [
  24405. {
  24406. name: "XS",
  24407. height: math.unit(0.7, "feet")
  24408. },
  24409. {
  24410. name: "Normal",
  24411. height: math.unit(7, "feet"),
  24412. default: true
  24413. },
  24414. {
  24415. name: "XL",
  24416. height: math.unit(70, "feet")
  24417. },
  24418. ]
  24419. ))
  24420. characterMakers.push(() => makeCharacter(
  24421. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24422. {
  24423. front: {
  24424. height: math.unit(6, "feet"),
  24425. weight: math.unit(150, "lb"),
  24426. name: "Front",
  24427. image: {
  24428. source: "./media/characters/dylan-skaven/front.svg",
  24429. extra: 2318 / 2063,
  24430. bottom: 93.4 / 2410
  24431. }
  24432. },
  24433. },
  24434. [
  24435. {
  24436. name: "Nano",
  24437. height: math.unit(1, "mm")
  24438. },
  24439. {
  24440. name: "Micro",
  24441. height: math.unit(1, "cm")
  24442. },
  24443. {
  24444. name: "Normal",
  24445. height: math.unit(2.1, "meters"),
  24446. default: true
  24447. },
  24448. ]
  24449. ))
  24450. characterMakers.push(() => makeCharacter(
  24451. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24452. {
  24453. front: {
  24454. height: math.unit(7 + 5 / 12, "feet"),
  24455. weight: math.unit(357, "lb"),
  24456. name: "Front",
  24457. image: {
  24458. source: "./media/characters/solex-draconov/front.svg",
  24459. extra: 1993 / 1865,
  24460. bottom: 117 / 2111
  24461. }
  24462. },
  24463. },
  24464. [
  24465. {
  24466. name: "Natural Height",
  24467. height: math.unit(7 + 5 / 12, "feet"),
  24468. default: true
  24469. },
  24470. {
  24471. name: "Macro",
  24472. height: math.unit(350, "feet")
  24473. },
  24474. {
  24475. name: "Macro+",
  24476. height: math.unit(1000, "feet")
  24477. },
  24478. {
  24479. name: "Megamacro",
  24480. height: math.unit(20, "km")
  24481. },
  24482. {
  24483. name: "Megamacro+",
  24484. height: math.unit(1000, "km")
  24485. },
  24486. {
  24487. name: "Gigamacro",
  24488. height: math.unit(2.5, "Gm")
  24489. },
  24490. {
  24491. name: "Teramacro",
  24492. height: math.unit(15, "Tm")
  24493. },
  24494. {
  24495. name: "Galactic",
  24496. height: math.unit(30, "Zm")
  24497. },
  24498. {
  24499. name: "Universal",
  24500. height: math.unit(21000, "Ym")
  24501. },
  24502. {
  24503. name: "Omniversal",
  24504. height: math.unit(9.861e50, "Ym")
  24505. },
  24506. {
  24507. name: "Existential",
  24508. height: math.unit(1e300, "meters")
  24509. },
  24510. ]
  24511. ))
  24512. characterMakers.push(() => makeCharacter(
  24513. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24514. {
  24515. side: {
  24516. height: math.unit(25, "feet"),
  24517. weight: math.unit(90000, "lb"),
  24518. name: "Side",
  24519. image: {
  24520. source: "./media/characters/mandarax/side.svg",
  24521. extra: 614 / 332,
  24522. bottom: 55 / 630
  24523. }
  24524. },
  24525. head: {
  24526. height: math.unit(11.4, "feet"),
  24527. name: "Head",
  24528. image: {
  24529. source: "./media/characters/mandarax/head.svg"
  24530. }
  24531. },
  24532. belly: {
  24533. height: math.unit(33, "feet"),
  24534. name: "Belly",
  24535. capacity: math.unit(500, "people"),
  24536. image: {
  24537. source: "./media/characters/mandarax/belly.svg"
  24538. }
  24539. },
  24540. dick: {
  24541. height: math.unit(8.46, "feet"),
  24542. name: "Dick",
  24543. image: {
  24544. source: "./media/characters/mandarax/dick.svg"
  24545. }
  24546. },
  24547. top: {
  24548. height: math.unit(28, "meters"),
  24549. name: "Top",
  24550. image: {
  24551. source: "./media/characters/mandarax/top.svg"
  24552. }
  24553. },
  24554. },
  24555. [
  24556. {
  24557. name: "Normal",
  24558. height: math.unit(25, "feet"),
  24559. default: true
  24560. },
  24561. ]
  24562. ))
  24563. characterMakers.push(() => makeCharacter(
  24564. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24565. {
  24566. front: {
  24567. height: math.unit(5, "feet"),
  24568. weight: math.unit(90, "lb"),
  24569. name: "Front",
  24570. image: {
  24571. source: "./media/characters/pixil/front.svg",
  24572. extra: 2000 / 1618,
  24573. bottom: 12.3 / 2011
  24574. }
  24575. },
  24576. },
  24577. [
  24578. {
  24579. name: "Normal",
  24580. height: math.unit(5, "feet"),
  24581. default: true
  24582. },
  24583. {
  24584. name: "Megamacro",
  24585. height: math.unit(10, "miles"),
  24586. },
  24587. ]
  24588. ))
  24589. characterMakers.push(() => makeCharacter(
  24590. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24591. {
  24592. front: {
  24593. height: math.unit(7 + 2 / 12, "feet"),
  24594. weight: math.unit(200, "lb"),
  24595. name: "Front",
  24596. image: {
  24597. source: "./media/characters/angel/front.svg",
  24598. extra: 1830 / 1737,
  24599. bottom: 22.6 / 1854,
  24600. }
  24601. },
  24602. },
  24603. [
  24604. {
  24605. name: "Normal",
  24606. height: math.unit(7 + 2 / 12, "feet"),
  24607. default: true
  24608. },
  24609. {
  24610. name: "Macro",
  24611. height: math.unit(1000, "feet")
  24612. },
  24613. {
  24614. name: "Megamacro",
  24615. height: math.unit(2, "miles")
  24616. },
  24617. {
  24618. name: "Gigamacro",
  24619. height: math.unit(20, "earths")
  24620. },
  24621. ]
  24622. ))
  24623. characterMakers.push(() => makeCharacter(
  24624. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24625. {
  24626. front: {
  24627. height: math.unit(5, "feet"),
  24628. weight: math.unit(180, "lb"),
  24629. name: "Front",
  24630. image: {
  24631. source: "./media/characters/mekana/front.svg",
  24632. extra: 1671 / 1605,
  24633. bottom: 3.5 / 1691
  24634. }
  24635. },
  24636. side: {
  24637. height: math.unit(5, "feet"),
  24638. weight: math.unit(180, "lb"),
  24639. name: "Side",
  24640. image: {
  24641. source: "./media/characters/mekana/side.svg",
  24642. extra: 1671 / 1605,
  24643. bottom: 3.5 / 1691
  24644. }
  24645. },
  24646. back: {
  24647. height: math.unit(5, "feet"),
  24648. weight: math.unit(180, "lb"),
  24649. name: "Back",
  24650. image: {
  24651. source: "./media/characters/mekana/back.svg",
  24652. extra: 1671 / 1605,
  24653. bottom: 3.5 / 1691
  24654. }
  24655. },
  24656. },
  24657. [
  24658. {
  24659. name: "Normal",
  24660. height: math.unit(5, "feet"),
  24661. default: true
  24662. },
  24663. ]
  24664. ))
  24665. characterMakers.push(() => makeCharacter(
  24666. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24667. {
  24668. front: {
  24669. height: math.unit(4 + 6 / 12, "feet"),
  24670. weight: math.unit(80, "lb"),
  24671. name: "Front",
  24672. image: {
  24673. source: "./media/characters/pixie/front.svg",
  24674. extra: 1924 / 1825,
  24675. bottom: 22.4 / 1946
  24676. }
  24677. },
  24678. },
  24679. [
  24680. {
  24681. name: "Normal",
  24682. height: math.unit(4 + 6 / 12, "feet"),
  24683. default: true
  24684. },
  24685. {
  24686. name: "Macro",
  24687. height: math.unit(40, "feet")
  24688. },
  24689. ]
  24690. ))
  24691. characterMakers.push(() => makeCharacter(
  24692. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24693. {
  24694. front: {
  24695. height: math.unit(2.1, "meters"),
  24696. weight: math.unit(200, "lb"),
  24697. name: "Front",
  24698. image: {
  24699. source: "./media/characters/the-lascivious/front.svg",
  24700. extra: 1 / 0.893,
  24701. bottom: 3.5 / 573.7
  24702. }
  24703. },
  24704. },
  24705. [
  24706. {
  24707. name: "Human Scale",
  24708. height: math.unit(2.1, "meters")
  24709. },
  24710. {
  24711. name: "Wolxi Scale",
  24712. height: math.unit(46.2, "m"),
  24713. default: true
  24714. },
  24715. {
  24716. name: "Boinker of Buildings",
  24717. height: math.unit(10, "km")
  24718. },
  24719. {
  24720. name: "Shagger of Skyscrapers",
  24721. height: math.unit(40, "km")
  24722. },
  24723. {
  24724. name: "Banger of Boroughs",
  24725. height: math.unit(4000, "km")
  24726. },
  24727. {
  24728. name: "Screwer of States",
  24729. height: math.unit(100000, "km")
  24730. },
  24731. {
  24732. name: "Pounder of Planets",
  24733. height: math.unit(2000000, "km")
  24734. },
  24735. ]
  24736. ))
  24737. characterMakers.push(() => makeCharacter(
  24738. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24739. {
  24740. front: {
  24741. height: math.unit(6, "feet"),
  24742. weight: math.unit(150, "lb"),
  24743. name: "Front",
  24744. image: {
  24745. source: "./media/characters/aj/front.svg",
  24746. extra: 2039 / 1562,
  24747. bottom: 40 / 2079
  24748. }
  24749. },
  24750. },
  24751. [
  24752. {
  24753. name: "Normal",
  24754. height: math.unit(11 + 6 / 12, "feet"),
  24755. default: true
  24756. },
  24757. {
  24758. name: "Megamacro",
  24759. height: math.unit(60, "megameters")
  24760. },
  24761. ]
  24762. ))
  24763. characterMakers.push(() => makeCharacter(
  24764. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24765. {
  24766. side: {
  24767. height: math.unit(31 + 8 / 12, "feet"),
  24768. weight: math.unit(75000, "kg"),
  24769. name: "Side",
  24770. image: {
  24771. source: "./media/characters/koros/side.svg",
  24772. extra: 1442 / 1297,
  24773. bottom: 122.7 / 1562
  24774. }
  24775. },
  24776. dicksKingsCrown: {
  24777. height: math.unit(6, "feet"),
  24778. name: "Dicks (King's Crown)",
  24779. image: {
  24780. source: "./media/characters/koros/dicks-kings-crown.svg"
  24781. }
  24782. },
  24783. dicksTailSet: {
  24784. height: math.unit(3, "feet"),
  24785. name: "Dicks (Tail Set)",
  24786. image: {
  24787. source: "./media/characters/koros/dicks-tail-set.svg"
  24788. }
  24789. },
  24790. dickCumming: {
  24791. height: math.unit(7.98, "feet"),
  24792. name: "Dick (Cumming)",
  24793. image: {
  24794. source: "./media/characters/koros/dick-cumming.svg"
  24795. }
  24796. },
  24797. dicksBack: {
  24798. height: math.unit(5.9, "feet"),
  24799. name: "Dicks (Back)",
  24800. image: {
  24801. source: "./media/characters/koros/dicks-back.svg"
  24802. }
  24803. },
  24804. dicksFront: {
  24805. height: math.unit(3.72, "feet"),
  24806. name: "Dicks (Front)",
  24807. image: {
  24808. source: "./media/characters/koros/dicks-front.svg"
  24809. }
  24810. },
  24811. dicksPeeking: {
  24812. height: math.unit(3.0, "feet"),
  24813. name: "Dicks (Peeking)",
  24814. image: {
  24815. source: "./media/characters/koros/dicks-peeking.svg"
  24816. }
  24817. },
  24818. eye: {
  24819. height: math.unit(1.7, "feet"),
  24820. name: "Eye",
  24821. image: {
  24822. source: "./media/characters/koros/eye.svg"
  24823. }
  24824. },
  24825. headFront: {
  24826. height: math.unit(11.69, "feet"),
  24827. name: "Head (Front)",
  24828. image: {
  24829. source: "./media/characters/koros/head-front.svg"
  24830. }
  24831. },
  24832. headSide: {
  24833. height: math.unit(14, "feet"),
  24834. name: "Head (Side)",
  24835. image: {
  24836. source: "./media/characters/koros/head-side.svg"
  24837. }
  24838. },
  24839. leg: {
  24840. height: math.unit(17, "feet"),
  24841. name: "Leg",
  24842. image: {
  24843. source: "./media/characters/koros/leg.svg"
  24844. }
  24845. },
  24846. mawSide: {
  24847. height: math.unit(12.8, "feet"),
  24848. name: "Maw (Side)",
  24849. image: {
  24850. source: "./media/characters/koros/maw-side.svg"
  24851. }
  24852. },
  24853. mawSpitting: {
  24854. height: math.unit(17, "feet"),
  24855. name: "Maw (Spitting)",
  24856. image: {
  24857. source: "./media/characters/koros/maw-spitting.svg"
  24858. }
  24859. },
  24860. slit: {
  24861. height: math.unit(2.8, "feet"),
  24862. name: "Slit",
  24863. image: {
  24864. source: "./media/characters/koros/slit.svg"
  24865. }
  24866. },
  24867. stomach: {
  24868. height: math.unit(6.8, "feet"),
  24869. capacity: math.unit(20, "people"),
  24870. name: "Stomach",
  24871. image: {
  24872. source: "./media/characters/koros/stomach.svg"
  24873. }
  24874. },
  24875. wingspanBottom: {
  24876. height: math.unit(114, "feet"),
  24877. name: "Wingspan (Bottom)",
  24878. image: {
  24879. source: "./media/characters/koros/wingspan-bottom.svg"
  24880. }
  24881. },
  24882. wingspanTop: {
  24883. height: math.unit(104, "feet"),
  24884. name: "Wingspan (Top)",
  24885. image: {
  24886. source: "./media/characters/koros/wingspan-top.svg"
  24887. }
  24888. },
  24889. },
  24890. [
  24891. {
  24892. name: "Normal",
  24893. height: math.unit(31 + 8 / 12, "feet"),
  24894. default: true
  24895. },
  24896. ]
  24897. ))
  24898. characterMakers.push(() => makeCharacter(
  24899. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24900. {
  24901. front: {
  24902. height: math.unit(18 + 5 / 12, "feet"),
  24903. weight: math.unit(3750, "kg"),
  24904. name: "Front",
  24905. image: {
  24906. source: "./media/characters/vexx/front.svg",
  24907. extra: 426 / 396,
  24908. bottom: 31.5 / 458
  24909. }
  24910. },
  24911. maw: {
  24912. height: math.unit(6, "feet"),
  24913. name: "Maw",
  24914. image: {
  24915. source: "./media/characters/vexx/maw.svg"
  24916. }
  24917. },
  24918. },
  24919. [
  24920. {
  24921. name: "Normal",
  24922. height: math.unit(18 + 5 / 12, "feet"),
  24923. default: true
  24924. },
  24925. ]
  24926. ))
  24927. characterMakers.push(() => makeCharacter(
  24928. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24929. {
  24930. front: {
  24931. height: math.unit(17 + 6 / 12, "feet"),
  24932. weight: math.unit(150, "lb"),
  24933. name: "Front",
  24934. image: {
  24935. source: "./media/characters/baadra/front.svg",
  24936. extra: 3137 / 2890,
  24937. bottom: 168.4 / 3305
  24938. }
  24939. },
  24940. back: {
  24941. height: math.unit(17 + 6 / 12, "feet"),
  24942. weight: math.unit(150, "lb"),
  24943. name: "Back",
  24944. image: {
  24945. source: "./media/characters/baadra/back.svg",
  24946. extra: 3142 / 2890,
  24947. bottom: 220 / 3371
  24948. }
  24949. },
  24950. head: {
  24951. height: math.unit(5.45, "feet"),
  24952. name: "Head",
  24953. image: {
  24954. source: "./media/characters/baadra/head.svg"
  24955. }
  24956. },
  24957. headAngry: {
  24958. height: math.unit(4.95, "feet"),
  24959. name: "Head (Angry)",
  24960. image: {
  24961. source: "./media/characters/baadra/head-angry.svg"
  24962. }
  24963. },
  24964. headOpen: {
  24965. height: math.unit(6, "feet"),
  24966. name: "Head (Open)",
  24967. image: {
  24968. source: "./media/characters/baadra/head-open.svg"
  24969. }
  24970. },
  24971. },
  24972. [
  24973. {
  24974. name: "Normal",
  24975. height: math.unit(17 + 6 / 12, "feet"),
  24976. default: true
  24977. },
  24978. ]
  24979. ))
  24980. characterMakers.push(() => makeCharacter(
  24981. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24982. {
  24983. front: {
  24984. height: math.unit(7 + 3 / 12, "feet"),
  24985. weight: math.unit(180, "lb"),
  24986. name: "Front",
  24987. image: {
  24988. source: "./media/characters/juri/front.svg",
  24989. extra: 1401 / 1237,
  24990. bottom: 18.5 / 1418
  24991. }
  24992. },
  24993. side: {
  24994. height: math.unit(7 + 3 / 12, "feet"),
  24995. weight: math.unit(180, "lb"),
  24996. name: "Side",
  24997. image: {
  24998. source: "./media/characters/juri/side.svg",
  24999. extra: 1424 / 1242,
  25000. bottom: 18.5 / 1447
  25001. }
  25002. },
  25003. sitting: {
  25004. height: math.unit(6, "feet"),
  25005. weight: math.unit(180, "lb"),
  25006. name: "Sitting",
  25007. image: {
  25008. source: "./media/characters/juri/sitting.svg",
  25009. extra: 1270 / 1143,
  25010. bottom: 100 / 1343
  25011. }
  25012. },
  25013. back: {
  25014. height: math.unit(7 + 3 / 12, "feet"),
  25015. weight: math.unit(180, "lb"),
  25016. name: "Back",
  25017. image: {
  25018. source: "./media/characters/juri/back.svg",
  25019. extra: 1377 / 1240,
  25020. bottom: 23.7 / 1405
  25021. }
  25022. },
  25023. maw: {
  25024. height: math.unit(2.8, "feet"),
  25025. name: "Maw",
  25026. image: {
  25027. source: "./media/characters/juri/maw.svg"
  25028. }
  25029. },
  25030. stomach: {
  25031. height: math.unit(0.89, "feet"),
  25032. capacity: math.unit(4, "liters"),
  25033. name: "Stomach",
  25034. image: {
  25035. source: "./media/characters/juri/stomach.svg"
  25036. }
  25037. },
  25038. },
  25039. [
  25040. {
  25041. name: "Normal",
  25042. height: math.unit(7 + 3 / 12, "feet"),
  25043. default: true
  25044. },
  25045. ]
  25046. ))
  25047. characterMakers.push(() => makeCharacter(
  25048. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25049. {
  25050. fox: {
  25051. height: math.unit(5 + 6 / 12, "feet"),
  25052. weight: math.unit(140, "lb"),
  25053. name: "Fox",
  25054. image: {
  25055. source: "./media/characters/maxene-sita/fox.svg",
  25056. extra: 146 / 138,
  25057. bottom: 2.1 / 148.19
  25058. }
  25059. },
  25060. foxLaying: {
  25061. height: math.unit(1.70, "feet"),
  25062. weight: math.unit(140, "lb"),
  25063. name: "Fox (Laying)",
  25064. image: {
  25065. source: "./media/characters/maxene-sita/fox-laying.svg",
  25066. extra: 910 / 572,
  25067. bottom: 71 / 981
  25068. }
  25069. },
  25070. kitsune: {
  25071. height: math.unit(10, "feet"),
  25072. weight: math.unit(800, "lb"),
  25073. name: "Kitsune",
  25074. image: {
  25075. source: "./media/characters/maxene-sita/kitsune.svg",
  25076. extra: 185 / 176,
  25077. bottom: 4.7 / 189.9
  25078. }
  25079. },
  25080. hellhound: {
  25081. height: math.unit(10, "feet"),
  25082. weight: math.unit(700, "lb"),
  25083. name: "Hellhound",
  25084. image: {
  25085. source: "./media/characters/maxene-sita/hellhound.svg",
  25086. extra: 1600 / 1545,
  25087. bottom: 81 / 1681
  25088. }
  25089. },
  25090. },
  25091. [
  25092. {
  25093. name: "Normal",
  25094. height: math.unit(5 + 6 / 12, "feet"),
  25095. default: true
  25096. },
  25097. ]
  25098. ))
  25099. characterMakers.push(() => makeCharacter(
  25100. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25101. {
  25102. front: {
  25103. height: math.unit(3 + 4 / 12, "feet"),
  25104. weight: math.unit(70, "lb"),
  25105. name: "Front",
  25106. image: {
  25107. source: "./media/characters/maia/front.svg",
  25108. extra: 227 / 219.5,
  25109. bottom: 40 / 267
  25110. }
  25111. },
  25112. back: {
  25113. height: math.unit(3 + 4 / 12, "feet"),
  25114. weight: math.unit(70, "lb"),
  25115. name: "Back",
  25116. image: {
  25117. source: "./media/characters/maia/back.svg",
  25118. extra: 237 / 225
  25119. }
  25120. },
  25121. },
  25122. [
  25123. {
  25124. name: "Normal",
  25125. height: math.unit(3 + 4 / 12, "feet"),
  25126. default: true
  25127. },
  25128. ]
  25129. ))
  25130. characterMakers.push(() => makeCharacter(
  25131. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25132. {
  25133. front: {
  25134. height: math.unit(5 + 10 / 12, "feet"),
  25135. weight: math.unit(197, "lb"),
  25136. name: "Front",
  25137. image: {
  25138. source: "./media/characters/jabaro/front.svg",
  25139. extra: 225 / 216,
  25140. bottom: 5.06 / 230
  25141. }
  25142. },
  25143. back: {
  25144. height: math.unit(5 + 10 / 12, "feet"),
  25145. weight: math.unit(197, "lb"),
  25146. name: "Back",
  25147. image: {
  25148. source: "./media/characters/jabaro/back.svg",
  25149. extra: 225 / 219,
  25150. bottom: 1.9 / 227
  25151. }
  25152. },
  25153. },
  25154. [
  25155. {
  25156. name: "Normal",
  25157. height: math.unit(5 + 10 / 12, "feet"),
  25158. default: true
  25159. },
  25160. ]
  25161. ))
  25162. characterMakers.push(() => makeCharacter(
  25163. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25164. {
  25165. front: {
  25166. height: math.unit(5 + 8 / 12, "feet"),
  25167. weight: math.unit(139, "lb"),
  25168. name: "Front",
  25169. image: {
  25170. source: "./media/characters/risa/front.svg",
  25171. extra: 270 / 260,
  25172. bottom: 11.2 / 282
  25173. }
  25174. },
  25175. back: {
  25176. height: math.unit(5 + 8 / 12, "feet"),
  25177. weight: math.unit(139, "lb"),
  25178. name: "Back",
  25179. image: {
  25180. source: "./media/characters/risa/back.svg",
  25181. extra: 264 / 255,
  25182. bottom: 4 / 268
  25183. }
  25184. },
  25185. },
  25186. [
  25187. {
  25188. name: "Normal",
  25189. height: math.unit(5 + 8 / 12, "feet"),
  25190. default: true
  25191. },
  25192. ]
  25193. ))
  25194. characterMakers.push(() => makeCharacter(
  25195. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25196. {
  25197. front: {
  25198. height: math.unit(2 + 11 / 12, "feet"),
  25199. weight: math.unit(30, "lb"),
  25200. name: "Front",
  25201. image: {
  25202. source: "./media/characters/weatley/front.svg",
  25203. bottom: 10.7 / 414,
  25204. extra: 403.5 / 362
  25205. }
  25206. },
  25207. back: {
  25208. height: math.unit(2 + 11 / 12, "feet"),
  25209. weight: math.unit(30, "lb"),
  25210. name: "Back",
  25211. image: {
  25212. source: "./media/characters/weatley/back.svg",
  25213. bottom: 10.7 / 414,
  25214. extra: 403.5 / 362
  25215. }
  25216. },
  25217. },
  25218. [
  25219. {
  25220. name: "Normal",
  25221. height: math.unit(2 + 11 / 12, "feet"),
  25222. default: true
  25223. },
  25224. ]
  25225. ))
  25226. characterMakers.push(() => makeCharacter(
  25227. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25228. {
  25229. front: {
  25230. height: math.unit(5 + 2 / 12, "feet"),
  25231. weight: math.unit(50, "kg"),
  25232. name: "Front",
  25233. image: {
  25234. source: "./media/characters/mercury-crescent/front.svg",
  25235. extra: 1088 / 1033,
  25236. bottom: 18.9 / 1109
  25237. }
  25238. },
  25239. },
  25240. [
  25241. {
  25242. name: "Normal",
  25243. height: math.unit(5 + 2 / 12, "feet"),
  25244. default: true
  25245. },
  25246. ]
  25247. ))
  25248. characterMakers.push(() => makeCharacter(
  25249. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25250. {
  25251. front: {
  25252. height: math.unit(2, "feet"),
  25253. weight: math.unit(15, "kg"),
  25254. name: "Front",
  25255. image: {
  25256. source: "./media/characters/diamond-jones/front.svg",
  25257. bottom: 16 / 568
  25258. }
  25259. },
  25260. },
  25261. [
  25262. {
  25263. name: "Normal",
  25264. height: math.unit(2, "feet"),
  25265. default: true
  25266. },
  25267. ]
  25268. ))
  25269. characterMakers.push(() => makeCharacter(
  25270. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25271. {
  25272. front: {
  25273. height: math.unit(3, "feet"),
  25274. weight: math.unit(30, "kg"),
  25275. name: "Front",
  25276. image: {
  25277. source: "./media/characters/sweet-bit/front.svg",
  25278. extra: 675 / 567,
  25279. bottom: 27.7 / 703
  25280. }
  25281. },
  25282. },
  25283. [
  25284. {
  25285. name: "Normal",
  25286. height: math.unit(3, "feet"),
  25287. default: true
  25288. },
  25289. ]
  25290. ))
  25291. characterMakers.push(() => makeCharacter(
  25292. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25293. {
  25294. side: {
  25295. height: math.unit(9.178, "feet"),
  25296. weight: math.unit(500, "lb"),
  25297. name: "Side",
  25298. image: {
  25299. source: "./media/characters/umbrazen/side.svg",
  25300. extra: 1730 / 1473,
  25301. bottom: 34.6 / 1765
  25302. }
  25303. },
  25304. },
  25305. [
  25306. {
  25307. name: "Normal",
  25308. height: math.unit(9.178, "feet"),
  25309. default: true
  25310. },
  25311. ]
  25312. ))
  25313. characterMakers.push(() => makeCharacter(
  25314. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25315. {
  25316. front: {
  25317. height: math.unit(10, "feet"),
  25318. weight: math.unit(750, "lb"),
  25319. name: "Front",
  25320. image: {
  25321. source: "./media/characters/arlist/front.svg",
  25322. extra: 961 / 778,
  25323. bottom: 6.2 / 986
  25324. }
  25325. },
  25326. },
  25327. [
  25328. {
  25329. name: "Normal",
  25330. height: math.unit(10, "feet"),
  25331. default: true
  25332. },
  25333. ]
  25334. ))
  25335. characterMakers.push(() => makeCharacter(
  25336. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25337. {
  25338. front: {
  25339. height: math.unit(5 + 1 / 12, "feet"),
  25340. weight: math.unit(110, "lb"),
  25341. name: "Front",
  25342. image: {
  25343. source: "./media/characters/aradel/front.svg",
  25344. extra: 324 / 303,
  25345. bottom: 3.6 / 329.4
  25346. }
  25347. },
  25348. },
  25349. [
  25350. {
  25351. name: "Normal",
  25352. height: math.unit(5 + 1 / 12, "feet"),
  25353. default: true
  25354. },
  25355. ]
  25356. ))
  25357. characterMakers.push(() => makeCharacter(
  25358. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25359. {
  25360. front: {
  25361. height: math.unit(3 + 8 / 12, "feet"),
  25362. weight: math.unit(50, "lb"),
  25363. name: "Front",
  25364. image: {
  25365. source: "./media/characters/serryn/front.svg",
  25366. extra: 1792 / 1656,
  25367. bottom: 43.5 / 1840
  25368. }
  25369. },
  25370. },
  25371. [
  25372. {
  25373. name: "Normal",
  25374. height: math.unit(3 + 8 / 12, "feet"),
  25375. default: true
  25376. },
  25377. ]
  25378. ))
  25379. characterMakers.push(() => makeCharacter(
  25380. { name: "Xavier Thyme" },
  25381. {
  25382. front: {
  25383. height: math.unit(7 + 10 / 12, "feet"),
  25384. weight: math.unit(255, "lb"),
  25385. name: "Front",
  25386. image: {
  25387. source: "./media/characters/xavier-thyme/front.svg",
  25388. extra: 3733 / 3642,
  25389. bottom: 131 / 3869
  25390. }
  25391. },
  25392. frontRaven: {
  25393. height: math.unit(7 + 10 / 12, "feet"),
  25394. weight: math.unit(255, "lb"),
  25395. name: "Front (Raven)",
  25396. image: {
  25397. source: "./media/characters/xavier-thyme/front-raven.svg",
  25398. extra: 4385 / 3642,
  25399. bottom: 131 / 4517
  25400. }
  25401. },
  25402. },
  25403. [
  25404. {
  25405. name: "Normal",
  25406. height: math.unit(7 + 10 / 12, "feet"),
  25407. default: true
  25408. },
  25409. ]
  25410. ))
  25411. characterMakers.push(() => makeCharacter(
  25412. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25413. {
  25414. front: {
  25415. height: math.unit(1.6, "m"),
  25416. weight: math.unit(50, "kg"),
  25417. name: "Front",
  25418. image: {
  25419. source: "./media/characters/kiki/front.svg",
  25420. extra: 4682 / 3610,
  25421. bottom: 115 / 4777
  25422. }
  25423. },
  25424. },
  25425. [
  25426. {
  25427. name: "Normal",
  25428. height: math.unit(1.6, "meters"),
  25429. default: true
  25430. },
  25431. ]
  25432. ))
  25433. characterMakers.push(() => makeCharacter(
  25434. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25435. {
  25436. front: {
  25437. height: math.unit(50, "m"),
  25438. weight: math.unit(500, "tonnes"),
  25439. name: "Front",
  25440. image: {
  25441. source: "./media/characters/ryoko/front.svg",
  25442. extra: 4632 / 3926,
  25443. bottom: 193 / 4823
  25444. }
  25445. },
  25446. },
  25447. [
  25448. {
  25449. name: "Normal",
  25450. height: math.unit(50, "meters"),
  25451. default: true
  25452. },
  25453. ]
  25454. ))
  25455. characterMakers.push(() => makeCharacter(
  25456. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25457. {
  25458. front: {
  25459. height: math.unit(30, "m"),
  25460. weight: math.unit(22, "tonnes"),
  25461. name: "Front",
  25462. image: {
  25463. source: "./media/characters/elio/front.svg",
  25464. extra: 4582 / 3720,
  25465. bottom: 236 / 4828
  25466. }
  25467. },
  25468. },
  25469. [
  25470. {
  25471. name: "Normal",
  25472. height: math.unit(30, "meters"),
  25473. default: true
  25474. },
  25475. ]
  25476. ))
  25477. characterMakers.push(() => makeCharacter(
  25478. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25479. {
  25480. front: {
  25481. height: math.unit(6 + 3 / 12, "feet"),
  25482. weight: math.unit(120, "lb"),
  25483. name: "Front",
  25484. image: {
  25485. source: "./media/characters/azura/front.svg",
  25486. extra: 1149 / 1135,
  25487. bottom: 45 / 1194
  25488. }
  25489. },
  25490. frontClothed: {
  25491. height: math.unit(6 + 3 / 12, "feet"),
  25492. weight: math.unit(120, "lb"),
  25493. name: "Front (Clothed)",
  25494. image: {
  25495. source: "./media/characters/azura/front-clothed.svg",
  25496. extra: 1149 / 1135,
  25497. bottom: 45 / 1194
  25498. }
  25499. },
  25500. },
  25501. [
  25502. {
  25503. name: "Normal",
  25504. height: math.unit(6 + 3 / 12, "feet"),
  25505. default: true
  25506. },
  25507. {
  25508. name: "Macro",
  25509. height: math.unit(20 + 6 / 12, "feet")
  25510. },
  25511. {
  25512. name: "Megamacro",
  25513. height: math.unit(12, "miles")
  25514. },
  25515. {
  25516. name: "Gigamacro",
  25517. height: math.unit(10000, "miles")
  25518. },
  25519. {
  25520. name: "Teramacro",
  25521. height: math.unit(900000, "miles")
  25522. },
  25523. ]
  25524. ))
  25525. characterMakers.push(() => makeCharacter(
  25526. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25527. {
  25528. front: {
  25529. height: math.unit(12, "feet"),
  25530. weight: math.unit(1, "ton"),
  25531. capacity: math.unit(660000, "gallons"),
  25532. name: "Front",
  25533. image: {
  25534. source: "./media/characters/zeus/front.svg",
  25535. extra: 5005 / 4717,
  25536. bottom: 363 / 5388
  25537. }
  25538. },
  25539. },
  25540. [
  25541. {
  25542. name: "Normal",
  25543. height: math.unit(12, "feet")
  25544. },
  25545. {
  25546. name: "Preferred Size",
  25547. height: math.unit(0.5, "miles"),
  25548. default: true
  25549. },
  25550. {
  25551. name: "Giga Horse",
  25552. height: math.unit(300, "miles")
  25553. },
  25554. {
  25555. name: "Riding Planets",
  25556. height: math.unit(30, "megameters")
  25557. },
  25558. {
  25559. name: "Cosmic Giant",
  25560. height: math.unit(3, "zettameters")
  25561. },
  25562. {
  25563. name: "Breeding God",
  25564. height: math.unit(9.92e22, "yottameters")
  25565. },
  25566. ]
  25567. ))
  25568. characterMakers.push(() => makeCharacter(
  25569. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25570. {
  25571. side: {
  25572. height: math.unit(9, "feet"),
  25573. weight: math.unit(1500, "kg"),
  25574. name: "Side",
  25575. image: {
  25576. source: "./media/characters/fang/side.svg",
  25577. extra: 924 / 866,
  25578. bottom: 47.5 / 972.3
  25579. }
  25580. },
  25581. },
  25582. [
  25583. {
  25584. name: "Normal",
  25585. height: math.unit(9, "feet"),
  25586. default: true
  25587. },
  25588. {
  25589. name: "Macro",
  25590. height: math.unit(75 + 6 / 12, "feet")
  25591. },
  25592. {
  25593. name: "Teramacro",
  25594. height: math.unit(50000, "miles")
  25595. },
  25596. ]
  25597. ))
  25598. characterMakers.push(() => makeCharacter(
  25599. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25600. {
  25601. front: {
  25602. height: math.unit(10, "feet"),
  25603. weight: math.unit(2, "tons"),
  25604. name: "Front",
  25605. image: {
  25606. source: "./media/characters/rekhit/front.svg",
  25607. extra: 2796 / 2590,
  25608. bottom: 225 / 3022
  25609. }
  25610. },
  25611. },
  25612. [
  25613. {
  25614. name: "Normal",
  25615. height: math.unit(10, "feet"),
  25616. default: true
  25617. },
  25618. {
  25619. name: "Macro",
  25620. height: math.unit(500, "feet")
  25621. },
  25622. ]
  25623. ))
  25624. characterMakers.push(() => makeCharacter(
  25625. { name: "Dahlia Verrick" },
  25626. {
  25627. front: {
  25628. height: math.unit(7 + 6.451 / 12, "feet"),
  25629. weight: math.unit(310, "lb"),
  25630. name: "Front",
  25631. image: {
  25632. source: "./media/characters/dahlia-verrick/front.svg",
  25633. extra: 1488 / 1365,
  25634. bottom: 6.2 / 1495
  25635. }
  25636. },
  25637. back: {
  25638. height: math.unit(7 + 6.451 / 12, "feet"),
  25639. weight: math.unit(310, "lb"),
  25640. name: "Back",
  25641. image: {
  25642. source: "./media/characters/dahlia-verrick/back.svg",
  25643. extra: 1472 / 1351,
  25644. bottom: 5.28 / 1477
  25645. }
  25646. },
  25647. frontBusiness: {
  25648. height: math.unit(7 + 6.451 / 12, "feet"),
  25649. weight: math.unit(200, "lb"),
  25650. name: "Front (Business)",
  25651. image: {
  25652. source: "./media/characters/dahlia-verrick/front-business.svg",
  25653. extra: 1478 / 1381,
  25654. bottom: 5.5 / 1484
  25655. }
  25656. },
  25657. frontCasual: {
  25658. height: math.unit(7 + 6.451 / 12, "feet"),
  25659. weight: math.unit(200, "lb"),
  25660. name: "Front (Casual)",
  25661. image: {
  25662. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25663. extra: 1478 / 1381,
  25664. bottom: 5.5 / 1484
  25665. }
  25666. },
  25667. },
  25668. [
  25669. {
  25670. name: "Travel-Sized",
  25671. height: math.unit(7.45, "inches")
  25672. },
  25673. {
  25674. name: "Normal",
  25675. height: math.unit(7 + 6.451 / 12, "feet"),
  25676. default: true
  25677. },
  25678. {
  25679. name: "Hitting the Town",
  25680. height: math.unit(37 + 8 / 12, "feet")
  25681. },
  25682. {
  25683. name: "Stomp in the Suburbs",
  25684. height: math.unit(964 + 9.728 / 12, "feet")
  25685. },
  25686. {
  25687. name: "Sit on the City",
  25688. height: math.unit(61747 + 10.592 / 12, "feet")
  25689. },
  25690. {
  25691. name: "Glomp the Globe",
  25692. height: math.unit(252919327 + 4.832 / 12, "feet")
  25693. },
  25694. ]
  25695. ))
  25696. characterMakers.push(() => makeCharacter(
  25697. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25698. {
  25699. front: {
  25700. height: math.unit(6 + 4 / 12, "feet"),
  25701. weight: math.unit(320, "lb"),
  25702. name: "Front",
  25703. image: {
  25704. source: "./media/characters/balina-mahigan/front.svg",
  25705. extra: 447 / 428,
  25706. bottom: 18 / 466
  25707. }
  25708. },
  25709. back: {
  25710. height: math.unit(6 + 4 / 12, "feet"),
  25711. weight: math.unit(320, "lb"),
  25712. name: "Back",
  25713. image: {
  25714. source: "./media/characters/balina-mahigan/back.svg",
  25715. extra: 445 / 428,
  25716. bottom: 4.07 / 448
  25717. }
  25718. },
  25719. arm: {
  25720. height: math.unit(1.88, "feet"),
  25721. name: "Arm",
  25722. image: {
  25723. source: "./media/characters/balina-mahigan/arm.svg"
  25724. }
  25725. },
  25726. backPort: {
  25727. height: math.unit(0.685, "feet"),
  25728. name: "Back Port",
  25729. image: {
  25730. source: "./media/characters/balina-mahigan/back-port.svg"
  25731. }
  25732. },
  25733. hoofpaw: {
  25734. height: math.unit(1.41, "feet"),
  25735. name: "Hoofpaw",
  25736. image: {
  25737. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25738. }
  25739. },
  25740. leftHandBack: {
  25741. height: math.unit(0.938, "feet"),
  25742. name: "Left Hand (Back)",
  25743. image: {
  25744. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25745. }
  25746. },
  25747. leftHandFront: {
  25748. height: math.unit(0.938, "feet"),
  25749. name: "Left Hand (Front)",
  25750. image: {
  25751. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25752. }
  25753. },
  25754. rightHandBack: {
  25755. height: math.unit(0.95, "feet"),
  25756. name: "Right Hand (Back)",
  25757. image: {
  25758. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25759. }
  25760. },
  25761. rightHandFront: {
  25762. height: math.unit(0.95, "feet"),
  25763. name: "Right Hand (Front)",
  25764. image: {
  25765. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25766. }
  25767. },
  25768. },
  25769. [
  25770. {
  25771. name: "Normal",
  25772. height: math.unit(6 + 4 / 12, "feet"),
  25773. default: true
  25774. },
  25775. ]
  25776. ))
  25777. characterMakers.push(() => makeCharacter(
  25778. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25779. {
  25780. front: {
  25781. height: math.unit(6, "feet"),
  25782. weight: math.unit(320, "lb"),
  25783. name: "Front",
  25784. image: {
  25785. source: "./media/characters/balina-mejeri/front.svg",
  25786. extra: 517 / 488,
  25787. bottom: 44.2 / 561
  25788. }
  25789. },
  25790. },
  25791. [
  25792. {
  25793. name: "Normal",
  25794. height: math.unit(6 + 4 / 12, "feet")
  25795. },
  25796. {
  25797. name: "Business",
  25798. height: math.unit(155, "feet"),
  25799. default: true
  25800. },
  25801. ]
  25802. ))
  25803. characterMakers.push(() => makeCharacter(
  25804. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25805. {
  25806. kneeling: {
  25807. height: math.unit(6 + 4 / 12, "feet"),
  25808. weight: math.unit(300 * 20, "lb"),
  25809. name: "Kneeling",
  25810. image: {
  25811. source: "./media/characters/balbarian/kneeling.svg",
  25812. extra: 922 / 862,
  25813. bottom: 42.4 / 965
  25814. }
  25815. },
  25816. },
  25817. [
  25818. {
  25819. name: "Normal",
  25820. height: math.unit(6 + 4 / 12, "feet")
  25821. },
  25822. {
  25823. name: "Treasured",
  25824. height: math.unit(18 + 9 / 12, "feet"),
  25825. default: true
  25826. },
  25827. {
  25828. name: "Macro",
  25829. height: math.unit(900, "feet")
  25830. },
  25831. ]
  25832. ))
  25833. characterMakers.push(() => makeCharacter(
  25834. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25835. {
  25836. front: {
  25837. height: math.unit(6 + 4 / 12, "feet"),
  25838. weight: math.unit(325, "lb"),
  25839. name: "Front",
  25840. image: {
  25841. source: "./media/characters/balina-amarini/front.svg",
  25842. extra: 415 / 403,
  25843. bottom: 19 / 433.4
  25844. }
  25845. },
  25846. back: {
  25847. height: math.unit(6 + 4 / 12, "feet"),
  25848. weight: math.unit(325, "lb"),
  25849. name: "Back",
  25850. image: {
  25851. source: "./media/characters/balina-amarini/back.svg",
  25852. extra: 415 / 403,
  25853. bottom: 13.5 / 432
  25854. }
  25855. },
  25856. overdrive: {
  25857. height: math.unit(6 + 4 / 12, "feet"),
  25858. weight: math.unit(400, "lb"),
  25859. name: "Overdrive",
  25860. image: {
  25861. source: "./media/characters/balina-amarini/overdrive.svg",
  25862. extra: 269 / 259,
  25863. bottom: 12 / 282
  25864. }
  25865. },
  25866. },
  25867. [
  25868. {
  25869. name: "Boom",
  25870. height: math.unit(9 + 10 / 12, "feet"),
  25871. default: true
  25872. },
  25873. {
  25874. name: "Macro",
  25875. height: math.unit(280, "feet")
  25876. },
  25877. ]
  25878. ))
  25879. characterMakers.push(() => makeCharacter(
  25880. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25881. {
  25882. goddess: {
  25883. height: math.unit(600, "feet"),
  25884. weight: math.unit(2000000, "tons"),
  25885. name: "Goddess",
  25886. image: {
  25887. source: "./media/characters/lady-kubwa/goddess.svg",
  25888. extra: 1240.5 / 1223,
  25889. bottom: 22 / 1263
  25890. }
  25891. },
  25892. goddesser: {
  25893. height: math.unit(900, "feet"),
  25894. weight: math.unit(20000000, "lb"),
  25895. name: "Goddess-er",
  25896. image: {
  25897. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25898. extra: 899 / 888,
  25899. bottom: 12.6 / 912
  25900. }
  25901. },
  25902. },
  25903. [
  25904. {
  25905. name: "Macro",
  25906. height: math.unit(600, "feet"),
  25907. default: true
  25908. },
  25909. {
  25910. name: "Megamacro",
  25911. height: math.unit(250, "miles")
  25912. },
  25913. ]
  25914. ))
  25915. characterMakers.push(() => makeCharacter(
  25916. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25917. {
  25918. front: {
  25919. height: math.unit(7 + 7 / 12, "feet"),
  25920. weight: math.unit(250, "lb"),
  25921. name: "Front",
  25922. image: {
  25923. source: "./media/characters/tala-grovehorn/front.svg",
  25924. extra: 2636 / 2525,
  25925. bottom: 147 / 2781
  25926. }
  25927. },
  25928. back: {
  25929. height: math.unit(7 + 7 / 12, "feet"),
  25930. weight: math.unit(250, "lb"),
  25931. name: "Back",
  25932. image: {
  25933. source: "./media/characters/tala-grovehorn/back.svg",
  25934. extra: 2635 / 2539,
  25935. bottom: 100 / 2732.8
  25936. }
  25937. },
  25938. mouth: {
  25939. height: math.unit(1.15, "feet"),
  25940. name: "Mouth",
  25941. image: {
  25942. source: "./media/characters/tala-grovehorn/mouth.svg"
  25943. }
  25944. },
  25945. dick: {
  25946. height: math.unit(2.36, "feet"),
  25947. name: "Dick",
  25948. image: {
  25949. source: "./media/characters/tala-grovehorn/dick.svg"
  25950. }
  25951. },
  25952. slit: {
  25953. height: math.unit(0.61, "feet"),
  25954. name: "Slit",
  25955. image: {
  25956. source: "./media/characters/tala-grovehorn/slit.svg"
  25957. }
  25958. },
  25959. },
  25960. [
  25961. ]
  25962. ))
  25963. characterMakers.push(() => makeCharacter(
  25964. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25965. {
  25966. front: {
  25967. height: math.unit(7 + 7 / 12, "feet"),
  25968. weight: math.unit(225, "lb"),
  25969. name: "Front",
  25970. image: {
  25971. source: "./media/characters/epona/front.svg",
  25972. extra: 2445 / 2290,
  25973. bottom: 251 / 2696
  25974. }
  25975. },
  25976. back: {
  25977. height: math.unit(7 + 7 / 12, "feet"),
  25978. weight: math.unit(225, "lb"),
  25979. name: "Back",
  25980. image: {
  25981. source: "./media/characters/epona/back.svg",
  25982. extra: 2546 / 2408,
  25983. bottom: 44 / 2589
  25984. }
  25985. },
  25986. genitals: {
  25987. height: math.unit(1.5, "feet"),
  25988. name: "Genitals",
  25989. image: {
  25990. source: "./media/characters/epona/genitals.svg"
  25991. }
  25992. },
  25993. },
  25994. [
  25995. {
  25996. name: "Normal",
  25997. height: math.unit(7 + 7 / 12, "feet"),
  25998. default: true
  25999. },
  26000. ]
  26001. ))
  26002. characterMakers.push(() => makeCharacter(
  26003. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26004. {
  26005. front: {
  26006. height: math.unit(7, "feet"),
  26007. weight: math.unit(518, "lb"),
  26008. name: "Front",
  26009. image: {
  26010. source: "./media/characters/avia-bloodbourn/front.svg",
  26011. extra: 1466 / 1350,
  26012. bottom: 65 / 1527
  26013. }
  26014. },
  26015. },
  26016. [
  26017. ]
  26018. ))
  26019. characterMakers.push(() => makeCharacter(
  26020. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26021. {
  26022. front: {
  26023. height: math.unit(9.35, "feet"),
  26024. weight: math.unit(600, "lb"),
  26025. name: "Front",
  26026. image: {
  26027. source: "./media/characters/amera/front.svg",
  26028. extra: 891 / 818,
  26029. bottom: 30 / 922.7
  26030. }
  26031. },
  26032. back: {
  26033. height: math.unit(9.35, "feet"),
  26034. weight: math.unit(600, "lb"),
  26035. name: "Back",
  26036. image: {
  26037. source: "./media/characters/amera/back.svg",
  26038. extra: 876 / 824,
  26039. bottom: 6.8 / 884
  26040. }
  26041. },
  26042. dick: {
  26043. height: math.unit(2.14, "feet"),
  26044. name: "Dick",
  26045. image: {
  26046. source: "./media/characters/amera/dick.svg"
  26047. }
  26048. },
  26049. },
  26050. [
  26051. {
  26052. name: "Normal",
  26053. height: math.unit(9.35, "feet"),
  26054. default: true
  26055. },
  26056. ]
  26057. ))
  26058. characterMakers.push(() => makeCharacter(
  26059. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26060. {
  26061. kneeling: {
  26062. height: math.unit(3 + 4 / 12, "feet"),
  26063. weight: math.unit(90, "lb"),
  26064. name: "Kneeling",
  26065. image: {
  26066. source: "./media/characters/rosewen/kneeling.svg",
  26067. extra: 1835 / 1571,
  26068. bottom: 27.7 / 1862
  26069. }
  26070. },
  26071. },
  26072. [
  26073. {
  26074. name: "Normal",
  26075. height: math.unit(3 + 4 / 12, "feet"),
  26076. default: true
  26077. },
  26078. ]
  26079. ))
  26080. characterMakers.push(() => makeCharacter(
  26081. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26082. {
  26083. front: {
  26084. height: math.unit(5 + 10 / 12, "feet"),
  26085. weight: math.unit(200, "lb"),
  26086. name: "Front",
  26087. image: {
  26088. source: "./media/characters/sabah/front.svg",
  26089. extra: 849 / 763,
  26090. bottom: 33.9 / 881
  26091. }
  26092. },
  26093. },
  26094. [
  26095. {
  26096. name: "Normal",
  26097. height: math.unit(5 + 10 / 12, "feet"),
  26098. default: true
  26099. },
  26100. ]
  26101. ))
  26102. characterMakers.push(() => makeCharacter(
  26103. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26104. {
  26105. front: {
  26106. height: math.unit(3 + 5 / 12, "feet"),
  26107. weight: math.unit(40, "kg"),
  26108. name: "Front",
  26109. image: {
  26110. source: "./media/characters/purple-flame/front.svg",
  26111. extra: 1577 / 1412,
  26112. bottom: 97 / 1694
  26113. }
  26114. },
  26115. frontDressed: {
  26116. height: math.unit(3 + 5 / 12, "feet"),
  26117. weight: math.unit(40, "kg"),
  26118. name: "Front (Dressed)",
  26119. image: {
  26120. source: "./media/characters/purple-flame/front-dressed.svg",
  26121. extra: 1577 / 1412,
  26122. bottom: 97 / 1694
  26123. }
  26124. },
  26125. headphones: {
  26126. height: math.unit(0.85, "feet"),
  26127. name: "Headphones",
  26128. image: {
  26129. source: "./media/characters/purple-flame/headphones.svg"
  26130. }
  26131. },
  26132. },
  26133. [
  26134. {
  26135. name: "Really Small",
  26136. height: math.unit(5, "cm")
  26137. },
  26138. {
  26139. name: "Micro",
  26140. height: math.unit(1 + 5 / 12, "feet")
  26141. },
  26142. {
  26143. name: "Normal",
  26144. height: math.unit(3 + 5 / 12, "feet"),
  26145. default: true
  26146. },
  26147. {
  26148. name: "Minimacro",
  26149. height: math.unit(125, "feet")
  26150. },
  26151. {
  26152. name: "Macro",
  26153. height: math.unit(0.5, "miles")
  26154. },
  26155. {
  26156. name: "Megamacro",
  26157. height: math.unit(50, "miles")
  26158. },
  26159. {
  26160. name: "Gigantic",
  26161. height: math.unit(750, "miles")
  26162. },
  26163. {
  26164. name: "Planetary",
  26165. height: math.unit(15000, "miles")
  26166. },
  26167. ]
  26168. ))
  26169. characterMakers.push(() => makeCharacter(
  26170. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26171. {
  26172. front: {
  26173. height: math.unit(14, "feet"),
  26174. weight: math.unit(959, "lb"),
  26175. name: "Front",
  26176. image: {
  26177. source: "./media/characters/arsenal/front.svg",
  26178. extra: 2357 / 2157,
  26179. bottom: 93 / 2458
  26180. }
  26181. },
  26182. },
  26183. [
  26184. {
  26185. name: "Normal",
  26186. height: math.unit(14, "feet"),
  26187. default: true
  26188. },
  26189. ]
  26190. ))
  26191. characterMakers.push(() => makeCharacter(
  26192. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26193. {
  26194. front: {
  26195. height: math.unit(6, "feet"),
  26196. weight: math.unit(150, "lb"),
  26197. name: "Front",
  26198. image: {
  26199. source: "./media/characters/adira/front.svg",
  26200. extra: 1078 / 1029,
  26201. bottom: 87 / 1166
  26202. }
  26203. },
  26204. },
  26205. [
  26206. {
  26207. name: "Micro",
  26208. height: math.unit(4, "inches"),
  26209. default: true
  26210. },
  26211. {
  26212. name: "Macro",
  26213. height: math.unit(50, "feet")
  26214. },
  26215. ]
  26216. ))
  26217. characterMakers.push(() => makeCharacter(
  26218. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26219. {
  26220. front: {
  26221. height: math.unit(16, "feet"),
  26222. weight: math.unit(1000, "lb"),
  26223. name: "Front",
  26224. image: {
  26225. source: "./media/characters/grim/front.svg",
  26226. extra: 622 / 614,
  26227. bottom: 18.1 / 642
  26228. }
  26229. },
  26230. back: {
  26231. height: math.unit(16, "feet"),
  26232. weight: math.unit(1000, "lb"),
  26233. name: "Back",
  26234. image: {
  26235. source: "./media/characters/grim/back.svg",
  26236. extra: 610.6 / 602,
  26237. bottom: 40.8 / 652
  26238. }
  26239. },
  26240. hunched: {
  26241. height: math.unit(9.75, "feet"),
  26242. weight: math.unit(1000, "lb"),
  26243. name: "Hunched",
  26244. image: {
  26245. source: "./media/characters/grim/hunched.svg",
  26246. extra: 304 / 297,
  26247. bottom: 35.4 / 394
  26248. }
  26249. },
  26250. },
  26251. [
  26252. {
  26253. name: "Normal",
  26254. height: math.unit(16, "feet"),
  26255. default: true
  26256. },
  26257. ]
  26258. ))
  26259. characterMakers.push(() => makeCharacter(
  26260. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26261. {
  26262. front: {
  26263. height: math.unit(2.3, "meters"),
  26264. weight: math.unit(300, "lb"),
  26265. name: "Front",
  26266. image: {
  26267. source: "./media/characters/sinja/front-sfw.svg",
  26268. extra: 1393 / 1294,
  26269. bottom: 70 / 1463
  26270. }
  26271. },
  26272. frontNsfw: {
  26273. height: math.unit(2.3, "meters"),
  26274. weight: math.unit(300, "lb"),
  26275. name: "Front (NSFW)",
  26276. image: {
  26277. source: "./media/characters/sinja/front-nsfw.svg",
  26278. extra: 1393 / 1294,
  26279. bottom: 70 / 1463
  26280. }
  26281. },
  26282. back: {
  26283. height: math.unit(2.3, "meters"),
  26284. weight: math.unit(300, "lb"),
  26285. name: "Back",
  26286. image: {
  26287. source: "./media/characters/sinja/back.svg",
  26288. extra: 1393 / 1294,
  26289. bottom: 70 / 1463
  26290. }
  26291. },
  26292. head: {
  26293. height: math.unit(1.771, "feet"),
  26294. name: "Head",
  26295. image: {
  26296. source: "./media/characters/sinja/head.svg"
  26297. }
  26298. },
  26299. slit: {
  26300. height: math.unit(0.8, "feet"),
  26301. name: "Slit",
  26302. image: {
  26303. source: "./media/characters/sinja/slit.svg"
  26304. }
  26305. },
  26306. },
  26307. [
  26308. {
  26309. name: "Normal",
  26310. height: math.unit(2.3, "meters")
  26311. },
  26312. {
  26313. name: "Macro",
  26314. height: math.unit(91, "meters"),
  26315. default: true
  26316. },
  26317. {
  26318. name: "Megamacro",
  26319. height: math.unit(91440, "meters")
  26320. },
  26321. {
  26322. name: "Gigamacro",
  26323. height: math.unit(60960000, "meters")
  26324. },
  26325. {
  26326. name: "Teramacro",
  26327. height: math.unit(9144000000, "meters")
  26328. },
  26329. ]
  26330. ))
  26331. characterMakers.push(() => makeCharacter(
  26332. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26333. {
  26334. front: {
  26335. height: math.unit(1.7, "meters"),
  26336. weight: math.unit(130, "lb"),
  26337. name: "Front",
  26338. image: {
  26339. source: "./media/characters/kyu/front.svg",
  26340. extra: 415 / 395,
  26341. bottom: 5 / 420
  26342. }
  26343. },
  26344. head: {
  26345. height: math.unit(1.75, "feet"),
  26346. name: "Head",
  26347. image: {
  26348. source: "./media/characters/kyu/head.svg"
  26349. }
  26350. },
  26351. foot: {
  26352. height: math.unit(0.81, "feet"),
  26353. name: "Foot",
  26354. image: {
  26355. source: "./media/characters/kyu/foot.svg"
  26356. }
  26357. },
  26358. },
  26359. [
  26360. {
  26361. name: "Normal",
  26362. height: math.unit(1.7, "meters")
  26363. },
  26364. {
  26365. name: "Macro",
  26366. height: math.unit(131, "feet"),
  26367. default: true
  26368. },
  26369. {
  26370. name: "Megamacro",
  26371. height: math.unit(91440, "meters")
  26372. },
  26373. {
  26374. name: "Gigamacro",
  26375. height: math.unit(60960000, "meters")
  26376. },
  26377. {
  26378. name: "Teramacro",
  26379. height: math.unit(9144000000, "meters")
  26380. },
  26381. ]
  26382. ))
  26383. characterMakers.push(() => makeCharacter(
  26384. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26385. {
  26386. front: {
  26387. height: math.unit(7 + 1 / 12, "feet"),
  26388. weight: math.unit(250, "lb"),
  26389. name: "Front",
  26390. image: {
  26391. source: "./media/characters/joey/front.svg",
  26392. extra: 1791 / 1537,
  26393. bottom: 28 / 1816
  26394. }
  26395. },
  26396. },
  26397. [
  26398. {
  26399. name: "Micro",
  26400. height: math.unit(3, "inches")
  26401. },
  26402. {
  26403. name: "Normal",
  26404. height: math.unit(7 + 1 / 12, "feet"),
  26405. default: true
  26406. },
  26407. ]
  26408. ))
  26409. characterMakers.push(() => makeCharacter(
  26410. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26411. {
  26412. front: {
  26413. height: math.unit(165, "cm"),
  26414. weight: math.unit(140, "lb"),
  26415. name: "Front",
  26416. image: {
  26417. source: "./media/characters/sam-evans/front.svg",
  26418. extra: 3417 / 3230,
  26419. bottom: 41.3 / 3417
  26420. }
  26421. },
  26422. frontSixTails: {
  26423. height: math.unit(165, "cm"),
  26424. weight: math.unit(140, "lb"),
  26425. name: "Front-six-tails",
  26426. image: {
  26427. source: "./media/characters/sam-evans/front-six-tails.svg",
  26428. extra: 3417 / 3230,
  26429. bottom: 41.3 / 3417
  26430. }
  26431. },
  26432. back: {
  26433. height: math.unit(165, "cm"),
  26434. weight: math.unit(140, "lb"),
  26435. name: "Back",
  26436. image: {
  26437. source: "./media/characters/sam-evans/back.svg",
  26438. extra: 3227 / 3032,
  26439. bottom: 6.8 / 3234
  26440. }
  26441. },
  26442. face: {
  26443. height: math.unit(0.68, "feet"),
  26444. name: "Face",
  26445. image: {
  26446. source: "./media/characters/sam-evans/face.svg"
  26447. }
  26448. },
  26449. },
  26450. [
  26451. {
  26452. name: "Normal",
  26453. height: math.unit(165, "cm"),
  26454. default: true
  26455. },
  26456. {
  26457. name: "Macro",
  26458. height: math.unit(100, "meters")
  26459. },
  26460. {
  26461. name: "Macro+",
  26462. height: math.unit(800, "meters")
  26463. },
  26464. {
  26465. name: "Macro++",
  26466. height: math.unit(3, "km")
  26467. },
  26468. {
  26469. name: "Macro+++",
  26470. height: math.unit(30, "km")
  26471. },
  26472. ]
  26473. ))
  26474. characterMakers.push(() => makeCharacter(
  26475. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26476. {
  26477. front: {
  26478. height: math.unit(10, "feet"),
  26479. weight: math.unit(750, "lb"),
  26480. name: "Front",
  26481. image: {
  26482. source: "./media/characters/juliet-a/front.svg",
  26483. extra: 1766 / 1720,
  26484. bottom: 43 / 1809
  26485. }
  26486. },
  26487. back: {
  26488. height: math.unit(10, "feet"),
  26489. weight: math.unit(750, "lb"),
  26490. name: "Back",
  26491. image: {
  26492. source: "./media/characters/juliet-a/back.svg",
  26493. extra: 1781 / 1734,
  26494. bottom: 35 / 1810,
  26495. }
  26496. },
  26497. },
  26498. [
  26499. {
  26500. name: "Normal",
  26501. height: math.unit(10, "feet"),
  26502. default: true
  26503. },
  26504. {
  26505. name: "Dragon Form",
  26506. height: math.unit(250, "feet")
  26507. },
  26508. {
  26509. name: "Macro",
  26510. height: math.unit(1000, "feet")
  26511. },
  26512. {
  26513. name: "Megamacro",
  26514. height: math.unit(10000, "feet")
  26515. }
  26516. ]
  26517. ))
  26518. characterMakers.push(() => makeCharacter(
  26519. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26520. {
  26521. regular: {
  26522. height: math.unit(7 + 3 / 12, "feet"),
  26523. weight: math.unit(260, "lb"),
  26524. name: "Regular",
  26525. image: {
  26526. source: "./media/characters/wild/regular.svg",
  26527. extra: 97.45 / 92,
  26528. bottom: 6.8 / 104.3
  26529. }
  26530. },
  26531. biggums: {
  26532. height: math.unit(8 + 6 / 12, "feet"),
  26533. weight: math.unit(425, "lb"),
  26534. name: "Biggums",
  26535. image: {
  26536. source: "./media/characters/wild/biggums.svg",
  26537. extra: 97.45 / 92,
  26538. bottom: 7.5 / 132.34
  26539. }
  26540. },
  26541. mawRegular: {
  26542. height: math.unit(1.24, "feet"),
  26543. name: "Maw (Regular)",
  26544. image: {
  26545. source: "./media/characters/wild/maw.svg"
  26546. }
  26547. },
  26548. mawBiggums: {
  26549. height: math.unit(1.47, "feet"),
  26550. name: "Maw (Biggums)",
  26551. image: {
  26552. source: "./media/characters/wild/maw.svg"
  26553. }
  26554. },
  26555. },
  26556. [
  26557. {
  26558. name: "Normal",
  26559. height: math.unit(7 + 3 / 12, "feet"),
  26560. default: true
  26561. },
  26562. ]
  26563. ))
  26564. characterMakers.push(() => makeCharacter(
  26565. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26566. {
  26567. front: {
  26568. height: math.unit(2.5, "meters"),
  26569. weight: math.unit(200, "kg"),
  26570. name: "Front",
  26571. image: {
  26572. source: "./media/characters/vidar/front.svg",
  26573. extra: 2994 / 2795,
  26574. bottom: 56 / 3061
  26575. }
  26576. },
  26577. back: {
  26578. height: math.unit(2.5, "meters"),
  26579. weight: math.unit(200, "kg"),
  26580. name: "Back",
  26581. image: {
  26582. source: "./media/characters/vidar/back.svg",
  26583. extra: 3131 / 2928,
  26584. bottom: 13.5 / 3141.5
  26585. }
  26586. },
  26587. feral: {
  26588. height: math.unit(2.5, "meters"),
  26589. weight: math.unit(2000, "kg"),
  26590. name: "Feral",
  26591. image: {
  26592. source: "./media/characters/vidar/feral.svg",
  26593. extra: 2790 / 1765,
  26594. bottom: 6 / 2796
  26595. }
  26596. },
  26597. },
  26598. [
  26599. {
  26600. name: "Normal",
  26601. height: math.unit(2.5, "meters"),
  26602. default: true
  26603. },
  26604. {
  26605. name: "Macro",
  26606. height: math.unit(100, "meters")
  26607. },
  26608. ]
  26609. ))
  26610. characterMakers.push(() => makeCharacter(
  26611. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26612. {
  26613. front: {
  26614. height: math.unit(5 + 9 / 12, "feet"),
  26615. weight: math.unit(120, "lb"),
  26616. name: "Front",
  26617. image: {
  26618. source: "./media/characters/ash/front.svg",
  26619. extra: 2189 / 1961,
  26620. bottom: 5.2 / 2194
  26621. }
  26622. },
  26623. },
  26624. [
  26625. {
  26626. name: "Normal",
  26627. height: math.unit(5 + 9 / 12, "feet"),
  26628. default: true
  26629. },
  26630. ]
  26631. ))
  26632. characterMakers.push(() => makeCharacter(
  26633. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26634. {
  26635. front: {
  26636. height: math.unit(9, "feet"),
  26637. weight: math.unit(10000, "lb"),
  26638. name: "Front",
  26639. image: {
  26640. source: "./media/characters/gygabite/front.svg",
  26641. bottom: 31.7 / 537.8,
  26642. extra: 505 / 370
  26643. }
  26644. },
  26645. },
  26646. [
  26647. {
  26648. name: "Normal",
  26649. height: math.unit(9, "feet"),
  26650. default: true
  26651. },
  26652. ]
  26653. ))
  26654. characterMakers.push(() => makeCharacter(
  26655. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26656. {
  26657. front: {
  26658. height: math.unit(12, "feet"),
  26659. weight: math.unit(35000, "lb"),
  26660. name: "Front",
  26661. image: {
  26662. source: "./media/characters/p0tat0/front.svg",
  26663. extra: 1065 / 921,
  26664. bottom: 55.7 / 1121.25
  26665. }
  26666. },
  26667. },
  26668. [
  26669. {
  26670. name: "Normal",
  26671. height: math.unit(12, "feet"),
  26672. default: true
  26673. },
  26674. ]
  26675. ))
  26676. characterMakers.push(() => makeCharacter(
  26677. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26678. {
  26679. side: {
  26680. height: math.unit(6.5, "feet"),
  26681. weight: math.unit(800, "lb"),
  26682. name: "Side",
  26683. image: {
  26684. source: "./media/characters/dusk/side.svg",
  26685. extra: 615 / 373,
  26686. bottom: 53 / 664
  26687. }
  26688. },
  26689. sitting: {
  26690. height: math.unit(7, "feet"),
  26691. weight: math.unit(800, "lb"),
  26692. name: "Sitting",
  26693. image: {
  26694. source: "./media/characters/dusk/sitting.svg",
  26695. extra: 753 / 425,
  26696. bottom: 33 / 774
  26697. }
  26698. },
  26699. head: {
  26700. height: math.unit(6.1, "feet"),
  26701. name: "Head",
  26702. image: {
  26703. source: "./media/characters/dusk/head.svg"
  26704. }
  26705. },
  26706. },
  26707. [
  26708. {
  26709. name: "Normal",
  26710. height: math.unit(7, "feet"),
  26711. default: true
  26712. },
  26713. ]
  26714. ))
  26715. characterMakers.push(() => makeCharacter(
  26716. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26717. {
  26718. front: {
  26719. height: math.unit(15, "feet"),
  26720. weight: math.unit(7000, "lb"),
  26721. name: "Front",
  26722. image: {
  26723. source: "./media/characters/jay-direwolf/front.svg",
  26724. extra: 1810 / 1732,
  26725. bottom: 66 / 1892
  26726. }
  26727. },
  26728. },
  26729. [
  26730. {
  26731. name: "Normal",
  26732. height: math.unit(15, "feet"),
  26733. default: true
  26734. },
  26735. ]
  26736. ))
  26737. characterMakers.push(() => makeCharacter(
  26738. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26739. {
  26740. front: {
  26741. height: math.unit(4 + 9 / 12, "feet"),
  26742. weight: math.unit(130, "lb"),
  26743. name: "Front",
  26744. image: {
  26745. source: "./media/characters/anchovie/front.svg",
  26746. extra: 382 / 350,
  26747. bottom: 25 / 409
  26748. }
  26749. },
  26750. back: {
  26751. height: math.unit(4 + 9 / 12, "feet"),
  26752. weight: math.unit(130, "lb"),
  26753. name: "Back",
  26754. image: {
  26755. source: "./media/characters/anchovie/back.svg",
  26756. extra: 385 / 352,
  26757. bottom: 16.6 / 402
  26758. }
  26759. },
  26760. frontDressed: {
  26761. height: math.unit(4 + 9 / 12, "feet"),
  26762. weight: math.unit(130, "lb"),
  26763. name: "Front (Dressed)",
  26764. image: {
  26765. source: "./media/characters/anchovie/front-dressed.svg",
  26766. extra: 382 / 350,
  26767. bottom: 25 / 409
  26768. }
  26769. },
  26770. backDressed: {
  26771. height: math.unit(4 + 9 / 12, "feet"),
  26772. weight: math.unit(130, "lb"),
  26773. name: "Back (Dressed)",
  26774. image: {
  26775. source: "./media/characters/anchovie/back-dressed.svg",
  26776. extra: 385 / 352,
  26777. bottom: 16.6 / 402
  26778. }
  26779. },
  26780. },
  26781. [
  26782. {
  26783. name: "Micro",
  26784. height: math.unit(6.4, "inches")
  26785. },
  26786. {
  26787. name: "Normal",
  26788. height: math.unit(4 + 9 / 12, "feet"),
  26789. default: true
  26790. },
  26791. ]
  26792. ))
  26793. characterMakers.push(() => makeCharacter(
  26794. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26795. {
  26796. front: {
  26797. height: math.unit(2, "meters"),
  26798. weight: math.unit(180, "lb"),
  26799. name: "Front",
  26800. image: {
  26801. source: "./media/characters/acidrenamon/front.svg",
  26802. extra: 987 / 890,
  26803. bottom: 22.8 / 1009
  26804. }
  26805. },
  26806. back: {
  26807. height: math.unit(2, "meters"),
  26808. weight: math.unit(180, "lb"),
  26809. name: "Back",
  26810. image: {
  26811. source: "./media/characters/acidrenamon/back.svg",
  26812. extra: 983 / 891,
  26813. bottom: 8.4 / 992
  26814. }
  26815. },
  26816. head: {
  26817. height: math.unit(1.92, "feet"),
  26818. name: "Head",
  26819. image: {
  26820. source: "./media/characters/acidrenamon/head.svg"
  26821. }
  26822. },
  26823. rump: {
  26824. height: math.unit(1.72, "feet"),
  26825. name: "Rump",
  26826. image: {
  26827. source: "./media/characters/acidrenamon/rump.svg"
  26828. }
  26829. },
  26830. tail: {
  26831. height: math.unit(4.2, "feet"),
  26832. name: "Tail",
  26833. image: {
  26834. source: "./media/characters/acidrenamon/tail.svg"
  26835. }
  26836. },
  26837. },
  26838. [
  26839. {
  26840. name: "Normal",
  26841. height: math.unit(2, "meters"),
  26842. default: true
  26843. },
  26844. {
  26845. name: "Minimacro",
  26846. height: math.unit(7, "meters")
  26847. },
  26848. {
  26849. name: "Macro",
  26850. height: math.unit(200, "meters")
  26851. },
  26852. {
  26853. name: "Gigamacro",
  26854. height: math.unit(0.2, "earths")
  26855. },
  26856. ]
  26857. ))
  26858. characterMakers.push(() => makeCharacter(
  26859. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26860. {
  26861. front: {
  26862. height: math.unit(6, "feet"),
  26863. weight: math.unit(150, "lb"),
  26864. name: "Front",
  26865. image: {
  26866. source: "./media/characters/kenzie-lee/front.svg",
  26867. extra: 1525 / 1465,
  26868. bottom: 45 / 1570
  26869. }
  26870. },
  26871. side: {
  26872. height: math.unit(6, "feet"),
  26873. weight: math.unit(150, "lb"),
  26874. name: "Side",
  26875. image: {
  26876. source: "./media/characters/kenzie-lee/side.svg",
  26877. extra: 5505 / 5383,
  26878. bottom: 60 / 5573
  26879. }
  26880. },
  26881. paw: {
  26882. height: math.unit(0.57, "feet"),
  26883. name: "Paw",
  26884. image: {
  26885. source: "./media/characters/kenzie-lee/paw.svg"
  26886. }
  26887. },
  26888. },
  26889. [
  26890. {
  26891. name: "Normal",
  26892. height: math.unit(152, "feet"),
  26893. default: true
  26894. },
  26895. {
  26896. name: "Megamacro",
  26897. height: math.unit(7, "miles")
  26898. },
  26899. {
  26900. name: "Gigamacro",
  26901. height: math.unit(8000, "miles")
  26902. },
  26903. ]
  26904. ))
  26905. characterMakers.push(() => makeCharacter(
  26906. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26907. {
  26908. side: {
  26909. height: math.unit(6, "feet"),
  26910. weight: math.unit(150, "lb"),
  26911. name: "Side",
  26912. image: {
  26913. source: "./media/characters/withers/side.svg",
  26914. extra: 1830 / 1728,
  26915. bottom: 96 / 1927
  26916. }
  26917. },
  26918. front: {
  26919. height: math.unit(6, "feet"),
  26920. weight: math.unit(150, "lb"),
  26921. name: "Front",
  26922. image: {
  26923. source: "./media/characters/withers/front.svg",
  26924. extra: 1514 / 1438,
  26925. bottom: 118 / 1632
  26926. }
  26927. },
  26928. },
  26929. [
  26930. {
  26931. name: "Macro",
  26932. height: math.unit(168, "feet"),
  26933. default: true
  26934. },
  26935. {
  26936. name: "Megamacro",
  26937. height: math.unit(15, "miles")
  26938. }
  26939. ]
  26940. ))
  26941. characterMakers.push(() => makeCharacter(
  26942. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26943. {
  26944. front: {
  26945. height: math.unit(6 + 7 / 12, "feet"),
  26946. weight: math.unit(250, "lb"),
  26947. name: "Front",
  26948. image: {
  26949. source: "./media/characters/nemoskii/front.svg",
  26950. extra: 2270 / 1734,
  26951. bottom: 86 / 2354
  26952. }
  26953. },
  26954. back: {
  26955. height: math.unit(6 + 7 / 12, "feet"),
  26956. weight: math.unit(250, "lb"),
  26957. name: "Back",
  26958. image: {
  26959. source: "./media/characters/nemoskii/back.svg",
  26960. extra: 1845 / 1788,
  26961. bottom: 10.5 / 1852
  26962. }
  26963. },
  26964. head: {
  26965. height: math.unit(1.31, "feet"),
  26966. name: "Head",
  26967. image: {
  26968. source: "./media/characters/nemoskii/head.svg"
  26969. }
  26970. },
  26971. },
  26972. [
  26973. {
  26974. name: "Micro",
  26975. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26976. },
  26977. {
  26978. name: "Normal",
  26979. height: math.unit(6 + 7 / 12, "feet"),
  26980. default: true
  26981. },
  26982. {
  26983. name: "Macro",
  26984. height: math.unit((6 + 7 / 12) * 150, "feet")
  26985. },
  26986. {
  26987. name: "Macro+",
  26988. height: math.unit((6 + 7 / 12) * 500, "feet")
  26989. },
  26990. {
  26991. name: "Megamacro",
  26992. height: math.unit((6 + 7 / 12) * 100000, "feet")
  26993. },
  26994. ]
  26995. ))
  26996. characterMakers.push(() => makeCharacter(
  26997. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26998. {
  26999. front: {
  27000. height: math.unit(1, "mile"),
  27001. weight: math.unit(265261.9, "lb"),
  27002. name: "Front",
  27003. image: {
  27004. source: "./media/characters/shui/front.svg",
  27005. extra: 1633 / 1564,
  27006. bottom: 91.5 / 1726
  27007. }
  27008. },
  27009. },
  27010. [
  27011. {
  27012. name: "Macro",
  27013. height: math.unit(1, "mile"),
  27014. default: true
  27015. },
  27016. ]
  27017. ))
  27018. characterMakers.push(() => makeCharacter(
  27019. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27020. {
  27021. front: {
  27022. height: math.unit(12 + 6 / 12, "feet"),
  27023. weight: math.unit(1342, "lb"),
  27024. name: "Front",
  27025. image: {
  27026. source: "./media/characters/arokh-takakura/front.svg",
  27027. extra: 1089 / 1043,
  27028. bottom: 77.4 / 1176.7
  27029. }
  27030. },
  27031. back: {
  27032. height: math.unit(12 + 6 / 12, "feet"),
  27033. weight: math.unit(1342, "lb"),
  27034. name: "Back",
  27035. image: {
  27036. source: "./media/characters/arokh-takakura/back.svg",
  27037. extra: 1046 / 1019,
  27038. bottom: 102 / 1150
  27039. }
  27040. },
  27041. },
  27042. [
  27043. {
  27044. name: "Big",
  27045. height: math.unit(12 + 6 / 12, "feet"),
  27046. default: true
  27047. },
  27048. ]
  27049. ))
  27050. characterMakers.push(() => makeCharacter(
  27051. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27052. {
  27053. front: {
  27054. height: math.unit(5 + 6 / 12, "feet"),
  27055. weight: math.unit(150, "lb"),
  27056. name: "Front",
  27057. image: {
  27058. source: "./media/characters/theo/front.svg",
  27059. extra: 1184 / 1131,
  27060. bottom: 7.4 / 1191
  27061. }
  27062. },
  27063. },
  27064. [
  27065. {
  27066. name: "Micro",
  27067. height: math.unit(5, "inches")
  27068. },
  27069. {
  27070. name: "Normal",
  27071. height: math.unit(5 + 6 / 12, "feet"),
  27072. default: true
  27073. },
  27074. ]
  27075. ))
  27076. characterMakers.push(() => makeCharacter(
  27077. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27078. {
  27079. front: {
  27080. height: math.unit(5 + 9 / 12, "feet"),
  27081. weight: math.unit(130, "lb"),
  27082. name: "Front",
  27083. image: {
  27084. source: "./media/characters/cecelia-swift/front.svg",
  27085. extra: 502 / 484,
  27086. bottom: 23 / 523
  27087. }
  27088. },
  27089. back: {
  27090. height: math.unit(5 + 9 / 12, "feet"),
  27091. weight: math.unit(130, "lb"),
  27092. name: "Back",
  27093. image: {
  27094. source: "./media/characters/cecelia-swift/back.svg",
  27095. extra: 499 / 485,
  27096. bottom: 12 / 511
  27097. }
  27098. },
  27099. head: {
  27100. height: math.unit(0.90, "feet"),
  27101. name: "Head",
  27102. image: {
  27103. source: "./media/characters/cecelia-swift/head.svg"
  27104. }
  27105. },
  27106. rump: {
  27107. height: math.unit(1.75, "feet"),
  27108. name: "Rump",
  27109. image: {
  27110. source: "./media/characters/cecelia-swift/rump.svg"
  27111. }
  27112. },
  27113. },
  27114. [
  27115. {
  27116. name: "Normal",
  27117. height: math.unit(5 + 9 / 12, "feet"),
  27118. default: true
  27119. },
  27120. {
  27121. name: "Big",
  27122. height: math.unit(50, "feet")
  27123. },
  27124. {
  27125. name: "Macro",
  27126. height: math.unit(100, "feet")
  27127. },
  27128. {
  27129. name: "Macro+",
  27130. height: math.unit(500, "feet")
  27131. },
  27132. {
  27133. name: "Macro++",
  27134. height: math.unit(1000, "feet")
  27135. },
  27136. ]
  27137. ))
  27138. characterMakers.push(() => makeCharacter(
  27139. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27140. {
  27141. front: {
  27142. height: math.unit(6, "feet"),
  27143. weight: math.unit(150, "lb"),
  27144. name: "Front",
  27145. image: {
  27146. source: "./media/characters/kaunan/front.svg",
  27147. extra: 2890 / 2523,
  27148. bottom: 49 / 2939
  27149. }
  27150. },
  27151. },
  27152. [
  27153. {
  27154. name: "Macro",
  27155. height: math.unit(150, "feet"),
  27156. default: true
  27157. },
  27158. ]
  27159. ))
  27160. characterMakers.push(() => makeCharacter(
  27161. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27162. {
  27163. front: {
  27164. height: math.unit(175, "cm"),
  27165. weight: math.unit(60, "kg"),
  27166. name: "Front",
  27167. image: {
  27168. source: "./media/characters/fei/front.svg",
  27169. extra: 2581 / 2400,
  27170. bottom: 82.2 / 2663
  27171. }
  27172. },
  27173. },
  27174. [
  27175. {
  27176. name: "Mortal",
  27177. height: math.unit(175, "cm")
  27178. },
  27179. {
  27180. name: "Normal",
  27181. height: math.unit(3500, "m"),
  27182. default: true
  27183. },
  27184. {
  27185. name: "Stroll",
  27186. height: math.unit(17.5, "km")
  27187. },
  27188. {
  27189. name: "Showoff",
  27190. height: math.unit(175, "km")
  27191. },
  27192. ]
  27193. ))
  27194. characterMakers.push(() => makeCharacter(
  27195. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27196. {
  27197. front: {
  27198. height: math.unit(7, "feet"),
  27199. weight: math.unit(1000, "kg"),
  27200. name: "Front",
  27201. image: {
  27202. source: "./media/characters/edrax/front.svg",
  27203. extra: 2838 / 2550,
  27204. bottom: 130 / 2968
  27205. }
  27206. },
  27207. },
  27208. [
  27209. {
  27210. name: "Small",
  27211. height: math.unit(7, "feet")
  27212. },
  27213. {
  27214. name: "Normal",
  27215. height: math.unit(1500, "meters")
  27216. },
  27217. {
  27218. name: "Mega",
  27219. height: math.unit(12000000, "km"),
  27220. default: true
  27221. },
  27222. {
  27223. name: "Megamacro",
  27224. height: math.unit(10600000, "lightyears")
  27225. },
  27226. {
  27227. name: "Hypermacro",
  27228. height: math.unit(256, "yottameters")
  27229. },
  27230. ]
  27231. ))
  27232. characterMakers.push(() => makeCharacter(
  27233. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27234. {
  27235. front: {
  27236. height: math.unit(10, "feet"),
  27237. weight: math.unit(750, "lb"),
  27238. name: "Front",
  27239. image: {
  27240. source: "./media/characters/clove/front.svg",
  27241. extra: 2031 / 1860,
  27242. bottom: 47.8 / 2080
  27243. }
  27244. },
  27245. back: {
  27246. height: math.unit(10, "feet"),
  27247. weight: math.unit(750, "lb"),
  27248. name: "Back",
  27249. image: {
  27250. source: "./media/characters/clove/back.svg",
  27251. extra: 2025 / 1859,
  27252. bottom: 46 / 2071
  27253. }
  27254. },
  27255. },
  27256. [
  27257. {
  27258. name: "Normal",
  27259. height: math.unit(10, "feet"),
  27260. default: true
  27261. },
  27262. ]
  27263. ))
  27264. characterMakers.push(() => makeCharacter(
  27265. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27266. {
  27267. front: {
  27268. height: math.unit(4, "feet"),
  27269. weight: math.unit(50, "lb"),
  27270. name: "Front",
  27271. image: {
  27272. source: "./media/characters/alex-rabbit/front.svg",
  27273. extra: 507 / 458,
  27274. bottom: 18.5 / 527
  27275. }
  27276. },
  27277. back: {
  27278. height: math.unit(4, "feet"),
  27279. weight: math.unit(50, "lb"),
  27280. name: "Back",
  27281. image: {
  27282. source: "./media/characters/alex-rabbit/back.svg",
  27283. extra: 502 / 460,
  27284. bottom: 18.9 / 521
  27285. }
  27286. },
  27287. },
  27288. [
  27289. {
  27290. name: "Normal",
  27291. height: math.unit(4, "feet"),
  27292. default: true
  27293. },
  27294. ]
  27295. ))
  27296. characterMakers.push(() => makeCharacter(
  27297. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27298. {
  27299. front: {
  27300. height: math.unit(1 + 3 / 12, "feet"),
  27301. weight: math.unit(80, "lb"),
  27302. name: "Front",
  27303. image: {
  27304. source: "./media/characters/zander-rose/front.svg",
  27305. extra: 916 / 797,
  27306. bottom: 17 / 933
  27307. }
  27308. },
  27309. back: {
  27310. height: math.unit(1 + 3 / 12, "feet"),
  27311. weight: math.unit(80, "lb"),
  27312. name: "Back",
  27313. image: {
  27314. source: "./media/characters/zander-rose/back.svg",
  27315. extra: 903 / 779,
  27316. bottom: 31 / 934
  27317. }
  27318. },
  27319. },
  27320. [
  27321. {
  27322. name: "Normal",
  27323. height: math.unit(1 + 3 / 12, "feet"),
  27324. default: true
  27325. },
  27326. ]
  27327. ))
  27328. characterMakers.push(() => makeCharacter(
  27329. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27330. {
  27331. anthro: {
  27332. height: math.unit(6, "feet"),
  27333. weight: math.unit(150, "lb"),
  27334. name: "Anthro",
  27335. image: {
  27336. source: "./media/characters/razz/anthro.svg",
  27337. extra: 1437 / 1343,
  27338. bottom: 48 / 1485
  27339. }
  27340. },
  27341. feral: {
  27342. height: math.unit(6, "feet"),
  27343. weight: math.unit(150, "lb"),
  27344. name: "Feral",
  27345. image: {
  27346. source: "./media/characters/razz/feral.svg",
  27347. extra: 2569 / 1385,
  27348. bottom: 95 / 2664
  27349. }
  27350. },
  27351. },
  27352. [
  27353. {
  27354. name: "Normal",
  27355. height: math.unit(6, "feet"),
  27356. default: true
  27357. },
  27358. ]
  27359. ))
  27360. characterMakers.push(() => makeCharacter(
  27361. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27362. {
  27363. front: {
  27364. height: math.unit(9 + 4 / 12, "feet"),
  27365. weight: math.unit(500, "lb"),
  27366. name: "Front",
  27367. image: {
  27368. source: "./media/characters/morrigan/front.svg",
  27369. extra: 2707 / 2579,
  27370. bottom: 156 / 2863
  27371. }
  27372. },
  27373. },
  27374. [
  27375. {
  27376. name: "Normal",
  27377. height: math.unit(9 + 4 / 12, "feet"),
  27378. default: true
  27379. },
  27380. ]
  27381. ))
  27382. characterMakers.push(() => makeCharacter(
  27383. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27384. {
  27385. front: {
  27386. height: math.unit(5, "stories"),
  27387. weight: math.unit(4000, "lb"),
  27388. name: "Front",
  27389. image: {
  27390. source: "./media/characters/jenene/front.svg",
  27391. extra: 1780 / 1710,
  27392. bottom: 57 / 1837
  27393. }
  27394. },
  27395. },
  27396. [
  27397. {
  27398. name: "Normal",
  27399. height: math.unit(5, "stories"),
  27400. default: true
  27401. },
  27402. ]
  27403. ))
  27404. characterMakers.push(() => makeCharacter(
  27405. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27406. {
  27407. front: {
  27408. height: math.unit(6, "feet"),
  27409. weight: math.unit(150, "lb"),
  27410. name: "Front",
  27411. image: {
  27412. source: "./media/characters/vix-archaser/front.svg",
  27413. extra: 2767 / 2562,
  27414. bottom: 36 / 2803
  27415. }
  27416. },
  27417. },
  27418. [
  27419. {
  27420. name: "Micro",
  27421. height: math.unit(1, "foot")
  27422. },
  27423. {
  27424. name: "Normal",
  27425. height: math.unit(6 + 5 / 12, "feet")
  27426. },
  27427. {
  27428. name: "Minimacro",
  27429. height: math.unit(500, "feet")
  27430. },
  27431. {
  27432. name: "Macro",
  27433. height: math.unit(4, "miles")
  27434. },
  27435. {
  27436. name: "Megamacro",
  27437. height: math.unit(250, "miles"),
  27438. default: true
  27439. },
  27440. {
  27441. name: "Gigamacro",
  27442. height: math.unit(1, "universe")
  27443. },
  27444. {
  27445. name: "Endgame",
  27446. height: math.unit(100, "multiverses")
  27447. }
  27448. ]
  27449. ))
  27450. characterMakers.push(() => makeCharacter(
  27451. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27452. {
  27453. taurSfw: {
  27454. height: math.unit(10, "meters"),
  27455. weight: math.unit(17500, "kg"),
  27456. name: "Taur",
  27457. image: {
  27458. source: "./media/characters/faey/taur-sfw.svg",
  27459. extra: 1200 / 968,
  27460. bottom: 41 / 1241
  27461. }
  27462. },
  27463. chestmaw: {
  27464. height: math.unit(2.01, "meters"),
  27465. name: "Chestmaw",
  27466. image: {
  27467. source: "./media/characters/faey/chestmaw.svg"
  27468. }
  27469. },
  27470. foot: {
  27471. height: math.unit(2.43, "meters"),
  27472. name: "Foot",
  27473. image: {
  27474. source: "./media/characters/faey/foot.svg"
  27475. }
  27476. },
  27477. jaws: {
  27478. height: math.unit(1.66, "meters"),
  27479. name: "Jaws",
  27480. image: {
  27481. source: "./media/characters/faey/jaws.svg"
  27482. }
  27483. },
  27484. tongues: {
  27485. height: math.unit(2.01, "meters"),
  27486. name: "Tongues",
  27487. image: {
  27488. source: "./media/characters/faey/tongues.svg"
  27489. }
  27490. },
  27491. },
  27492. [
  27493. {
  27494. name: "Small",
  27495. height: math.unit(10, "meters"),
  27496. default: true
  27497. },
  27498. {
  27499. name: "Big",
  27500. height: math.unit(500000, "km")
  27501. },
  27502. ]
  27503. ))
  27504. characterMakers.push(() => makeCharacter(
  27505. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27506. {
  27507. front: {
  27508. height: math.unit(7, "feet"),
  27509. weight: math.unit(275, "lb"),
  27510. name: "Front",
  27511. image: {
  27512. source: "./media/characters/roku/front.svg",
  27513. extra: 903 / 878,
  27514. bottom: 37 / 940
  27515. }
  27516. },
  27517. },
  27518. [
  27519. {
  27520. name: "Normal",
  27521. height: math.unit(7, "feet"),
  27522. default: true
  27523. },
  27524. {
  27525. name: "Macro",
  27526. height: math.unit(500, "feet")
  27527. },
  27528. {
  27529. name: "Megamacro",
  27530. height: math.unit(200, "miles")
  27531. },
  27532. ]
  27533. ))
  27534. characterMakers.push(() => makeCharacter(
  27535. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27536. {
  27537. front: {
  27538. height: math.unit(6 + 2 / 12, "feet"),
  27539. weight: math.unit(150, "lb"),
  27540. name: "Front",
  27541. image: {
  27542. source: "./media/characters/lira/front.svg",
  27543. extra: 1727 / 1605,
  27544. bottom: 26 / 1753
  27545. }
  27546. },
  27547. back: {
  27548. height: math.unit(6 + 2 / 12, "feet"),
  27549. weight: math.unit(150, "lb"),
  27550. name: "Back",
  27551. image: {
  27552. source: "./media/characters/lira/back.svg",
  27553. extra: 1713 / 159,
  27554. bottom: 20 / 1733
  27555. }
  27556. },
  27557. hand: {
  27558. height: math.unit(0.75, "feet"),
  27559. name: "Hand",
  27560. image: {
  27561. source: "./media/characters/lira/hand.svg"
  27562. }
  27563. },
  27564. maw: {
  27565. height: math.unit(0.65, "feet"),
  27566. name: "Maw",
  27567. image: {
  27568. source: "./media/characters/lira/maw.svg"
  27569. }
  27570. },
  27571. pawDigi: {
  27572. height: math.unit(1.6, "feet"),
  27573. name: "Paw Digi",
  27574. image: {
  27575. source: "./media/characters/lira/paw-digi.svg"
  27576. }
  27577. },
  27578. pawPlanti: {
  27579. height: math.unit(1.4, "feet"),
  27580. name: "Paw Planti",
  27581. image: {
  27582. source: "./media/characters/lira/paw-planti.svg"
  27583. }
  27584. },
  27585. },
  27586. [
  27587. {
  27588. name: "Normal",
  27589. height: math.unit(6 + 2 / 12, "feet"),
  27590. default: true
  27591. },
  27592. {
  27593. name: "Macro",
  27594. height: math.unit(100, "feet")
  27595. },
  27596. {
  27597. name: "Macro²",
  27598. height: math.unit(1600, "feet")
  27599. },
  27600. {
  27601. name: "Planetary",
  27602. height: math.unit(20, "earths")
  27603. },
  27604. ]
  27605. ))
  27606. characterMakers.push(() => makeCharacter(
  27607. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27608. {
  27609. front: {
  27610. height: math.unit(6, "feet"),
  27611. weight: math.unit(150, "lb"),
  27612. name: "Front",
  27613. image: {
  27614. source: "./media/characters/hadjet/front.svg",
  27615. extra: 1480 / 1346,
  27616. bottom: 26 / 1506
  27617. }
  27618. },
  27619. frontNsfw: {
  27620. height: math.unit(6, "feet"),
  27621. weight: math.unit(150, "lb"),
  27622. name: "Front (NSFW)",
  27623. image: {
  27624. source: "./media/characters/hadjet/front-nsfw.svg",
  27625. extra: 1440 / 1358,
  27626. bottom: 52 / 1492
  27627. }
  27628. },
  27629. },
  27630. [
  27631. {
  27632. name: "Macro",
  27633. height: math.unit(10, "stories"),
  27634. default: true
  27635. },
  27636. {
  27637. name: "Megamacro",
  27638. height: math.unit(1.5, "miles")
  27639. },
  27640. {
  27641. name: "Megamacro+",
  27642. height: math.unit(5, "miles")
  27643. },
  27644. ]
  27645. ))
  27646. characterMakers.push(() => makeCharacter(
  27647. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27648. {
  27649. side: {
  27650. height: math.unit(106, "feet"),
  27651. weight: math.unit(500, "tonnes"),
  27652. name: "Side",
  27653. image: {
  27654. source: "./media/characters/kodran/side.svg",
  27655. extra: 553 / 480,
  27656. bottom: 33 / 586
  27657. }
  27658. },
  27659. front: {
  27660. height: math.unit(132, "feet"),
  27661. weight: math.unit(500, "tonnes"),
  27662. name: "Front",
  27663. image: {
  27664. source: "./media/characters/kodran/front.svg",
  27665. extra: 667 / 643,
  27666. bottom: 42 / 709
  27667. }
  27668. },
  27669. flying: {
  27670. height: math.unit(350, "feet"),
  27671. weight: math.unit(500, "tonnes"),
  27672. name: "Flying",
  27673. image: {
  27674. source: "./media/characters/kodran/flying.svg"
  27675. }
  27676. },
  27677. foot: {
  27678. height: math.unit(33, "feet"),
  27679. name: "Foot",
  27680. image: {
  27681. source: "./media/characters/kodran/foot.svg"
  27682. }
  27683. },
  27684. footFront: {
  27685. height: math.unit(19, "feet"),
  27686. name: "Foot (Front)",
  27687. image: {
  27688. source: "./media/characters/kodran/foot-front.svg",
  27689. extra: 261 / 261,
  27690. bottom: 91 / 352
  27691. }
  27692. },
  27693. headFront: {
  27694. height: math.unit(53, "feet"),
  27695. name: "Head (Front)",
  27696. image: {
  27697. source: "./media/characters/kodran/head-front.svg"
  27698. }
  27699. },
  27700. headSide: {
  27701. height: math.unit(65, "feet"),
  27702. name: "Head (Side)",
  27703. image: {
  27704. source: "./media/characters/kodran/head-side.svg"
  27705. }
  27706. },
  27707. throat: {
  27708. height: math.unit(79, "feet"),
  27709. name: "Throat",
  27710. image: {
  27711. source: "./media/characters/kodran/throat.svg"
  27712. }
  27713. },
  27714. },
  27715. [
  27716. {
  27717. name: "Large",
  27718. height: math.unit(106, "feet"),
  27719. default: true
  27720. },
  27721. ]
  27722. ))
  27723. characterMakers.push(() => makeCharacter(
  27724. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27725. {
  27726. side: {
  27727. height: math.unit(11, "feet"),
  27728. weight: math.unit(150, "lb"),
  27729. name: "Side",
  27730. image: {
  27731. source: "./media/characters/pyxaron/side.svg",
  27732. extra: 305 / 195,
  27733. bottom: 17 / 322
  27734. }
  27735. },
  27736. },
  27737. [
  27738. {
  27739. name: "Normal",
  27740. height: math.unit(11, "feet"),
  27741. default: true
  27742. },
  27743. ]
  27744. ))
  27745. characterMakers.push(() => makeCharacter(
  27746. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27747. {
  27748. front: {
  27749. height: math.unit(6, "feet"),
  27750. weight: math.unit(150, "lb"),
  27751. name: "Front",
  27752. image: {
  27753. source: "./media/characters/meep/front.svg",
  27754. extra: 88 / 80,
  27755. bottom: 6 / 94
  27756. }
  27757. },
  27758. },
  27759. [
  27760. {
  27761. name: "Fun Sized",
  27762. height: math.unit(2, "inches"),
  27763. default: true
  27764. },
  27765. {
  27766. name: "Friend Sized",
  27767. height: math.unit(8, "inches")
  27768. },
  27769. ]
  27770. ))
  27771. characterMakers.push(() => makeCharacter(
  27772. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27773. {
  27774. front: {
  27775. height: math.unit(15, "feet"),
  27776. weight: math.unit(2500, "lb"),
  27777. name: "Front",
  27778. image: {
  27779. source: "./media/characters/holly-rabbit/front.svg",
  27780. extra: 1433 / 1233,
  27781. bottom: 125 / 1558
  27782. }
  27783. },
  27784. dick: {
  27785. height: math.unit(4.6, "feet"),
  27786. name: "Dick",
  27787. image: {
  27788. source: "./media/characters/holly-rabbit/dick.svg"
  27789. }
  27790. },
  27791. },
  27792. [
  27793. {
  27794. name: "Normal",
  27795. height: math.unit(15, "feet"),
  27796. default: true
  27797. },
  27798. {
  27799. name: "Macro",
  27800. height: math.unit(250, "feet")
  27801. },
  27802. {
  27803. name: "Macro+",
  27804. height: math.unit(2500, "feet")
  27805. },
  27806. ]
  27807. ))
  27808. characterMakers.push(() => makeCharacter(
  27809. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27810. {
  27811. front: {
  27812. height: math.unit(3.02, "meters"),
  27813. weight: math.unit(500, "kg"),
  27814. name: "Front",
  27815. image: {
  27816. source: "./media/characters/drena/front.svg",
  27817. extra: 282 / 243,
  27818. bottom: 8 / 290
  27819. }
  27820. },
  27821. side: {
  27822. height: math.unit(3.02, "meters"),
  27823. weight: math.unit(500, "kg"),
  27824. name: "Side",
  27825. image: {
  27826. source: "./media/characters/drena/side.svg",
  27827. extra: 280 / 245,
  27828. bottom: 10 / 290
  27829. }
  27830. },
  27831. back: {
  27832. height: math.unit(3.02, "meters"),
  27833. weight: math.unit(500, "kg"),
  27834. name: "Back",
  27835. image: {
  27836. source: "./media/characters/drena/back.svg",
  27837. extra: 278 / 243,
  27838. bottom: 2 / 280
  27839. }
  27840. },
  27841. foot: {
  27842. height: math.unit(0.75, "meters"),
  27843. name: "Foot",
  27844. image: {
  27845. source: "./media/characters/drena/foot.svg"
  27846. }
  27847. },
  27848. maw: {
  27849. height: math.unit(0.82, "meters"),
  27850. name: "Maw",
  27851. image: {
  27852. source: "./media/characters/drena/maw.svg"
  27853. }
  27854. },
  27855. rump: {
  27856. height: math.unit(0.93, "meters"),
  27857. name: "Rump",
  27858. image: {
  27859. source: "./media/characters/drena/rump.svg"
  27860. }
  27861. },
  27862. },
  27863. [
  27864. {
  27865. name: "Normal",
  27866. height: math.unit(3.02, "meters"),
  27867. default: true
  27868. },
  27869. ]
  27870. ))
  27871. characterMakers.push(() => makeCharacter(
  27872. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27873. {
  27874. front: {
  27875. height: math.unit(6 + 4 / 12, "feet"),
  27876. weight: math.unit(250, "lb"),
  27877. name: "Front",
  27878. image: {
  27879. source: "./media/characters/remmyzilla/front.svg",
  27880. extra: 4033 / 3588,
  27881. bottom: 123 / 4156
  27882. }
  27883. },
  27884. back: {
  27885. height: math.unit(6 + 4 / 12, "feet"),
  27886. weight: math.unit(250, "lb"),
  27887. name: "Back",
  27888. image: {
  27889. source: "./media/characters/remmyzilla/back.svg",
  27890. extra: 2687 / 2555,
  27891. bottom: 48 / 2735
  27892. }
  27893. },
  27894. frontFancy: {
  27895. height: math.unit(6 + 4 / 12, "feet"),
  27896. weight: math.unit(250, "lb"),
  27897. name: "Front (Fancy)",
  27898. image: {
  27899. source: "./media/characters/remmyzilla/front-fancy.svg",
  27900. extra: 4119 / 3419,
  27901. bottom: 237 / 4356
  27902. }
  27903. },
  27904. paw: {
  27905. height: math.unit(1.73, "feet"),
  27906. name: "Paw",
  27907. image: {
  27908. source: "./media/characters/remmyzilla/paw.svg"
  27909. }
  27910. },
  27911. maw: {
  27912. height: math.unit(1.73, "feet"),
  27913. name: "Maw",
  27914. image: {
  27915. source: "./media/characters/remmyzilla/maw.svg"
  27916. }
  27917. },
  27918. },
  27919. [
  27920. {
  27921. name: "Normal",
  27922. height: math.unit(6 + 4 / 12, "feet")
  27923. },
  27924. {
  27925. name: "Minimacro",
  27926. height: math.unit(12 + 8 / 12, "feet")
  27927. },
  27928. {
  27929. name: "Normal",
  27930. height: math.unit(640, "feet"),
  27931. default: true
  27932. },
  27933. {
  27934. name: "Megamacro",
  27935. height: math.unit(6400, "feet")
  27936. },
  27937. {
  27938. name: "Gigamacro",
  27939. height: math.unit(64000, "miles")
  27940. },
  27941. ]
  27942. ))
  27943. characterMakers.push(() => makeCharacter(
  27944. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27945. {
  27946. front: {
  27947. height: math.unit(2.5, "meters"),
  27948. weight: math.unit(300, "lb"),
  27949. name: "Front",
  27950. image: {
  27951. source: "./media/characters/lawrence/front.svg",
  27952. extra: 357 / 335,
  27953. bottom: 30 / 387
  27954. }
  27955. },
  27956. back: {
  27957. height: math.unit(2.5, "meters"),
  27958. weight: math.unit(300, "lb"),
  27959. name: "Back",
  27960. image: {
  27961. source: "./media/characters/lawrence/back.svg",
  27962. extra: 357 / 338,
  27963. bottom: 16 / 373
  27964. }
  27965. },
  27966. head: {
  27967. height: math.unit(0.9, "meter"),
  27968. name: "Head",
  27969. image: {
  27970. source: "./media/characters/lawrence/head.svg"
  27971. }
  27972. },
  27973. maw: {
  27974. height: math.unit(0.7, "meter"),
  27975. name: "Maw",
  27976. image: {
  27977. source: "./media/characters/lawrence/maw.svg"
  27978. }
  27979. },
  27980. footBottom: {
  27981. height: math.unit(0.5, "meter"),
  27982. name: "Foot (Bottom)",
  27983. image: {
  27984. source: "./media/characters/lawrence/foot-bottom.svg"
  27985. }
  27986. },
  27987. footTop: {
  27988. height: math.unit(0.5, "meter"),
  27989. name: "Foot (Top)",
  27990. image: {
  27991. source: "./media/characters/lawrence/foot-top.svg"
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(2.5, "meters"),
  27999. default: true
  28000. },
  28001. {
  28002. name: "Macro",
  28003. height: math.unit(95, "meters")
  28004. },
  28005. {
  28006. name: "Megamacro",
  28007. height: math.unit(150, "km")
  28008. },
  28009. ]
  28010. ))
  28011. characterMakers.push(() => makeCharacter(
  28012. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28013. {
  28014. front: {
  28015. height: math.unit(4.2, "meters"),
  28016. name: "Front",
  28017. image: {
  28018. source: "./media/characters/sydney/front.svg",
  28019. extra: 1323 / 1277,
  28020. bottom: 111 / 1434
  28021. }
  28022. },
  28023. },
  28024. [
  28025. {
  28026. name: "Normal",
  28027. height: math.unit(4.2, "meters"),
  28028. default: true
  28029. },
  28030. ]
  28031. ))
  28032. characterMakers.push(() => makeCharacter(
  28033. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28034. {
  28035. back: {
  28036. height: math.unit(201, "feet"),
  28037. name: "Back",
  28038. image: {
  28039. source: "./media/characters/jessica/back.svg",
  28040. extra: 273 / 259,
  28041. bottom: 7 / 280
  28042. }
  28043. },
  28044. },
  28045. [
  28046. {
  28047. name: "Normal",
  28048. height: math.unit(201, "feet"),
  28049. default: true
  28050. },
  28051. {
  28052. name: "Megamacro",
  28053. height: math.unit(8, "miles")
  28054. },
  28055. ]
  28056. ))
  28057. characterMakers.push(() => makeCharacter(
  28058. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28059. {
  28060. side: {
  28061. height: math.unit(320, "cm"),
  28062. name: "Side",
  28063. image: {
  28064. source: "./media/characters/victoria/side.svg",
  28065. extra: 778 / 346,
  28066. bottom: 56 / 834
  28067. }
  28068. },
  28069. maw: {
  28070. height: math.unit(5.9, "feet"),
  28071. name: "Maw",
  28072. image: {
  28073. source: "./media/characters/victoria/maw.svg"
  28074. }
  28075. },
  28076. },
  28077. [
  28078. {
  28079. name: "Normal",
  28080. height: math.unit(320, "cm"),
  28081. default: true
  28082. },
  28083. ]
  28084. ))
  28085. characterMakers.push(() => makeCharacter(
  28086. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28087. {
  28088. front: {
  28089. height: math.unit(5 + 6 / 12, "feet"),
  28090. name: "Front",
  28091. image: {
  28092. source: "./media/characters/cat/front.svg",
  28093. extra: 1374 / 1257,
  28094. bottom: 59 / 1433
  28095. }
  28096. },
  28097. back: {
  28098. height: math.unit(5 + 6 / 12, "feet"),
  28099. name: "Back",
  28100. image: {
  28101. source: "./media/characters/cat/back.svg",
  28102. extra: 1337 / 1226,
  28103. bottom: 34 / 1371
  28104. }
  28105. },
  28106. taur: {
  28107. height: math.unit(7, "feet"),
  28108. name: "Taur",
  28109. image: {
  28110. source: "./media/characters/cat/taur.svg",
  28111. extra: 1345 / 1231,
  28112. bottom: 66 / 1411
  28113. }
  28114. },
  28115. lucario: {
  28116. height: math.unit(4, "feet"),
  28117. name: "Lucario",
  28118. image: {
  28119. source: "./media/characters/cat/lucario.svg",
  28120. extra: 1470 / 1318,
  28121. bottom: 65 / 1535
  28122. }
  28123. },
  28124. megaLucario: {
  28125. height: math.unit(4, "feet"),
  28126. name: "Mega Lucario",
  28127. image: {
  28128. source: "./media/characters/cat/mega-lucario.svg",
  28129. extra: 1515 / 1319,
  28130. bottom: 63 / 1578
  28131. }
  28132. },
  28133. nickit: {
  28134. height: math.unit(2, "feet"),
  28135. name: "Nickit",
  28136. image: {
  28137. source: "./media/characters/cat/nickit.svg",
  28138. extra: 1980 / 1585,
  28139. bottom: 102 / 2082
  28140. }
  28141. },
  28142. lopunnyFront: {
  28143. height: math.unit(5, "feet"),
  28144. name: "Lopunny (Front)",
  28145. image: {
  28146. source: "./media/characters/cat/lopunny-front.svg",
  28147. extra: 1782 / 1469,
  28148. bottom: 38 / 1820
  28149. }
  28150. },
  28151. lopunnyBack: {
  28152. height: math.unit(5, "feet"),
  28153. name: "Lopunny (Back)",
  28154. image: {
  28155. source: "./media/characters/cat/lopunny-back.svg",
  28156. extra: 1660 / 1490,
  28157. bottom: 25 / 1685
  28158. }
  28159. },
  28160. },
  28161. [
  28162. {
  28163. name: "Really small",
  28164. height: math.unit(1, "nm")
  28165. },
  28166. {
  28167. name: "Micro",
  28168. height: math.unit(5, "inches")
  28169. },
  28170. {
  28171. name: "Normal",
  28172. height: math.unit(5 + 6 / 12, "feet"),
  28173. default: true
  28174. },
  28175. {
  28176. name: "Macro",
  28177. height: math.unit(50, "feet")
  28178. },
  28179. {
  28180. name: "Macro+",
  28181. height: math.unit(150, "feet")
  28182. },
  28183. {
  28184. name: "Megamacro",
  28185. height: math.unit(100, "miles")
  28186. },
  28187. ]
  28188. ))
  28189. characterMakers.push(() => makeCharacter(
  28190. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28191. {
  28192. front: {
  28193. height: math.unit(63.4, "meters"),
  28194. weight: math.unit(3.28349e+6, "kilograms"),
  28195. name: "Front",
  28196. image: {
  28197. source: "./media/characters/kirina-violet/front.svg",
  28198. extra: 2812 / 2725,
  28199. bottom: 0 / 2812
  28200. }
  28201. },
  28202. back: {
  28203. height: math.unit(63.4, "meters"),
  28204. weight: math.unit(3.28349e+6, "kilograms"),
  28205. name: "Back",
  28206. image: {
  28207. source: "./media/characters/kirina-violet/back.svg",
  28208. extra: 2812 / 2725,
  28209. bottom: 0 / 2812
  28210. }
  28211. },
  28212. mouth: {
  28213. height: math.unit(4.35, "meters"),
  28214. name: "Mouth",
  28215. image: {
  28216. source: "./media/characters/kirina-violet/mouth.svg"
  28217. }
  28218. },
  28219. paw: {
  28220. height: math.unit(5.6, "meters"),
  28221. name: "Paw",
  28222. image: {
  28223. source: "./media/characters/kirina-violet/paw.svg"
  28224. }
  28225. },
  28226. tail: {
  28227. height: math.unit(18, "meters"),
  28228. name: "Tail",
  28229. image: {
  28230. source: "./media/characters/kirina-violet/tail.svg"
  28231. }
  28232. },
  28233. },
  28234. [
  28235. {
  28236. name: "Macro",
  28237. height: math.unit(63.4, "meters"),
  28238. default: true
  28239. },
  28240. ]
  28241. ))
  28242. characterMakers.push(() => makeCharacter(
  28243. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28244. {
  28245. front: {
  28246. height: math.unit(60, "feet"),
  28247. name: "Front",
  28248. image: {
  28249. source: "./media/characters/cat-gigachu/front.svg",
  28250. extra: 1024 / 780,
  28251. bottom: 23 / 1047
  28252. }
  28253. },
  28254. back: {
  28255. height: math.unit(60, "feet"),
  28256. name: "Back",
  28257. image: {
  28258. source: "./media/characters/cat-gigachu/back.svg",
  28259. extra: 1024 / 780,
  28260. bottom: 23 / 1047
  28261. }
  28262. },
  28263. },
  28264. [
  28265. {
  28266. name: "Dynamax",
  28267. height: math.unit(60, "feet"),
  28268. default: true
  28269. },
  28270. ]
  28271. ))
  28272. characterMakers.push(() => makeCharacter(
  28273. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28274. {
  28275. front: {
  28276. height: math.unit(6, "feet"),
  28277. weight: math.unit(150, "lb"),
  28278. name: "Front",
  28279. image: {
  28280. source: "./media/characters/sfaiyan/front.svg",
  28281. extra: 999 / 978,
  28282. bottom: 5 / 1004
  28283. }
  28284. },
  28285. },
  28286. [
  28287. {
  28288. name: "Normal",
  28289. height: math.unit(1.82, "meters")
  28290. },
  28291. {
  28292. name: "Giant",
  28293. height: math.unit(2.27, "km"),
  28294. default: true
  28295. },
  28296. ]
  28297. ))
  28298. characterMakers.push(() => makeCharacter(
  28299. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28300. {
  28301. front: {
  28302. height: math.unit(179, "cm"),
  28303. weight: math.unit(100, "kg"),
  28304. name: "Front",
  28305. image: {
  28306. source: "./media/characters/raunehkeli/front.svg",
  28307. extra: 1934 / 1926,
  28308. bottom: 0 / 1934
  28309. }
  28310. },
  28311. },
  28312. [
  28313. {
  28314. name: "Normal",
  28315. height: math.unit(179, "cm")
  28316. },
  28317. {
  28318. name: "Maximum",
  28319. height: math.unit(575, "meters"),
  28320. default: true
  28321. },
  28322. ]
  28323. ))
  28324. characterMakers.push(() => makeCharacter(
  28325. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28326. {
  28327. front: {
  28328. height: math.unit(6, "feet"),
  28329. weight: math.unit(150, "lb"),
  28330. name: "Front",
  28331. image: {
  28332. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28333. extra: 2625 / 2518,
  28334. bottom: 60 / 2685
  28335. }
  28336. },
  28337. },
  28338. [
  28339. {
  28340. name: "Normal",
  28341. height: math.unit(6 + 2 / 12, "feet")
  28342. },
  28343. {
  28344. name: "Macro",
  28345. height: math.unit(1180, "feet"),
  28346. default: true
  28347. },
  28348. ]
  28349. ))
  28350. characterMakers.push(() => makeCharacter(
  28351. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28352. {
  28353. front: {
  28354. height: math.unit(5 + 6 / 12, "feet"),
  28355. weight: math.unit(108, "lb"),
  28356. name: "Front",
  28357. image: {
  28358. source: "./media/characters/lilith-zott/front.svg",
  28359. extra: 2510 / 2238,
  28360. bottom: 100 / 2610
  28361. }
  28362. },
  28363. frontDressed: {
  28364. height: math.unit(5 + 6 / 12, "feet"),
  28365. weight: math.unit(108, "lb"),
  28366. name: "Front (Dressed)",
  28367. image: {
  28368. source: "./media/characters/lilith-zott/front-dressed.svg",
  28369. extra: 2510 / 2238,
  28370. bottom: 100 / 2610
  28371. }
  28372. },
  28373. },
  28374. [
  28375. {
  28376. name: "Normal",
  28377. height: math.unit(5 + 6 / 12, "feet")
  28378. },
  28379. {
  28380. name: "Macro",
  28381. height: math.unit(1030, "feet"),
  28382. default: true
  28383. },
  28384. ]
  28385. ))
  28386. characterMakers.push(() => makeCharacter(
  28387. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28388. {
  28389. front: {
  28390. height: math.unit(6, "feet"),
  28391. weight: math.unit(150, "lb"),
  28392. name: "Front",
  28393. image: {
  28394. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28395. extra: 2567 / 2435,
  28396. bottom: 39 / 2606
  28397. }
  28398. },
  28399. frontSuper: {
  28400. height: math.unit(6, "feet"),
  28401. name: "Front (Super)",
  28402. image: {
  28403. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28404. extra: 2567 / 2435,
  28405. bottom: 39 / 2606
  28406. }
  28407. },
  28408. },
  28409. [
  28410. {
  28411. name: "Normal",
  28412. height: math.unit(5 + 10 / 12, "feet")
  28413. },
  28414. {
  28415. name: "Macro",
  28416. height: math.unit(1100, "feet"),
  28417. default: true
  28418. },
  28419. ]
  28420. ))
  28421. characterMakers.push(() => makeCharacter(
  28422. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28423. {
  28424. front: {
  28425. height: math.unit(100, "miles"),
  28426. name: "Front",
  28427. image: {
  28428. source: "./media/characters/sona/front.svg",
  28429. extra: 2433 / 2201,
  28430. bottom: 53 / 2486
  28431. }
  28432. },
  28433. foot: {
  28434. height: math.unit(16.1, "miles"),
  28435. name: "Foot",
  28436. image: {
  28437. source: "./media/characters/sona/foot.svg"
  28438. }
  28439. },
  28440. },
  28441. [
  28442. {
  28443. name: "Macro",
  28444. height: math.unit(100, "miles"),
  28445. default: true
  28446. },
  28447. ]
  28448. ))
  28449. characterMakers.push(() => makeCharacter(
  28450. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28451. {
  28452. front: {
  28453. height: math.unit(6, "feet"),
  28454. weight: math.unit(150, "lb"),
  28455. name: "Front",
  28456. image: {
  28457. source: "./media/characters/bailey/front.svg",
  28458. extra: 1778 / 1724,
  28459. bottom: 30 / 1808
  28460. }
  28461. },
  28462. },
  28463. [
  28464. {
  28465. name: "Micro",
  28466. height: math.unit(4, "inches")
  28467. },
  28468. {
  28469. name: "Normal",
  28470. height: math.unit(5 + 5 / 12, "feet"),
  28471. default: true
  28472. },
  28473. {
  28474. name: "Macro",
  28475. height: math.unit(250, "feet")
  28476. },
  28477. {
  28478. name: "Megamacro",
  28479. height: math.unit(100, "miles")
  28480. },
  28481. ]
  28482. ))
  28483. characterMakers.push(() => makeCharacter(
  28484. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28485. {
  28486. front: {
  28487. height: math.unit(5 + 2 / 12, "feet"),
  28488. weight: math.unit(120, "lb"),
  28489. name: "Front",
  28490. image: {
  28491. source: "./media/characters/snaps/front.svg",
  28492. extra: 2370 / 2177,
  28493. bottom: 48 / 2418
  28494. }
  28495. },
  28496. back: {
  28497. height: math.unit(5 + 2 / 12, "feet"),
  28498. weight: math.unit(120, "lb"),
  28499. name: "Back",
  28500. image: {
  28501. source: "./media/characters/snaps/back.svg",
  28502. extra: 2408 / 2258,
  28503. bottom: 15 / 2423
  28504. }
  28505. },
  28506. },
  28507. [
  28508. {
  28509. name: "Micro",
  28510. height: math.unit(9, "inches")
  28511. },
  28512. {
  28513. name: "Normal",
  28514. height: math.unit(5 + 2 / 12, "feet"),
  28515. default: true
  28516. },
  28517. {
  28518. name: "Mini Macro",
  28519. height: math.unit(10, "feet")
  28520. },
  28521. ]
  28522. ))
  28523. characterMakers.push(() => makeCharacter(
  28524. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28525. {
  28526. front: {
  28527. height: math.unit(1.8, "meters"),
  28528. weight: math.unit(85, "kg"),
  28529. name: "Front",
  28530. image: {
  28531. source: "./media/characters/azteck/front.svg",
  28532. extra: 2815 / 2625,
  28533. bottom: 89 / 2904
  28534. }
  28535. },
  28536. back: {
  28537. height: math.unit(1.8, "meters"),
  28538. weight: math.unit(85, "kg"),
  28539. name: "Back",
  28540. image: {
  28541. source: "./media/characters/azteck/back.svg",
  28542. extra: 2856 / 2648,
  28543. bottom: 85 / 2941
  28544. }
  28545. },
  28546. frontDressed: {
  28547. height: math.unit(1.8, "meters"),
  28548. weight: math.unit(85, "kg"),
  28549. name: "Front (Dressed)",
  28550. image: {
  28551. source: "./media/characters/azteck/front-dressed.svg",
  28552. extra: 2147 / 2003,
  28553. bottom: 68 / 2215
  28554. }
  28555. },
  28556. head: {
  28557. height: math.unit(0.47, "meters"),
  28558. weight: math.unit(85, "kg"),
  28559. name: "Head",
  28560. image: {
  28561. source: "./media/characters/azteck/head.svg"
  28562. }
  28563. },
  28564. },
  28565. [
  28566. {
  28567. name: "Bite sized",
  28568. height: math.unit(16, "cm")
  28569. },
  28570. {
  28571. name: "Normal",
  28572. height: math.unit(1.8, "meters"),
  28573. default: true
  28574. },
  28575. ]
  28576. ))
  28577. characterMakers.push(() => makeCharacter(
  28578. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28579. {
  28580. front: {
  28581. height: math.unit(6, "feet"),
  28582. weight: math.unit(150, "lb"),
  28583. name: "Front",
  28584. image: {
  28585. source: "./media/characters/pidge/front.svg",
  28586. extra: 620 / 588,
  28587. bottom: 9 / 629
  28588. }
  28589. },
  28590. back: {
  28591. height: math.unit(6, "feet"),
  28592. weight: math.unit(150, "lb"),
  28593. name: "Back",
  28594. image: {
  28595. source: "./media/characters/pidge/back.svg",
  28596. extra: 620 / 588,
  28597. bottom: 9 / 629
  28598. }
  28599. },
  28600. },
  28601. [
  28602. {
  28603. name: "Macro",
  28604. height: math.unit(1, "mile"),
  28605. default: true
  28606. },
  28607. ]
  28608. ))
  28609. characterMakers.push(() => makeCharacter(
  28610. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28611. {
  28612. front: {
  28613. height: math.unit(6, "feet"),
  28614. weight: math.unit(150, "lb"),
  28615. name: "Front",
  28616. image: {
  28617. source: "./media/characters/en/front.svg",
  28618. extra: 1697 / 1563,
  28619. bottom: 103 / 1800
  28620. }
  28621. },
  28622. back: {
  28623. height: math.unit(6, "feet"),
  28624. weight: math.unit(150, "lb"),
  28625. name: "Back",
  28626. image: {
  28627. source: "./media/characters/en/back.svg",
  28628. extra: 1700 / 1570,
  28629. bottom: 51 / 1751
  28630. }
  28631. },
  28632. frontDressed: {
  28633. height: math.unit(6, "feet"),
  28634. weight: math.unit(150, "lb"),
  28635. name: "Front (Dressed)",
  28636. image: {
  28637. source: "./media/characters/en/front-dressed.svg",
  28638. extra: 1697 / 1563,
  28639. bottom: 103 / 1800
  28640. }
  28641. },
  28642. backDressed: {
  28643. height: math.unit(6, "feet"),
  28644. weight: math.unit(150, "lb"),
  28645. name: "Back (Dressed)",
  28646. image: {
  28647. source: "./media/characters/en/back-dressed.svg",
  28648. extra: 1700 / 1570,
  28649. bottom: 51 / 1751
  28650. }
  28651. },
  28652. },
  28653. [
  28654. {
  28655. name: "Macro",
  28656. height: math.unit(210, "feet"),
  28657. default: true
  28658. },
  28659. ]
  28660. ))
  28661. characterMakers.push(() => makeCharacter(
  28662. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28663. {
  28664. front: {
  28665. height: math.unit(6, "feet"),
  28666. weight: math.unit(150, "lb"),
  28667. name: "Front",
  28668. image: {
  28669. source: "./media/characters/haze-orris/front.svg",
  28670. extra: 3975 / 3525,
  28671. bottom: 137 / 4112
  28672. }
  28673. },
  28674. },
  28675. [
  28676. {
  28677. name: "Micro",
  28678. height: math.unit(150, "mm"),
  28679. default: true
  28680. },
  28681. ]
  28682. ))
  28683. characterMakers.push(() => makeCharacter(
  28684. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28685. {
  28686. front: {
  28687. height: math.unit(6, "feet"),
  28688. weight: math.unit(150, "lb"),
  28689. name: "Front",
  28690. image: {
  28691. source: "./media/characters/casselene-yaro/front.svg",
  28692. extra: 4721 / 4541,
  28693. bottom: 82 / 4803
  28694. }
  28695. },
  28696. back: {
  28697. height: math.unit(6, "feet"),
  28698. weight: math.unit(150, "lb"),
  28699. name: "Back",
  28700. image: {
  28701. source: "./media/characters/casselene-yaro/back.svg",
  28702. extra: 4569 / 4377,
  28703. bottom: 69 / 4638
  28704. }
  28705. },
  28706. frontDressed: {
  28707. height: math.unit(6, "feet"),
  28708. weight: math.unit(150, "lb"),
  28709. name: "Front-dressed",
  28710. image: {
  28711. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28712. extra: 4721 / 4541,
  28713. bottom: 82 / 4803
  28714. }
  28715. },
  28716. },
  28717. [
  28718. {
  28719. name: "Macro",
  28720. height: math.unit(190, "feet"),
  28721. default: true
  28722. },
  28723. ]
  28724. ))
  28725. characterMakers.push(() => makeCharacter(
  28726. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28727. {
  28728. front: {
  28729. height: math.unit(6, "feet"),
  28730. weight: math.unit(150, "lb"),
  28731. name: "Front",
  28732. image: {
  28733. source: "./media/characters/myra-rue-delore/front.svg",
  28734. extra: 1340 / 1308,
  28735. bottom: 67 / 1407
  28736. }
  28737. },
  28738. back: {
  28739. height: math.unit(6, "feet"),
  28740. weight: math.unit(150, "lb"),
  28741. name: "Back",
  28742. image: {
  28743. source: "./media/characters/myra-rue-delore/back.svg",
  28744. extra: 1341 / 1310,
  28745. bottom: 40 / 1381
  28746. }
  28747. },
  28748. frontDressed: {
  28749. height: math.unit(6, "feet"),
  28750. weight: math.unit(150, "lb"),
  28751. name: "Front (Dressed)",
  28752. image: {
  28753. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28754. extra: 1340 / 1308,
  28755. bottom: 67 / 1407
  28756. }
  28757. },
  28758. },
  28759. [
  28760. {
  28761. name: "Macro",
  28762. height: math.unit(150, "feet"),
  28763. default: true
  28764. },
  28765. ]
  28766. ))
  28767. characterMakers.push(() => makeCharacter(
  28768. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28769. {
  28770. front: {
  28771. height: math.unit(10, "feet"),
  28772. weight: math.unit(15015, "lb"),
  28773. name: "Front",
  28774. image: {
  28775. source: "./media/characters/fem!plat/front.svg",
  28776. extra: 2799 / 2604,
  28777. bottom: 149 / 2948
  28778. }
  28779. },
  28780. },
  28781. [
  28782. {
  28783. name: "Normal",
  28784. height: math.unit(10, "feet"),
  28785. default: true
  28786. },
  28787. {
  28788. name: "Macro",
  28789. height: math.unit(100, "feet")
  28790. },
  28791. {
  28792. name: "Megamacro",
  28793. height: math.unit(1000, "feet")
  28794. },
  28795. ]
  28796. ))
  28797. characterMakers.push(() => makeCharacter(
  28798. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28799. {
  28800. front: {
  28801. height: math.unit(15 + 5 / 12, "feet"),
  28802. weight: math.unit(4600, "lb"),
  28803. name: "Front",
  28804. image: {
  28805. source: "./media/characters/neapolitan-ananassa/front.svg",
  28806. extra: 2903 / 2736,
  28807. bottom: 0 / 2903
  28808. }
  28809. },
  28810. side: {
  28811. height: math.unit(15 + 5 / 12, "feet"),
  28812. weight: math.unit(4600, "lb"),
  28813. name: "Side",
  28814. image: {
  28815. source: "./media/characters/neapolitan-ananassa/side.svg",
  28816. extra: 2925 / 2719,
  28817. bottom: 0 / 2925
  28818. }
  28819. },
  28820. back: {
  28821. height: math.unit(15 + 5 / 12, "feet"),
  28822. weight: math.unit(4600, "lb"),
  28823. name: "Back",
  28824. image: {
  28825. source: "./media/characters/neapolitan-ananassa/back.svg",
  28826. extra: 2903 / 2736,
  28827. bottom: 0 / 2903
  28828. }
  28829. },
  28830. },
  28831. [
  28832. {
  28833. name: "Normal",
  28834. height: math.unit(15 + 5 / 12, "feet"),
  28835. default: true
  28836. },
  28837. {
  28838. name: "Post-Millenium",
  28839. height: math.unit(35 + 5 / 12, "feet")
  28840. },
  28841. {
  28842. name: "Post-Era",
  28843. height: math.unit(450 + 5 / 12, "feet")
  28844. },
  28845. ]
  28846. ))
  28847. characterMakers.push(() => makeCharacter(
  28848. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28849. {
  28850. front: {
  28851. height: math.unit(300, "meters"),
  28852. weight: math.unit(125000, "tonnes"),
  28853. name: "Front",
  28854. image: {
  28855. source: "./media/characters/pazuzu/front.svg",
  28856. extra: 877 / 794,
  28857. bottom: 47 / 924
  28858. }
  28859. },
  28860. },
  28861. [
  28862. {
  28863. name: "Macro",
  28864. height: math.unit(300, "meters"),
  28865. default: true
  28866. },
  28867. ]
  28868. ))
  28869. characterMakers.push(() => makeCharacter(
  28870. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28871. {
  28872. side: {
  28873. height: math.unit(10 + 7 / 12, "feet"),
  28874. weight: math.unit(2.5, "tons"),
  28875. name: "Side",
  28876. image: {
  28877. source: "./media/characters/aasha/side.svg",
  28878. extra: 1345 / 1245,
  28879. bottom: 111 / 1456
  28880. }
  28881. },
  28882. back: {
  28883. height: math.unit(10 + 7 / 12, "feet"),
  28884. weight: math.unit(2.5, "tons"),
  28885. name: "Back",
  28886. image: {
  28887. source: "./media/characters/aasha/back.svg",
  28888. extra: 1133 / 1057,
  28889. bottom: 257 / 1390
  28890. }
  28891. },
  28892. },
  28893. [
  28894. {
  28895. name: "Normal",
  28896. height: math.unit(10 + 7 / 12, "feet"),
  28897. default: true
  28898. },
  28899. ]
  28900. ))
  28901. characterMakers.push(() => makeCharacter(
  28902. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28903. {
  28904. front: {
  28905. height: math.unit(6 + 3 / 12, "feet"),
  28906. name: "Front",
  28907. image: {
  28908. source: "./media/characters/nevan/front.svg",
  28909. extra: 704 / 704,
  28910. bottom: 28 / 732
  28911. }
  28912. },
  28913. back: {
  28914. height: math.unit(6 + 3 / 12, "feet"),
  28915. name: "Back",
  28916. image: {
  28917. source: "./media/characters/nevan/back.svg",
  28918. extra: 714 / 714,
  28919. bottom: 21 / 735
  28920. }
  28921. },
  28922. frontFlaccid: {
  28923. height: math.unit(6 + 3 / 12, "feet"),
  28924. name: "Front (Flaccid)",
  28925. image: {
  28926. source: "./media/characters/nevan/front-flaccid.svg",
  28927. extra: 704 / 704,
  28928. bottom: 28 / 732
  28929. }
  28930. },
  28931. frontErect: {
  28932. height: math.unit(6 + 3 / 12, "feet"),
  28933. name: "Front (Erect)",
  28934. image: {
  28935. source: "./media/characters/nevan/front-erect.svg",
  28936. extra: 704 / 704,
  28937. bottom: 28 / 732
  28938. }
  28939. },
  28940. backFlaccid: {
  28941. height: math.unit(6 + 3 / 12, "feet"),
  28942. name: "Back (Flaccid)",
  28943. image: {
  28944. source: "./media/characters/nevan/back-flaccid.svg",
  28945. extra: 714 / 714,
  28946. bottom: 21 / 735
  28947. }
  28948. },
  28949. },
  28950. [
  28951. {
  28952. name: "Normal",
  28953. height: math.unit(6 + 3 / 12, "feet"),
  28954. default: true
  28955. },
  28956. ]
  28957. ))
  28958. characterMakers.push(() => makeCharacter(
  28959. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28960. {
  28961. front: {
  28962. height: math.unit(4, "feet"),
  28963. name: "Front",
  28964. image: {
  28965. source: "./media/characters/arhan/front.svg",
  28966. extra: 3368 / 3133,
  28967. bottom: 0 / 3368
  28968. }
  28969. },
  28970. side: {
  28971. height: math.unit(4, "feet"),
  28972. name: "Side",
  28973. image: {
  28974. source: "./media/characters/arhan/side.svg",
  28975. extra: 3347 / 3105,
  28976. bottom: 0 / 3347
  28977. }
  28978. },
  28979. tongue: {
  28980. height: math.unit(1.42, "feet"),
  28981. name: "Tongue",
  28982. image: {
  28983. source: "./media/characters/arhan/tongue.svg"
  28984. }
  28985. },
  28986. head: {
  28987. height: math.unit(0.85, "feet"),
  28988. name: "Head",
  28989. image: {
  28990. source: "./media/characters/arhan/head.svg"
  28991. }
  28992. },
  28993. },
  28994. [
  28995. {
  28996. name: "Normal",
  28997. height: math.unit(4, "feet"),
  28998. default: true
  28999. },
  29000. ]
  29001. ))
  29002. characterMakers.push(() => makeCharacter(
  29003. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29004. {
  29005. front: {
  29006. height: math.unit(5 + 7.5 / 12, "feet"),
  29007. weight: math.unit(120, "lb"),
  29008. name: "Front",
  29009. image: {
  29010. source: "./media/characters/digi-duncan/front.svg",
  29011. extra: 330 / 326,
  29012. bottom: 16 / 346
  29013. }
  29014. },
  29015. side: {
  29016. height: math.unit(5 + 7.5 / 12, "feet"),
  29017. weight: math.unit(120, "lb"),
  29018. name: "Side",
  29019. image: {
  29020. source: "./media/characters/digi-duncan/side.svg",
  29021. extra: 341 / 337,
  29022. bottom: 1 / 342
  29023. }
  29024. },
  29025. back: {
  29026. height: math.unit(5 + 7.5 / 12, "feet"),
  29027. weight: math.unit(120, "lb"),
  29028. name: "Back",
  29029. image: {
  29030. source: "./media/characters/digi-duncan/back.svg",
  29031. extra: 330 / 326,
  29032. bottom: 12 / 342
  29033. }
  29034. },
  29035. },
  29036. [
  29037. {
  29038. name: "Speck",
  29039. height: math.unit(0.25, "mm")
  29040. },
  29041. {
  29042. name: "Micro",
  29043. height: math.unit(5, "mm")
  29044. },
  29045. {
  29046. name: "Tiny",
  29047. height: math.unit(0.5, "inches"),
  29048. default: true
  29049. },
  29050. {
  29051. name: "Human",
  29052. height: math.unit(5 + 7.5 / 12, "feet")
  29053. },
  29054. {
  29055. name: "Minigiant",
  29056. height: math.unit(8 + 5.25, "feet")
  29057. },
  29058. {
  29059. name: "Giant",
  29060. height: math.unit(2000, "feet")
  29061. },
  29062. {
  29063. name: "Mega",
  29064. height: math.unit(371.1, "miles")
  29065. },
  29066. ]
  29067. ))
  29068. characterMakers.push(() => makeCharacter(
  29069. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29070. {
  29071. front: {
  29072. height: math.unit(2, "meters"),
  29073. weight: math.unit(350, "kg"),
  29074. name: "Front",
  29075. image: {
  29076. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29077. extra: 898 / 838,
  29078. bottom: 9 / 907
  29079. }
  29080. },
  29081. },
  29082. [
  29083. {
  29084. name: "Micro",
  29085. height: math.unit(8, "meters")
  29086. },
  29087. {
  29088. name: "Normal",
  29089. height: math.unit(50, "meters"),
  29090. default: true
  29091. },
  29092. {
  29093. name: "Macro",
  29094. height: math.unit(500, "meters")
  29095. },
  29096. ]
  29097. ))
  29098. characterMakers.push(() => makeCharacter(
  29099. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29100. {
  29101. front: {
  29102. height: math.unit(6 + 6 / 12, "feet"),
  29103. name: "Front",
  29104. image: {
  29105. source: "./media/characters/khardesh/front.svg",
  29106. extra: 888 / 797,
  29107. bottom: 25 / 913
  29108. }
  29109. },
  29110. },
  29111. [
  29112. {
  29113. name: "Normal",
  29114. height: math.unit(6 + 6 / 12, "feet"),
  29115. default: true
  29116. },
  29117. {
  29118. name: "Normal+",
  29119. height: math.unit(4, "meters")
  29120. },
  29121. {
  29122. name: "Macro",
  29123. height: math.unit(50, "meters")
  29124. },
  29125. {
  29126. name: "Macro+",
  29127. height: math.unit(100, "meters")
  29128. },
  29129. {
  29130. name: "Megamacro",
  29131. height: math.unit(20, "km")
  29132. },
  29133. ]
  29134. ))
  29135. characterMakers.push(() => makeCharacter(
  29136. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29137. {
  29138. front: {
  29139. height: math.unit(6, "feet"),
  29140. weight: math.unit(150, "lb"),
  29141. name: "Front",
  29142. image: {
  29143. source: "./media/characters/kosho/front.svg",
  29144. extra: 1847 / 1847,
  29145. bottom: 86 / 1933
  29146. }
  29147. },
  29148. },
  29149. [
  29150. {
  29151. name: "Second-stage micro",
  29152. height: math.unit(0.5, "inches")
  29153. },
  29154. {
  29155. name: "First-stage micro",
  29156. height: math.unit(6, "inches")
  29157. },
  29158. {
  29159. name: "Normal",
  29160. height: math.unit(6, "feet"),
  29161. default: true
  29162. },
  29163. {
  29164. name: "First-stage macro",
  29165. height: math.unit(72, "feet")
  29166. },
  29167. {
  29168. name: "Second-stage macro",
  29169. height: math.unit(864, "feet")
  29170. },
  29171. ]
  29172. ))
  29173. characterMakers.push(() => makeCharacter(
  29174. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29175. {
  29176. normal: {
  29177. height: math.unit(4 + 6 / 12, "feet"),
  29178. name: "Normal",
  29179. image: {
  29180. source: "./media/characters/hydra/normal.svg",
  29181. extra: 2833 / 2634,
  29182. bottom: 68 / 2901
  29183. }
  29184. },
  29185. smol: {
  29186. height: math.unit(0.705, "inches"),
  29187. name: "Smol",
  29188. image: {
  29189. source: "./media/characters/hydra/smol.svg",
  29190. extra: 2715 / 2540,
  29191. bottom: 0 / 2715
  29192. }
  29193. },
  29194. },
  29195. [
  29196. {
  29197. name: "Normal",
  29198. height: math.unit(4 + 6 / 12, "feet"),
  29199. default: true
  29200. }
  29201. ]
  29202. ))
  29203. characterMakers.push(() => makeCharacter(
  29204. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29205. {
  29206. front: {
  29207. height: math.unit(0.6, "cm"),
  29208. name: "Front",
  29209. image: {
  29210. source: "./media/characters/daz/front.svg",
  29211. extra: 1682 / 1164,
  29212. bottom: 42 / 1724
  29213. }
  29214. },
  29215. },
  29216. [
  29217. {
  29218. name: "Normal",
  29219. height: math.unit(0.6, "cm"),
  29220. default: true
  29221. },
  29222. ]
  29223. ))
  29224. characterMakers.push(() => makeCharacter(
  29225. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29226. {
  29227. front: {
  29228. height: math.unit(6, "feet"),
  29229. weight: math.unit(235, "lb"),
  29230. name: "Front",
  29231. image: {
  29232. source: "./media/characters/theo-pangolin/front.svg",
  29233. extra: 1996 / 1969,
  29234. bottom: 115 / 2111
  29235. }
  29236. },
  29237. back: {
  29238. height: math.unit(6, "feet"),
  29239. weight: math.unit(235, "lb"),
  29240. name: "Back",
  29241. image: {
  29242. source: "./media/characters/theo-pangolin/back.svg",
  29243. extra: 1979 / 1979,
  29244. bottom: 40 / 2019
  29245. }
  29246. },
  29247. feral: {
  29248. height: math.unit(2, "feet"),
  29249. weight: math.unit(30, "lb"),
  29250. name: "Feral",
  29251. image: {
  29252. source: "./media/characters/theo-pangolin/feral.svg",
  29253. extra: 803 / 791,
  29254. bottom: 181 / 984
  29255. }
  29256. },
  29257. footFive: {
  29258. height: math.unit(1.43, "feet"),
  29259. name: "Foot (Five Toes)",
  29260. image: {
  29261. source: "./media/characters/theo-pangolin/foot-five.svg"
  29262. }
  29263. },
  29264. footFour: {
  29265. height: math.unit(1.43, "feet"),
  29266. name: "Foot (Four Toes)",
  29267. image: {
  29268. source: "./media/characters/theo-pangolin/foot-four.svg"
  29269. }
  29270. },
  29271. handFour: {
  29272. height: math.unit(0.81, "feet"),
  29273. name: "Hand (Four Fingers)",
  29274. image: {
  29275. source: "./media/characters/theo-pangolin/hand-four.svg"
  29276. }
  29277. },
  29278. handThree: {
  29279. height: math.unit(0.81, "feet"),
  29280. name: "Hand (Three Fingers)",
  29281. image: {
  29282. source: "./media/characters/theo-pangolin/hand-three.svg"
  29283. }
  29284. },
  29285. headFront: {
  29286. height: math.unit(1.37, "feet"),
  29287. name: "Head (Front)",
  29288. image: {
  29289. source: "./media/characters/theo-pangolin/head-front.svg"
  29290. }
  29291. },
  29292. headSide: {
  29293. height: math.unit(1.43, "feet"),
  29294. name: "Head (Side)",
  29295. image: {
  29296. source: "./media/characters/theo-pangolin/head-side.svg"
  29297. }
  29298. },
  29299. tongue: {
  29300. height: math.unit(2.29, "feet"),
  29301. name: "Tongue",
  29302. image: {
  29303. source: "./media/characters/theo-pangolin/tongue.svg"
  29304. }
  29305. },
  29306. },
  29307. [
  29308. {
  29309. name: "Normal",
  29310. height: math.unit(6, "feet")
  29311. },
  29312. {
  29313. name: "Macro",
  29314. height: math.unit(400, "feet"),
  29315. default: true
  29316. },
  29317. ]
  29318. ))
  29319. characterMakers.push(() => makeCharacter(
  29320. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29321. {
  29322. front: {
  29323. height: math.unit(6, "inches"),
  29324. weight: math.unit(0.036, "kg"),
  29325. name: "Front",
  29326. image: {
  29327. source: "./media/characters/renée/front.svg",
  29328. extra: 900 / 886,
  29329. bottom: 8 / 908
  29330. }
  29331. },
  29332. },
  29333. [
  29334. {
  29335. name: "Nano",
  29336. height: math.unit(1, "nm")
  29337. },
  29338. {
  29339. name: "Micro",
  29340. height: math.unit(1, "mm")
  29341. },
  29342. {
  29343. name: "Normal",
  29344. height: math.unit(6, "inches")
  29345. },
  29346. {
  29347. name: "Macro",
  29348. height: math.unit(2000, "feet"),
  29349. default: true
  29350. },
  29351. {
  29352. name: "Megamacro",
  29353. height: math.unit(2, "km")
  29354. },
  29355. {
  29356. name: "Gigamacro",
  29357. height: math.unit(2000, "km")
  29358. },
  29359. {
  29360. name: "Teramacro",
  29361. height: math.unit(250000, "km")
  29362. },
  29363. ]
  29364. ))
  29365. characterMakers.push(() => makeCharacter(
  29366. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29367. {
  29368. front: {
  29369. height: math.unit(4, "meters"),
  29370. weight: math.unit(150, "kg"),
  29371. name: "Front",
  29372. image: {
  29373. source: "./media/characters/caledvwlch/front.svg",
  29374. extra: 1760 / 1551,
  29375. bottom: 28 / 1788
  29376. }
  29377. },
  29378. side: {
  29379. height: math.unit(4, "meters"),
  29380. weight: math.unit(150, "kg"),
  29381. name: "Side",
  29382. image: {
  29383. source: "./media/characters/caledvwlch/side.svg",
  29384. extra: 1605 / 1536,
  29385. bottom: 31 / 1636
  29386. }
  29387. },
  29388. back: {
  29389. height: math.unit(4, "meters"),
  29390. weight: math.unit(150, "kg"),
  29391. name: "Back",
  29392. image: {
  29393. source: "./media/characters/caledvwlch/back.svg",
  29394. extra: 1635 / 1565,
  29395. bottom: 27 / 1662
  29396. }
  29397. },
  29398. },
  29399. [
  29400. {
  29401. name: "\"Incognito\"",
  29402. height: math.unit(4, "meters")
  29403. },
  29404. {
  29405. name: "Small rampage",
  29406. height: math.unit(600, "meters")
  29407. },
  29408. {
  29409. name: "Mega",
  29410. height: math.unit(30, "km")
  29411. },
  29412. {
  29413. name: "Home-size",
  29414. height: math.unit(50, "km"),
  29415. default: true
  29416. },
  29417. {
  29418. name: "Giga",
  29419. height: math.unit(300, "km")
  29420. },
  29421. {
  29422. name: "Lounging",
  29423. height: math.unit(11000, "km")
  29424. },
  29425. {
  29426. name: "Planet snacking",
  29427. height: math.unit(2000000, "km")
  29428. },
  29429. ]
  29430. ))
  29431. characterMakers.push(() => makeCharacter(
  29432. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29433. {
  29434. front: {
  29435. height: math.unit(6, "feet"),
  29436. weight: math.unit(215, "lb"),
  29437. name: "Front",
  29438. image: {
  29439. source: "./media/characters/sapphire-svell/front.svg",
  29440. extra: 495 / 455,
  29441. bottom: 20 / 515
  29442. }
  29443. },
  29444. back: {
  29445. height: math.unit(6, "feet"),
  29446. weight: math.unit(216, "lb"),
  29447. name: "Back",
  29448. image: {
  29449. source: "./media/characters/sapphire-svell/back.svg",
  29450. extra: 497 / 477,
  29451. bottom: 7 / 504
  29452. }
  29453. },
  29454. maw: {
  29455. height: math.unit(1.57, "feet"),
  29456. name: "Maw",
  29457. image: {
  29458. source: "./media/characters/sapphire-svell/maw.svg"
  29459. }
  29460. },
  29461. foot: {
  29462. height: math.unit(1.07, "feet"),
  29463. name: "Foot",
  29464. image: {
  29465. source: "./media/characters/sapphire-svell/foot.svg"
  29466. }
  29467. },
  29468. toering: {
  29469. height: math.unit(1.7, "inch"),
  29470. name: "Toering",
  29471. image: {
  29472. source: "./media/characters/sapphire-svell/toering.svg"
  29473. }
  29474. },
  29475. },
  29476. [
  29477. {
  29478. name: "Normal",
  29479. height: math.unit(300, "feet"),
  29480. default: true
  29481. },
  29482. {
  29483. name: "Augmented",
  29484. height: math.unit(1250, "feet")
  29485. },
  29486. {
  29487. name: "Unleashed",
  29488. height: math.unit(3000, "feet")
  29489. },
  29490. ]
  29491. ))
  29492. characterMakers.push(() => makeCharacter(
  29493. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29494. {
  29495. side: {
  29496. height: math.unit(2 + 3 / 12, "feet"),
  29497. weight: math.unit(110, "lb"),
  29498. name: "Side",
  29499. image: {
  29500. source: "./media/characters/glitch-flux/side.svg",
  29501. extra: 997 / 805,
  29502. bottom: 20 / 1017
  29503. }
  29504. },
  29505. },
  29506. [
  29507. {
  29508. name: "Normal",
  29509. height: math.unit(2 + 3 / 12, "feet"),
  29510. default: true
  29511. },
  29512. ]
  29513. ))
  29514. characterMakers.push(() => makeCharacter(
  29515. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29516. {
  29517. front: {
  29518. height: math.unit(4, "meters"),
  29519. name: "Front",
  29520. image: {
  29521. source: "./media/characters/mid/front.svg",
  29522. extra: 507 / 476,
  29523. bottom: 17 / 524
  29524. }
  29525. },
  29526. back: {
  29527. height: math.unit(4, "meters"),
  29528. name: "Back",
  29529. image: {
  29530. source: "./media/characters/mid/back.svg",
  29531. extra: 519 / 487,
  29532. bottom: 7 / 526
  29533. }
  29534. },
  29535. stuck: {
  29536. height: math.unit(2.2, "meters"),
  29537. name: "Stuck",
  29538. image: {
  29539. source: "./media/characters/mid/stuck.svg",
  29540. extra: 1951 / 1869,
  29541. bottom: 88 / 2039
  29542. }
  29543. }
  29544. },
  29545. [
  29546. {
  29547. name: "Normal",
  29548. height: math.unit(4, "meters"),
  29549. default: true
  29550. },
  29551. {
  29552. name: "Big",
  29553. height: math.unit(10, "meters")
  29554. },
  29555. {
  29556. name: "Macro",
  29557. height: math.unit(800, "meters")
  29558. },
  29559. {
  29560. name: "Megamacro",
  29561. height: math.unit(100, "km")
  29562. },
  29563. {
  29564. name: "Overgrown",
  29565. height: math.unit(1, "parsec")
  29566. },
  29567. ]
  29568. ))
  29569. characterMakers.push(() => makeCharacter(
  29570. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29571. {
  29572. front: {
  29573. height: math.unit(2.5, "meters"),
  29574. weight: math.unit(225, "kg"),
  29575. name: "Front",
  29576. image: {
  29577. source: "./media/characters/iris/front.svg",
  29578. extra: 3348 / 3251,
  29579. bottom: 205 / 3553
  29580. }
  29581. },
  29582. maw: {
  29583. height: math.unit(0.56, "meter"),
  29584. name: "Maw",
  29585. image: {
  29586. source: "./media/characters/iris/maw.svg"
  29587. }
  29588. },
  29589. },
  29590. [
  29591. {
  29592. name: "Mewter cat",
  29593. height: math.unit(1.2, "meters")
  29594. },
  29595. {
  29596. name: "Minimacro",
  29597. height: math.unit(2.5, "meters"),
  29598. default: true
  29599. },
  29600. {
  29601. name: "Macro",
  29602. height: math.unit(180, "meters")
  29603. },
  29604. {
  29605. name: "Megamacro",
  29606. height: math.unit(2746, "meters")
  29607. },
  29608. ]
  29609. ))
  29610. characterMakers.push(() => makeCharacter(
  29611. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29612. {
  29613. front: {
  29614. height: math.unit(6, "feet"),
  29615. weight: math.unit(135, "lb"),
  29616. name: "Front",
  29617. image: {
  29618. source: "./media/characters/axel/front.svg",
  29619. extra: 908 / 908,
  29620. bottom: 58 / 966
  29621. }
  29622. },
  29623. side: {
  29624. height: math.unit(6, "feet"),
  29625. weight: math.unit(135, "lb"),
  29626. name: "Side",
  29627. image: {
  29628. source: "./media/characters/axel/side.svg",
  29629. extra: 958 / 958,
  29630. bottom: 11 / 969
  29631. }
  29632. },
  29633. back: {
  29634. height: math.unit(6, "feet"),
  29635. weight: math.unit(135, "lb"),
  29636. name: "Back",
  29637. image: {
  29638. source: "./media/characters/axel/back.svg",
  29639. extra: 887 / 887,
  29640. bottom: 34 / 921
  29641. }
  29642. },
  29643. head: {
  29644. height: math.unit(1.07, "feet"),
  29645. name: "Head",
  29646. image: {
  29647. source: "./media/characters/axel/head.svg"
  29648. }
  29649. },
  29650. beak: {
  29651. height: math.unit(1.4, "feet"),
  29652. name: "Beak",
  29653. image: {
  29654. source: "./media/characters/axel/beak.svg"
  29655. }
  29656. },
  29657. beakSide: {
  29658. height: math.unit(1.4, "feet"),
  29659. name: "Beak Side",
  29660. image: {
  29661. source: "./media/characters/axel/beak-side.svg"
  29662. }
  29663. },
  29664. sheath: {
  29665. height: math.unit(0.5, "feet"),
  29666. name: "Sheath",
  29667. image: {
  29668. source: "./media/characters/axel/sheath.svg"
  29669. }
  29670. },
  29671. dick: {
  29672. height: math.unit(0.98, "feet"),
  29673. name: "Dick",
  29674. image: {
  29675. source: "./media/characters/axel/dick.svg"
  29676. }
  29677. },
  29678. },
  29679. [
  29680. {
  29681. name: "Macro",
  29682. height: math.unit(68, "meters"),
  29683. default: true
  29684. },
  29685. ]
  29686. ))
  29687. characterMakers.push(() => makeCharacter(
  29688. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29689. {
  29690. front: {
  29691. height: math.unit(3.5, "meters"),
  29692. weight: math.unit(1200, "kg"),
  29693. name: "Front",
  29694. image: {
  29695. source: "./media/characters/joanna/front.svg",
  29696. extra: 1596 / 1488,
  29697. bottom: 29 / 1625
  29698. }
  29699. },
  29700. back: {
  29701. height: math.unit(3.5, "meters"),
  29702. weight: math.unit(1200, "kg"),
  29703. name: "Back",
  29704. image: {
  29705. source: "./media/characters/joanna/back.svg",
  29706. extra: 1594 / 1495,
  29707. bottom: 26 / 1620
  29708. }
  29709. },
  29710. frontShorts: {
  29711. height: math.unit(3.5, "meters"),
  29712. weight: math.unit(1200, "kg"),
  29713. name: "Front (Shorts)",
  29714. image: {
  29715. source: "./media/characters/joanna/front-shorts.svg",
  29716. extra: 1596 / 1488,
  29717. bottom: 29 / 1625
  29718. }
  29719. },
  29720. frontBiker: {
  29721. height: math.unit(3.5, "meters"),
  29722. weight: math.unit(1200, "kg"),
  29723. name: "Front (Biker)",
  29724. image: {
  29725. source: "./media/characters/joanna/front-biker.svg",
  29726. extra: 1596 / 1488,
  29727. bottom: 29 / 1625
  29728. }
  29729. },
  29730. backBiker: {
  29731. height: math.unit(3.5, "meters"),
  29732. weight: math.unit(1200, "kg"),
  29733. name: "Back (Biker)",
  29734. image: {
  29735. source: "./media/characters/joanna/back-biker.svg",
  29736. extra: 1594 / 1495,
  29737. bottom: 88 / 1682
  29738. }
  29739. },
  29740. bikeLeft: {
  29741. height: math.unit(2.4, "meters"),
  29742. weight: math.unit(1600, "kg"),
  29743. name: "Bike (Left)",
  29744. image: {
  29745. source: "./media/characters/joanna/bike-left.svg",
  29746. extra: 720 / 720,
  29747. bottom: 8 / 728
  29748. }
  29749. },
  29750. bikeRight: {
  29751. height: math.unit(2.4, "meters"),
  29752. weight: math.unit(1600, "kg"),
  29753. name: "Bike (Right)",
  29754. image: {
  29755. source: "./media/characters/joanna/bike-right.svg",
  29756. extra: 720 / 720,
  29757. bottom: 8 / 728
  29758. }
  29759. },
  29760. },
  29761. [
  29762. {
  29763. name: "Incognito",
  29764. height: math.unit(3.5, "meters")
  29765. },
  29766. {
  29767. name: "Casual Big",
  29768. height: math.unit(200, "meters")
  29769. },
  29770. {
  29771. name: "Macro",
  29772. height: math.unit(600, "meters")
  29773. },
  29774. {
  29775. name: "Original",
  29776. height: math.unit(20, "km"),
  29777. default: true
  29778. },
  29779. {
  29780. name: "Giga",
  29781. height: math.unit(400, "km")
  29782. },
  29783. {
  29784. name: "Lounging",
  29785. height: math.unit(1500, "km")
  29786. },
  29787. {
  29788. name: "Planetary",
  29789. height: math.unit(200000, "km")
  29790. },
  29791. ]
  29792. ))
  29793. characterMakers.push(() => makeCharacter(
  29794. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29795. {
  29796. front: {
  29797. height: math.unit(6, "feet"),
  29798. weight: math.unit(150, "lb"),
  29799. name: "Front",
  29800. image: {
  29801. source: "./media/characters/hugo-sigil/front.svg",
  29802. extra: 522 / 500,
  29803. bottom: 2 / 524
  29804. }
  29805. },
  29806. back: {
  29807. height: math.unit(6, "feet"),
  29808. weight: math.unit(150, "lb"),
  29809. name: "Back",
  29810. image: {
  29811. source: "./media/characters/hugo-sigil/back.svg",
  29812. extra: 519 / 495,
  29813. bottom: 5 / 524
  29814. }
  29815. },
  29816. maw: {
  29817. height: math.unit(1.4, "feet"),
  29818. weight: math.unit(150, "lb"),
  29819. name: "Maw",
  29820. image: {
  29821. source: "./media/characters/hugo-sigil/maw.svg"
  29822. }
  29823. },
  29824. feet: {
  29825. height: math.unit(1.56, "feet"),
  29826. weight: math.unit(150, "lb"),
  29827. name: "Feet",
  29828. image: {
  29829. source: "./media/characters/hugo-sigil/feet.svg",
  29830. extra: 177 / 177,
  29831. bottom: 12 / 189
  29832. }
  29833. },
  29834. },
  29835. [
  29836. {
  29837. name: "Normal",
  29838. height: math.unit(6, "feet")
  29839. },
  29840. {
  29841. name: "Macro",
  29842. height: math.unit(200, "feet"),
  29843. default: true
  29844. },
  29845. ]
  29846. ))
  29847. characterMakers.push(() => makeCharacter(
  29848. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29849. {
  29850. front: {
  29851. height: math.unit(6, "feet"),
  29852. weight: math.unit(150, "lb"),
  29853. name: "Front",
  29854. image: {
  29855. source: "./media/characters/peri/front.svg",
  29856. extra: 2354 / 2233,
  29857. bottom: 49 / 2403
  29858. }
  29859. },
  29860. },
  29861. [
  29862. {
  29863. name: "Really Small",
  29864. height: math.unit(1, "nm")
  29865. },
  29866. {
  29867. name: "Micro",
  29868. height: math.unit(4, "inches")
  29869. },
  29870. {
  29871. name: "Normal",
  29872. height: math.unit(7, "inches"),
  29873. default: true
  29874. },
  29875. {
  29876. name: "Macro",
  29877. height: math.unit(400, "feet")
  29878. },
  29879. {
  29880. name: "Megamacro",
  29881. height: math.unit(100, "miles")
  29882. },
  29883. ]
  29884. ))
  29885. characterMakers.push(() => makeCharacter(
  29886. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29887. {
  29888. frontSlim: {
  29889. height: math.unit(7, "feet"),
  29890. name: "Front (Slim)",
  29891. image: {
  29892. source: "./media/characters/issilora/front-slim.svg",
  29893. extra: 529 / 449,
  29894. bottom: 53 / 582
  29895. }
  29896. },
  29897. sideSlim: {
  29898. height: math.unit(7, "feet"),
  29899. name: "Side (Slim)",
  29900. image: {
  29901. source: "./media/characters/issilora/side-slim.svg",
  29902. extra: 570 / 480,
  29903. bottom: 30 / 600
  29904. }
  29905. },
  29906. backSlim: {
  29907. height: math.unit(7, "feet"),
  29908. name: "Back (Slim)",
  29909. image: {
  29910. source: "./media/characters/issilora/back-slim.svg",
  29911. extra: 537 / 455,
  29912. bottom: 46 / 583
  29913. }
  29914. },
  29915. frontBuff: {
  29916. height: math.unit(7, "feet"),
  29917. name: "Front (Buff)",
  29918. image: {
  29919. source: "./media/characters/issilora/front-buff.svg",
  29920. extra: 2310 / 2035,
  29921. bottom: 335 / 2645
  29922. }
  29923. },
  29924. head: {
  29925. height: math.unit(1.94, "feet"),
  29926. name: "Head",
  29927. image: {
  29928. source: "./media/characters/issilora/head.svg"
  29929. }
  29930. },
  29931. },
  29932. [
  29933. {
  29934. name: "Minimum",
  29935. height: math.unit(7, "feet")
  29936. },
  29937. {
  29938. name: "Comfortable",
  29939. height: math.unit(17, "feet")
  29940. },
  29941. {
  29942. name: "Fun Size",
  29943. height: math.unit(47, "feet")
  29944. },
  29945. {
  29946. name: "Natural Macro",
  29947. height: math.unit(137, "feet"),
  29948. default: true
  29949. },
  29950. {
  29951. name: "Maximum Kaiju",
  29952. height: math.unit(397, "feet")
  29953. },
  29954. ]
  29955. ))
  29956. characterMakers.push(() => makeCharacter(
  29957. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29958. {
  29959. front: {
  29960. height: math.unit(50 + 9/12, "feet"),
  29961. weight: math.unit(32.8, "tons"),
  29962. name: "Front",
  29963. image: {
  29964. source: "./media/characters/irb'iiritaahn/front.svg",
  29965. extra: 1878/1826,
  29966. bottom: 326/2204
  29967. }
  29968. },
  29969. back: {
  29970. height: math.unit(50 + 9/12, "feet"),
  29971. weight: math.unit(32.8, "tons"),
  29972. name: "Back",
  29973. image: {
  29974. source: "./media/characters/irb'iiritaahn/back.svg",
  29975. extra: 2052/2018,
  29976. bottom: 152/2204
  29977. }
  29978. },
  29979. head: {
  29980. height: math.unit(12.86, "feet"),
  29981. name: "Head",
  29982. image: {
  29983. source: "./media/characters/irb'iiritaahn/head.svg"
  29984. }
  29985. },
  29986. maw: {
  29987. height: math.unit(9.66, "feet"),
  29988. name: "Maw",
  29989. image: {
  29990. source: "./media/characters/irb'iiritaahn/maw.svg"
  29991. }
  29992. },
  29993. frontDick: {
  29994. height: math.unit(8.78461, "feet"),
  29995. name: "Front Dick",
  29996. image: {
  29997. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29998. }
  29999. },
  30000. rearDick: {
  30001. height: math.unit(8.78461, "feet"),
  30002. name: "Rear Dick",
  30003. image: {
  30004. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30005. }
  30006. },
  30007. rearDickUnfolded: {
  30008. height: math.unit(8.78, "feet"),
  30009. name: "Rear Dick (Unfolded)",
  30010. image: {
  30011. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30012. }
  30013. },
  30014. wings: {
  30015. height: math.unit(43, "feet"),
  30016. name: "Wings",
  30017. image: {
  30018. source: "./media/characters/irb'iiritaahn/wings.svg"
  30019. }
  30020. },
  30021. },
  30022. [
  30023. {
  30024. name: "Macro",
  30025. height: math.unit(50 + 9/12, "feet"),
  30026. default: true
  30027. },
  30028. ]
  30029. ))
  30030. characterMakers.push(() => makeCharacter(
  30031. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30032. {
  30033. front: {
  30034. height: math.unit(205, "cm"),
  30035. weight: math.unit(102, "kg"),
  30036. name: "Front",
  30037. image: {
  30038. source: "./media/characters/irbisgreif/front.svg",
  30039. extra: 785/706,
  30040. bottom: 13/798
  30041. }
  30042. },
  30043. back: {
  30044. height: math.unit(205, "cm"),
  30045. weight: math.unit(102, "kg"),
  30046. name: "Back",
  30047. image: {
  30048. source: "./media/characters/irbisgreif/back.svg",
  30049. extra: 713/701,
  30050. bottom: 26/739
  30051. }
  30052. },
  30053. frontDressed: {
  30054. height: math.unit(216, "cm"),
  30055. weight: math.unit(102, "kg"),
  30056. name: "Front-dressed",
  30057. image: {
  30058. source: "./media/characters/irbisgreif/front-dressed.svg",
  30059. extra: 902/776,
  30060. bottom: 14/916
  30061. }
  30062. },
  30063. sideDressed: {
  30064. height: math.unit(195, "cm"),
  30065. weight: math.unit(102, "kg"),
  30066. name: "Side-dressed",
  30067. image: {
  30068. source: "./media/characters/irbisgreif/side-dressed.svg",
  30069. extra: 788/688,
  30070. bottom: 21/809
  30071. }
  30072. },
  30073. backDressed: {
  30074. height: math.unit(216, "cm"),
  30075. weight: math.unit(102, "kg"),
  30076. name: "Back-dressed",
  30077. image: {
  30078. source: "./media/characters/irbisgreif/back-dressed.svg",
  30079. extra: 901/783,
  30080. bottom: 10/911
  30081. }
  30082. },
  30083. dick: {
  30084. height: math.unit(0.49, "feet"),
  30085. name: "Dick",
  30086. image: {
  30087. source: "./media/characters/irbisgreif/dick.svg"
  30088. }
  30089. },
  30090. wingTop: {
  30091. height: math.unit(1.93 , "feet"),
  30092. name: "Wing-top",
  30093. image: {
  30094. source: "./media/characters/irbisgreif/wing-top.svg"
  30095. }
  30096. },
  30097. wingBottom: {
  30098. height: math.unit(1.93 , "feet"),
  30099. name: "Wing-bottom",
  30100. image: {
  30101. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30102. }
  30103. },
  30104. },
  30105. [
  30106. {
  30107. name: "Normal",
  30108. height: math.unit(216, "cm"),
  30109. default: true
  30110. },
  30111. ]
  30112. ))
  30113. characterMakers.push(() => makeCharacter(
  30114. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30115. {
  30116. front: {
  30117. height: math.unit(6, "feet"),
  30118. weight: math.unit(150, "lb"),
  30119. name: "Front",
  30120. image: {
  30121. source: "./media/characters/pride/front.svg",
  30122. extra: 1299/1230,
  30123. bottom: 18/1317
  30124. }
  30125. },
  30126. },
  30127. [
  30128. {
  30129. name: "Normal",
  30130. height: math.unit(7, "feet")
  30131. },
  30132. {
  30133. name: "Mini-macro",
  30134. height: math.unit(11, "feet")
  30135. },
  30136. {
  30137. name: "Macro",
  30138. height: math.unit(15, "meters"),
  30139. default: true
  30140. },
  30141. {
  30142. name: "Macro+",
  30143. height: math.unit(40, "meters")
  30144. },
  30145. ]
  30146. ))
  30147. characterMakers.push(() => makeCharacter(
  30148. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30149. {
  30150. front: {
  30151. height: math.unit(4 + 2 / 12, "feet"),
  30152. weight: math.unit(95, "lb"),
  30153. name: "Front",
  30154. image: {
  30155. source: "./media/characters/vaelophis-nyx/front.svg",
  30156. extra: 2532/2330,
  30157. bottom: 0/2532
  30158. }
  30159. },
  30160. back: {
  30161. height: math.unit(4 + 2 / 12, "feet"),
  30162. weight: math.unit(95, "lb"),
  30163. name: "Back",
  30164. image: {
  30165. source: "./media/characters/vaelophis-nyx/back.svg",
  30166. extra: 2484/2361,
  30167. bottom: 0/2484
  30168. }
  30169. },
  30170. feralSide: {
  30171. height: math.unit(2 + 1/12, "feet"),
  30172. weight: math.unit(20, "lb"),
  30173. name: "Feral (Side)",
  30174. image: {
  30175. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30176. extra: 1721/1581,
  30177. bottom: 70/1791
  30178. }
  30179. },
  30180. feralLazing: {
  30181. height: math.unit(1.08, "feet"),
  30182. weight: math.unit(20, "lb"),
  30183. name: "Feral (Lazing)",
  30184. image: {
  30185. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30186. extra: 822/822,
  30187. bottom: 248/1070
  30188. }
  30189. },
  30190. ear: {
  30191. height: math.unit(0.416, "feet"),
  30192. name: "Ear",
  30193. image: {
  30194. source: "./media/characters/vaelophis-nyx/ear.svg"
  30195. }
  30196. },
  30197. eye: {
  30198. height: math.unit(0.0748, "feet"),
  30199. name: "Eye",
  30200. image: {
  30201. source: "./media/characters/vaelophis-nyx/eye.svg"
  30202. }
  30203. },
  30204. mouth: {
  30205. height: math.unit(0.378, "feet"),
  30206. name: "Mouth",
  30207. image: {
  30208. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30209. }
  30210. },
  30211. spade: {
  30212. height: math.unit(0.55, "feet"),
  30213. name: "Spade",
  30214. image: {
  30215. source: "./media/characters/vaelophis-nyx/spade.svg"
  30216. }
  30217. },
  30218. },
  30219. [
  30220. {
  30221. name: "Normal",
  30222. height: math.unit(4 + 2/12, "feet"),
  30223. default: true
  30224. },
  30225. ]
  30226. ))
  30227. characterMakers.push(() => makeCharacter(
  30228. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30229. {
  30230. front: {
  30231. height: math.unit(7, "feet"),
  30232. weight: math.unit(231, "lb"),
  30233. name: "Front",
  30234. image: {
  30235. source: "./media/characters/flux/front.svg",
  30236. extra: 919/871,
  30237. bottom: 0/919
  30238. }
  30239. },
  30240. back: {
  30241. height: math.unit(7, "feet"),
  30242. weight: math.unit(231, "lb"),
  30243. name: "Back",
  30244. image: {
  30245. source: "./media/characters/flux/back.svg",
  30246. extra: 1040/992,
  30247. bottom: 0/1040
  30248. }
  30249. },
  30250. frontDressed: {
  30251. height: math.unit(7, "feet"),
  30252. weight: math.unit(231, "lb"),
  30253. name: "Front (Dressed)",
  30254. image: {
  30255. source: "./media/characters/flux/front-dressed.svg",
  30256. extra: 919/871,
  30257. bottom: 0/919
  30258. }
  30259. },
  30260. feralSide: {
  30261. height: math.unit(5, "feet"),
  30262. weight: math.unit(150, "lb"),
  30263. name: "Feral (Side)",
  30264. image: {
  30265. source: "./media/characters/flux/feral-side.svg",
  30266. extra: 598/528,
  30267. bottom: 28/626
  30268. }
  30269. },
  30270. head: {
  30271. height: math.unit(1.585, "feet"),
  30272. name: "Head",
  30273. image: {
  30274. source: "./media/characters/flux/head.svg"
  30275. }
  30276. },
  30277. headSide: {
  30278. height: math.unit(1.74, "feet"),
  30279. name: "Head (Side)",
  30280. image: {
  30281. source: "./media/characters/flux/head-side.svg"
  30282. }
  30283. },
  30284. headSideFire: {
  30285. height: math.unit(1.76, "feet"),
  30286. name: "Head (Side, Fire)",
  30287. image: {
  30288. source: "./media/characters/flux/head-side-fire.svg"
  30289. }
  30290. },
  30291. },
  30292. [
  30293. {
  30294. name: "Normal",
  30295. height: math.unit(7, "feet"),
  30296. default: true
  30297. },
  30298. ]
  30299. ))
  30300. characterMakers.push(() => makeCharacter(
  30301. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30302. {
  30303. front: {
  30304. height: math.unit(9, "feet"),
  30305. weight: math.unit(1012, "lb"),
  30306. name: "Front",
  30307. image: {
  30308. source: "./media/characters/ulfra-lupae/front.svg",
  30309. extra: 1083/1011,
  30310. bottom: 67/1150
  30311. }
  30312. },
  30313. },
  30314. [
  30315. {
  30316. name: "Micro",
  30317. height: math.unit(6, "inches")
  30318. },
  30319. {
  30320. name: "Socializing",
  30321. height: math.unit(6 + 5/12, "feet")
  30322. },
  30323. {
  30324. name: "Normal",
  30325. height: math.unit(9, "feet"),
  30326. default: true
  30327. },
  30328. {
  30329. name: "Macro",
  30330. height: math.unit(150, "feet")
  30331. },
  30332. ]
  30333. ))
  30334. characterMakers.push(() => makeCharacter(
  30335. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30336. {
  30337. front: {
  30338. height: math.unit(5 + 2/12, "feet"),
  30339. weight: math.unit(120, "lb"),
  30340. name: "Front",
  30341. image: {
  30342. source: "./media/characters/timber/front.svg",
  30343. extra: 2814/2705,
  30344. bottom: 181/2995
  30345. }
  30346. },
  30347. },
  30348. [
  30349. {
  30350. name: "Normal",
  30351. height: math.unit(5 + 2/12, "feet"),
  30352. default: true
  30353. },
  30354. ]
  30355. ))
  30356. characterMakers.push(() => makeCharacter(
  30357. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30358. {
  30359. front: {
  30360. height: math.unit(5 + 7/12, "feet"),
  30361. weight: math.unit(220, "lb"),
  30362. name: "Front",
  30363. image: {
  30364. source: "./media/characters/nicki/front.svg",
  30365. extra: 453/419,
  30366. bottom: 7/460
  30367. }
  30368. },
  30369. frontAlt: {
  30370. height: math.unit(5 + 7/12, "feet"),
  30371. weight: math.unit(220, "lb"),
  30372. name: "Front-alt",
  30373. image: {
  30374. source: "./media/characters/nicki/front-alt.svg",
  30375. extra: 435/411,
  30376. bottom: 12/447
  30377. }
  30378. },
  30379. back: {
  30380. height: math.unit(5 + 7/12, "feet"),
  30381. weight: math.unit(220, "lb"),
  30382. name: "Back",
  30383. image: {
  30384. source: "./media/characters/nicki/back.svg",
  30385. extra: 440/413,
  30386. bottom: 19/459
  30387. }
  30388. },
  30389. taur: {
  30390. height: math.unit(7 + 6/12, "feet"),
  30391. weight: math.unit(700, "lb"),
  30392. name: "Taur",
  30393. image: {
  30394. source: "./media/characters/nicki/taur.svg",
  30395. extra: 975/773,
  30396. bottom: 0/975
  30397. }
  30398. },
  30399. frontNsfw: {
  30400. height: math.unit(5 + 7/12, "feet"),
  30401. weight: math.unit(220, "lb"),
  30402. name: "Front (NSFW)",
  30403. image: {
  30404. source: "./media/characters/nicki/front-nsfw.svg",
  30405. extra: 453/419,
  30406. bottom: 7/460
  30407. }
  30408. },
  30409. frontNsfwAlt: {
  30410. height: math.unit(5 + 7/12, "feet"),
  30411. weight: math.unit(220, "lb"),
  30412. name: "Front (Alt, NSFW)",
  30413. image: {
  30414. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30415. extra: 435/411,
  30416. bottom: 12/447
  30417. }
  30418. },
  30419. backNsfw: {
  30420. height: math.unit(5 + 7/12, "feet"),
  30421. weight: math.unit(220, "lb"),
  30422. name: "Back (NSFW)",
  30423. image: {
  30424. source: "./media/characters/nicki/back-nsfw.svg",
  30425. extra: 440/413,
  30426. bottom: 19/459
  30427. }
  30428. },
  30429. head: {
  30430. height: math.unit(2.1, "feet"),
  30431. name: "Head",
  30432. image: {
  30433. source: "./media/characters/nicki/head.svg"
  30434. }
  30435. },
  30436. paw: {
  30437. height: math.unit(1.88, "feet"),
  30438. name: "Paw",
  30439. image: {
  30440. source: "./media/characters/nicki/paw.svg"
  30441. }
  30442. },
  30443. },
  30444. [
  30445. {
  30446. name: "Normal",
  30447. height: math.unit(5 + 7/12, "feet"),
  30448. default: true
  30449. },
  30450. ]
  30451. ))
  30452. characterMakers.push(() => makeCharacter(
  30453. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30454. {
  30455. front: {
  30456. height: math.unit(7 + 10/12, "feet"),
  30457. weight: math.unit(3.5, "tons"),
  30458. name: "Front",
  30459. image: {
  30460. source: "./media/characters/lee/front.svg",
  30461. extra: 1773/1615,
  30462. bottom: 86/1859
  30463. }
  30464. },
  30465. hand: {
  30466. height: math.unit(1.78, "feet"),
  30467. name: "Hand",
  30468. image: {
  30469. source: "./media/characters/lee/hand.svg"
  30470. }
  30471. },
  30472. maw: {
  30473. height: math.unit(1.18, "feet"),
  30474. name: "Maw",
  30475. image: {
  30476. source: "./media/characters/lee/maw.svg"
  30477. }
  30478. },
  30479. },
  30480. [
  30481. {
  30482. name: "Normal",
  30483. height: math.unit(7 + 10/12, "feet"),
  30484. default: true
  30485. },
  30486. ]
  30487. ))
  30488. characterMakers.push(() => makeCharacter(
  30489. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30490. {
  30491. front: {
  30492. height: math.unit(9, "feet"),
  30493. name: "Front",
  30494. image: {
  30495. source: "./media/characters/guti/front.svg",
  30496. extra: 4551/4355,
  30497. bottom: 123/4674
  30498. }
  30499. },
  30500. tongue: {
  30501. height: math.unit(1, "feet"),
  30502. name: "Tongue",
  30503. image: {
  30504. source: "./media/characters/guti/tongue.svg"
  30505. }
  30506. },
  30507. paw: {
  30508. height: math.unit(1.18, "feet"),
  30509. name: "Paw",
  30510. image: {
  30511. source: "./media/characters/guti/paw.svg"
  30512. }
  30513. },
  30514. },
  30515. [
  30516. {
  30517. name: "Normal",
  30518. height: math.unit(9, "feet"),
  30519. default: true
  30520. },
  30521. ]
  30522. ))
  30523. characterMakers.push(() => makeCharacter(
  30524. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30525. {
  30526. side: {
  30527. height: math.unit(5, "meters"),
  30528. name: "Side",
  30529. image: {
  30530. source: "./media/characters/vesper/side.svg",
  30531. extra: 1605/1518,
  30532. bottom: 0/1605
  30533. }
  30534. },
  30535. },
  30536. [
  30537. {
  30538. name: "Small",
  30539. height: math.unit(5, "meters")
  30540. },
  30541. {
  30542. name: "Sage",
  30543. height: math.unit(100, "meters"),
  30544. default: true
  30545. },
  30546. {
  30547. name: "Fun Size",
  30548. height: math.unit(600, "meters")
  30549. },
  30550. {
  30551. name: "Goddess",
  30552. height: math.unit(20000, "km")
  30553. },
  30554. {
  30555. name: "Maximum",
  30556. height: math.unit(5, "galaxies")
  30557. },
  30558. ]
  30559. ))
  30560. characterMakers.push(() => makeCharacter(
  30561. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30562. {
  30563. front: {
  30564. height: math.unit(6 + 3/12, "feet"),
  30565. weight: math.unit(190, "lb"),
  30566. name: "Front",
  30567. image: {
  30568. source: "./media/characters/gawain/front.svg",
  30569. extra: 2222/2139,
  30570. bottom: 90/2312
  30571. }
  30572. },
  30573. back: {
  30574. height: math.unit(6 + 3/12, "feet"),
  30575. weight: math.unit(190, "lb"),
  30576. name: "Back",
  30577. image: {
  30578. source: "./media/characters/gawain/back.svg",
  30579. extra: 2199/2111,
  30580. bottom: 73/2272
  30581. }
  30582. },
  30583. },
  30584. [
  30585. {
  30586. name: "Normal",
  30587. height: math.unit(6 + 3/12, "feet"),
  30588. default: true
  30589. },
  30590. ]
  30591. ))
  30592. characterMakers.push(() => makeCharacter(
  30593. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30594. {
  30595. side: {
  30596. height: math.unit(3.5, "meters"),
  30597. weight: math.unit(16000, "lb"),
  30598. name: "Side",
  30599. image: {
  30600. source: "./media/characters/dascalti/side.svg",
  30601. extra: 392/273,
  30602. bottom: 47/439
  30603. }
  30604. },
  30605. breath: {
  30606. height: math.unit(7.4, "feet"),
  30607. name: "Breath",
  30608. image: {
  30609. source: "./media/characters/dascalti/breath.svg"
  30610. }
  30611. },
  30612. fed: {
  30613. height: math.unit(3.6, "meters"),
  30614. weight: math.unit(16000, "lb"),
  30615. name: "Fed",
  30616. image: {
  30617. source: "./media/characters/dascalti/fed.svg",
  30618. extra: 1419/820,
  30619. bottom: 95/1514
  30620. }
  30621. },
  30622. },
  30623. [
  30624. {
  30625. name: "Normal",
  30626. height: math.unit(3.5, "meters"),
  30627. default: true
  30628. },
  30629. ]
  30630. ))
  30631. characterMakers.push(() => makeCharacter(
  30632. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30633. {
  30634. front: {
  30635. height: math.unit(3 + 5/12, "feet"),
  30636. name: "Front",
  30637. image: {
  30638. source: "./media/characters/mauve/front.svg",
  30639. extra: 1126/1033,
  30640. bottom: 65/1191
  30641. }
  30642. },
  30643. side: {
  30644. height: math.unit(3 + 5/12, "feet"),
  30645. name: "Side",
  30646. image: {
  30647. source: "./media/characters/mauve/side.svg",
  30648. extra: 1089/1001,
  30649. bottom: 29/1118
  30650. }
  30651. },
  30652. back: {
  30653. height: math.unit(3 + 5/12, "feet"),
  30654. name: "Back",
  30655. image: {
  30656. source: "./media/characters/mauve/back.svg",
  30657. extra: 1173/1053,
  30658. bottom: 109/1282
  30659. }
  30660. },
  30661. },
  30662. [
  30663. {
  30664. name: "Normal",
  30665. height: math.unit(3 + 5/12, "feet"),
  30666. default: true
  30667. },
  30668. ]
  30669. ))
  30670. characterMakers.push(() => makeCharacter(
  30671. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30672. {
  30673. front: {
  30674. height: math.unit(6 + 3/12, "feet"),
  30675. weight: math.unit(430, "lb"),
  30676. name: "Front",
  30677. image: {
  30678. source: "./media/characters/carlos/front.svg",
  30679. extra: 1964/1913,
  30680. bottom: 70/2034
  30681. }
  30682. },
  30683. },
  30684. [
  30685. {
  30686. name: "Normal",
  30687. height: math.unit(6 + 3/12, "feet"),
  30688. default: true
  30689. },
  30690. ]
  30691. ))
  30692. characterMakers.push(() => makeCharacter(
  30693. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30694. {
  30695. back: {
  30696. height: math.unit(5 + 10/12, "feet"),
  30697. weight: math.unit(200, "lb"),
  30698. name: "Back",
  30699. image: {
  30700. source: "./media/characters/jax/back.svg",
  30701. extra: 764/739,
  30702. bottom: 25/789
  30703. }
  30704. },
  30705. },
  30706. [
  30707. {
  30708. name: "Normal",
  30709. height: math.unit(5 + 10/12, "feet"),
  30710. default: true
  30711. },
  30712. ]
  30713. ))
  30714. characterMakers.push(() => makeCharacter(
  30715. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30716. {
  30717. front: {
  30718. height: math.unit(8, "feet"),
  30719. weight: math.unit(250, "lb"),
  30720. name: "Front",
  30721. image: {
  30722. source: "./media/characters/eikthynir/front.svg",
  30723. extra: 1332/1166,
  30724. bottom: 82/1414
  30725. }
  30726. },
  30727. back: {
  30728. height: math.unit(8, "feet"),
  30729. weight: math.unit(250, "lb"),
  30730. name: "Back",
  30731. image: {
  30732. source: "./media/characters/eikthynir/back.svg",
  30733. extra: 1342/1190,
  30734. bottom: 19/1361
  30735. }
  30736. },
  30737. dick: {
  30738. height: math.unit(2.35, "feet"),
  30739. name: "Dick",
  30740. image: {
  30741. source: "./media/characters/eikthynir/dick.svg"
  30742. }
  30743. },
  30744. },
  30745. [
  30746. {
  30747. name: "Normal",
  30748. height: math.unit(8, "feet"),
  30749. default: true
  30750. },
  30751. ]
  30752. ))
  30753. characterMakers.push(() => makeCharacter(
  30754. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30755. {
  30756. front: {
  30757. height: math.unit(99, "meters"),
  30758. weight: math.unit(13000, "tons"),
  30759. name: "Front",
  30760. image: {
  30761. source: "./media/characters/zlmos/front.svg",
  30762. extra: 2202/1992,
  30763. bottom: 315/2517
  30764. }
  30765. },
  30766. },
  30767. [
  30768. {
  30769. name: "Macro",
  30770. height: math.unit(99, "meters"),
  30771. default: true
  30772. },
  30773. ]
  30774. ))
  30775. characterMakers.push(() => makeCharacter(
  30776. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30777. {
  30778. front: {
  30779. height: math.unit(6 + 5/12, "feet"),
  30780. name: "Front",
  30781. image: {
  30782. source: "./media/characters/purri/front.svg",
  30783. extra: 1698/1610,
  30784. bottom: 32/1730
  30785. }
  30786. },
  30787. frontAlt: {
  30788. height: math.unit(6 + 5/12, "feet"),
  30789. name: "Front (Alt)",
  30790. image: {
  30791. source: "./media/characters/purri/front-alt.svg",
  30792. extra: 450/420,
  30793. bottom: 26/476
  30794. }
  30795. },
  30796. boots: {
  30797. height: math.unit(5.5, "feet"),
  30798. name: "Boots",
  30799. image: {
  30800. source: "./media/characters/purri/boots.svg",
  30801. extra: 905/853,
  30802. bottom: 18/923
  30803. }
  30804. },
  30805. lying: {
  30806. height: math.unit(2, "feet"),
  30807. name: "Lying",
  30808. image: {
  30809. source: "./media/characters/purri/lying.svg",
  30810. extra: 940/843,
  30811. bottom: 146/1086
  30812. }
  30813. },
  30814. devious: {
  30815. height: math.unit(1.77, "feet"),
  30816. name: "Devious",
  30817. image: {
  30818. source: "./media/characters/purri/devious.svg",
  30819. extra: 1440/1155,
  30820. bottom: 147/1587
  30821. }
  30822. },
  30823. bean: {
  30824. height: math.unit(1.94, "feet"),
  30825. name: "Bean",
  30826. image: {
  30827. source: "./media/characters/purri/bean.svg"
  30828. }
  30829. },
  30830. },
  30831. [
  30832. {
  30833. name: "Micro",
  30834. height: math.unit(1, "mm")
  30835. },
  30836. {
  30837. name: "Normal",
  30838. height: math.unit(6 + 5/12, "feet"),
  30839. default: true
  30840. },
  30841. {
  30842. name: "Macro :3c",
  30843. height: math.unit(2, "miles")
  30844. },
  30845. ]
  30846. ))
  30847. characterMakers.push(() => makeCharacter(
  30848. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30849. {
  30850. front: {
  30851. height: math.unit(6 + 2/12, "feet"),
  30852. weight: math.unit(250, "lb"),
  30853. name: "Front",
  30854. image: {
  30855. source: "./media/characters/moonlight/front.svg",
  30856. extra: 1044/908,
  30857. bottom: 56/1100
  30858. }
  30859. },
  30860. feral: {
  30861. height: math.unit(3 + 1/12, "feet"),
  30862. weight: math.unit(50, "kg"),
  30863. name: "Feral",
  30864. image: {
  30865. source: "./media/characters/moonlight/feral.svg",
  30866. extra: 3705/2791,
  30867. bottom: 145/3850
  30868. }
  30869. },
  30870. paw: {
  30871. height: math.unit(1, "feet"),
  30872. name: "Paw",
  30873. image: {
  30874. source: "./media/characters/moonlight/paw.svg"
  30875. }
  30876. },
  30877. paws: {
  30878. height: math.unit(0.98, "feet"),
  30879. name: "Paws",
  30880. image: {
  30881. source: "./media/characters/moonlight/paws.svg",
  30882. extra: 939/939,
  30883. bottom: 50/989
  30884. }
  30885. },
  30886. mouth: {
  30887. height: math.unit(0.48, "feet"),
  30888. name: "Mouth",
  30889. image: {
  30890. source: "./media/characters/moonlight/mouth.svg"
  30891. }
  30892. },
  30893. dick: {
  30894. height: math.unit(1.46, "feet"),
  30895. name: "Dick",
  30896. image: {
  30897. source: "./media/characters/moonlight/dick.svg"
  30898. }
  30899. },
  30900. },
  30901. [
  30902. {
  30903. name: "Normal",
  30904. height: math.unit(6 + 2/12, "feet"),
  30905. default: true
  30906. },
  30907. {
  30908. name: "Macro",
  30909. height: math.unit(300, "feet")
  30910. },
  30911. {
  30912. name: "Macro+",
  30913. height: math.unit(1, "mile")
  30914. },
  30915. {
  30916. name: "Mt. Moon",
  30917. height: math.unit(5, "miles")
  30918. },
  30919. {
  30920. name: "Megamacro",
  30921. height: math.unit(15, "miles")
  30922. },
  30923. ]
  30924. ))
  30925. characterMakers.push(() => makeCharacter(
  30926. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30927. {
  30928. back: {
  30929. height: math.unit(6, "feet"),
  30930. weight: math.unit(150, "lb"),
  30931. name: "Back",
  30932. image: {
  30933. source: "./media/characters/sylen/back.svg",
  30934. extra: 1335/1273,
  30935. bottom: 107/1442
  30936. }
  30937. },
  30938. },
  30939. [
  30940. {
  30941. name: "Normal",
  30942. height: math.unit(5 + 5/12, "feet")
  30943. },
  30944. {
  30945. name: "Megamacro",
  30946. height: math.unit(3, "miles"),
  30947. default: true
  30948. },
  30949. ]
  30950. ))
  30951. characterMakers.push(() => makeCharacter(
  30952. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30953. {
  30954. front: {
  30955. height: math.unit(6, "feet"),
  30956. weight: math.unit(190, "lb"),
  30957. name: "Front",
  30958. image: {
  30959. source: "./media/characters/huttser/front.svg",
  30960. extra: 1152/1058,
  30961. bottom: 23/1175
  30962. }
  30963. },
  30964. side: {
  30965. height: math.unit(6, "feet"),
  30966. weight: math.unit(190, "lb"),
  30967. name: "Side",
  30968. image: {
  30969. source: "./media/characters/huttser/side.svg",
  30970. extra: 1174/1065,
  30971. bottom: 18/1192
  30972. }
  30973. },
  30974. back: {
  30975. height: math.unit(6, "feet"),
  30976. weight: math.unit(190, "lb"),
  30977. name: "Back",
  30978. image: {
  30979. source: "./media/characters/huttser/back.svg",
  30980. extra: 1158/1056,
  30981. bottom: 12/1170
  30982. }
  30983. },
  30984. },
  30985. [
  30986. ]
  30987. ))
  30988. characterMakers.push(() => makeCharacter(
  30989. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30990. {
  30991. side: {
  30992. height: math.unit(12 + 9/12, "feet"),
  30993. weight: math.unit(15000, "lb"),
  30994. name: "Side",
  30995. image: {
  30996. source: "./media/characters/faan/side.svg",
  30997. extra: 2747/2697,
  30998. bottom: 0/2747
  30999. }
  31000. },
  31001. front: {
  31002. height: math.unit(12 + 9/12, "feet"),
  31003. weight: math.unit(15000, "lb"),
  31004. name: "Front",
  31005. image: {
  31006. source: "./media/characters/faan/front.svg",
  31007. extra: 607/571,
  31008. bottom: 24/631
  31009. }
  31010. },
  31011. head: {
  31012. height: math.unit(2.85, "feet"),
  31013. name: "Head",
  31014. image: {
  31015. source: "./media/characters/faan/head.svg"
  31016. }
  31017. },
  31018. headAlt: {
  31019. height: math.unit(3.13, "feet"),
  31020. name: "Head-alt",
  31021. image: {
  31022. source: "./media/characters/faan/head-alt.svg"
  31023. }
  31024. },
  31025. },
  31026. [
  31027. {
  31028. name: "Normal",
  31029. height: math.unit(12 + 9/12, "feet"),
  31030. default: true
  31031. },
  31032. ]
  31033. ))
  31034. characterMakers.push(() => makeCharacter(
  31035. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31036. {
  31037. front: {
  31038. height: math.unit(6, "feet"),
  31039. weight: math.unit(300, "lb"),
  31040. name: "Front",
  31041. image: {
  31042. source: "./media/characters/tanio/front.svg",
  31043. extra: 711/673,
  31044. bottom: 25/736
  31045. }
  31046. },
  31047. },
  31048. [
  31049. {
  31050. name: "Normal",
  31051. height: math.unit(6, "feet"),
  31052. default: true
  31053. },
  31054. ]
  31055. ))
  31056. characterMakers.push(() => makeCharacter(
  31057. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31058. {
  31059. front: {
  31060. height: math.unit(3, "inches"),
  31061. name: "Front",
  31062. image: {
  31063. source: "./media/characters/noboru/front.svg",
  31064. extra: 1039/932,
  31065. bottom: 18/1057
  31066. }
  31067. },
  31068. },
  31069. [
  31070. {
  31071. name: "Micro",
  31072. height: math.unit(3, "inches"),
  31073. default: true
  31074. },
  31075. ]
  31076. ))
  31077. characterMakers.push(() => makeCharacter(
  31078. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31079. {
  31080. front: {
  31081. height: math.unit(1.85, "meters"),
  31082. weight: math.unit(80, "kg"),
  31083. name: "Front",
  31084. image: {
  31085. source: "./media/characters/daniel-barrett/front.svg",
  31086. extra: 355/337,
  31087. bottom: 9/364
  31088. }
  31089. },
  31090. },
  31091. [
  31092. {
  31093. name: "Pico",
  31094. height: math.unit(0.0433, "mm")
  31095. },
  31096. {
  31097. name: "Nano",
  31098. height: math.unit(1.5, "mm")
  31099. },
  31100. {
  31101. name: "Micro",
  31102. height: math.unit(5.3, "cm"),
  31103. default: true
  31104. },
  31105. {
  31106. name: "Normal",
  31107. height: math.unit(1.85, "meters")
  31108. },
  31109. {
  31110. name: "Macro",
  31111. height: math.unit(64.7, "meters")
  31112. },
  31113. {
  31114. name: "Megamacro",
  31115. height: math.unit(2.26, "km")
  31116. },
  31117. {
  31118. name: "Gigamacro",
  31119. height: math.unit(79, "km")
  31120. },
  31121. {
  31122. name: "Teramacro",
  31123. height: math.unit(2765, "km")
  31124. },
  31125. {
  31126. name: "Petamacro",
  31127. height: math.unit(96678, "km")
  31128. },
  31129. ]
  31130. ))
  31131. characterMakers.push(() => makeCharacter(
  31132. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31133. {
  31134. front: {
  31135. height: math.unit(30, "meters"),
  31136. weight: math.unit(400, "tons"),
  31137. name: "Front",
  31138. image: {
  31139. source: "./media/characters/zeel/front.svg",
  31140. extra: 2599/2599,
  31141. bottom: 226/2825
  31142. }
  31143. },
  31144. },
  31145. [
  31146. {
  31147. name: "Macro",
  31148. height: math.unit(30, "meters"),
  31149. default: true
  31150. },
  31151. ]
  31152. ))
  31153. characterMakers.push(() => makeCharacter(
  31154. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31155. {
  31156. front: {
  31157. height: math.unit(6 + 7/12, "feet"),
  31158. weight: math.unit(210, "lb"),
  31159. name: "Front",
  31160. image: {
  31161. source: "./media/characters/tarn/front.svg",
  31162. extra: 3517/3220,
  31163. bottom: 91/3608
  31164. }
  31165. },
  31166. back: {
  31167. height: math.unit(6 + 7/12, "feet"),
  31168. weight: math.unit(210, "lb"),
  31169. name: "Back",
  31170. image: {
  31171. source: "./media/characters/tarn/back.svg",
  31172. extra: 3566/3241,
  31173. bottom: 34/3600
  31174. }
  31175. },
  31176. dick: {
  31177. height: math.unit(1.65, "feet"),
  31178. name: "Dick",
  31179. image: {
  31180. source: "./media/characters/tarn/dick.svg"
  31181. }
  31182. },
  31183. paw: {
  31184. height: math.unit(1.80, "feet"),
  31185. name: "Paw",
  31186. image: {
  31187. source: "./media/characters/tarn/paw.svg"
  31188. }
  31189. },
  31190. tongue: {
  31191. height: math.unit(0.97, "feet"),
  31192. name: "Tongue",
  31193. image: {
  31194. source: "./media/characters/tarn/tongue.svg"
  31195. }
  31196. },
  31197. },
  31198. [
  31199. {
  31200. name: "Micro",
  31201. height: math.unit(4, "inches")
  31202. },
  31203. {
  31204. name: "Normal",
  31205. height: math.unit(6 + 7/12, "feet"),
  31206. default: true
  31207. },
  31208. {
  31209. name: "Macro",
  31210. height: math.unit(300, "feet")
  31211. },
  31212. ]
  31213. ))
  31214. characterMakers.push(() => makeCharacter(
  31215. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31216. {
  31217. front: {
  31218. height: math.unit(5 + 7/12, "feet"),
  31219. weight: math.unit(80, "kg"),
  31220. name: "Front",
  31221. image: {
  31222. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31223. extra: 3023/2865,
  31224. bottom: 33/3056
  31225. }
  31226. },
  31227. back: {
  31228. height: math.unit(5 + 7/12, "feet"),
  31229. weight: math.unit(80, "kg"),
  31230. name: "Back",
  31231. image: {
  31232. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31233. extra: 3020/2886,
  31234. bottom: 30/3050
  31235. }
  31236. },
  31237. dick: {
  31238. height: math.unit(0.98, "feet"),
  31239. name: "Dick",
  31240. image: {
  31241. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31242. }
  31243. },
  31244. anatomy: {
  31245. height: math.unit(2.86, "feet"),
  31246. name: "Anatomy",
  31247. image: {
  31248. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31249. }
  31250. },
  31251. },
  31252. [
  31253. {
  31254. name: "Really Small",
  31255. height: math.unit(2, "inches")
  31256. },
  31257. {
  31258. name: "Micro",
  31259. height: math.unit(5.583, "inches")
  31260. },
  31261. {
  31262. name: "Normal",
  31263. height: math.unit(5 + 7/12, "feet"),
  31264. default: true
  31265. },
  31266. {
  31267. name: "Macro",
  31268. height: math.unit(67, "feet")
  31269. },
  31270. {
  31271. name: "Megamacro",
  31272. height: math.unit(134, "feet")
  31273. },
  31274. ]
  31275. ))
  31276. characterMakers.push(() => makeCharacter(
  31277. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31278. {
  31279. front: {
  31280. height: math.unit(9, "feet"),
  31281. weight: math.unit(120, "lb"),
  31282. name: "Front",
  31283. image: {
  31284. source: "./media/characters/sally/front.svg",
  31285. extra: 1506/1349,
  31286. bottom: 66/1572
  31287. }
  31288. },
  31289. },
  31290. [
  31291. {
  31292. name: "Normal",
  31293. height: math.unit(9, "feet"),
  31294. default: true
  31295. },
  31296. ]
  31297. ))
  31298. characterMakers.push(() => makeCharacter(
  31299. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31300. {
  31301. front: {
  31302. height: math.unit(8, "feet"),
  31303. weight: math.unit(900, "lb"),
  31304. name: "Front",
  31305. image: {
  31306. source: "./media/characters/owen/front.svg",
  31307. extra: 1761/1657,
  31308. bottom: 74/1835
  31309. }
  31310. },
  31311. side: {
  31312. height: math.unit(8, "feet"),
  31313. weight: math.unit(900, "lb"),
  31314. name: "Side",
  31315. image: {
  31316. source: "./media/characters/owen/side.svg",
  31317. extra: 1797/1734,
  31318. bottom: 30/1827
  31319. }
  31320. },
  31321. back: {
  31322. height: math.unit(8, "feet"),
  31323. weight: math.unit(900, "lb"),
  31324. name: "Back",
  31325. image: {
  31326. source: "./media/characters/owen/back.svg",
  31327. extra: 1796/1706,
  31328. bottom: 59/1855
  31329. }
  31330. },
  31331. maw: {
  31332. height: math.unit(1.76, "feet"),
  31333. name: "Maw",
  31334. image: {
  31335. source: "./media/characters/owen/maw.svg"
  31336. }
  31337. },
  31338. },
  31339. [
  31340. {
  31341. name: "Normal",
  31342. height: math.unit(8, "feet"),
  31343. default: true
  31344. },
  31345. ]
  31346. ))
  31347. characterMakers.push(() => makeCharacter(
  31348. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31349. {
  31350. front: {
  31351. height: math.unit(4, "feet"),
  31352. weight: math.unit(400, "lb"),
  31353. name: "Front",
  31354. image: {
  31355. source: "./media/characters/ryth/front.svg",
  31356. extra: 876/691,
  31357. bottom: 25/901
  31358. }
  31359. },
  31360. },
  31361. [
  31362. {
  31363. name: "Normal",
  31364. height: math.unit(4, "feet"),
  31365. default: true
  31366. },
  31367. ]
  31368. ))
  31369. characterMakers.push(() => makeCharacter(
  31370. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31371. {
  31372. front: {
  31373. height: math.unit(7, "feet"),
  31374. weight: math.unit(180, "lb"),
  31375. name: "Front",
  31376. image: {
  31377. source: "./media/characters/necrolance/front.svg",
  31378. extra: 1062/947,
  31379. bottom: 41/1103
  31380. }
  31381. },
  31382. back: {
  31383. height: math.unit(7, "feet"),
  31384. weight: math.unit(180, "lb"),
  31385. name: "Back",
  31386. image: {
  31387. source: "./media/characters/necrolance/back.svg",
  31388. extra: 1045/984,
  31389. bottom: 14/1059
  31390. }
  31391. },
  31392. wing: {
  31393. height: math.unit(2.67, "feet"),
  31394. name: "Wing",
  31395. image: {
  31396. source: "./media/characters/necrolance/wing.svg"
  31397. }
  31398. },
  31399. },
  31400. [
  31401. {
  31402. name: "Normal",
  31403. height: math.unit(7, "feet"),
  31404. default: true
  31405. },
  31406. ]
  31407. ))
  31408. characterMakers.push(() => makeCharacter(
  31409. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31410. {
  31411. front: {
  31412. height: math.unit(76, "meters"),
  31413. weight: math.unit(30000, "tons"),
  31414. name: "Front",
  31415. image: {
  31416. source: "./media/characters/tyler/front.svg",
  31417. extra: 1640/1640,
  31418. bottom: 114/1754
  31419. }
  31420. },
  31421. },
  31422. [
  31423. {
  31424. name: "Macro",
  31425. height: math.unit(76, "meters"),
  31426. default: true
  31427. },
  31428. ]
  31429. ))
  31430. characterMakers.push(() => makeCharacter(
  31431. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31432. {
  31433. front: {
  31434. height: math.unit(4 + 11/12, "feet"),
  31435. weight: math.unit(132, "lb"),
  31436. name: "Front",
  31437. image: {
  31438. source: "./media/characters/icey/front.svg",
  31439. extra: 2750/2550,
  31440. bottom: 33/2783
  31441. }
  31442. },
  31443. back: {
  31444. height: math.unit(4 + 11/12, "feet"),
  31445. weight: math.unit(132, "lb"),
  31446. name: "Back",
  31447. image: {
  31448. source: "./media/characters/icey/back.svg",
  31449. extra: 2624/2481,
  31450. bottom: 35/2659
  31451. }
  31452. },
  31453. },
  31454. [
  31455. {
  31456. name: "Normal",
  31457. height: math.unit(4 + 11/12, "feet"),
  31458. default: true
  31459. },
  31460. ]
  31461. ))
  31462. characterMakers.push(() => makeCharacter(
  31463. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31464. {
  31465. front: {
  31466. height: math.unit(100, "feet"),
  31467. weight: math.unit(0, "lb"),
  31468. name: "Front",
  31469. image: {
  31470. source: "./media/characters/smile/front.svg",
  31471. extra: 2983/2912,
  31472. bottom: 162/3145
  31473. }
  31474. },
  31475. back: {
  31476. height: math.unit(100, "feet"),
  31477. weight: math.unit(0, "lb"),
  31478. name: "Back",
  31479. image: {
  31480. source: "./media/characters/smile/back.svg",
  31481. extra: 3143/3031,
  31482. bottom: 91/3234
  31483. }
  31484. },
  31485. head: {
  31486. height: math.unit(26.3, "feet"),
  31487. weight: math.unit(0, "lb"),
  31488. name: "Head",
  31489. image: {
  31490. source: "./media/characters/smile/head.svg"
  31491. }
  31492. },
  31493. collar: {
  31494. height: math.unit(5.3, "feet"),
  31495. weight: math.unit(0, "lb"),
  31496. name: "Collar",
  31497. image: {
  31498. source: "./media/characters/smile/collar.svg"
  31499. }
  31500. },
  31501. },
  31502. [
  31503. {
  31504. name: "Macro",
  31505. height: math.unit(100, "feet"),
  31506. default: true
  31507. },
  31508. ]
  31509. ))
  31510. characterMakers.push(() => makeCharacter(
  31511. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31512. {
  31513. dragon: {
  31514. height: math.unit(26, "feet"),
  31515. weight: math.unit(36, "tons"),
  31516. name: "Dragon",
  31517. image: {
  31518. source: "./media/characters/arimphae/dragon.svg",
  31519. extra: 1574/983,
  31520. bottom: 357/1931
  31521. }
  31522. },
  31523. drake: {
  31524. height: math.unit(9, "feet"),
  31525. weight: math.unit(1.5, "tons"),
  31526. name: "Drake",
  31527. image: {
  31528. source: "./media/characters/arimphae/drake.svg",
  31529. extra: 1120/925,
  31530. bottom: 435/1555
  31531. }
  31532. },
  31533. },
  31534. [
  31535. {
  31536. name: "Small",
  31537. height: math.unit(26*5/9, "feet")
  31538. },
  31539. {
  31540. name: "Normal",
  31541. height: math.unit(26, "feet"),
  31542. default: true
  31543. },
  31544. ]
  31545. ))
  31546. characterMakers.push(() => makeCharacter(
  31547. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31548. {
  31549. front: {
  31550. height: math.unit(8 + 9/12, "feet"),
  31551. name: "Front",
  31552. image: {
  31553. source: "./media/characters/xander/front.svg",
  31554. extra: 848/673,
  31555. bottom: 62/910
  31556. }
  31557. },
  31558. },
  31559. [
  31560. {
  31561. name: "Normal",
  31562. height: math.unit(8 + 9/12, "feet"),
  31563. default: true
  31564. },
  31565. {
  31566. name: "Gaze Grabber",
  31567. height: math.unit(13 + 8/12, "feet")
  31568. },
  31569. {
  31570. name: "Jaw Dropper",
  31571. height: math.unit(27, "feet")
  31572. },
  31573. {
  31574. name: "Show Stopper",
  31575. height: math.unit(136, "feet")
  31576. },
  31577. {
  31578. name: "Superstar",
  31579. height: math.unit(1.9e6, "miles")
  31580. },
  31581. ]
  31582. ))
  31583. characterMakers.push(() => makeCharacter(
  31584. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31585. {
  31586. side: {
  31587. height: math.unit(2100, "feet"),
  31588. name: "Side",
  31589. image: {
  31590. source: "./media/characters/osiris/side.svg",
  31591. extra: 1105/939,
  31592. bottom: 167/1272
  31593. }
  31594. },
  31595. },
  31596. [
  31597. {
  31598. name: "Macro",
  31599. height: math.unit(2100, "feet"),
  31600. default: true
  31601. },
  31602. ]
  31603. ))
  31604. characterMakers.push(() => makeCharacter(
  31605. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31606. {
  31607. front: {
  31608. height: math.unit(6 + 8/12, "feet"),
  31609. weight: math.unit(225, "lb"),
  31610. name: "Front",
  31611. image: {
  31612. source: "./media/characters/rhys-londe/front.svg",
  31613. extra: 2258/2141,
  31614. bottom: 188/2446
  31615. }
  31616. },
  31617. back: {
  31618. height: math.unit(6 + 8/12, "feet"),
  31619. weight: math.unit(225, "lb"),
  31620. name: "Back",
  31621. image: {
  31622. source: "./media/characters/rhys-londe/back.svg",
  31623. extra: 2237/2137,
  31624. bottom: 63/2300
  31625. }
  31626. },
  31627. frontNsfw: {
  31628. height: math.unit(6 + 8/12, "feet"),
  31629. weight: math.unit(225, "lb"),
  31630. name: "Front (NSFW)",
  31631. image: {
  31632. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31633. extra: 2258/2141,
  31634. bottom: 188/2446
  31635. }
  31636. },
  31637. backNsfw: {
  31638. height: math.unit(6 + 8/12, "feet"),
  31639. weight: math.unit(225, "lb"),
  31640. name: "Back (NSFW)",
  31641. image: {
  31642. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31643. extra: 2237/2137,
  31644. bottom: 63/2300
  31645. }
  31646. },
  31647. dick: {
  31648. height: math.unit(30, "inches"),
  31649. name: "Dick",
  31650. image: {
  31651. source: "./media/characters/rhys-londe/dick.svg"
  31652. }
  31653. },
  31654. maw: {
  31655. height: math.unit(1.6, "feet"),
  31656. name: "Maw",
  31657. image: {
  31658. source: "./media/characters/rhys-londe/maw.svg"
  31659. }
  31660. },
  31661. },
  31662. [
  31663. {
  31664. name: "Normal",
  31665. height: math.unit(6 + 8/12, "feet"),
  31666. default: true
  31667. },
  31668. ]
  31669. ))
  31670. characterMakers.push(() => makeCharacter(
  31671. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31672. {
  31673. front: {
  31674. height: math.unit(3 + 10/12, "feet"),
  31675. weight: math.unit(90, "lb"),
  31676. name: "Front",
  31677. image: {
  31678. source: "./media/characters/taivas-ensim/front.svg",
  31679. extra: 1327/1216,
  31680. bottom: 96/1423
  31681. }
  31682. },
  31683. back: {
  31684. height: math.unit(3 + 10/12, "feet"),
  31685. weight: math.unit(90, "lb"),
  31686. name: "Back",
  31687. image: {
  31688. source: "./media/characters/taivas-ensim/back.svg",
  31689. extra: 1355/1247,
  31690. bottom: 11/1366
  31691. }
  31692. },
  31693. frontNsfw: {
  31694. height: math.unit(3 + 10/12, "feet"),
  31695. weight: math.unit(90, "lb"),
  31696. name: "Front (NSFW)",
  31697. image: {
  31698. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31699. extra: 1327/1216,
  31700. bottom: 96/1423
  31701. }
  31702. },
  31703. backNsfw: {
  31704. height: math.unit(3 + 10/12, "feet"),
  31705. weight: math.unit(90, "lb"),
  31706. name: "Back (NSFW)",
  31707. image: {
  31708. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31709. extra: 1355/1247,
  31710. bottom: 11/1366
  31711. }
  31712. },
  31713. },
  31714. [
  31715. {
  31716. name: "Normal",
  31717. height: math.unit(3 + 10/12, "feet"),
  31718. default: true
  31719. },
  31720. ]
  31721. ))
  31722. characterMakers.push(() => makeCharacter(
  31723. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31724. {
  31725. front: {
  31726. height: math.unit(9 + 6/12, "feet"),
  31727. weight: math.unit(940, "lb"),
  31728. name: "Front",
  31729. image: {
  31730. source: "./media/characters/byliss/front.svg",
  31731. extra: 1327/1290,
  31732. bottom: 82/1409
  31733. }
  31734. },
  31735. back: {
  31736. height: math.unit(9 + 6/12, "feet"),
  31737. weight: math.unit(940, "lb"),
  31738. name: "Back",
  31739. image: {
  31740. source: "./media/characters/byliss/back.svg",
  31741. extra: 1376/1349,
  31742. bottom: 9/1385
  31743. }
  31744. },
  31745. frontNsfw: {
  31746. height: math.unit(9 + 6/12, "feet"),
  31747. weight: math.unit(940, "lb"),
  31748. name: "Front (NSFW)",
  31749. image: {
  31750. source: "./media/characters/byliss/front-nsfw.svg",
  31751. extra: 1327/1290,
  31752. bottom: 82/1409
  31753. }
  31754. },
  31755. backNsfw: {
  31756. height: math.unit(9 + 6/12, "feet"),
  31757. weight: math.unit(940, "lb"),
  31758. name: "Back (NSFW)",
  31759. image: {
  31760. source: "./media/characters/byliss/back-nsfw.svg",
  31761. extra: 1376/1349,
  31762. bottom: 9/1385
  31763. }
  31764. },
  31765. },
  31766. [
  31767. {
  31768. name: "Normal",
  31769. height: math.unit(9 + 6/12, "feet"),
  31770. default: true
  31771. },
  31772. ]
  31773. ))
  31774. characterMakers.push(() => makeCharacter(
  31775. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31776. {
  31777. front: {
  31778. height: math.unit(5 + 2/12, "feet"),
  31779. weight: math.unit(200, "lb"),
  31780. name: "Front",
  31781. image: {
  31782. source: "./media/characters/noraly/front.svg",
  31783. extra: 4985/4773,
  31784. bottom: 150/5135
  31785. }
  31786. },
  31787. full: {
  31788. height: math.unit(5 + 2/12, "feet"),
  31789. weight: math.unit(164, "lb"),
  31790. name: "Full",
  31791. image: {
  31792. source: "./media/characters/noraly/full.svg",
  31793. extra: 1114/1059,
  31794. bottom: 35/1149
  31795. }
  31796. },
  31797. fuller: {
  31798. height: math.unit(5 + 2/12, "feet"),
  31799. weight: math.unit(230, "lb"),
  31800. name: "Fuller",
  31801. image: {
  31802. source: "./media/characters/noraly/fuller.svg",
  31803. extra: 1114/1059,
  31804. bottom: 35/1149
  31805. }
  31806. },
  31807. fullest: {
  31808. height: math.unit(5 + 2/12, "feet"),
  31809. weight: math.unit(300, "lb"),
  31810. name: "Fullest",
  31811. image: {
  31812. source: "./media/characters/noraly/fullest.svg",
  31813. extra: 1114/1059,
  31814. bottom: 35/1149
  31815. }
  31816. },
  31817. },
  31818. [
  31819. {
  31820. name: "Normal",
  31821. height: math.unit(5 + 2/12, "feet"),
  31822. default: true
  31823. },
  31824. ]
  31825. ))
  31826. characterMakers.push(() => makeCharacter(
  31827. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31828. {
  31829. front: {
  31830. height: math.unit(5 + 2/12, "feet"),
  31831. weight: math.unit(210, "lb"),
  31832. name: "Front",
  31833. image: {
  31834. source: "./media/characters/pera/front.svg",
  31835. extra: 1560/1531,
  31836. bottom: 165/1725
  31837. }
  31838. },
  31839. back: {
  31840. height: math.unit(5 + 2/12, "feet"),
  31841. weight: math.unit(210, "lb"),
  31842. name: "Back",
  31843. image: {
  31844. source: "./media/characters/pera/back.svg",
  31845. extra: 1523/1493,
  31846. bottom: 152/1675
  31847. }
  31848. },
  31849. dick: {
  31850. height: math.unit(2.4, "feet"),
  31851. name: "Dick",
  31852. image: {
  31853. source: "./media/characters/pera/dick.svg"
  31854. }
  31855. },
  31856. },
  31857. [
  31858. {
  31859. name: "Normal",
  31860. height: math.unit(5 + 2/12, "feet"),
  31861. default: true
  31862. },
  31863. ]
  31864. ))
  31865. characterMakers.push(() => makeCharacter(
  31866. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31867. {
  31868. front: {
  31869. height: math.unit(12, "feet"),
  31870. weight: math.unit(3200, "lb"),
  31871. name: "Front",
  31872. image: {
  31873. source: "./media/characters/julian/front.svg",
  31874. extra: 2962/2701,
  31875. bottom: 184/3146
  31876. }
  31877. },
  31878. maw: {
  31879. height: math.unit(5.35, "feet"),
  31880. name: "Maw",
  31881. image: {
  31882. source: "./media/characters/julian/maw.svg"
  31883. }
  31884. },
  31885. paw: {
  31886. height: math.unit(3.07, "feet"),
  31887. name: "Paw",
  31888. image: {
  31889. source: "./media/characters/julian/paw.svg"
  31890. }
  31891. },
  31892. },
  31893. [
  31894. {
  31895. name: "Default",
  31896. height: math.unit(12, "feet"),
  31897. default: true
  31898. },
  31899. {
  31900. name: "Big",
  31901. height: math.unit(50, "feet")
  31902. },
  31903. {
  31904. name: "Really Big",
  31905. height: math.unit(1, "mile")
  31906. },
  31907. {
  31908. name: "Extremely Big",
  31909. height: math.unit(100, "miles")
  31910. },
  31911. {
  31912. name: "Planet Hugger",
  31913. height: math.unit(200, "megameters")
  31914. },
  31915. {
  31916. name: "Unreasonably Big",
  31917. height: math.unit(1e300, "meters")
  31918. },
  31919. ]
  31920. ))
  31921. characterMakers.push(() => makeCharacter(
  31922. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31923. {
  31924. solgooleo: {
  31925. height: math.unit(4, "meters"),
  31926. weight: math.unit(6000*1.5, "kg"),
  31927. volume: math.unit(6000, "liters"),
  31928. name: "Solgooleo",
  31929. image: {
  31930. source: "./media/characters/pi/solgooleo.svg",
  31931. extra: 388/331,
  31932. bottom: 29/417
  31933. }
  31934. },
  31935. },
  31936. [
  31937. {
  31938. name: "Normal",
  31939. height: math.unit(4, "meters"),
  31940. default: true
  31941. },
  31942. ]
  31943. ))
  31944. characterMakers.push(() => makeCharacter(
  31945. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31946. {
  31947. front: {
  31948. height: math.unit(8 + 2/12, "feet"),
  31949. weight: math.unit(4, "tons"),
  31950. name: "Front",
  31951. image: {
  31952. source: "./media/characters/shaun/front.svg",
  31953. extra: 1550/1505,
  31954. bottom: 353/1903
  31955. }
  31956. },
  31957. },
  31958. [
  31959. {
  31960. name: "Lorg",
  31961. height: math.unit(8 + 2/12, "feet"),
  31962. default: true
  31963. },
  31964. ]
  31965. ))
  31966. characterMakers.push(() => makeCharacter(
  31967. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31968. {
  31969. front: {
  31970. height: math.unit(7, "feet"),
  31971. name: "Front",
  31972. image: {
  31973. source: "./media/characters/sini/front.svg",
  31974. extra: 726/678,
  31975. bottom: 35/761
  31976. }
  31977. },
  31978. back: {
  31979. height: math.unit(7, "feet"),
  31980. name: "Back",
  31981. image: {
  31982. source: "./media/characters/sini/back.svg",
  31983. extra: 743/701,
  31984. bottom: 12/755
  31985. }
  31986. },
  31987. mawAnthro: {
  31988. height: math.unit(2.14, "feet"),
  31989. name: "Maw (Anthro)",
  31990. image: {
  31991. source: "./media/characters/sini/maw-anthro.svg"
  31992. }
  31993. },
  31994. dick: {
  31995. height: math.unit(1.45, "feet"),
  31996. name: "Dick (Anthro)",
  31997. image: {
  31998. source: "./media/characters/sini/dick-anthro.svg"
  31999. }
  32000. },
  32001. feral: {
  32002. height: math.unit(13, "feet"),
  32003. name: "Feral",
  32004. image: {
  32005. source: "./media/characters/sini/feral.svg",
  32006. extra: 814/605,
  32007. bottom: 11/825
  32008. }
  32009. },
  32010. mawFeral: {
  32011. height: math.unit(4.6, "feet"),
  32012. name: "Maw-feral",
  32013. image: {
  32014. source: "./media/characters/sini/maw-feral.svg"
  32015. }
  32016. },
  32017. footFeral: {
  32018. height: math.unit(4.2, "feet"),
  32019. name: "Foot-feral",
  32020. image: {
  32021. source: "./media/characters/sini/foot-feral.svg"
  32022. }
  32023. },
  32024. },
  32025. [
  32026. {
  32027. name: "Normal",
  32028. height: math.unit(7, "feet"),
  32029. default: true
  32030. },
  32031. ]
  32032. ))
  32033. characterMakers.push(() => makeCharacter(
  32034. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32035. {
  32036. side: {
  32037. height: math.unit(13, "meters"),
  32038. weight: math.unit(9072, "kg"),
  32039. name: "Side",
  32040. image: {
  32041. source: "./media/characters/raylldo/side.svg",
  32042. extra: 403/344,
  32043. bottom: 42/445
  32044. }
  32045. },
  32046. leaping: {
  32047. height: math.unit(12.3, "meters"),
  32048. weight: math.unit(9072, "kg"),
  32049. name: "Leaping",
  32050. image: {
  32051. source: "./media/characters/raylldo/leaping.svg",
  32052. extra: 470/249,
  32053. bottom: 13/483
  32054. }
  32055. },
  32056. flying: {
  32057. height: math.unit(18, "meters"),
  32058. weight: math.unit(9072, "kg"),
  32059. name: "Flying",
  32060. image: {
  32061. source: "./media/characters/raylldo/flying.svg"
  32062. }
  32063. },
  32064. head: {
  32065. height: math.unit(5.85, "meters"),
  32066. name: "Head",
  32067. image: {
  32068. source: "./media/characters/raylldo/head.svg"
  32069. }
  32070. },
  32071. maw: {
  32072. height: math.unit(5.32, "meters"),
  32073. name: "Maw",
  32074. image: {
  32075. source: "./media/characters/raylldo/maw.svg"
  32076. }
  32077. },
  32078. eye: {
  32079. height: math.unit(0.54, "meters"),
  32080. name: "Eye",
  32081. image: {
  32082. source: "./media/characters/raylldo/eye.svg"
  32083. }
  32084. },
  32085. },
  32086. [
  32087. {
  32088. name: "Normal",
  32089. height: math.unit(13, "meters"),
  32090. default: true
  32091. },
  32092. ]
  32093. ))
  32094. characterMakers.push(() => makeCharacter(
  32095. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32096. {
  32097. anthroFront: {
  32098. height: math.unit(9, "feet"),
  32099. weight: math.unit(600, "lb"),
  32100. name: "Anthro (Front)",
  32101. image: {
  32102. source: "./media/characters/glint/anthro-front.svg",
  32103. extra: 1097/1018,
  32104. bottom: 28/1125
  32105. }
  32106. },
  32107. anthroBack: {
  32108. height: math.unit(9, "feet"),
  32109. weight: math.unit(600, "lb"),
  32110. name: "Anthro (Back)",
  32111. image: {
  32112. source: "./media/characters/glint/anthro-back.svg",
  32113. extra: 1154/997,
  32114. bottom: 36/1190
  32115. }
  32116. },
  32117. feral: {
  32118. height: math.unit(11, "feet"),
  32119. weight: math.unit(50000, "lb"),
  32120. name: "Feral",
  32121. image: {
  32122. source: "./media/characters/glint/feral.svg",
  32123. extra: 3035/1585,
  32124. bottom: 1169/4204
  32125. }
  32126. },
  32127. dickAnthro: {
  32128. height: math.unit(0.7, "meters"),
  32129. name: "Dick (Anthro)",
  32130. image: {
  32131. source: "./media/characters/glint/dick-anthro.svg"
  32132. }
  32133. },
  32134. dickFeral: {
  32135. height: math.unit(2.65, "meters"),
  32136. name: "Dick (Feral)",
  32137. image: {
  32138. source: "./media/characters/glint/dick-feral.svg"
  32139. }
  32140. },
  32141. slitHidden: {
  32142. height: math.unit(5.85, "meters"),
  32143. name: "Slit (Hidden)",
  32144. image: {
  32145. source: "./media/characters/glint/slit-hidden.svg"
  32146. }
  32147. },
  32148. slitErect: {
  32149. height: math.unit(5.85, "meters"),
  32150. name: "Slit (Erect)",
  32151. image: {
  32152. source: "./media/characters/glint/slit-erect.svg"
  32153. }
  32154. },
  32155. mawAnthro: {
  32156. height: math.unit(0.63, "meters"),
  32157. name: "Maw (Anthro)",
  32158. image: {
  32159. source: "./media/characters/glint/maw.svg"
  32160. }
  32161. },
  32162. mawFeral: {
  32163. height: math.unit(2.89, "meters"),
  32164. name: "Maw (Feral)",
  32165. image: {
  32166. source: "./media/characters/glint/maw.svg"
  32167. }
  32168. },
  32169. },
  32170. [
  32171. {
  32172. name: "Normal",
  32173. height: math.unit(9, "feet"),
  32174. default: true
  32175. },
  32176. ]
  32177. ))
  32178. characterMakers.push(() => makeCharacter(
  32179. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32180. {
  32181. side: {
  32182. height: math.unit(15, "feet"),
  32183. weight: math.unit(5000, "kg"),
  32184. name: "Side",
  32185. image: {
  32186. source: "./media/characters/kairne/side.svg",
  32187. extra: 979/811,
  32188. bottom: 13/992
  32189. }
  32190. },
  32191. front: {
  32192. height: math.unit(15, "feet"),
  32193. weight: math.unit(5000, "kg"),
  32194. name: "Front",
  32195. image: {
  32196. source: "./media/characters/kairne/front.svg",
  32197. extra: 908/814,
  32198. bottom: 26/934
  32199. }
  32200. },
  32201. sideNsfw: {
  32202. height: math.unit(15, "feet"),
  32203. weight: math.unit(5000, "kg"),
  32204. name: "Side (NSFW)",
  32205. image: {
  32206. source: "./media/characters/kairne/side-nsfw.svg",
  32207. extra: 979/811,
  32208. bottom: 13/992
  32209. }
  32210. },
  32211. frontNsfw: {
  32212. height: math.unit(15, "feet"),
  32213. weight: math.unit(5000, "kg"),
  32214. name: "Front (NSFW)",
  32215. image: {
  32216. source: "./media/characters/kairne/front-nsfw.svg",
  32217. extra: 908/814,
  32218. bottom: 26/934
  32219. }
  32220. },
  32221. dickCaged: {
  32222. height: math.unit(0.65, "meters"),
  32223. name: "Dick-caged",
  32224. image: {
  32225. source: "./media/characters/kairne/dick-caged.svg"
  32226. }
  32227. },
  32228. dick: {
  32229. height: math.unit(0.79, "meters"),
  32230. name: "Dick",
  32231. image: {
  32232. source: "./media/characters/kairne/dick.svg"
  32233. }
  32234. },
  32235. genitals: {
  32236. height: math.unit(1.29, "meters"),
  32237. name: "Genitals",
  32238. image: {
  32239. source: "./media/characters/kairne/genitals.svg"
  32240. }
  32241. },
  32242. maw: {
  32243. height: math.unit(1.73, "meters"),
  32244. name: "Maw",
  32245. image: {
  32246. source: "./media/characters/kairne/maw.svg"
  32247. }
  32248. },
  32249. },
  32250. [
  32251. {
  32252. name: "Normal",
  32253. height: math.unit(15, "feet"),
  32254. default: true
  32255. },
  32256. ]
  32257. ))
  32258. characterMakers.push(() => makeCharacter(
  32259. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32260. {
  32261. front: {
  32262. height: math.unit(5 + 8/12, "feet"),
  32263. weight: math.unit(139, "lb"),
  32264. name: "Front",
  32265. image: {
  32266. source: "./media/characters/biscuit-jackal/front.svg",
  32267. extra: 2106/1961,
  32268. bottom: 58/2164
  32269. }
  32270. },
  32271. back: {
  32272. height: math.unit(5 + 8/12, "feet"),
  32273. weight: math.unit(139, "lb"),
  32274. name: "Back",
  32275. image: {
  32276. source: "./media/characters/biscuit-jackal/back.svg",
  32277. extra: 2132/1976,
  32278. bottom: 57/2189
  32279. }
  32280. },
  32281. werejackal: {
  32282. height: math.unit(6 + 3/12, "feet"),
  32283. weight: math.unit(188, "lb"),
  32284. name: "Werejackal",
  32285. image: {
  32286. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32287. extra: 2373/2178,
  32288. bottom: 53/2426
  32289. }
  32290. },
  32291. },
  32292. [
  32293. {
  32294. name: "Normal",
  32295. height: math.unit(5 + 8/12, "feet"),
  32296. default: true
  32297. },
  32298. ]
  32299. ))
  32300. characterMakers.push(() => makeCharacter(
  32301. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32302. {
  32303. front: {
  32304. height: math.unit(140, "cm"),
  32305. weight: math.unit(45, "kg"),
  32306. name: "Front",
  32307. image: {
  32308. source: "./media/characters/tayra-white/front.svg",
  32309. extra: 2229/2192,
  32310. bottom: 75/2304
  32311. }
  32312. },
  32313. },
  32314. [
  32315. {
  32316. name: "Normal",
  32317. height: math.unit(140, "cm"),
  32318. default: true
  32319. },
  32320. ]
  32321. ))
  32322. characterMakers.push(() => makeCharacter(
  32323. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32324. {
  32325. front: {
  32326. height: math.unit(4 + 5/12, "feet"),
  32327. name: "Front",
  32328. image: {
  32329. source: "./media/characters/scoop/front.svg",
  32330. extra: 1257/1136,
  32331. bottom: 69/1326
  32332. }
  32333. },
  32334. back: {
  32335. height: math.unit(4 + 5/12, "feet"),
  32336. name: "Back",
  32337. image: {
  32338. source: "./media/characters/scoop/back.svg",
  32339. extra: 1321/1152,
  32340. bottom: 32/1353
  32341. }
  32342. },
  32343. maw: {
  32344. height: math.unit(0.68, "feet"),
  32345. name: "Maw",
  32346. image: {
  32347. source: "./media/characters/scoop/maw.svg"
  32348. }
  32349. },
  32350. },
  32351. [
  32352. {
  32353. name: "Really Small",
  32354. height: math.unit(1, "mm")
  32355. },
  32356. {
  32357. name: "Micro",
  32358. height: math.unit(1, "inch")
  32359. },
  32360. {
  32361. name: "Normal",
  32362. height: math.unit(4 + 5/12, "feet"),
  32363. default: true
  32364. },
  32365. {
  32366. name: "Macro",
  32367. height: math.unit(200, "feet")
  32368. },
  32369. {
  32370. name: "Megamacro",
  32371. height: math.unit(3240, "feet")
  32372. },
  32373. {
  32374. name: "Teramacro",
  32375. height: math.unit(2500, "miles")
  32376. },
  32377. ]
  32378. ))
  32379. characterMakers.push(() => makeCharacter(
  32380. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32381. {
  32382. front: {
  32383. height: math.unit(15 + 7/12, "feet"),
  32384. name: "Front",
  32385. image: {
  32386. source: "./media/characters/saphinara/front.svg",
  32387. extra: 604/546,
  32388. bottom: 19/623
  32389. }
  32390. },
  32391. side: {
  32392. height: math.unit(15 + 7/12, "feet"),
  32393. name: "Side",
  32394. image: {
  32395. source: "./media/characters/saphinara/side.svg",
  32396. extra: 605/547,
  32397. bottom: 6/611
  32398. }
  32399. },
  32400. back: {
  32401. height: math.unit(15 + 7/12, "feet"),
  32402. name: "Back",
  32403. image: {
  32404. source: "./media/characters/saphinara/back.svg",
  32405. extra: 591/531,
  32406. bottom: 13/604
  32407. }
  32408. },
  32409. frontTail: {
  32410. height: math.unit(15 + 7/12, "feet"),
  32411. name: "Front (Full Tail)",
  32412. image: {
  32413. source: "./media/characters/saphinara/front-tail.svg",
  32414. extra: 748/547,
  32415. bottom: 66/814
  32416. }
  32417. },
  32418. },
  32419. [
  32420. {
  32421. name: "Normal",
  32422. height: math.unit(15 + 7/12, "feet"),
  32423. default: true
  32424. },
  32425. {
  32426. name: "Angry",
  32427. height: math.unit(30 + 6/12, "feet")
  32428. },
  32429. {
  32430. name: "Enraged",
  32431. height: math.unit(102 + 1/12, "feet")
  32432. },
  32433. ]
  32434. ))
  32435. characterMakers.push(() => makeCharacter(
  32436. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32437. {
  32438. front: {
  32439. height: math.unit(6 + 8/12, "feet"),
  32440. weight: math.unit(300, "lb"),
  32441. name: "Front",
  32442. image: {
  32443. source: "./media/characters/jrain/front.svg",
  32444. extra: 3039/2865,
  32445. bottom: 399/3438
  32446. }
  32447. },
  32448. back: {
  32449. height: math.unit(6 + 8/12, "feet"),
  32450. weight: math.unit(300, "lb"),
  32451. name: "Back",
  32452. image: {
  32453. source: "./media/characters/jrain/back.svg",
  32454. extra: 3089/2938,
  32455. bottom: 172/3261
  32456. }
  32457. },
  32458. head: {
  32459. height: math.unit(2.14, "feet"),
  32460. name: "Head",
  32461. image: {
  32462. source: "./media/characters/jrain/head.svg"
  32463. }
  32464. },
  32465. maw: {
  32466. height: math.unit(1.77, "feet"),
  32467. name: "Maw",
  32468. image: {
  32469. source: "./media/characters/jrain/maw.svg"
  32470. }
  32471. },
  32472. leftHand: {
  32473. height: math.unit(1.1, "feet"),
  32474. name: "Left Hand",
  32475. image: {
  32476. source: "./media/characters/jrain/left-hand.svg"
  32477. }
  32478. },
  32479. rightHand: {
  32480. height: math.unit(1.1, "feet"),
  32481. name: "Right Hand",
  32482. image: {
  32483. source: "./media/characters/jrain/right-hand.svg"
  32484. }
  32485. },
  32486. eye: {
  32487. height: math.unit(0.35, "feet"),
  32488. name: "Eye",
  32489. image: {
  32490. source: "./media/characters/jrain/eye.svg"
  32491. }
  32492. },
  32493. },
  32494. [
  32495. {
  32496. name: "Normal",
  32497. height: math.unit(6 + 8/12, "feet"),
  32498. default: true
  32499. },
  32500. {
  32501. name: "Casually Large",
  32502. height: math.unit(25, "feet")
  32503. },
  32504. {
  32505. name: "Giant",
  32506. height: math.unit(100, "feet")
  32507. },
  32508. {
  32509. name: "Kaiju",
  32510. height: math.unit(300, "feet")
  32511. },
  32512. ]
  32513. ))
  32514. characterMakers.push(() => makeCharacter(
  32515. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32516. {
  32517. dragon: {
  32518. height: math.unit(5, "meters"),
  32519. name: "Dragon",
  32520. image: {
  32521. source: "./media/characters/sabrina/dragon.svg",
  32522. extra: 3670 / 2365,
  32523. bottom: 333 / 4003
  32524. }
  32525. },
  32526. gryphon: {
  32527. height: math.unit(3, "meters"),
  32528. name: "Gryphon",
  32529. image: {
  32530. source: "./media/characters/sabrina/gryphon.svg",
  32531. extra: 1576 / 945,
  32532. bottom: 71 / 1647
  32533. }
  32534. },
  32535. snake: {
  32536. height: math.unit(12, "meters"),
  32537. name: "Snake",
  32538. image: {
  32539. source: "./media/characters/sabrina/snake.svg",
  32540. extra: 1758 / 1320,
  32541. bottom: 186 / 1944
  32542. }
  32543. },
  32544. collar: {
  32545. height: math.unit(1.86, "meters"),
  32546. name: "Collar",
  32547. image: {
  32548. source: "./media/characters/sabrina/collar.svg"
  32549. }
  32550. },
  32551. eye: {
  32552. height: math.unit(0.53, "meters"),
  32553. name: "Eye",
  32554. image: {
  32555. source: "./media/characters/sabrina/eye.svg"
  32556. }
  32557. },
  32558. foot: {
  32559. height: math.unit(1.86, "meters"),
  32560. name: "Foot",
  32561. image: {
  32562. source: "./media/characters/sabrina/foot.svg"
  32563. }
  32564. },
  32565. hand: {
  32566. height: math.unit(1.32, "meters"),
  32567. name: "Hand",
  32568. image: {
  32569. source: "./media/characters/sabrina/hand.svg"
  32570. }
  32571. },
  32572. head: {
  32573. height: math.unit(2.44, "meters"),
  32574. name: "Head",
  32575. image: {
  32576. source: "./media/characters/sabrina/head.svg"
  32577. }
  32578. },
  32579. headAngry: {
  32580. height: math.unit(2.44, "meters"),
  32581. name: "Head (Angry))",
  32582. image: {
  32583. source: "./media/characters/sabrina/head-angry.svg"
  32584. }
  32585. },
  32586. maw: {
  32587. height: math.unit(1.65, "meters"),
  32588. name: "Maw",
  32589. image: {
  32590. source: "./media/characters/sabrina/maw.svg"
  32591. }
  32592. },
  32593. spikes: {
  32594. height: math.unit(1.69, "meters"),
  32595. name: "Spikes",
  32596. image: {
  32597. source: "./media/characters/sabrina/spikes.svg"
  32598. }
  32599. },
  32600. stomach: {
  32601. height: math.unit(1.15, "meters"),
  32602. name: "Stomach",
  32603. image: {
  32604. source: "./media/characters/sabrina/stomach.svg"
  32605. }
  32606. },
  32607. tongue: {
  32608. height: math.unit(1.27, "meters"),
  32609. name: "Tongue",
  32610. image: {
  32611. source: "./media/characters/sabrina/tongue.svg"
  32612. }
  32613. },
  32614. wingDorsal: {
  32615. height: math.unit(4.85, "meters"),
  32616. name: "Wing (Dorsal)",
  32617. image: {
  32618. source: "./media/characters/sabrina/wing-dorsal.svg"
  32619. }
  32620. },
  32621. wingVentral: {
  32622. height: math.unit(4.85, "meters"),
  32623. name: "Wing (Ventral)",
  32624. image: {
  32625. source: "./media/characters/sabrina/wing-ventral.svg"
  32626. }
  32627. },
  32628. },
  32629. [
  32630. {
  32631. name: "Normal",
  32632. height: math.unit(5, "meters"),
  32633. default: true
  32634. },
  32635. ]
  32636. ))
  32637. characterMakers.push(() => makeCharacter(
  32638. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32639. {
  32640. frontMaid: {
  32641. height: math.unit(5 + 5/12, "feet"),
  32642. weight: math.unit(130, "lb"),
  32643. name: "Front (Maid)",
  32644. image: {
  32645. source: "./media/characters/midnight-tales/front-maid.svg",
  32646. extra: 489/454,
  32647. bottom: 61/550
  32648. }
  32649. },
  32650. frontFormal: {
  32651. height: math.unit(5 + 5/12, "feet"),
  32652. weight: math.unit(130, "lb"),
  32653. name: "Front (Formal)",
  32654. image: {
  32655. source: "./media/characters/midnight-tales/front-formal.svg",
  32656. extra: 489/454,
  32657. bottom: 61/550
  32658. }
  32659. },
  32660. back: {
  32661. height: math.unit(5 + 5/12, "feet"),
  32662. weight: math.unit(130, "lb"),
  32663. name: "Back",
  32664. image: {
  32665. source: "./media/characters/midnight-tales/back.svg",
  32666. extra: 498/456,
  32667. bottom: 33/531
  32668. }
  32669. },
  32670. frontBeast: {
  32671. height: math.unit(40, "feet"),
  32672. weight: math.unit(64000, "lb"),
  32673. name: "Front (Beast)",
  32674. image: {
  32675. source: "./media/characters/midnight-tales/front-beast.svg",
  32676. extra: 927/860,
  32677. bottom: 53/980
  32678. }
  32679. },
  32680. backBeast: {
  32681. height: math.unit(40, "feet"),
  32682. weight: math.unit(64000, "lb"),
  32683. name: "Back (Beast)",
  32684. image: {
  32685. source: "./media/characters/midnight-tales/back-beast.svg",
  32686. extra: 929/855,
  32687. bottom: 16/945
  32688. }
  32689. },
  32690. footBeast: {
  32691. height: math.unit(6.7, "feet"),
  32692. name: "Foot (Beast)",
  32693. image: {
  32694. source: "./media/characters/midnight-tales/foot-beast.svg"
  32695. }
  32696. },
  32697. headBeast: {
  32698. height: math.unit(8, "feet"),
  32699. name: "Head (Beast)",
  32700. image: {
  32701. source: "./media/characters/midnight-tales/head-beast.svg"
  32702. }
  32703. },
  32704. },
  32705. [
  32706. {
  32707. name: "Normal",
  32708. height: math.unit(5 + 5 / 12, "feet"),
  32709. default: true
  32710. },
  32711. {
  32712. name: "Macro",
  32713. height: math.unit(25, "feet")
  32714. },
  32715. ]
  32716. ))
  32717. characterMakers.push(() => makeCharacter(
  32718. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32719. {
  32720. front: {
  32721. height: math.unit(5 + 10/12, "feet"),
  32722. name: "Front",
  32723. image: {
  32724. source: "./media/characters/argon/front.svg",
  32725. extra: 2009/1935,
  32726. bottom: 118/2127
  32727. }
  32728. },
  32729. back: {
  32730. height: math.unit(5 + 10/12, "feet"),
  32731. name: "Back",
  32732. image: {
  32733. source: "./media/characters/argon/back.svg",
  32734. extra: 2047/1992,
  32735. bottom: 20/2067
  32736. }
  32737. },
  32738. frontDressed: {
  32739. height: math.unit(5 + 10/12, "feet"),
  32740. name: "Front (Dressed)",
  32741. image: {
  32742. source: "./media/characters/argon/front-dressed.svg",
  32743. extra: 2009/1935,
  32744. bottom: 118/2127
  32745. }
  32746. },
  32747. },
  32748. [
  32749. {
  32750. name: "Normal",
  32751. height: math.unit(5 + 10/12, "feet"),
  32752. default: true
  32753. },
  32754. ]
  32755. ))
  32756. characterMakers.push(() => makeCharacter(
  32757. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32758. {
  32759. front: {
  32760. height: math.unit(8 + 6/12, "feet"),
  32761. weight: math.unit(1150, "lb"),
  32762. name: "Front",
  32763. image: {
  32764. source: "./media/characters/kichi/front.svg",
  32765. extra: 1267/1164,
  32766. bottom: 61/1328
  32767. }
  32768. },
  32769. back: {
  32770. height: math.unit(8 + 6/12, "feet"),
  32771. weight: math.unit(1150, "lb"),
  32772. name: "Back",
  32773. image: {
  32774. source: "./media/characters/kichi/back.svg",
  32775. extra: 1273/1166,
  32776. bottom: 33/1306
  32777. }
  32778. },
  32779. },
  32780. [
  32781. {
  32782. name: "Normal",
  32783. height: math.unit(8 + 6/12, "feet"),
  32784. default: true
  32785. },
  32786. ]
  32787. ))
  32788. characterMakers.push(() => makeCharacter(
  32789. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32790. {
  32791. front: {
  32792. height: math.unit(6, "feet"),
  32793. weight: math.unit(210, "lb"),
  32794. name: "Front",
  32795. image: {
  32796. source: "./media/characters/manetel-greyscale/front.svg",
  32797. extra: 350/312,
  32798. bottom: 8/358
  32799. }
  32800. },
  32801. },
  32802. [
  32803. {
  32804. name: "Micro",
  32805. height: math.unit(2, "inches")
  32806. },
  32807. {
  32808. name: "Normal",
  32809. height: math.unit(6, "feet"),
  32810. default: true
  32811. },
  32812. {
  32813. name: "Minimacro",
  32814. height: math.unit(17, "feet")
  32815. },
  32816. {
  32817. name: "Macro",
  32818. height: math.unit(117, "feet")
  32819. },
  32820. ]
  32821. ))
  32822. characterMakers.push(() => makeCharacter(
  32823. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32824. {
  32825. side: {
  32826. height: math.unit(5 + 1/12, "feet"),
  32827. weight: math.unit(418, "lb"),
  32828. name: "Side",
  32829. image: {
  32830. source: "./media/characters/softpurr/side.svg",
  32831. extra: 1993/1945,
  32832. bottom: 134/2127
  32833. }
  32834. },
  32835. front: {
  32836. height: math.unit(5 + 1/12, "feet"),
  32837. weight: math.unit(418, "lb"),
  32838. name: "Front",
  32839. image: {
  32840. source: "./media/characters/softpurr/front.svg",
  32841. extra: 1950/1856,
  32842. bottom: 174/2124
  32843. }
  32844. },
  32845. paw: {
  32846. height: math.unit(1, "feet"),
  32847. name: "Paw",
  32848. image: {
  32849. source: "./media/characters/softpurr/paw.svg"
  32850. }
  32851. },
  32852. },
  32853. [
  32854. {
  32855. name: "Normal",
  32856. height: math.unit(5 + 1/12, "feet"),
  32857. default: true
  32858. },
  32859. ]
  32860. ))
  32861. characterMakers.push(() => makeCharacter(
  32862. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32863. {
  32864. front: {
  32865. height: math.unit(260, "meters"),
  32866. name: "Front",
  32867. image: {
  32868. source: "./media/characters/anahita/front.svg",
  32869. extra: 665/635,
  32870. bottom: 89/754
  32871. }
  32872. },
  32873. },
  32874. [
  32875. {
  32876. name: "Macro",
  32877. height: math.unit(260, "meters"),
  32878. default: true
  32879. },
  32880. ]
  32881. ))
  32882. characterMakers.push(() => makeCharacter(
  32883. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32884. {
  32885. front: {
  32886. height: math.unit(4 + 10/12, "feet"),
  32887. weight: math.unit(160, "lb"),
  32888. name: "Front",
  32889. image: {
  32890. source: "./media/characters/chip-mouse/front.svg",
  32891. extra: 3528/3408,
  32892. bottom: 0/3528
  32893. }
  32894. },
  32895. frontNsfw: {
  32896. height: math.unit(4 + 10/12, "feet"),
  32897. weight: math.unit(160, "lb"),
  32898. name: "Front (NSFW)",
  32899. image: {
  32900. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32901. extra: 3528/3408,
  32902. bottom: 0/3528
  32903. }
  32904. },
  32905. },
  32906. [
  32907. {
  32908. name: "Normal",
  32909. height: math.unit(4 + 10/12, "feet"),
  32910. default: true
  32911. },
  32912. ]
  32913. ))
  32914. characterMakers.push(() => makeCharacter(
  32915. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32916. {
  32917. side: {
  32918. height: math.unit(10, "feet"),
  32919. weight: math.unit(14000, "lb"),
  32920. name: "Side",
  32921. image: {
  32922. source: "./media/characters/kremm/side.svg",
  32923. extra: 1390/1053,
  32924. bottom: 90/1480
  32925. }
  32926. },
  32927. gut: {
  32928. height: math.unit(5.8, "feet"),
  32929. name: "Gut",
  32930. image: {
  32931. source: "./media/characters/kremm/gut.svg"
  32932. }
  32933. },
  32934. ass: {
  32935. height: math.unit(6.1, "feet"),
  32936. name: "Ass",
  32937. image: {
  32938. source: "./media/characters/kremm/ass.svg"
  32939. }
  32940. },
  32941. jaws: {
  32942. height: math.unit(2.2, "feet"),
  32943. name: "Jaws",
  32944. image: {
  32945. source: "./media/characters/kremm/jaws.svg"
  32946. }
  32947. },
  32948. dick: {
  32949. height: math.unit(4.26, "feet"),
  32950. name: "Dick",
  32951. image: {
  32952. source: "./media/characters/kremm/dick.svg"
  32953. }
  32954. },
  32955. },
  32956. [
  32957. {
  32958. name: "Normal",
  32959. height: math.unit(10, "feet"),
  32960. default: true
  32961. },
  32962. ]
  32963. ))
  32964. characterMakers.push(() => makeCharacter(
  32965. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  32966. {
  32967. front: {
  32968. height: math.unit(30, "stories"),
  32969. name: "Front",
  32970. image: {
  32971. source: "./media/characters/kai/front.svg",
  32972. extra: 1892/1718,
  32973. bottom: 162/2054
  32974. }
  32975. },
  32976. },
  32977. [
  32978. {
  32979. name: "Macro",
  32980. height: math.unit(30, "stories"),
  32981. default: true
  32982. },
  32983. ]
  32984. ))
  32985. characterMakers.push(() => makeCharacter(
  32986. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  32987. {
  32988. front: {
  32989. height: math.unit(6 + 4/12, "feet"),
  32990. weight: math.unit(145, "lb"),
  32991. name: "Front",
  32992. image: {
  32993. source: "./media/characters/sykes/front.svg",
  32994. extra: 1321 / 1187,
  32995. bottom: 66 / 1387
  32996. }
  32997. },
  32998. back: {
  32999. height: math.unit(6 + 4/12, "feet"),
  33000. weight: math.unit(145, "lb"),
  33001. name: "Back",
  33002. image: {
  33003. source: "./media/characters/sykes/back.svg",
  33004. extra: 1326/1181,
  33005. bottom: 31/1357
  33006. }
  33007. },
  33008. handBack: {
  33009. height: math.unit(0.9, "feet"),
  33010. name: "Hand (Back)",
  33011. image: {
  33012. source: "./media/characters/sykes/hand-back.svg"
  33013. }
  33014. },
  33015. handFront: {
  33016. height: math.unit(0.839, "feet"),
  33017. name: "Hand (Front)",
  33018. image: {
  33019. source: "./media/characters/sykes/hand-front.svg"
  33020. }
  33021. },
  33022. leftFoot: {
  33023. height: math.unit(1.2, "feet"),
  33024. name: "Foot (Left)",
  33025. image: {
  33026. source: "./media/characters/sykes/foot-left.svg"
  33027. }
  33028. },
  33029. rightFoot: {
  33030. height: math.unit(1.2, "feet"),
  33031. name: "Foot (Right)",
  33032. image: {
  33033. source: "./media/characters/sykes/foot-right.svg"
  33034. }
  33035. },
  33036. maw: {
  33037. height: math.unit(1.93, "feet"),
  33038. name: "Maw",
  33039. image: {
  33040. source: "./media/characters/sykes/maw.svg"
  33041. }
  33042. },
  33043. teeth: {
  33044. height: math.unit(0.51, "feet"),
  33045. name: "Teeth",
  33046. image: {
  33047. source: "./media/characters/sykes/teeth.svg"
  33048. }
  33049. },
  33050. tongue: {
  33051. height: math.unit(2.13, "feet"),
  33052. name: "Tongue",
  33053. image: {
  33054. source: "./media/characters/sykes/tongue.svg"
  33055. }
  33056. },
  33057. uvula: {
  33058. height: math.unit(0.16, "feet"),
  33059. name: "Uvula",
  33060. image: {
  33061. source: "./media/characters/sykes/uvula.svg"
  33062. }
  33063. },
  33064. collar: {
  33065. height: math.unit(0.287, "feet"),
  33066. name: "Collar",
  33067. image: {
  33068. source: "./media/characters/sykes/collar.svg"
  33069. }
  33070. },
  33071. },
  33072. [
  33073. {
  33074. name: "Shrunken",
  33075. height: math.unit(5, "inches")
  33076. },
  33077. {
  33078. name: "Normal",
  33079. height: math.unit(6 + 4 / 12, "feet"),
  33080. default: true
  33081. },
  33082. {
  33083. name: "Big",
  33084. height: math.unit(15, "feet")
  33085. },
  33086. ]
  33087. ))
  33088. characterMakers.push(() => makeCharacter(
  33089. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33090. {
  33091. front: {
  33092. height: math.unit(5 + 8/12, "feet"),
  33093. weight: math.unit(190, "lb"),
  33094. name: "Front",
  33095. image: {
  33096. source: "./media/characters/oven-otter/front.svg",
  33097. extra: 1809/1740,
  33098. bottom: 181/1990
  33099. }
  33100. },
  33101. back: {
  33102. height: math.unit(5 + 8/12, "feet"),
  33103. weight: math.unit(190, "lb"),
  33104. name: "Back",
  33105. image: {
  33106. source: "./media/characters/oven-otter/back.svg",
  33107. extra: 1709/1635,
  33108. bottom: 118/1827
  33109. }
  33110. },
  33111. hand: {
  33112. height: math.unit(1.07, "feet"),
  33113. name: "Hand",
  33114. image: {
  33115. source: "./media/characters/oven-otter/hand.svg"
  33116. }
  33117. },
  33118. beans: {
  33119. height: math.unit(1.74, "feet"),
  33120. name: "Beans",
  33121. image: {
  33122. source: "./media/characters/oven-otter/beans.svg"
  33123. }
  33124. },
  33125. },
  33126. [
  33127. {
  33128. name: "Micro",
  33129. height: math.unit(0.5, "inches")
  33130. },
  33131. {
  33132. name: "Normal",
  33133. height: math.unit(5 + 8/12, "feet"),
  33134. default: true
  33135. },
  33136. {
  33137. name: "Macro",
  33138. height: math.unit(250, "feet")
  33139. },
  33140. {
  33141. name: "Really High",
  33142. height: math.unit(420, "feet")
  33143. },
  33144. ]
  33145. ))
  33146. characterMakers.push(() => makeCharacter(
  33147. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33148. {
  33149. front: {
  33150. height: math.unit(5, "meters"),
  33151. weight: math.unit(292000000000000, "kg"),
  33152. name: "Front",
  33153. image: {
  33154. source: "./media/characters/devourer/front.svg",
  33155. extra: 1800/1733,
  33156. bottom: 211/2011
  33157. }
  33158. },
  33159. maw: {
  33160. height: math.unit(1.1, "meter"),
  33161. name: "Maw",
  33162. image: {
  33163. source: "./media/characters/devourer/maw.svg"
  33164. }
  33165. },
  33166. },
  33167. [
  33168. {
  33169. name: "Small",
  33170. height: math.unit(3, "meters")
  33171. },
  33172. {
  33173. name: "Large",
  33174. height: math.unit(5, "meters"),
  33175. default: true
  33176. },
  33177. ]
  33178. ))
  33179. characterMakers.push(() => makeCharacter(
  33180. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33181. {
  33182. front: {
  33183. height: math.unit(6, "feet"),
  33184. weight: math.unit(400, "lb"),
  33185. name: "Front",
  33186. image: {
  33187. source: "./media/characters/ellarby/front.svg",
  33188. extra: 1909/1763,
  33189. bottom: 80/1989
  33190. }
  33191. },
  33192. back: {
  33193. height: math.unit(6, "feet"),
  33194. weight: math.unit(400, "lb"),
  33195. name: "Back",
  33196. image: {
  33197. source: "./media/characters/ellarby/back.svg",
  33198. extra: 1914/1784,
  33199. bottom: 172/2086
  33200. }
  33201. },
  33202. },
  33203. [
  33204. {
  33205. name: "Mischief",
  33206. height: math.unit(18, "inches")
  33207. },
  33208. {
  33209. name: "Trouble",
  33210. height: math.unit(12, "feet")
  33211. },
  33212. {
  33213. name: "Havoc",
  33214. height: math.unit(200, "feet"),
  33215. default: true
  33216. },
  33217. {
  33218. name: "Pandemonium",
  33219. height: math.unit(1, "mile")
  33220. },
  33221. {
  33222. name: "Catastrophe",
  33223. height: math.unit(100, "miles")
  33224. },
  33225. ]
  33226. ))
  33227. characterMakers.push(() => makeCharacter(
  33228. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33229. {
  33230. front: {
  33231. height: math.unit(4.7, "meters"),
  33232. weight: math.unit(6500, "kg"),
  33233. name: "Front",
  33234. image: {
  33235. source: "./media/characters/vex/front.svg",
  33236. extra: 1288/1140,
  33237. bottom: 100/1388
  33238. }
  33239. },
  33240. },
  33241. [
  33242. {
  33243. name: "Normal",
  33244. height: math.unit(4.7, "meters"),
  33245. default: true
  33246. },
  33247. ]
  33248. ))
  33249. characterMakers.push(() => makeCharacter(
  33250. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33251. {
  33252. normal: {
  33253. height: math.unit(6, "feet"),
  33254. weight: math.unit(350, "lb"),
  33255. name: "Normal",
  33256. image: {
  33257. source: "./media/characters/teshy/normal.svg",
  33258. extra: 1795/1735,
  33259. bottom: 16/1811
  33260. }
  33261. },
  33262. monsterFront: {
  33263. height: math.unit(12, "feet"),
  33264. weight: math.unit(4700, "lb"),
  33265. name: "Monster (Front)",
  33266. image: {
  33267. source: "./media/characters/teshy/monster-front.svg",
  33268. extra: 2042/2034,
  33269. bottom: 128/2170
  33270. }
  33271. },
  33272. monsterSide: {
  33273. height: math.unit(12, "feet"),
  33274. weight: math.unit(4700, "lb"),
  33275. name: "Monster (Side)",
  33276. image: {
  33277. source: "./media/characters/teshy/monster-side.svg",
  33278. extra: 2067/2056,
  33279. bottom: 70/2137
  33280. }
  33281. },
  33282. monsterBack: {
  33283. height: math.unit(12, "feet"),
  33284. weight: math.unit(4700, "lb"),
  33285. name: "Monster (Back)",
  33286. image: {
  33287. source: "./media/characters/teshy/monster-back.svg",
  33288. extra: 1921/1914,
  33289. bottom: 171/2092
  33290. }
  33291. },
  33292. },
  33293. [
  33294. {
  33295. name: "Normal",
  33296. height: math.unit(6, "feet"),
  33297. default: true
  33298. },
  33299. ]
  33300. ))
  33301. characterMakers.push(() => makeCharacter(
  33302. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33303. {
  33304. front: {
  33305. height: math.unit(6, "feet"),
  33306. name: "Front",
  33307. image: {
  33308. source: "./media/characters/ramey/front.svg",
  33309. extra: 790/787,
  33310. bottom: 27/817
  33311. }
  33312. },
  33313. },
  33314. [
  33315. {
  33316. name: "Normal",
  33317. height: math.unit(6, "feet"),
  33318. default: true
  33319. },
  33320. ]
  33321. ))
  33322. characterMakers.push(() => makeCharacter(
  33323. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33324. {
  33325. front: {
  33326. height: math.unit(5 + 5/12, "feet"),
  33327. weight: math.unit(120, "lb"),
  33328. name: "Front",
  33329. image: {
  33330. source: "./media/characters/phirae/front.svg",
  33331. extra: 2491/2436,
  33332. bottom: 38/2529
  33333. }
  33334. },
  33335. },
  33336. [
  33337. {
  33338. name: "Normal",
  33339. height: math.unit(5 + 5/12, "feet"),
  33340. default: true
  33341. },
  33342. ]
  33343. ))
  33344. characterMakers.push(() => makeCharacter(
  33345. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33346. {
  33347. front: {
  33348. height: math.unit(6, "feet"),
  33349. weight: math.unit(150, "lb"),
  33350. name: "Front",
  33351. image: {
  33352. source: "./media/characters/stagglas/front.svg",
  33353. extra: 962/882,
  33354. bottom: 53/1015
  33355. }
  33356. },
  33357. },
  33358. [
  33359. {
  33360. name: "Normal",
  33361. height: math.unit(5 + 3/12, "feet"),
  33362. default: true
  33363. },
  33364. ]
  33365. ))
  33366. characterMakers.push(() => makeCharacter(
  33367. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33368. {
  33369. front: {
  33370. height: math.unit(5 + 4/12, "feet"),
  33371. weight: math.unit(145, "lb"),
  33372. name: "Front",
  33373. image: {
  33374. source: "./media/characters/starra/front.svg",
  33375. extra: 1790/1691,
  33376. bottom: 91/1881
  33377. }
  33378. },
  33379. },
  33380. [
  33381. {
  33382. name: "Normal",
  33383. height: math.unit(5 + 4/12, "feet"),
  33384. default: true
  33385. },
  33386. ]
  33387. ))
  33388. characterMakers.push(() => makeCharacter(
  33389. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33390. {
  33391. front: {
  33392. height: math.unit(2.2, "meters"),
  33393. name: "Front",
  33394. image: {
  33395. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33396. extra: 1194/1005,
  33397. bottom: 25/1219
  33398. }
  33399. },
  33400. },
  33401. [
  33402. {
  33403. name: "Normal",
  33404. height: math.unit(2.2, "meters"),
  33405. default: true
  33406. },
  33407. ]
  33408. ))
  33409. characterMakers.push(() => makeCharacter(
  33410. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33411. {
  33412. side: {
  33413. height: math.unit(8 + 2/12, "feet"),
  33414. weight: math.unit(1240, "lb"),
  33415. name: "Side",
  33416. image: {
  33417. source: "./media/characters/mika-valentine/side.svg",
  33418. extra: 2670/2501,
  33419. bottom: 250/2920
  33420. }
  33421. },
  33422. },
  33423. [
  33424. {
  33425. name: "Normal",
  33426. height: math.unit(8 + 2/12, "feet"),
  33427. default: true
  33428. },
  33429. ]
  33430. ))
  33431. characterMakers.push(() => makeCharacter(
  33432. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33433. {
  33434. front: {
  33435. height: math.unit(7 + 2/12, "feet"),
  33436. name: "Front",
  33437. image: {
  33438. source: "./media/characters/xoltol/front.svg",
  33439. extra: 2212/2124,
  33440. bottom: 84/2296
  33441. }
  33442. },
  33443. side: {
  33444. height: math.unit(7 + 2/12, "feet"),
  33445. name: "Side",
  33446. image: {
  33447. source: "./media/characters/xoltol/side.svg",
  33448. extra: 2273/2197,
  33449. bottom: 26/2299
  33450. }
  33451. },
  33452. hand: {
  33453. height: math.unit(2.5, "feet"),
  33454. name: "Hand",
  33455. image: {
  33456. source: "./media/characters/xoltol/hand.svg"
  33457. }
  33458. },
  33459. },
  33460. [
  33461. {
  33462. name: "Small-ish",
  33463. height: math.unit(5 + 11/12, "feet")
  33464. },
  33465. {
  33466. name: "Normal",
  33467. height: math.unit(7 + 2/12, "feet")
  33468. },
  33469. {
  33470. name: "\"Macro\"",
  33471. height: math.unit(14 + 9/12, "feet"),
  33472. default: true
  33473. },
  33474. {
  33475. name: "Alternate Height",
  33476. height: math.unit(20, "feet")
  33477. },
  33478. {
  33479. name: "Actually Macro",
  33480. height: math.unit(100, "feet")
  33481. },
  33482. ]
  33483. ))
  33484. characterMakers.push(() => makeCharacter(
  33485. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33486. {
  33487. front: {
  33488. height: math.unit(5 + 2/12, "feet"),
  33489. name: "Front",
  33490. image: {
  33491. source: "./media/characters/kotetsu-redwood/front.svg",
  33492. extra: 1053/942,
  33493. bottom: 60/1113
  33494. }
  33495. },
  33496. },
  33497. [
  33498. {
  33499. name: "Normal",
  33500. height: math.unit(5 + 2/12, "feet"),
  33501. default: true
  33502. },
  33503. ]
  33504. ))
  33505. characterMakers.push(() => makeCharacter(
  33506. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33507. {
  33508. front: {
  33509. height: math.unit(2.4, "meters"),
  33510. weight: math.unit(125, "kg"),
  33511. name: "Front",
  33512. image: {
  33513. source: "./media/characters/lilith/front.svg",
  33514. extra: 1590/1513,
  33515. bottom: 203/1793
  33516. }
  33517. },
  33518. },
  33519. [
  33520. {
  33521. name: "Humanoid",
  33522. height: math.unit(2.4, "meters")
  33523. },
  33524. {
  33525. name: "Normal",
  33526. height: math.unit(6, "meters"),
  33527. default: true
  33528. },
  33529. {
  33530. name: "Largest",
  33531. height: math.unit(55, "meters")
  33532. },
  33533. ]
  33534. ))
  33535. characterMakers.push(() => makeCharacter(
  33536. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33537. {
  33538. front: {
  33539. height: math.unit(8 + 4/12, "feet"),
  33540. weight: math.unit(535, "lb"),
  33541. name: "Front",
  33542. image: {
  33543. source: "./media/characters/beh'kah-bolger/front.svg",
  33544. extra: 1660/1603,
  33545. bottom: 37/1697
  33546. }
  33547. },
  33548. },
  33549. [
  33550. {
  33551. name: "Normal",
  33552. height: math.unit(8 + 4/12, "feet"),
  33553. default: true
  33554. },
  33555. {
  33556. name: "Kaiju",
  33557. height: math.unit(250, "feet")
  33558. },
  33559. {
  33560. name: "Still Growing",
  33561. height: math.unit(10, "miles")
  33562. },
  33563. {
  33564. name: "Continental",
  33565. height: math.unit(5000, "miles")
  33566. },
  33567. {
  33568. name: "Final Form",
  33569. height: math.unit(2500000, "miles")
  33570. },
  33571. ]
  33572. ))
  33573. characterMakers.push(() => makeCharacter(
  33574. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33575. {
  33576. front: {
  33577. height: math.unit(7 + 2/12, "feet"),
  33578. weight: math.unit(230, "kg"),
  33579. name: "Front",
  33580. image: {
  33581. source: "./media/characters/tatyana-milewska/front.svg",
  33582. extra: 1199/1150,
  33583. bottom: 86/1285
  33584. }
  33585. },
  33586. },
  33587. [
  33588. {
  33589. name: "Normal",
  33590. height: math.unit(7 + 2/12, "feet"),
  33591. default: true
  33592. },
  33593. {
  33594. name: "Big",
  33595. height: math.unit(12, "feet")
  33596. },
  33597. {
  33598. name: "Minimacro",
  33599. height: math.unit(20, "feet")
  33600. },
  33601. {
  33602. name: "Macro",
  33603. height: math.unit(120, "feet")
  33604. },
  33605. ]
  33606. ))
  33607. characterMakers.push(() => makeCharacter(
  33608. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33609. {
  33610. front: {
  33611. height: math.unit(7 + 8/12, "feet"),
  33612. weight: math.unit(152, "kg"),
  33613. name: "Front",
  33614. image: {
  33615. source: "./media/characters/helen-arri/front.svg",
  33616. extra: 440/423,
  33617. bottom: 14/454
  33618. }
  33619. },
  33620. back: {
  33621. height: math.unit(7 + 8/12, "feet"),
  33622. weight: math.unit(152, "kg"),
  33623. name: "Back",
  33624. image: {
  33625. source: "./media/characters/helen-arri/back.svg",
  33626. extra: 443/426,
  33627. bottom: 8/451
  33628. }
  33629. },
  33630. },
  33631. [
  33632. {
  33633. name: "Normal",
  33634. height: math.unit(7 + 8/12, "feet"),
  33635. default: true
  33636. },
  33637. {
  33638. name: "Big",
  33639. height: math.unit(14, "feet")
  33640. },
  33641. {
  33642. name: "Minimacro",
  33643. height: math.unit(24, "feet")
  33644. },
  33645. {
  33646. name: "Macro",
  33647. height: math.unit(140, "feet")
  33648. },
  33649. ]
  33650. ))
  33651. characterMakers.push(() => makeCharacter(
  33652. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33653. {
  33654. front: {
  33655. height: math.unit(6, "meters"),
  33656. name: "Front",
  33657. image: {
  33658. source: "./media/characters/ehanu-rehu/front.svg",
  33659. extra: 1800/1800,
  33660. bottom: 59/1859
  33661. }
  33662. },
  33663. },
  33664. [
  33665. {
  33666. name: "Normal",
  33667. height: math.unit(6, "meters"),
  33668. default: true
  33669. },
  33670. ]
  33671. ))
  33672. characterMakers.push(() => makeCharacter(
  33673. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33674. {
  33675. front: {
  33676. height: math.unit(7 + 3/12, "feet"),
  33677. name: "Front",
  33678. image: {
  33679. source: "./media/characters/renholder/front.svg",
  33680. extra: 3096/2960,
  33681. bottom: 250/3346
  33682. }
  33683. },
  33684. },
  33685. [
  33686. {
  33687. name: "Normal Bat",
  33688. height: math.unit(7 + 3/12, "feet"),
  33689. default: true
  33690. },
  33691. {
  33692. name: "Slightly Tall Bat",
  33693. height: math.unit(100, "feet")
  33694. },
  33695. {
  33696. name: "Big Bat",
  33697. height: math.unit(1000, "feet")
  33698. },
  33699. {
  33700. name: "City-Sized Bat",
  33701. height: math.unit(200000, "feet")
  33702. },
  33703. {
  33704. name: "Bigger Bat",
  33705. height: math.unit(10000, "miles")
  33706. },
  33707. {
  33708. name: "Solar Sized Bat",
  33709. height: math.unit(100, "AU")
  33710. },
  33711. {
  33712. name: "Galactic Bat",
  33713. height: math.unit(200000, "lightyears")
  33714. },
  33715. {
  33716. name: "Universally Known Bat",
  33717. height: math.unit(1, "universe")
  33718. },
  33719. ]
  33720. ))
  33721. characterMakers.push(() => makeCharacter(
  33722. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33723. {
  33724. front: {
  33725. height: math.unit(6 + 11/12, "feet"),
  33726. weight: math.unit(250, "lb"),
  33727. name: "Front",
  33728. image: {
  33729. source: "./media/characters/cookiecat/front.svg",
  33730. extra: 893/827,
  33731. bottom: 14/907
  33732. }
  33733. },
  33734. },
  33735. [
  33736. {
  33737. name: "Micro",
  33738. height: math.unit(3, "inches")
  33739. },
  33740. {
  33741. name: "Normal",
  33742. height: math.unit(6 + 11/12, "feet"),
  33743. default: true
  33744. },
  33745. {
  33746. name: "Macro",
  33747. height: math.unit(100, "feet")
  33748. },
  33749. {
  33750. name: "Macro+",
  33751. height: math.unit(404, "feet")
  33752. },
  33753. {
  33754. name: "Megamacro",
  33755. height: math.unit(165, "miles")
  33756. },
  33757. {
  33758. name: "Planetary",
  33759. height: math.unit(4600, "miles")
  33760. },
  33761. ]
  33762. ))
  33763. characterMakers.push(() => makeCharacter(
  33764. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33765. {
  33766. front: {
  33767. height: math.unit(10 + 3/12, "feet"),
  33768. weight: math.unit(1500, "lb"),
  33769. name: "Front",
  33770. image: {
  33771. source: "./media/characters/tux-kusanagi/front.svg",
  33772. extra: 944/840,
  33773. bottom: 39/983
  33774. }
  33775. },
  33776. back: {
  33777. height: math.unit(10 + 3/12, "feet"),
  33778. weight: math.unit(1500, "lb"),
  33779. name: "Back",
  33780. image: {
  33781. source: "./media/characters/tux-kusanagi/back.svg",
  33782. extra: 941/842,
  33783. bottom: 28/969
  33784. }
  33785. },
  33786. rump: {
  33787. height: math.unit(5.25, "feet"),
  33788. name: "Rump",
  33789. image: {
  33790. source: "./media/characters/tux-kusanagi/rump.svg"
  33791. }
  33792. },
  33793. beak: {
  33794. height: math.unit(1.54, "feet"),
  33795. name: "Beak",
  33796. image: {
  33797. source: "./media/characters/tux-kusanagi/beak.svg"
  33798. }
  33799. },
  33800. },
  33801. [
  33802. {
  33803. name: "Normal",
  33804. height: math.unit(10 + 3/12, "feet"),
  33805. default: true
  33806. },
  33807. ]
  33808. ))
  33809. characterMakers.push(() => makeCharacter(
  33810. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33811. {
  33812. front: {
  33813. height: math.unit(58, "feet"),
  33814. weight: math.unit(200, "tons"),
  33815. name: "Front",
  33816. image: {
  33817. source: "./media/characters/uzarmazari/front.svg",
  33818. extra: 1575/1455,
  33819. bottom: 152/1727
  33820. }
  33821. },
  33822. back: {
  33823. height: math.unit(58, "feet"),
  33824. weight: math.unit(200, "tons"),
  33825. name: "Back",
  33826. image: {
  33827. source: "./media/characters/uzarmazari/back.svg",
  33828. extra: 1585/1510,
  33829. bottom: 157/1742
  33830. }
  33831. },
  33832. head: {
  33833. height: math.unit(26, "feet"),
  33834. name: "Head",
  33835. image: {
  33836. source: "./media/characters/uzarmazari/head.svg"
  33837. }
  33838. },
  33839. },
  33840. [
  33841. {
  33842. name: "Normal",
  33843. height: math.unit(58, "feet"),
  33844. default: true
  33845. },
  33846. ]
  33847. ))
  33848. characterMakers.push(() => makeCharacter(
  33849. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33850. {
  33851. side: {
  33852. height: math.unit(15, "feet"),
  33853. name: "Side",
  33854. image: {
  33855. source: "./media/characters/akitu/side.svg",
  33856. extra: 1421/1321,
  33857. bottom: 157/1578
  33858. }
  33859. },
  33860. front: {
  33861. height: math.unit(15, "feet"),
  33862. name: "Front",
  33863. image: {
  33864. source: "./media/characters/akitu/front.svg",
  33865. extra: 1435/1326,
  33866. bottom: 232/1667
  33867. }
  33868. },
  33869. },
  33870. [
  33871. {
  33872. name: "Normal",
  33873. height: math.unit(15, "feet"),
  33874. default: true
  33875. },
  33876. ]
  33877. ))
  33878. characterMakers.push(() => makeCharacter(
  33879. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33880. {
  33881. front: {
  33882. height: math.unit(10 + 8/12, "feet"),
  33883. name: "Front",
  33884. image: {
  33885. source: "./media/characters/azalie-croixland/front.svg",
  33886. extra: 1972/1856,
  33887. bottom: 31/2003
  33888. }
  33889. },
  33890. },
  33891. [
  33892. {
  33893. name: "Original Height",
  33894. height: math.unit(5 + 4/12, "feet")
  33895. },
  33896. {
  33897. name: "Normal Height",
  33898. height: math.unit(10 + 8/12, "feet"),
  33899. default: true
  33900. },
  33901. ]
  33902. ))
  33903. characterMakers.push(() => makeCharacter(
  33904. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33905. {
  33906. side: {
  33907. height: math.unit(7 + 1/12, "feet"),
  33908. weight: math.unit(245, "lb"),
  33909. name: "Side",
  33910. image: {
  33911. source: "./media/characters/kavus-kazian/side.svg",
  33912. extra: 349/342,
  33913. bottom: 15/364
  33914. }
  33915. },
  33916. },
  33917. [
  33918. {
  33919. name: "Normal",
  33920. height: math.unit(7 + 1/12, "feet"),
  33921. default: true
  33922. },
  33923. ]
  33924. ))
  33925. characterMakers.push(() => makeCharacter(
  33926. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  33927. {
  33928. normal: {
  33929. height: math.unit(5 + 11/12, "feet"),
  33930. name: "Normal",
  33931. image: {
  33932. source: "./media/characters/moonlight-rose/normal.svg",
  33933. extra: 1979/1835,
  33934. bottom: 14/1993
  33935. }
  33936. },
  33937. demon: {
  33938. height: math.unit(5, "km"),
  33939. name: "Demon",
  33940. image: {
  33941. source: "./media/characters/moonlight-rose/demon.svg",
  33942. extra: 986/916,
  33943. bottom: 28/1014
  33944. }
  33945. },
  33946. },
  33947. [
  33948. {
  33949. name: "\"Natural\" height",
  33950. height: math.unit(5 + 11/12, "feet")
  33951. },
  33952. {
  33953. name: "Comfortable Size",
  33954. height: math.unit(40, "meters")
  33955. },
  33956. {
  33957. name: "Common Size",
  33958. height: math.unit(50, "km"),
  33959. default: true
  33960. },
  33961. {
  33962. name: "Demonic",
  33963. height: math.unit(1.24415e+21, "meters")
  33964. },
  33965. ]
  33966. ))
  33967. characterMakers.push(() => makeCharacter(
  33968. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  33969. {
  33970. front: {
  33971. height: math.unit(16, "feet"),
  33972. weight: math.unit(610, "kg"),
  33973. name: "Front",
  33974. image: {
  33975. source: "./media/characters/huckle/front.svg",
  33976. extra: 1731/1625,
  33977. bottom: 33/1764
  33978. }
  33979. },
  33980. back: {
  33981. height: math.unit(16, "feet"),
  33982. weight: math.unit(610, "kg"),
  33983. name: "Back",
  33984. image: {
  33985. source: "./media/characters/huckle/back.svg",
  33986. extra: 1738/1651,
  33987. bottom: 37/1775
  33988. }
  33989. },
  33990. laughing: {
  33991. height: math.unit(3.75, "feet"),
  33992. name: "Laughing",
  33993. image: {
  33994. source: "./media/characters/huckle/laughing.svg"
  33995. }
  33996. },
  33997. angry: {
  33998. height: math.unit(4.15, "feet"),
  33999. name: "Angry",
  34000. image: {
  34001. source: "./media/characters/huckle/angry.svg"
  34002. }
  34003. },
  34004. },
  34005. [
  34006. {
  34007. name: "Normal",
  34008. height: math.unit(16, "feet"),
  34009. default: true
  34010. },
  34011. {
  34012. name: "Mini Macro",
  34013. height: math.unit(463, "feet")
  34014. },
  34015. {
  34016. name: "Macro",
  34017. height: math.unit(1680, "meters")
  34018. },
  34019. {
  34020. name: "Mega Macro",
  34021. height: math.unit(175, "km")
  34022. },
  34023. {
  34024. name: "Terra Macro",
  34025. height: math.unit(32, "gigameters")
  34026. },
  34027. {
  34028. name: "Multiverse+",
  34029. height: math.unit(2.56e23, "yottameters")
  34030. },
  34031. ]
  34032. ))
  34033. characterMakers.push(() => makeCharacter(
  34034. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34035. {
  34036. front: {
  34037. height: math.unit(6 + 9/12, "feet"),
  34038. weight: math.unit(280, "lb"),
  34039. name: "Front",
  34040. image: {
  34041. source: "./media/characters/candy/front.svg",
  34042. extra: 234/217,
  34043. bottom: 11/245
  34044. }
  34045. },
  34046. },
  34047. [
  34048. {
  34049. name: "Really Small",
  34050. height: math.unit(0.1, "nm")
  34051. },
  34052. {
  34053. name: "Micro",
  34054. height: math.unit(2, "inches")
  34055. },
  34056. {
  34057. name: "Normal",
  34058. height: math.unit(6 + 9/12, "feet"),
  34059. default: true
  34060. },
  34061. {
  34062. name: "Small Macro",
  34063. height: math.unit(69, "feet")
  34064. },
  34065. {
  34066. name: "Macro",
  34067. height: math.unit(160, "feet")
  34068. },
  34069. {
  34070. name: "Megamacro",
  34071. height: math.unit(22000, "miles")
  34072. },
  34073. ]
  34074. ))
  34075. characterMakers.push(() => makeCharacter(
  34076. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34077. {
  34078. front: {
  34079. height: math.unit(4, "feet"),
  34080. weight: math.unit(90, "lb"),
  34081. name: "Front",
  34082. image: {
  34083. source: "./media/characters/joey-mcdonald/front.svg",
  34084. extra: 1059/852,
  34085. bottom: 33/1092
  34086. }
  34087. },
  34088. back: {
  34089. height: math.unit(4, "feet"),
  34090. weight: math.unit(90, "lb"),
  34091. name: "Back",
  34092. image: {
  34093. source: "./media/characters/joey-mcdonald/back.svg",
  34094. extra: 1077/879,
  34095. bottom: 5/1082
  34096. }
  34097. },
  34098. },
  34099. [
  34100. {
  34101. name: "Normal",
  34102. height: math.unit(4, "feet"),
  34103. default: true
  34104. },
  34105. ]
  34106. ))
  34107. characterMakers.push(() => makeCharacter(
  34108. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34109. {
  34110. front: {
  34111. height: math.unit(12 + 6/12, "feet"),
  34112. name: "Front",
  34113. image: {
  34114. source: "./media/characters/kass-lockheed/front.svg",
  34115. extra: 354/343,
  34116. bottom: 9/363
  34117. }
  34118. },
  34119. back: {
  34120. height: math.unit(12 + 6/12, "feet"),
  34121. name: "Back",
  34122. image: {
  34123. source: "./media/characters/kass-lockheed/back.svg",
  34124. extra: 364/352,
  34125. bottom: 3/367
  34126. }
  34127. },
  34128. dick: {
  34129. height: math.unit(3.12, "feet"),
  34130. name: "Dick",
  34131. image: {
  34132. source: "./media/characters/kass-lockheed/dick.svg"
  34133. }
  34134. },
  34135. head: {
  34136. height: math.unit(2.6, "feet"),
  34137. name: "Head",
  34138. image: {
  34139. source: "./media/characters/kass-lockheed/head.svg"
  34140. }
  34141. },
  34142. bleh: {
  34143. height: math.unit(2.85, "feet"),
  34144. name: "Bleh",
  34145. image: {
  34146. source: "./media/characters/kass-lockheed/bleh.svg"
  34147. }
  34148. },
  34149. smug: {
  34150. height: math.unit(2.85, "feet"),
  34151. name: "Smug",
  34152. image: {
  34153. source: "./media/characters/kass-lockheed/smug.svg"
  34154. }
  34155. },
  34156. },
  34157. [
  34158. {
  34159. name: "Normal",
  34160. height: math.unit(12 + 6/12, "feet"),
  34161. default: true
  34162. },
  34163. ]
  34164. ))
  34165. //characters
  34166. function makeCharacters() {
  34167. const results = [];
  34168. characterMakers.forEach(character => {
  34169. results.push(character());
  34170. });
  34171. return results;
  34172. }