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

35235 строки
886 KiB

  1. const characterMakers = [];
  2. function makeCharacter(info, viewInfo, defaultSizes) {
  3. views = {};
  4. Object.entries(viewInfo).forEach(([key, value]) => {
  5. views[key] = {
  6. attributes: {
  7. height: {
  8. name: "Height",
  9. power: 1,
  10. type: "length",
  11. base: value.height
  12. }
  13. },
  14. image: value.image,
  15. name: value.name,
  16. info: value.info,
  17. rename: value.rename,
  18. default: value.default
  19. }
  20. if (value.weight) {
  21. views[key].attributes.weight = {
  22. name: "Mass",
  23. power: 3,
  24. type: "mass",
  25. base: value.weight
  26. };
  27. }
  28. if (value.volume) {
  29. views[key].attributes.volume = {
  30. name: "Volume",
  31. power: 3,
  32. type: "volume",
  33. base: value.volume
  34. };
  35. }
  36. if (value.capacity) {
  37. views[key].attributes.capacity = {
  38. name: "Capacity",
  39. power: 3,
  40. type: "volume",
  41. base: value.capacity
  42. }
  43. }
  44. });
  45. return createEntityMaker(info, views, defaultSizes);
  46. }
  47. const speciesData = {
  48. animal: {
  49. name: "Animal"
  50. },
  51. dog: {
  52. name: "Dog",
  53. parents: [
  54. "canine"
  55. ]
  56. },
  57. canine: {
  58. name: "Canine",
  59. parents: [
  60. "mammal"
  61. ]
  62. },
  63. crux: {
  64. name: "Crux",
  65. parents: [
  66. "mammal"
  67. ]
  68. },
  69. mammal: {
  70. name: "Mammal",
  71. parents: [
  72. "animal"
  73. ]
  74. },
  75. "rough-collie": {
  76. name: "Rough Collie",
  77. parents: [
  78. "dog"
  79. ]
  80. },
  81. dragon: {
  82. name: "Dragon",
  83. parents: [
  84. "reptile"
  85. ]
  86. },
  87. reptile: {
  88. name: "Reptile",
  89. parents: [
  90. "animal"
  91. ]
  92. },
  93. woodpecker: {
  94. name: "Woodpecker",
  95. parents: [
  96. "avian"
  97. ]
  98. },
  99. avian: {
  100. name: "Avian",
  101. parents: [
  102. "animal"
  103. ]
  104. },
  105. kitsune: {
  106. name: "Kitsune",
  107. parents: [
  108. "fox"
  109. ]
  110. },
  111. fox: {
  112. name: "Fox",
  113. parents: [
  114. "mammal"
  115. ]
  116. },
  117. pokemon: {
  118. name: "Pokemon"
  119. },
  120. tiger: {
  121. name: "Tiger",
  122. parents: [
  123. "cat"
  124. ]
  125. },
  126. cat: {
  127. name: "Cat",
  128. parents: [
  129. "mammal"
  130. ]
  131. },
  132. "blue-jay": {
  133. name: "Blue Jay",
  134. parents: [
  135. "avian"
  136. ]
  137. },
  138. wolf: {
  139. name: "Wolf",
  140. parents: [
  141. "mammal"
  142. ]
  143. },
  144. coyote: {
  145. name: "Coyote",
  146. parents: [
  147. "mammal"
  148. ]
  149. },
  150. raccoon: {
  151. name: "Raccoon",
  152. parents: [
  153. "mammal"
  154. ]
  155. },
  156. weasel: {
  157. name: "Weasel",
  158. parents: [
  159. "mammal"
  160. ]
  161. },
  162. "red-panda": {
  163. name: "Red Panda",
  164. parents: [
  165. "mammal"
  166. ]
  167. },
  168. dolphin: {
  169. name: "Dolphin",
  170. parents: [
  171. "mammal"
  172. ]
  173. },
  174. "african-wild-dog": {
  175. name: "African Wild Dog",
  176. parents: [
  177. "canine"
  178. ]
  179. },
  180. "hyena": {
  181. name: "Hyena",
  182. parents: [
  183. "canine"
  184. ]
  185. },
  186. "carbuncle": {
  187. name: "Carbuncle",
  188. parents: [
  189. "animal"
  190. ]
  191. },
  192. bat: {
  193. name: "Bat",
  194. parents: [
  195. "mammal"
  196. ]
  197. },
  198. "leaf-nosed-bat": {
  199. name: "Leaf-Nosed Bat",
  200. parents: [
  201. "bat"
  202. ]
  203. },
  204. "fish": {
  205. name: "Fish",
  206. parents: [
  207. "animal"
  208. ]
  209. },
  210. "ram": {
  211. name: "Ram",
  212. parents: [
  213. "mammal"
  214. ]
  215. },
  216. "demon": {
  217. name: "Demon"
  218. },
  219. "cougar": {
  220. name: "Cougar",
  221. parents: [
  222. "cat"
  223. ]
  224. },
  225. "goat": {
  226. name: "Goat",
  227. parents: [
  228. "mammal"
  229. ]
  230. },
  231. "lion": {
  232. name: "Lion",
  233. parents: [
  234. "cat"
  235. ]
  236. },
  237. "harpy-eager": {
  238. name: "Harpy Eagle",
  239. parents: [
  240. "avian"
  241. ]
  242. },
  243. "deer": {
  244. name: "Deer",
  245. parents: [
  246. "mammal"
  247. ]
  248. },
  249. "phoenix": {
  250. name: "Phoenix",
  251. parents: [
  252. "avian"
  253. ]
  254. },
  255. "aeromorph": {
  256. name: "Aeromorph",
  257. parents: [
  258. "machine"
  259. ]
  260. },
  261. "machine": {
  262. name: "Machine",
  263. },
  264. "android": {
  265. name: "Android",
  266. parents: [
  267. "machine"
  268. ]
  269. },
  270. "jackal": {
  271. name: "Jackal",
  272. parents: [
  273. "canine"
  274. ]
  275. },
  276. "corvid": {
  277. name: "Corvid",
  278. parents: [
  279. "avian"
  280. ]
  281. },
  282. "pharaoh-hound": {
  283. name: "Pharaoh Hound",
  284. parents: [
  285. "dog"
  286. ]
  287. },
  288. "skunk": {
  289. name: "Skunk",
  290. parents: [
  291. "mammal"
  292. ]
  293. },
  294. "shark": {
  295. name: "Shark",
  296. parents: [
  297. "fish"
  298. ]
  299. },
  300. "black-panther": {
  301. name: "Black Panther",
  302. parents: [
  303. "cat"
  304. ]
  305. },
  306. "umbra": {
  307. name: "Umbra",
  308. parents: [
  309. "animal"
  310. ]
  311. },
  312. "raven": {
  313. name: "Raven",
  314. parents: [
  315. "corvid"
  316. ]
  317. },
  318. "snow-leopard": {
  319. name: "Snow Leopard",
  320. parents: [
  321. "cat"
  322. ]
  323. },
  324. "barbary-lion": {
  325. name: "Barbary Lion",
  326. parents: [
  327. "lion"
  328. ]
  329. },
  330. "dra'gal": {
  331. name: "Dra'Gal",
  332. parents: [
  333. "mammal"
  334. ]
  335. },
  336. "german-shepherd": {
  337. name: "German Shepherd",
  338. parents: [
  339. "dog"
  340. ]
  341. },
  342. "bayleef": {
  343. name: "Bayleef",
  344. parents: [
  345. "pokemon"
  346. ]
  347. },
  348. "mouse": {
  349. name: "Mouse",
  350. parents: [
  351. "rodent"
  352. ]
  353. },
  354. "rat": {
  355. name: "Rat",
  356. parents: [
  357. "mammal"
  358. ]
  359. },
  360. "hoshiko-beast": {
  361. name: "Hoshiko Beast",
  362. parents: ["animal"]
  363. },
  364. "snow-jugani": {
  365. name: "Snow Jugani",
  366. parents: ["cat"]
  367. },
  368. "patamon": {
  369. name: "Patamon",
  370. parents: ["digimon"]
  371. },
  372. "digimon": {
  373. name: "Digimon",
  374. },
  375. "jugani": {
  376. name: "Jugani",
  377. parents: ["cat"]
  378. },
  379. "luxray": {
  380. name: "Luxray",
  381. parents: ["pokemon"]
  382. },
  383. "mech": {
  384. name: "Mech",
  385. parents: ["machine"]
  386. },
  387. "zoid": {
  388. name: "Zoid",
  389. parents: ["mech"]
  390. },
  391. "monster": {
  392. name: "Monster",
  393. parents: ["animal"]
  394. },
  395. "foo-dog": {
  396. name: "Foo Dog",
  397. parents: ["mammal"]
  398. },
  399. "elephant": {
  400. name: "Elephant",
  401. parents: ["mammal"]
  402. },
  403. "eagle": {
  404. name: "Eagle",
  405. parents: ["avian"]
  406. },
  407. "cow": {
  408. name: "Cow",
  409. parents: ["mammal"]
  410. },
  411. "crocodile": {
  412. name: "Crocodile",
  413. parents: ["reptile"]
  414. },
  415. "borzoi": {
  416. name: "Borzoi",
  417. parents: ["dog"]
  418. },
  419. "snake": {
  420. name: "Snake",
  421. parents: ["reptile"]
  422. },
  423. "horned-bush-viper": {
  424. name: "Horned Bush Viper",
  425. parents: ["snake"]
  426. },
  427. "cobra": {
  428. name: "Cobra",
  429. parents: ["snake"]
  430. },
  431. "harpy-eagle": {
  432. name: "Harpy Eagle",
  433. parents: ["eagle"]
  434. },
  435. "raptor": {
  436. name: "Raptor",
  437. parents: ["dinosaur"]
  438. },
  439. "dinosaur": {
  440. name: "Dinosaur",
  441. parents: ["reptile"]
  442. },
  443. "veilhound": {
  444. name: "Veilhound",
  445. parents: ["hellhound", "demon"]
  446. },
  447. "hellhound": {
  448. name: "Hellhound",
  449. parents: ["canine"]
  450. },
  451. "insect": {
  452. name: "Insect",
  453. parents: ["animal"]
  454. },
  455. "beetle": {
  456. name: "Beetle",
  457. parents: ["insect"]
  458. },
  459. "moth": {
  460. name: "Moth",
  461. parents: ["insect"]
  462. },
  463. "eastern-dragon": {
  464. name: "Eastern Dragon",
  465. parents: ["dragon"]
  466. },
  467. "jaguar": {
  468. name: "Jaguar",
  469. parents: ["cat"]
  470. },
  471. "horse": {
  472. name: "Horse",
  473. parents: ["mammal"]
  474. },
  475. "sergal": {
  476. name: "Sergal",
  477. parents: ["mammal"]
  478. },
  479. "gryphon": {
  480. name: "Gryphon",
  481. parents: ["lion", "eagle"]
  482. },
  483. "robot": {
  484. name: "Robot",
  485. parents: ["machine"]
  486. },
  487. "medihound": {
  488. name: "Medihound",
  489. parents: ["robot", "dog"]
  490. },
  491. "sylveon": {
  492. name: "Sylveon",
  493. parents: ["pokemon"]
  494. },
  495. "catgirl": {
  496. name: "Catgirl",
  497. parents: ["mammal"]
  498. },
  499. "cowgirl": {
  500. name: "Cowgirl",
  501. parents: ["mammal"]
  502. },
  503. "pony": {
  504. name: "Pony",
  505. parents: ["horse"]
  506. },
  507. "rabbit": {
  508. name: "Rabbit",
  509. parents: ["mammal"]
  510. },
  511. "fennec-fox": {
  512. name: "Fennec Fox",
  513. parents: ["fox"]
  514. },
  515. "azodian": {
  516. name: "Azodian",
  517. parents: ["mouse"]
  518. },
  519. "shiba-inu": {
  520. name: "Shiba Inu",
  521. parents: ["dog"]
  522. },
  523. "changeling": {
  524. name: "Changeling",
  525. parents: ["insect"]
  526. },
  527. "cheetah": {
  528. name: "Cheetah",
  529. parents: ["cat"]
  530. },
  531. "golden-jackal": {
  532. name: "Golden Jackal",
  533. parents: ["jackal"]
  534. },
  535. "manectric": {
  536. name: "Manectric",
  537. parents: ["pokemon"]
  538. },
  539. "rat": {
  540. name: "Rat",
  541. parents: ["rodent"]
  542. },
  543. "rodent": {
  544. name: "Rodent",
  545. parents: ["mammal"]
  546. },
  547. "octocoon": {
  548. name: "Octocoon",
  549. parents: ["raccoon", "octopus"]
  550. },
  551. "octopus": {
  552. name: "Octopus",
  553. parents: ["fish"]
  554. },
  555. "werewolf": {
  556. name: "Werewolf",
  557. parents: ["wolf"]
  558. },
  559. "meerkat": {
  560. name: "Meerkat",
  561. parents: ["mammal"]
  562. },
  563. "human": {
  564. name: "Human",
  565. parents: ["mammal"]
  566. },
  567. "geth": {
  568. name: "Geth",
  569. parents: ["android"]
  570. },
  571. "husky": {
  572. name: "Husky",
  573. parents: ["dog"]
  574. },
  575. "long-eared-bat": {
  576. name: "Long Eared Bat",
  577. parents: ["bat"]
  578. },
  579. "lizard": {
  580. name: "Lizard",
  581. parents: ["reptile"]
  582. },
  583. "salamander": {
  584. name: "Salamander",
  585. parents: ["lizard"]
  586. },
  587. "chameleon": {
  588. name: "Chameleon",
  589. parents: ["lizard"]
  590. },
  591. "gecko": {
  592. name: "Gecko",
  593. parents: ["lizard"]
  594. },
  595. "kobold": {
  596. name: "Kobold",
  597. parents: ["reptile"]
  598. },
  599. "charizard": {
  600. name: "Charizard",
  601. parents: ["pokemon"]
  602. },
  603. "lugia": {
  604. name: "Lugia",
  605. parents: ["pokemon"]
  606. },
  607. "cerberus": {
  608. name: "Cerberus",
  609. parents: ["dog"]
  610. },
  611. "tyrantrum": {
  612. name: "Tyrantrum",
  613. parents: ["pokemon"]
  614. },
  615. "lemur": {
  616. name: "Lemur",
  617. parents: ["mammal"]
  618. },
  619. "kelpie": {
  620. name: "Kelpie",
  621. parents: ["horse", "monster"]
  622. },
  623. "labrador": {
  624. name: "Labrador",
  625. parents: ["dog"]
  626. },
  627. "sylveon": {
  628. name: "Sylveon",
  629. parents: ["eeveelution"]
  630. },
  631. "eeveelution": {
  632. name: "Eeveelution",
  633. parents: ["pokemon"]
  634. },
  635. "polar-bear": {
  636. name: "Polar Bear",
  637. parents: ["bear"]
  638. },
  639. "bear": {
  640. name: "Bear",
  641. parents: ["mammal"]
  642. },
  643. "absol": {
  644. name: "Absol",
  645. parents: ["pokemon"]
  646. },
  647. "wolver": {
  648. name: "Wolver",
  649. parents: ["mammal"]
  650. },
  651. "rottweiler": {
  652. name: "Rottweiler",
  653. parents: ["dog"]
  654. },
  655. "zebra": {
  656. name: "Zebra",
  657. parents: ["horse"]
  658. },
  659. "yoshi": {
  660. name: "Yoshi",
  661. parents: ["lizard"]
  662. },
  663. "lynx": {
  664. name: "Lynx",
  665. parents: ["cat"]
  666. },
  667. "unknown": {
  668. name: "Unknown",
  669. parents: []
  670. },
  671. "thylacine": {
  672. name: "Thylacine",
  673. parents: ["mammal"]
  674. },
  675. "gabumon": {
  676. name: "Gabumon",
  677. parents: ["digimon"]
  678. },
  679. "border-collie": {
  680. name: "Border Collie",
  681. parents: ["dog"]
  682. },
  683. "imp": {
  684. name: "Imp",
  685. parents: ["demon"]
  686. },
  687. "kangaroo": {
  688. name: "Kangaroo",
  689. parents: ["mammal"]
  690. },
  691. "renamon": {
  692. name: "Renamon",
  693. parents: ["digimon"]
  694. },
  695. "candy-orca-dragon": {
  696. name: "Candy Orca Dragon",
  697. parents: ["fish", "dragon", "candy"]
  698. },
  699. "sabertooth-tiger": {
  700. name: "Sabertooth Tiger",
  701. parents: ["cat"]
  702. },
  703. "espurr": {
  704. name: "Espurr",
  705. parents: ["pokemon"]
  706. },
  707. "otter": {
  708. name: "Otter",
  709. parents: ["mammal"]
  710. },
  711. "elemental": {
  712. name: "Elemental",
  713. parents: ["mammal"]
  714. },
  715. "mew": {
  716. name: "Mew",
  717. parents: ["pokemon"]
  718. },
  719. "goodra": {
  720. name: "Goodra",
  721. parents: ["pokemon"]
  722. },
  723. "fairy": {
  724. name: "Fairy",
  725. parents: ["magical"]
  726. },
  727. "typhlosion": {
  728. name: "Typhlosion",
  729. parents: ["pokemon"]
  730. },
  731. "magical": {
  732. name: "Magical",
  733. parents: []
  734. },
  735. "xenomorph": {
  736. name: "Xenomorph",
  737. parents: ["monster", "alien"]
  738. },
  739. "charr": {
  740. name: "Charr",
  741. parents: ["cat"]
  742. },
  743. "siberian-husky": {
  744. name: "Siberian Husky",
  745. parents: ["husky"]
  746. },
  747. "alligator": {
  748. name: "Alligator",
  749. parents: ["reptile"]
  750. },
  751. "bernese-mountain-dog": {
  752. name: "Bernese Mountain Dog",
  753. parents: ["dog"]
  754. },
  755. "reshiram": {
  756. name: "Reshiram",
  757. parents: ["pokemon"]
  758. },
  759. "grizzly-bear": {
  760. name: "Grizzly Bear",
  761. parents: ["bear"]
  762. },
  763. "water-monitor": {
  764. name: "Water Monitor",
  765. parents: ["lizard"]
  766. },
  767. "banchofossa": {
  768. name: "Banchofossa",
  769. parents: ["mammal"]
  770. },
  771. "kirin": {
  772. name: "Kirin",
  773. parents: ["monster"]
  774. },
  775. "quilava": {
  776. name: "Quilava",
  777. parents: ["pokemon"]
  778. },
  779. "seviper": {
  780. name: "Seviper",
  781. parents: ["pokemon"]
  782. },
  783. "flying-fox": {
  784. name: "Flying Fox",
  785. parents: ["bat"]
  786. },
  787. "keynain": {
  788. name: "Keynain",
  789. parents: ["avian"]
  790. },
  791. "lucario": {
  792. name: "Lucario",
  793. parents: ["pokemon"]
  794. },
  795. "siamese-cat": {
  796. name: "Siamese Cat",
  797. parents: ["cat"]
  798. },
  799. "spider": {
  800. name: "Spider",
  801. parents: ["insect"]
  802. },
  803. "samurott": {
  804. name: "Samurott",
  805. parents: ["pokemon"]
  806. },
  807. "megalodon": {
  808. name: "Megalodon",
  809. parents: ["shark"]
  810. },
  811. "unicorn": {
  812. name: "Unicorn",
  813. parents: ["horse"]
  814. },
  815. "greninja": {
  816. name: "Greninja",
  817. parents: ["pokemon"]
  818. },
  819. "water-dragon": {
  820. name: "Water Dragon",
  821. parents: ["dragon"]
  822. },
  823. "cross-fox": {
  824. name: "Cross Fox",
  825. parents: ["fox"]
  826. },
  827. "synth": {
  828. name: "Synth",
  829. parents: ["machine"]
  830. },
  831. "construct": {
  832. name: "Construct",
  833. parents: []
  834. },
  835. "mexican-wolf": {
  836. name: "Mexican Wolf",
  837. parents: ["wolf"]
  838. },
  839. "leopard": {
  840. name: "Leopard",
  841. parents: ["cat"]
  842. },
  843. "pig": {
  844. name: "Pig",
  845. parents: ["mammal"]
  846. },
  847. "ampharos": {
  848. name: "Ampharos",
  849. parents: ["pokemon"]
  850. },
  851. "orca": {
  852. name: "Orca",
  853. parents: ["fish"]
  854. },
  855. "lycanroc": {
  856. name: "Lycanroc",
  857. parents: ["pokemon"]
  858. },
  859. "surkanu": {
  860. name: "Surkanu",
  861. parents: ["monster"]
  862. },
  863. "seal": {
  864. name: "Seal",
  865. parents: ["mammal"]
  866. },
  867. "keldeo": {
  868. name: "Keldeo",
  869. parents: ["pokemon"]
  870. },
  871. "great-dane": {
  872. name: "Great Dane",
  873. parents: ["dog"]
  874. },
  875. "black-backed-jackal": {
  876. name: "Black Backed Jackal",
  877. parents: ["jackal"]
  878. },
  879. "sheep": {
  880. name: "Sheep",
  881. parents: ["mammal"]
  882. },
  883. "leopard-seal": {
  884. name: "Leopard Seal",
  885. parents: ["seal"]
  886. },
  887. "zoroark": {
  888. name: "Zoroark",
  889. parents: ["pokemon"]
  890. },
  891. "maned-wolf": {
  892. name: "Maned Wolf",
  893. parents: ["canine"]
  894. },
  895. "dracha": {
  896. name: "Dracha",
  897. parents: ["dragon"]
  898. },
  899. "wolxi": {
  900. name: "Wolxi",
  901. parents: ["mammal", "alien"]
  902. },
  903. "dratini": {
  904. name: "Dratini",
  905. parents: ["pokemon", "dragon"]
  906. },
  907. "skaven": {
  908. name: "Skaven",
  909. parents: ["rat"]
  910. },
  911. "mongoose": {
  912. name: "Mongoose",
  913. parents: ["mammal"]
  914. },
  915. "lopunny": {
  916. name: "Lopunny",
  917. parents: ["pokemon", "rabbit"]
  918. },
  919. "feraligatr": {
  920. name: "Feraligatr",
  921. parents: ["pokemon", "alligator"]
  922. },
  923. "houndoom": {
  924. name: "Houndoom",
  925. parents: ["pokemon", "dog"]
  926. },
  927. "protogen": {
  928. name: "Protogen",
  929. parents: ["machine"]
  930. },
  931. "saint-bernard": {
  932. name: "Saint Bernard",
  933. parents: ["dog"]
  934. },
  935. "crow": {
  936. name: "Crow",
  937. parents: ["corvid"]
  938. },
  939. "delphox": {
  940. name: "Delphox",
  941. parents: ["pokemon", "fox"]
  942. },
  943. "moose": {
  944. name: "Moose",
  945. parents: ["mammal"]
  946. },
  947. "joraxian": {
  948. name: "Joraxian",
  949. parents: ["monster", "canine", "demon"]
  950. },
  951. "nimbat": {
  952. name: "Nimbat",
  953. parents: ["mammal"]
  954. },
  955. "aardwolf": {
  956. name: "Aardwolf",
  957. parents: ["canine"]
  958. },
  959. "fluudrani": {
  960. name: "Fluudrani",
  961. parents: ["animal"]
  962. },
  963. "arcanine": {
  964. name: "Arcanine",
  965. parents: ["pokemon", "dog"]
  966. },
  967. "inteleon": {
  968. name: "Inteleon",
  969. parents: ["pokemon", "fish"]
  970. },
  971. "ninetales": {
  972. name: "Ninetales",
  973. parents: ["pokemon", "kitsune"]
  974. },
  975. "tigrex": {
  976. name: "Tigrex",
  977. parents: ["tiger"]
  978. },
  979. "zorua": {
  980. name: "Zorua",
  981. parents: ["pokemon", "fox"]
  982. },
  983. "vulpix": {
  984. name: "Vulpix",
  985. parents: ["pokemon", "fox"]
  986. },
  987. "barghest": {
  988. name: "Barghest",
  989. parents: ["monster"]
  990. },
  991. "gray-wolf": {
  992. name: "Gray Wolf",
  993. parents: ["wolf"]
  994. },
  995. "ruppells-fox": {
  996. name: "Rüppell's Fox",
  997. parents: ["fox"]
  998. },
  999. "bull-terrier": {
  1000. name: "Bull Terrier",
  1001. parents: ["dog"]
  1002. },
  1003. "european-honey-buzzard": {
  1004. name: "European Honey Buzzard",
  1005. parents: ["avian"]
  1006. },
  1007. "t-rex": {
  1008. name: "T Rex",
  1009. parents: ["dinosaur"]
  1010. },
  1011. "mactarian": {
  1012. name: "Mactarian",
  1013. parents: ["shark", "monster"]
  1014. },
  1015. "mewtwo-y": {
  1016. name: "Mewtwo Y",
  1017. parents: ["mewtwo"]
  1018. },
  1019. "mewtwo": {
  1020. name: "Mewtwo",
  1021. parents: ["pokemon"]
  1022. },
  1023. "mew": {
  1024. name: "Mew",
  1025. parents: ["pokemon"]
  1026. },
  1027. "eevee": {
  1028. name: "Eevee",
  1029. parents: ["eeveelution"]
  1030. },
  1031. "mienshao": {
  1032. name: "Mienshao",
  1033. parents: ["pokemon"]
  1034. },
  1035. "sugar-glider": {
  1036. name: "Sugar Glider",
  1037. parents: ["opossum"]
  1038. },
  1039. "spectral-bat": {
  1040. name: "Spectral Bat",
  1041. parents: ["bat"]
  1042. },
  1043. "scolipede": {
  1044. name: "Scolipede",
  1045. parents: ["pokemon", "insect"]
  1046. },
  1047. "jackalope": {
  1048. name: "Jackalope",
  1049. parents: ["rabbit", "antelope"]
  1050. },
  1051. "caracal": {
  1052. name: "Caracal",
  1053. parents: ["cat"]
  1054. },
  1055. "stoat": {
  1056. name: "Stoat",
  1057. parents: ["mammal"]
  1058. },
  1059. "african-golden-cat": {
  1060. name: "African Golden Cat",
  1061. parents: ["cat"]
  1062. },
  1063. "gigantosaurus": {
  1064. name: "Gigantosaurus",
  1065. parents: ["dinosaur"]
  1066. },
  1067. "zorgoia": {
  1068. name: "Zorgoia",
  1069. parents: ["mammal"]
  1070. },
  1071. "monitor-lizard": {
  1072. name: "Monitor Lizard",
  1073. parents: ["lizard"]
  1074. },
  1075. "ziralkia": {
  1076. name: "Ziralkia",
  1077. parents: ["mammal"]
  1078. },
  1079. "kiiasi": {
  1080. name: "Kiiasi",
  1081. parents: ["animal"]
  1082. },
  1083. "synx": {
  1084. name: "Synx",
  1085. parents: ["monster"]
  1086. },
  1087. "panther": {
  1088. name: "Panther",
  1089. parents: ["cat"]
  1090. },
  1091. "azumarill": {
  1092. name: "Azumarill",
  1093. parents: ["pokemon"]
  1094. },
  1095. "river-snaptail": {
  1096. name: "River Snaptail",
  1097. parents: ["otter", "crocodile"]
  1098. },
  1099. "great-blue-heron": {
  1100. name: "Great Blue Heron",
  1101. parents: ["avian"]
  1102. },
  1103. "smeargle": {
  1104. name: "Smeargle",
  1105. parents: ["pokemon"]
  1106. },
  1107. "vendeilen": {
  1108. name: "Vendeilen",
  1109. parents: ["monster"]
  1110. },
  1111. "ventura": {
  1112. name: "Ventura",
  1113. parents: ["canine"]
  1114. },
  1115. "clouded-leopard": {
  1116. name: "Clouded Leopard",
  1117. parents: ["leopard"]
  1118. },
  1119. "argonian": {
  1120. name: "Argonian",
  1121. parents: ["lizard"]
  1122. },
  1123. "salazzle": {
  1124. name: "Salazzle",
  1125. parents: ["pokemon", "lizard"]
  1126. },
  1127. "je-stoff-drachen": {
  1128. name: "Je-Stoff Drachen",
  1129. parents: ["dragon"]
  1130. },
  1131. "finnish-spitz-dog": {
  1132. name: "Finnish Spitz Dog",
  1133. parents: ["dog"]
  1134. },
  1135. "gray-fox": {
  1136. name: "Gray Fox",
  1137. parents: ["fox"]
  1138. },
  1139. "opossum": {
  1140. name: "opossum",
  1141. parents: ["mammal"]
  1142. },
  1143. "antelope": {
  1144. name: "Antelope",
  1145. parents: ["mammal"]
  1146. },
  1147. "weavile": {
  1148. name: "Weavile",
  1149. parents: ["pokemon"]
  1150. },
  1151. "pikachu": {
  1152. name: "Pikachu",
  1153. parents: ["pokemon", "mouse"]
  1154. },
  1155. "grovyle": {
  1156. name: "Grovyle",
  1157. parents: ["pokemon", "plant"]
  1158. },
  1159. "sthara": {
  1160. name: "Sthara",
  1161. parents: ["snow-leopard", "reptile"]
  1162. },
  1163. "star-warrior": {
  1164. name: "Star Warrior",
  1165. parents: ["magical"]
  1166. },
  1167. "dragonoid": {
  1168. name: "Dragonoid",
  1169. parents: ["dragon"]
  1170. },
  1171. "suicune": {
  1172. name: "Suicune",
  1173. parents: ["pokemon"]
  1174. },
  1175. "vole": {
  1176. name: "Vole",
  1177. parents: ["mammal"]
  1178. },
  1179. "blaziken": {
  1180. name: "Blaziken",
  1181. parents: ["pokemon", "avian"]
  1182. },
  1183. "buizel": {
  1184. name: "Buizel",
  1185. parents: ["pokemon", "fish"]
  1186. },
  1187. "floatzel": {
  1188. name: "Floatzel",
  1189. parents: ["pokemon", "fish"]
  1190. },
  1191. "umok": {
  1192. name: "Umok",
  1193. parents: ["avian"]
  1194. },
  1195. "sea-monster": {
  1196. name: "Sea Monster",
  1197. parents: ["monster", "fish"]
  1198. },
  1199. "egyptian-vulture": {
  1200. name: "Egyptian Vulture",
  1201. parents: ["avian"]
  1202. },
  1203. "doberman": {
  1204. name: "Doberman",
  1205. parents: ["dog"]
  1206. },
  1207. "zangoose": {
  1208. name: "Zangoose",
  1209. parents: ["pokemon", "mongoose"]
  1210. },
  1211. "mongoose": {
  1212. name: "Mongoose",
  1213. parents: ["mammal"]
  1214. },
  1215. "wickerbeast": {
  1216. name: "Wickerbeast",
  1217. parents: ["monster"]
  1218. },
  1219. "zenari": {
  1220. name: "Zenari",
  1221. parents: ["lizard"]
  1222. },
  1223. "plant": {
  1224. name: "Plant",
  1225. parents: []
  1226. },
  1227. "raskatox": {
  1228. name: "Raskatox",
  1229. parents: ["raccoon", "skunk", "cat", "fox"]
  1230. },
  1231. "mikromare": {
  1232. name: "mikromare",
  1233. parents: ["alien"]
  1234. },
  1235. "alien": {
  1236. name: "Alien",
  1237. parents: ["animal"]
  1238. },
  1239. "deity": {
  1240. name: "Deity",
  1241. parents: []
  1242. },
  1243. "skarlan": {
  1244. name: "Skarlan",
  1245. parents: ["slug", "dragon"]
  1246. },
  1247. "slug": {
  1248. name: "Slug",
  1249. parents: ["mollusk"]
  1250. },
  1251. "mollusk": {
  1252. name: "Mollusk",
  1253. parents: ["animal"]
  1254. },
  1255. "chimera": {
  1256. name: "Chimera",
  1257. parents: ["monster"]
  1258. },
  1259. "gestalt": {
  1260. name: "Gestalt",
  1261. parents: ["construct"]
  1262. },
  1263. "mimic": {
  1264. name: "Mimic",
  1265. parents: ["monster"]
  1266. },
  1267. "calico-rat": {
  1268. name: "Calico Rat",
  1269. parents: ["rat"]
  1270. },
  1271. "panda": {
  1272. name: "Panda",
  1273. parents: ["mammal"]
  1274. },
  1275. "oni": {
  1276. name: "Oni",
  1277. parents: ["monster"]
  1278. },
  1279. "pegasus": {
  1280. name: "Pegasus",
  1281. parents: ["horse"]
  1282. },
  1283. "vulpera": {
  1284. name: "Vulpera",
  1285. parents: ["fennec-fox"]
  1286. },
  1287. "ceratosaurus": {
  1288. name: "Ceratosaurus",
  1289. parents: ["dinosaur"]
  1290. },
  1291. "nykur": {
  1292. name: "Nykur",
  1293. parents: ["horse", "monster"]
  1294. },
  1295. "giraffe": {
  1296. name: "Giraffe",
  1297. parents: ["mammal"]
  1298. },
  1299. "tauren": {
  1300. name: "Tauren",
  1301. parents: ["cow"]
  1302. },
  1303. "draconi": {
  1304. name: "Draconi",
  1305. parents: ["alien", "cat", "cyborg"]
  1306. },
  1307. "dire-wolf": {
  1308. name: "Dire Wolf",
  1309. parents: ["wolf"]
  1310. },
  1311. "ferromorph": {
  1312. name: "Ferromorph",
  1313. parents: ["construct"]
  1314. },
  1315. "meowth": {
  1316. name: "Meowth",
  1317. parents: ["cat", "pokemon"]
  1318. },
  1319. "pavodragon": {
  1320. name: "Pavodragon",
  1321. parents: ["dragon"]
  1322. },
  1323. "aaltranae": {
  1324. name: "Aaltranae",
  1325. parents: ["dragon"]
  1326. },
  1327. "cyborg": {
  1328. name: "Cyborg",
  1329. parents: ["machine"]
  1330. },
  1331. "draptor": {
  1332. name: "Draptor",
  1333. parents: ["dragon"]
  1334. },
  1335. "candy": {
  1336. name: "Candy",
  1337. parents: []
  1338. },
  1339. "drenath": {
  1340. name: "Drenath",
  1341. parents: ["dragon", "snake", "rabbit"]
  1342. },
  1343. "coyju": {
  1344. name: "Coyju",
  1345. parents: ["coyote", "kaiju"]
  1346. },
  1347. "kaiju": {
  1348. name: "Kaiju",
  1349. parents: ["monster"]
  1350. },
  1351. "nickit": {
  1352. name: "Nickit",
  1353. parents: ["pokemon", "cat"]
  1354. },
  1355. "lopunny": {
  1356. name: "Lopunny",
  1357. parents: ["pokemon", "rabbit"]
  1358. },
  1359. "korean-jindo-dog": {
  1360. name: "Korean Jindo Dog",
  1361. parents: ["dog"]
  1362. },
  1363. "naga": {
  1364. name: "Naga",
  1365. parents: ["snake", "monster"]
  1366. },
  1367. "undead": {
  1368. name: "Undead",
  1369. parents: ["monster"]
  1370. },
  1371. "whale": {
  1372. name: "Whale",
  1373. parents: ["fish"]
  1374. },
  1375. "gelato-bee": {
  1376. name: "Gelato Bee",
  1377. parents: ["bee"]
  1378. },
  1379. "bee": {
  1380. name: "Bee",
  1381. parents: ["insect"]
  1382. },
  1383. "gardevoir": {
  1384. name: "Gardevoir",
  1385. parents: ["pokemon"]
  1386. },
  1387. "ant": {
  1388. name: "Ant",
  1389. parents: ["insect"]
  1390. },
  1391. "frog": {
  1392. name: "Frog",
  1393. parents: ["amphibian"]
  1394. },
  1395. "amphibian": {
  1396. name: "Amphibian",
  1397. parents: ["animal"]
  1398. },
  1399. "pangolin": {
  1400. name: "Pangolin",
  1401. parents: ["mammal"]
  1402. },
  1403. "uragi'viidorn": {
  1404. name: "Uragi'viidorn",
  1405. parents: ["avian", "bear"]
  1406. },
  1407. "gryphdelphais": {
  1408. name: "Gryphdelphais",
  1409. parents: ["dolphin", "gryphon"]
  1410. },
  1411. "plush": {
  1412. name: "Plush",
  1413. parents: ["construct"]
  1414. },
  1415. "draiger": {
  1416. name: "Draiger",
  1417. parents: ["dragon","tiger"]
  1418. },
  1419. "foxsky": {
  1420. name: "Foxsky",
  1421. parents: ["fox", "husky"]
  1422. },
  1423. "umbreon": {
  1424. name: "Umbreon",
  1425. parents: ["eeveelution"]
  1426. },
  1427. "slime-dragon": {
  1428. name: "Slime Dragon",
  1429. parents: ["dragon"]
  1430. },
  1431. "enderman": {
  1432. name: "Enderman",
  1433. parents: ["monster"]
  1434. },
  1435. "gremlin": {
  1436. name: "Gremlin",
  1437. parents: ["monster"]
  1438. },
  1439. "dragonsune": {
  1440. name: "Dragonsune",
  1441. parents: ["dragon", "kitsune"]
  1442. },
  1443. "ghost": {
  1444. name: "Ghost",
  1445. parents: ["monster"]
  1446. },
  1447. "false-vampire-bat": {
  1448. name: "False Vampire Bat",
  1449. parents: ["bat"]
  1450. },
  1451. "succubus": {
  1452. name: "Succubus",
  1453. parents: ["demon"]
  1454. },
  1455. "mia": {
  1456. name: "Mia",
  1457. parents: ["canine"]
  1458. },
  1459. "rainbow": {
  1460. name: "Rainbow",
  1461. parents: ["monster"]
  1462. },
  1463. "solgaleo": {
  1464. name: "Solgaleo",
  1465. parents: ["pokemon"]
  1466. },
  1467. "lucent-nargacuga": {
  1468. name: "Lucent Nargacuga",
  1469. parents: ["monster-hunter"]
  1470. },
  1471. "monster-hunter": {
  1472. name: "Monster Hunter",
  1473. parents: ["monster"]
  1474. },
  1475. "leviathan": {
  1476. "name": "Leviathan",
  1477. "url": "sea-monster"
  1478. },
  1479. "bull": {
  1480. name: "Bull",
  1481. parents: ["mammal"]
  1482. },
  1483. "tanuki": {
  1484. name: "Tanuki",
  1485. parents: ["monster"]
  1486. },
  1487. "chakat": {
  1488. name: "Chakat",
  1489. parents: ["cat"]
  1490. },
  1491. "hydra": {
  1492. name: "Hydra",
  1493. parents: ["monster"]
  1494. },
  1495. "zigzagoon": {
  1496. name: "Zigzagoon",
  1497. parents: ["raccoon", "pokemon"]
  1498. },
  1499. "vulture": {
  1500. name: "Vulture",
  1501. parents: ["avian"]
  1502. },
  1503. "eastern-dragon": {
  1504. name: "Eastern Dragon",
  1505. parents: ["dragon"]
  1506. },
  1507. "gryffon": {
  1508. name: "Gryffon",
  1509. parents: ["phoenix", "red-panda"]
  1510. },
  1511. "amtsvane": {
  1512. name: "Amtsvane",
  1513. parents: ["reptile"]
  1514. },
  1515. "kigavi": {
  1516. name: "Kigavi",
  1517. parents: ["avian"]
  1518. },
  1519. "turian": {
  1520. name: "Turian",
  1521. parents: ["avian"]
  1522. },
  1523. "zeraora": {
  1524. name: "Zeraora",
  1525. parents: ["pokemon"]
  1526. },
  1527. "sandshrew": {
  1528. name: "Sandshrew",
  1529. parents: ["pokemon", "pangolin"]
  1530. },
  1531. }
  1532. //species
  1533. function getSpeciesInfo(speciesList) {
  1534. let result = new Set();
  1535. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1536. result.add(entry)
  1537. });
  1538. return Array.from(result);
  1539. };
  1540. function getSpeciesInfoHelper(species) {
  1541. if (!speciesData[species]) {
  1542. console.warn(species + " doesn't exist");
  1543. return [];
  1544. }
  1545. if (speciesData[species].parents) {
  1546. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1547. } else {
  1548. return [species];
  1549. }
  1550. }
  1551. characterMakers.push(() => makeCharacter(
  1552. {
  1553. name: "Fen",
  1554. species: ["crux"],
  1555. description: {
  1556. title: "Bio",
  1557. text: "Very furry. Sheds on everything."
  1558. },
  1559. tags: [
  1560. "anthro",
  1561. "goo"
  1562. ]
  1563. },
  1564. {
  1565. back: {
  1566. height: math.unit(2.2428, "meter"),
  1567. weight: math.unit(124.738, "kg"),
  1568. name: "Back",
  1569. image: {
  1570. source: "./media/characters/fen/back.svg",
  1571. extra: 2024 / 1867,
  1572. bottom: 13 / 2037
  1573. },
  1574. info: {
  1575. description: {
  1576. mode: "append",
  1577. text: "\n\nHe is not currently looking at you."
  1578. }
  1579. }
  1580. },
  1581. full: {
  1582. height: math.unit(1.34, "meter"),
  1583. weight: math.unit(225, "kg"),
  1584. name: "Full",
  1585. image: {
  1586. source: "./media/characters/fen/full.svg"
  1587. },
  1588. info: {
  1589. description: {
  1590. mode: "append",
  1591. text: "\n\nMunch."
  1592. }
  1593. }
  1594. },
  1595. kneeling: {
  1596. height: math.unit(5.4, "feet"),
  1597. weight: math.unit(124.738, "kg"),
  1598. name: "Kneeling",
  1599. image: {
  1600. source: "./media/characters/fen/kneeling.svg",
  1601. extra: 563 / 507
  1602. }
  1603. },
  1604. goo: {
  1605. height: math.unit(2.8, "feet"),
  1606. weight: math.unit(125, "kg"),
  1607. capacity: math.unit(1, "people"),
  1608. name: "Goo",
  1609. image: {
  1610. source: "./media/characters/fen/goo.svg",
  1611. bottom: 116 / 613
  1612. }
  1613. },
  1614. lounging: {
  1615. height: math.unit(6.5, "feet"),
  1616. weight: math.unit(125, "kg"),
  1617. name: "Lounging",
  1618. image: {
  1619. source: "./media/characters/fen/lounging.svg"
  1620. }
  1621. },
  1622. },
  1623. [
  1624. {
  1625. name: "Normal",
  1626. height: math.unit(2.2428, "meter")
  1627. },
  1628. {
  1629. name: "Big",
  1630. height: math.unit(12, "feet")
  1631. },
  1632. {
  1633. name: "Minimacro",
  1634. height: math.unit(40, "feet"),
  1635. default: true,
  1636. info: {
  1637. description: {
  1638. mode: "append",
  1639. text: "\n\nTOO DAMN BIG"
  1640. }
  1641. }
  1642. },
  1643. {
  1644. name: "Macro",
  1645. height: math.unit(100, "feet"),
  1646. info: {
  1647. description: {
  1648. mode: "append",
  1649. text: "\n\nTOO DAMN BIG"
  1650. }
  1651. }
  1652. },
  1653. {
  1654. name: "Macro+",
  1655. height: math.unit(300, "feet")
  1656. },
  1657. {
  1658. name: "Megamacro",
  1659. height: math.unit(2, "miles")
  1660. }
  1661. ]
  1662. ))
  1663. characterMakers.push(() => makeCharacter(
  1664. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1665. {
  1666. front: {
  1667. height: math.unit(183, "cm"),
  1668. weight: math.unit(80, "kg"),
  1669. name: "Front",
  1670. image: {
  1671. source: "./media/characters/sofia-fluttertail/front.svg",
  1672. bottom: 0.01,
  1673. extra: 2154 / 2081
  1674. }
  1675. },
  1676. frontAlt: {
  1677. height: math.unit(183, "cm"),
  1678. weight: math.unit(80, "kg"),
  1679. name: "Front (alt)",
  1680. image: {
  1681. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1682. }
  1683. },
  1684. back: {
  1685. height: math.unit(183, "cm"),
  1686. weight: math.unit(80, "kg"),
  1687. name: "Back",
  1688. image: {
  1689. source: "./media/characters/sofia-fluttertail/back.svg"
  1690. }
  1691. },
  1692. kneeling: {
  1693. height: math.unit(125, "cm"),
  1694. weight: math.unit(80, "kg"),
  1695. name: "Kneeling",
  1696. image: {
  1697. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1698. extra: 1033 / 977,
  1699. bottom: 23.7 / 1057
  1700. }
  1701. },
  1702. maw: {
  1703. height: math.unit(183 / 5, "cm"),
  1704. name: "Maw",
  1705. image: {
  1706. source: "./media/characters/sofia-fluttertail/maw.svg"
  1707. }
  1708. },
  1709. mawcloseup: {
  1710. height: math.unit(183 / 5 * 0.41, "cm"),
  1711. name: "Maw (Closeup)",
  1712. image: {
  1713. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1714. }
  1715. },
  1716. paws: {
  1717. height: math.unit(1.17, "feet"),
  1718. name: "Paws",
  1719. image: {
  1720. source: "./media/characters/sofia-fluttertail/paws.svg",
  1721. extra: 851 / 851,
  1722. bottom: 17 / 868
  1723. }
  1724. },
  1725. },
  1726. [
  1727. {
  1728. name: "Normal",
  1729. height: math.unit(1.83, "meter")
  1730. },
  1731. {
  1732. name: "Size Thief",
  1733. height: math.unit(18, "feet")
  1734. },
  1735. {
  1736. name: "50 Foot Collie",
  1737. height: math.unit(50, "feet")
  1738. },
  1739. {
  1740. name: "Macro",
  1741. height: math.unit(96, "feet"),
  1742. default: true
  1743. },
  1744. {
  1745. name: "Megamerger",
  1746. height: math.unit(650, "feet")
  1747. },
  1748. ]
  1749. ))
  1750. characterMakers.push(() => makeCharacter(
  1751. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1752. {
  1753. front: {
  1754. height: math.unit(7, "feet"),
  1755. weight: math.unit(100, "kg"),
  1756. name: "Front",
  1757. image: {
  1758. source: "./media/characters/march/front.svg",
  1759. extra: 1,
  1760. bottom: 0.015
  1761. }
  1762. },
  1763. foot: {
  1764. height: math.unit(0.9, "feet"),
  1765. name: "Foot",
  1766. image: {
  1767. source: "./media/characters/march/foot.svg"
  1768. }
  1769. },
  1770. },
  1771. [
  1772. {
  1773. name: "Normal",
  1774. height: math.unit(7.9, "feet")
  1775. },
  1776. {
  1777. name: "Macro",
  1778. height: math.unit(220, "meters")
  1779. },
  1780. {
  1781. name: "Megamacro",
  1782. height: math.unit(2.98, "km"),
  1783. default: true
  1784. },
  1785. {
  1786. name: "Gigamacro",
  1787. height: math.unit(15963, "km")
  1788. },
  1789. {
  1790. name: "Teramacro",
  1791. height: math.unit(2980000000, "km")
  1792. },
  1793. {
  1794. name: "Examacro",
  1795. height: math.unit(250, "parsecs")
  1796. },
  1797. ]
  1798. ))
  1799. characterMakers.push(() => makeCharacter(
  1800. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1801. {
  1802. front: {
  1803. height: math.unit(6, "feet"),
  1804. weight: math.unit(60, "kg"),
  1805. name: "Front",
  1806. image: {
  1807. source: "./media/characters/noir/front.svg",
  1808. extra: 1,
  1809. bottom: 0.032
  1810. }
  1811. },
  1812. },
  1813. [
  1814. {
  1815. name: "Normal",
  1816. height: math.unit(6.6, "feet")
  1817. },
  1818. {
  1819. name: "Macro",
  1820. height: math.unit(500, "feet")
  1821. },
  1822. {
  1823. name: "Megamacro",
  1824. height: math.unit(2.5, "km"),
  1825. default: true
  1826. },
  1827. {
  1828. name: "Gigamacro",
  1829. height: math.unit(22500, "km")
  1830. },
  1831. {
  1832. name: "Teramacro",
  1833. height: math.unit(2500000000, "km")
  1834. },
  1835. {
  1836. name: "Examacro",
  1837. height: math.unit(200, "parsecs")
  1838. },
  1839. ]
  1840. ))
  1841. characterMakers.push(() => makeCharacter(
  1842. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1843. {
  1844. front: {
  1845. height: math.unit(7, "feet"),
  1846. weight: math.unit(100, "kg"),
  1847. name: "Front",
  1848. image: {
  1849. source: "./media/characters/okuri/front.svg",
  1850. extra: 1,
  1851. bottom: 0.037
  1852. }
  1853. },
  1854. back: {
  1855. height: math.unit(7, "feet"),
  1856. weight: math.unit(100, "kg"),
  1857. name: "Back",
  1858. image: {
  1859. source: "./media/characters/okuri/back.svg",
  1860. extra: 1,
  1861. bottom: 0.007
  1862. }
  1863. },
  1864. },
  1865. [
  1866. {
  1867. name: "Megamacro",
  1868. height: math.unit(100, "miles"),
  1869. default: true
  1870. },
  1871. ]
  1872. ))
  1873. characterMakers.push(() => makeCharacter(
  1874. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1875. {
  1876. front: {
  1877. height: math.unit(7, "feet"),
  1878. weight: math.unit(100, "kg"),
  1879. name: "Front",
  1880. image: {
  1881. source: "./media/characters/manny/front.svg",
  1882. extra: 1,
  1883. bottom: 0.06
  1884. }
  1885. },
  1886. back: {
  1887. height: math.unit(7, "feet"),
  1888. weight: math.unit(100, "kg"),
  1889. name: "Back",
  1890. image: {
  1891. source: "./media/characters/manny/back.svg",
  1892. extra: 1,
  1893. bottom: 0.014
  1894. }
  1895. },
  1896. },
  1897. [
  1898. {
  1899. name: "Normal",
  1900. height: math.unit(7, "feet"),
  1901. },
  1902. {
  1903. name: "Macro",
  1904. height: math.unit(78, "feet"),
  1905. default: true
  1906. },
  1907. {
  1908. name: "Macro+",
  1909. height: math.unit(300, "meters")
  1910. },
  1911. {
  1912. name: "Macro++",
  1913. height: math.unit(2400, "meters")
  1914. },
  1915. {
  1916. name: "Megamacro",
  1917. height: math.unit(5167, "meters")
  1918. },
  1919. {
  1920. name: "Gigamacro",
  1921. height: math.unit(41769, "miles")
  1922. },
  1923. ]
  1924. ))
  1925. characterMakers.push(() => makeCharacter(
  1926. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1927. {
  1928. front: {
  1929. height: math.unit(7, "feet"),
  1930. weight: math.unit(100, "kg"),
  1931. name: "Front",
  1932. image: {
  1933. source: "./media/characters/adake/front-1.svg"
  1934. }
  1935. },
  1936. frontAlt: {
  1937. height: math.unit(7, "feet"),
  1938. weight: math.unit(100, "kg"),
  1939. name: "Front (Alt)",
  1940. image: {
  1941. source: "./media/characters/adake/front-2.svg",
  1942. extra: 1,
  1943. bottom: 0.01
  1944. }
  1945. },
  1946. back: {
  1947. height: math.unit(7, "feet"),
  1948. weight: math.unit(100, "kg"),
  1949. name: "Back",
  1950. image: {
  1951. source: "./media/characters/adake/back.svg",
  1952. }
  1953. },
  1954. kneel: {
  1955. height: math.unit(5.385, "feet"),
  1956. weight: math.unit(100, "kg"),
  1957. name: "Kneeling",
  1958. image: {
  1959. source: "./media/characters/adake/kneel.svg",
  1960. bottom: 0.052
  1961. }
  1962. },
  1963. },
  1964. [
  1965. {
  1966. name: "Normal",
  1967. height: math.unit(7, "feet"),
  1968. },
  1969. {
  1970. name: "Macro",
  1971. height: math.unit(78, "feet"),
  1972. default: true
  1973. },
  1974. {
  1975. name: "Macro+",
  1976. height: math.unit(300, "meters")
  1977. },
  1978. {
  1979. name: "Macro++",
  1980. height: math.unit(2400, "meters")
  1981. },
  1982. {
  1983. name: "Megamacro",
  1984. height: math.unit(5167, "meters")
  1985. },
  1986. {
  1987. name: "Gigamacro",
  1988. height: math.unit(41769, "miles")
  1989. },
  1990. ]
  1991. ))
  1992. characterMakers.push(() => makeCharacter(
  1993. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1994. {
  1995. front: {
  1996. height: math.unit(1.65, "meters"),
  1997. weight: math.unit(50, "kg"),
  1998. name: "Front",
  1999. image: {
  2000. source: "./media/characters/elijah/front.svg",
  2001. extra: 858 / 830,
  2002. bottom: 95.5 / 953.8559
  2003. }
  2004. },
  2005. back: {
  2006. height: math.unit(1.65, "meters"),
  2007. weight: math.unit(50, "kg"),
  2008. name: "Back",
  2009. image: {
  2010. source: "./media/characters/elijah/back.svg",
  2011. extra: 895 / 850,
  2012. bottom: 5.3 / 897.956
  2013. }
  2014. },
  2015. frontNsfw: {
  2016. height: math.unit(1.65, "meters"),
  2017. weight: math.unit(50, "kg"),
  2018. name: "Front (NSFW)",
  2019. image: {
  2020. source: "./media/characters/elijah/front-nsfw.svg",
  2021. extra: 858 / 830,
  2022. bottom: 95.5 / 953.8559
  2023. }
  2024. },
  2025. backNsfw: {
  2026. height: math.unit(1.65, "meters"),
  2027. weight: math.unit(50, "kg"),
  2028. name: "Back (NSFW)",
  2029. image: {
  2030. source: "./media/characters/elijah/back-nsfw.svg",
  2031. extra: 895 / 850,
  2032. bottom: 5.3 / 897.956
  2033. }
  2034. },
  2035. dick: {
  2036. height: math.unit(1, "feet"),
  2037. name: "Dick",
  2038. image: {
  2039. source: "./media/characters/elijah/dick.svg"
  2040. }
  2041. },
  2042. beakOpen: {
  2043. height: math.unit(1.25, "feet"),
  2044. name: "Beak (Open)",
  2045. image: {
  2046. source: "./media/characters/elijah/beak-open.svg"
  2047. }
  2048. },
  2049. beakShut: {
  2050. height: math.unit(1.25, "feet"),
  2051. name: "Beak (Shut)",
  2052. image: {
  2053. source: "./media/characters/elijah/beak-shut.svg"
  2054. }
  2055. },
  2056. footFlexing: {
  2057. height: math.unit(1.61, "feet"),
  2058. name: "Foot (Flexing)",
  2059. image: {
  2060. source: "./media/characters/elijah/foot-flexing.svg"
  2061. }
  2062. },
  2063. footStepping: {
  2064. height: math.unit(1.44, "feet"),
  2065. name: "Foot (Stepping)",
  2066. image: {
  2067. source: "./media/characters/elijah/foot-stepping.svg"
  2068. }
  2069. },
  2070. plantigradeLeg: {
  2071. height: math.unit(2.34, "feet"),
  2072. name: "Plantigrade Leg",
  2073. image: {
  2074. source: "./media/characters/elijah/plantigrade-leg.svg"
  2075. }
  2076. },
  2077. plantigradeFootLeft: {
  2078. height: math.unit(0.9, "feet"),
  2079. name: "Plantigrade Foot (Left)",
  2080. image: {
  2081. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2082. }
  2083. },
  2084. plantigradeFootRight: {
  2085. height: math.unit(0.9, "feet"),
  2086. name: "Plantigrade Foot (Right)",
  2087. image: {
  2088. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2089. }
  2090. },
  2091. },
  2092. [
  2093. {
  2094. name: "Normal",
  2095. height: math.unit(1.65, "meters")
  2096. },
  2097. {
  2098. name: "Macro",
  2099. height: math.unit(55, "meters"),
  2100. default: true
  2101. },
  2102. {
  2103. name: "Macro+",
  2104. height: math.unit(105, "meters")
  2105. },
  2106. ]
  2107. ))
  2108. characterMakers.push(() => makeCharacter(
  2109. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2110. {
  2111. front: {
  2112. height: math.unit(11, "feet"),
  2113. weight: math.unit(80, "kg"),
  2114. name: "Front",
  2115. image: {
  2116. source: "./media/characters/rai/front.svg",
  2117. extra: 1,
  2118. bottom: 0.03
  2119. }
  2120. },
  2121. side: {
  2122. height: math.unit(11, "feet"),
  2123. weight: math.unit(80, "kg"),
  2124. name: "Side",
  2125. image: {
  2126. source: "./media/characters/rai/side.svg"
  2127. }
  2128. },
  2129. back: {
  2130. height: math.unit(11, "feet"),
  2131. weight: math.unit(80, "lb"),
  2132. name: "Back",
  2133. image: {
  2134. source: "./media/characters/rai/back.svg",
  2135. extra: 1,
  2136. bottom: 0.01
  2137. }
  2138. },
  2139. feral: {
  2140. height: math.unit(11, "feet"),
  2141. weight: math.unit(800, "lb"),
  2142. name: "Feral",
  2143. image: {
  2144. source: "./media/characters/rai/feral.svg",
  2145. extra: 1050 / 659,
  2146. bottom: 0.07
  2147. }
  2148. },
  2149. dragon: {
  2150. height: math.unit(23, "feet"),
  2151. weight: math.unit(50000, "lb"),
  2152. name: "Dragon",
  2153. image: {
  2154. source: "./media/characters/rai/dragon.svg",
  2155. extra: 2498 / 2030,
  2156. bottom: 85.2 / 2584
  2157. }
  2158. },
  2159. maw: {
  2160. height: math.unit(6 / 3.81416, "feet"),
  2161. name: "Maw",
  2162. image: {
  2163. source: "./media/characters/rai/maw.svg"
  2164. }
  2165. },
  2166. },
  2167. [
  2168. {
  2169. name: "Normal",
  2170. height: math.unit(11, "feet")
  2171. },
  2172. {
  2173. name: "Macro",
  2174. height: math.unit(302, "feet"),
  2175. default: true
  2176. },
  2177. ]
  2178. ))
  2179. characterMakers.push(() => makeCharacter(
  2180. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2181. {
  2182. frontDressed: {
  2183. height: math.unit(216, "feet"),
  2184. weight: math.unit(7000000, "lb"),
  2185. name: "Front (Dressed)",
  2186. image: {
  2187. source: "./media/characters/jazzy/front-dressed.svg",
  2188. extra: 2738 / 2651,
  2189. bottom: 41.8 / 2786
  2190. }
  2191. },
  2192. backDressed: {
  2193. height: math.unit(216, "feet"),
  2194. weight: math.unit(7000000, "lb"),
  2195. name: "Back (Dressed)",
  2196. image: {
  2197. source: "./media/characters/jazzy/back-dressed.svg",
  2198. extra: 2775 / 2673,
  2199. bottom: 36.8 / 2817
  2200. }
  2201. },
  2202. front: {
  2203. height: math.unit(216, "feet"),
  2204. weight: math.unit(7000000, "lb"),
  2205. name: "Front",
  2206. image: {
  2207. source: "./media/characters/jazzy/front.svg",
  2208. extra: 2738 / 2651,
  2209. bottom: 41.8 / 2786
  2210. }
  2211. },
  2212. back: {
  2213. height: math.unit(216, "feet"),
  2214. weight: math.unit(7000000, "lb"),
  2215. name: "Back",
  2216. image: {
  2217. source: "./media/characters/jazzy/back.svg",
  2218. extra: 2775 / 2673,
  2219. bottom: 36.8 / 2817
  2220. }
  2221. },
  2222. maw: {
  2223. height: math.unit(20, "feet"),
  2224. name: "Maw",
  2225. image: {
  2226. source: "./media/characters/jazzy/maw.svg"
  2227. }
  2228. },
  2229. paws: {
  2230. height: math.unit(27.5, "feet"),
  2231. name: "Paws",
  2232. image: {
  2233. source: "./media/characters/jazzy/paws.svg"
  2234. }
  2235. },
  2236. eye: {
  2237. height: math.unit(4.4, "feet"),
  2238. name: "Eye",
  2239. image: {
  2240. source: "./media/characters/jazzy/eye.svg"
  2241. }
  2242. },
  2243. droneOffense: {
  2244. height: math.unit(9.5, "inches"),
  2245. name: "Drone (Offense)",
  2246. image: {
  2247. source: "./media/characters/jazzy/drone-offense.svg"
  2248. }
  2249. },
  2250. droneRecon: {
  2251. height: math.unit(9.5, "inches"),
  2252. name: "Drone (Recon)",
  2253. image: {
  2254. source: "./media/characters/jazzy/drone-recon.svg"
  2255. }
  2256. },
  2257. droneDefense: {
  2258. height: math.unit(9.5, "inches"),
  2259. name: "Drone (Defense)",
  2260. image: {
  2261. source: "./media/characters/jazzy/drone-defense.svg"
  2262. }
  2263. },
  2264. },
  2265. [
  2266. {
  2267. name: "Macro",
  2268. height: math.unit(216, "feet"),
  2269. default: true
  2270. },
  2271. ]
  2272. ))
  2273. characterMakers.push(() => makeCharacter(
  2274. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2275. {
  2276. front: {
  2277. height: math.unit(7, "feet"),
  2278. weight: math.unit(80, "kg"),
  2279. name: "Front",
  2280. image: {
  2281. source: "./media/characters/flamm/front.svg",
  2282. extra: 1794 / 1677,
  2283. bottom: 31.7 / 1828.5
  2284. }
  2285. },
  2286. },
  2287. [
  2288. {
  2289. name: "Normal",
  2290. height: math.unit(9.5, "feet")
  2291. },
  2292. {
  2293. name: "Macro",
  2294. height: math.unit(200, "feet"),
  2295. default: true
  2296. },
  2297. ]
  2298. ))
  2299. characterMakers.push(() => makeCharacter(
  2300. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2301. {
  2302. front: {
  2303. height: math.unit(5 + 3/12, "feet"),
  2304. weight: math.unit(60, "kg"),
  2305. name: "Front",
  2306. image: {
  2307. source: "./media/characters/zephiro/front.svg",
  2308. extra: 2309 / 2162,
  2309. bottom: 0.069
  2310. }
  2311. },
  2312. side: {
  2313. height: math.unit(5 + 3/12, "feet"),
  2314. weight: math.unit(60, "kg"),
  2315. name: "Side",
  2316. image: {
  2317. source: "./media/characters/zephiro/side.svg",
  2318. extra: 2403 / 2279,
  2319. bottom: 0.015
  2320. }
  2321. },
  2322. back: {
  2323. height: math.unit(5 + 3/12, "feet"),
  2324. weight: math.unit(60, "kg"),
  2325. name: "Back",
  2326. image: {
  2327. source: "./media/characters/zephiro/back.svg",
  2328. extra: 2373 / 2244,
  2329. bottom: 0.013
  2330. }
  2331. },
  2332. hand: {
  2333. height: math.unit(0.68, "feet"),
  2334. name: "Hand",
  2335. image: {
  2336. source: "./media/characters/zephiro/hand.svg"
  2337. }
  2338. },
  2339. paw: {
  2340. height: math.unit(1, "feet"),
  2341. name: "Paw",
  2342. image: {
  2343. source: "./media/characters/zephiro/paw.svg"
  2344. }
  2345. },
  2346. beans: {
  2347. height: math.unit(0.93, "feet"),
  2348. name: "Beans",
  2349. image: {
  2350. source: "./media/characters/zephiro/beans.svg"
  2351. }
  2352. },
  2353. },
  2354. [
  2355. {
  2356. name: "Micro",
  2357. height: math.unit(3, "inches")
  2358. },
  2359. {
  2360. name: "Normal",
  2361. height: math.unit(5 + 3 / 12, "feet"),
  2362. default: true
  2363. },
  2364. {
  2365. name: "Macro",
  2366. height: math.unit(118, "feet")
  2367. },
  2368. ]
  2369. ))
  2370. characterMakers.push(() => makeCharacter(
  2371. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2372. {
  2373. front: {
  2374. height: math.unit(5, "feet"),
  2375. weight: math.unit(90, "kg"),
  2376. name: "Front",
  2377. image: {
  2378. source: "./media/characters/fory/front.svg",
  2379. extra: 2862 / 2674,
  2380. bottom: 180 / 3043.8
  2381. }
  2382. },
  2383. back: {
  2384. height: math.unit(5, "feet"),
  2385. weight: math.unit(90, "kg"),
  2386. name: "Back",
  2387. image: {
  2388. source: "./media/characters/fory/back.svg",
  2389. extra: 2962 / 2791,
  2390. bottom: 106 / 3071.8
  2391. }
  2392. },
  2393. foot: {
  2394. height: math.unit(2.14, "feet"),
  2395. name: "Foot",
  2396. image: {
  2397. source: "./media/characters/fory/foot.svg"
  2398. }
  2399. },
  2400. },
  2401. [
  2402. {
  2403. name: "Normal",
  2404. height: math.unit(5, "feet")
  2405. },
  2406. {
  2407. name: "Macro",
  2408. height: math.unit(50, "feet"),
  2409. default: true
  2410. },
  2411. {
  2412. name: "Megamacro",
  2413. height: math.unit(10, "miles")
  2414. },
  2415. {
  2416. name: "Gigamacro",
  2417. height: math.unit(5, "earths")
  2418. },
  2419. ]
  2420. ))
  2421. characterMakers.push(() => makeCharacter(
  2422. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2423. {
  2424. front: {
  2425. height: math.unit(7, "feet"),
  2426. weight: math.unit(90, "kg"),
  2427. name: "Front",
  2428. image: {
  2429. source: "./media/characters/kurrikage/front.svg",
  2430. extra: 1,
  2431. bottom: 0.035
  2432. }
  2433. },
  2434. back: {
  2435. height: math.unit(7, "feet"),
  2436. weight: math.unit(90, "lb"),
  2437. name: "Back",
  2438. image: {
  2439. source: "./media/characters/kurrikage/back.svg"
  2440. }
  2441. },
  2442. paw: {
  2443. height: math.unit(1.5, "feet"),
  2444. name: "Paw",
  2445. image: {
  2446. source: "./media/characters/kurrikage/paw.svg"
  2447. }
  2448. },
  2449. staff: {
  2450. height: math.unit(6.7, "feet"),
  2451. name: "Staff",
  2452. image: {
  2453. source: "./media/characters/kurrikage/staff.svg"
  2454. }
  2455. },
  2456. peek: {
  2457. height: math.unit(1.05, "feet"),
  2458. name: "Peeking",
  2459. image: {
  2460. source: "./media/characters/kurrikage/peek.svg",
  2461. bottom: 0.08
  2462. }
  2463. },
  2464. },
  2465. [
  2466. {
  2467. name: "Normal",
  2468. height: math.unit(12, "feet"),
  2469. default: true
  2470. },
  2471. {
  2472. name: "Big",
  2473. height: math.unit(20, "feet")
  2474. },
  2475. {
  2476. name: "Macro",
  2477. height: math.unit(500, "feet")
  2478. },
  2479. {
  2480. name: "Megamacro",
  2481. height: math.unit(20, "miles")
  2482. },
  2483. ]
  2484. ))
  2485. characterMakers.push(() => makeCharacter(
  2486. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2487. {
  2488. front: {
  2489. height: math.unit(6, "feet"),
  2490. weight: math.unit(75, "kg"),
  2491. name: "Front",
  2492. image: {
  2493. source: "./media/characters/shingo/front.svg",
  2494. extra: 706/681,
  2495. bottom: 11/717
  2496. }
  2497. },
  2498. frontAlt: {
  2499. height: math.unit(6, "feet"),
  2500. weight: math.unit(75, "kg"),
  2501. name: "Front (Alt)",
  2502. image: {
  2503. source: "./media/characters/shingo/front-alt.svg",
  2504. extra: 3511 / 3338,
  2505. bottom: 0.005
  2506. }
  2507. },
  2508. paw: {
  2509. height: math.unit(1, "feet"),
  2510. name: "Paw",
  2511. image: {
  2512. source: "./media/characters/shingo/paw.svg"
  2513. }
  2514. },
  2515. },
  2516. [
  2517. {
  2518. name: "Micro",
  2519. height: math.unit(4, "inches")
  2520. },
  2521. {
  2522. name: "Normal",
  2523. height: math.unit(6, "feet"),
  2524. default: true
  2525. },
  2526. {
  2527. name: "Macro",
  2528. height: math.unit(108, "feet")
  2529. },
  2530. {
  2531. name: "Macro+",
  2532. height: math.unit(1500, "feet")
  2533. },
  2534. ]
  2535. ))
  2536. characterMakers.push(() => makeCharacter(
  2537. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2538. {
  2539. side: {
  2540. height: math.unit(6, "feet"),
  2541. weight: math.unit(75, "kg"),
  2542. name: "Side",
  2543. image: {
  2544. source: "./media/characters/aigey/side.svg"
  2545. }
  2546. },
  2547. },
  2548. [
  2549. {
  2550. name: "Macro",
  2551. height: math.unit(200, "feet"),
  2552. default: true
  2553. },
  2554. {
  2555. name: "Megamacro",
  2556. height: math.unit(100, "miles")
  2557. },
  2558. ]
  2559. )
  2560. )
  2561. characterMakers.push(() => makeCharacter(
  2562. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2563. {
  2564. front: {
  2565. height: math.unit(5 + 5 / 12, "feet"),
  2566. weight: math.unit(75, "kg"),
  2567. name: "Front",
  2568. image: {
  2569. source: "./media/characters/natasha/front.svg",
  2570. extra: 859 / 824,
  2571. bottom: 23 / 879.6
  2572. }
  2573. },
  2574. frontNsfw: {
  2575. height: math.unit(5 + 5 / 12, "feet"),
  2576. weight: math.unit(75, "kg"),
  2577. name: "Front (NSFW)",
  2578. image: {
  2579. source: "./media/characters/natasha/front-nsfw.svg",
  2580. extra: 859 / 824,
  2581. bottom: 23 / 879.6
  2582. }
  2583. },
  2584. frontErect: {
  2585. height: math.unit(5 + 5 / 12, "feet"),
  2586. weight: math.unit(75, "kg"),
  2587. name: "Front (Erect)",
  2588. image: {
  2589. source: "./media/characters/natasha/front-erect.svg",
  2590. extra: 859 / 824,
  2591. bottom: 23 / 879.6
  2592. }
  2593. },
  2594. back: {
  2595. height: math.unit(5 + 5 / 12, "feet"),
  2596. weight: math.unit(75, "kg"),
  2597. name: "Back",
  2598. image: {
  2599. source: "./media/characters/natasha/back.svg",
  2600. extra: 887.9 / 852.6,
  2601. bottom: 9.7 / 896.4
  2602. }
  2603. },
  2604. backAlt: {
  2605. height: math.unit(5 + 5 / 12, "feet"),
  2606. weight: math.unit(75, "kg"),
  2607. name: "Back (Alt)",
  2608. image: {
  2609. source: "./media/characters/natasha/back-alt.svg",
  2610. extra: 1236.7 / 1192,
  2611. bottom: 22.3 / 1258.2
  2612. }
  2613. },
  2614. dick: {
  2615. height: math.unit(1.772, "feet"),
  2616. name: "Dick",
  2617. image: {
  2618. source: "./media/characters/natasha/dick.svg"
  2619. }
  2620. },
  2621. paw: {
  2622. height: math.unit(0.250, "meters"),
  2623. name: "Paw",
  2624. image: {
  2625. source: "./media/characters/natasha/paw.svg"
  2626. }
  2627. },
  2628. },
  2629. [
  2630. {
  2631. name: "Normal",
  2632. height: math.unit(5 + 5 / 12, "feet")
  2633. },
  2634. {
  2635. name: "Large",
  2636. height: math.unit(12, "feet")
  2637. },
  2638. {
  2639. name: "Macro",
  2640. height: math.unit(100, "feet"),
  2641. default: true
  2642. },
  2643. {
  2644. name: "Macro+",
  2645. height: math.unit(260, "feet")
  2646. },
  2647. {
  2648. name: "Macro++",
  2649. height: math.unit(1, "mile")
  2650. },
  2651. ]
  2652. ))
  2653. characterMakers.push(() => makeCharacter(
  2654. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2655. {
  2656. front: {
  2657. height: math.unit(6, "feet"),
  2658. weight: math.unit(75, "kg"),
  2659. name: "Front",
  2660. image: {
  2661. source: "./media/characters/malik/front.svg"
  2662. }
  2663. },
  2664. side: {
  2665. height: math.unit(6, "feet"),
  2666. weight: math.unit(75, "kg"),
  2667. name: "Side",
  2668. image: {
  2669. source: "./media/characters/malik/side.svg",
  2670. extra: 1.1539
  2671. }
  2672. },
  2673. back: {
  2674. height: math.unit(6, "feet"),
  2675. weight: math.unit(75, "kg"),
  2676. name: "Back",
  2677. image: {
  2678. source: "./media/characters/malik/back.svg"
  2679. }
  2680. },
  2681. },
  2682. [
  2683. {
  2684. name: "Macro",
  2685. height: math.unit(156, "feet"),
  2686. default: true
  2687. },
  2688. {
  2689. name: "Macro+",
  2690. height: math.unit(1188, "feet")
  2691. },
  2692. ]
  2693. ))
  2694. characterMakers.push(() => makeCharacter(
  2695. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2696. {
  2697. front: {
  2698. height: math.unit(6, "feet"),
  2699. weight: math.unit(75, "kg"),
  2700. name: "Front",
  2701. image: {
  2702. source: "./media/characters/sefer/front.svg",
  2703. extra: 848 / 659,
  2704. bottom: 28.3 / 876.442
  2705. }
  2706. },
  2707. back: {
  2708. height: math.unit(6, "feet"),
  2709. weight: math.unit(75, "kg"),
  2710. name: "Back",
  2711. image: {
  2712. source: "./media/characters/sefer/back.svg",
  2713. extra: 864 / 695,
  2714. bottom: 10 / 871
  2715. }
  2716. },
  2717. frontDressed: {
  2718. height: math.unit(6, "feet"),
  2719. weight: math.unit(75, "kg"),
  2720. name: "Front (Dressed)",
  2721. image: {
  2722. source: "./media/characters/sefer/front-dressed.svg",
  2723. extra: 839 / 653,
  2724. bottom: 37.6 / 878
  2725. }
  2726. },
  2727. },
  2728. [
  2729. {
  2730. name: "Normal",
  2731. height: math.unit(6, "feet"),
  2732. default: true
  2733. },
  2734. ]
  2735. ))
  2736. characterMakers.push(() => makeCharacter(
  2737. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2738. {
  2739. body: {
  2740. height: math.unit(2.2428, "meter"),
  2741. weight: math.unit(124.738, "kg"),
  2742. name: "Body",
  2743. image: {
  2744. extra: 1225 / 1050,
  2745. source: "./media/characters/north/front.svg"
  2746. }
  2747. }
  2748. },
  2749. [
  2750. {
  2751. name: "Micro",
  2752. height: math.unit(4, "inches")
  2753. },
  2754. {
  2755. name: "Macro",
  2756. height: math.unit(63, "meters")
  2757. },
  2758. {
  2759. name: "Megamacro",
  2760. height: math.unit(101, "miles"),
  2761. default: true
  2762. }
  2763. ]
  2764. ))
  2765. characterMakers.push(() => makeCharacter(
  2766. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2767. {
  2768. angled: {
  2769. height: math.unit(4, "meter"),
  2770. weight: math.unit(150, "kg"),
  2771. name: "Angled",
  2772. image: {
  2773. source: "./media/characters/talan/angled-sfw.svg",
  2774. bottom: 29 / 3734
  2775. }
  2776. },
  2777. angledNsfw: {
  2778. height: math.unit(4, "meter"),
  2779. weight: math.unit(150, "kg"),
  2780. name: "Angled (NSFW)",
  2781. image: {
  2782. source: "./media/characters/talan/angled-nsfw.svg",
  2783. bottom: 29 / 3734
  2784. }
  2785. },
  2786. frontNsfw: {
  2787. height: math.unit(4, "meter"),
  2788. weight: math.unit(150, "kg"),
  2789. name: "Front (NSFW)",
  2790. image: {
  2791. source: "./media/characters/talan/front-nsfw.svg",
  2792. bottom: 29 / 3734
  2793. }
  2794. },
  2795. sideNsfw: {
  2796. height: math.unit(4, "meter"),
  2797. weight: math.unit(150, "kg"),
  2798. name: "Side (NSFW)",
  2799. image: {
  2800. source: "./media/characters/talan/side-nsfw.svg",
  2801. bottom: 29 / 3734
  2802. }
  2803. },
  2804. back: {
  2805. height: math.unit(4, "meter"),
  2806. weight: math.unit(150, "kg"),
  2807. name: "Back",
  2808. image: {
  2809. source: "./media/characters/talan/back.svg"
  2810. }
  2811. },
  2812. dickBottom: {
  2813. height: math.unit(0.621, "meter"),
  2814. name: "Dick (Bottom)",
  2815. image: {
  2816. source: "./media/characters/talan/dick-bottom.svg"
  2817. }
  2818. },
  2819. dickTop: {
  2820. height: math.unit(0.621, "meter"),
  2821. name: "Dick (Top)",
  2822. image: {
  2823. source: "./media/characters/talan/dick-top.svg"
  2824. }
  2825. },
  2826. dickSide: {
  2827. height: math.unit(0.305, "meter"),
  2828. name: "Dick (Side)",
  2829. image: {
  2830. source: "./media/characters/talan/dick-side.svg"
  2831. }
  2832. },
  2833. dickFront: {
  2834. height: math.unit(0.305, "meter"),
  2835. name: "Dick (Front)",
  2836. image: {
  2837. source: "./media/characters/talan/dick-front.svg"
  2838. }
  2839. },
  2840. },
  2841. [
  2842. {
  2843. name: "Normal",
  2844. height: math.unit(4, "meters")
  2845. },
  2846. {
  2847. name: "Macro",
  2848. height: math.unit(100, "meters")
  2849. },
  2850. {
  2851. name: "Megamacro",
  2852. height: math.unit(2, "miles"),
  2853. default: true
  2854. },
  2855. {
  2856. name: "Gigamacro",
  2857. height: math.unit(5000, "miles")
  2858. },
  2859. {
  2860. name: "Teramacro",
  2861. height: math.unit(100, "parsecs")
  2862. }
  2863. ]
  2864. ))
  2865. characterMakers.push(() => makeCharacter(
  2866. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2867. {
  2868. front: {
  2869. height: math.unit(2, "meter"),
  2870. weight: math.unit(90, "kg"),
  2871. name: "Front",
  2872. image: {
  2873. source: "./media/characters/gael'rathus/front.svg"
  2874. }
  2875. },
  2876. frontAlt: {
  2877. height: math.unit(2, "meter"),
  2878. weight: math.unit(90, "kg"),
  2879. name: "Front (alt)",
  2880. image: {
  2881. source: "./media/characters/gael'rathus/front-alt.svg"
  2882. }
  2883. },
  2884. frontAlt2: {
  2885. height: math.unit(2, "meter"),
  2886. weight: math.unit(90, "kg"),
  2887. name: "Front (alt 2)",
  2888. image: {
  2889. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2890. }
  2891. }
  2892. },
  2893. [
  2894. {
  2895. name: "Normal",
  2896. height: math.unit(9, "feet"),
  2897. default: true
  2898. },
  2899. {
  2900. name: "Large",
  2901. height: math.unit(25, "feet")
  2902. },
  2903. {
  2904. name: "Macro",
  2905. height: math.unit(0.25, "miles")
  2906. },
  2907. {
  2908. name: "Megamacro",
  2909. height: math.unit(10, "miles")
  2910. }
  2911. ]
  2912. ))
  2913. characterMakers.push(() => makeCharacter(
  2914. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2915. {
  2916. side: {
  2917. height: math.unit(2, "meter"),
  2918. weight: math.unit(140, "kg"),
  2919. name: "Side",
  2920. image: {
  2921. source: "./media/characters/sosha/side.svg",
  2922. bottom: 0.042
  2923. }
  2924. },
  2925. },
  2926. [
  2927. {
  2928. name: "Normal",
  2929. height: math.unit(12, "feet"),
  2930. default: true
  2931. }
  2932. ]
  2933. ))
  2934. characterMakers.push(() => makeCharacter(
  2935. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2936. {
  2937. side: {
  2938. height: math.unit(5 + 5 / 12, "feet"),
  2939. weight: math.unit(170, "kg"),
  2940. name: "Side",
  2941. image: {
  2942. source: "./media/characters/runnola/side.svg",
  2943. extra: 741 / 448,
  2944. bottom: 0.05
  2945. }
  2946. },
  2947. },
  2948. [
  2949. {
  2950. name: "Small",
  2951. height: math.unit(3, "feet")
  2952. },
  2953. {
  2954. name: "Normal",
  2955. height: math.unit(5 + 5 / 12, "feet"),
  2956. default: true
  2957. },
  2958. {
  2959. name: "Big",
  2960. height: math.unit(10, "feet")
  2961. },
  2962. ]
  2963. ))
  2964. characterMakers.push(() => makeCharacter(
  2965. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2966. {
  2967. front: {
  2968. height: math.unit(2, "meter"),
  2969. weight: math.unit(50, "kg"),
  2970. name: "Front",
  2971. image: {
  2972. source: "./media/characters/kurribird/front.svg",
  2973. bottom: 0.015
  2974. }
  2975. },
  2976. frontAlt: {
  2977. height: math.unit(1.5, "meter"),
  2978. weight: math.unit(50, "kg"),
  2979. name: "Front (Alt)",
  2980. image: {
  2981. source: "./media/characters/kurribird/front-alt.svg",
  2982. extra: 1.45
  2983. }
  2984. },
  2985. },
  2986. [
  2987. {
  2988. name: "Normal",
  2989. height: math.unit(7, "feet")
  2990. },
  2991. {
  2992. name: "Big",
  2993. height: math.unit(12, "feet"),
  2994. default: true
  2995. },
  2996. {
  2997. name: "Macro",
  2998. height: math.unit(1500, "feet")
  2999. },
  3000. {
  3001. name: "Megamacro",
  3002. height: math.unit(2, "miles")
  3003. }
  3004. ]
  3005. ))
  3006. characterMakers.push(() => makeCharacter(
  3007. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  3008. {
  3009. front: {
  3010. height: math.unit(2, "meter"),
  3011. weight: math.unit(80, "kg"),
  3012. name: "Front",
  3013. image: {
  3014. source: "./media/characters/elbial/front.svg",
  3015. extra: 1643 / 1556,
  3016. bottom: 60.2 / 1696
  3017. }
  3018. },
  3019. side: {
  3020. height: math.unit(2, "meter"),
  3021. weight: math.unit(80, "kg"),
  3022. name: "Side",
  3023. image: {
  3024. source: "./media/characters/elbial/side.svg",
  3025. extra: 1630 / 1565,
  3026. bottom: 71.5 / 1697
  3027. }
  3028. },
  3029. back: {
  3030. height: math.unit(2, "meter"),
  3031. weight: math.unit(80, "kg"),
  3032. name: "Back",
  3033. image: {
  3034. source: "./media/characters/elbial/back.svg",
  3035. extra: 1668 / 1595,
  3036. bottom: 5.6 / 1672
  3037. }
  3038. },
  3039. frontDressed: {
  3040. height: math.unit(2, "meter"),
  3041. weight: math.unit(80, "kg"),
  3042. name: "Front (Dressed)",
  3043. image: {
  3044. source: "./media/characters/elbial/front-dressed.svg",
  3045. extra: 1653 / 1584,
  3046. bottom: 57 / 1708
  3047. }
  3048. },
  3049. genitals: {
  3050. height: math.unit(2 / 3.367, "meter"),
  3051. name: "Genitals",
  3052. image: {
  3053. source: "./media/characters/elbial/genitals.svg"
  3054. }
  3055. },
  3056. },
  3057. [
  3058. {
  3059. name: "Large",
  3060. height: math.unit(100, "feet")
  3061. },
  3062. {
  3063. name: "Macro",
  3064. height: math.unit(500, "feet"),
  3065. default: true
  3066. },
  3067. {
  3068. name: "Megamacro",
  3069. height: math.unit(10, "miles")
  3070. },
  3071. {
  3072. name: "Gigamacro",
  3073. height: math.unit(25000, "miles")
  3074. },
  3075. {
  3076. name: "Full-Size",
  3077. height: math.unit(8000000, "gigaparsecs")
  3078. }
  3079. ]
  3080. ))
  3081. characterMakers.push(() => makeCharacter(
  3082. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3083. {
  3084. front: {
  3085. height: math.unit(2, "meter"),
  3086. weight: math.unit(60, "kg"),
  3087. name: "Front",
  3088. image: {
  3089. source: "./media/characters/noah/front.svg"
  3090. }
  3091. },
  3092. talons: {
  3093. height: math.unit(0.315, "meter"),
  3094. name: "Talons",
  3095. image: {
  3096. source: "./media/characters/noah/talons.svg"
  3097. }
  3098. }
  3099. },
  3100. [
  3101. {
  3102. name: "Large",
  3103. height: math.unit(50, "feet")
  3104. },
  3105. {
  3106. name: "Macro",
  3107. height: math.unit(750, "feet"),
  3108. default: true
  3109. },
  3110. {
  3111. name: "Megamacro",
  3112. height: math.unit(50, "miles")
  3113. },
  3114. {
  3115. name: "Gigamacro",
  3116. height: math.unit(100000, "miles")
  3117. },
  3118. {
  3119. name: "Full-Size",
  3120. height: math.unit(3000000000, "miles")
  3121. }
  3122. ]
  3123. ))
  3124. characterMakers.push(() => makeCharacter(
  3125. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3126. {
  3127. front: {
  3128. height: math.unit(2, "meter"),
  3129. weight: math.unit(80, "kg"),
  3130. name: "Front",
  3131. image: {
  3132. source: "./media/characters/natalya/front.svg"
  3133. }
  3134. },
  3135. back: {
  3136. height: math.unit(2, "meter"),
  3137. weight: math.unit(80, "kg"),
  3138. name: "Back",
  3139. image: {
  3140. source: "./media/characters/natalya/back.svg"
  3141. }
  3142. }
  3143. },
  3144. [
  3145. {
  3146. name: "Normal",
  3147. height: math.unit(150, "feet"),
  3148. default: true
  3149. },
  3150. {
  3151. name: "Megamacro",
  3152. height: math.unit(5, "miles")
  3153. },
  3154. {
  3155. name: "Full-Size",
  3156. height: math.unit(600, "kiloparsecs")
  3157. }
  3158. ]
  3159. ))
  3160. characterMakers.push(() => makeCharacter(
  3161. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3162. {
  3163. front: {
  3164. height: math.unit(2, "meter"),
  3165. weight: math.unit(50, "kg"),
  3166. name: "Front",
  3167. image: {
  3168. source: "./media/characters/erestrebah/front.svg",
  3169. extra: 208 / 193,
  3170. bottom: 0.055
  3171. }
  3172. },
  3173. back: {
  3174. height: math.unit(2, "meter"),
  3175. weight: math.unit(50, "kg"),
  3176. name: "Back",
  3177. image: {
  3178. source: "./media/characters/erestrebah/back.svg",
  3179. extra: 1.3
  3180. }
  3181. }
  3182. },
  3183. [
  3184. {
  3185. name: "Normal",
  3186. height: math.unit(10, "feet")
  3187. },
  3188. {
  3189. name: "Large",
  3190. height: math.unit(50, "feet"),
  3191. default: true
  3192. },
  3193. {
  3194. name: "Macro",
  3195. height: math.unit(300, "feet")
  3196. },
  3197. {
  3198. name: "Macro+",
  3199. height: math.unit(750, "feet")
  3200. },
  3201. {
  3202. name: "Megamacro",
  3203. height: math.unit(3, "miles")
  3204. }
  3205. ]
  3206. ))
  3207. characterMakers.push(() => makeCharacter(
  3208. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3209. {
  3210. front: {
  3211. height: math.unit(2, "meter"),
  3212. weight: math.unit(80, "kg"),
  3213. name: "Front",
  3214. image: {
  3215. source: "./media/characters/jennifer/front.svg",
  3216. bottom: 0.11,
  3217. extra: 1.16
  3218. }
  3219. },
  3220. frontAlt: {
  3221. height: math.unit(2, "meter"),
  3222. weight: math.unit(80, "kg"),
  3223. name: "Front (Alt)",
  3224. image: {
  3225. source: "./media/characters/jennifer/front-alt.svg"
  3226. }
  3227. }
  3228. },
  3229. [
  3230. {
  3231. name: "Canon Height",
  3232. height: math.unit(120, "feet"),
  3233. default: true
  3234. },
  3235. {
  3236. name: "Macro+",
  3237. height: math.unit(300, "feet")
  3238. },
  3239. {
  3240. name: "Megamacro",
  3241. height: math.unit(20000, "feet")
  3242. }
  3243. ]
  3244. ))
  3245. characterMakers.push(() => makeCharacter(
  3246. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3247. {
  3248. front: {
  3249. height: math.unit(2, "meter"),
  3250. weight: math.unit(50, "kg"),
  3251. name: "Front",
  3252. image: {
  3253. source: "./media/characters/kalista/front.svg",
  3254. extra: 1947 / 1700,
  3255. bottom: 76.6 / 1412.98
  3256. }
  3257. },
  3258. back: {
  3259. height: math.unit(2, "meter"),
  3260. weight: math.unit(50, "kg"),
  3261. name: "Back",
  3262. image: {
  3263. source: "./media/characters/kalista/back.svg",
  3264. extra: 1366 / 1156,
  3265. bottom: 33.9 / 1362.78
  3266. }
  3267. }
  3268. },
  3269. [
  3270. {
  3271. name: "Uncomfortably Small",
  3272. height: math.unit(10, "feet")
  3273. },
  3274. {
  3275. name: "Small",
  3276. height: math.unit(30, "feet")
  3277. },
  3278. {
  3279. name: "Macro",
  3280. height: math.unit(100, "feet"),
  3281. default: true
  3282. },
  3283. {
  3284. name: "Macro+",
  3285. height: math.unit(2000, "feet")
  3286. },
  3287. {
  3288. name: "True Form",
  3289. height: math.unit(8924, "miles")
  3290. }
  3291. ]
  3292. ))
  3293. characterMakers.push(() => makeCharacter(
  3294. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3295. {
  3296. front: {
  3297. height: math.unit(2, "meter"),
  3298. weight: math.unit(120, "kg"),
  3299. name: "Front",
  3300. image: {
  3301. source: "./media/characters/ggv/front.svg"
  3302. }
  3303. },
  3304. side: {
  3305. height: math.unit(2, "meter"),
  3306. weight: math.unit(120, "kg"),
  3307. name: "Side",
  3308. image: {
  3309. source: "./media/characters/ggv/side.svg"
  3310. }
  3311. }
  3312. },
  3313. [
  3314. {
  3315. name: "Extremely Puny",
  3316. height: math.unit(9 + 5 / 12, "feet")
  3317. },
  3318. {
  3319. name: "Horribly Small",
  3320. height: math.unit(47.7, "miles"),
  3321. default: true
  3322. },
  3323. {
  3324. name: "Reasonably Sized",
  3325. height: math.unit(25000, "parsecs")
  3326. },
  3327. {
  3328. name: "Slightly Uncompressed",
  3329. height: math.unit(7.77e31, "parsecs")
  3330. },
  3331. {
  3332. name: "Omniversal",
  3333. height: math.unit(1e300, "meters")
  3334. },
  3335. ]
  3336. ))
  3337. characterMakers.push(() => makeCharacter(
  3338. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3339. {
  3340. front: {
  3341. height: math.unit(2, "meter"),
  3342. weight: math.unit(75, "lb"),
  3343. name: "Front",
  3344. image: {
  3345. source: "./media/characters/napalm/front.svg"
  3346. }
  3347. },
  3348. back: {
  3349. height: math.unit(2, "meter"),
  3350. weight: math.unit(75, "lb"),
  3351. name: "Back",
  3352. image: {
  3353. source: "./media/characters/napalm/back.svg"
  3354. }
  3355. }
  3356. },
  3357. [
  3358. {
  3359. name: "Standard",
  3360. height: math.unit(55, "feet"),
  3361. default: true
  3362. }
  3363. ]
  3364. ))
  3365. characterMakers.push(() => makeCharacter(
  3366. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3367. {
  3368. front: {
  3369. height: math.unit(7 + 5 / 6, "feet"),
  3370. weight: math.unit(325, "lb"),
  3371. name: "Front",
  3372. image: {
  3373. source: "./media/characters/asana/front.svg",
  3374. extra: 1133 / 1060,
  3375. bottom: 15.2 / 1148.6
  3376. }
  3377. },
  3378. back: {
  3379. height: math.unit(7 + 5 / 6, "feet"),
  3380. weight: math.unit(325, "lb"),
  3381. name: "Back",
  3382. image: {
  3383. source: "./media/characters/asana/back.svg",
  3384. extra: 1114 / 1043,
  3385. bottom: 5 / 1120
  3386. }
  3387. },
  3388. dressedDark: {
  3389. height: math.unit(7 + 5 / 6, "feet"),
  3390. weight: math.unit(325, "lb"),
  3391. name: "Dressed (Dark)",
  3392. image: {
  3393. source: "./media/characters/asana/dressed-dark.svg",
  3394. extra: 1133 / 1060,
  3395. bottom: 15.2 / 1148.6
  3396. }
  3397. },
  3398. dressedLight: {
  3399. height: math.unit(7 + 5 / 6, "feet"),
  3400. weight: math.unit(325, "lb"),
  3401. name: "Dressed (Light)",
  3402. image: {
  3403. source: "./media/characters/asana/dressed-light.svg",
  3404. extra: 1133 / 1060,
  3405. bottom: 15.2 / 1148.6
  3406. }
  3407. },
  3408. },
  3409. [
  3410. {
  3411. name: "Standard",
  3412. height: math.unit(7 + 5 / 6, "feet"),
  3413. default: true
  3414. },
  3415. {
  3416. name: "Large",
  3417. height: math.unit(10, "meters")
  3418. },
  3419. {
  3420. name: "Macro",
  3421. height: math.unit(2500, "meters")
  3422. },
  3423. {
  3424. name: "Megamacro",
  3425. height: math.unit(5e6, "meters")
  3426. },
  3427. {
  3428. name: "Examacro",
  3429. height: math.unit(5e12, "lightyears")
  3430. },
  3431. {
  3432. name: "Max Size",
  3433. height: math.unit(1e31, "lightyears")
  3434. }
  3435. ]
  3436. ))
  3437. characterMakers.push(() => makeCharacter(
  3438. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3439. {
  3440. front: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(60, "kg"),
  3443. name: "Front",
  3444. image: {
  3445. source: "./media/characters/ebony/front.svg",
  3446. bottom: 0.03,
  3447. extra: 1045 / 810 + 0.03
  3448. }
  3449. },
  3450. side: {
  3451. height: math.unit(2, "meter"),
  3452. weight: math.unit(60, "kg"),
  3453. name: "Side",
  3454. image: {
  3455. source: "./media/characters/ebony/side.svg",
  3456. bottom: 0.03,
  3457. extra: 1045 / 810 + 0.03
  3458. }
  3459. },
  3460. back: {
  3461. height: math.unit(2, "meter"),
  3462. weight: math.unit(60, "kg"),
  3463. name: "Back",
  3464. image: {
  3465. source: "./media/characters/ebony/back.svg",
  3466. bottom: 0.01,
  3467. extra: 1045 / 810 + 0.01
  3468. }
  3469. },
  3470. },
  3471. [
  3472. // TODO check why I did this lol
  3473. {
  3474. name: "Standard",
  3475. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3476. default: true
  3477. },
  3478. {
  3479. name: "Macro",
  3480. height: math.unit(200, "feet")
  3481. },
  3482. {
  3483. name: "Gigamacro",
  3484. height: math.unit(13000, "km")
  3485. }
  3486. ]
  3487. ))
  3488. characterMakers.push(() => makeCharacter(
  3489. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3490. {
  3491. front: {
  3492. height: math.unit(6, "feet"),
  3493. weight: math.unit(175, "lb"),
  3494. name: "Front",
  3495. image: {
  3496. source: "./media/characters/mountain/front.svg",
  3497. extra: 972 / 955,
  3498. bottom: 64 / 1036.6
  3499. }
  3500. },
  3501. back: {
  3502. height: math.unit(6, "feet"),
  3503. weight: math.unit(175, "lb"),
  3504. name: "Back",
  3505. image: {
  3506. source: "./media/characters/mountain/back.svg",
  3507. extra: 970 / 950,
  3508. bottom: 28.25 / 999
  3509. }
  3510. },
  3511. },
  3512. [
  3513. {
  3514. name: "Large",
  3515. height: math.unit(20, "meters")
  3516. },
  3517. {
  3518. name: "Macro",
  3519. height: math.unit(300, "meters")
  3520. },
  3521. {
  3522. name: "Gigamacro",
  3523. height: math.unit(10000, "km"),
  3524. default: true
  3525. },
  3526. {
  3527. name: "Examacro",
  3528. height: math.unit(10e9, "lightyears")
  3529. }
  3530. ]
  3531. ))
  3532. characterMakers.push(() => makeCharacter(
  3533. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3534. {
  3535. front: {
  3536. height: math.unit(8, "feet"),
  3537. weight: math.unit(500, "lb"),
  3538. name: "Front",
  3539. image: {
  3540. source: "./media/characters/rick/front.svg"
  3541. }
  3542. }
  3543. },
  3544. [
  3545. {
  3546. name: "Normal",
  3547. height: math.unit(8, "feet"),
  3548. default: true
  3549. },
  3550. {
  3551. name: "Macro",
  3552. height: math.unit(5, "km")
  3553. }
  3554. ]
  3555. ))
  3556. characterMakers.push(() => makeCharacter(
  3557. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3558. {
  3559. front: {
  3560. height: math.unit(8, "feet"),
  3561. weight: math.unit(120, "lb"),
  3562. name: "Front",
  3563. image: {
  3564. source: "./media/characters/ona/front.svg"
  3565. }
  3566. },
  3567. frontAlt: {
  3568. height: math.unit(8, "feet"),
  3569. weight: math.unit(120, "lb"),
  3570. name: "Front (Alt)",
  3571. image: {
  3572. source: "./media/characters/ona/front-alt.svg"
  3573. }
  3574. },
  3575. back: {
  3576. height: math.unit(8, "feet"),
  3577. weight: math.unit(120, "lb"),
  3578. name: "Back",
  3579. image: {
  3580. source: "./media/characters/ona/back.svg"
  3581. }
  3582. },
  3583. foot: {
  3584. height: math.unit(1.1, "feet"),
  3585. name: "Foot",
  3586. image: {
  3587. source: "./media/characters/ona/foot.svg"
  3588. }
  3589. }
  3590. },
  3591. [
  3592. {
  3593. name: "Megamacro",
  3594. height: math.unit(70, "km"),
  3595. default: true
  3596. },
  3597. {
  3598. name: "Gigamacro",
  3599. height: math.unit(681818, "miles")
  3600. },
  3601. {
  3602. name: "Examacro",
  3603. height: math.unit(3800000, "lightyears")
  3604. },
  3605. ]
  3606. ))
  3607. characterMakers.push(() => makeCharacter(
  3608. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3609. {
  3610. front: {
  3611. height: math.unit(12, "feet"),
  3612. weight: math.unit(3000, "lb"),
  3613. name: "Front",
  3614. image: {
  3615. source: "./media/characters/mech/front.svg",
  3616. extra: 2900 / 2770,
  3617. bottom: 110 / 3010
  3618. }
  3619. },
  3620. back: {
  3621. height: math.unit(12, "feet"),
  3622. weight: math.unit(3000, "lb"),
  3623. name: "Back",
  3624. image: {
  3625. source: "./media/characters/mech/back.svg",
  3626. extra: 3011 / 2890,
  3627. bottom: 94 / 3105
  3628. }
  3629. },
  3630. maw: {
  3631. height: math.unit(3.07, "feet"),
  3632. name: "Maw",
  3633. image: {
  3634. source: "./media/characters/mech/maw.svg"
  3635. }
  3636. },
  3637. head: {
  3638. height: math.unit(2.82, "feet"),
  3639. name: "Head",
  3640. image: {
  3641. source: "./media/characters/mech/head.svg"
  3642. }
  3643. },
  3644. dick: {
  3645. height: math.unit(1.43, "feet"),
  3646. name: "Dick",
  3647. image: {
  3648. source: "./media/characters/mech/dick.svg"
  3649. }
  3650. },
  3651. },
  3652. [
  3653. {
  3654. name: "Normal",
  3655. height: math.unit(12, "feet")
  3656. },
  3657. {
  3658. name: "Macro",
  3659. height: math.unit(300, "feet"),
  3660. default: true
  3661. },
  3662. {
  3663. name: "Macro+",
  3664. height: math.unit(1500, "feet")
  3665. },
  3666. ]
  3667. ))
  3668. characterMakers.push(() => makeCharacter(
  3669. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3670. {
  3671. front: {
  3672. height: math.unit(1.3, "meter"),
  3673. weight: math.unit(30, "kg"),
  3674. name: "Front",
  3675. image: {
  3676. source: "./media/characters/gregory/front.svg",
  3677. }
  3678. }
  3679. },
  3680. [
  3681. {
  3682. name: "Normal",
  3683. height: math.unit(1.3, "meter"),
  3684. default: true
  3685. },
  3686. {
  3687. name: "Macro",
  3688. height: math.unit(20, "meter")
  3689. }
  3690. ]
  3691. ))
  3692. characterMakers.push(() => makeCharacter(
  3693. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3694. {
  3695. front: {
  3696. height: math.unit(2.8, "meter"),
  3697. weight: math.unit(200, "kg"),
  3698. name: "Front",
  3699. image: {
  3700. source: "./media/characters/elory/front.svg",
  3701. }
  3702. }
  3703. },
  3704. [
  3705. {
  3706. name: "Normal",
  3707. height: math.unit(2.8, "meter"),
  3708. default: true
  3709. },
  3710. {
  3711. name: "Macro",
  3712. height: math.unit(38, "meter")
  3713. }
  3714. ]
  3715. ))
  3716. characterMakers.push(() => makeCharacter(
  3717. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3718. {
  3719. front: {
  3720. height: math.unit(470, "feet"),
  3721. weight: math.unit(924, "tons"),
  3722. name: "Front",
  3723. image: {
  3724. source: "./media/characters/angelpatamon/front.svg",
  3725. }
  3726. }
  3727. },
  3728. [
  3729. {
  3730. name: "Normal",
  3731. height: math.unit(470, "feet"),
  3732. default: true
  3733. },
  3734. {
  3735. name: "Deity Size I",
  3736. height: math.unit(28651.2, "km")
  3737. },
  3738. {
  3739. name: "Deity Size II",
  3740. height: math.unit(171907.2, "km")
  3741. }
  3742. ]
  3743. ))
  3744. characterMakers.push(() => makeCharacter(
  3745. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3746. {
  3747. side: {
  3748. height: math.unit(7.2, "meter"),
  3749. weight: math.unit(8.2, "tons"),
  3750. name: "Side",
  3751. image: {
  3752. source: "./media/characters/cryae/side.svg",
  3753. extra: 3500 / 1500
  3754. }
  3755. }
  3756. },
  3757. [
  3758. {
  3759. name: "Normal",
  3760. height: math.unit(7.2, "meter"),
  3761. default: true
  3762. }
  3763. ]
  3764. ))
  3765. characterMakers.push(() => makeCharacter(
  3766. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3767. {
  3768. front: {
  3769. height: math.unit(6, "feet"),
  3770. weight: math.unit(175, "lb"),
  3771. name: "Front",
  3772. image: {
  3773. source: "./media/characters/xera/front.svg",
  3774. extra: 2377 / 1972,
  3775. bottom: 75.5 / 2452
  3776. }
  3777. },
  3778. side: {
  3779. height: math.unit(6, "feet"),
  3780. weight: math.unit(175, "lb"),
  3781. name: "Side",
  3782. image: {
  3783. source: "./media/characters/xera/side.svg",
  3784. extra: 2345 / 2019,
  3785. bottom: 39.7 / 2384
  3786. }
  3787. },
  3788. back: {
  3789. height: math.unit(6, "feet"),
  3790. weight: math.unit(175, "lb"),
  3791. name: "Back",
  3792. image: {
  3793. source: "./media/characters/xera/back.svg",
  3794. extra: 2095 / 1984,
  3795. bottom: 67 / 2166
  3796. }
  3797. },
  3798. },
  3799. [
  3800. {
  3801. name: "Small",
  3802. height: math.unit(10, "feet")
  3803. },
  3804. {
  3805. name: "Macro",
  3806. height: math.unit(500, "meters"),
  3807. default: true
  3808. },
  3809. {
  3810. name: "Macro+",
  3811. height: math.unit(10, "km")
  3812. },
  3813. {
  3814. name: "Gigamacro",
  3815. height: math.unit(25000, "km")
  3816. },
  3817. {
  3818. name: "Teramacro",
  3819. height: math.unit(3e6, "km")
  3820. }
  3821. ]
  3822. ))
  3823. characterMakers.push(() => makeCharacter(
  3824. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3825. {
  3826. front: {
  3827. height: math.unit(6, "feet"),
  3828. weight: math.unit(175, "lb"),
  3829. name: "Front",
  3830. image: {
  3831. source: "./media/characters/nebula/front.svg",
  3832. extra: 2566 / 2362,
  3833. bottom: 81 / 2644
  3834. }
  3835. }
  3836. },
  3837. [
  3838. {
  3839. name: "Small",
  3840. height: math.unit(4.5, "meters")
  3841. },
  3842. {
  3843. name: "Macro",
  3844. height: math.unit(1500, "meters"),
  3845. default: true
  3846. },
  3847. {
  3848. name: "Megamacro",
  3849. height: math.unit(150, "km")
  3850. },
  3851. {
  3852. name: "Gigamacro",
  3853. height: math.unit(27000, "km")
  3854. }
  3855. ]
  3856. ))
  3857. characterMakers.push(() => makeCharacter(
  3858. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3859. {
  3860. front: {
  3861. height: math.unit(6, "feet"),
  3862. weight: math.unit(225, "lb"),
  3863. name: "Front",
  3864. image: {
  3865. source: "./media/characters/abysgar/front.svg"
  3866. }
  3867. }
  3868. },
  3869. [
  3870. {
  3871. name: "Small",
  3872. height: math.unit(4.5, "meters")
  3873. },
  3874. {
  3875. name: "Macro",
  3876. height: math.unit(1250, "meters"),
  3877. default: true
  3878. },
  3879. {
  3880. name: "Megamacro",
  3881. height: math.unit(125, "km")
  3882. },
  3883. {
  3884. name: "Gigamacro",
  3885. height: math.unit(26000, "km")
  3886. }
  3887. ]
  3888. ))
  3889. characterMakers.push(() => makeCharacter(
  3890. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3891. {
  3892. front: {
  3893. height: math.unit(6, "feet"),
  3894. weight: math.unit(180, "lb"),
  3895. name: "Front",
  3896. image: {
  3897. source: "./media/characters/yakuz/front.svg"
  3898. }
  3899. }
  3900. },
  3901. [
  3902. {
  3903. name: "Small",
  3904. height: math.unit(5, "meters")
  3905. },
  3906. {
  3907. name: "Macro",
  3908. height: math.unit(1500, "meters"),
  3909. default: true
  3910. },
  3911. {
  3912. name: "Megamacro",
  3913. height: math.unit(200, "km")
  3914. },
  3915. {
  3916. name: "Gigamacro",
  3917. height: math.unit(100000, "km")
  3918. }
  3919. ]
  3920. ))
  3921. characterMakers.push(() => makeCharacter(
  3922. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3923. {
  3924. front: {
  3925. height: math.unit(6, "feet"),
  3926. weight: math.unit(175, "lb"),
  3927. name: "Front",
  3928. image: {
  3929. source: "./media/characters/mirova/front.svg",
  3930. extra: 3334 / 3071,
  3931. bottom: 42 / 3375.6
  3932. }
  3933. }
  3934. },
  3935. [
  3936. {
  3937. name: "Small",
  3938. height: math.unit(5, "meters")
  3939. },
  3940. {
  3941. name: "Macro",
  3942. height: math.unit(900, "meters"),
  3943. default: true
  3944. },
  3945. {
  3946. name: "Megamacro",
  3947. height: math.unit(135, "km")
  3948. },
  3949. {
  3950. name: "Gigamacro",
  3951. height: math.unit(20000, "km")
  3952. }
  3953. ]
  3954. ))
  3955. characterMakers.push(() => makeCharacter(
  3956. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3957. {
  3958. side: {
  3959. height: math.unit(28.35, "feet"),
  3960. weight: math.unit(99.75, "tons"),
  3961. name: "Side",
  3962. image: {
  3963. source: "./media/characters/asana-mech/side.svg",
  3964. extra: 923 / 699,
  3965. bottom: 50 / 975
  3966. }
  3967. },
  3968. chaingun: {
  3969. height: math.unit(7, "feet"),
  3970. weight: math.unit(2400, "lb"),
  3971. name: "Chaingun",
  3972. image: {
  3973. source: "./media/characters/asana-mech/chaingun.svg"
  3974. }
  3975. },
  3976. laser: {
  3977. height: math.unit(7.12, "feet"),
  3978. weight: math.unit(2000, "lb"),
  3979. name: "Laser",
  3980. image: {
  3981. source: "./media/characters/asana-mech/laser.svg"
  3982. }
  3983. },
  3984. },
  3985. [
  3986. {
  3987. name: "Normal",
  3988. height: math.unit(28.35, "feet"),
  3989. default: true
  3990. },
  3991. {
  3992. name: "Macro",
  3993. height: math.unit(2500, "feet")
  3994. },
  3995. {
  3996. name: "Megamacro",
  3997. height: math.unit(25, "miles")
  3998. },
  3999. {
  4000. name: "Examacro",
  4001. height: math.unit(6e8, "lightyears")
  4002. },
  4003. ]
  4004. ))
  4005. characterMakers.push(() => makeCharacter(
  4006. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  4007. {
  4008. front: {
  4009. height: math.unit(5, "meters"),
  4010. weight: math.unit(1000, "kg"),
  4011. name: "Front",
  4012. image: {
  4013. source: "./media/characters/asche/front.svg",
  4014. extra: 1258 / 1190,
  4015. bottom: 47 / 1305
  4016. }
  4017. },
  4018. frontUnderwear: {
  4019. height: math.unit(5, "meters"),
  4020. weight: math.unit(1000, "kg"),
  4021. name: "Front (Underwear)",
  4022. image: {
  4023. source: "./media/characters/asche/front-underwear.svg",
  4024. extra: 1258 / 1190,
  4025. bottom: 47 / 1305
  4026. }
  4027. },
  4028. frontDressed: {
  4029. height: math.unit(5, "meters"),
  4030. weight: math.unit(1000, "kg"),
  4031. name: "Front (Dressed)",
  4032. image: {
  4033. source: "./media/characters/asche/front-dressed.svg",
  4034. extra: 1258 / 1190,
  4035. bottom: 47 / 1305
  4036. }
  4037. },
  4038. frontArmor: {
  4039. height: math.unit(5, "meters"),
  4040. weight: math.unit(1000, "kg"),
  4041. name: "Front (Armored)",
  4042. image: {
  4043. source: "./media/characters/asche/front-armored.svg",
  4044. extra: 1374 / 1308,
  4045. bottom: 23 / 1397
  4046. }
  4047. },
  4048. mp724: {
  4049. height: math.unit(0.96, "meters"),
  4050. weight: math.unit(38, "kg"),
  4051. name: "H&K MP724",
  4052. image: {
  4053. source: "./media/characters/asche/h&k-mp724.svg"
  4054. }
  4055. },
  4056. side: {
  4057. height: math.unit(5, "meters"),
  4058. weight: math.unit(1000, "kg"),
  4059. name: "Side",
  4060. image: {
  4061. source: "./media/characters/asche/side.svg",
  4062. extra: 1717 / 1609,
  4063. bottom: 0.005
  4064. }
  4065. },
  4066. back: {
  4067. height: math.unit(5, "meters"),
  4068. weight: math.unit(1000, "kg"),
  4069. name: "Back",
  4070. image: {
  4071. source: "./media/characters/asche/back.svg",
  4072. extra: 1570 / 1501
  4073. }
  4074. },
  4075. },
  4076. [
  4077. {
  4078. name: "DEFCON 5",
  4079. height: math.unit(5, "meters")
  4080. },
  4081. {
  4082. name: "DEFCON 4",
  4083. height: math.unit(500, "meters"),
  4084. default: true
  4085. },
  4086. {
  4087. name: "DEFCON 3",
  4088. height: math.unit(5, "km")
  4089. },
  4090. {
  4091. name: "DEFCON 2",
  4092. height: math.unit(500, "km")
  4093. },
  4094. {
  4095. name: "DEFCON 1",
  4096. height: math.unit(500000, "km")
  4097. },
  4098. {
  4099. name: "DEFCON 0",
  4100. height: math.unit(3, "gigaparsecs")
  4101. },
  4102. ]
  4103. ))
  4104. characterMakers.push(() => makeCharacter(
  4105. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4106. {
  4107. front: {
  4108. height: math.unit(2, "meters"),
  4109. weight: math.unit(76, "kg"),
  4110. name: "Front",
  4111. image: {
  4112. source: "./media/characters/gale/front.svg"
  4113. }
  4114. },
  4115. frontAlt1: {
  4116. height: math.unit(2, "meters"),
  4117. weight: math.unit(76, "kg"),
  4118. name: "Front (Alt 1)",
  4119. image: {
  4120. source: "./media/characters/gale/front-alt-1.svg"
  4121. }
  4122. },
  4123. frontAlt2: {
  4124. height: math.unit(2, "meters"),
  4125. weight: math.unit(76, "kg"),
  4126. name: "Front (Alt 2)",
  4127. image: {
  4128. source: "./media/characters/gale/front-alt-2.svg"
  4129. }
  4130. },
  4131. },
  4132. [
  4133. {
  4134. name: "Normal",
  4135. height: math.unit(7, "feet")
  4136. },
  4137. {
  4138. name: "Macro",
  4139. height: math.unit(150, "feet"),
  4140. default: true
  4141. },
  4142. {
  4143. name: "Macro+",
  4144. height: math.unit(300, "feet")
  4145. },
  4146. ]
  4147. ))
  4148. characterMakers.push(() => makeCharacter(
  4149. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4150. {
  4151. front: {
  4152. height: math.unit(2, "meters"),
  4153. weight: math.unit(76, "kg"),
  4154. name: "Front",
  4155. image: {
  4156. source: "./media/characters/draylen/front.svg"
  4157. }
  4158. }
  4159. },
  4160. [
  4161. {
  4162. name: "Macro",
  4163. height: math.unit(150, "feet"),
  4164. default: true
  4165. }
  4166. ]
  4167. ))
  4168. characterMakers.push(() => makeCharacter(
  4169. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4170. {
  4171. front: {
  4172. height: math.unit(7 + 9 / 12, "feet"),
  4173. weight: math.unit(379, "lbs"),
  4174. name: "Front",
  4175. image: {
  4176. source: "./media/characters/chez/front.svg"
  4177. }
  4178. },
  4179. side: {
  4180. height: math.unit(7 + 9 / 12, "feet"),
  4181. weight: math.unit(379, "lbs"),
  4182. name: "Side",
  4183. image: {
  4184. source: "./media/characters/chez/side.svg"
  4185. }
  4186. }
  4187. },
  4188. [
  4189. {
  4190. name: "Normal",
  4191. height: math.unit(7 + 9 / 12, "feet"),
  4192. default: true
  4193. },
  4194. {
  4195. name: "God King",
  4196. height: math.unit(9750000, "meters")
  4197. }
  4198. ]
  4199. ))
  4200. characterMakers.push(() => makeCharacter(
  4201. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4202. {
  4203. front: {
  4204. height: math.unit(6, "feet"),
  4205. weight: math.unit(275, "lbs"),
  4206. name: "Front",
  4207. image: {
  4208. source: "./media/characters/kaylum/front.svg",
  4209. bottom: 0.01,
  4210. extra: 1166 / 1031
  4211. }
  4212. },
  4213. frontWingless: {
  4214. height: math.unit(6, "feet"),
  4215. weight: math.unit(275, "lbs"),
  4216. name: "Front (Wingless)",
  4217. image: {
  4218. source: "./media/characters/kaylum/front-wingless.svg",
  4219. bottom: 0.01,
  4220. extra: 1117 / 1031
  4221. }
  4222. }
  4223. },
  4224. [
  4225. {
  4226. name: "Normal",
  4227. height: math.unit(3.05, "meters")
  4228. },
  4229. {
  4230. name: "Master",
  4231. height: math.unit(5.5, "meters")
  4232. },
  4233. {
  4234. name: "Rampage",
  4235. height: math.unit(19, "meters")
  4236. },
  4237. {
  4238. name: "Macro Lite",
  4239. height: math.unit(37, "meters")
  4240. },
  4241. {
  4242. name: "Hyper Predator",
  4243. height: math.unit(61, "meters")
  4244. },
  4245. {
  4246. name: "Macro",
  4247. height: math.unit(138, "meters"),
  4248. default: true
  4249. }
  4250. ]
  4251. ))
  4252. characterMakers.push(() => makeCharacter(
  4253. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4254. {
  4255. front: {
  4256. height: math.unit(6, "feet"),
  4257. weight: math.unit(150, "lbs"),
  4258. name: "Front",
  4259. image: {
  4260. source: "./media/characters/geta/front.svg"
  4261. }
  4262. }
  4263. },
  4264. [
  4265. {
  4266. name: "Micro",
  4267. height: math.unit(3, "inches"),
  4268. default: true
  4269. },
  4270. {
  4271. name: "Normal",
  4272. height: math.unit(5 + 5 / 12, "feet")
  4273. }
  4274. ]
  4275. ))
  4276. characterMakers.push(() => makeCharacter(
  4277. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4278. {
  4279. front: {
  4280. height: math.unit(6, "feet"),
  4281. weight: math.unit(300, "lbs"),
  4282. name: "Front",
  4283. image: {
  4284. source: "./media/characters/tyrnn/front.svg"
  4285. }
  4286. }
  4287. },
  4288. [
  4289. {
  4290. name: "Main Height",
  4291. height: math.unit(355, "feet"),
  4292. default: true
  4293. },
  4294. {
  4295. name: "Fave. Height",
  4296. height: math.unit(2400, "feet")
  4297. }
  4298. ]
  4299. ))
  4300. characterMakers.push(() => makeCharacter(
  4301. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4302. {
  4303. front: {
  4304. height: math.unit(6, "feet"),
  4305. weight: math.unit(300, "lbs"),
  4306. name: "Front",
  4307. image: {
  4308. source: "./media/characters/appledectomy/front.svg"
  4309. }
  4310. }
  4311. },
  4312. [
  4313. {
  4314. name: "Macro",
  4315. height: math.unit(2500, "feet")
  4316. },
  4317. {
  4318. name: "Megamacro",
  4319. height: math.unit(50, "miles"),
  4320. default: true
  4321. },
  4322. {
  4323. name: "Gigamacro",
  4324. height: math.unit(5000, "miles")
  4325. },
  4326. {
  4327. name: "Teramacro",
  4328. height: math.unit(250000, "miles")
  4329. },
  4330. ]
  4331. ))
  4332. characterMakers.push(() => makeCharacter(
  4333. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4334. {
  4335. front: {
  4336. height: math.unit(6, "feet"),
  4337. weight: math.unit(200, "lbs"),
  4338. name: "Front",
  4339. image: {
  4340. source: "./media/characters/vulpes/front.svg",
  4341. extra: 573 / 543,
  4342. bottom: 0.033
  4343. }
  4344. },
  4345. side: {
  4346. height: math.unit(6, "feet"),
  4347. weight: math.unit(200, "lbs"),
  4348. name: "Side",
  4349. image: {
  4350. source: "./media/characters/vulpes/side.svg",
  4351. extra: 577 / 549,
  4352. bottom: 11 / 588
  4353. }
  4354. },
  4355. back: {
  4356. height: math.unit(6, "feet"),
  4357. weight: math.unit(200, "lbs"),
  4358. name: "Back",
  4359. image: {
  4360. source: "./media/characters/vulpes/back.svg",
  4361. extra: 573 / 549,
  4362. bottom: 20 / 593
  4363. }
  4364. },
  4365. feet: {
  4366. height: math.unit(1.276, "feet"),
  4367. name: "Feet",
  4368. image: {
  4369. source: "./media/characters/vulpes/feet.svg"
  4370. }
  4371. },
  4372. maw: {
  4373. height: math.unit(1.18, "feet"),
  4374. name: "Maw",
  4375. image: {
  4376. source: "./media/characters/vulpes/maw.svg"
  4377. }
  4378. },
  4379. },
  4380. [
  4381. {
  4382. name: "Micro",
  4383. height: math.unit(2, "inches")
  4384. },
  4385. {
  4386. name: "Normal",
  4387. height: math.unit(6.3, "feet")
  4388. },
  4389. {
  4390. name: "Macro",
  4391. height: math.unit(850, "feet")
  4392. },
  4393. {
  4394. name: "Megamacro",
  4395. height: math.unit(7500, "feet"),
  4396. default: true
  4397. },
  4398. {
  4399. name: "Gigamacro",
  4400. height: math.unit(570000, "miles")
  4401. }
  4402. ]
  4403. ))
  4404. characterMakers.push(() => makeCharacter(
  4405. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4406. {
  4407. front: {
  4408. height: math.unit(6, "feet"),
  4409. weight: math.unit(210, "lbs"),
  4410. name: "Front",
  4411. image: {
  4412. source: "./media/characters/rain-fallen/front.svg"
  4413. }
  4414. },
  4415. side: {
  4416. height: math.unit(6, "feet"),
  4417. weight: math.unit(210, "lbs"),
  4418. name: "Side",
  4419. image: {
  4420. source: "./media/characters/rain-fallen/side.svg"
  4421. }
  4422. },
  4423. back: {
  4424. height: math.unit(6, "feet"),
  4425. weight: math.unit(210, "lbs"),
  4426. name: "Back",
  4427. image: {
  4428. source: "./media/characters/rain-fallen/back.svg"
  4429. }
  4430. },
  4431. feral: {
  4432. height: math.unit(9, "feet"),
  4433. weight: math.unit(700, "lbs"),
  4434. name: "Feral",
  4435. image: {
  4436. source: "./media/characters/rain-fallen/feral.svg"
  4437. }
  4438. },
  4439. },
  4440. [
  4441. {
  4442. name: "Meddling with Mortals",
  4443. height: math.unit(8 + 8/12, "feet")
  4444. },
  4445. {
  4446. name: "Normal",
  4447. height: math.unit(5, "meter")
  4448. },
  4449. {
  4450. name: "Macro",
  4451. height: math.unit(150, "meter"),
  4452. default: true
  4453. },
  4454. {
  4455. name: "Megamacro",
  4456. height: math.unit(278e6, "meter")
  4457. },
  4458. {
  4459. name: "Gigamacro",
  4460. height: math.unit(2e9, "meter")
  4461. },
  4462. {
  4463. name: "Teramacro",
  4464. height: math.unit(8e12, "meter")
  4465. },
  4466. {
  4467. name: "Devourer",
  4468. height: math.unit(14, "zettameters")
  4469. },
  4470. {
  4471. name: "Scarlet King",
  4472. height: math.unit(18, "yottameters")
  4473. },
  4474. {
  4475. name: "Void",
  4476. height: math.unit(1e88, "yottameters")
  4477. }
  4478. ]
  4479. ))
  4480. characterMakers.push(() => makeCharacter(
  4481. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4482. {
  4483. standing: {
  4484. height: math.unit(6, "feet"),
  4485. weight: math.unit(180, "lbs"),
  4486. name: "Standing",
  4487. image: {
  4488. source: "./media/characters/zaakira/standing.svg"
  4489. }
  4490. },
  4491. laying: {
  4492. height: math.unit(3, "feet"),
  4493. weight: math.unit(180, "lbs"),
  4494. name: "Laying",
  4495. image: {
  4496. source: "./media/characters/zaakira/laying.svg"
  4497. }
  4498. },
  4499. },
  4500. [
  4501. {
  4502. name: "Normal",
  4503. height: math.unit(12, "feet")
  4504. },
  4505. {
  4506. name: "Macro",
  4507. height: math.unit(279, "feet"),
  4508. default: true
  4509. }
  4510. ]
  4511. ))
  4512. characterMakers.push(() => makeCharacter(
  4513. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4514. {
  4515. femSfw: {
  4516. height: math.unit(8, "feet"),
  4517. weight: math.unit(350, "lb"),
  4518. name: "Fem",
  4519. image: {
  4520. source: "./media/characters/sigvald/fem-sfw.svg",
  4521. extra: 182 / 164,
  4522. bottom: 8.7 / 190.5
  4523. }
  4524. },
  4525. femNsfw: {
  4526. height: math.unit(8, "feet"),
  4527. weight: math.unit(350, "lb"),
  4528. name: "Fem (NSFW)",
  4529. image: {
  4530. source: "./media/characters/sigvald/fem-nsfw.svg",
  4531. extra: 182 / 164,
  4532. bottom: 8.7 / 190.5
  4533. }
  4534. },
  4535. maleNsfw: {
  4536. height: math.unit(8, "feet"),
  4537. weight: math.unit(350, "lb"),
  4538. name: "Male (NSFW)",
  4539. image: {
  4540. source: "./media/characters/sigvald/male-nsfw.svg",
  4541. extra: 182 / 164,
  4542. bottom: 8.7 / 190.5
  4543. }
  4544. },
  4545. hermNsfw: {
  4546. height: math.unit(8, "feet"),
  4547. weight: math.unit(350, "lb"),
  4548. name: "Herm (NSFW)",
  4549. image: {
  4550. source: "./media/characters/sigvald/herm-nsfw.svg",
  4551. extra: 182 / 164,
  4552. bottom: 8.7 / 190.5
  4553. }
  4554. },
  4555. dick: {
  4556. height: math.unit(2.36, "feet"),
  4557. name: "Dick",
  4558. image: {
  4559. source: "./media/characters/sigvald/dick.svg"
  4560. }
  4561. },
  4562. eye: {
  4563. height: math.unit(0.31, "feet"),
  4564. name: "Eye",
  4565. image: {
  4566. source: "./media/characters/sigvald/eye.svg"
  4567. }
  4568. },
  4569. mouth: {
  4570. height: math.unit(0.92, "feet"),
  4571. name: "Mouth",
  4572. image: {
  4573. source: "./media/characters/sigvald/mouth.svg"
  4574. }
  4575. },
  4576. paws: {
  4577. height: math.unit(2.2, "feet"),
  4578. name: "Paws",
  4579. image: {
  4580. source: "./media/characters/sigvald/paws.svg"
  4581. }
  4582. }
  4583. },
  4584. [
  4585. {
  4586. name: "Normal",
  4587. height: math.unit(8, "feet")
  4588. },
  4589. {
  4590. name: "Large",
  4591. height: math.unit(12, "feet")
  4592. },
  4593. {
  4594. name: "Larger",
  4595. height: math.unit(20, "feet")
  4596. },
  4597. {
  4598. name: "Macro",
  4599. height: math.unit(150, "feet")
  4600. },
  4601. {
  4602. name: "Macro+",
  4603. height: math.unit(200, "feet"),
  4604. default: true
  4605. },
  4606. ]
  4607. ))
  4608. characterMakers.push(() => makeCharacter(
  4609. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4610. {
  4611. side: {
  4612. height: math.unit(12, "feet"),
  4613. weight: math.unit(2000, "kg"),
  4614. name: "Side",
  4615. image: {
  4616. source: "./media/characters/scott/side.svg",
  4617. extra: 754 / 724,
  4618. bottom: 0.069
  4619. }
  4620. },
  4621. upright: {
  4622. height: math.unit(12, "feet"),
  4623. weight: math.unit(2000, "kg"),
  4624. name: "Upright",
  4625. image: {
  4626. source: "./media/characters/scott/upright.svg",
  4627. extra: 3881 / 3722,
  4628. bottom: 0.05
  4629. }
  4630. },
  4631. },
  4632. [
  4633. {
  4634. name: "Normal",
  4635. height: math.unit(12, "feet"),
  4636. default: true
  4637. },
  4638. ]
  4639. ))
  4640. characterMakers.push(() => makeCharacter(
  4641. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4642. {
  4643. side: {
  4644. height: math.unit(8, "meters"),
  4645. weight: math.unit(84755, "lbs"),
  4646. name: "Side",
  4647. image: {
  4648. source: "./media/characters/tobias/side.svg",
  4649. extra: 1474 / 1096,
  4650. bottom: 38.9 / 1513.1235
  4651. }
  4652. },
  4653. },
  4654. [
  4655. {
  4656. name: "Normal",
  4657. height: math.unit(8, "meters"),
  4658. default: true
  4659. },
  4660. ]
  4661. ))
  4662. characterMakers.push(() => makeCharacter(
  4663. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4664. {
  4665. front: {
  4666. height: math.unit(5.5, "feet"),
  4667. weight: math.unit(400, "lbs"),
  4668. name: "Front",
  4669. image: {
  4670. source: "./media/characters/kieran/front.svg",
  4671. extra: 2694 / 2364,
  4672. bottom: 217 / 2908
  4673. }
  4674. },
  4675. side: {
  4676. height: math.unit(5.5, "feet"),
  4677. weight: math.unit(400, "lbs"),
  4678. name: "Side",
  4679. image: {
  4680. source: "./media/characters/kieran/side.svg",
  4681. extra: 875 / 777,
  4682. bottom: 84.6 / 959
  4683. }
  4684. },
  4685. },
  4686. [
  4687. {
  4688. name: "Normal",
  4689. height: math.unit(5.5, "feet"),
  4690. default: true
  4691. },
  4692. ]
  4693. ))
  4694. characterMakers.push(() => makeCharacter(
  4695. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4696. {
  4697. side: {
  4698. height: math.unit(2, "meters"),
  4699. weight: math.unit(70, "kg"),
  4700. name: "Side",
  4701. image: {
  4702. source: "./media/characters/sanya/side.svg",
  4703. bottom: 0.02,
  4704. extra: 1.02
  4705. }
  4706. },
  4707. },
  4708. [
  4709. {
  4710. name: "Small",
  4711. height: math.unit(2, "meters")
  4712. },
  4713. {
  4714. name: "Normal",
  4715. height: math.unit(3, "meters")
  4716. },
  4717. {
  4718. name: "Macro",
  4719. height: math.unit(16, "meters"),
  4720. default: true
  4721. },
  4722. ]
  4723. ))
  4724. characterMakers.push(() => makeCharacter(
  4725. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4726. {
  4727. front: {
  4728. height: math.unit(2, "meters"),
  4729. weight: math.unit(120, "kg"),
  4730. name: "Front",
  4731. image: {
  4732. source: "./media/characters/miranda/front.svg",
  4733. extra: 195 / 185,
  4734. bottom: 10.9 / 206.5
  4735. }
  4736. },
  4737. back: {
  4738. height: math.unit(2, "meters"),
  4739. weight: math.unit(120, "kg"),
  4740. name: "Back",
  4741. image: {
  4742. source: "./media/characters/miranda/back.svg",
  4743. extra: 201 / 193,
  4744. bottom: 2.3 / 203.7
  4745. }
  4746. },
  4747. },
  4748. [
  4749. {
  4750. name: "Normal",
  4751. height: math.unit(10, "feet"),
  4752. default: true
  4753. }
  4754. ]
  4755. ))
  4756. characterMakers.push(() => makeCharacter(
  4757. { name: "James", species: ["deer"], tags: ["anthro"] },
  4758. {
  4759. side: {
  4760. height: math.unit(2, "meters"),
  4761. weight: math.unit(100, "kg"),
  4762. name: "Front",
  4763. image: {
  4764. source: "./media/characters/james/front.svg",
  4765. extra: 10 / 8.5
  4766. }
  4767. },
  4768. },
  4769. [
  4770. {
  4771. name: "Normal",
  4772. height: math.unit(8.5, "feet"),
  4773. default: true
  4774. }
  4775. ]
  4776. ))
  4777. characterMakers.push(() => makeCharacter(
  4778. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4779. {
  4780. side: {
  4781. height: math.unit(9.5, "feet"),
  4782. weight: math.unit(2500, "lbs"),
  4783. name: "Side",
  4784. image: {
  4785. source: "./media/characters/heather/side.svg"
  4786. }
  4787. },
  4788. },
  4789. [
  4790. {
  4791. name: "Normal",
  4792. height: math.unit(9.5, "feet"),
  4793. default: true
  4794. }
  4795. ]
  4796. ))
  4797. characterMakers.push(() => makeCharacter(
  4798. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4799. {
  4800. side: {
  4801. height: math.unit(6.5, "feet"),
  4802. weight: math.unit(400, "lbs"),
  4803. name: "Side",
  4804. image: {
  4805. source: "./media/characters/lukas/side.svg",
  4806. extra: 7.25 / 6.5
  4807. }
  4808. },
  4809. },
  4810. [
  4811. {
  4812. name: "Normal",
  4813. height: math.unit(6.5, "feet"),
  4814. default: true
  4815. }
  4816. ]
  4817. ))
  4818. characterMakers.push(() => makeCharacter(
  4819. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4820. {
  4821. side: {
  4822. height: math.unit(5, "feet"),
  4823. weight: math.unit(3000, "lbs"),
  4824. name: "Side",
  4825. image: {
  4826. source: "./media/characters/louise/side.svg"
  4827. }
  4828. },
  4829. },
  4830. [
  4831. {
  4832. name: "Normal",
  4833. height: math.unit(5, "feet"),
  4834. default: true
  4835. }
  4836. ]
  4837. ))
  4838. characterMakers.push(() => makeCharacter(
  4839. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4840. {
  4841. side: {
  4842. height: math.unit(6, "feet"),
  4843. weight: math.unit(150, "lbs"),
  4844. name: "Side",
  4845. image: {
  4846. source: "./media/characters/ramona/side.svg"
  4847. }
  4848. },
  4849. },
  4850. [
  4851. {
  4852. name: "Normal",
  4853. height: math.unit(5.3, "meters"),
  4854. default: true
  4855. },
  4856. {
  4857. name: "Macro",
  4858. height: math.unit(20, "stories")
  4859. },
  4860. {
  4861. name: "Macro+",
  4862. height: math.unit(50, "stories")
  4863. },
  4864. ]
  4865. ))
  4866. characterMakers.push(() => makeCharacter(
  4867. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4868. {
  4869. standing: {
  4870. height: math.unit(5.75, "feet"),
  4871. weight: math.unit(160, "lbs"),
  4872. name: "Standing",
  4873. image: {
  4874. source: "./media/characters/deerpuff/standing.svg",
  4875. extra: 682 / 624
  4876. }
  4877. },
  4878. sitting: {
  4879. height: math.unit(5.75 / 1.79, "feet"),
  4880. weight: math.unit(160, "lbs"),
  4881. name: "Sitting",
  4882. image: {
  4883. source: "./media/characters/deerpuff/sitting.svg",
  4884. bottom: 44 / 400,
  4885. extra: 1
  4886. }
  4887. },
  4888. taurLaying: {
  4889. height: math.unit(6, "feet"),
  4890. weight: math.unit(400, "lbs"),
  4891. name: "Taur (Laying)",
  4892. image: {
  4893. source: "./media/characters/deerpuff/taur-laying.svg"
  4894. }
  4895. },
  4896. },
  4897. [
  4898. {
  4899. name: "Puffball",
  4900. height: math.unit(6, "inches")
  4901. },
  4902. {
  4903. name: "Normalpuff",
  4904. height: math.unit(5.75, "feet")
  4905. },
  4906. {
  4907. name: "Macropuff",
  4908. height: math.unit(1500, "feet"),
  4909. default: true
  4910. },
  4911. {
  4912. name: "Megapuff",
  4913. height: math.unit(500, "miles")
  4914. },
  4915. {
  4916. name: "Gigapuff",
  4917. height: math.unit(250000, "miles")
  4918. },
  4919. {
  4920. name: "Omegapuff",
  4921. height: math.unit(1000, "lightyears")
  4922. },
  4923. ]
  4924. ))
  4925. characterMakers.push(() => makeCharacter(
  4926. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4927. {
  4928. stomping: {
  4929. height: math.unit(6, "feet"),
  4930. weight: math.unit(170, "lbs"),
  4931. name: "Stomping",
  4932. image: {
  4933. source: "./media/characters/vivian/stomping.svg"
  4934. }
  4935. },
  4936. sitting: {
  4937. height: math.unit(6 / 1.75, "feet"),
  4938. weight: math.unit(170, "lbs"),
  4939. name: "Sitting",
  4940. image: {
  4941. source: "./media/characters/vivian/sitting.svg",
  4942. bottom: 1 / 6.4,
  4943. extra: 1,
  4944. }
  4945. },
  4946. },
  4947. [
  4948. {
  4949. name: "Normal",
  4950. height: math.unit(7, "feet"),
  4951. default: true
  4952. },
  4953. {
  4954. name: "Macro",
  4955. height: math.unit(10, "stories")
  4956. },
  4957. {
  4958. name: "Macro+",
  4959. height: math.unit(30, "stories")
  4960. },
  4961. {
  4962. name: "Megamacro",
  4963. height: math.unit(10, "miles")
  4964. },
  4965. {
  4966. name: "Megamacro+",
  4967. height: math.unit(2750000, "meters")
  4968. },
  4969. ]
  4970. ))
  4971. characterMakers.push(() => makeCharacter(
  4972. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4973. {
  4974. front: {
  4975. height: math.unit(6, "feet"),
  4976. weight: math.unit(160, "lbs"),
  4977. name: "Front",
  4978. image: {
  4979. source: "./media/characters/prince/front.svg",
  4980. extra: 3400 / 3000
  4981. }
  4982. },
  4983. jumping: {
  4984. height: math.unit(6, "feet"),
  4985. weight: math.unit(160, "lbs"),
  4986. name: "Jumping",
  4987. image: {
  4988. source: "./media/characters/prince/jump.svg",
  4989. extra: 2555 / 2134
  4990. }
  4991. },
  4992. },
  4993. [
  4994. {
  4995. name: "Normal",
  4996. height: math.unit(7.75, "feet"),
  4997. default: true
  4998. },
  4999. {
  5000. name: "Not cute",
  5001. height: math.unit(17, "feet")
  5002. },
  5003. {
  5004. name: "I said NOT",
  5005. height: math.unit(91, "feet")
  5006. },
  5007. {
  5008. name: "Please stop",
  5009. height: math.unit(560, "feet")
  5010. },
  5011. {
  5012. name: "What have you done",
  5013. height: math.unit(2200, "feet")
  5014. },
  5015. {
  5016. name: "Deer God",
  5017. height: math.unit(3.6, "miles")
  5018. },
  5019. ]
  5020. ))
  5021. characterMakers.push(() => makeCharacter(
  5022. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5023. {
  5024. standing: {
  5025. height: math.unit(6, "feet"),
  5026. weight: math.unit(300, "lbs"),
  5027. name: "Standing",
  5028. image: {
  5029. source: "./media/characters/psymon/standing.svg",
  5030. extra: 1888 / 1810,
  5031. bottom: 0.05
  5032. }
  5033. },
  5034. slithering: {
  5035. height: math.unit(6, "feet"),
  5036. weight: math.unit(300, "lbs"),
  5037. name: "Slithering",
  5038. image: {
  5039. source: "./media/characters/psymon/slithering.svg",
  5040. extra: 1330 / 1224
  5041. }
  5042. },
  5043. slitheringAlt: {
  5044. height: math.unit(6, "feet"),
  5045. weight: math.unit(300, "lbs"),
  5046. name: "Slithering (Alt)",
  5047. image: {
  5048. source: "./media/characters/psymon/slithering-alt.svg",
  5049. extra: 1330 / 1224
  5050. }
  5051. },
  5052. },
  5053. [
  5054. {
  5055. name: "Normal",
  5056. height: math.unit(11.25, "feet"),
  5057. default: true
  5058. },
  5059. {
  5060. name: "Large",
  5061. height: math.unit(27, "feet")
  5062. },
  5063. {
  5064. name: "Giant",
  5065. height: math.unit(87, "feet")
  5066. },
  5067. {
  5068. name: "Macro",
  5069. height: math.unit(365, "feet")
  5070. },
  5071. {
  5072. name: "Megamacro",
  5073. height: math.unit(3, "miles")
  5074. },
  5075. {
  5076. name: "World Serpent",
  5077. height: math.unit(8000, "miles")
  5078. },
  5079. ]
  5080. ))
  5081. characterMakers.push(() => makeCharacter(
  5082. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5083. {
  5084. front: {
  5085. height: math.unit(6, "feet"),
  5086. weight: math.unit(180, "lbs"),
  5087. name: "Front",
  5088. image: {
  5089. source: "./media/characters/daimos/front.svg",
  5090. extra: 4160 / 3897,
  5091. bottom: 0.021
  5092. }
  5093. }
  5094. },
  5095. [
  5096. {
  5097. name: "Normal",
  5098. height: math.unit(8, "feet"),
  5099. default: true
  5100. },
  5101. {
  5102. name: "Big Dog",
  5103. height: math.unit(22, "feet")
  5104. },
  5105. {
  5106. name: "Macro",
  5107. height: math.unit(127, "feet")
  5108. },
  5109. {
  5110. name: "Megamacro",
  5111. height: math.unit(3600, "feet")
  5112. },
  5113. ]
  5114. ))
  5115. characterMakers.push(() => makeCharacter(
  5116. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5117. {
  5118. side: {
  5119. height: math.unit(6, "feet"),
  5120. weight: math.unit(180, "lbs"),
  5121. name: "Side",
  5122. image: {
  5123. source: "./media/characters/blake/side.svg",
  5124. extra: 1212 / 1120,
  5125. bottom: 0.05
  5126. }
  5127. },
  5128. crouched: {
  5129. height: math.unit(6 * 0.57, "feet"),
  5130. weight: math.unit(180, "lbs"),
  5131. name: "Crouched",
  5132. image: {
  5133. source: "./media/characters/blake/crouched.svg",
  5134. extra: 840 / 587,
  5135. bottom: 0.04
  5136. }
  5137. },
  5138. bent: {
  5139. height: math.unit(6 * 0.75, "feet"),
  5140. weight: math.unit(180, "lbs"),
  5141. name: "Bent",
  5142. image: {
  5143. source: "./media/characters/blake/bent.svg",
  5144. extra: 592 / 544,
  5145. bottom: 0.035
  5146. }
  5147. },
  5148. },
  5149. [
  5150. {
  5151. name: "Normal",
  5152. height: math.unit(8 + 1 / 6, "feet"),
  5153. default: true
  5154. },
  5155. {
  5156. name: "Big Backside",
  5157. height: math.unit(37, "feet")
  5158. },
  5159. {
  5160. name: "Subway Shredder",
  5161. height: math.unit(72, "feet")
  5162. },
  5163. {
  5164. name: "City Carver",
  5165. height: math.unit(1675, "feet")
  5166. },
  5167. {
  5168. name: "Tectonic Tweaker",
  5169. height: math.unit(2300, "miles")
  5170. },
  5171. ]
  5172. ))
  5173. characterMakers.push(() => makeCharacter(
  5174. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5175. {
  5176. front: {
  5177. height: math.unit(6, "feet"),
  5178. weight: math.unit(180, "lbs"),
  5179. name: "Front",
  5180. image: {
  5181. source: "./media/characters/guisetto/front.svg",
  5182. extra: 856 / 817,
  5183. bottom: 0.06
  5184. }
  5185. },
  5186. airborne: {
  5187. height: math.unit(6, "feet"),
  5188. weight: math.unit(180, "lbs"),
  5189. name: "Airborne",
  5190. image: {
  5191. source: "./media/characters/guisetto/airborne.svg",
  5192. extra: 584 / 525
  5193. }
  5194. },
  5195. },
  5196. [
  5197. {
  5198. name: "Normal",
  5199. height: math.unit(10 + 11 / 12, "feet"),
  5200. default: true
  5201. },
  5202. {
  5203. name: "Large",
  5204. height: math.unit(35, "feet")
  5205. },
  5206. {
  5207. name: "Macro",
  5208. height: math.unit(475, "feet")
  5209. },
  5210. ]
  5211. ))
  5212. characterMakers.push(() => makeCharacter(
  5213. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5214. {
  5215. front: {
  5216. height: math.unit(6, "feet"),
  5217. weight: math.unit(180, "lbs"),
  5218. name: "Front",
  5219. image: {
  5220. source: "./media/characters/luxor/front.svg",
  5221. extra: 2940 / 2152
  5222. }
  5223. },
  5224. back: {
  5225. height: math.unit(6, "feet"),
  5226. weight: math.unit(180, "lbs"),
  5227. name: "Back",
  5228. image: {
  5229. source: "./media/characters/luxor/back.svg",
  5230. extra: 1083 / 960
  5231. }
  5232. },
  5233. },
  5234. [
  5235. {
  5236. name: "Normal",
  5237. height: math.unit(5 + 5 / 6, "feet"),
  5238. default: true
  5239. },
  5240. {
  5241. name: "Lamp",
  5242. height: math.unit(50, "feet")
  5243. },
  5244. {
  5245. name: "Lämp",
  5246. height: math.unit(300, "feet")
  5247. },
  5248. {
  5249. name: "The sun is a lamp",
  5250. height: math.unit(250000, "miles")
  5251. },
  5252. ]
  5253. ))
  5254. characterMakers.push(() => makeCharacter(
  5255. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5256. {
  5257. front: {
  5258. height: math.unit(6, "feet"),
  5259. weight: math.unit(50, "lbs"),
  5260. name: "Front",
  5261. image: {
  5262. source: "./media/characters/huoyan/front.svg"
  5263. }
  5264. },
  5265. side: {
  5266. height: math.unit(6, "feet"),
  5267. weight: math.unit(180, "lbs"),
  5268. name: "Side",
  5269. image: {
  5270. source: "./media/characters/huoyan/side.svg"
  5271. }
  5272. },
  5273. },
  5274. [
  5275. {
  5276. name: "Chef",
  5277. height: math.unit(9, "feet")
  5278. },
  5279. {
  5280. name: "Normal",
  5281. height: math.unit(65, "feet"),
  5282. default: true
  5283. },
  5284. {
  5285. name: "Macro",
  5286. height: math.unit(780, "feet")
  5287. },
  5288. {
  5289. name: "Flaming Mountain",
  5290. height: math.unit(4.8, "miles")
  5291. },
  5292. {
  5293. name: "Celestial",
  5294. height: math.unit(765000, "miles")
  5295. },
  5296. ]
  5297. ))
  5298. characterMakers.push(() => makeCharacter(
  5299. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5300. {
  5301. front: {
  5302. height: math.unit(5 + 3 / 4, "feet"),
  5303. weight: math.unit(120, "lbs"),
  5304. name: "Front",
  5305. image: {
  5306. source: "./media/characters/tails/front.svg"
  5307. }
  5308. }
  5309. },
  5310. [
  5311. {
  5312. name: "Normal",
  5313. height: math.unit(5 + 3 / 4, "feet"),
  5314. default: true
  5315. }
  5316. ]
  5317. ))
  5318. characterMakers.push(() => makeCharacter(
  5319. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5320. {
  5321. front: {
  5322. height: math.unit(4, "feet"),
  5323. weight: math.unit(50, "lbs"),
  5324. name: "Front",
  5325. image: {
  5326. source: "./media/characters/rainy/front.svg"
  5327. }
  5328. }
  5329. },
  5330. [
  5331. {
  5332. name: "Macro",
  5333. height: math.unit(800, "feet"),
  5334. default: true
  5335. }
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5340. {
  5341. front: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(150, "lbs"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/rainier/front.svg"
  5347. }
  5348. }
  5349. },
  5350. [
  5351. {
  5352. name: "Micro",
  5353. height: math.unit(2, "mm"),
  5354. default: true
  5355. }
  5356. ]
  5357. ))
  5358. characterMakers.push(() => makeCharacter(
  5359. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5360. {
  5361. front: {
  5362. height: math.unit(6, "feet"),
  5363. weight: math.unit(180, "lbs"),
  5364. name: "Front",
  5365. image: {
  5366. source: "./media/characters/andy/front.svg"
  5367. }
  5368. }
  5369. },
  5370. [
  5371. {
  5372. name: "Normal",
  5373. height: math.unit(8, "feet"),
  5374. default: true
  5375. },
  5376. {
  5377. name: "Macro",
  5378. height: math.unit(1000, "feet")
  5379. },
  5380. {
  5381. name: "Megamacro",
  5382. height: math.unit(5, "miles")
  5383. },
  5384. {
  5385. name: "Gigamacro",
  5386. height: math.unit(5000, "miles")
  5387. },
  5388. ]
  5389. ))
  5390. characterMakers.push(() => makeCharacter(
  5391. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5392. {
  5393. front: {
  5394. height: math.unit(6, "feet"),
  5395. weight: math.unit(210, "lbs"),
  5396. name: "Front",
  5397. image: {
  5398. source: "./media/characters/cimmaron/front-sfw.svg",
  5399. extra: 701 / 676,
  5400. bottom: 0.046
  5401. }
  5402. },
  5403. back: {
  5404. height: math.unit(6, "feet"),
  5405. weight: math.unit(210, "lbs"),
  5406. name: "Back",
  5407. image: {
  5408. source: "./media/characters/cimmaron/back-sfw.svg",
  5409. extra: 701 / 676,
  5410. bottom: 0.046
  5411. }
  5412. },
  5413. frontNsfw: {
  5414. height: math.unit(6, "feet"),
  5415. weight: math.unit(210, "lbs"),
  5416. name: "Front (NSFW)",
  5417. image: {
  5418. source: "./media/characters/cimmaron/front-nsfw.svg",
  5419. extra: 701 / 676,
  5420. bottom: 0.046
  5421. }
  5422. },
  5423. backNsfw: {
  5424. height: math.unit(6, "feet"),
  5425. weight: math.unit(210, "lbs"),
  5426. name: "Back (NSFW)",
  5427. image: {
  5428. source: "./media/characters/cimmaron/back-nsfw.svg",
  5429. extra: 701 / 676,
  5430. bottom: 0.046
  5431. }
  5432. },
  5433. dick: {
  5434. height: math.unit(1.714, "feet"),
  5435. name: "Dick",
  5436. image: {
  5437. source: "./media/characters/cimmaron/dick.svg"
  5438. }
  5439. },
  5440. },
  5441. [
  5442. {
  5443. name: "Normal",
  5444. height: math.unit(6, "feet"),
  5445. default: true
  5446. },
  5447. {
  5448. name: "Macro Mayor",
  5449. height: math.unit(350, "meters")
  5450. },
  5451. ]
  5452. ))
  5453. characterMakers.push(() => makeCharacter(
  5454. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5455. {
  5456. front: {
  5457. height: math.unit(6, "feet"),
  5458. weight: math.unit(200, "lbs"),
  5459. name: "Front",
  5460. image: {
  5461. source: "./media/characters/akari/front.svg",
  5462. extra: 962 / 901,
  5463. bottom: 0.04
  5464. }
  5465. }
  5466. },
  5467. [
  5468. {
  5469. name: "Micro",
  5470. height: math.unit(5, "inches"),
  5471. default: true
  5472. },
  5473. {
  5474. name: "Normal",
  5475. height: math.unit(7, "feet")
  5476. },
  5477. ]
  5478. ))
  5479. characterMakers.push(() => makeCharacter(
  5480. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5481. {
  5482. front: {
  5483. height: math.unit(6, "feet"),
  5484. weight: math.unit(140, "lbs"),
  5485. name: "Front",
  5486. image: {
  5487. source: "./media/characters/cynosura/front.svg",
  5488. extra: 896 / 847
  5489. }
  5490. },
  5491. back: {
  5492. height: math.unit(6, "feet"),
  5493. weight: math.unit(140, "lbs"),
  5494. name: "Back",
  5495. image: {
  5496. source: "./media/characters/cynosura/back.svg",
  5497. extra: 1365 / 1250
  5498. }
  5499. },
  5500. },
  5501. [
  5502. {
  5503. name: "Micro",
  5504. height: math.unit(4, "inches")
  5505. },
  5506. {
  5507. name: "Normal",
  5508. height: math.unit(5.75, "feet"),
  5509. default: true
  5510. },
  5511. {
  5512. name: "Tall",
  5513. height: math.unit(10, "feet")
  5514. },
  5515. {
  5516. name: "Big",
  5517. height: math.unit(20, "feet")
  5518. },
  5519. {
  5520. name: "Macro",
  5521. height: math.unit(50, "feet")
  5522. },
  5523. ]
  5524. ))
  5525. characterMakers.push(() => makeCharacter(
  5526. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5527. {
  5528. front: {
  5529. height: math.unit(6, "feet"),
  5530. weight: math.unit(170, "lbs"),
  5531. name: "Front",
  5532. image: {
  5533. source: "./media/characters/gin/front.svg",
  5534. extra: 1.053,
  5535. bottom: 0.025
  5536. }
  5537. },
  5538. foot: {
  5539. height: math.unit(6 / 4.25, "feet"),
  5540. name: "Foot",
  5541. image: {
  5542. source: "./media/characters/gin/foot.svg"
  5543. }
  5544. },
  5545. sole: {
  5546. height: math.unit(6 / 4.40, "feet"),
  5547. name: "Sole",
  5548. image: {
  5549. source: "./media/characters/gin/sole.svg"
  5550. }
  5551. },
  5552. },
  5553. [
  5554. {
  5555. name: "Normal",
  5556. height: math.unit(13 + 2 / 12, "feet")
  5557. },
  5558. {
  5559. name: "Macro",
  5560. height: math.unit(1500, "feet")
  5561. },
  5562. {
  5563. name: "Megamacro",
  5564. height: math.unit(200, "miles"),
  5565. default: true
  5566. },
  5567. {
  5568. name: "Gigamacro",
  5569. height: math.unit(500, "megameters")
  5570. },
  5571. {
  5572. name: "Teramacro",
  5573. height: math.unit(15, "lightyears")
  5574. }
  5575. ]
  5576. ))
  5577. characterMakers.push(() => makeCharacter(
  5578. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5579. {
  5580. front: {
  5581. height: math.unit(6 + 1 / 6, "feet"),
  5582. weight: math.unit(178, "lbs"),
  5583. name: "Front",
  5584. image: {
  5585. source: "./media/characters/guy/front.svg"
  5586. }
  5587. }
  5588. },
  5589. [
  5590. {
  5591. name: "Normal",
  5592. height: math.unit(6 + 1 / 6, "feet"),
  5593. default: true
  5594. },
  5595. {
  5596. name: "Large",
  5597. height: math.unit(25 + 7 / 12, "feet")
  5598. },
  5599. {
  5600. name: "Macro",
  5601. height: math.unit(60 + 9 / 12, "feet")
  5602. },
  5603. {
  5604. name: "Macro+",
  5605. height: math.unit(246, "feet")
  5606. },
  5607. {
  5608. name: "Macro++",
  5609. height: math.unit(878, "feet")
  5610. }
  5611. ]
  5612. ))
  5613. characterMakers.push(() => makeCharacter(
  5614. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5615. {
  5616. front: {
  5617. height: math.unit(9, "feet"),
  5618. weight: math.unit(800, "lbs"),
  5619. name: "Front",
  5620. image: {
  5621. source: "./media/characters/tiberius/front.svg",
  5622. extra: 2295 / 2071
  5623. }
  5624. },
  5625. back: {
  5626. height: math.unit(9, "feet"),
  5627. weight: math.unit(800, "lbs"),
  5628. name: "Back",
  5629. image: {
  5630. source: "./media/characters/tiberius/back.svg",
  5631. extra: 2373 / 2160
  5632. }
  5633. },
  5634. },
  5635. [
  5636. {
  5637. name: "Normal",
  5638. height: math.unit(9, "feet"),
  5639. default: true
  5640. }
  5641. ]
  5642. ))
  5643. characterMakers.push(() => makeCharacter(
  5644. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5645. {
  5646. front: {
  5647. height: math.unit(6, "feet"),
  5648. weight: math.unit(600, "lbs"),
  5649. name: "Front",
  5650. image: {
  5651. source: "./media/characters/surgo/front.svg",
  5652. extra: 3591 / 2227
  5653. }
  5654. },
  5655. back: {
  5656. height: math.unit(6, "feet"),
  5657. weight: math.unit(600, "lbs"),
  5658. name: "Back",
  5659. image: {
  5660. source: "./media/characters/surgo/back.svg",
  5661. extra: 3557 / 2228
  5662. }
  5663. },
  5664. laying: {
  5665. height: math.unit(6 * 0.85, "feet"),
  5666. weight: math.unit(600, "lbs"),
  5667. name: "Laying",
  5668. image: {
  5669. source: "./media/characters/surgo/laying.svg"
  5670. }
  5671. },
  5672. },
  5673. [
  5674. {
  5675. name: "Normal",
  5676. height: math.unit(6, "feet"),
  5677. default: true
  5678. }
  5679. ]
  5680. ))
  5681. characterMakers.push(() => makeCharacter(
  5682. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5683. {
  5684. side: {
  5685. height: math.unit(6, "feet"),
  5686. weight: math.unit(150, "lbs"),
  5687. name: "Side",
  5688. image: {
  5689. source: "./media/characters/cibus/side.svg",
  5690. extra: 800 / 400
  5691. }
  5692. },
  5693. },
  5694. [
  5695. {
  5696. name: "Normal",
  5697. height: math.unit(6, "feet"),
  5698. default: true
  5699. }
  5700. ]
  5701. ))
  5702. characterMakers.push(() => makeCharacter(
  5703. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5704. {
  5705. front: {
  5706. height: math.unit(6, "feet"),
  5707. weight: math.unit(240, "lbs"),
  5708. name: "Front",
  5709. image: {
  5710. source: "./media/characters/nibbles/front.svg"
  5711. }
  5712. },
  5713. side: {
  5714. height: math.unit(6, "feet"),
  5715. weight: math.unit(240, "lbs"),
  5716. name: "Side",
  5717. image: {
  5718. source: "./media/characters/nibbles/side.svg"
  5719. }
  5720. },
  5721. },
  5722. [
  5723. {
  5724. name: "Normal",
  5725. height: math.unit(9, "feet"),
  5726. default: true
  5727. }
  5728. ]
  5729. ))
  5730. characterMakers.push(() => makeCharacter(
  5731. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5732. {
  5733. side: {
  5734. height: math.unit(5 + 1 / 6, "feet"),
  5735. weight: math.unit(130, "lbs"),
  5736. name: "Side",
  5737. image: {
  5738. source: "./media/characters/rikky/side.svg",
  5739. extra: 851 / 801
  5740. }
  5741. },
  5742. },
  5743. [
  5744. {
  5745. name: "Normal",
  5746. height: math.unit(5 + 1 / 6, "feet")
  5747. },
  5748. {
  5749. name: "Macro",
  5750. height: math.unit(152, "feet"),
  5751. default: true
  5752. },
  5753. {
  5754. name: "Megamacro",
  5755. height: math.unit(7, "miles")
  5756. }
  5757. ]
  5758. ))
  5759. characterMakers.push(() => makeCharacter(
  5760. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5761. {
  5762. side: {
  5763. height: math.unit(370, "cm"),
  5764. weight: math.unit(350, "lbs"),
  5765. name: "Side",
  5766. image: {
  5767. source: "./media/characters/malfressa/side.svg"
  5768. }
  5769. },
  5770. walking: {
  5771. height: math.unit(370, "cm"),
  5772. weight: math.unit(350, "lbs"),
  5773. name: "Walking",
  5774. image: {
  5775. source: "./media/characters/malfressa/walking.svg"
  5776. }
  5777. },
  5778. feral: {
  5779. height: math.unit(2500, "cm"),
  5780. weight: math.unit(100000, "lbs"),
  5781. name: "Feral",
  5782. image: {
  5783. source: "./media/characters/malfressa/feral.svg",
  5784. extra: 2108 / 837,
  5785. bottom: 0.02
  5786. }
  5787. },
  5788. },
  5789. [
  5790. {
  5791. name: "Normal",
  5792. height: math.unit(370, "cm")
  5793. },
  5794. {
  5795. name: "Macro",
  5796. height: math.unit(300, "meters"),
  5797. default: true
  5798. }
  5799. ]
  5800. ))
  5801. characterMakers.push(() => makeCharacter(
  5802. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5803. {
  5804. front: {
  5805. height: math.unit(6, "feet"),
  5806. weight: math.unit(60, "kg"),
  5807. name: "Front",
  5808. image: {
  5809. source: "./media/characters/jaro/front.svg"
  5810. }
  5811. },
  5812. back: {
  5813. height: math.unit(6, "feet"),
  5814. weight: math.unit(60, "kg"),
  5815. name: "Back",
  5816. image: {
  5817. source: "./media/characters/jaro/back.svg"
  5818. }
  5819. },
  5820. },
  5821. [
  5822. {
  5823. name: "Micro",
  5824. height: math.unit(7, "inches")
  5825. },
  5826. {
  5827. name: "Normal",
  5828. height: math.unit(5.5, "feet"),
  5829. default: true
  5830. },
  5831. {
  5832. name: "Minimacro",
  5833. height: math.unit(20, "feet")
  5834. },
  5835. {
  5836. name: "Macro",
  5837. height: math.unit(200, "meters")
  5838. }
  5839. ]
  5840. ))
  5841. characterMakers.push(() => makeCharacter(
  5842. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5843. {
  5844. front: {
  5845. height: math.unit(6, "feet"),
  5846. weight: math.unit(195, "lb"),
  5847. name: "Front",
  5848. image: {
  5849. source: "./media/characters/rogue/front.svg"
  5850. }
  5851. },
  5852. },
  5853. [
  5854. {
  5855. name: "Macro",
  5856. height: math.unit(90, "feet"),
  5857. default: true
  5858. },
  5859. ]
  5860. ))
  5861. characterMakers.push(() => makeCharacter(
  5862. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5863. {
  5864. front: {
  5865. height: math.unit(5 + 8 / 12, "feet"),
  5866. weight: math.unit(140, "lb"),
  5867. name: "Front",
  5868. image: {
  5869. source: "./media/characters/piper/front.svg",
  5870. extra: 3948/3655,
  5871. bottom: 0/3948
  5872. }
  5873. },
  5874. },
  5875. [
  5876. {
  5877. name: "Micro",
  5878. height: math.unit(2, "inches")
  5879. },
  5880. {
  5881. name: "Normal",
  5882. height: math.unit(5 + 8 / 12, "feet")
  5883. },
  5884. {
  5885. name: "Macro",
  5886. height: math.unit(250, "feet"),
  5887. default: true
  5888. },
  5889. {
  5890. name: "Megamacro",
  5891. height: math.unit(7, "miles")
  5892. },
  5893. ]
  5894. ))
  5895. characterMakers.push(() => makeCharacter(
  5896. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5897. {
  5898. front: {
  5899. height: math.unit(6, "feet"),
  5900. weight: math.unit(220, "lb"),
  5901. name: "Front",
  5902. image: {
  5903. source: "./media/characters/gemini/front.svg"
  5904. }
  5905. },
  5906. back: {
  5907. height: math.unit(6, "feet"),
  5908. weight: math.unit(220, "lb"),
  5909. name: "Back",
  5910. image: {
  5911. source: "./media/characters/gemini/back.svg"
  5912. }
  5913. },
  5914. kneeling: {
  5915. height: math.unit(6 / 1.5, "feet"),
  5916. weight: math.unit(220, "lb"),
  5917. name: "Kneeling",
  5918. image: {
  5919. source: "./media/characters/gemini/kneeling.svg",
  5920. bottom: 0.02
  5921. }
  5922. },
  5923. },
  5924. [
  5925. {
  5926. name: "Macro",
  5927. height: math.unit(300, "meters"),
  5928. default: true
  5929. },
  5930. {
  5931. name: "Megamacro",
  5932. height: math.unit(6900, "meters")
  5933. },
  5934. ]
  5935. ))
  5936. characterMakers.push(() => makeCharacter(
  5937. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5938. {
  5939. anthro: {
  5940. height: math.unit(2.35, "meters"),
  5941. weight: math.unit(73, "kg"),
  5942. name: "Anthro",
  5943. image: {
  5944. source: "./media/characters/alicia/anthro.svg",
  5945. extra: 2571 / 2385,
  5946. bottom: 75 / 2648
  5947. }
  5948. },
  5949. paw: {
  5950. height: math.unit(1.32, "feet"),
  5951. name: "Paw",
  5952. image: {
  5953. source: "./media/characters/alicia/paw.svg"
  5954. }
  5955. },
  5956. feral: {
  5957. height: math.unit(1.69, "meters"),
  5958. weight: math.unit(73, "kg"),
  5959. name: "Feral",
  5960. image: {
  5961. source: "./media/characters/alicia/feral.svg",
  5962. extra: 2123 / 1715,
  5963. bottom: 222 / 2349
  5964. }
  5965. },
  5966. },
  5967. [
  5968. {
  5969. name: "Normal",
  5970. height: math.unit(2.35, "meters")
  5971. },
  5972. {
  5973. name: "Macro",
  5974. height: math.unit(60, "meters"),
  5975. default: true
  5976. },
  5977. {
  5978. name: "Megamacro",
  5979. height: math.unit(10000, "kilometers")
  5980. },
  5981. ]
  5982. ))
  5983. characterMakers.push(() => makeCharacter(
  5984. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5985. {
  5986. front: {
  5987. height: math.unit(7, "feet"),
  5988. weight: math.unit(250, "lbs"),
  5989. name: "Front",
  5990. image: {
  5991. source: "./media/characters/archy/front.svg"
  5992. }
  5993. }
  5994. },
  5995. [
  5996. {
  5997. name: "Micro",
  5998. height: math.unit(1, "inch")
  5999. },
  6000. {
  6001. name: "Shorty",
  6002. height: math.unit(5, "feet")
  6003. },
  6004. {
  6005. name: "Normal",
  6006. height: math.unit(7, "feet")
  6007. },
  6008. {
  6009. name: "Macro",
  6010. height: math.unit(600, "meters"),
  6011. default: true
  6012. },
  6013. {
  6014. name: "Megamacro",
  6015. height: math.unit(1, "mile")
  6016. },
  6017. ]
  6018. ))
  6019. characterMakers.push(() => makeCharacter(
  6020. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6021. {
  6022. front: {
  6023. height: math.unit(1.65, "meters"),
  6024. weight: math.unit(74, "kg"),
  6025. name: "Front",
  6026. image: {
  6027. source: "./media/characters/berri/front.svg",
  6028. extra: 857 / 837,
  6029. bottom: 18 / 877
  6030. }
  6031. },
  6032. bum: {
  6033. height: math.unit(1.46, "feet"),
  6034. name: "Bum",
  6035. image: {
  6036. source: "./media/characters/berri/bum.svg"
  6037. }
  6038. },
  6039. mouth: {
  6040. height: math.unit(0.44, "feet"),
  6041. name: "Mouth",
  6042. image: {
  6043. source: "./media/characters/berri/mouth.svg"
  6044. }
  6045. },
  6046. paw: {
  6047. height: math.unit(0.826, "feet"),
  6048. name: "Paw",
  6049. image: {
  6050. source: "./media/characters/berri/paw.svg"
  6051. }
  6052. },
  6053. },
  6054. [
  6055. {
  6056. name: "Normal",
  6057. height: math.unit(1.65, "meters")
  6058. },
  6059. {
  6060. name: "Macro",
  6061. height: math.unit(60, "m"),
  6062. default: true
  6063. },
  6064. {
  6065. name: "Megamacro",
  6066. height: math.unit(9.213, "km")
  6067. },
  6068. {
  6069. name: "Planet Eater",
  6070. height: math.unit(489, "megameters")
  6071. },
  6072. {
  6073. name: "Teramacro",
  6074. height: math.unit(2471635000000, "meters")
  6075. },
  6076. {
  6077. name: "Examacro",
  6078. height: math.unit(8.0624e+26, "meters")
  6079. }
  6080. ]
  6081. ))
  6082. characterMakers.push(() => makeCharacter(
  6083. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6084. {
  6085. front: {
  6086. height: math.unit(1.72, "meters"),
  6087. weight: math.unit(68, "kg"),
  6088. name: "Front",
  6089. image: {
  6090. source: "./media/characters/lexi/front.svg"
  6091. }
  6092. }
  6093. },
  6094. [
  6095. {
  6096. name: "Very Smol",
  6097. height: math.unit(10, "mm")
  6098. },
  6099. {
  6100. name: "Micro",
  6101. height: math.unit(6.8, "cm"),
  6102. default: true
  6103. },
  6104. {
  6105. name: "Normal",
  6106. height: math.unit(1.72, "m")
  6107. }
  6108. ]
  6109. ))
  6110. characterMakers.push(() => makeCharacter(
  6111. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6112. {
  6113. front: {
  6114. height: math.unit(1.69, "meters"),
  6115. weight: math.unit(68, "kg"),
  6116. name: "Front",
  6117. image: {
  6118. source: "./media/characters/martin/front.svg",
  6119. extra: 596 / 581
  6120. }
  6121. }
  6122. },
  6123. [
  6124. {
  6125. name: "Micro",
  6126. height: math.unit(6.85, "cm"),
  6127. default: true
  6128. },
  6129. {
  6130. name: "Normal",
  6131. height: math.unit(1.69, "m")
  6132. }
  6133. ]
  6134. ))
  6135. characterMakers.push(() => makeCharacter(
  6136. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6137. {
  6138. front: {
  6139. height: math.unit(1.69, "meters"),
  6140. weight: math.unit(68, "kg"),
  6141. name: "Front",
  6142. image: {
  6143. source: "./media/characters/juno/front.svg"
  6144. }
  6145. }
  6146. },
  6147. [
  6148. {
  6149. name: "Micro",
  6150. height: math.unit(7, "cm")
  6151. },
  6152. {
  6153. name: "Normal",
  6154. height: math.unit(1.89, "m")
  6155. },
  6156. {
  6157. name: "Macro",
  6158. height: math.unit(353, "meters"),
  6159. default: true
  6160. }
  6161. ]
  6162. ))
  6163. characterMakers.push(() => makeCharacter(
  6164. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6165. {
  6166. front: {
  6167. height: math.unit(1.93, "meters"),
  6168. weight: math.unit(83, "kg"),
  6169. name: "Front",
  6170. image: {
  6171. source: "./media/characters/samantha/front.svg"
  6172. }
  6173. },
  6174. frontClothed: {
  6175. height: math.unit(1.93, "meters"),
  6176. weight: math.unit(83, "kg"),
  6177. name: "Front (Clothed)",
  6178. image: {
  6179. source: "./media/characters/samantha/front-clothed.svg"
  6180. }
  6181. },
  6182. back: {
  6183. height: math.unit(1.93, "meters"),
  6184. weight: math.unit(83, "kg"),
  6185. name: "Back",
  6186. image: {
  6187. source: "./media/characters/samantha/back.svg"
  6188. }
  6189. },
  6190. },
  6191. [
  6192. {
  6193. name: "Normal",
  6194. height: math.unit(1.93, "m")
  6195. },
  6196. {
  6197. name: "Macro",
  6198. height: math.unit(74, "meters"),
  6199. default: true
  6200. },
  6201. {
  6202. name: "Macro+",
  6203. height: math.unit(223, "meters"),
  6204. },
  6205. {
  6206. name: "Megamacro",
  6207. height: math.unit(8381, "meters"),
  6208. },
  6209. {
  6210. name: "Megamacro+",
  6211. height: math.unit(12000, "kilometers")
  6212. },
  6213. ]
  6214. ))
  6215. characterMakers.push(() => makeCharacter(
  6216. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6217. {
  6218. front: {
  6219. height: math.unit(1.92, "meters"),
  6220. weight: math.unit(80, "kg"),
  6221. name: "Front",
  6222. image: {
  6223. source: "./media/characters/dr-clay/front.svg"
  6224. }
  6225. },
  6226. frontClothed: {
  6227. height: math.unit(1.92, "meters"),
  6228. weight: math.unit(80, "kg"),
  6229. name: "Front (Clothed)",
  6230. image: {
  6231. source: "./media/characters/dr-clay/front-clothed.svg"
  6232. }
  6233. }
  6234. },
  6235. [
  6236. {
  6237. name: "Normal",
  6238. height: math.unit(1.92, "m")
  6239. },
  6240. {
  6241. name: "Macro",
  6242. height: math.unit(214, "meters"),
  6243. default: true
  6244. },
  6245. {
  6246. name: "Macro+",
  6247. height: math.unit(12.237, "meters"),
  6248. },
  6249. {
  6250. name: "Megamacro",
  6251. height: math.unit(557, "megameters"),
  6252. },
  6253. {
  6254. name: "Unimaginable",
  6255. height: math.unit(120e9, "lightyears")
  6256. },
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6261. {
  6262. front: {
  6263. height: math.unit(2, "meters"),
  6264. weight: math.unit(80, "kg"),
  6265. name: "Front",
  6266. image: {
  6267. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6268. }
  6269. }
  6270. },
  6271. [
  6272. {
  6273. name: "Teramacro",
  6274. height: math.unit(500000, "lightyears"),
  6275. default: true
  6276. },
  6277. ]
  6278. ))
  6279. characterMakers.push(() => makeCharacter(
  6280. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6281. {
  6282. front: {
  6283. height: math.unit(2, "meters"),
  6284. weight: math.unit(150, "kg"),
  6285. name: "Front",
  6286. image: {
  6287. source: "./media/characters/vemus/front.svg",
  6288. extra: 2384 / 2084,
  6289. bottom: 0.0123
  6290. }
  6291. }
  6292. },
  6293. [
  6294. {
  6295. name: "Normal",
  6296. height: math.unit(3.75, "meters"),
  6297. default: true
  6298. },
  6299. {
  6300. name: "Big",
  6301. height: math.unit(8, "meters")
  6302. },
  6303. {
  6304. name: "Macro",
  6305. height: math.unit(100, "meters")
  6306. },
  6307. {
  6308. name: "Macro+",
  6309. height: math.unit(1500, "meters")
  6310. },
  6311. {
  6312. name: "Stellar",
  6313. height: math.unit(14e8, "meters")
  6314. },
  6315. ]
  6316. ))
  6317. characterMakers.push(() => makeCharacter(
  6318. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6319. {
  6320. front: {
  6321. height: math.unit(2, "meters"),
  6322. weight: math.unit(70, "kg"),
  6323. name: "Front",
  6324. image: {
  6325. source: "./media/characters/beherit/front.svg",
  6326. extra: 1408 / 1242
  6327. }
  6328. }
  6329. },
  6330. [
  6331. {
  6332. name: "Normal",
  6333. height: math.unit(6, "feet")
  6334. },
  6335. {
  6336. name: "Lorg",
  6337. height: math.unit(25, "feet"),
  6338. default: true
  6339. },
  6340. {
  6341. name: "Lorger",
  6342. height: math.unit(75, "feet")
  6343. },
  6344. {
  6345. name: "Macro",
  6346. height: math.unit(200, "meters")
  6347. },
  6348. ]
  6349. ))
  6350. characterMakers.push(() => makeCharacter(
  6351. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6352. {
  6353. front: {
  6354. height: math.unit(2, "meters"),
  6355. weight: math.unit(150, "kg"),
  6356. name: "Front",
  6357. image: {
  6358. source: "./media/characters/everett/front.svg",
  6359. extra: 2038 / 1737,
  6360. bottom: 0.03
  6361. }
  6362. },
  6363. paw: {
  6364. height: math.unit(2 / 3.6, "meters"),
  6365. name: "Paw",
  6366. image: {
  6367. source: "./media/characters/everett/paw.svg"
  6368. }
  6369. },
  6370. },
  6371. [
  6372. {
  6373. name: "Normal",
  6374. height: math.unit(15, "feet"),
  6375. default: true
  6376. },
  6377. {
  6378. name: "Lorg",
  6379. height: math.unit(70, "feet"),
  6380. default: true
  6381. },
  6382. {
  6383. name: "Lorger",
  6384. height: math.unit(250, "feet")
  6385. },
  6386. {
  6387. name: "Macro",
  6388. height: math.unit(500, "meters")
  6389. },
  6390. ]
  6391. ))
  6392. characterMakers.push(() => makeCharacter(
  6393. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6394. {
  6395. front: {
  6396. height: math.unit(2, "meters"),
  6397. weight: math.unit(86, "kg"),
  6398. name: "Front",
  6399. image: {
  6400. source: "./media/characters/rose/front.svg",
  6401. extra: 350/335,
  6402. bottom: 10/360
  6403. }
  6404. },
  6405. frontAlt: {
  6406. height: math.unit(1.6, "meters"),
  6407. weight: math.unit(86, "kg"),
  6408. name: "Front (Alt)",
  6409. image: {
  6410. source: "./media/characters/rose/front-alt.svg",
  6411. extra: 299/283,
  6412. bottom: 3/302
  6413. }
  6414. },
  6415. plush: {
  6416. height: math.unit(2, "meters"),
  6417. weight: math.unit(86/3, "kg"),
  6418. name: "Plush",
  6419. image: {
  6420. source: "./media/characters/rose/plush.svg",
  6421. extra: 361/337,
  6422. bottom: 11/372
  6423. }
  6424. },
  6425. },
  6426. [
  6427. {
  6428. name: "Mini-Micro",
  6429. height: math.unit(1, "cm")
  6430. },
  6431. {
  6432. name: "Micro",
  6433. height: math.unit(3.5, "inches"),
  6434. default: true
  6435. },
  6436. {
  6437. name: "Normal",
  6438. height: math.unit(6 + 1 / 6, "feet")
  6439. },
  6440. {
  6441. name: "Mini-Macro",
  6442. height: math.unit(9 + 10 / 12, "feet")
  6443. },
  6444. ]
  6445. ))
  6446. characterMakers.push(() => makeCharacter(
  6447. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6448. {
  6449. front: {
  6450. height: math.unit(2, "meters"),
  6451. weight: math.unit(350, "lbs"),
  6452. name: "Front",
  6453. image: {
  6454. source: "./media/characters/regal/front.svg"
  6455. }
  6456. },
  6457. back: {
  6458. height: math.unit(2, "meters"),
  6459. weight: math.unit(350, "lbs"),
  6460. name: "Back",
  6461. image: {
  6462. source: "./media/characters/regal/back.svg"
  6463. }
  6464. },
  6465. },
  6466. [
  6467. {
  6468. name: "Macro",
  6469. height: math.unit(350, "feet"),
  6470. default: true
  6471. }
  6472. ]
  6473. ))
  6474. characterMakers.push(() => makeCharacter(
  6475. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6476. {
  6477. front: {
  6478. height: math.unit(4 + 11 / 12, "feet"),
  6479. weight: math.unit(100, "lbs"),
  6480. name: "Front",
  6481. image: {
  6482. source: "./media/characters/opal/front.svg"
  6483. }
  6484. },
  6485. frontAlt: {
  6486. height: math.unit(4 + 11 / 12, "feet"),
  6487. weight: math.unit(100, "lbs"),
  6488. name: "Front (Alt)",
  6489. image: {
  6490. source: "./media/characters/opal/front-alt.svg"
  6491. }
  6492. },
  6493. },
  6494. [
  6495. {
  6496. name: "Small",
  6497. height: math.unit(4 + 11 / 12, "feet")
  6498. },
  6499. {
  6500. name: "Normal",
  6501. height: math.unit(20, "feet"),
  6502. default: true
  6503. },
  6504. {
  6505. name: "Macro",
  6506. height: math.unit(120, "feet")
  6507. },
  6508. {
  6509. name: "Megamacro",
  6510. height: math.unit(80, "miles")
  6511. },
  6512. {
  6513. name: "True Size",
  6514. height: math.unit(100000, "lightyears")
  6515. },
  6516. ]
  6517. ))
  6518. characterMakers.push(() => makeCharacter(
  6519. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6520. {
  6521. front: {
  6522. height: math.unit(6, "feet"),
  6523. weight: math.unit(200, "lbs"),
  6524. name: "Front",
  6525. image: {
  6526. source: "./media/characters/vector-wuff/front.svg"
  6527. }
  6528. }
  6529. },
  6530. [
  6531. {
  6532. name: "Normal",
  6533. height: math.unit(2.8, "meters")
  6534. },
  6535. {
  6536. name: "Macro",
  6537. height: math.unit(450, "meters"),
  6538. default: true
  6539. },
  6540. {
  6541. name: "Megamacro",
  6542. height: math.unit(15, "kilometers")
  6543. }
  6544. ]
  6545. ))
  6546. characterMakers.push(() => makeCharacter(
  6547. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6548. {
  6549. front: {
  6550. height: math.unit(6, "feet"),
  6551. weight: math.unit(256, "lbs"),
  6552. name: "Front",
  6553. image: {
  6554. source: "./media/characters/dannik/front.svg"
  6555. }
  6556. }
  6557. },
  6558. [
  6559. {
  6560. name: "Macro",
  6561. height: math.unit(69.57, "meters"),
  6562. default: true
  6563. },
  6564. ]
  6565. ))
  6566. characterMakers.push(() => makeCharacter(
  6567. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6568. {
  6569. front: {
  6570. height: math.unit(6, "feet"),
  6571. weight: math.unit(120, "lbs"),
  6572. name: "Front",
  6573. image: {
  6574. source: "./media/characters/azura-saharah/front.svg"
  6575. }
  6576. },
  6577. back: {
  6578. height: math.unit(6, "feet"),
  6579. weight: math.unit(120, "lbs"),
  6580. name: "Back",
  6581. image: {
  6582. source: "./media/characters/azura-saharah/back.svg"
  6583. }
  6584. },
  6585. },
  6586. [
  6587. {
  6588. name: "Macro",
  6589. height: math.unit(100, "feet"),
  6590. default: true
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6596. {
  6597. side: {
  6598. height: math.unit(5 + 4 / 12, "feet"),
  6599. weight: math.unit(163, "lbs"),
  6600. name: "Side",
  6601. image: {
  6602. source: "./media/characters/kennedy/side.svg"
  6603. }
  6604. }
  6605. },
  6606. [
  6607. {
  6608. name: "Standard Doggo",
  6609. height: math.unit(5 + 4 / 12, "feet")
  6610. },
  6611. {
  6612. name: "Big Doggo",
  6613. height: math.unit(25 + 3 / 12, "feet"),
  6614. default: true
  6615. },
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6620. {
  6621. front: {
  6622. height: math.unit(6, "feet"),
  6623. weight: math.unit(90, "lbs"),
  6624. name: "Front",
  6625. image: {
  6626. source: "./media/characters/odi-lunar/front.svg"
  6627. }
  6628. }
  6629. },
  6630. [
  6631. {
  6632. name: "Micro",
  6633. height: math.unit(3, "inches"),
  6634. default: true
  6635. },
  6636. {
  6637. name: "Normal",
  6638. height: math.unit(5.5, "feet")
  6639. }
  6640. ]
  6641. ))
  6642. characterMakers.push(() => makeCharacter(
  6643. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6644. {
  6645. back: {
  6646. height: math.unit(6, "feet"),
  6647. weight: math.unit(220, "lbs"),
  6648. name: "Back",
  6649. image: {
  6650. source: "./media/characters/mandake/back.svg"
  6651. }
  6652. }
  6653. },
  6654. [
  6655. {
  6656. name: "Normal",
  6657. height: math.unit(7, "feet"),
  6658. default: true
  6659. },
  6660. {
  6661. name: "Macro",
  6662. height: math.unit(78, "feet")
  6663. },
  6664. {
  6665. name: "Macro+",
  6666. height: math.unit(300, "meters")
  6667. },
  6668. {
  6669. name: "Macro++",
  6670. height: math.unit(2400, "feet")
  6671. },
  6672. {
  6673. name: "Megamacro",
  6674. height: math.unit(5167, "meters")
  6675. },
  6676. {
  6677. name: "Gigamacro",
  6678. height: math.unit(41769, "miles")
  6679. },
  6680. ]
  6681. ))
  6682. characterMakers.push(() => makeCharacter(
  6683. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6684. {
  6685. front: {
  6686. height: math.unit(6, "feet"),
  6687. weight: math.unit(120, "lbs"),
  6688. name: "Front",
  6689. image: {
  6690. source: "./media/characters/yozey/front.svg"
  6691. }
  6692. },
  6693. frontAlt: {
  6694. height: math.unit(6, "feet"),
  6695. weight: math.unit(120, "lbs"),
  6696. name: "Front (Alt)",
  6697. image: {
  6698. source: "./media/characters/yozey/front-alt.svg"
  6699. }
  6700. },
  6701. side: {
  6702. height: math.unit(6, "feet"),
  6703. weight: math.unit(120, "lbs"),
  6704. name: "Side",
  6705. image: {
  6706. source: "./media/characters/yozey/side.svg"
  6707. }
  6708. },
  6709. },
  6710. [
  6711. {
  6712. name: "Micro",
  6713. height: math.unit(3, "inches"),
  6714. default: true
  6715. },
  6716. {
  6717. name: "Normal",
  6718. height: math.unit(6, "feet")
  6719. }
  6720. ]
  6721. ))
  6722. characterMakers.push(() => makeCharacter(
  6723. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6724. {
  6725. front: {
  6726. height: math.unit(6, "feet"),
  6727. weight: math.unit(103, "lbs"),
  6728. name: "Front",
  6729. image: {
  6730. source: "./media/characters/valeska-voss/front.svg"
  6731. }
  6732. }
  6733. },
  6734. [
  6735. {
  6736. name: "Mini-Sized Sub",
  6737. height: math.unit(3.1, "inches")
  6738. },
  6739. {
  6740. name: "Mid-Sized Sub",
  6741. height: math.unit(6.2, "inches")
  6742. },
  6743. {
  6744. name: "Full-Sized Sub",
  6745. height: math.unit(9.3, "inches")
  6746. },
  6747. {
  6748. name: "Normal",
  6749. height: math.unit(5 + 2 / 12, "foot"),
  6750. default: true
  6751. },
  6752. ]
  6753. ))
  6754. characterMakers.push(() => makeCharacter(
  6755. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6756. {
  6757. front: {
  6758. height: math.unit(6, "feet"),
  6759. weight: math.unit(160, "lbs"),
  6760. name: "Front",
  6761. image: {
  6762. source: "./media/characters/gene-zeta/front.svg",
  6763. extra: 3006 / 2826,
  6764. bottom: 182 / 3188
  6765. }
  6766. }
  6767. },
  6768. [
  6769. {
  6770. name: "Micro",
  6771. height: math.unit(6, "inches")
  6772. },
  6773. {
  6774. name: "Normal",
  6775. height: math.unit(5 + 11 / 12, "foot"),
  6776. default: true
  6777. },
  6778. {
  6779. name: "Macro",
  6780. height: math.unit(140, "feet")
  6781. },
  6782. {
  6783. name: "Supercharged",
  6784. height: math.unit(2500, "feet")
  6785. },
  6786. ]
  6787. ))
  6788. characterMakers.push(() => makeCharacter(
  6789. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6790. {
  6791. front: {
  6792. height: math.unit(6, "feet"),
  6793. weight: math.unit(350, "lbs"),
  6794. name: "Front",
  6795. image: {
  6796. source: "./media/characters/razinox/front.svg",
  6797. extra: 1686 / 1548,
  6798. bottom: 28.2 / 1868
  6799. }
  6800. },
  6801. back: {
  6802. height: math.unit(6, "feet"),
  6803. weight: math.unit(350, "lbs"),
  6804. name: "Back",
  6805. image: {
  6806. source: "./media/characters/razinox/back.svg",
  6807. extra: 1660 / 1590,
  6808. bottom: 15 / 1665
  6809. }
  6810. },
  6811. },
  6812. [
  6813. {
  6814. name: "Normal",
  6815. height: math.unit(10 + 8 / 12, "foot")
  6816. },
  6817. {
  6818. name: "Minimacro",
  6819. height: math.unit(15, "foot")
  6820. },
  6821. {
  6822. name: "Macro",
  6823. height: math.unit(60, "foot"),
  6824. default: true
  6825. },
  6826. {
  6827. name: "Megamacro",
  6828. height: math.unit(5, "miles")
  6829. },
  6830. {
  6831. name: "Gigamacro",
  6832. height: math.unit(6000, "miles")
  6833. },
  6834. ]
  6835. ))
  6836. characterMakers.push(() => makeCharacter(
  6837. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6838. {
  6839. front: {
  6840. height: math.unit(6, "feet"),
  6841. weight: math.unit(150, "lbs"),
  6842. name: "Front",
  6843. image: {
  6844. source: "./media/characters/cobalt/front.svg"
  6845. }
  6846. }
  6847. },
  6848. [
  6849. {
  6850. name: "Normal",
  6851. height: math.unit(8 + 1 / 12, "foot")
  6852. },
  6853. {
  6854. name: "Macro",
  6855. height: math.unit(111, "foot"),
  6856. default: true
  6857. },
  6858. {
  6859. name: "Supracosmic",
  6860. height: math.unit(1e42, "feet")
  6861. },
  6862. ]
  6863. ))
  6864. characterMakers.push(() => makeCharacter(
  6865. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6866. {
  6867. front: {
  6868. height: math.unit(6, "feet"),
  6869. weight: math.unit(140, "lbs"),
  6870. name: "Front",
  6871. image: {
  6872. source: "./media/characters/amanda/front.svg"
  6873. }
  6874. }
  6875. },
  6876. [
  6877. {
  6878. name: "Micro",
  6879. height: math.unit(5, "inches"),
  6880. default: true
  6881. },
  6882. ]
  6883. ))
  6884. characterMakers.push(() => makeCharacter(
  6885. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6886. {
  6887. front: {
  6888. height: math.unit(2.75, "meters"),
  6889. weight: math.unit(1200, "lb"),
  6890. name: "Front",
  6891. image: {
  6892. source: "./media/characters/teal/front.svg",
  6893. extra: 2463 / 2320,
  6894. bottom: 166 / 2629
  6895. }
  6896. },
  6897. back: {
  6898. height: math.unit(2.75, "meters"),
  6899. weight: math.unit(1200, "lb"),
  6900. name: "Back",
  6901. image: {
  6902. source: "./media/characters/teal/back.svg",
  6903. extra: 2580 / 2489,
  6904. bottom: 151 / 2731
  6905. }
  6906. },
  6907. sitting: {
  6908. height: math.unit(1.9, "meters"),
  6909. weight: math.unit(1200, "lb"),
  6910. name: "Sitting",
  6911. image: {
  6912. source: "./media/characters/teal/sitting.svg",
  6913. extra: 623 / 590,
  6914. bottom: 121 / 744
  6915. }
  6916. },
  6917. standing: {
  6918. height: math.unit(2.75, "meters"),
  6919. weight: math.unit(1200, "lb"),
  6920. name: "Standing",
  6921. image: {
  6922. source: "./media/characters/teal/standing.svg",
  6923. extra: 923 / 893,
  6924. bottom: 60 / 983
  6925. }
  6926. },
  6927. stretching: {
  6928. height: math.unit(3.65, "meters"),
  6929. weight: math.unit(1200, "lb"),
  6930. name: "Stretching",
  6931. image: {
  6932. source: "./media/characters/teal/stretching.svg",
  6933. extra: 1276 / 1244,
  6934. bottom: 0 / 1276
  6935. }
  6936. },
  6937. legged: {
  6938. height: math.unit(1.3, "meters"),
  6939. weight: math.unit(100, "lb"),
  6940. name: "Legged",
  6941. image: {
  6942. source: "./media/characters/teal/legged.svg",
  6943. extra: 462 / 437,
  6944. bottom: 24 / 486
  6945. }
  6946. },
  6947. naga: {
  6948. height: math.unit(5.4, "meters"),
  6949. weight: math.unit(4000, "lb"),
  6950. name: "Naga",
  6951. image: {
  6952. source: "./media/characters/teal/naga.svg",
  6953. extra: 1902 / 1858,
  6954. bottom: 0 / 1902
  6955. }
  6956. },
  6957. hand: {
  6958. height: math.unit(0.52, "meters"),
  6959. name: "Hand",
  6960. image: {
  6961. source: "./media/characters/teal/hand.svg"
  6962. }
  6963. },
  6964. maw: {
  6965. height: math.unit(0.43, "meters"),
  6966. name: "Maw",
  6967. image: {
  6968. source: "./media/characters/teal/maw.svg"
  6969. }
  6970. },
  6971. slit: {
  6972. height: math.unit(0.25, "meters"),
  6973. name: "Slit",
  6974. image: {
  6975. source: "./media/characters/teal/slit.svg"
  6976. }
  6977. },
  6978. },
  6979. [
  6980. {
  6981. name: "Normal",
  6982. height: math.unit(2.75, "meters"),
  6983. default: true
  6984. },
  6985. {
  6986. name: "Macro",
  6987. height: math.unit(300, "feet")
  6988. },
  6989. {
  6990. name: "Macro+",
  6991. height: math.unit(2000, "feet")
  6992. },
  6993. ]
  6994. ))
  6995. characterMakers.push(() => makeCharacter(
  6996. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6997. {
  6998. frontCat: {
  6999. height: math.unit(6, "feet"),
  7000. weight: math.unit(180, "lbs"),
  7001. name: "Front (Cat)",
  7002. image: {
  7003. source: "./media/characters/ravin-amulet/front-cat.svg"
  7004. }
  7005. },
  7006. frontCatAlt: {
  7007. height: math.unit(6, "feet"),
  7008. weight: math.unit(180, "lbs"),
  7009. name: "Front (Alt, Cat)",
  7010. image: {
  7011. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  7012. }
  7013. },
  7014. frontWerewolf: {
  7015. height: math.unit(6 * 1.2, "feet"),
  7016. weight: math.unit(225, "lbs"),
  7017. name: "Front (Werewolf)",
  7018. image: {
  7019. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7020. }
  7021. },
  7022. backWerewolf: {
  7023. height: math.unit(6 * 1.2, "feet"),
  7024. weight: math.unit(225, "lbs"),
  7025. name: "Back (Werewolf)",
  7026. image: {
  7027. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7028. }
  7029. },
  7030. },
  7031. [
  7032. {
  7033. name: "Nano",
  7034. height: math.unit(1, "micrometer")
  7035. },
  7036. {
  7037. name: "Micro",
  7038. height: math.unit(1, "inch")
  7039. },
  7040. {
  7041. name: "Normal",
  7042. height: math.unit(6, "feet"),
  7043. default: true
  7044. },
  7045. {
  7046. name: "Macro",
  7047. height: math.unit(60, "feet")
  7048. }
  7049. ]
  7050. ))
  7051. characterMakers.push(() => makeCharacter(
  7052. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7053. {
  7054. front: {
  7055. height: math.unit(6, "feet"),
  7056. weight: math.unit(165, "lbs"),
  7057. name: "Front",
  7058. image: {
  7059. source: "./media/characters/fluoresce/front.svg"
  7060. }
  7061. }
  7062. },
  7063. [
  7064. {
  7065. name: "Micro",
  7066. height: math.unit(6, "cm")
  7067. },
  7068. {
  7069. name: "Normal",
  7070. height: math.unit(5 + 7 / 12, "feet"),
  7071. default: true
  7072. },
  7073. {
  7074. name: "Macro",
  7075. height: math.unit(56, "feet")
  7076. },
  7077. {
  7078. name: "Megamacro",
  7079. height: math.unit(1.9, "miles")
  7080. },
  7081. ]
  7082. ))
  7083. characterMakers.push(() => makeCharacter(
  7084. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7085. {
  7086. front: {
  7087. height: math.unit(9 + 6 / 12, "feet"),
  7088. weight: math.unit(523, "lbs"),
  7089. name: "Side",
  7090. image: {
  7091. source: "./media/characters/aurora/side.svg"
  7092. }
  7093. }
  7094. },
  7095. [
  7096. {
  7097. name: "Normal",
  7098. height: math.unit(9 + 6 / 12, "feet")
  7099. },
  7100. {
  7101. name: "Macro",
  7102. height: math.unit(96, "feet"),
  7103. default: true
  7104. },
  7105. {
  7106. name: "Macro+",
  7107. height: math.unit(243, "feet")
  7108. },
  7109. ]
  7110. ))
  7111. characterMakers.push(() => makeCharacter(
  7112. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7113. {
  7114. front: {
  7115. height: math.unit(194, "cm"),
  7116. weight: math.unit(90, "kg"),
  7117. name: "Front",
  7118. image: {
  7119. source: "./media/characters/ranek/front.svg"
  7120. }
  7121. },
  7122. side: {
  7123. height: math.unit(194, "cm"),
  7124. weight: math.unit(90, "kg"),
  7125. name: "Side",
  7126. image: {
  7127. source: "./media/characters/ranek/side.svg"
  7128. }
  7129. },
  7130. back: {
  7131. height: math.unit(194, "cm"),
  7132. weight: math.unit(90, "kg"),
  7133. name: "Back",
  7134. image: {
  7135. source: "./media/characters/ranek/back.svg"
  7136. }
  7137. },
  7138. feral: {
  7139. height: math.unit(30, "cm"),
  7140. weight: math.unit(1.6, "lbs"),
  7141. name: "Feral",
  7142. image: {
  7143. source: "./media/characters/ranek/feral.svg"
  7144. }
  7145. },
  7146. },
  7147. [
  7148. {
  7149. name: "Normal",
  7150. height: math.unit(194, "cm"),
  7151. default: true
  7152. },
  7153. {
  7154. name: "Macro",
  7155. height: math.unit(100, "meters")
  7156. },
  7157. ]
  7158. ))
  7159. characterMakers.push(() => makeCharacter(
  7160. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7161. {
  7162. front: {
  7163. height: math.unit(5 + 6 / 12, "feet"),
  7164. weight: math.unit(153, "lbs"),
  7165. name: "Front",
  7166. image: {
  7167. source: "./media/characters/andrew-cooper/front.svg"
  7168. }
  7169. },
  7170. },
  7171. [
  7172. {
  7173. name: "Nano",
  7174. height: math.unit(1, "mm")
  7175. },
  7176. {
  7177. name: "Micro",
  7178. height: math.unit(2, "inches")
  7179. },
  7180. {
  7181. name: "Normal",
  7182. height: math.unit(5 + 6 / 12, "feet"),
  7183. default: true
  7184. }
  7185. ]
  7186. ))
  7187. characterMakers.push(() => makeCharacter(
  7188. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7189. {
  7190. front: {
  7191. height: math.unit(6, "feet"),
  7192. weight: math.unit(180, "lbs"),
  7193. name: "Front",
  7194. image: {
  7195. source: "./media/characters/akane-sato/front.svg",
  7196. extra: 1219 / 1140
  7197. }
  7198. },
  7199. back: {
  7200. height: math.unit(6, "feet"),
  7201. weight: math.unit(180, "lbs"),
  7202. name: "Back",
  7203. image: {
  7204. source: "./media/characters/akane-sato/back.svg",
  7205. extra: 1219 / 1170
  7206. }
  7207. },
  7208. },
  7209. [
  7210. {
  7211. name: "Normal",
  7212. height: math.unit(2.5, "meters")
  7213. },
  7214. {
  7215. name: "Macro",
  7216. height: math.unit(250, "meters"),
  7217. default: true
  7218. },
  7219. {
  7220. name: "Megamacro",
  7221. height: math.unit(25, "km")
  7222. },
  7223. ]
  7224. ))
  7225. characterMakers.push(() => makeCharacter(
  7226. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7227. {
  7228. front: {
  7229. height: math.unit(6, "feet"),
  7230. weight: math.unit(65, "kg"),
  7231. name: "Front",
  7232. image: {
  7233. source: "./media/characters/rook/front.svg",
  7234. extra: 960 / 950
  7235. }
  7236. }
  7237. },
  7238. [
  7239. {
  7240. name: "Normal",
  7241. height: math.unit(8.8, "feet")
  7242. },
  7243. {
  7244. name: "Macro",
  7245. height: math.unit(88, "feet"),
  7246. default: true
  7247. },
  7248. {
  7249. name: "Megamacro",
  7250. height: math.unit(8, "miles")
  7251. },
  7252. ]
  7253. ))
  7254. characterMakers.push(() => makeCharacter(
  7255. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7256. {
  7257. front: {
  7258. height: math.unit(12 + 2 / 12, "feet"),
  7259. weight: math.unit(808, "lbs"),
  7260. name: "Front",
  7261. image: {
  7262. source: "./media/characters/prodigy/front.svg"
  7263. }
  7264. }
  7265. },
  7266. [
  7267. {
  7268. name: "Normal",
  7269. height: math.unit(12 + 2 / 12, "feet"),
  7270. default: true
  7271. },
  7272. {
  7273. name: "Macro",
  7274. height: math.unit(143, "feet")
  7275. },
  7276. {
  7277. name: "Macro+",
  7278. height: math.unit(400, "feet")
  7279. },
  7280. ]
  7281. ))
  7282. characterMakers.push(() => makeCharacter(
  7283. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7284. {
  7285. front: {
  7286. height: math.unit(6, "feet"),
  7287. weight: math.unit(225, "lbs"),
  7288. name: "Front",
  7289. image: {
  7290. source: "./media/characters/daniel/front.svg"
  7291. }
  7292. },
  7293. leaning: {
  7294. height: math.unit(6, "feet"),
  7295. weight: math.unit(225, "lbs"),
  7296. name: "Leaning",
  7297. image: {
  7298. source: "./media/characters/daniel/leaning.svg"
  7299. }
  7300. },
  7301. },
  7302. [
  7303. {
  7304. name: "Macro",
  7305. height: math.unit(1000, "feet"),
  7306. default: true
  7307. },
  7308. ]
  7309. ))
  7310. characterMakers.push(() => makeCharacter(
  7311. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7312. {
  7313. front: {
  7314. height: math.unit(6, "feet"),
  7315. weight: math.unit(88, "lbs"),
  7316. name: "Front",
  7317. image: {
  7318. source: "./media/characters/chiros/front.svg",
  7319. extra: 306 / 226
  7320. }
  7321. },
  7322. side: {
  7323. height: math.unit(6, "feet"),
  7324. weight: math.unit(88, "lbs"),
  7325. name: "Side",
  7326. image: {
  7327. source: "./media/characters/chiros/side.svg",
  7328. extra: 306 / 226
  7329. }
  7330. },
  7331. },
  7332. [
  7333. {
  7334. name: "Normal",
  7335. height: math.unit(6, "cm"),
  7336. default: true
  7337. },
  7338. ]
  7339. ))
  7340. characterMakers.push(() => makeCharacter(
  7341. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7342. {
  7343. front: {
  7344. height: math.unit(6, "feet"),
  7345. weight: math.unit(100, "lbs"),
  7346. name: "Front",
  7347. image: {
  7348. source: "./media/characters/selka/front.svg",
  7349. extra: 947 / 887
  7350. }
  7351. }
  7352. },
  7353. [
  7354. {
  7355. name: "Normal",
  7356. height: math.unit(5, "cm"),
  7357. default: true
  7358. },
  7359. ]
  7360. ))
  7361. characterMakers.push(() => makeCharacter(
  7362. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7363. {
  7364. front: {
  7365. height: math.unit(8 + 3 / 12, "feet"),
  7366. weight: math.unit(424, "lbs"),
  7367. name: "Front",
  7368. image: {
  7369. source: "./media/characters/verin/front.svg",
  7370. extra: 1845 / 1550
  7371. }
  7372. },
  7373. frontArmored: {
  7374. height: math.unit(8 + 3 / 12, "feet"),
  7375. weight: math.unit(424, "lbs"),
  7376. name: "Front (Armored)",
  7377. image: {
  7378. source: "./media/characters/verin/front-armor.svg",
  7379. extra: 1845 / 1550,
  7380. bottom: 0.01
  7381. }
  7382. },
  7383. back: {
  7384. height: math.unit(8 + 3 / 12, "feet"),
  7385. weight: math.unit(424, "lbs"),
  7386. name: "Back",
  7387. image: {
  7388. source: "./media/characters/verin/back.svg",
  7389. bottom: 0.1,
  7390. extra: 1
  7391. }
  7392. },
  7393. foot: {
  7394. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7395. name: "Foot",
  7396. image: {
  7397. source: "./media/characters/verin/foot.svg"
  7398. }
  7399. },
  7400. },
  7401. [
  7402. {
  7403. name: "Normal",
  7404. height: math.unit(8 + 3 / 12, "feet")
  7405. },
  7406. {
  7407. name: "Minimacro",
  7408. height: math.unit(21, "feet"),
  7409. default: true
  7410. },
  7411. {
  7412. name: "Macro",
  7413. height: math.unit(626, "feet")
  7414. },
  7415. ]
  7416. ))
  7417. characterMakers.push(() => makeCharacter(
  7418. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7419. {
  7420. front: {
  7421. height: math.unit(2.718, "meters"),
  7422. weight: math.unit(150, "lbs"),
  7423. name: "Front",
  7424. image: {
  7425. source: "./media/characters/sovrim-terraquian/front.svg"
  7426. }
  7427. },
  7428. back: {
  7429. height: math.unit(2.718, "meters"),
  7430. weight: math.unit(150, "lbs"),
  7431. name: "Back",
  7432. image: {
  7433. source: "./media/characters/sovrim-terraquian/back.svg"
  7434. }
  7435. }
  7436. },
  7437. [
  7438. {
  7439. name: "Micro",
  7440. height: math.unit(2, "inches")
  7441. },
  7442. {
  7443. name: "Small",
  7444. height: math.unit(1, "meter")
  7445. },
  7446. {
  7447. name: "Normal",
  7448. height: math.unit(Math.E, "meters"),
  7449. default: true
  7450. },
  7451. {
  7452. name: "Macro",
  7453. height: math.unit(20, "meters")
  7454. },
  7455. {
  7456. name: "Macro+",
  7457. height: math.unit(400, "meters")
  7458. },
  7459. ]
  7460. ))
  7461. characterMakers.push(() => makeCharacter(
  7462. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7463. {
  7464. front: {
  7465. height: math.unit(7, "feet"),
  7466. weight: math.unit(489, "lbs"),
  7467. name: "Front",
  7468. image: {
  7469. source: "./media/characters/reece-silvermane/front.svg",
  7470. bottom: 0.02,
  7471. extra: 1
  7472. }
  7473. },
  7474. },
  7475. [
  7476. {
  7477. name: "Macro",
  7478. height: math.unit(1.5, "miles"),
  7479. default: true
  7480. },
  7481. ]
  7482. ))
  7483. characterMakers.push(() => makeCharacter(
  7484. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7485. {
  7486. front: {
  7487. height: math.unit(6, "feet"),
  7488. weight: math.unit(78, "kg"),
  7489. name: "Front",
  7490. image: {
  7491. source: "./media/characters/kane/front.svg",
  7492. extra: 978 / 899
  7493. }
  7494. },
  7495. },
  7496. [
  7497. {
  7498. name: "Normal",
  7499. height: math.unit(2.1, "m"),
  7500. },
  7501. {
  7502. name: "Macro",
  7503. height: math.unit(1, "km"),
  7504. default: true
  7505. },
  7506. ]
  7507. ))
  7508. characterMakers.push(() => makeCharacter(
  7509. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7510. {
  7511. front: {
  7512. height: math.unit(6, "feet"),
  7513. weight: math.unit(200, "kg"),
  7514. name: "Front",
  7515. image: {
  7516. source: "./media/characters/tegon/front.svg",
  7517. bottom: 0.01,
  7518. extra: 1
  7519. }
  7520. },
  7521. },
  7522. [
  7523. {
  7524. name: "Micro",
  7525. height: math.unit(1, "inch")
  7526. },
  7527. {
  7528. name: "Normal",
  7529. height: math.unit(6 + 3 / 12, "feet"),
  7530. default: true
  7531. },
  7532. {
  7533. name: "Macro",
  7534. height: math.unit(300, "feet")
  7535. },
  7536. {
  7537. name: "Megamacro",
  7538. height: math.unit(69, "miles")
  7539. },
  7540. ]
  7541. ))
  7542. characterMakers.push(() => makeCharacter(
  7543. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7544. {
  7545. side: {
  7546. height: math.unit(6, "feet"),
  7547. weight: math.unit(2304, "lbs"),
  7548. name: "Side",
  7549. image: {
  7550. source: "./media/characters/arcturax/side.svg",
  7551. extra: 790 / 376,
  7552. bottom: 0.01
  7553. }
  7554. },
  7555. },
  7556. [
  7557. {
  7558. name: "Micro",
  7559. height: math.unit(2, "inch")
  7560. },
  7561. {
  7562. name: "Normal",
  7563. height: math.unit(6, "feet")
  7564. },
  7565. {
  7566. name: "Macro",
  7567. height: math.unit(39, "feet"),
  7568. default: true
  7569. },
  7570. {
  7571. name: "Megamacro",
  7572. height: math.unit(7, "miles")
  7573. },
  7574. ]
  7575. ))
  7576. characterMakers.push(() => makeCharacter(
  7577. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7578. {
  7579. front: {
  7580. height: math.unit(6, "feet"),
  7581. weight: math.unit(50, "lbs"),
  7582. name: "Front",
  7583. image: {
  7584. source: "./media/characters/sentri/front.svg",
  7585. extra: 1750 / 1570,
  7586. bottom: 0.025
  7587. }
  7588. },
  7589. frontAlt: {
  7590. height: math.unit(6, "feet"),
  7591. weight: math.unit(50, "lbs"),
  7592. name: "Front (Alt)",
  7593. image: {
  7594. source: "./media/characters/sentri/front-alt.svg",
  7595. extra: 1750 / 1570,
  7596. bottom: 0.025
  7597. }
  7598. },
  7599. },
  7600. [
  7601. {
  7602. name: "Normal",
  7603. height: math.unit(15, "feet"),
  7604. default: true
  7605. },
  7606. {
  7607. name: "Macro",
  7608. height: math.unit(2500, "feet")
  7609. }
  7610. ]
  7611. ))
  7612. characterMakers.push(() => makeCharacter(
  7613. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7614. {
  7615. front: {
  7616. height: math.unit(5 + 8 / 12, "feet"),
  7617. weight: math.unit(130, "lbs"),
  7618. name: "Front",
  7619. image: {
  7620. source: "./media/characters/corvin/front.svg",
  7621. extra: 1803 / 1629
  7622. }
  7623. },
  7624. frontShirt: {
  7625. height: math.unit(5 + 8 / 12, "feet"),
  7626. weight: math.unit(130, "lbs"),
  7627. name: "Front (Shirt)",
  7628. image: {
  7629. source: "./media/characters/corvin/front-shirt.svg",
  7630. extra: 1803 / 1629
  7631. }
  7632. },
  7633. frontPoncho: {
  7634. height: math.unit(5 + 8 / 12, "feet"),
  7635. weight: math.unit(130, "lbs"),
  7636. name: "Front (Poncho)",
  7637. image: {
  7638. source: "./media/characters/corvin/front-poncho.svg",
  7639. extra: 1803 / 1629
  7640. }
  7641. },
  7642. side: {
  7643. height: math.unit(5 + 8 / 12, "feet"),
  7644. weight: math.unit(130, "lbs"),
  7645. name: "Side",
  7646. image: {
  7647. source: "./media/characters/corvin/side.svg",
  7648. extra: 1012 / 945
  7649. }
  7650. },
  7651. back: {
  7652. height: math.unit(5 + 8 / 12, "feet"),
  7653. weight: math.unit(130, "lbs"),
  7654. name: "Back",
  7655. image: {
  7656. source: "./media/characters/corvin/back.svg",
  7657. extra: 1803 / 1629
  7658. }
  7659. },
  7660. },
  7661. [
  7662. {
  7663. name: "Micro",
  7664. height: math.unit(3, "inches")
  7665. },
  7666. {
  7667. name: "Normal",
  7668. height: math.unit(5 + 8 / 12, "feet")
  7669. },
  7670. {
  7671. name: "Macro",
  7672. height: math.unit(300, "feet"),
  7673. default: true
  7674. },
  7675. {
  7676. name: "Megamacro",
  7677. height: math.unit(500, "miles")
  7678. }
  7679. ]
  7680. ))
  7681. characterMakers.push(() => makeCharacter(
  7682. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7683. {
  7684. front: {
  7685. height: math.unit(6, "feet"),
  7686. weight: math.unit(135, "lbs"),
  7687. name: "Front",
  7688. image: {
  7689. source: "./media/characters/q/front.svg",
  7690. extra: 854 / 752,
  7691. bottom: 0.005
  7692. }
  7693. },
  7694. back: {
  7695. height: math.unit(6, "feet"),
  7696. weight: math.unit(130, "lbs"),
  7697. name: "Back",
  7698. image: {
  7699. source: "./media/characters/q/back.svg",
  7700. extra: 854 / 752
  7701. }
  7702. },
  7703. },
  7704. [
  7705. {
  7706. name: "Macro",
  7707. height: math.unit(90, "feet"),
  7708. default: true
  7709. },
  7710. {
  7711. name: "Extra Macro",
  7712. height: math.unit(300, "feet"),
  7713. },
  7714. {
  7715. name: "BIG WALF",
  7716. height: math.unit(750, "feet"),
  7717. },
  7718. ]
  7719. ))
  7720. characterMakers.push(() => makeCharacter(
  7721. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7722. {
  7723. front: {
  7724. height: math.unit(6, "feet"),
  7725. weight: math.unit(150, "lbs"),
  7726. name: "Front",
  7727. image: {
  7728. source: "./media/characters/carley/front.svg",
  7729. extra: 3927 / 3540,
  7730. bottom: 29.2 / 735
  7731. }
  7732. }
  7733. },
  7734. [
  7735. {
  7736. name: "Normal",
  7737. height: math.unit(6 + 3 / 12, "feet")
  7738. },
  7739. {
  7740. name: "Macro",
  7741. height: math.unit(185, "feet"),
  7742. default: true
  7743. },
  7744. {
  7745. name: "Megamacro",
  7746. height: math.unit(8, "miles"),
  7747. },
  7748. ]
  7749. ))
  7750. characterMakers.push(() => makeCharacter(
  7751. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7752. {
  7753. front: {
  7754. height: math.unit(3, "feet"),
  7755. weight: math.unit(28, "lbs"),
  7756. name: "Front",
  7757. image: {
  7758. source: "./media/characters/citrine/front.svg"
  7759. }
  7760. }
  7761. },
  7762. [
  7763. {
  7764. name: "Normal",
  7765. height: math.unit(3, "feet"),
  7766. default: true
  7767. }
  7768. ]
  7769. ))
  7770. characterMakers.push(() => makeCharacter(
  7771. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7772. {
  7773. front: {
  7774. height: math.unit(14, "feet"),
  7775. weight: math.unit(1450, "kg"),
  7776. capacity: math.unit(15, "people"),
  7777. name: "Front",
  7778. image: {
  7779. source: "./media/characters/aura-starwind/front.svg",
  7780. extra: 1455 / 1335
  7781. }
  7782. },
  7783. side: {
  7784. height: math.unit(14, "feet"),
  7785. weight: math.unit(1450, "kg"),
  7786. capacity: math.unit(15, "people"),
  7787. name: "Side",
  7788. image: {
  7789. source: "./media/characters/aura-starwind/side.svg",
  7790. extra: 1654 / 1497
  7791. }
  7792. },
  7793. taur: {
  7794. height: math.unit(18, "feet"),
  7795. weight: math.unit(5500, "kg"),
  7796. capacity: math.unit(50, "people"),
  7797. name: "Taur",
  7798. image: {
  7799. source: "./media/characters/aura-starwind/taur.svg",
  7800. extra: 1760 / 1650
  7801. }
  7802. },
  7803. feral: {
  7804. height: math.unit(46, "feet"),
  7805. weight: math.unit(25000, "kg"),
  7806. capacity: math.unit(120, "people"),
  7807. name: "Feral",
  7808. image: {
  7809. source: "./media/characters/aura-starwind/feral.svg"
  7810. }
  7811. },
  7812. },
  7813. [
  7814. {
  7815. name: "Normal",
  7816. height: math.unit(14, "feet"),
  7817. default: true
  7818. },
  7819. {
  7820. name: "Macro",
  7821. height: math.unit(50, "meters")
  7822. },
  7823. {
  7824. name: "Megamacro",
  7825. height: math.unit(5000, "meters")
  7826. },
  7827. {
  7828. name: "Gigamacro",
  7829. height: math.unit(100000, "kilometers")
  7830. },
  7831. ]
  7832. ))
  7833. characterMakers.push(() => makeCharacter(
  7834. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7835. {
  7836. front: {
  7837. height: math.unit(2 + 7 / 12, "feet"),
  7838. weight: math.unit(32, "lbs"),
  7839. name: "Front",
  7840. image: {
  7841. source: "./media/characters/rivet/front.svg",
  7842. extra: 1716 / 1658,
  7843. bottom: 0.03
  7844. }
  7845. },
  7846. foot: {
  7847. height: math.unit(0.551, "feet"),
  7848. name: "Rivet's Foot",
  7849. image: {
  7850. source: "./media/characters/rivet/foot.svg"
  7851. },
  7852. rename: true
  7853. }
  7854. },
  7855. [
  7856. {
  7857. name: "Micro",
  7858. height: math.unit(1.5, "inches"),
  7859. },
  7860. {
  7861. name: "Normal",
  7862. height: math.unit(2 + 7 / 12, "feet"),
  7863. default: true
  7864. },
  7865. {
  7866. name: "Macro",
  7867. height: math.unit(85, "feet")
  7868. },
  7869. {
  7870. name: "Megamacro",
  7871. height: math.unit(2.2, "km")
  7872. }
  7873. ]
  7874. ))
  7875. characterMakers.push(() => makeCharacter(
  7876. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7877. {
  7878. front: {
  7879. height: math.unit(5 + 9 / 12, "feet"),
  7880. weight: math.unit(150, "lbs"),
  7881. name: "Front",
  7882. image: {
  7883. source: "./media/characters/coffee/front.svg",
  7884. extra: 3666 / 3032,
  7885. bottom: 0.04
  7886. }
  7887. },
  7888. foot: {
  7889. height: math.unit(1.29, "feet"),
  7890. name: "Foot",
  7891. image: {
  7892. source: "./media/characters/coffee/foot.svg"
  7893. }
  7894. },
  7895. },
  7896. [
  7897. {
  7898. name: "Micro",
  7899. height: math.unit(2, "inches"),
  7900. },
  7901. {
  7902. name: "Normal",
  7903. height: math.unit(5 + 9 / 12, "feet"),
  7904. default: true
  7905. },
  7906. {
  7907. name: "Macro",
  7908. height: math.unit(800, "feet")
  7909. },
  7910. {
  7911. name: "Megamacro",
  7912. height: math.unit(25, "miles")
  7913. }
  7914. ]
  7915. ))
  7916. characterMakers.push(() => makeCharacter(
  7917. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7918. {
  7919. front: {
  7920. height: math.unit(6, "feet"),
  7921. weight: math.unit(200, "lbs"),
  7922. name: "Front",
  7923. image: {
  7924. source: "./media/characters/chari-gal/front.svg",
  7925. extra: 1568 / 1385,
  7926. bottom: 0.047
  7927. }
  7928. },
  7929. gigantamax: {
  7930. height: math.unit(6 * 16, "feet"),
  7931. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7932. name: "Gigantamax",
  7933. image: {
  7934. source: "./media/characters/chari-gal/gigantamax.svg",
  7935. extra: 1124 / 888,
  7936. bottom: 0.03
  7937. }
  7938. },
  7939. },
  7940. [
  7941. {
  7942. name: "Normal",
  7943. height: math.unit(5 + 7 / 12, "feet")
  7944. },
  7945. {
  7946. name: "Macro",
  7947. height: math.unit(200, "feet"),
  7948. default: true
  7949. }
  7950. ]
  7951. ))
  7952. characterMakers.push(() => makeCharacter(
  7953. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7954. {
  7955. front: {
  7956. height: math.unit(6, "feet"),
  7957. weight: math.unit(150, "lbs"),
  7958. name: "Front",
  7959. image: {
  7960. source: "./media/characters/nova/front.svg",
  7961. extra: 5000 / 4722,
  7962. bottom: 0.02
  7963. }
  7964. }
  7965. },
  7966. [
  7967. {
  7968. name: "Micro-",
  7969. height: math.unit(0.8, "inches")
  7970. },
  7971. {
  7972. name: "Micro",
  7973. height: math.unit(2, "inches"),
  7974. default: true
  7975. },
  7976. ]
  7977. ))
  7978. characterMakers.push(() => makeCharacter(
  7979. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7980. {
  7981. front: {
  7982. height: math.unit(3 + 1 / 12, "feet"),
  7983. weight: math.unit(21.7, "lbs"),
  7984. name: "Front",
  7985. image: {
  7986. source: "./media/characters/argent/front.svg",
  7987. extra: 1471 / 1331,
  7988. bottom: 100.8 / 1575.5
  7989. }
  7990. }
  7991. },
  7992. [
  7993. {
  7994. name: "Micro",
  7995. height: math.unit(2, "inches")
  7996. },
  7997. {
  7998. name: "Normal",
  7999. height: math.unit(3 + 1 / 12, "feet"),
  8000. default: true
  8001. },
  8002. {
  8003. name: "Macro",
  8004. height: math.unit(120, "feet")
  8005. },
  8006. ]
  8007. ))
  8008. characterMakers.push(() => makeCharacter(
  8009. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  8010. {
  8011. lamp: {
  8012. height: math.unit(7 * 1559 / 989, "feet"),
  8013. name: "Magic Lamp",
  8014. image: {
  8015. source: "./media/characters/mira-al-cul/lamp.svg",
  8016. extra: 1617 / 1559
  8017. }
  8018. },
  8019. front: {
  8020. height: math.unit(7, "feet"),
  8021. name: "Front",
  8022. image: {
  8023. source: "./media/characters/mira-al-cul/front.svg",
  8024. extra: 1044 / 990
  8025. }
  8026. },
  8027. },
  8028. [
  8029. {
  8030. name: "Heavily Restricted",
  8031. height: math.unit(7 * 1559 / 989, "feet")
  8032. },
  8033. {
  8034. name: "Freshly Freed",
  8035. height: math.unit(50 * 1559 / 989, "feet")
  8036. },
  8037. {
  8038. name: "World Encompassing",
  8039. height: math.unit(10000 * 1559 / 989, "miles")
  8040. },
  8041. {
  8042. name: "Galactic",
  8043. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8044. },
  8045. {
  8046. name: "Palmed Universe",
  8047. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8048. default: true
  8049. },
  8050. {
  8051. name: "Multiversal Matriarch",
  8052. height: math.unit(8.87e10, "yottameters")
  8053. },
  8054. {
  8055. name: "Void Mother",
  8056. height: math.unit(3.14e110, "yottaparsecs")
  8057. },
  8058. {
  8059. name: "Toying with Transcendence",
  8060. height: math.unit(1e307, "meters")
  8061. },
  8062. ]
  8063. ))
  8064. characterMakers.push(() => makeCharacter(
  8065. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8066. {
  8067. front: {
  8068. height: math.unit(17 + 1 / 12, "feet"),
  8069. weight: math.unit(476.2 * 5, "lbs"),
  8070. name: "Front",
  8071. image: {
  8072. source: "./media/characters/kuro-shi-uchū/front.svg",
  8073. extra: 2329 / 1835,
  8074. bottom: 0.02
  8075. }
  8076. },
  8077. },
  8078. [
  8079. {
  8080. name: "Micro",
  8081. height: math.unit(2, "inches")
  8082. },
  8083. {
  8084. name: "Normal",
  8085. height: math.unit(12, "meters")
  8086. },
  8087. {
  8088. name: "Planetary",
  8089. height: math.unit(0.00929, "AU"),
  8090. default: true
  8091. },
  8092. {
  8093. name: "Universal",
  8094. height: math.unit(20, "gigaparsecs")
  8095. },
  8096. ]
  8097. ))
  8098. characterMakers.push(() => makeCharacter(
  8099. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8100. {
  8101. front: {
  8102. height: math.unit(5 + 2 / 12, "feet"),
  8103. weight: math.unit(120, "lbs"),
  8104. name: "Front",
  8105. image: {
  8106. source: "./media/characters/katherine/front.svg",
  8107. extra: 2075 / 1969
  8108. }
  8109. },
  8110. dress: {
  8111. height: math.unit(5 + 2 / 12, "feet"),
  8112. weight: math.unit(120, "lbs"),
  8113. name: "Dress",
  8114. image: {
  8115. source: "./media/characters/katherine/dress.svg",
  8116. extra: 2258 / 2064
  8117. }
  8118. },
  8119. },
  8120. [
  8121. {
  8122. name: "Micro",
  8123. height: math.unit(1, "inches"),
  8124. default: true
  8125. },
  8126. {
  8127. name: "Normal",
  8128. height: math.unit(5 + 2 / 12, "feet")
  8129. },
  8130. {
  8131. name: "Macro",
  8132. height: math.unit(100, "meters")
  8133. },
  8134. {
  8135. name: "Megamacro",
  8136. height: math.unit(80, "miles")
  8137. },
  8138. ]
  8139. ))
  8140. characterMakers.push(() => makeCharacter(
  8141. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8142. {
  8143. front: {
  8144. height: math.unit(7 + 8 / 12, "feet"),
  8145. weight: math.unit(250, "lbs"),
  8146. name: "Front",
  8147. image: {
  8148. source: "./media/characters/yevis/front.svg",
  8149. extra: 1938 / 1755
  8150. }
  8151. }
  8152. },
  8153. [
  8154. {
  8155. name: "Mortal",
  8156. height: math.unit(7 + 8 / 12, "feet")
  8157. },
  8158. {
  8159. name: "Battle",
  8160. height: math.unit(25 + 11 / 12, "feet")
  8161. },
  8162. {
  8163. name: "Wrath",
  8164. height: math.unit(1654 + 11 / 12, "feet")
  8165. },
  8166. {
  8167. name: "Planet Destroyer",
  8168. height: math.unit(12000, "miles")
  8169. },
  8170. {
  8171. name: "Galaxy Conqueror",
  8172. height: math.unit(1.45, "zettameters"),
  8173. default: true
  8174. },
  8175. {
  8176. name: "Universal War",
  8177. height: math.unit(184, "gigaparsecs")
  8178. },
  8179. {
  8180. name: "Eternity War",
  8181. height: math.unit(1.98e55, "yottaparsecs")
  8182. },
  8183. ]
  8184. ))
  8185. characterMakers.push(() => makeCharacter(
  8186. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8187. {
  8188. front: {
  8189. height: math.unit(5 + 8 / 12, "feet"),
  8190. weight: math.unit(63, "kg"),
  8191. name: "Front",
  8192. image: {
  8193. source: "./media/characters/xavier/front.svg",
  8194. extra: 944 / 883
  8195. }
  8196. },
  8197. frontStretch: {
  8198. height: math.unit(5 + 8 / 12, "feet"),
  8199. weight: math.unit(63, "kg"),
  8200. name: "Stretching",
  8201. image: {
  8202. source: "./media/characters/xavier/front-stretch.svg",
  8203. extra: 962 / 820
  8204. }
  8205. },
  8206. },
  8207. [
  8208. {
  8209. name: "Normal",
  8210. height: math.unit(5 + 8 / 12, "feet")
  8211. },
  8212. {
  8213. name: "Macro",
  8214. height: math.unit(100, "meters"),
  8215. default: true
  8216. },
  8217. {
  8218. name: "McLargeHuge",
  8219. height: math.unit(10, "miles")
  8220. },
  8221. ]
  8222. ))
  8223. characterMakers.push(() => makeCharacter(
  8224. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8225. {
  8226. front: {
  8227. height: math.unit(5 + 5 / 12, "feet"),
  8228. weight: math.unit(150, "lb"),
  8229. name: "Front",
  8230. image: {
  8231. source: "./media/characters/joshii/front.svg",
  8232. extra: 765 / 653,
  8233. bottom: 51 / 816
  8234. }
  8235. },
  8236. foot: {
  8237. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8238. name: "Foot",
  8239. image: {
  8240. source: "./media/characters/joshii/foot.svg"
  8241. }
  8242. },
  8243. },
  8244. [
  8245. {
  8246. name: "Micro",
  8247. height: math.unit(2, "inches"),
  8248. default: true
  8249. },
  8250. {
  8251. name: "Normal",
  8252. height: math.unit(5 + 5 / 12, "feet")
  8253. },
  8254. {
  8255. name: "Macro",
  8256. height: math.unit(785, "feet")
  8257. },
  8258. {
  8259. name: "Megamacro",
  8260. height: math.unit(24.5, "miles")
  8261. },
  8262. ]
  8263. ))
  8264. characterMakers.push(() => makeCharacter(
  8265. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8266. {
  8267. front: {
  8268. height: math.unit(6, "feet"),
  8269. weight: math.unit(150, "lb"),
  8270. name: "Front",
  8271. image: {
  8272. source: "./media/characters/goddess-elizabeth/front.svg",
  8273. extra: 1800 / 1525,
  8274. bottom: 0.005
  8275. }
  8276. },
  8277. foot: {
  8278. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8279. name: "Foot",
  8280. image: {
  8281. source: "./media/characters/goddess-elizabeth/foot.svg"
  8282. }
  8283. },
  8284. mouth: {
  8285. height: math.unit(6, "feet"),
  8286. name: "Mouth",
  8287. image: {
  8288. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8289. }
  8290. },
  8291. },
  8292. [
  8293. {
  8294. name: "Micro",
  8295. height: math.unit(12, "feet")
  8296. },
  8297. {
  8298. name: "Normal",
  8299. height: math.unit(80, "miles"),
  8300. default: true
  8301. },
  8302. {
  8303. name: "Macro",
  8304. height: math.unit(15000, "parsecs")
  8305. },
  8306. ]
  8307. ))
  8308. characterMakers.push(() => makeCharacter(
  8309. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8310. {
  8311. front: {
  8312. height: math.unit(5 + 9 / 12, "feet"),
  8313. weight: math.unit(144, "lb"),
  8314. name: "Front",
  8315. image: {
  8316. source: "./media/characters/kara/front.svg"
  8317. }
  8318. },
  8319. feet: {
  8320. height: math.unit(6 / 6.765, "feet"),
  8321. name: "Kara's Feet",
  8322. rename: true,
  8323. image: {
  8324. source: "./media/characters/kara/feet.svg"
  8325. }
  8326. },
  8327. },
  8328. [
  8329. {
  8330. name: "Normal",
  8331. height: math.unit(5 + 9 / 12, "feet")
  8332. },
  8333. {
  8334. name: "Macro",
  8335. height: math.unit(174, "feet"),
  8336. default: true
  8337. },
  8338. ]
  8339. ))
  8340. characterMakers.push(() => makeCharacter(
  8341. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8342. {
  8343. front: {
  8344. height: math.unit(18, "feet"),
  8345. weight: math.unit(4050, "lb"),
  8346. name: "Front",
  8347. image: {
  8348. source: "./media/characters/tyrone/front.svg",
  8349. extra: 2405 / 2270,
  8350. bottom: 182 / 2587
  8351. }
  8352. },
  8353. },
  8354. [
  8355. {
  8356. name: "Normal",
  8357. height: math.unit(18, "feet"),
  8358. default: true
  8359. },
  8360. {
  8361. name: "Macro",
  8362. height: math.unit(300, "feet")
  8363. },
  8364. {
  8365. name: "Megamacro",
  8366. height: math.unit(15, "km")
  8367. },
  8368. {
  8369. name: "Gigamacro",
  8370. height: math.unit(500, "km")
  8371. },
  8372. {
  8373. name: "Teramacro",
  8374. height: math.unit(0.5, "gigameters")
  8375. },
  8376. {
  8377. name: "Omnimacro",
  8378. height: math.unit(1e252, "yottauniverse")
  8379. },
  8380. ]
  8381. ))
  8382. characterMakers.push(() => makeCharacter(
  8383. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8384. {
  8385. front: {
  8386. height: math.unit(7 + 8 / 12, "feet"),
  8387. weight: math.unit(120, "lb"),
  8388. name: "Front",
  8389. image: {
  8390. source: "./media/characters/danny/front.svg",
  8391. extra: 1490 / 1350
  8392. }
  8393. },
  8394. back: {
  8395. height: math.unit(7 + 8 / 12, "feet"),
  8396. weight: math.unit(120, "lb"),
  8397. name: "Back",
  8398. image: {
  8399. source: "./media/characters/danny/back.svg",
  8400. extra: 1490 / 1350
  8401. }
  8402. },
  8403. },
  8404. [
  8405. {
  8406. name: "Normal",
  8407. height: math.unit(7 + 8 / 12, "feet"),
  8408. default: true
  8409. },
  8410. ]
  8411. ))
  8412. characterMakers.push(() => makeCharacter(
  8413. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8414. {
  8415. front: {
  8416. height: math.unit(3.5, "inches"),
  8417. weight: math.unit(19, "grams"),
  8418. name: "Front",
  8419. image: {
  8420. source: "./media/characters/mallow/front.svg",
  8421. extra: 471 / 431
  8422. }
  8423. },
  8424. back: {
  8425. height: math.unit(3.5, "inches"),
  8426. weight: math.unit(19, "grams"),
  8427. name: "Back",
  8428. image: {
  8429. source: "./media/characters/mallow/back.svg",
  8430. extra: 471 / 431
  8431. }
  8432. },
  8433. },
  8434. [
  8435. {
  8436. name: "Normal",
  8437. height: math.unit(3.5, "inches"),
  8438. default: true
  8439. },
  8440. ]
  8441. ))
  8442. characterMakers.push(() => makeCharacter(
  8443. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8444. {
  8445. front: {
  8446. height: math.unit(9, "feet"),
  8447. weight: math.unit(230, "kg"),
  8448. name: "Front",
  8449. image: {
  8450. source: "./media/characters/starry-aqua/front.svg"
  8451. }
  8452. },
  8453. back: {
  8454. height: math.unit(9, "feet"),
  8455. weight: math.unit(230, "kg"),
  8456. name: "Back",
  8457. image: {
  8458. source: "./media/characters/starry-aqua/back.svg"
  8459. }
  8460. },
  8461. hand: {
  8462. height: math.unit(9 * 0.1168, "feet"),
  8463. name: "Hand",
  8464. image: {
  8465. source: "./media/characters/starry-aqua/hand.svg"
  8466. }
  8467. },
  8468. foot: {
  8469. height: math.unit(9 * 0.18, "feet"),
  8470. name: "Foot",
  8471. image: {
  8472. source: "./media/characters/starry-aqua/foot.svg"
  8473. }
  8474. }
  8475. },
  8476. [
  8477. {
  8478. name: "Micro",
  8479. height: math.unit(3, "inches")
  8480. },
  8481. {
  8482. name: "Normal",
  8483. height: math.unit(9, "feet")
  8484. },
  8485. {
  8486. name: "Macro",
  8487. height: math.unit(300, "feet"),
  8488. default: true
  8489. },
  8490. {
  8491. name: "Megamacro",
  8492. height: math.unit(3200, "feet")
  8493. }
  8494. ]
  8495. ))
  8496. characterMakers.push(() => makeCharacter(
  8497. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8498. {
  8499. front: {
  8500. height: math.unit(6, "feet"),
  8501. weight: math.unit(230, "lb"),
  8502. name: "Front",
  8503. image: {
  8504. source: "./media/characters/luka/front.svg",
  8505. extra: 1,
  8506. bottom: 0.025
  8507. }
  8508. },
  8509. },
  8510. [
  8511. {
  8512. name: "Normal",
  8513. height: math.unit(12 + 8 / 12, "feet"),
  8514. default: true
  8515. },
  8516. {
  8517. name: "Minimacro",
  8518. height: math.unit(20, "feet")
  8519. },
  8520. {
  8521. name: "Macro",
  8522. height: math.unit(250, "feet")
  8523. },
  8524. {
  8525. name: "Megamacro",
  8526. height: math.unit(5, "miles")
  8527. },
  8528. {
  8529. name: "Gigamacro",
  8530. height: math.unit(8000, "miles")
  8531. },
  8532. ]
  8533. ))
  8534. characterMakers.push(() => makeCharacter(
  8535. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8536. {
  8537. front: {
  8538. height: math.unit(6, "feet"),
  8539. weight: math.unit(150, "lb"),
  8540. name: "Front",
  8541. image: {
  8542. source: "./media/characters/natalie-nightring/front.svg",
  8543. extra: 1,
  8544. bottom: 0.06
  8545. }
  8546. },
  8547. },
  8548. [
  8549. {
  8550. name: "Uh Oh",
  8551. height: math.unit(0.1, "mm")
  8552. },
  8553. {
  8554. name: "Small",
  8555. height: math.unit(3, "inches")
  8556. },
  8557. {
  8558. name: "Human Scale",
  8559. height: math.unit(6, "feet")
  8560. },
  8561. {
  8562. name: "Librarian",
  8563. height: math.unit(50, "feet"),
  8564. default: true
  8565. },
  8566. {
  8567. name: "Immense",
  8568. height: math.unit(200, "miles")
  8569. },
  8570. ]
  8571. ))
  8572. characterMakers.push(() => makeCharacter(
  8573. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8574. {
  8575. front: {
  8576. height: math.unit(6, "feet"),
  8577. weight: math.unit(180, "lbs"),
  8578. name: "Front",
  8579. image: {
  8580. source: "./media/characters/danni-rosie/front.svg",
  8581. extra: 1260 / 1128,
  8582. bottom: 0.022
  8583. }
  8584. },
  8585. },
  8586. [
  8587. {
  8588. name: "Micro",
  8589. height: math.unit(2, "inches"),
  8590. default: true
  8591. },
  8592. ]
  8593. ))
  8594. characterMakers.push(() => makeCharacter(
  8595. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8596. {
  8597. front: {
  8598. height: math.unit(5 + 9 / 12, "feet"),
  8599. weight: math.unit(220, "lb"),
  8600. name: "Front",
  8601. image: {
  8602. source: "./media/characters/samantha-kruse/front.svg",
  8603. extra: (985 / 935),
  8604. bottom: 0.03
  8605. }
  8606. },
  8607. frontUndressed: {
  8608. height: math.unit(5 + 9 / 12, "feet"),
  8609. weight: math.unit(220, "lb"),
  8610. name: "Front (Undressed)",
  8611. image: {
  8612. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8613. extra: (973 / 923),
  8614. bottom: 0.025
  8615. }
  8616. },
  8617. fat: {
  8618. height: math.unit(5 + 9 / 12, "feet"),
  8619. weight: math.unit(900, "lb"),
  8620. name: "Front (Fat)",
  8621. image: {
  8622. source: "./media/characters/samantha-kruse/fat.svg",
  8623. extra: 2688 / 2561
  8624. }
  8625. },
  8626. },
  8627. [
  8628. {
  8629. name: "Normal",
  8630. height: math.unit(5 + 9 / 12, "feet"),
  8631. default: true
  8632. }
  8633. ]
  8634. ))
  8635. characterMakers.push(() => makeCharacter(
  8636. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8637. {
  8638. back: {
  8639. height: math.unit(5 + 4 / 12, "feet"),
  8640. weight: math.unit(4963, "lb"),
  8641. name: "Back",
  8642. image: {
  8643. source: "./media/characters/amelia-rosie/back.svg",
  8644. extra: 1113 / 963,
  8645. bottom: 0.01
  8646. }
  8647. },
  8648. },
  8649. [
  8650. {
  8651. name: "Level 0",
  8652. height: math.unit(5 + 4 / 12, "feet")
  8653. },
  8654. {
  8655. name: "Level 1",
  8656. height: math.unit(164597, "feet"),
  8657. default: true
  8658. },
  8659. {
  8660. name: "Level 2",
  8661. height: math.unit(956243, "miles")
  8662. },
  8663. {
  8664. name: "Level 3",
  8665. height: math.unit(29421709423, "miles")
  8666. },
  8667. {
  8668. name: "Level 4",
  8669. height: math.unit(154, "lightyears")
  8670. },
  8671. {
  8672. name: "Level 5",
  8673. height: math.unit(4738272, "lightyears")
  8674. },
  8675. {
  8676. name: "Level 6",
  8677. height: math.unit(145787152896, "lightyears")
  8678. },
  8679. ]
  8680. ))
  8681. characterMakers.push(() => makeCharacter(
  8682. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8683. {
  8684. front: {
  8685. height: math.unit(5 + 11 / 12, "feet"),
  8686. weight: math.unit(65, "kg"),
  8687. name: "Front",
  8688. image: {
  8689. source: "./media/characters/rook-kitara/front.svg",
  8690. extra: 1347 / 1274,
  8691. bottom: 0.005
  8692. }
  8693. },
  8694. },
  8695. [
  8696. {
  8697. name: "Totally Unfair",
  8698. height: math.unit(1.8, "mm")
  8699. },
  8700. {
  8701. name: "Lap Rookie",
  8702. height: math.unit(1.4, "feet")
  8703. },
  8704. {
  8705. name: "Normal",
  8706. height: math.unit(5 + 11 / 12, "feet"),
  8707. default: true
  8708. },
  8709. {
  8710. name: "How Did This Happen",
  8711. height: math.unit(80, "miles")
  8712. }
  8713. ]
  8714. ))
  8715. characterMakers.push(() => makeCharacter(
  8716. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8717. {
  8718. front: {
  8719. height: math.unit(7, "feet"),
  8720. weight: math.unit(300, "lb"),
  8721. name: "Front",
  8722. image: {
  8723. source: "./media/characters/pisces/front.svg",
  8724. extra: 2255 / 2115,
  8725. bottom: 0.03
  8726. }
  8727. },
  8728. back: {
  8729. height: math.unit(7, "feet"),
  8730. weight: math.unit(300, "lb"),
  8731. name: "Back",
  8732. image: {
  8733. source: "./media/characters/pisces/back.svg",
  8734. extra: 2146 / 2055,
  8735. bottom: 0.04
  8736. }
  8737. },
  8738. },
  8739. [
  8740. {
  8741. name: "Normal",
  8742. height: math.unit(7, "feet"),
  8743. default: true
  8744. },
  8745. {
  8746. name: "Swimming Pool",
  8747. height: math.unit(12.2, "meters")
  8748. },
  8749. {
  8750. name: "Olympic Swimming Pool",
  8751. height: math.unit(56.3, "meters")
  8752. },
  8753. {
  8754. name: "Lake Superior",
  8755. height: math.unit(93900, "meters")
  8756. },
  8757. {
  8758. name: "Mediterranean Sea",
  8759. height: math.unit(644457, "meters")
  8760. },
  8761. {
  8762. name: "World's Oceans",
  8763. height: math.unit(4567491, "meters")
  8764. },
  8765. ]
  8766. ))
  8767. characterMakers.push(() => makeCharacter(
  8768. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8769. {
  8770. front: {
  8771. height: math.unit(2.3, "meters"),
  8772. weight: math.unit(120, "kg"),
  8773. name: "Front",
  8774. image: {
  8775. source: "./media/characters/zelas/front.svg"
  8776. }
  8777. },
  8778. side: {
  8779. height: math.unit(2.3, "meters"),
  8780. weight: math.unit(120, "kg"),
  8781. name: "Side",
  8782. image: {
  8783. source: "./media/characters/zelas/side.svg"
  8784. }
  8785. },
  8786. back: {
  8787. height: math.unit(2.3, "meters"),
  8788. weight: math.unit(120, "kg"),
  8789. name: "Back",
  8790. image: {
  8791. source: "./media/characters/zelas/back.svg"
  8792. }
  8793. },
  8794. foot: {
  8795. height: math.unit(1.116, "feet"),
  8796. name: "Foot",
  8797. image: {
  8798. source: "./media/characters/zelas/foot.svg"
  8799. }
  8800. },
  8801. },
  8802. [
  8803. {
  8804. name: "Normal",
  8805. height: math.unit(2.3, "meters")
  8806. },
  8807. {
  8808. name: "Macro",
  8809. height: math.unit(30, "meters"),
  8810. default: true
  8811. },
  8812. ]
  8813. ))
  8814. characterMakers.push(() => makeCharacter(
  8815. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8816. {
  8817. front: {
  8818. height: math.unit(1, "inch"),
  8819. weight: math.unit(0.21, "grams"),
  8820. name: "Front",
  8821. image: {
  8822. source: "./media/characters/talbot/front.svg",
  8823. extra: 594 / 544
  8824. }
  8825. },
  8826. },
  8827. [
  8828. {
  8829. name: "Micro",
  8830. height: math.unit(1, "inch"),
  8831. default: true
  8832. },
  8833. ]
  8834. ))
  8835. characterMakers.push(() => makeCharacter(
  8836. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8837. {
  8838. front: {
  8839. height: math.unit(3 + 3 / 12, "feet"),
  8840. weight: math.unit(51.8, "lb"),
  8841. name: "Front",
  8842. image: {
  8843. source: "./media/characters/fliss/front.svg",
  8844. extra: 840 / 640
  8845. }
  8846. },
  8847. },
  8848. [
  8849. {
  8850. name: "Teeny Tiny",
  8851. height: math.unit(1, "mm")
  8852. },
  8853. {
  8854. name: "Small",
  8855. height: math.unit(1, "inch"),
  8856. default: true
  8857. },
  8858. {
  8859. name: "Standard Sylveon",
  8860. height: math.unit(3 + 3 / 12, "feet")
  8861. },
  8862. {
  8863. name: "Large Nuisance",
  8864. height: math.unit(33, "feet")
  8865. },
  8866. {
  8867. name: "City Filler",
  8868. height: math.unit(3000, "feet")
  8869. },
  8870. {
  8871. name: "New Horizon",
  8872. height: math.unit(6000, "miles")
  8873. },
  8874. ]
  8875. ))
  8876. characterMakers.push(() => makeCharacter(
  8877. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8878. {
  8879. front: {
  8880. height: math.unit(5, "cm"),
  8881. weight: math.unit(1.94, "g"),
  8882. name: "Front",
  8883. image: {
  8884. source: "./media/characters/fleta/front.svg",
  8885. extra: 835 / 803
  8886. }
  8887. },
  8888. back: {
  8889. height: math.unit(5, "cm"),
  8890. weight: math.unit(1.94, "g"),
  8891. name: "Back",
  8892. image: {
  8893. source: "./media/characters/fleta/back.svg",
  8894. extra: 835 / 803
  8895. }
  8896. },
  8897. },
  8898. [
  8899. {
  8900. name: "Micro",
  8901. height: math.unit(5, "cm"),
  8902. default: true
  8903. },
  8904. ]
  8905. ))
  8906. characterMakers.push(() => makeCharacter(
  8907. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8908. {
  8909. front: {
  8910. height: math.unit(6, "feet"),
  8911. weight: math.unit(225, "lb"),
  8912. name: "Front",
  8913. image: {
  8914. source: "./media/characters/dominic/front.svg",
  8915. extra: 1770 / 1620,
  8916. bottom: 0.025
  8917. }
  8918. },
  8919. back: {
  8920. height: math.unit(6, "feet"),
  8921. weight: math.unit(225, "lb"),
  8922. name: "Back",
  8923. image: {
  8924. source: "./media/characters/dominic/back.svg",
  8925. extra: 1745 / 1620,
  8926. bottom: 0.065
  8927. }
  8928. },
  8929. },
  8930. [
  8931. {
  8932. name: "Nano",
  8933. height: math.unit(0.1, "mm")
  8934. },
  8935. {
  8936. name: "Micro-",
  8937. height: math.unit(1, "mm")
  8938. },
  8939. {
  8940. name: "Micro",
  8941. height: math.unit(4, "inches")
  8942. },
  8943. {
  8944. name: "Normal",
  8945. height: math.unit(6 + 4 / 12, "feet"),
  8946. default: true
  8947. },
  8948. {
  8949. name: "Macro",
  8950. height: math.unit(115, "feet")
  8951. },
  8952. {
  8953. name: "Macro+",
  8954. height: math.unit(955, "feet")
  8955. },
  8956. {
  8957. name: "Megamacro",
  8958. height: math.unit(8990, "feet")
  8959. },
  8960. {
  8961. name: "Gigmacro",
  8962. height: math.unit(9310, "miles")
  8963. },
  8964. {
  8965. name: "Teramacro",
  8966. height: math.unit(1567005010, "miles")
  8967. },
  8968. {
  8969. name: "Examacro",
  8970. height: math.unit(1425, "parsecs")
  8971. },
  8972. ]
  8973. ))
  8974. characterMakers.push(() => makeCharacter(
  8975. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8976. {
  8977. front: {
  8978. height: math.unit(400, "feet"),
  8979. weight: math.unit(44444444, "lb"),
  8980. name: "Front",
  8981. image: {
  8982. source: "./media/characters/major-colonel/front.svg"
  8983. }
  8984. },
  8985. back: {
  8986. height: math.unit(400, "feet"),
  8987. weight: math.unit(44444444, "lb"),
  8988. name: "Back",
  8989. image: {
  8990. source: "./media/characters/major-colonel/back.svg"
  8991. }
  8992. },
  8993. },
  8994. [
  8995. {
  8996. name: "Macro",
  8997. height: math.unit(400, "feet"),
  8998. default: true
  8999. },
  9000. ]
  9001. ))
  9002. characterMakers.push(() => makeCharacter(
  9003. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  9004. {
  9005. catFront: {
  9006. height: math.unit(6, "feet"),
  9007. weight: math.unit(120, "lb"),
  9008. name: "Front (Cat Side)",
  9009. image: {
  9010. source: "./media/characters/axel-lycan/cat-front.svg",
  9011. extra: 430 / 402,
  9012. bottom: 43 / 472.35
  9013. }
  9014. },
  9015. catBack: {
  9016. height: math.unit(6, "feet"),
  9017. weight: math.unit(120, "lb"),
  9018. name: "Back (Cat Side)",
  9019. image: {
  9020. source: "./media/characters/axel-lycan/cat-back.svg",
  9021. extra: 447 / 419,
  9022. bottom: 23.3 / 469
  9023. }
  9024. },
  9025. wolfFront: {
  9026. height: math.unit(6, "feet"),
  9027. weight: math.unit(120, "lb"),
  9028. name: "Front (Wolf Side)",
  9029. image: {
  9030. source: "./media/characters/axel-lycan/wolf-front.svg",
  9031. extra: 485 / 456,
  9032. bottom: 19 / 504
  9033. }
  9034. },
  9035. wolfBack: {
  9036. height: math.unit(6, "feet"),
  9037. weight: math.unit(120, "lb"),
  9038. name: "Back (Wolf Side)",
  9039. image: {
  9040. source: "./media/characters/axel-lycan/wolf-back.svg",
  9041. extra: 475 / 438,
  9042. bottom: 39.2 / 514
  9043. }
  9044. },
  9045. },
  9046. [
  9047. {
  9048. name: "Macro",
  9049. height: math.unit(1, "km"),
  9050. default: true
  9051. },
  9052. ]
  9053. ))
  9054. characterMakers.push(() => makeCharacter(
  9055. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9056. {
  9057. front: {
  9058. height: math.unit(5 + 9 / 12, "feet"),
  9059. weight: math.unit(175, "lb"),
  9060. name: "Front",
  9061. image: {
  9062. source: "./media/characters/vanrel-hyena/front.svg",
  9063. extra: 1086 / 1010,
  9064. bottom: 0.04
  9065. }
  9066. },
  9067. },
  9068. [
  9069. {
  9070. name: "Normal",
  9071. height: math.unit(5 + 9 / 12, "feet"),
  9072. default: true
  9073. },
  9074. ]
  9075. ))
  9076. characterMakers.push(() => makeCharacter(
  9077. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9078. {
  9079. front: {
  9080. height: math.unit(6, "feet"),
  9081. weight: math.unit(103, "lb"),
  9082. name: "Front",
  9083. image: {
  9084. source: "./media/characters/abbott-absol/front.svg",
  9085. extra: 2010 / 1842
  9086. }
  9087. },
  9088. },
  9089. [
  9090. {
  9091. name: "Megamicro",
  9092. height: math.unit(0.1, "mm")
  9093. },
  9094. {
  9095. name: "Micro",
  9096. height: math.unit(1, "inch")
  9097. },
  9098. {
  9099. name: "Normal",
  9100. height: math.unit(6, "feet"),
  9101. default: true
  9102. },
  9103. ]
  9104. ))
  9105. characterMakers.push(() => makeCharacter(
  9106. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9107. {
  9108. front: {
  9109. height: math.unit(6, "feet"),
  9110. weight: math.unit(264, "lb"),
  9111. name: "Front",
  9112. image: {
  9113. source: "./media/characters/hector/front.svg",
  9114. extra: 2280 / 2130,
  9115. bottom: 0.07
  9116. }
  9117. },
  9118. },
  9119. [
  9120. {
  9121. name: "Normal",
  9122. height: math.unit(12.25, "foot"),
  9123. default: true
  9124. },
  9125. {
  9126. name: "Macro",
  9127. height: math.unit(160, "feet")
  9128. },
  9129. ]
  9130. ))
  9131. characterMakers.push(() => makeCharacter(
  9132. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9133. {
  9134. front: {
  9135. height: math.unit(6, "feet"),
  9136. weight: math.unit(150, "lb"),
  9137. name: "Front",
  9138. image: {
  9139. source: "./media/characters/sal/front.svg",
  9140. extra: 1846 / 1699,
  9141. bottom: 0.04
  9142. }
  9143. },
  9144. },
  9145. [
  9146. {
  9147. name: "Megamacro",
  9148. height: math.unit(10, "miles"),
  9149. default: true
  9150. },
  9151. ]
  9152. ))
  9153. characterMakers.push(() => makeCharacter(
  9154. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9155. {
  9156. front: {
  9157. height: math.unit(3, "meters"),
  9158. weight: math.unit(450, "kg"),
  9159. name: "front",
  9160. image: {
  9161. source: "./media/characters/ranger/front.svg",
  9162. extra: 2401 / 2243,
  9163. bottom: 0.05
  9164. }
  9165. },
  9166. },
  9167. [
  9168. {
  9169. name: "Normal",
  9170. height: math.unit(3, "meters"),
  9171. default: true
  9172. },
  9173. ]
  9174. ))
  9175. characterMakers.push(() => makeCharacter(
  9176. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9177. {
  9178. front: {
  9179. height: math.unit(14, "feet"),
  9180. weight: math.unit(800, "kg"),
  9181. name: "Front",
  9182. image: {
  9183. source: "./media/characters/theresa/front.svg",
  9184. extra: 3575 / 3346,
  9185. bottom: 0.03
  9186. }
  9187. },
  9188. },
  9189. [
  9190. {
  9191. name: "Normal",
  9192. height: math.unit(14, "feet"),
  9193. default: true
  9194. },
  9195. ]
  9196. ))
  9197. characterMakers.push(() => makeCharacter(
  9198. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9199. {
  9200. front: {
  9201. height: math.unit(6, "feet"),
  9202. weight: math.unit(3, "kg"),
  9203. name: "Front",
  9204. image: {
  9205. source: "./media/characters/ine/front.svg",
  9206. extra: 678 / 539,
  9207. bottom: 0.023
  9208. }
  9209. },
  9210. },
  9211. [
  9212. {
  9213. name: "Normal",
  9214. height: math.unit(2.265, "feet"),
  9215. default: true
  9216. },
  9217. ]
  9218. ))
  9219. characterMakers.push(() => makeCharacter(
  9220. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9221. {
  9222. front: {
  9223. height: math.unit(5, "feet"),
  9224. weight: math.unit(30, "kg"),
  9225. name: "Front",
  9226. image: {
  9227. source: "./media/characters/vial/front.svg",
  9228. extra: 1365 / 1277,
  9229. bottom: 0.04
  9230. }
  9231. },
  9232. },
  9233. [
  9234. {
  9235. name: "Normal",
  9236. height: math.unit(5, "feet"),
  9237. default: true
  9238. },
  9239. ]
  9240. ))
  9241. characterMakers.push(() => makeCharacter(
  9242. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9243. {
  9244. side: {
  9245. height: math.unit(3.4, "meters"),
  9246. weight: math.unit(1000, "lb"),
  9247. name: "Side",
  9248. image: {
  9249. source: "./media/characters/rovoska/side.svg",
  9250. extra: 4403 / 1515
  9251. }
  9252. },
  9253. },
  9254. [
  9255. {
  9256. name: "Normal",
  9257. height: math.unit(3.4, "meters"),
  9258. default: true
  9259. },
  9260. ]
  9261. ))
  9262. characterMakers.push(() => makeCharacter(
  9263. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9264. {
  9265. front: {
  9266. height: math.unit(8, "feet"),
  9267. weight: math.unit(315, "lb"),
  9268. name: "Front",
  9269. image: {
  9270. source: "./media/characters/gunner-rotthbauer/front.svg"
  9271. }
  9272. },
  9273. back: {
  9274. height: math.unit(8, "feet"),
  9275. weight: math.unit(315, "lb"),
  9276. name: "Back",
  9277. image: {
  9278. source: "./media/characters/gunner-rotthbauer/back.svg"
  9279. }
  9280. },
  9281. },
  9282. [
  9283. {
  9284. name: "Micro",
  9285. height: math.unit(3.5, "inches")
  9286. },
  9287. {
  9288. name: "Normal",
  9289. height: math.unit(8, "feet"),
  9290. default: true
  9291. },
  9292. {
  9293. name: "Macro",
  9294. height: math.unit(250, "feet")
  9295. },
  9296. {
  9297. name: "Megamacro",
  9298. height: math.unit(1, "AU")
  9299. },
  9300. ]
  9301. ))
  9302. characterMakers.push(() => makeCharacter(
  9303. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9304. {
  9305. front: {
  9306. height: math.unit(5 + 5 / 12, "feet"),
  9307. weight: math.unit(140, "lb"),
  9308. name: "Front",
  9309. image: {
  9310. source: "./media/characters/allatia/front.svg",
  9311. extra: 1227 / 1180,
  9312. bottom: 0.027
  9313. }
  9314. },
  9315. },
  9316. [
  9317. {
  9318. name: "Normal",
  9319. height: math.unit(5 + 5 / 12, "feet")
  9320. },
  9321. {
  9322. name: "Macro",
  9323. height: math.unit(250, "feet"),
  9324. default: true
  9325. },
  9326. {
  9327. name: "Megamacro",
  9328. height: math.unit(8, "miles")
  9329. }
  9330. ]
  9331. ))
  9332. characterMakers.push(() => makeCharacter(
  9333. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9334. {
  9335. front: {
  9336. height: math.unit(6, "feet"),
  9337. weight: math.unit(120, "lb"),
  9338. name: "Front",
  9339. image: {
  9340. source: "./media/characters/tene/front.svg",
  9341. extra: 1728 / 1578,
  9342. bottom: 0.022
  9343. }
  9344. },
  9345. stomping: {
  9346. height: math.unit(2.025, "meters"),
  9347. weight: math.unit(120, "lb"),
  9348. name: "Stomping",
  9349. image: {
  9350. source: "./media/characters/tene/stomping.svg",
  9351. extra: 938 / 873,
  9352. bottom: 0.01
  9353. }
  9354. },
  9355. sitting: {
  9356. height: math.unit(1, "meter"),
  9357. weight: math.unit(120, "lb"),
  9358. name: "Sitting",
  9359. image: {
  9360. source: "./media/characters/tene/sitting.svg",
  9361. extra: 437 / 415,
  9362. bottom: 0.1
  9363. }
  9364. },
  9365. feral: {
  9366. height: math.unit(3.9, "feet"),
  9367. weight: math.unit(250, "lb"),
  9368. name: "Feral",
  9369. image: {
  9370. source: "./media/characters/tene/feral.svg",
  9371. extra: 717 / 458,
  9372. bottom: 0.179
  9373. }
  9374. },
  9375. },
  9376. [
  9377. {
  9378. name: "Normal",
  9379. height: math.unit(6, "feet")
  9380. },
  9381. {
  9382. name: "Macro",
  9383. height: math.unit(300, "feet"),
  9384. default: true
  9385. },
  9386. {
  9387. name: "Megamacro",
  9388. height: math.unit(5, "miles")
  9389. },
  9390. ]
  9391. ))
  9392. characterMakers.push(() => makeCharacter(
  9393. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9394. {
  9395. side: {
  9396. height: math.unit(6, "feet"),
  9397. name: "Side",
  9398. image: {
  9399. source: "./media/characters/evander/side.svg",
  9400. extra: 877 / 477
  9401. }
  9402. },
  9403. },
  9404. [
  9405. {
  9406. name: "Normal",
  9407. height: math.unit(0.83, "meters"),
  9408. default: true
  9409. },
  9410. ]
  9411. ))
  9412. characterMakers.push(() => makeCharacter(
  9413. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9414. {
  9415. front: {
  9416. height: math.unit(12, "feet"),
  9417. weight: math.unit(1000, "lb"),
  9418. name: "Front",
  9419. image: {
  9420. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9421. extra: 1762 / 1611
  9422. }
  9423. },
  9424. back: {
  9425. height: math.unit(12, "feet"),
  9426. weight: math.unit(1000, "lb"),
  9427. name: "Back",
  9428. image: {
  9429. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9430. extra: 1762 / 1611
  9431. }
  9432. },
  9433. },
  9434. [
  9435. {
  9436. name: "Normal",
  9437. height: math.unit(12, "feet"),
  9438. default: true
  9439. },
  9440. {
  9441. name: "Kaiju",
  9442. height: math.unit(150, "feet")
  9443. },
  9444. ]
  9445. ))
  9446. characterMakers.push(() => makeCharacter(
  9447. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9448. {
  9449. front: {
  9450. height: math.unit(6, "feet"),
  9451. weight: math.unit(150, "lb"),
  9452. name: "Front",
  9453. image: {
  9454. source: "./media/characters/zero-alurus/front.svg"
  9455. }
  9456. },
  9457. back: {
  9458. height: math.unit(6, "feet"),
  9459. weight: math.unit(150, "lb"),
  9460. name: "Back",
  9461. image: {
  9462. source: "./media/characters/zero-alurus/back.svg"
  9463. }
  9464. },
  9465. },
  9466. [
  9467. {
  9468. name: "Normal",
  9469. height: math.unit(5 + 10 / 12, "feet")
  9470. },
  9471. {
  9472. name: "Macro",
  9473. height: math.unit(60, "feet"),
  9474. default: true
  9475. },
  9476. {
  9477. name: "Macro+",
  9478. height: math.unit(450, "feet")
  9479. },
  9480. ]
  9481. ))
  9482. characterMakers.push(() => makeCharacter(
  9483. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9484. {
  9485. front: {
  9486. height: math.unit(6, "feet"),
  9487. weight: math.unit(200, "lb"),
  9488. name: "Front",
  9489. image: {
  9490. source: "./media/characters/mega-shi/front.svg",
  9491. extra: 1279 / 1250,
  9492. bottom: 0.02
  9493. }
  9494. },
  9495. back: {
  9496. height: math.unit(6, "feet"),
  9497. weight: math.unit(200, "lb"),
  9498. name: "Back",
  9499. image: {
  9500. source: "./media/characters/mega-shi/back.svg",
  9501. extra: 1279 / 1250,
  9502. bottom: 0.02
  9503. }
  9504. },
  9505. },
  9506. [
  9507. {
  9508. name: "Micro",
  9509. height: math.unit(16 + 6 / 12, "feet")
  9510. },
  9511. {
  9512. name: "Third Dimension",
  9513. height: math.unit(40, "meters")
  9514. },
  9515. {
  9516. name: "Normal",
  9517. height: math.unit(660, "feet"),
  9518. default: true
  9519. },
  9520. {
  9521. name: "Megamacro",
  9522. height: math.unit(10, "miles")
  9523. },
  9524. {
  9525. name: "Planetary Launch",
  9526. height: math.unit(500, "miles")
  9527. },
  9528. {
  9529. name: "Interstellar",
  9530. height: math.unit(1e9, "miles")
  9531. },
  9532. {
  9533. name: "Leaving the Universe",
  9534. height: math.unit(1, "gigaparsec")
  9535. },
  9536. {
  9537. name: "Travelling Universes",
  9538. height: math.unit(30e15, "parsecs")
  9539. },
  9540. ]
  9541. ))
  9542. characterMakers.push(() => makeCharacter(
  9543. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9544. {
  9545. front: {
  9546. height: math.unit(6, "feet"),
  9547. weight: math.unit(150, "lb"),
  9548. name: "Front",
  9549. image: {
  9550. source: "./media/characters/odyssey/front.svg",
  9551. extra: 1782 / 1582,
  9552. bottom: 0.01
  9553. }
  9554. },
  9555. side: {
  9556. height: math.unit(5.7, "feet"),
  9557. weight: math.unit(140, "lb"),
  9558. name: "Side",
  9559. image: {
  9560. source: "./media/characters/odyssey/side.svg",
  9561. extra: 6462 / 5700
  9562. }
  9563. },
  9564. },
  9565. [
  9566. {
  9567. name: "Normal",
  9568. height: math.unit(5 + 4 / 12, "feet")
  9569. },
  9570. {
  9571. name: "Macro",
  9572. height: math.unit(1, "km")
  9573. },
  9574. {
  9575. name: "Megamacro",
  9576. height: math.unit(3000, "km")
  9577. },
  9578. {
  9579. name: "Gigamacro",
  9580. height: math.unit(1, "AU"),
  9581. default: true
  9582. },
  9583. {
  9584. name: "Omniversal",
  9585. height: math.unit(100e14, "lightyears")
  9586. },
  9587. ]
  9588. ))
  9589. characterMakers.push(() => makeCharacter(
  9590. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9591. {
  9592. front: {
  9593. height: math.unit(6, "feet"),
  9594. weight: math.unit(300, "lb"),
  9595. name: "Front",
  9596. image: {
  9597. source: "./media/characters/mekuto/front.svg",
  9598. extra: 921 / 832,
  9599. bottom: 0.03
  9600. }
  9601. },
  9602. hand: {
  9603. height: math.unit(6 / 10.24, "feet"),
  9604. name: "Hand",
  9605. image: {
  9606. source: "./media/characters/mekuto/hand.svg"
  9607. }
  9608. },
  9609. foot: {
  9610. height: math.unit(6 / 5.05, "feet"),
  9611. name: "Foot",
  9612. image: {
  9613. source: "./media/characters/mekuto/foot.svg"
  9614. }
  9615. },
  9616. },
  9617. [
  9618. {
  9619. name: "Minimicro",
  9620. height: math.unit(0.2, "inches")
  9621. },
  9622. {
  9623. name: "Micro",
  9624. height: math.unit(1.5, "inches")
  9625. },
  9626. {
  9627. name: "Normal",
  9628. height: math.unit(5 + 11 / 12, "feet"),
  9629. default: true
  9630. },
  9631. {
  9632. name: "Minimacro",
  9633. height: math.unit(17 + 9 / 12, "feet")
  9634. },
  9635. {
  9636. name: "Macro",
  9637. height: math.unit(177.5, "feet")
  9638. },
  9639. {
  9640. name: "Megamacro",
  9641. height: math.unit(152, "miles")
  9642. },
  9643. ]
  9644. ))
  9645. characterMakers.push(() => makeCharacter(
  9646. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9647. {
  9648. front: {
  9649. height: math.unit(6.5, "inches"),
  9650. weight: math.unit(13, "oz"),
  9651. name: "Front",
  9652. image: {
  9653. source: "./media/characters/dafydd-tomos/front.svg",
  9654. extra: 2990 / 2603,
  9655. bottom: 0.03
  9656. }
  9657. },
  9658. },
  9659. [
  9660. {
  9661. name: "Micro",
  9662. height: math.unit(6.5, "inches"),
  9663. default: true
  9664. },
  9665. ]
  9666. ))
  9667. characterMakers.push(() => makeCharacter(
  9668. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9669. {
  9670. front: {
  9671. height: math.unit(6, "feet"),
  9672. weight: math.unit(150, "lb"),
  9673. name: "Front",
  9674. image: {
  9675. source: "./media/characters/splinter/front.svg",
  9676. extra: 2990 / 2882,
  9677. bottom: 0.04
  9678. }
  9679. },
  9680. back: {
  9681. height: math.unit(6, "feet"),
  9682. weight: math.unit(150, "lb"),
  9683. name: "Back",
  9684. image: {
  9685. source: "./media/characters/splinter/back.svg",
  9686. extra: 2990 / 2882,
  9687. bottom: 0.04
  9688. }
  9689. },
  9690. },
  9691. [
  9692. {
  9693. name: "Normal",
  9694. height: math.unit(6, "feet")
  9695. },
  9696. {
  9697. name: "Macro",
  9698. height: math.unit(230, "meters"),
  9699. default: true
  9700. },
  9701. ]
  9702. ))
  9703. characterMakers.push(() => makeCharacter(
  9704. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9705. {
  9706. front: {
  9707. height: math.unit(4 + 10 / 12, "feet"),
  9708. weight: math.unit(480, "lb"),
  9709. name: "Front",
  9710. image: {
  9711. source: "./media/characters/snow-gabumon/front.svg",
  9712. extra: 1140 / 963,
  9713. bottom: 0.058
  9714. }
  9715. },
  9716. back: {
  9717. height: math.unit(4 + 10 / 12, "feet"),
  9718. weight: math.unit(480, "lb"),
  9719. name: "Back",
  9720. image: {
  9721. source: "./media/characters/snow-gabumon/back.svg",
  9722. extra: 1115 / 962,
  9723. bottom: 0.041
  9724. }
  9725. },
  9726. frontUndresed: {
  9727. height: math.unit(4 + 10 / 12, "feet"),
  9728. weight: math.unit(480, "lb"),
  9729. name: "Front (Undressed)",
  9730. image: {
  9731. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9732. extra: 1061 / 960,
  9733. bottom: 0.045
  9734. }
  9735. },
  9736. },
  9737. [
  9738. {
  9739. name: "Micro",
  9740. height: math.unit(1, "inch")
  9741. },
  9742. {
  9743. name: "Normal",
  9744. height: math.unit(4 + 10 / 12, "feet"),
  9745. default: true
  9746. },
  9747. {
  9748. name: "Macro",
  9749. height: math.unit(200, "feet")
  9750. },
  9751. {
  9752. name: "Megamacro",
  9753. height: math.unit(120, "miles")
  9754. },
  9755. {
  9756. name: "Gigamacro",
  9757. height: math.unit(9800, "miles")
  9758. },
  9759. ]
  9760. ))
  9761. characterMakers.push(() => makeCharacter(
  9762. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9763. {
  9764. front: {
  9765. height: math.unit(1.7, "meters"),
  9766. weight: math.unit(140, "lb"),
  9767. name: "Front",
  9768. image: {
  9769. source: "./media/characters/moody/front.svg",
  9770. extra: 3226 / 3007,
  9771. bottom: 0.087
  9772. }
  9773. },
  9774. },
  9775. [
  9776. {
  9777. name: "Micro",
  9778. height: math.unit(1, "mm")
  9779. },
  9780. {
  9781. name: "Normal",
  9782. height: math.unit(1.7, "meters"),
  9783. default: true
  9784. },
  9785. {
  9786. name: "Macro",
  9787. height: math.unit(80, "meters")
  9788. },
  9789. {
  9790. name: "Macro+",
  9791. height: math.unit(500, "meters")
  9792. },
  9793. ]
  9794. ))
  9795. characterMakers.push(() => makeCharacter(
  9796. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9797. {
  9798. front: {
  9799. height: math.unit(6, "feet"),
  9800. weight: math.unit(150, "lb"),
  9801. name: "Front",
  9802. image: {
  9803. source: "./media/characters/zyas/front.svg",
  9804. extra: 1180 / 1120,
  9805. bottom: 0.045
  9806. }
  9807. },
  9808. },
  9809. [
  9810. {
  9811. name: "Normal",
  9812. height: math.unit(10, "feet"),
  9813. default: true
  9814. },
  9815. {
  9816. name: "Macro",
  9817. height: math.unit(500, "feet")
  9818. },
  9819. {
  9820. name: "Megamacro",
  9821. height: math.unit(5, "miles")
  9822. },
  9823. {
  9824. name: "Teramacro",
  9825. height: math.unit(150000, "miles")
  9826. },
  9827. ]
  9828. ))
  9829. characterMakers.push(() => makeCharacter(
  9830. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9831. {
  9832. front: {
  9833. height: math.unit(6, "feet"),
  9834. weight: math.unit(150, "lb"),
  9835. name: "Front",
  9836. image: {
  9837. source: "./media/characters/cuon/front.svg",
  9838. extra: 1390 / 1320,
  9839. bottom: 0.008
  9840. }
  9841. },
  9842. },
  9843. [
  9844. {
  9845. name: "Micro",
  9846. height: math.unit(3, "inches")
  9847. },
  9848. {
  9849. name: "Normal",
  9850. height: math.unit(18 + 9 / 12, "feet"),
  9851. default: true
  9852. },
  9853. {
  9854. name: "Macro",
  9855. height: math.unit(360, "feet")
  9856. },
  9857. {
  9858. name: "Megamacro",
  9859. height: math.unit(360, "miles")
  9860. },
  9861. ]
  9862. ))
  9863. characterMakers.push(() => makeCharacter(
  9864. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9865. {
  9866. front: {
  9867. height: math.unit(2.4, "meters"),
  9868. weight: math.unit(70, "kg"),
  9869. name: "Front",
  9870. image: {
  9871. source: "./media/characters/nyanuxk/front.svg",
  9872. extra: 1172 / 1084,
  9873. bottom: 0.065
  9874. }
  9875. },
  9876. side: {
  9877. height: math.unit(2.4, "meters"),
  9878. weight: math.unit(70, "kg"),
  9879. name: "Side",
  9880. image: {
  9881. source: "./media/characters/nyanuxk/side.svg",
  9882. extra: 1190 / 1132,
  9883. bottom: 0.007
  9884. }
  9885. },
  9886. back: {
  9887. height: math.unit(2.4, "meters"),
  9888. weight: math.unit(70, "kg"),
  9889. name: "Back",
  9890. image: {
  9891. source: "./media/characters/nyanuxk/back.svg",
  9892. extra: 1200 / 1141,
  9893. bottom: 0.015
  9894. }
  9895. },
  9896. foot: {
  9897. height: math.unit(0.52, "meters"),
  9898. name: "Foot",
  9899. image: {
  9900. source: "./media/characters/nyanuxk/foot.svg"
  9901. }
  9902. },
  9903. },
  9904. [
  9905. {
  9906. name: "Micro",
  9907. height: math.unit(2, "cm")
  9908. },
  9909. {
  9910. name: "Normal",
  9911. height: math.unit(2.4, "meters"),
  9912. default: true
  9913. },
  9914. {
  9915. name: "Smaller Macro",
  9916. height: math.unit(120, "meters")
  9917. },
  9918. {
  9919. name: "Bigger Macro",
  9920. height: math.unit(1.2, "km")
  9921. },
  9922. {
  9923. name: "Megamacro",
  9924. height: math.unit(15, "kilometers")
  9925. },
  9926. {
  9927. name: "Gigamacro",
  9928. height: math.unit(2000, "km")
  9929. },
  9930. {
  9931. name: "Teramacro",
  9932. height: math.unit(500000, "km")
  9933. },
  9934. ]
  9935. ))
  9936. characterMakers.push(() => makeCharacter(
  9937. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9938. {
  9939. side: {
  9940. height: math.unit(6, "feet"),
  9941. name: "Side",
  9942. image: {
  9943. source: "./media/characters/ailbhe/side.svg",
  9944. extra: 757 / 464,
  9945. bottom: 0.041
  9946. }
  9947. },
  9948. },
  9949. [
  9950. {
  9951. name: "Normal",
  9952. height: math.unit(1.07, "meters"),
  9953. default: true
  9954. },
  9955. ]
  9956. ))
  9957. characterMakers.push(() => makeCharacter(
  9958. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9959. {
  9960. front: {
  9961. height: math.unit(6, "feet"),
  9962. weight: math.unit(120, "kg"),
  9963. name: "Front",
  9964. image: {
  9965. source: "./media/characters/zevulfius/front.svg",
  9966. extra: 965 / 903
  9967. }
  9968. },
  9969. side: {
  9970. height: math.unit(6, "feet"),
  9971. weight: math.unit(120, "kg"),
  9972. name: "Side",
  9973. image: {
  9974. source: "./media/characters/zevulfius/side.svg",
  9975. extra: 939 / 900
  9976. }
  9977. },
  9978. back: {
  9979. height: math.unit(6, "feet"),
  9980. weight: math.unit(120, "kg"),
  9981. name: "Back",
  9982. image: {
  9983. source: "./media/characters/zevulfius/back.svg",
  9984. extra: 918 / 854,
  9985. bottom: 0.005
  9986. }
  9987. },
  9988. foot: {
  9989. height: math.unit(6 / 3.72, "feet"),
  9990. name: "Foot",
  9991. image: {
  9992. source: "./media/characters/zevulfius/foot.svg"
  9993. }
  9994. },
  9995. },
  9996. [
  9997. {
  9998. name: "Macro",
  9999. height: math.unit(750, "meters")
  10000. },
  10001. {
  10002. name: "Megamacro",
  10003. height: math.unit(20, "km"),
  10004. default: true
  10005. },
  10006. {
  10007. name: "Gigamacro",
  10008. height: math.unit(2000, "km")
  10009. },
  10010. {
  10011. name: "Teramacro",
  10012. height: math.unit(250000, "km")
  10013. },
  10014. ]
  10015. ))
  10016. characterMakers.push(() => makeCharacter(
  10017. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  10018. {
  10019. front: {
  10020. height: math.unit(100, "feet"),
  10021. weight: math.unit(350, "kg"),
  10022. name: "Front",
  10023. image: {
  10024. source: "./media/characters/rikes/front.svg",
  10025. extra: 1565 / 1483,
  10026. bottom: 0.017
  10027. }
  10028. },
  10029. },
  10030. [
  10031. {
  10032. name: "Macro",
  10033. height: math.unit(100, "feet"),
  10034. default: true
  10035. },
  10036. ]
  10037. ))
  10038. characterMakers.push(() => makeCharacter(
  10039. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10040. {
  10041. anthro: {
  10042. height: math.unit(8, "feet"),
  10043. weight: math.unit(120, "kg"),
  10044. name: "Anthro",
  10045. image: {
  10046. source: "./media/characters/adam-silver-mane/anthro.svg",
  10047. extra: 5743 / 5339,
  10048. bottom: 0.07
  10049. }
  10050. },
  10051. taur: {
  10052. height: math.unit(16, "feet"),
  10053. weight: math.unit(1500, "kg"),
  10054. name: "Taur",
  10055. image: {
  10056. source: "./media/characters/adam-silver-mane/taur.svg",
  10057. extra: 1713 / 1571,
  10058. bottom: 0.01
  10059. }
  10060. },
  10061. },
  10062. [
  10063. {
  10064. name: "Normal",
  10065. height: math.unit(8, "feet")
  10066. },
  10067. {
  10068. name: "Minimacro",
  10069. height: math.unit(80, "feet")
  10070. },
  10071. {
  10072. name: "Macro",
  10073. height: math.unit(800, "feet"),
  10074. default: true
  10075. },
  10076. {
  10077. name: "Megamacro",
  10078. height: math.unit(8000, "feet")
  10079. },
  10080. {
  10081. name: "Gigamacro",
  10082. height: math.unit(800, "miles")
  10083. },
  10084. {
  10085. name: "Teramacro",
  10086. height: math.unit(80000, "miles")
  10087. },
  10088. {
  10089. name: "Celestial",
  10090. height: math.unit(8e6, "miles")
  10091. },
  10092. {
  10093. name: "Star Dragon",
  10094. height: math.unit(800000, "parsecs")
  10095. },
  10096. {
  10097. name: "Godly",
  10098. height: math.unit(800, "teraparsecs")
  10099. },
  10100. ]
  10101. ))
  10102. characterMakers.push(() => makeCharacter(
  10103. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10104. {
  10105. front: {
  10106. height: math.unit(6, "feet"),
  10107. weight: math.unit(150, "lb"),
  10108. name: "Front",
  10109. image: {
  10110. source: "./media/characters/ky'owin/front.svg",
  10111. extra: 3888 / 3068,
  10112. bottom: 0.015
  10113. }
  10114. },
  10115. },
  10116. [
  10117. {
  10118. name: "Normal",
  10119. height: math.unit(6 + 8 / 12, "feet")
  10120. },
  10121. {
  10122. name: "Large",
  10123. height: math.unit(68, "feet")
  10124. },
  10125. {
  10126. name: "Macro",
  10127. height: math.unit(132, "feet")
  10128. },
  10129. {
  10130. name: "Macro+",
  10131. height: math.unit(340, "feet")
  10132. },
  10133. {
  10134. name: "Macro++",
  10135. height: math.unit(680, "feet"),
  10136. default: true
  10137. },
  10138. {
  10139. name: "Megamacro",
  10140. height: math.unit(1, "mile")
  10141. },
  10142. {
  10143. name: "Megamacro+",
  10144. height: math.unit(10, "miles")
  10145. },
  10146. ]
  10147. ))
  10148. characterMakers.push(() => makeCharacter(
  10149. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10150. {
  10151. front: {
  10152. height: math.unit(4, "feet"),
  10153. weight: math.unit(50, "lb"),
  10154. name: "Front",
  10155. image: {
  10156. source: "./media/characters/mal/front.svg",
  10157. extra: 785 / 724,
  10158. bottom: 0.07
  10159. }
  10160. },
  10161. },
  10162. [
  10163. {
  10164. name: "Micro",
  10165. height: math.unit(4, "inches")
  10166. },
  10167. {
  10168. name: "Normal",
  10169. height: math.unit(4, "feet"),
  10170. default: true
  10171. },
  10172. {
  10173. name: "Macro",
  10174. height: math.unit(200, "feet")
  10175. },
  10176. ]
  10177. ))
  10178. characterMakers.push(() => makeCharacter(
  10179. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10180. {
  10181. front: {
  10182. height: math.unit(6, "feet"),
  10183. weight: math.unit(150, "lb"),
  10184. name: "Front",
  10185. image: {
  10186. source: "./media/characters/jordan-deware/front.svg",
  10187. extra: 1191 / 1012
  10188. }
  10189. },
  10190. },
  10191. [
  10192. {
  10193. name: "Nano",
  10194. height: math.unit(0.01, "mm")
  10195. },
  10196. {
  10197. name: "Minimicro",
  10198. height: math.unit(1, "mm")
  10199. },
  10200. {
  10201. name: "Micro",
  10202. height: math.unit(0.5, "inches")
  10203. },
  10204. {
  10205. name: "Normal",
  10206. height: math.unit(4, "feet"),
  10207. default: true
  10208. },
  10209. {
  10210. name: "Minimacro",
  10211. height: math.unit(40, "meters")
  10212. },
  10213. {
  10214. name: "Small Macro",
  10215. height: math.unit(400, "meters")
  10216. },
  10217. {
  10218. name: "Macro",
  10219. height: math.unit(4, "miles")
  10220. },
  10221. {
  10222. name: "Megamacro",
  10223. height: math.unit(40, "miles")
  10224. },
  10225. {
  10226. name: "Megamacro+",
  10227. height: math.unit(400, "miles")
  10228. },
  10229. {
  10230. name: "Gigamacro",
  10231. height: math.unit(400000, "miles")
  10232. },
  10233. ]
  10234. ))
  10235. characterMakers.push(() => makeCharacter(
  10236. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10237. {
  10238. side: {
  10239. height: math.unit(6, "feet"),
  10240. weight: math.unit(150, "lb"),
  10241. name: "Side",
  10242. image: {
  10243. source: "./media/characters/kimiko/side.svg",
  10244. extra: 600 / 358
  10245. }
  10246. },
  10247. },
  10248. [
  10249. {
  10250. name: "Normal",
  10251. height: math.unit(15, "feet"),
  10252. default: true
  10253. },
  10254. {
  10255. name: "Macro",
  10256. height: math.unit(220, "feet")
  10257. },
  10258. {
  10259. name: "Macro+",
  10260. height: math.unit(1450, "feet")
  10261. },
  10262. {
  10263. name: "Megamacro",
  10264. height: math.unit(11500, "feet")
  10265. },
  10266. {
  10267. name: "Gigamacro",
  10268. height: math.unit(9500, "miles")
  10269. },
  10270. {
  10271. name: "Teramacro",
  10272. height: math.unit(2208005005, "miles")
  10273. },
  10274. {
  10275. name: "Examacro",
  10276. height: math.unit(2750, "parsecs")
  10277. },
  10278. {
  10279. name: "Zettamacro",
  10280. height: math.unit(101500, "parsecs")
  10281. },
  10282. ]
  10283. ))
  10284. characterMakers.push(() => makeCharacter(
  10285. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10286. {
  10287. front: {
  10288. height: math.unit(6, "feet"),
  10289. weight: math.unit(70, "kg"),
  10290. name: "Front",
  10291. image: {
  10292. source: "./media/characters/andrew-sleepy/front.svg"
  10293. }
  10294. },
  10295. side: {
  10296. height: math.unit(6, "feet"),
  10297. weight: math.unit(70, "kg"),
  10298. name: "Side",
  10299. image: {
  10300. source: "./media/characters/andrew-sleepy/side.svg"
  10301. }
  10302. },
  10303. },
  10304. [
  10305. {
  10306. name: "Micro",
  10307. height: math.unit(1, "mm"),
  10308. default: true
  10309. },
  10310. ]
  10311. ))
  10312. characterMakers.push(() => makeCharacter(
  10313. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10314. {
  10315. front: {
  10316. height: math.unit(6, "feet"),
  10317. weight: math.unit(150, "lb"),
  10318. name: "Front",
  10319. image: {
  10320. source: "./media/characters/judio/front.svg",
  10321. extra: 1258 / 1110
  10322. }
  10323. },
  10324. },
  10325. [
  10326. {
  10327. name: "Normal",
  10328. height: math.unit(5 + 6 / 12, "feet")
  10329. },
  10330. {
  10331. name: "Macro",
  10332. height: math.unit(1000, "feet"),
  10333. default: true
  10334. },
  10335. {
  10336. name: "Megamacro",
  10337. height: math.unit(10, "miles")
  10338. },
  10339. ]
  10340. ))
  10341. characterMakers.push(() => makeCharacter(
  10342. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10343. {
  10344. front: {
  10345. height: math.unit(6, "feet"),
  10346. weight: math.unit(68, "kg"),
  10347. name: "Front",
  10348. image: {
  10349. source: "./media/characters/nomaxice/front.svg",
  10350. extra: 1498 / 1073,
  10351. bottom: 0.075
  10352. }
  10353. },
  10354. foot: {
  10355. height: math.unit(1.1, "feet"),
  10356. name: "Foot",
  10357. image: {
  10358. source: "./media/characters/nomaxice/foot.svg"
  10359. }
  10360. },
  10361. },
  10362. [
  10363. {
  10364. name: "Micro",
  10365. height: math.unit(8, "cm")
  10366. },
  10367. {
  10368. name: "Norm",
  10369. height: math.unit(1.82, "m")
  10370. },
  10371. {
  10372. name: "Norm+",
  10373. height: math.unit(8.8, "feet")
  10374. },
  10375. {
  10376. name: "Big",
  10377. height: math.unit(8, "meters"),
  10378. default: true
  10379. },
  10380. {
  10381. name: "Macro",
  10382. height: math.unit(18, "meters")
  10383. },
  10384. {
  10385. name: "Macro+",
  10386. height: math.unit(88, "meters")
  10387. },
  10388. ]
  10389. ))
  10390. characterMakers.push(() => makeCharacter(
  10391. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10392. {
  10393. front: {
  10394. height: math.unit(12, "feet"),
  10395. weight: math.unit(1.5, "tons"),
  10396. name: "Front",
  10397. image: {
  10398. source: "./media/characters/dydros/front.svg",
  10399. extra: 863 / 800,
  10400. bottom: 0.015
  10401. }
  10402. },
  10403. back: {
  10404. height: math.unit(12, "feet"),
  10405. weight: math.unit(1.5, "tons"),
  10406. name: "Back",
  10407. image: {
  10408. source: "./media/characters/dydros/back.svg",
  10409. extra: 900 / 843,
  10410. bottom: 0.005
  10411. }
  10412. },
  10413. },
  10414. [
  10415. {
  10416. name: "Normal",
  10417. height: math.unit(12, "feet"),
  10418. default: true
  10419. },
  10420. ]
  10421. ))
  10422. characterMakers.push(() => makeCharacter(
  10423. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10424. {
  10425. front: {
  10426. height: math.unit(6, "feet"),
  10427. weight: math.unit(100, "kg"),
  10428. name: "Front",
  10429. image: {
  10430. source: "./media/characters/riggi/front.svg",
  10431. extra: 5787 / 5303
  10432. }
  10433. },
  10434. hyper: {
  10435. height: math.unit(6 * 5 / 3, "feet"),
  10436. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10437. name: "Hyper",
  10438. image: {
  10439. source: "./media/characters/riggi/hyper.svg",
  10440. extra: 3595 / 3485
  10441. }
  10442. },
  10443. },
  10444. [
  10445. {
  10446. name: "Small Macro",
  10447. height: math.unit(50, "feet")
  10448. },
  10449. {
  10450. name: "Default",
  10451. height: math.unit(200, "feet"),
  10452. default: true
  10453. },
  10454. {
  10455. name: "Loom",
  10456. height: math.unit(10000, "feet")
  10457. },
  10458. {
  10459. name: "Cruising Altitude",
  10460. height: math.unit(30000, "feet")
  10461. },
  10462. {
  10463. name: "Megamacro",
  10464. height: math.unit(100, "miles")
  10465. },
  10466. {
  10467. name: "Continent Sized",
  10468. height: math.unit(2800, "miles")
  10469. },
  10470. {
  10471. name: "Earth Sized",
  10472. height: math.unit(8000, "miles")
  10473. },
  10474. ]
  10475. ))
  10476. characterMakers.push(() => makeCharacter(
  10477. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10478. {
  10479. front: {
  10480. height: math.unit(6, "feet"),
  10481. weight: math.unit(250, "lb"),
  10482. name: "Front",
  10483. image: {
  10484. source: "./media/characters/alexi/front.svg",
  10485. extra: 3483 / 3291,
  10486. bottom: 0.04
  10487. }
  10488. },
  10489. back: {
  10490. height: math.unit(6, "feet"),
  10491. weight: math.unit(250, "lb"),
  10492. name: "Back",
  10493. image: {
  10494. source: "./media/characters/alexi/back.svg",
  10495. extra: 3533 / 3356,
  10496. bottom: 0.021
  10497. }
  10498. },
  10499. frontTransforming: {
  10500. height: math.unit(8.58, "feet"),
  10501. weight: math.unit(1300, "lb"),
  10502. name: "Transforming",
  10503. image: {
  10504. source: "./media/characters/alexi/front-transforming.svg",
  10505. extra: 437 / 409,
  10506. bottom: 19 / 458.66
  10507. }
  10508. },
  10509. frontTransformed: {
  10510. height: math.unit(12.5, "feet"),
  10511. weight: math.unit(4000, "lb"),
  10512. name: "Transformed",
  10513. image: {
  10514. source: "./media/characters/alexi/front-transformed.svg",
  10515. extra: 639 / 614,
  10516. bottom: 30.55 / 671
  10517. }
  10518. },
  10519. },
  10520. [
  10521. {
  10522. name: "Normal",
  10523. height: math.unit(14, "feet"),
  10524. default: true
  10525. },
  10526. {
  10527. name: "Minimacro",
  10528. height: math.unit(30, "meters")
  10529. },
  10530. {
  10531. name: "Macro",
  10532. height: math.unit(500, "meters")
  10533. },
  10534. {
  10535. name: "Megamacro",
  10536. height: math.unit(9000, "km")
  10537. },
  10538. {
  10539. name: "Teramacro",
  10540. height: math.unit(384000, "km")
  10541. },
  10542. ]
  10543. ))
  10544. characterMakers.push(() => makeCharacter(
  10545. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10546. {
  10547. front: {
  10548. height: math.unit(6, "feet"),
  10549. weight: math.unit(150, "lb"),
  10550. name: "Front",
  10551. image: {
  10552. source: "./media/characters/kayroo/front.svg",
  10553. extra: 1153 / 1038,
  10554. bottom: 0.06
  10555. }
  10556. },
  10557. foot: {
  10558. height: math.unit(6, "feet"),
  10559. weight: math.unit(150, "lb"),
  10560. name: "Foot",
  10561. image: {
  10562. source: "./media/characters/kayroo/foot.svg"
  10563. }
  10564. },
  10565. },
  10566. [
  10567. {
  10568. name: "Normal",
  10569. height: math.unit(8, "feet"),
  10570. default: true
  10571. },
  10572. {
  10573. name: "Minimacro",
  10574. height: math.unit(250, "feet")
  10575. },
  10576. {
  10577. name: "Macro",
  10578. height: math.unit(2800, "feet")
  10579. },
  10580. {
  10581. name: "Megamacro",
  10582. height: math.unit(5200, "feet")
  10583. },
  10584. {
  10585. name: "Gigamacro",
  10586. height: math.unit(27000, "feet")
  10587. },
  10588. {
  10589. name: "Omega",
  10590. height: math.unit(45000, "feet")
  10591. },
  10592. ]
  10593. ))
  10594. characterMakers.push(() => makeCharacter(
  10595. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10596. {
  10597. front: {
  10598. height: math.unit(18, "feet"),
  10599. weight: math.unit(5800, "lb"),
  10600. name: "Front",
  10601. image: {
  10602. source: "./media/characters/rhys/front.svg",
  10603. extra: 3386 / 3090,
  10604. bottom: 0.07
  10605. }
  10606. },
  10607. },
  10608. [
  10609. {
  10610. name: "Normal",
  10611. height: math.unit(18, "feet"),
  10612. default: true
  10613. },
  10614. {
  10615. name: "Working Size",
  10616. height: math.unit(200, "feet")
  10617. },
  10618. {
  10619. name: "Demolition Size",
  10620. height: math.unit(2000, "feet")
  10621. },
  10622. {
  10623. name: "Maximum Licensed Size",
  10624. height: math.unit(5, "miles")
  10625. },
  10626. {
  10627. name: "Maximum Observed Size",
  10628. height: math.unit(10, "yottameters")
  10629. },
  10630. ]
  10631. ))
  10632. characterMakers.push(() => makeCharacter(
  10633. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10634. {
  10635. front: {
  10636. height: math.unit(6, "feet"),
  10637. weight: math.unit(250, "lb"),
  10638. name: "Front",
  10639. image: {
  10640. source: "./media/characters/toto/front.svg",
  10641. extra: 527 / 479,
  10642. bottom: 0.05
  10643. }
  10644. },
  10645. },
  10646. [
  10647. {
  10648. name: "Micro",
  10649. height: math.unit(3, "feet")
  10650. },
  10651. {
  10652. name: "Normal",
  10653. height: math.unit(10, "feet")
  10654. },
  10655. {
  10656. name: "Macro",
  10657. height: math.unit(150, "feet"),
  10658. default: true
  10659. },
  10660. {
  10661. name: "Megamacro",
  10662. height: math.unit(1200, "feet")
  10663. },
  10664. ]
  10665. ))
  10666. characterMakers.push(() => makeCharacter(
  10667. { name: "King", species: ["lion"], tags: ["anthro"] },
  10668. {
  10669. back: {
  10670. height: math.unit(6, "feet"),
  10671. weight: math.unit(150, "lb"),
  10672. name: "Back",
  10673. image: {
  10674. source: "./media/characters/king/back.svg"
  10675. }
  10676. },
  10677. },
  10678. [
  10679. {
  10680. name: "Micro",
  10681. height: math.unit(2, "inches")
  10682. },
  10683. {
  10684. name: "Normal",
  10685. height: math.unit(8, "feet")
  10686. },
  10687. {
  10688. name: "Macro",
  10689. height: math.unit(200, "feet"),
  10690. default: true
  10691. },
  10692. {
  10693. name: "Megamacro",
  10694. height: math.unit(50, "miles")
  10695. },
  10696. ]
  10697. ))
  10698. characterMakers.push(() => makeCharacter(
  10699. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10700. {
  10701. anthro: {
  10702. height: math.unit(6 + 5 / 12, "feet"),
  10703. weight: math.unit(280, "lb"),
  10704. name: "Anthro",
  10705. image: {
  10706. source: "./media/characters/cordite/anthro.svg",
  10707. extra: 1986 / 1905,
  10708. bottom: 0.025
  10709. }
  10710. },
  10711. feral: {
  10712. height: math.unit(2, "feet"),
  10713. weight: math.unit(90, "lb"),
  10714. name: "Feral",
  10715. image: {
  10716. source: "./media/characters/cordite/feral.svg",
  10717. extra: 1260 / 755,
  10718. bottom: 0.05
  10719. }
  10720. },
  10721. },
  10722. [
  10723. {
  10724. name: "Normal",
  10725. height: math.unit(6 + 5 / 12, "feet"),
  10726. default: true
  10727. },
  10728. ]
  10729. ))
  10730. characterMakers.push(() => makeCharacter(
  10731. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10732. {
  10733. front: {
  10734. height: math.unit(6, "feet"),
  10735. weight: math.unit(150, "lb"),
  10736. name: "Front",
  10737. image: {
  10738. source: "./media/characters/pianostrong/front.svg",
  10739. extra: 6577 / 6254,
  10740. bottom: 0.02
  10741. }
  10742. },
  10743. side: {
  10744. height: math.unit(6, "feet"),
  10745. weight: math.unit(150, "lb"),
  10746. name: "Side",
  10747. image: {
  10748. source: "./media/characters/pianostrong/side.svg",
  10749. extra: 6106 / 5730
  10750. }
  10751. },
  10752. back: {
  10753. height: math.unit(6, "feet"),
  10754. weight: math.unit(150, "lb"),
  10755. name: "Back",
  10756. image: {
  10757. source: "./media/characters/pianostrong/back.svg",
  10758. extra: 6085 / 5733,
  10759. bottom: 0.01
  10760. }
  10761. },
  10762. },
  10763. [
  10764. {
  10765. name: "Macro",
  10766. height: math.unit(100, "feet")
  10767. },
  10768. {
  10769. name: "Macro+",
  10770. height: math.unit(300, "feet"),
  10771. default: true
  10772. },
  10773. {
  10774. name: "Macro++",
  10775. height: math.unit(1000, "feet")
  10776. },
  10777. ]
  10778. ))
  10779. characterMakers.push(() => makeCharacter(
  10780. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10781. {
  10782. front: {
  10783. height: math.unit(6, "feet"),
  10784. weight: math.unit(150, "lb"),
  10785. name: "Front",
  10786. image: {
  10787. source: "./media/characters/kona/front.svg",
  10788. extra: 2960 / 2629,
  10789. bottom: 0.005
  10790. }
  10791. },
  10792. },
  10793. [
  10794. {
  10795. name: "Normal",
  10796. height: math.unit(11 + 8 / 12, "feet")
  10797. },
  10798. {
  10799. name: "Macro",
  10800. height: math.unit(850, "feet"),
  10801. default: true
  10802. },
  10803. {
  10804. name: "Macro+",
  10805. height: math.unit(1.5, "km"),
  10806. default: true
  10807. },
  10808. {
  10809. name: "Megamacro",
  10810. height: math.unit(80, "miles")
  10811. },
  10812. {
  10813. name: "Gigamacro",
  10814. height: math.unit(3500, "miles")
  10815. },
  10816. ]
  10817. ))
  10818. characterMakers.push(() => makeCharacter(
  10819. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10820. {
  10821. side: {
  10822. height: math.unit(1.9, "meters"),
  10823. weight: math.unit(326, "kg"),
  10824. name: "Side",
  10825. image: {
  10826. source: "./media/characters/levi/side.svg",
  10827. extra: 1704 / 1334,
  10828. bottom: 0.02
  10829. }
  10830. },
  10831. },
  10832. [
  10833. {
  10834. name: "Normal",
  10835. height: math.unit(1.9, "meters"),
  10836. default: true
  10837. },
  10838. {
  10839. name: "Macro",
  10840. height: math.unit(20, "meters")
  10841. },
  10842. {
  10843. name: "Macro+",
  10844. height: math.unit(200, "meters")
  10845. },
  10846. {
  10847. name: "Megamacro",
  10848. height: math.unit(2, "km")
  10849. },
  10850. {
  10851. name: "Megamacro+",
  10852. height: math.unit(20, "km")
  10853. },
  10854. {
  10855. name: "Gigamacro",
  10856. height: math.unit(2500, "km")
  10857. },
  10858. {
  10859. name: "Gigamacro+",
  10860. height: math.unit(120000, "km")
  10861. },
  10862. {
  10863. name: "Teramacro",
  10864. height: math.unit(7.77e6, "km")
  10865. },
  10866. ]
  10867. ))
  10868. characterMakers.push(() => makeCharacter(
  10869. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10870. {
  10871. front: {
  10872. height: math.unit(6 + 4 / 12, "feet"),
  10873. weight: math.unit(188, "lb"),
  10874. name: "Front",
  10875. image: {
  10876. source: "./media/characters/bmc/front.svg",
  10877. extra: 1067 / 1022,
  10878. bottom: 0.047
  10879. }
  10880. },
  10881. },
  10882. [
  10883. {
  10884. name: "Human-sized",
  10885. height: math.unit(6 + 4 / 12, "feet")
  10886. },
  10887. {
  10888. name: "Small",
  10889. height: math.unit(250, "feet")
  10890. },
  10891. {
  10892. name: "Normal",
  10893. height: math.unit(1250, "feet"),
  10894. default: true
  10895. },
  10896. {
  10897. name: "Good Day",
  10898. height: math.unit(88, "miles")
  10899. },
  10900. {
  10901. name: "Largest Measured Size",
  10902. height: math.unit(11.2e6, "lightyears")
  10903. },
  10904. ]
  10905. ))
  10906. characterMakers.push(() => makeCharacter(
  10907. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10908. {
  10909. front: {
  10910. height: math.unit(20, "feet"),
  10911. weight: math.unit(2016, "kg"),
  10912. name: "Front",
  10913. image: {
  10914. source: "./media/characters/sven-the-kaiju/front.svg",
  10915. extra: 1479 / 1449,
  10916. bottom: 0.05
  10917. }
  10918. },
  10919. },
  10920. [
  10921. {
  10922. name: "Fairy",
  10923. height: math.unit(6, "inches")
  10924. },
  10925. {
  10926. name: "Normal",
  10927. height: math.unit(20, "feet"),
  10928. default: true
  10929. },
  10930. {
  10931. name: "Rampage",
  10932. height: math.unit(200, "feet")
  10933. },
  10934. {
  10935. name: "Archfey Forest Guardian",
  10936. height: math.unit(1, "mile")
  10937. },
  10938. ]
  10939. ))
  10940. characterMakers.push(() => makeCharacter(
  10941. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10942. {
  10943. front: {
  10944. height: math.unit(4, "meters"),
  10945. weight: math.unit(2, "tons"),
  10946. name: "Front",
  10947. image: {
  10948. source: "./media/characters/marik/front.svg",
  10949. extra: 1057 / 1003,
  10950. bottom: 0.08
  10951. }
  10952. },
  10953. },
  10954. [
  10955. {
  10956. name: "Normal",
  10957. height: math.unit(4, "meters"),
  10958. default: true
  10959. },
  10960. {
  10961. name: "Macro",
  10962. height: math.unit(20, "meters")
  10963. },
  10964. {
  10965. name: "Megamacro",
  10966. height: math.unit(50, "km")
  10967. },
  10968. {
  10969. name: "Gigamacro",
  10970. height: math.unit(100, "km")
  10971. },
  10972. {
  10973. name: "Alpha Macro",
  10974. height: math.unit(7.88e7, "yottameters")
  10975. },
  10976. ]
  10977. ))
  10978. characterMakers.push(() => makeCharacter(
  10979. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10980. {
  10981. front: {
  10982. height: math.unit(6, "feet"),
  10983. weight: math.unit(110, "lb"),
  10984. name: "Front",
  10985. image: {
  10986. source: "./media/characters/mel/front.svg",
  10987. extra: 736 / 617,
  10988. bottom: 0.017
  10989. }
  10990. },
  10991. },
  10992. [
  10993. {
  10994. name: "Pico",
  10995. height: math.unit(3, "pm")
  10996. },
  10997. {
  10998. name: "Nano",
  10999. height: math.unit(3, "nm")
  11000. },
  11001. {
  11002. name: "Micro",
  11003. height: math.unit(0.3, "mm"),
  11004. default: true
  11005. },
  11006. {
  11007. name: "Micro+",
  11008. height: math.unit(3, "mm")
  11009. },
  11010. {
  11011. name: "Normal",
  11012. height: math.unit(5 + 10.5 / 12, "feet")
  11013. },
  11014. ]
  11015. ))
  11016. characterMakers.push(() => makeCharacter(
  11017. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  11018. {
  11019. kaiju: {
  11020. height: math.unit(1.75, "meters"),
  11021. weight: math.unit(55, "kg"),
  11022. name: "Kaiju",
  11023. image: {
  11024. source: "./media/characters/lykonous/kaiju.svg",
  11025. extra: 1055 / 946,
  11026. bottom: 0.135
  11027. }
  11028. },
  11029. },
  11030. [
  11031. {
  11032. name: "Normal",
  11033. height: math.unit(2.5, "meters"),
  11034. default: true
  11035. },
  11036. {
  11037. name: "Kaiju Dragon",
  11038. height: math.unit(60, "meters")
  11039. },
  11040. {
  11041. name: "Mega Kaiju",
  11042. height: math.unit(120, "km")
  11043. },
  11044. {
  11045. name: "Giga Kaiju",
  11046. height: math.unit(200, "megameters")
  11047. },
  11048. {
  11049. name: "Terra Kaiju",
  11050. height: math.unit(400, "gigameters")
  11051. },
  11052. {
  11053. name: "Kaiju Dragon God",
  11054. height: math.unit(13000, "exaparsecs")
  11055. },
  11056. ]
  11057. ))
  11058. characterMakers.push(() => makeCharacter(
  11059. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11060. {
  11061. front: {
  11062. height: math.unit(6, "feet"),
  11063. weight: math.unit(150, "lb"),
  11064. name: "Front",
  11065. image: {
  11066. source: "./media/characters/blü/front.svg",
  11067. extra: 1883 / 1564,
  11068. bottom: 0.031
  11069. }
  11070. },
  11071. },
  11072. [
  11073. {
  11074. name: "Normal",
  11075. height: math.unit(13, "feet"),
  11076. default: true
  11077. },
  11078. {
  11079. name: "Big Boi",
  11080. height: math.unit(150, "meters")
  11081. },
  11082. {
  11083. name: "Mini Stomper",
  11084. height: math.unit(300, "meters")
  11085. },
  11086. {
  11087. name: "Macro",
  11088. height: math.unit(1000, "meters")
  11089. },
  11090. {
  11091. name: "Megamacro",
  11092. height: math.unit(11000, "meters")
  11093. },
  11094. {
  11095. name: "Gigamacro",
  11096. height: math.unit(11000, "km")
  11097. },
  11098. {
  11099. name: "Teramacro",
  11100. height: math.unit(420000, "km")
  11101. },
  11102. {
  11103. name: "Examacro",
  11104. height: math.unit(120, "parsecs")
  11105. },
  11106. {
  11107. name: "God Tho",
  11108. height: math.unit(98000000000, "parsecs")
  11109. },
  11110. ]
  11111. ))
  11112. characterMakers.push(() => makeCharacter(
  11113. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11114. {
  11115. taurFront: {
  11116. height: math.unit(6, "feet"),
  11117. weight: math.unit(200, "lb"),
  11118. name: "Taur (Front)",
  11119. image: {
  11120. source: "./media/characters/scales/taur-front.svg",
  11121. extra: 1,
  11122. bottom: 0.05
  11123. }
  11124. },
  11125. taurBack: {
  11126. height: math.unit(6, "feet"),
  11127. weight: math.unit(200, "lb"),
  11128. name: "Taur (Back)",
  11129. image: {
  11130. source: "./media/characters/scales/taur-back.svg",
  11131. extra: 1,
  11132. bottom: 0.08
  11133. }
  11134. },
  11135. anthro: {
  11136. height: math.unit(6 * 7 / 12, "feet"),
  11137. weight: math.unit(100, "lb"),
  11138. name: "Anthro",
  11139. image: {
  11140. source: "./media/characters/scales/anthro.svg",
  11141. extra: 1,
  11142. bottom: 0.06
  11143. }
  11144. },
  11145. },
  11146. [
  11147. {
  11148. name: "Normal",
  11149. height: math.unit(12, "feet"),
  11150. default: true
  11151. },
  11152. ]
  11153. ))
  11154. characterMakers.push(() => makeCharacter(
  11155. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11156. {
  11157. front: {
  11158. height: math.unit(6, "feet"),
  11159. weight: math.unit(150, "lb"),
  11160. name: "Front",
  11161. image: {
  11162. source: "./media/characters/koragos/front.svg",
  11163. extra: 841 / 794,
  11164. bottom: 0.035
  11165. }
  11166. },
  11167. back: {
  11168. height: math.unit(6, "feet"),
  11169. weight: math.unit(150, "lb"),
  11170. name: "Back",
  11171. image: {
  11172. source: "./media/characters/koragos/back.svg",
  11173. extra: 841 / 810,
  11174. bottom: 0.022
  11175. }
  11176. },
  11177. },
  11178. [
  11179. {
  11180. name: "Normal",
  11181. height: math.unit(6 + 11 / 12, "feet"),
  11182. default: true
  11183. },
  11184. {
  11185. name: "Macro",
  11186. height: math.unit(490, "feet")
  11187. },
  11188. {
  11189. name: "Megamacro",
  11190. height: math.unit(10, "miles")
  11191. },
  11192. {
  11193. name: "Gigamacro",
  11194. height: math.unit(50, "miles")
  11195. },
  11196. ]
  11197. ))
  11198. characterMakers.push(() => makeCharacter(
  11199. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11200. {
  11201. front: {
  11202. height: math.unit(6, "feet"),
  11203. weight: math.unit(250, "lb"),
  11204. name: "Front",
  11205. image: {
  11206. source: "./media/characters/xylrem/front.svg",
  11207. extra: 3323 / 3050,
  11208. bottom: 0.065
  11209. }
  11210. },
  11211. },
  11212. [
  11213. {
  11214. name: "Micro",
  11215. height: math.unit(4, "feet")
  11216. },
  11217. {
  11218. name: "Normal",
  11219. height: math.unit(16, "feet"),
  11220. default: true
  11221. },
  11222. {
  11223. name: "Macro",
  11224. height: math.unit(2720, "feet")
  11225. },
  11226. {
  11227. name: "Megamacro",
  11228. height: math.unit(25000, "miles")
  11229. },
  11230. ]
  11231. ))
  11232. characterMakers.push(() => makeCharacter(
  11233. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11234. {
  11235. front: {
  11236. height: math.unit(8, "feet"),
  11237. weight: math.unit(250, "kg"),
  11238. name: "Front",
  11239. image: {
  11240. source: "./media/characters/ikideru/front.svg",
  11241. extra: 930 / 870,
  11242. bottom: 0.087
  11243. }
  11244. },
  11245. back: {
  11246. height: math.unit(8, "feet"),
  11247. weight: math.unit(250, "kg"),
  11248. name: "Back",
  11249. image: {
  11250. source: "./media/characters/ikideru/back.svg",
  11251. extra: 919 / 852,
  11252. bottom: 0.055
  11253. }
  11254. },
  11255. },
  11256. [
  11257. {
  11258. name: "Rare",
  11259. height: math.unit(8, "feet"),
  11260. default: true
  11261. },
  11262. {
  11263. name: "Playful Loom",
  11264. height: math.unit(80, "feet")
  11265. },
  11266. {
  11267. name: "City Leaner",
  11268. height: math.unit(230, "feet")
  11269. },
  11270. {
  11271. name: "Megamacro",
  11272. height: math.unit(2500, "feet")
  11273. },
  11274. {
  11275. name: "Gigamacro",
  11276. height: math.unit(26400, "feet")
  11277. },
  11278. {
  11279. name: "Tectonic Shifter",
  11280. height: math.unit(1.7, "megameters")
  11281. },
  11282. {
  11283. name: "Planet Carer",
  11284. height: math.unit(21, "megameters")
  11285. },
  11286. {
  11287. name: "God",
  11288. height: math.unit(11157.22, "parsecs")
  11289. },
  11290. ]
  11291. ))
  11292. characterMakers.push(() => makeCharacter(
  11293. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11294. {
  11295. front: {
  11296. height: math.unit(6, "feet"),
  11297. weight: math.unit(120, "lb"),
  11298. name: "Front",
  11299. image: {
  11300. source: "./media/characters/neo/front.svg"
  11301. }
  11302. },
  11303. },
  11304. [
  11305. {
  11306. name: "Micro",
  11307. height: math.unit(2, "inches"),
  11308. default: true
  11309. },
  11310. {
  11311. name: "Human Size",
  11312. height: math.unit(5 + 8 / 12, "feet")
  11313. },
  11314. ]
  11315. ))
  11316. characterMakers.push(() => makeCharacter(
  11317. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11318. {
  11319. front: {
  11320. height: math.unit(13 + 10 / 12, "feet"),
  11321. weight: math.unit(5320, "lb"),
  11322. name: "Front",
  11323. image: {
  11324. source: "./media/characters/chauncey-chantz/front.svg",
  11325. extra: 1587 / 1435,
  11326. bottom: 0.02
  11327. }
  11328. },
  11329. },
  11330. [
  11331. {
  11332. name: "Normal",
  11333. height: math.unit(13 + 10 / 12, "feet"),
  11334. default: true
  11335. },
  11336. {
  11337. name: "Macro",
  11338. height: math.unit(45, "feet")
  11339. },
  11340. {
  11341. name: "Megamacro",
  11342. height: math.unit(250, "miles")
  11343. },
  11344. {
  11345. name: "Planetary",
  11346. height: math.unit(10000, "miles")
  11347. },
  11348. {
  11349. name: "Galactic",
  11350. height: math.unit(40000, "parsecs")
  11351. },
  11352. {
  11353. name: "Universal",
  11354. height: math.unit(1, "yottameter")
  11355. },
  11356. ]
  11357. ))
  11358. characterMakers.push(() => makeCharacter(
  11359. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11360. {
  11361. front: {
  11362. height: math.unit(6, "feet"),
  11363. weight: math.unit(150, "lb"),
  11364. name: "Front",
  11365. image: {
  11366. source: "./media/characters/epifox/front.svg",
  11367. extra: 1,
  11368. bottom: 0.075
  11369. }
  11370. },
  11371. },
  11372. [
  11373. {
  11374. name: "Micro",
  11375. height: math.unit(6, "inches")
  11376. },
  11377. {
  11378. name: "Normal",
  11379. height: math.unit(12, "feet"),
  11380. default: true
  11381. },
  11382. {
  11383. name: "Macro",
  11384. height: math.unit(3810, "feet")
  11385. },
  11386. {
  11387. name: "Megamacro",
  11388. height: math.unit(500, "miles")
  11389. },
  11390. ]
  11391. ))
  11392. characterMakers.push(() => makeCharacter(
  11393. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11394. {
  11395. front: {
  11396. height: math.unit(1.8796, "m"),
  11397. weight: math.unit(230, "lb"),
  11398. name: "Front",
  11399. image: {
  11400. source: "./media/characters/colin-t/front.svg",
  11401. extra: 1272 / 1193,
  11402. bottom: 0.07
  11403. }
  11404. },
  11405. },
  11406. [
  11407. {
  11408. name: "Micro",
  11409. height: math.unit(0.571, "meters")
  11410. },
  11411. {
  11412. name: "Normal",
  11413. height: math.unit(1.8796, "meters"),
  11414. default: true
  11415. },
  11416. {
  11417. name: "Tall",
  11418. height: math.unit(4, "meters")
  11419. },
  11420. {
  11421. name: "Macro",
  11422. height: math.unit(67.241, "meters")
  11423. },
  11424. {
  11425. name: "Megamacro",
  11426. height: math.unit(371.856, "meters")
  11427. },
  11428. {
  11429. name: "Planetary",
  11430. height: math.unit(12631.5689, "km")
  11431. },
  11432. ]
  11433. ))
  11434. characterMakers.push(() => makeCharacter(
  11435. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11436. {
  11437. front: {
  11438. height: math.unit(1.85, "meters"),
  11439. weight: math.unit(80, "kg"),
  11440. name: "Front",
  11441. image: {
  11442. source: "./media/characters/matvei/front.svg",
  11443. extra: 614 / 594,
  11444. bottom: 0.01
  11445. }
  11446. },
  11447. },
  11448. [
  11449. {
  11450. name: "Normal",
  11451. height: math.unit(1.85, "meters"),
  11452. default: true
  11453. },
  11454. ]
  11455. ))
  11456. characterMakers.push(() => makeCharacter(
  11457. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11458. {
  11459. front: {
  11460. height: math.unit(5 + 9 / 12, "feet"),
  11461. weight: math.unit(70, "lb"),
  11462. name: "Front",
  11463. image: {
  11464. source: "./media/characters/quincy/front.svg",
  11465. extra: 3041 / 2751
  11466. }
  11467. },
  11468. back: {
  11469. height: math.unit(5 + 9 / 12, "feet"),
  11470. weight: math.unit(70, "lb"),
  11471. name: "Back",
  11472. image: {
  11473. source: "./media/characters/quincy/back.svg",
  11474. extra: 3041 / 2751
  11475. }
  11476. },
  11477. flying: {
  11478. height: math.unit(5 + 4 / 12, "feet"),
  11479. weight: math.unit(70, "lb"),
  11480. name: "Flying",
  11481. image: {
  11482. source: "./media/characters/quincy/flying.svg",
  11483. extra: 1044 / 930
  11484. }
  11485. },
  11486. },
  11487. [
  11488. {
  11489. name: "Micro",
  11490. height: math.unit(3, "cm")
  11491. },
  11492. {
  11493. name: "Normal",
  11494. height: math.unit(5 + 9 / 12, "feet")
  11495. },
  11496. {
  11497. name: "Macro",
  11498. height: math.unit(200, "meters"),
  11499. default: true
  11500. },
  11501. {
  11502. name: "Megamacro",
  11503. height: math.unit(1000, "meters")
  11504. },
  11505. ]
  11506. ))
  11507. characterMakers.push(() => makeCharacter(
  11508. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11509. {
  11510. front: {
  11511. height: math.unit(4 + 7 / 12, "feet"),
  11512. weight: math.unit(50, "lb"),
  11513. name: "Front",
  11514. image: {
  11515. source: "./media/characters/vanrel/front.svg",
  11516. extra: 1,
  11517. bottom: 0.02
  11518. }
  11519. },
  11520. frontAlt: {
  11521. height: math.unit(4 + 7 / 12, "feet"),
  11522. weight: math.unit(50, "lb"),
  11523. name: "Front-alt",
  11524. image: {
  11525. source: "./media/characters/vanrel/front-alt.svg",
  11526. extra: 1,
  11527. bottom: 15 / 1511
  11528. }
  11529. },
  11530. elemental: {
  11531. height: math.unit(3, "feet"),
  11532. weight: math.unit(50, "lb"),
  11533. name: "Elemental",
  11534. image: {
  11535. source: "./media/characters/vanrel/elemental.svg",
  11536. extra: 192.3 / 162.8,
  11537. bottom: 1.79 / 194.17
  11538. }
  11539. },
  11540. side: {
  11541. height: math.unit(4 + 7 / 12, "feet"),
  11542. weight: math.unit(50, "lb"),
  11543. name: "Side",
  11544. image: {
  11545. source: "./media/characters/vanrel/side.svg",
  11546. extra: 1,
  11547. bottom: 0.025
  11548. }
  11549. },
  11550. tome: {
  11551. height: math.unit(1.35, "feet"),
  11552. weight: math.unit(10, "lb"),
  11553. name: "Vanrel's Tome",
  11554. rename: true,
  11555. image: {
  11556. source: "./media/characters/vanrel/tome.svg"
  11557. }
  11558. },
  11559. beans: {
  11560. height: math.unit(0.89, "feet"),
  11561. name: "Beans",
  11562. image: {
  11563. source: "./media/characters/vanrel/beans.svg"
  11564. }
  11565. },
  11566. },
  11567. [
  11568. {
  11569. name: "Normal",
  11570. height: math.unit(4 + 7 / 12, "feet"),
  11571. default: true
  11572. },
  11573. ]
  11574. ))
  11575. characterMakers.push(() => makeCharacter(
  11576. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11577. {
  11578. front: {
  11579. height: math.unit(7 + 5 / 12, "feet"),
  11580. weight: math.unit(150, "lb"),
  11581. name: "Front",
  11582. image: {
  11583. source: "./media/characters/kuiper-vanrel/front.svg",
  11584. extra: 1118 / 1068,
  11585. bottom: 0.09
  11586. }
  11587. },
  11588. foot: {
  11589. height: math.unit(0.55, "meters"),
  11590. name: "Foot",
  11591. image: {
  11592. source: "./media/characters/kuiper-vanrel/foot.svg",
  11593. }
  11594. },
  11595. battle: {
  11596. height: math.unit(6.824, "feet"),
  11597. weight: math.unit(150, "lb"),
  11598. name: "Battle",
  11599. image: {
  11600. source: "./media/characters/kuiper-vanrel/battle.svg",
  11601. extra: 1466 / 1327,
  11602. bottom: 29 / 1492.5
  11603. }
  11604. },
  11605. battleAlt: {
  11606. height: math.unit(6.824, "feet"),
  11607. weight: math.unit(150, "lb"),
  11608. name: "Battle (Alt)",
  11609. image: {
  11610. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11611. extra: 2081 / 1965,
  11612. bottom: 40 / 2121
  11613. }
  11614. },
  11615. },
  11616. [
  11617. {
  11618. name: "Normal",
  11619. height: math.unit(7 + 5 / 12, "feet"),
  11620. default: true
  11621. },
  11622. ]
  11623. ))
  11624. characterMakers.push(() => makeCharacter(
  11625. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11626. {
  11627. front: {
  11628. height: math.unit(8 + 5 / 12, "feet"),
  11629. weight: math.unit(150, "lb"),
  11630. name: "Front",
  11631. image: {
  11632. source: "./media/characters/keset-vanrel/front.svg",
  11633. extra: 1150 / 1084,
  11634. bottom: 0.05
  11635. }
  11636. },
  11637. hand: {
  11638. height: math.unit(0.6, "meters"),
  11639. name: "Hand",
  11640. image: {
  11641. source: "./media/characters/keset-vanrel/hand.svg"
  11642. }
  11643. },
  11644. foot: {
  11645. height: math.unit(0.94978, "meters"),
  11646. name: "Foot",
  11647. image: {
  11648. source: "./media/characters/keset-vanrel/foot.svg"
  11649. }
  11650. },
  11651. battle: {
  11652. height: math.unit(7.408, "feet"),
  11653. weight: math.unit(150, "lb"),
  11654. name: "Battle",
  11655. image: {
  11656. source: "./media/characters/keset-vanrel/battle.svg",
  11657. extra: 1890 / 1386,
  11658. bottom: 73.28 / 1970
  11659. }
  11660. },
  11661. },
  11662. [
  11663. {
  11664. name: "Normal",
  11665. height: math.unit(8 + 5 / 12, "feet"),
  11666. default: true
  11667. },
  11668. ]
  11669. ))
  11670. characterMakers.push(() => makeCharacter(
  11671. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11672. {
  11673. front: {
  11674. height: math.unit(6, "feet"),
  11675. weight: math.unit(150, "lb"),
  11676. name: "Front",
  11677. image: {
  11678. source: "./media/characters/neos/front.svg",
  11679. extra: 1696 / 992,
  11680. bottom: 0.14
  11681. }
  11682. },
  11683. },
  11684. [
  11685. {
  11686. name: "Normal",
  11687. height: math.unit(54, "cm"),
  11688. default: true
  11689. },
  11690. {
  11691. name: "Macro",
  11692. height: math.unit(100, "m")
  11693. },
  11694. {
  11695. name: "Megamacro",
  11696. height: math.unit(10, "km")
  11697. },
  11698. {
  11699. name: "Megamacro+",
  11700. height: math.unit(100, "km")
  11701. },
  11702. {
  11703. name: "Gigamacro",
  11704. height: math.unit(100, "Mm")
  11705. },
  11706. {
  11707. name: "Teramacro",
  11708. height: math.unit(100, "Gm")
  11709. },
  11710. {
  11711. name: "Examacro",
  11712. height: math.unit(100, "Em")
  11713. },
  11714. {
  11715. name: "Godly",
  11716. height: math.unit(10000, "Ym")
  11717. },
  11718. {
  11719. name: "Beyond Godly",
  11720. height: math.unit(25, "multiverses")
  11721. },
  11722. ]
  11723. ))
  11724. characterMakers.push(() => makeCharacter(
  11725. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11726. {
  11727. feminine: {
  11728. height: math.unit(5, "feet"),
  11729. weight: math.unit(100, "lb"),
  11730. name: "Feminine",
  11731. image: {
  11732. source: "./media/characters/sammy-mouse/feminine.svg",
  11733. extra: 2526 / 2425,
  11734. bottom: 0.123
  11735. }
  11736. },
  11737. masculine: {
  11738. height: math.unit(5, "feet"),
  11739. weight: math.unit(100, "lb"),
  11740. name: "Masculine",
  11741. image: {
  11742. source: "./media/characters/sammy-mouse/masculine.svg",
  11743. extra: 2526 / 2425,
  11744. bottom: 0.123
  11745. }
  11746. },
  11747. },
  11748. [
  11749. {
  11750. name: "Micro",
  11751. height: math.unit(5, "inches")
  11752. },
  11753. {
  11754. name: "Normal",
  11755. height: math.unit(5, "feet"),
  11756. default: true
  11757. },
  11758. {
  11759. name: "Macro",
  11760. height: math.unit(60, "feet")
  11761. },
  11762. ]
  11763. ))
  11764. characterMakers.push(() => makeCharacter(
  11765. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11766. {
  11767. front: {
  11768. height: math.unit(4, "feet"),
  11769. weight: math.unit(50, "lb"),
  11770. name: "Front",
  11771. image: {
  11772. source: "./media/characters/kole/front.svg",
  11773. extra: 1423 / 1303,
  11774. bottom: 0.025
  11775. }
  11776. },
  11777. back: {
  11778. height: math.unit(4, "feet"),
  11779. weight: math.unit(50, "lb"),
  11780. name: "Back",
  11781. image: {
  11782. source: "./media/characters/kole/back.svg",
  11783. extra: 1426 / 1280,
  11784. bottom: 0.02
  11785. }
  11786. },
  11787. },
  11788. [
  11789. {
  11790. name: "Normal",
  11791. height: math.unit(4, "feet"),
  11792. default: true
  11793. },
  11794. ]
  11795. ))
  11796. characterMakers.push(() => makeCharacter(
  11797. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11798. {
  11799. front: {
  11800. height: math.unit(2 + 6 / 12, "feet"),
  11801. weight: math.unit(20, "lb"),
  11802. name: "Front",
  11803. image: {
  11804. source: "./media/characters/rufran/front.svg",
  11805. extra: 2041 / 1839,
  11806. bottom: 0.055
  11807. }
  11808. },
  11809. back: {
  11810. height: math.unit(2 + 6 / 12, "feet"),
  11811. weight: math.unit(20, "lb"),
  11812. name: "Back",
  11813. image: {
  11814. source: "./media/characters/rufran/back.svg",
  11815. extra: 2054 / 1839,
  11816. bottom: 0.01
  11817. }
  11818. },
  11819. hand: {
  11820. height: math.unit(0.2166, "meters"),
  11821. name: "Hand",
  11822. image: {
  11823. source: "./media/characters/rufran/hand.svg"
  11824. }
  11825. },
  11826. foot: {
  11827. height: math.unit(0.185, "meters"),
  11828. name: "Foot",
  11829. image: {
  11830. source: "./media/characters/rufran/foot.svg"
  11831. }
  11832. },
  11833. },
  11834. [
  11835. {
  11836. name: "Micro",
  11837. height: math.unit(1, "inch")
  11838. },
  11839. {
  11840. name: "Normal",
  11841. height: math.unit(2 + 6 / 12, "feet"),
  11842. default: true
  11843. },
  11844. {
  11845. name: "Big",
  11846. height: math.unit(60, "feet")
  11847. },
  11848. {
  11849. name: "Macro",
  11850. height: math.unit(325, "feet")
  11851. },
  11852. ]
  11853. ))
  11854. characterMakers.push(() => makeCharacter(
  11855. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11856. {
  11857. front: {
  11858. height: math.unit(0.3, "meters"),
  11859. weight: math.unit(3.5, "kg"),
  11860. name: "Front",
  11861. image: {
  11862. source: "./media/characters/chip/front.svg",
  11863. extra: 748 / 674
  11864. }
  11865. },
  11866. },
  11867. [
  11868. {
  11869. name: "Micro",
  11870. height: math.unit(1, "inch"),
  11871. default: true
  11872. },
  11873. ]
  11874. ))
  11875. characterMakers.push(() => makeCharacter(
  11876. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11877. {
  11878. side: {
  11879. height: math.unit(2.3, "meters"),
  11880. weight: math.unit(3500, "lb"),
  11881. name: "Side",
  11882. image: {
  11883. source: "./media/characters/torvid/side.svg",
  11884. extra: 1972 / 722,
  11885. bottom: 0.035
  11886. }
  11887. },
  11888. },
  11889. [
  11890. {
  11891. name: "Normal",
  11892. height: math.unit(2.3, "meters"),
  11893. default: true
  11894. },
  11895. ]
  11896. ))
  11897. characterMakers.push(() => makeCharacter(
  11898. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11899. {
  11900. front: {
  11901. height: math.unit(2, "meters"),
  11902. weight: math.unit(150.5, "kg"),
  11903. name: "Front",
  11904. image: {
  11905. source: "./media/characters/susan/front.svg",
  11906. extra: 693 / 635,
  11907. bottom: 0.05
  11908. }
  11909. },
  11910. },
  11911. [
  11912. {
  11913. name: "Megamacro",
  11914. height: math.unit(505, "miles"),
  11915. default: true
  11916. },
  11917. ]
  11918. ))
  11919. characterMakers.push(() => makeCharacter(
  11920. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11921. {
  11922. front: {
  11923. height: math.unit(6, "feet"),
  11924. weight: math.unit(150, "lb"),
  11925. name: "Front",
  11926. image: {
  11927. source: "./media/characters/raindrops/front.svg",
  11928. extra: 2655 / 2461,
  11929. bottom: 49 / 2705
  11930. }
  11931. },
  11932. back: {
  11933. height: math.unit(6, "feet"),
  11934. weight: math.unit(150, "lb"),
  11935. name: "Back",
  11936. image: {
  11937. source: "./media/characters/raindrops/back.svg",
  11938. extra: 2574 / 2400,
  11939. bottom: 65 / 2634
  11940. }
  11941. },
  11942. },
  11943. [
  11944. {
  11945. name: "Micro",
  11946. height: math.unit(6, "inches")
  11947. },
  11948. {
  11949. name: "Normal",
  11950. height: math.unit(6 + 2 / 12, "feet")
  11951. },
  11952. {
  11953. name: "Macro",
  11954. height: math.unit(131, "feet"),
  11955. default: true
  11956. },
  11957. {
  11958. name: "Megamacro",
  11959. height: math.unit(15, "miles")
  11960. },
  11961. {
  11962. name: "Gigamacro",
  11963. height: math.unit(4000, "miles")
  11964. },
  11965. {
  11966. name: "Teramacro",
  11967. height: math.unit(315000, "miles")
  11968. },
  11969. ]
  11970. ))
  11971. characterMakers.push(() => makeCharacter(
  11972. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11973. {
  11974. front: {
  11975. height: math.unit(2.794, "meters"),
  11976. weight: math.unit(325, "kg"),
  11977. name: "Front",
  11978. image: {
  11979. source: "./media/characters/tezwa/front.svg",
  11980. extra: 2083 / 1906,
  11981. bottom: 0.031
  11982. }
  11983. },
  11984. foot: {
  11985. height: math.unit(0.687, "meters"),
  11986. name: "Foot",
  11987. image: {
  11988. source: "./media/characters/tezwa/foot.svg"
  11989. }
  11990. },
  11991. },
  11992. [
  11993. {
  11994. name: "Normal",
  11995. height: math.unit(9 + 2 / 12, "feet"),
  11996. default: true
  11997. },
  11998. ]
  11999. ))
  12000. characterMakers.push(() => makeCharacter(
  12001. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  12002. {
  12003. front: {
  12004. height: math.unit(58, "feet"),
  12005. weight: math.unit(89000, "lb"),
  12006. name: "Front",
  12007. image: {
  12008. source: "./media/characters/typhus/front.svg",
  12009. extra: 816 / 800,
  12010. bottom: 0.065
  12011. }
  12012. },
  12013. },
  12014. [
  12015. {
  12016. name: "Macro",
  12017. height: math.unit(58, "feet"),
  12018. default: true
  12019. },
  12020. ]
  12021. ))
  12022. characterMakers.push(() => makeCharacter(
  12023. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12024. {
  12025. front: {
  12026. height: math.unit(12, "feet"),
  12027. weight: math.unit(6, "tonnes"),
  12028. name: "Front",
  12029. image: {
  12030. source: "./media/characters/lyra-von-wulf/front.svg",
  12031. extra: 1,
  12032. bottom: 0.10
  12033. }
  12034. },
  12035. frontMecha: {
  12036. height: math.unit(12, "feet"),
  12037. weight: math.unit(12, "tonnes"),
  12038. name: "Front (Mecha)",
  12039. image: {
  12040. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12041. extra: 1,
  12042. bottom: 0.042
  12043. }
  12044. },
  12045. maw: {
  12046. height: math.unit(2.2, "feet"),
  12047. name: "Maw",
  12048. image: {
  12049. source: "./media/characters/lyra-von-wulf/maw.svg"
  12050. }
  12051. },
  12052. },
  12053. [
  12054. {
  12055. name: "Normal",
  12056. height: math.unit(12, "feet"),
  12057. default: true
  12058. },
  12059. {
  12060. name: "Classic",
  12061. height: math.unit(50, "feet")
  12062. },
  12063. {
  12064. name: "Macro",
  12065. height: math.unit(500, "feet")
  12066. },
  12067. {
  12068. name: "Megamacro",
  12069. height: math.unit(1, "mile")
  12070. },
  12071. {
  12072. name: "Gigamacro",
  12073. height: math.unit(400, "miles")
  12074. },
  12075. {
  12076. name: "Teramacro",
  12077. height: math.unit(22000, "miles")
  12078. },
  12079. {
  12080. name: "Solarmacro",
  12081. height: math.unit(8600000, "miles")
  12082. },
  12083. {
  12084. name: "Galactic",
  12085. height: math.unit(1057000, "lightyears")
  12086. },
  12087. ]
  12088. ))
  12089. characterMakers.push(() => makeCharacter(
  12090. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12091. {
  12092. front: {
  12093. height: math.unit(6 + 10 / 12, "feet"),
  12094. weight: math.unit(150, "lb"),
  12095. name: "Front",
  12096. image: {
  12097. source: "./media/characters/dixon/front.svg",
  12098. extra: 3361 / 3209,
  12099. bottom: 0.01
  12100. }
  12101. },
  12102. },
  12103. [
  12104. {
  12105. name: "Normal",
  12106. height: math.unit(6 + 10 / 12, "feet"),
  12107. default: true
  12108. },
  12109. {
  12110. name: "Big",
  12111. height: math.unit(12, "meters")
  12112. },
  12113. {
  12114. name: "Macro",
  12115. height: math.unit(500, "meters")
  12116. },
  12117. {
  12118. name: "Megamacro",
  12119. height: math.unit(2, "km")
  12120. },
  12121. ]
  12122. ))
  12123. characterMakers.push(() => makeCharacter(
  12124. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12125. {
  12126. front: {
  12127. height: math.unit(185, "cm"),
  12128. weight: math.unit(68, "kg"),
  12129. name: "Front",
  12130. image: {
  12131. source: "./media/characters/kauko/front.svg",
  12132. extra: 1455 / 1421,
  12133. bottom: 0.03
  12134. }
  12135. },
  12136. back: {
  12137. height: math.unit(185, "cm"),
  12138. weight: math.unit(68, "kg"),
  12139. name: "Back",
  12140. image: {
  12141. source: "./media/characters/kauko/back.svg",
  12142. extra: 1455 / 1421,
  12143. bottom: 0.004
  12144. }
  12145. },
  12146. },
  12147. [
  12148. {
  12149. name: "Normal",
  12150. height: math.unit(185, "cm"),
  12151. default: true
  12152. },
  12153. ]
  12154. ))
  12155. characterMakers.push(() => makeCharacter(
  12156. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12157. {
  12158. front: {
  12159. height: math.unit(6, "feet"),
  12160. weight: math.unit(150, "kg"),
  12161. name: "Front",
  12162. image: {
  12163. source: "./media/characters/varg/front.svg",
  12164. extra: 1108 / 1018,
  12165. bottom: 0.0375
  12166. }
  12167. },
  12168. },
  12169. [
  12170. {
  12171. name: "Normal",
  12172. height: math.unit(5, "meters")
  12173. },
  12174. {
  12175. name: "Macro",
  12176. height: math.unit(200, "meters")
  12177. },
  12178. {
  12179. name: "Megamacro",
  12180. height: math.unit(20, "kilometers")
  12181. },
  12182. {
  12183. name: "True Size",
  12184. height: math.unit(211, "km"),
  12185. default: true
  12186. },
  12187. {
  12188. name: "Gigamacro",
  12189. height: math.unit(1000, "km")
  12190. },
  12191. {
  12192. name: "Gigamacro+",
  12193. height: math.unit(8000, "km")
  12194. },
  12195. {
  12196. name: "Teramacro",
  12197. height: math.unit(1000000, "km")
  12198. },
  12199. ]
  12200. ))
  12201. characterMakers.push(() => makeCharacter(
  12202. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12203. {
  12204. front: {
  12205. height: math.unit(7 + 7 / 12, "feet"),
  12206. weight: math.unit(267, "lb"),
  12207. name: "Front",
  12208. image: {
  12209. source: "./media/characters/dayza/front.svg",
  12210. extra: 1262 / 1200,
  12211. bottom: 0.035
  12212. }
  12213. },
  12214. side: {
  12215. height: math.unit(7 + 7 / 12, "feet"),
  12216. weight: math.unit(267, "lb"),
  12217. name: "Side",
  12218. image: {
  12219. source: "./media/characters/dayza/side.svg",
  12220. extra: 1295 / 1245,
  12221. bottom: 0.05
  12222. }
  12223. },
  12224. back: {
  12225. height: math.unit(7 + 7 / 12, "feet"),
  12226. weight: math.unit(267, "lb"),
  12227. name: "Back",
  12228. image: {
  12229. source: "./media/characters/dayza/back.svg",
  12230. extra: 1241 / 1170
  12231. }
  12232. },
  12233. },
  12234. [
  12235. {
  12236. name: "Normal",
  12237. height: math.unit(7 + 7 / 12, "feet"),
  12238. default: true
  12239. },
  12240. {
  12241. name: "Macro",
  12242. height: math.unit(155, "feet")
  12243. },
  12244. ]
  12245. ))
  12246. characterMakers.push(() => makeCharacter(
  12247. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12248. {
  12249. front: {
  12250. height: math.unit(6 + 5 / 12, "feet"),
  12251. weight: math.unit(160, "lb"),
  12252. name: "Front",
  12253. image: {
  12254. source: "./media/characters/xanthos/front.svg",
  12255. extra: 1,
  12256. bottom: 0.04
  12257. }
  12258. },
  12259. back: {
  12260. height: math.unit(6 + 5 / 12, "feet"),
  12261. weight: math.unit(160, "lb"),
  12262. name: "Back",
  12263. image: {
  12264. source: "./media/characters/xanthos/back.svg",
  12265. extra: 1,
  12266. bottom: 0.03
  12267. }
  12268. },
  12269. hand: {
  12270. height: math.unit(0.928, "feet"),
  12271. name: "Hand",
  12272. image: {
  12273. source: "./media/characters/xanthos/hand.svg"
  12274. }
  12275. },
  12276. foot: {
  12277. height: math.unit(1.286, "feet"),
  12278. name: "Foot",
  12279. image: {
  12280. source: "./media/characters/xanthos/foot.svg"
  12281. }
  12282. },
  12283. },
  12284. [
  12285. {
  12286. name: "Normal",
  12287. height: math.unit(6 + 5 / 12, "feet"),
  12288. default: true
  12289. },
  12290. {
  12291. name: "Normal+",
  12292. height: math.unit(6, "meters")
  12293. },
  12294. {
  12295. name: "Macro",
  12296. height: math.unit(40, "feet")
  12297. },
  12298. {
  12299. name: "Macro+",
  12300. height: math.unit(200, "meters")
  12301. },
  12302. {
  12303. name: "Megamacro",
  12304. height: math.unit(20, "km")
  12305. },
  12306. {
  12307. name: "Megamacro+",
  12308. height: math.unit(100, "km")
  12309. },
  12310. ]
  12311. ))
  12312. characterMakers.push(() => makeCharacter(
  12313. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12314. {
  12315. front: {
  12316. height: math.unit(6 + 3 / 12, "feet"),
  12317. weight: math.unit(215, "lb"),
  12318. name: "Front",
  12319. image: {
  12320. source: "./media/characters/grynn/front.svg",
  12321. extra: 4627 / 4209,
  12322. bottom: 0.047
  12323. }
  12324. },
  12325. },
  12326. [
  12327. {
  12328. name: "Micro",
  12329. height: math.unit(6, "inches")
  12330. },
  12331. {
  12332. name: "Normal",
  12333. height: math.unit(6 + 3 / 12, "feet"),
  12334. default: true
  12335. },
  12336. {
  12337. name: "Big",
  12338. height: math.unit(104, "feet")
  12339. },
  12340. {
  12341. name: "Macro",
  12342. height: math.unit(944, "feet")
  12343. },
  12344. {
  12345. name: "Macro+",
  12346. height: math.unit(9480, "feet")
  12347. },
  12348. {
  12349. name: "Megamacro",
  12350. height: math.unit(78752, "feet")
  12351. },
  12352. {
  12353. name: "Megamacro+",
  12354. height: math.unit(630128, "feet")
  12355. },
  12356. {
  12357. name: "Megamacro++",
  12358. height: math.unit(3150695, "feet")
  12359. },
  12360. ]
  12361. ))
  12362. characterMakers.push(() => makeCharacter(
  12363. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12364. {
  12365. front: {
  12366. height: math.unit(7 + 5 / 12, "feet"),
  12367. weight: math.unit(450, "lb"),
  12368. name: "Front",
  12369. image: {
  12370. source: "./media/characters/mocha-aura/front.svg",
  12371. extra: 1907 / 1817,
  12372. bottom: 0.04
  12373. }
  12374. },
  12375. back: {
  12376. height: math.unit(7 + 5 / 12, "feet"),
  12377. weight: math.unit(450, "lb"),
  12378. name: "Back",
  12379. image: {
  12380. source: "./media/characters/mocha-aura/back.svg",
  12381. extra: 1900 / 1825,
  12382. bottom: 0.045
  12383. }
  12384. },
  12385. },
  12386. [
  12387. {
  12388. name: "Nano",
  12389. height: math.unit(1, "nm")
  12390. },
  12391. {
  12392. name: "Megamicro",
  12393. height: math.unit(1, "mm")
  12394. },
  12395. {
  12396. name: "Micro",
  12397. height: math.unit(3, "inches")
  12398. },
  12399. {
  12400. name: "Normal",
  12401. height: math.unit(7 + 5 / 12, "feet"),
  12402. default: true
  12403. },
  12404. {
  12405. name: "Macro",
  12406. height: math.unit(30, "feet")
  12407. },
  12408. {
  12409. name: "Megamacro",
  12410. height: math.unit(3500, "feet")
  12411. },
  12412. {
  12413. name: "Teramacro",
  12414. height: math.unit(500000, "miles")
  12415. },
  12416. {
  12417. name: "Petamacro",
  12418. height: math.unit(50000000000000000, "parsecs")
  12419. },
  12420. ]
  12421. ))
  12422. characterMakers.push(() => makeCharacter(
  12423. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12424. {
  12425. front: {
  12426. height: math.unit(6, "feet"),
  12427. weight: math.unit(150, "lb"),
  12428. name: "Front",
  12429. image: {
  12430. source: "./media/characters/ilisha-devya/front.svg",
  12431. extra: 1,
  12432. bottom: 0.175
  12433. }
  12434. },
  12435. back: {
  12436. height: math.unit(6, "feet"),
  12437. weight: math.unit(150, "lb"),
  12438. name: "Back",
  12439. image: {
  12440. source: "./media/characters/ilisha-devya/back.svg",
  12441. extra: 1,
  12442. bottom: 0.015
  12443. }
  12444. },
  12445. },
  12446. [
  12447. {
  12448. name: "Macro",
  12449. height: math.unit(500, "feet"),
  12450. default: true
  12451. },
  12452. {
  12453. name: "Megamacro",
  12454. height: math.unit(10, "miles")
  12455. },
  12456. {
  12457. name: "Gigamacro",
  12458. height: math.unit(100000, "miles")
  12459. },
  12460. {
  12461. name: "Examacro",
  12462. height: math.unit(1e9, "lightyears")
  12463. },
  12464. {
  12465. name: "Omniversal",
  12466. height: math.unit(1e33, "lightyears")
  12467. },
  12468. {
  12469. name: "Beyond Infinite",
  12470. height: math.unit(1e100, "lightyears")
  12471. },
  12472. ]
  12473. ))
  12474. characterMakers.push(() => makeCharacter(
  12475. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12476. {
  12477. Side: {
  12478. height: math.unit(6, "feet"),
  12479. weight: math.unit(150, "lb"),
  12480. name: "Side",
  12481. image: {
  12482. source: "./media/characters/mira/side.svg",
  12483. extra: 900 / 799,
  12484. bottom: 0.02
  12485. }
  12486. },
  12487. },
  12488. [
  12489. {
  12490. name: "Human Size",
  12491. height: math.unit(6, "feet")
  12492. },
  12493. {
  12494. name: "Macro",
  12495. height: math.unit(100, "feet"),
  12496. default: true
  12497. },
  12498. {
  12499. name: "Megamacro",
  12500. height: math.unit(10, "miles")
  12501. },
  12502. {
  12503. name: "Gigamacro",
  12504. height: math.unit(25000, "miles")
  12505. },
  12506. {
  12507. name: "Teramacro",
  12508. height: math.unit(300, "AU")
  12509. },
  12510. {
  12511. name: "Full Size",
  12512. height: math.unit(4.5e10, "lightyears")
  12513. },
  12514. ]
  12515. ))
  12516. characterMakers.push(() => makeCharacter(
  12517. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12518. {
  12519. front: {
  12520. height: math.unit(6, "feet"),
  12521. weight: math.unit(150, "lb"),
  12522. name: "Front",
  12523. image: {
  12524. source: "./media/characters/holly/front.svg",
  12525. extra: 639 / 606
  12526. }
  12527. },
  12528. back: {
  12529. height: math.unit(6, "feet"),
  12530. weight: math.unit(150, "lb"),
  12531. name: "Back",
  12532. image: {
  12533. source: "./media/characters/holly/back.svg",
  12534. extra: 623 / 598
  12535. }
  12536. },
  12537. frontWorking: {
  12538. height: math.unit(6, "feet"),
  12539. weight: math.unit(150, "lb"),
  12540. name: "Front (Working)",
  12541. image: {
  12542. source: "./media/characters/holly/front-working.svg",
  12543. extra: 607 / 577,
  12544. bottom: 0.048
  12545. }
  12546. },
  12547. },
  12548. [
  12549. {
  12550. name: "Normal",
  12551. height: math.unit(12 + 3 / 12, "feet"),
  12552. default: true
  12553. },
  12554. ]
  12555. ))
  12556. characterMakers.push(() => makeCharacter(
  12557. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12558. {
  12559. front: {
  12560. height: math.unit(6, "feet"),
  12561. weight: math.unit(150, "lb"),
  12562. name: "Front",
  12563. image: {
  12564. source: "./media/characters/porter/front.svg",
  12565. extra: 1,
  12566. bottom: 0.01
  12567. }
  12568. },
  12569. frontRobes: {
  12570. height: math.unit(6, "feet"),
  12571. weight: math.unit(150, "lb"),
  12572. name: "Front (Robes)",
  12573. image: {
  12574. source: "./media/characters/porter/front-robes.svg",
  12575. extra: 1.01,
  12576. bottom: 0.01
  12577. }
  12578. },
  12579. },
  12580. [
  12581. {
  12582. name: "Normal",
  12583. height: math.unit(11 + 9 / 12, "feet"),
  12584. default: true
  12585. },
  12586. ]
  12587. ))
  12588. characterMakers.push(() => makeCharacter(
  12589. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12590. {
  12591. legendary: {
  12592. height: math.unit(6, "feet"),
  12593. weight: math.unit(150, "lb"),
  12594. name: "Legendary",
  12595. image: {
  12596. source: "./media/characters/lucy/legendary.svg",
  12597. extra: 1355 / 1100,
  12598. bottom: 0.045
  12599. }
  12600. },
  12601. },
  12602. [
  12603. {
  12604. name: "Legendary",
  12605. height: math.unit(86882 * 2, "miles"),
  12606. default: true
  12607. },
  12608. ]
  12609. ))
  12610. characterMakers.push(() => makeCharacter(
  12611. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12612. {
  12613. front: {
  12614. height: math.unit(6, "feet"),
  12615. weight: math.unit(150, "lb"),
  12616. name: "Front",
  12617. image: {
  12618. source: "./media/characters/drusilla/front.svg",
  12619. extra: 678 / 635,
  12620. bottom: 0.03
  12621. }
  12622. },
  12623. back: {
  12624. height: math.unit(6, "feet"),
  12625. weight: math.unit(150, "lb"),
  12626. name: "Back",
  12627. image: {
  12628. source: "./media/characters/drusilla/back.svg",
  12629. extra: 678 / 635,
  12630. bottom: 0.005
  12631. }
  12632. },
  12633. },
  12634. [
  12635. {
  12636. name: "Macro",
  12637. height: math.unit(100, "feet")
  12638. },
  12639. {
  12640. name: "Canon Height",
  12641. height: math.unit(2000, "feet"),
  12642. default: true
  12643. },
  12644. ]
  12645. ))
  12646. characterMakers.push(() => makeCharacter(
  12647. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12648. {
  12649. front: {
  12650. height: math.unit(6, "feet"),
  12651. weight: math.unit(180, "lb"),
  12652. name: "Front",
  12653. image: {
  12654. source: "./media/characters/renard-thatch/front.svg",
  12655. extra: 2411 / 2275,
  12656. bottom: 0.01
  12657. }
  12658. },
  12659. frontPosing: {
  12660. height: math.unit(6, "feet"),
  12661. weight: math.unit(180, "lb"),
  12662. name: "Front (Posing)",
  12663. image: {
  12664. source: "./media/characters/renard-thatch/front-posing.svg",
  12665. extra: 2381 / 2261,
  12666. bottom: 0.01
  12667. }
  12668. },
  12669. back: {
  12670. height: math.unit(6, "feet"),
  12671. weight: math.unit(180, "lb"),
  12672. name: "Back",
  12673. image: {
  12674. source: "./media/characters/renard-thatch/back.svg",
  12675. extra: 2428 / 2288
  12676. }
  12677. },
  12678. },
  12679. [
  12680. {
  12681. name: "Micro",
  12682. height: math.unit(3, "inches")
  12683. },
  12684. {
  12685. name: "Default",
  12686. height: math.unit(6, "feet"),
  12687. default: true
  12688. },
  12689. {
  12690. name: "Macro",
  12691. height: math.unit(75, "feet")
  12692. },
  12693. ]
  12694. ))
  12695. characterMakers.push(() => makeCharacter(
  12696. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12697. {
  12698. front: {
  12699. height: math.unit(1450, "feet"),
  12700. weight: math.unit(1.21e6, "tons"),
  12701. name: "Front",
  12702. image: {
  12703. source: "./media/characters/sekvra/front.svg",
  12704. extra: 1,
  12705. bottom: 0.03
  12706. }
  12707. },
  12708. frontClothed: {
  12709. height: math.unit(1450, "feet"),
  12710. weight: math.unit(1.21e6, "tons"),
  12711. name: "Front (Clothed)",
  12712. image: {
  12713. source: "./media/characters/sekvra/front-clothed.svg",
  12714. extra: 1,
  12715. bottom: 0.03
  12716. }
  12717. },
  12718. side: {
  12719. height: math.unit(1450, "feet"),
  12720. weight: math.unit(1.21e6, "tons"),
  12721. name: "Side",
  12722. image: {
  12723. source: "./media/characters/sekvra/side.svg",
  12724. extra: 1,
  12725. bottom: 0.025
  12726. }
  12727. },
  12728. back: {
  12729. height: math.unit(1450, "feet"),
  12730. weight: math.unit(1.21e6, "tons"),
  12731. name: "Back",
  12732. image: {
  12733. source: "./media/characters/sekvra/back.svg",
  12734. extra: 1,
  12735. bottom: 0.005
  12736. }
  12737. },
  12738. },
  12739. [
  12740. {
  12741. name: "Macro",
  12742. height: math.unit(1450, "feet"),
  12743. default: true
  12744. },
  12745. {
  12746. name: "Megamacro",
  12747. height: math.unit(15000, "feet")
  12748. },
  12749. ]
  12750. ))
  12751. characterMakers.push(() => makeCharacter(
  12752. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12753. {
  12754. front: {
  12755. height: math.unit(6, "feet"),
  12756. weight: math.unit(150, "lb"),
  12757. name: "Front",
  12758. image: {
  12759. source: "./media/characters/carmine/front.svg",
  12760. extra: 1,
  12761. bottom: 0.035
  12762. }
  12763. },
  12764. frontArmor: {
  12765. height: math.unit(6, "feet"),
  12766. weight: math.unit(150, "lb"),
  12767. name: "Front (Armor)",
  12768. image: {
  12769. source: "./media/characters/carmine/front-armor.svg",
  12770. extra: 1,
  12771. bottom: 0.035
  12772. }
  12773. },
  12774. },
  12775. [
  12776. {
  12777. name: "Large",
  12778. height: math.unit(1, "mile")
  12779. },
  12780. {
  12781. name: "Huge",
  12782. height: math.unit(40, "miles"),
  12783. default: true
  12784. },
  12785. {
  12786. name: "Colossal",
  12787. height: math.unit(2500, "miles")
  12788. },
  12789. ]
  12790. ))
  12791. characterMakers.push(() => makeCharacter(
  12792. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12793. {
  12794. front: {
  12795. height: math.unit(6, "feet"),
  12796. weight: math.unit(150, "lb"),
  12797. name: "Front",
  12798. image: {
  12799. source: "./media/characters/elyssia/front.svg",
  12800. extra: 2201 / 2035,
  12801. bottom: 0.05
  12802. }
  12803. },
  12804. frontClothed: {
  12805. height: math.unit(6, "feet"),
  12806. weight: math.unit(150, "lb"),
  12807. name: "Front (Clothed)",
  12808. image: {
  12809. source: "./media/characters/elyssia/front-clothed.svg",
  12810. extra: 2201 / 2035,
  12811. bottom: 0.05
  12812. }
  12813. },
  12814. back: {
  12815. height: math.unit(6, "feet"),
  12816. weight: math.unit(150, "lb"),
  12817. name: "Back",
  12818. image: {
  12819. source: "./media/characters/elyssia/back.svg",
  12820. extra: 2201 / 2035,
  12821. bottom: 0.013
  12822. }
  12823. },
  12824. },
  12825. [
  12826. {
  12827. name: "Smaller",
  12828. height: math.unit(150, "feet")
  12829. },
  12830. {
  12831. name: "Standard",
  12832. height: math.unit(1400, "feet"),
  12833. default: true
  12834. },
  12835. {
  12836. name: "Distracted",
  12837. height: math.unit(15000, "feet")
  12838. },
  12839. ]
  12840. ))
  12841. characterMakers.push(() => makeCharacter(
  12842. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12843. {
  12844. front: {
  12845. height: math.unit(7 + 4 / 12, "feet"),
  12846. weight: math.unit(500, "lb"),
  12847. name: "Front",
  12848. image: {
  12849. source: "./media/characters/geno-maxwell/front.svg",
  12850. extra: 2207 / 2040,
  12851. bottom: 0.015
  12852. }
  12853. },
  12854. },
  12855. [
  12856. {
  12857. name: "Micro",
  12858. height: math.unit(3, "inches")
  12859. },
  12860. {
  12861. name: "Normal",
  12862. height: math.unit(7 + 4 / 12, "feet"),
  12863. default: true
  12864. },
  12865. {
  12866. name: "Macro",
  12867. height: math.unit(220, "feet")
  12868. },
  12869. {
  12870. name: "Megamacro",
  12871. height: math.unit(11, "miles")
  12872. },
  12873. ]
  12874. ))
  12875. characterMakers.push(() => makeCharacter(
  12876. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12877. {
  12878. front: {
  12879. height: math.unit(7 + 4 / 12, "feet"),
  12880. weight: math.unit(500, "lb"),
  12881. name: "Front",
  12882. image: {
  12883. source: "./media/characters/regena-maxwell/front.svg",
  12884. extra: 3115 / 2770,
  12885. bottom: 0.02
  12886. }
  12887. },
  12888. },
  12889. [
  12890. {
  12891. name: "Normal",
  12892. height: math.unit(7 + 4 / 12, "feet"),
  12893. default: true
  12894. },
  12895. {
  12896. name: "Macro",
  12897. height: math.unit(220, "feet")
  12898. },
  12899. {
  12900. name: "Megamacro",
  12901. height: math.unit(11, "miles")
  12902. },
  12903. ]
  12904. ))
  12905. characterMakers.push(() => makeCharacter(
  12906. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12907. {
  12908. front: {
  12909. height: math.unit(6, "feet"),
  12910. weight: math.unit(150, "lb"),
  12911. name: "Front",
  12912. image: {
  12913. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12914. extra: 860 / 690,
  12915. bottom: 0.03
  12916. }
  12917. },
  12918. },
  12919. [
  12920. {
  12921. name: "Normal",
  12922. height: math.unit(1.7, "meters"),
  12923. default: true
  12924. },
  12925. ]
  12926. ))
  12927. characterMakers.push(() => makeCharacter(
  12928. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12929. {
  12930. front: {
  12931. height: math.unit(6, "feet"),
  12932. weight: math.unit(150, "lb"),
  12933. name: "Front",
  12934. image: {
  12935. source: "./media/characters/quilly/front.svg",
  12936. extra: 890 / 776
  12937. }
  12938. },
  12939. },
  12940. [
  12941. {
  12942. name: "Gigamacro",
  12943. height: math.unit(404090, "miles"),
  12944. default: true
  12945. },
  12946. ]
  12947. ))
  12948. characterMakers.push(() => makeCharacter(
  12949. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12950. {
  12951. front: {
  12952. height: math.unit(7 + 8 / 12, "feet"),
  12953. weight: math.unit(350, "lb"),
  12954. name: "Front",
  12955. image: {
  12956. source: "./media/characters/tempest/front.svg",
  12957. extra: 1175 / 1086,
  12958. bottom: 0.02
  12959. }
  12960. },
  12961. },
  12962. [
  12963. {
  12964. name: "Normal",
  12965. height: math.unit(7 + 8 / 12, "feet"),
  12966. default: true
  12967. },
  12968. ]
  12969. ))
  12970. characterMakers.push(() => makeCharacter(
  12971. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12972. {
  12973. side: {
  12974. height: math.unit(4 + 5 / 12, "feet"),
  12975. weight: math.unit(80, "lb"),
  12976. name: "Side",
  12977. image: {
  12978. source: "./media/characters/rodger/side.svg",
  12979. extra: 1235 / 1118
  12980. }
  12981. },
  12982. },
  12983. [
  12984. {
  12985. name: "Micro",
  12986. height: math.unit(1, "inch")
  12987. },
  12988. {
  12989. name: "Normal",
  12990. height: math.unit(4 + 5 / 12, "feet"),
  12991. default: true
  12992. },
  12993. {
  12994. name: "Macro",
  12995. height: math.unit(120, "feet")
  12996. },
  12997. ]
  12998. ))
  12999. characterMakers.push(() => makeCharacter(
  13000. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  13001. {
  13002. front: {
  13003. height: math.unit(6, "feet"),
  13004. weight: math.unit(150, "lb"),
  13005. name: "Front",
  13006. image: {
  13007. source: "./media/characters/danyel/front.svg",
  13008. extra: 1185 / 1123,
  13009. bottom: 0.05
  13010. }
  13011. },
  13012. },
  13013. [
  13014. {
  13015. name: "Shrunken",
  13016. height: math.unit(0.5, "mm")
  13017. },
  13018. {
  13019. name: "Micro",
  13020. height: math.unit(1, "mm"),
  13021. default: true
  13022. },
  13023. {
  13024. name: "Upsized",
  13025. height: math.unit(5 + 5 / 12, "feet")
  13026. },
  13027. ]
  13028. ))
  13029. characterMakers.push(() => makeCharacter(
  13030. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13031. {
  13032. front: {
  13033. height: math.unit(5 + 6 / 12, "feet"),
  13034. weight: math.unit(200, "lb"),
  13035. name: "Front",
  13036. image: {
  13037. source: "./media/characters/vivian-bijoux/front.svg",
  13038. extra: 1,
  13039. bottom: 0.072
  13040. }
  13041. },
  13042. },
  13043. [
  13044. {
  13045. name: "Normal",
  13046. height: math.unit(5 + 6 / 12, "feet"),
  13047. default: true
  13048. },
  13049. {
  13050. name: "Bad Dream",
  13051. height: math.unit(500, "feet")
  13052. },
  13053. {
  13054. name: "Nightmare",
  13055. height: math.unit(500, "miles")
  13056. },
  13057. ]
  13058. ))
  13059. characterMakers.push(() => makeCharacter(
  13060. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13061. {
  13062. front: {
  13063. height: math.unit(6 + 1 / 12, "feet"),
  13064. weight: math.unit(260, "lb"),
  13065. name: "Front",
  13066. image: {
  13067. source: "./media/characters/zeta/front.svg",
  13068. extra: 1968 / 1889,
  13069. bottom: 0.06
  13070. }
  13071. },
  13072. back: {
  13073. height: math.unit(6 + 1 / 12, "feet"),
  13074. weight: math.unit(260, "lb"),
  13075. name: "Back",
  13076. image: {
  13077. source: "./media/characters/zeta/back.svg",
  13078. extra: 1944 / 1858,
  13079. bottom: 0.03
  13080. }
  13081. },
  13082. hand: {
  13083. height: math.unit(1.112, "feet"),
  13084. name: "Hand",
  13085. image: {
  13086. source: "./media/characters/zeta/hand.svg"
  13087. }
  13088. },
  13089. foot: {
  13090. height: math.unit(1.48, "feet"),
  13091. name: "Foot",
  13092. image: {
  13093. source: "./media/characters/zeta/foot.svg"
  13094. }
  13095. },
  13096. },
  13097. [
  13098. {
  13099. name: "Micro",
  13100. height: math.unit(6, "inches")
  13101. },
  13102. {
  13103. name: "Normal",
  13104. height: math.unit(6 + 1 / 12, "feet"),
  13105. default: true
  13106. },
  13107. {
  13108. name: "Macro",
  13109. height: math.unit(20, "feet")
  13110. },
  13111. ]
  13112. ))
  13113. characterMakers.push(() => makeCharacter(
  13114. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13115. {
  13116. front: {
  13117. height: math.unit(6, "feet"),
  13118. weight: math.unit(150, "lb"),
  13119. name: "Front",
  13120. image: {
  13121. source: "./media/characters/jamie-larsen/front.svg",
  13122. extra: 962 / 933,
  13123. bottom: 0.02
  13124. }
  13125. },
  13126. back: {
  13127. height: math.unit(6, "feet"),
  13128. weight: math.unit(150, "lb"),
  13129. name: "Back",
  13130. image: {
  13131. source: "./media/characters/jamie-larsen/back.svg",
  13132. extra: 997 / 946
  13133. }
  13134. },
  13135. },
  13136. [
  13137. {
  13138. name: "Macro",
  13139. height: math.unit(28 + 7 / 12, "feet"),
  13140. default: true
  13141. },
  13142. {
  13143. name: "Macro+",
  13144. height: math.unit(180, "feet")
  13145. },
  13146. {
  13147. name: "Megamacro",
  13148. height: math.unit(10, "miles")
  13149. },
  13150. {
  13151. name: "Gigamacro",
  13152. height: math.unit(200000, "miles")
  13153. },
  13154. ]
  13155. ))
  13156. characterMakers.push(() => makeCharacter(
  13157. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13158. {
  13159. front: {
  13160. height: math.unit(6, "feet"),
  13161. weight: math.unit(120, "lb"),
  13162. name: "Front",
  13163. image: {
  13164. source: "./media/characters/vance/front.svg",
  13165. extra: 1980 / 1890,
  13166. bottom: 0.09
  13167. }
  13168. },
  13169. back: {
  13170. height: math.unit(6, "feet"),
  13171. weight: math.unit(120, "lb"),
  13172. name: "Back",
  13173. image: {
  13174. source: "./media/characters/vance/back.svg",
  13175. extra: 2081 / 1994,
  13176. bottom: 0.014
  13177. }
  13178. },
  13179. hand: {
  13180. height: math.unit(0.88, "feet"),
  13181. name: "Hand",
  13182. image: {
  13183. source: "./media/characters/vance/hand.svg"
  13184. }
  13185. },
  13186. foot: {
  13187. height: math.unit(0.64, "feet"),
  13188. name: "Foot",
  13189. image: {
  13190. source: "./media/characters/vance/foot.svg"
  13191. }
  13192. },
  13193. },
  13194. [
  13195. {
  13196. name: "Small",
  13197. height: math.unit(90, "feet"),
  13198. default: true
  13199. },
  13200. {
  13201. name: "Macro",
  13202. height: math.unit(100, "meters")
  13203. },
  13204. {
  13205. name: "Megamacro",
  13206. height: math.unit(15, "miles")
  13207. },
  13208. ]
  13209. ))
  13210. characterMakers.push(() => makeCharacter(
  13211. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13212. {
  13213. front: {
  13214. height: math.unit(6, "feet"),
  13215. weight: math.unit(180, "lb"),
  13216. name: "Front",
  13217. image: {
  13218. source: "./media/characters/xochitl/front.svg",
  13219. extra: 2297 / 2261,
  13220. bottom: 0.065
  13221. }
  13222. },
  13223. back: {
  13224. height: math.unit(6, "feet"),
  13225. weight: math.unit(180, "lb"),
  13226. name: "Back",
  13227. image: {
  13228. source: "./media/characters/xochitl/back.svg",
  13229. extra: 2386 / 2354,
  13230. bottom: 0.01
  13231. }
  13232. },
  13233. foot: {
  13234. height: math.unit(6 / 5 * 1.15, "feet"),
  13235. weight: math.unit(150, "lb"),
  13236. name: "Foot",
  13237. image: {
  13238. source: "./media/characters/xochitl/foot.svg"
  13239. }
  13240. },
  13241. },
  13242. [
  13243. {
  13244. name: "Macro",
  13245. height: math.unit(80, "feet")
  13246. },
  13247. {
  13248. name: "Macro+",
  13249. height: math.unit(400, "feet"),
  13250. default: true
  13251. },
  13252. {
  13253. name: "Gigamacro",
  13254. height: math.unit(80000, "miles")
  13255. },
  13256. {
  13257. name: "Gigamacro+",
  13258. height: math.unit(400000, "miles")
  13259. },
  13260. {
  13261. name: "Teramacro",
  13262. height: math.unit(300, "AU")
  13263. },
  13264. ]
  13265. ))
  13266. characterMakers.push(() => makeCharacter(
  13267. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13268. {
  13269. front: {
  13270. height: math.unit(6, "feet"),
  13271. weight: math.unit(150, "lb"),
  13272. name: "Front",
  13273. image: {
  13274. source: "./media/characters/vincent/front.svg",
  13275. extra: 1130 / 1080,
  13276. bottom: 0.055
  13277. }
  13278. },
  13279. beak: {
  13280. height: math.unit(6 * 0.1, "feet"),
  13281. name: "Beak",
  13282. image: {
  13283. source: "./media/characters/vincent/beak.svg"
  13284. }
  13285. },
  13286. hand: {
  13287. height: math.unit(6 * 0.85, "feet"),
  13288. weight: math.unit(150, "lb"),
  13289. name: "Hand",
  13290. image: {
  13291. source: "./media/characters/vincent/hand.svg"
  13292. }
  13293. },
  13294. foot: {
  13295. height: math.unit(6 * 0.19, "feet"),
  13296. weight: math.unit(150, "lb"),
  13297. name: "Foot",
  13298. image: {
  13299. source: "./media/characters/vincent/foot.svg"
  13300. }
  13301. },
  13302. },
  13303. [
  13304. {
  13305. name: "Base",
  13306. height: math.unit(6 + 5 / 12, "feet"),
  13307. default: true
  13308. },
  13309. {
  13310. name: "Macro",
  13311. height: math.unit(300, "feet")
  13312. },
  13313. {
  13314. name: "Megamacro",
  13315. height: math.unit(2, "miles")
  13316. },
  13317. {
  13318. name: "Gigamacro",
  13319. height: math.unit(1000, "miles")
  13320. },
  13321. ]
  13322. ))
  13323. characterMakers.push(() => makeCharacter(
  13324. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13325. {
  13326. front: {
  13327. height: math.unit(6 + 2 / 12, "feet"),
  13328. weight: math.unit(265, "lb"),
  13329. name: "Front",
  13330. image: {
  13331. source: "./media/characters/jay/front.svg",
  13332. extra: 1510 / 1430,
  13333. bottom: 0.042
  13334. }
  13335. },
  13336. back: {
  13337. height: math.unit(6 + 2 / 12, "feet"),
  13338. weight: math.unit(265, "lb"),
  13339. name: "Back",
  13340. image: {
  13341. source: "./media/characters/jay/back.svg",
  13342. extra: 1510 / 1430,
  13343. bottom: 0.025
  13344. }
  13345. },
  13346. clothed: {
  13347. height: math.unit(6 + 2 / 12, "feet"),
  13348. weight: math.unit(265, "lb"),
  13349. name: "Front (Clothed)",
  13350. image: {
  13351. source: "./media/characters/jay/clothed.svg",
  13352. extra: 744 / 699,
  13353. bottom: 0.043
  13354. }
  13355. },
  13356. head: {
  13357. height: math.unit(1.772, "feet"),
  13358. name: "Head",
  13359. image: {
  13360. source: "./media/characters/jay/head.svg"
  13361. }
  13362. },
  13363. sizeRay: {
  13364. height: math.unit(1.331, "feet"),
  13365. name: "Size Ray",
  13366. image: {
  13367. source: "./media/characters/jay/size-ray.svg"
  13368. }
  13369. },
  13370. },
  13371. [
  13372. {
  13373. name: "Micro",
  13374. height: math.unit(1, "inch")
  13375. },
  13376. {
  13377. name: "Normal",
  13378. height: math.unit(6 + 2 / 12, "feet"),
  13379. default: true
  13380. },
  13381. {
  13382. name: "Macro",
  13383. height: math.unit(1, "mile")
  13384. },
  13385. {
  13386. name: "Megamacro",
  13387. height: math.unit(100, "miles")
  13388. },
  13389. ]
  13390. ))
  13391. characterMakers.push(() => makeCharacter(
  13392. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13393. {
  13394. front: {
  13395. height: math.unit(2, "meters"),
  13396. weight: math.unit(500, "kg"),
  13397. name: "Front",
  13398. image: {
  13399. source: "./media/characters/coatl/front.svg",
  13400. extra: 3948 / 3500,
  13401. bottom: 0.082
  13402. }
  13403. },
  13404. },
  13405. [
  13406. {
  13407. name: "Normal",
  13408. height: math.unit(4, "meters")
  13409. },
  13410. {
  13411. name: "Macro",
  13412. height: math.unit(100, "meters"),
  13413. default: true
  13414. },
  13415. {
  13416. name: "Macro+",
  13417. height: math.unit(300, "meters")
  13418. },
  13419. {
  13420. name: "Megamacro",
  13421. height: math.unit(3, "gigameters")
  13422. },
  13423. {
  13424. name: "Megamacro+",
  13425. height: math.unit(300, "terameters")
  13426. },
  13427. {
  13428. name: "Megamacro++",
  13429. height: math.unit(3, "lightyears")
  13430. },
  13431. ]
  13432. ))
  13433. characterMakers.push(() => makeCharacter(
  13434. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13435. {
  13436. front: {
  13437. height: math.unit(6, "feet"),
  13438. weight: math.unit(50, "kg"),
  13439. name: "front",
  13440. image: {
  13441. source: "./media/characters/shiroryu/front.svg",
  13442. extra: 1990 / 1935
  13443. }
  13444. },
  13445. },
  13446. [
  13447. {
  13448. name: "Mortal Mingling",
  13449. height: math.unit(3, "meters")
  13450. },
  13451. {
  13452. name: "Kaiju-ish",
  13453. height: math.unit(250, "meters")
  13454. },
  13455. {
  13456. name: "Somewhat Godly",
  13457. height: math.unit(400, "km"),
  13458. default: true
  13459. },
  13460. {
  13461. name: "Planetary",
  13462. height: math.unit(300, "megameters")
  13463. },
  13464. {
  13465. name: "Galaxy-dwarfing",
  13466. height: math.unit(450, "kiloparsecs")
  13467. },
  13468. {
  13469. name: "Universe Eater",
  13470. height: math.unit(150, "gigaparsecs")
  13471. },
  13472. {
  13473. name: "Almost Immeasurable",
  13474. height: math.unit(1.3e266, "yottaparsecs")
  13475. },
  13476. ]
  13477. ))
  13478. characterMakers.push(() => makeCharacter(
  13479. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13480. {
  13481. front: {
  13482. height: math.unit(6, "feet"),
  13483. weight: math.unit(150, "lb"),
  13484. name: "Front",
  13485. image: {
  13486. source: "./media/characters/umeko/front.svg",
  13487. extra: 1,
  13488. bottom: 0.019
  13489. }
  13490. },
  13491. frontArmored: {
  13492. height: math.unit(6, "feet"),
  13493. weight: math.unit(150, "lb"),
  13494. name: "Front (Armored)",
  13495. image: {
  13496. source: "./media/characters/umeko/front-armored.svg",
  13497. extra: 1,
  13498. bottom: 0.021
  13499. }
  13500. },
  13501. },
  13502. [
  13503. {
  13504. name: "Macro",
  13505. height: math.unit(220, "feet"),
  13506. default: true
  13507. },
  13508. {
  13509. name: "Guardian Dragon",
  13510. height: math.unit(50, "miles")
  13511. },
  13512. {
  13513. name: "Cosmic",
  13514. height: math.unit(800000, "miles")
  13515. },
  13516. ]
  13517. ))
  13518. characterMakers.push(() => makeCharacter(
  13519. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13520. {
  13521. front: {
  13522. height: math.unit(6, "feet"),
  13523. weight: math.unit(150, "lb"),
  13524. name: "Front",
  13525. image: {
  13526. source: "./media/characters/cassidy/front.svg",
  13527. extra: 1,
  13528. bottom: 0.043
  13529. }
  13530. },
  13531. },
  13532. [
  13533. {
  13534. name: "Canon Height",
  13535. height: math.unit(120, "feet"),
  13536. default: true
  13537. },
  13538. {
  13539. name: "Macro+",
  13540. height: math.unit(400, "feet")
  13541. },
  13542. {
  13543. name: "Macro++",
  13544. height: math.unit(4000, "feet")
  13545. },
  13546. {
  13547. name: "Megamacro",
  13548. height: math.unit(3, "miles")
  13549. },
  13550. ]
  13551. ))
  13552. characterMakers.push(() => makeCharacter(
  13553. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13554. {
  13555. front: {
  13556. height: math.unit(6, "feet"),
  13557. weight: math.unit(150, "lb"),
  13558. name: "Front",
  13559. image: {
  13560. source: "./media/characters/isaac/front.svg",
  13561. extra: 896 / 815,
  13562. bottom: 0.11
  13563. }
  13564. },
  13565. },
  13566. [
  13567. {
  13568. name: "Human Size",
  13569. height: math.unit(8, "feet"),
  13570. default: true
  13571. },
  13572. {
  13573. name: "Macro",
  13574. height: math.unit(400, "feet")
  13575. },
  13576. {
  13577. name: "Megamacro",
  13578. height: math.unit(50, "miles")
  13579. },
  13580. {
  13581. name: "Canon Height",
  13582. height: math.unit(200, "AU")
  13583. },
  13584. ]
  13585. ))
  13586. characterMakers.push(() => makeCharacter(
  13587. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13588. {
  13589. front: {
  13590. height: math.unit(6, "feet"),
  13591. weight: math.unit(72, "kg"),
  13592. name: "Front",
  13593. image: {
  13594. source: "./media/characters/sleekit/front.svg",
  13595. extra: 4693 / 4487,
  13596. bottom: 0.012
  13597. }
  13598. },
  13599. },
  13600. [
  13601. {
  13602. name: "Minimum Height",
  13603. height: math.unit(10, "meters")
  13604. },
  13605. {
  13606. name: "Smaller",
  13607. height: math.unit(25, "meters")
  13608. },
  13609. {
  13610. name: "Larger",
  13611. height: math.unit(38, "meters"),
  13612. default: true
  13613. },
  13614. {
  13615. name: "Maximum height",
  13616. height: math.unit(100, "meters")
  13617. },
  13618. ]
  13619. ))
  13620. characterMakers.push(() => makeCharacter(
  13621. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13622. {
  13623. front: {
  13624. height: math.unit(6, "feet"),
  13625. weight: math.unit(150, "lb"),
  13626. name: "Front",
  13627. image: {
  13628. source: "./media/characters/nillia/front.svg",
  13629. extra: 2195 / 2037,
  13630. bottom: 0.005
  13631. }
  13632. },
  13633. back: {
  13634. height: math.unit(6, "feet"),
  13635. weight: math.unit(150, "lb"),
  13636. name: "Back",
  13637. image: {
  13638. source: "./media/characters/nillia/back.svg",
  13639. extra: 2195 / 2037,
  13640. bottom: 0.005
  13641. }
  13642. },
  13643. },
  13644. [
  13645. {
  13646. name: "Canon Height",
  13647. height: math.unit(489, "feet"),
  13648. default: true
  13649. }
  13650. ]
  13651. ))
  13652. characterMakers.push(() => makeCharacter(
  13653. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13654. {
  13655. front: {
  13656. height: math.unit(6, "feet"),
  13657. weight: math.unit(150, "lb"),
  13658. name: "Front",
  13659. image: {
  13660. source: "./media/characters/mesmyriza/front.svg",
  13661. extra: 2067 / 1784,
  13662. bottom: 0.035
  13663. }
  13664. },
  13665. foot: {
  13666. height: math.unit(6 / (250 / 35), "feet"),
  13667. name: "Foot",
  13668. image: {
  13669. source: "./media/characters/mesmyriza/foot.svg"
  13670. }
  13671. },
  13672. },
  13673. [
  13674. {
  13675. name: "Macro",
  13676. height: math.unit(457, "meters"),
  13677. default: true
  13678. },
  13679. {
  13680. name: "Megamacro",
  13681. height: math.unit(8, "megameters")
  13682. },
  13683. ]
  13684. ))
  13685. characterMakers.push(() => makeCharacter(
  13686. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13687. {
  13688. front: {
  13689. height: math.unit(6, "feet"),
  13690. weight: math.unit(250, "lb"),
  13691. name: "Front",
  13692. image: {
  13693. source: "./media/characters/saudade/front.svg",
  13694. extra: 1172 / 1139,
  13695. bottom: 0.035
  13696. }
  13697. },
  13698. },
  13699. [
  13700. {
  13701. name: "Micro",
  13702. height: math.unit(3, "inches")
  13703. },
  13704. {
  13705. name: "Normal",
  13706. height: math.unit(6, "feet"),
  13707. default: true
  13708. },
  13709. {
  13710. name: "Macro",
  13711. height: math.unit(50, "feet")
  13712. },
  13713. {
  13714. name: "Megamacro",
  13715. height: math.unit(2800, "feet")
  13716. },
  13717. ]
  13718. ))
  13719. characterMakers.push(() => makeCharacter(
  13720. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13721. {
  13722. front: {
  13723. height: math.unit(5 + 4 / 12, "feet"),
  13724. weight: math.unit(100, "lb"),
  13725. name: "Front",
  13726. image: {
  13727. source: "./media/characters/keireer/front.svg",
  13728. extra: 716 / 666,
  13729. bottom: 0.05
  13730. }
  13731. },
  13732. },
  13733. [
  13734. {
  13735. name: "Normal",
  13736. height: math.unit(5 + 4 / 12, "feet"),
  13737. default: true
  13738. },
  13739. ]
  13740. ))
  13741. characterMakers.push(() => makeCharacter(
  13742. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13743. {
  13744. front: {
  13745. height: math.unit(6, "feet"),
  13746. weight: math.unit(90, "kg"),
  13747. name: "Front",
  13748. image: {
  13749. source: "./media/characters/mirja/front.svg",
  13750. extra: 1789 / 1683,
  13751. bottom: 0.05
  13752. }
  13753. },
  13754. frontDressed: {
  13755. height: math.unit(6, "feet"),
  13756. weight: math.unit(90, "lb"),
  13757. name: "Front (Dressed)",
  13758. image: {
  13759. source: "./media/characters/mirja/front-dressed.svg",
  13760. extra: 1789 / 1683,
  13761. bottom: 0.05
  13762. }
  13763. },
  13764. back: {
  13765. height: math.unit(6, "feet"),
  13766. weight: math.unit(90, "lb"),
  13767. name: "Back",
  13768. image: {
  13769. source: "./media/characters/mirja/back.svg",
  13770. extra: 953 / 917,
  13771. bottom: 0.017
  13772. }
  13773. },
  13774. },
  13775. [
  13776. {
  13777. name: "\"Incognito\"",
  13778. height: math.unit(3, "meters")
  13779. },
  13780. {
  13781. name: "Strolling Size",
  13782. height: math.unit(15, "km")
  13783. },
  13784. {
  13785. name: "Larger Strolling Size",
  13786. height: math.unit(400, "km")
  13787. },
  13788. {
  13789. name: "Preferred Size",
  13790. height: math.unit(5000, "km")
  13791. },
  13792. {
  13793. name: "True Size",
  13794. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13795. default: true
  13796. },
  13797. ]
  13798. ))
  13799. characterMakers.push(() => makeCharacter(
  13800. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13801. {
  13802. front: {
  13803. height: math.unit(15, "feet"),
  13804. weight: math.unit(880, "kg"),
  13805. name: "Front",
  13806. image: {
  13807. source: "./media/characters/nightraver/front.svg",
  13808. extra: 2444 / 2160,
  13809. bottom: 0.027
  13810. }
  13811. },
  13812. back: {
  13813. height: math.unit(15, "feet"),
  13814. weight: math.unit(880, "kg"),
  13815. name: "Back",
  13816. image: {
  13817. source: "./media/characters/nightraver/back.svg",
  13818. extra: 2309 / 2180,
  13819. bottom: 0.005
  13820. }
  13821. },
  13822. sole: {
  13823. height: math.unit(2.878, "feet"),
  13824. name: "Sole",
  13825. image: {
  13826. source: "./media/characters/nightraver/sole.svg"
  13827. }
  13828. },
  13829. foot: {
  13830. height: math.unit(2.285, "feet"),
  13831. name: "Foot",
  13832. image: {
  13833. source: "./media/characters/nightraver/foot.svg"
  13834. }
  13835. },
  13836. maw: {
  13837. height: math.unit(2.67, "feet"),
  13838. name: "Maw",
  13839. image: {
  13840. source: "./media/characters/nightraver/maw.svg"
  13841. }
  13842. },
  13843. },
  13844. [
  13845. {
  13846. name: "Micro",
  13847. height: math.unit(1, "cm")
  13848. },
  13849. {
  13850. name: "Normal",
  13851. height: math.unit(15, "feet"),
  13852. default: true
  13853. },
  13854. {
  13855. name: "Macro",
  13856. height: math.unit(300, "feet")
  13857. },
  13858. {
  13859. name: "Megamacro",
  13860. height: math.unit(300, "miles")
  13861. },
  13862. {
  13863. name: "Gigamacro",
  13864. height: math.unit(10000, "miles")
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13870. {
  13871. side: {
  13872. height: math.unit(2, "inches"),
  13873. weight: math.unit(5, "grams"),
  13874. name: "Side",
  13875. image: {
  13876. source: "./media/characters/arc/side.svg"
  13877. }
  13878. },
  13879. },
  13880. [
  13881. {
  13882. name: "Micro",
  13883. height: math.unit(2, "inches"),
  13884. default: true
  13885. },
  13886. ]
  13887. ))
  13888. characterMakers.push(() => makeCharacter(
  13889. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13890. {
  13891. front: {
  13892. height: math.unit(1.1938, "meters"),
  13893. weight: math.unit(54, "kg"),
  13894. name: "Front",
  13895. image: {
  13896. source: "./media/characters/nebula-shahar/front.svg",
  13897. extra: 1642 / 1436,
  13898. bottom: 0.06
  13899. }
  13900. },
  13901. },
  13902. [
  13903. {
  13904. name: "Megamicro",
  13905. height: math.unit(0.3, "mm")
  13906. },
  13907. {
  13908. name: "Micro",
  13909. height: math.unit(3, "cm")
  13910. },
  13911. {
  13912. name: "Normal",
  13913. height: math.unit(138, "cm"),
  13914. default: true
  13915. },
  13916. {
  13917. name: "Macro",
  13918. height: math.unit(30, "m")
  13919. },
  13920. ]
  13921. ))
  13922. characterMakers.push(() => makeCharacter(
  13923. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13924. {
  13925. front: {
  13926. height: math.unit(5.24, "feet"),
  13927. weight: math.unit(150, "lb"),
  13928. name: "Front",
  13929. image: {
  13930. source: "./media/characters/shayla/front.svg",
  13931. extra: 1512 / 1414,
  13932. bottom: 0.01
  13933. }
  13934. },
  13935. back: {
  13936. height: math.unit(5.24, "feet"),
  13937. weight: math.unit(150, "lb"),
  13938. name: "Back",
  13939. image: {
  13940. source: "./media/characters/shayla/back.svg",
  13941. extra: 1512 / 1414
  13942. }
  13943. },
  13944. hand: {
  13945. height: math.unit(0.7781496062992126, "feet"),
  13946. name: "Hand",
  13947. image: {
  13948. source: "./media/characters/shayla/hand.svg"
  13949. }
  13950. },
  13951. foot: {
  13952. height: math.unit(1.4206036745406823, "feet"),
  13953. name: "Foot",
  13954. image: {
  13955. source: "./media/characters/shayla/foot.svg"
  13956. }
  13957. },
  13958. },
  13959. [
  13960. {
  13961. name: "Micro",
  13962. height: math.unit(0.32, "feet")
  13963. },
  13964. {
  13965. name: "Normal",
  13966. height: math.unit(5.24, "feet"),
  13967. default: true
  13968. },
  13969. {
  13970. name: "Macro",
  13971. height: math.unit(492.12, "feet")
  13972. },
  13973. {
  13974. name: "Megamacro",
  13975. height: math.unit(186.41, "miles")
  13976. },
  13977. ]
  13978. ))
  13979. characterMakers.push(() => makeCharacter(
  13980. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13981. {
  13982. front: {
  13983. height: math.unit(2.2, "m"),
  13984. weight: math.unit(120, "kg"),
  13985. name: "Front",
  13986. image: {
  13987. source: "./media/characters/pia-jr/front.svg",
  13988. extra: 1000 / 970,
  13989. bottom: 0.035
  13990. }
  13991. },
  13992. hand: {
  13993. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13994. name: "Hand",
  13995. image: {
  13996. source: "./media/characters/pia-jr/hand.svg"
  13997. }
  13998. },
  13999. paw: {
  14000. height: math.unit(1.185 * 7.21 / 6, "feet"),
  14001. name: "Paw",
  14002. image: {
  14003. source: "./media/characters/pia-jr/paw.svg"
  14004. }
  14005. },
  14006. },
  14007. [
  14008. {
  14009. name: "Micro",
  14010. height: math.unit(1.2, "cm")
  14011. },
  14012. {
  14013. name: "Normal",
  14014. height: math.unit(2.2, "m"),
  14015. default: true
  14016. },
  14017. {
  14018. name: "Macro",
  14019. height: math.unit(180, "m")
  14020. },
  14021. {
  14022. name: "Megamacro",
  14023. height: math.unit(420, "km")
  14024. },
  14025. ]
  14026. ))
  14027. characterMakers.push(() => makeCharacter(
  14028. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14029. {
  14030. front: {
  14031. height: math.unit(2, "m"),
  14032. weight: math.unit(115, "kg"),
  14033. name: "Front",
  14034. image: {
  14035. source: "./media/characters/pia-sr/front.svg",
  14036. extra: 760 / 730,
  14037. bottom: 0.015
  14038. }
  14039. },
  14040. back: {
  14041. height: math.unit(2, "m"),
  14042. weight: math.unit(115, "kg"),
  14043. name: "Back",
  14044. image: {
  14045. source: "./media/characters/pia-sr/back.svg",
  14046. extra: 760 / 730,
  14047. bottom: 0.01
  14048. }
  14049. },
  14050. hand: {
  14051. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14052. name: "Hand",
  14053. image: {
  14054. source: "./media/characters/pia-sr/hand.svg"
  14055. }
  14056. },
  14057. foot: {
  14058. height: math.unit(1.83, "feet"),
  14059. name: "Foot",
  14060. image: {
  14061. source: "./media/characters/pia-sr/foot.svg"
  14062. }
  14063. },
  14064. },
  14065. [
  14066. {
  14067. name: "Micro",
  14068. height: math.unit(88, "mm")
  14069. },
  14070. {
  14071. name: "Normal",
  14072. height: math.unit(2, "m"),
  14073. default: true
  14074. },
  14075. {
  14076. name: "Macro",
  14077. height: math.unit(200, "m")
  14078. },
  14079. {
  14080. name: "Megamacro",
  14081. height: math.unit(420, "km")
  14082. },
  14083. ]
  14084. ))
  14085. characterMakers.push(() => makeCharacter(
  14086. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14087. {
  14088. front: {
  14089. height: math.unit(8 + 2 / 12, "feet"),
  14090. weight: math.unit(300, "lb"),
  14091. name: "Front",
  14092. image: {
  14093. source: "./media/characters/kibibyte/front.svg",
  14094. extra: 2221 / 2098,
  14095. bottom: 0.04
  14096. }
  14097. },
  14098. },
  14099. [
  14100. {
  14101. name: "Normal",
  14102. height: math.unit(8 + 2 / 12, "feet"),
  14103. default: true
  14104. },
  14105. {
  14106. name: "Socialable Macro",
  14107. height: math.unit(50, "feet")
  14108. },
  14109. {
  14110. name: "Macro",
  14111. height: math.unit(300, "feet")
  14112. },
  14113. {
  14114. name: "Megamacro",
  14115. height: math.unit(500, "miles")
  14116. },
  14117. ]
  14118. ))
  14119. characterMakers.push(() => makeCharacter(
  14120. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14121. {
  14122. front: {
  14123. height: math.unit(6, "feet"),
  14124. weight: math.unit(150, "lb"),
  14125. name: "Front",
  14126. image: {
  14127. source: "./media/characters/felix/front.svg",
  14128. extra: 762 / 722,
  14129. bottom: 0.02
  14130. }
  14131. },
  14132. frontClothed: {
  14133. height: math.unit(6, "feet"),
  14134. weight: math.unit(150, "lb"),
  14135. name: "Front (Clothed)",
  14136. image: {
  14137. source: "./media/characters/felix/front-clothed.svg",
  14138. extra: 762 / 722,
  14139. bottom: 0.02
  14140. }
  14141. },
  14142. },
  14143. [
  14144. {
  14145. name: "Normal",
  14146. height: math.unit(6 + 8 / 12, "feet"),
  14147. default: true
  14148. },
  14149. {
  14150. name: "Macro",
  14151. height: math.unit(2600, "feet")
  14152. },
  14153. {
  14154. name: "Megamacro",
  14155. height: math.unit(450, "miles")
  14156. },
  14157. ]
  14158. ))
  14159. characterMakers.push(() => makeCharacter(
  14160. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14161. {
  14162. front: {
  14163. height: math.unit(6 + 1 / 12, "feet"),
  14164. weight: math.unit(250, "lb"),
  14165. name: "Front",
  14166. image: {
  14167. source: "./media/characters/tobo/front.svg",
  14168. extra: 608 / 586,
  14169. bottom: 0.023
  14170. }
  14171. },
  14172. back: {
  14173. height: math.unit(6 + 1 / 12, "feet"),
  14174. weight: math.unit(250, "lb"),
  14175. name: "Back",
  14176. image: {
  14177. source: "./media/characters/tobo/back.svg",
  14178. extra: 608 / 586
  14179. }
  14180. },
  14181. },
  14182. [
  14183. {
  14184. name: "Nano",
  14185. height: math.unit(2, "nm")
  14186. },
  14187. {
  14188. name: "Megamicro",
  14189. height: math.unit(0.1, "mm")
  14190. },
  14191. {
  14192. name: "Micro",
  14193. height: math.unit(1, "inch"),
  14194. default: true
  14195. },
  14196. {
  14197. name: "Human-sized",
  14198. height: math.unit(6 + 1 / 12, "feet")
  14199. },
  14200. {
  14201. name: "Macro",
  14202. height: math.unit(250, "feet")
  14203. },
  14204. {
  14205. name: "Megamacro",
  14206. height: math.unit(75, "miles")
  14207. },
  14208. {
  14209. name: "Texas-sized",
  14210. height: math.unit(750, "miles")
  14211. },
  14212. {
  14213. name: "Teramacro",
  14214. height: math.unit(50000, "miles")
  14215. },
  14216. ]
  14217. ))
  14218. characterMakers.push(() => makeCharacter(
  14219. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14220. {
  14221. front: {
  14222. height: math.unit(6, "feet"),
  14223. weight: math.unit(269, "lb"),
  14224. name: "Front",
  14225. image: {
  14226. source: "./media/characters/danny-kapowsky/front.svg",
  14227. extra: 766 / 736,
  14228. bottom: 0.044
  14229. }
  14230. },
  14231. back: {
  14232. height: math.unit(6, "feet"),
  14233. weight: math.unit(269, "lb"),
  14234. name: "Back",
  14235. image: {
  14236. source: "./media/characters/danny-kapowsky/back.svg",
  14237. extra: 797 / 760,
  14238. bottom: 0.025
  14239. }
  14240. },
  14241. },
  14242. [
  14243. {
  14244. name: "Macro",
  14245. height: math.unit(150, "feet"),
  14246. default: true
  14247. },
  14248. {
  14249. name: "Macro+",
  14250. height: math.unit(200, "feet")
  14251. },
  14252. {
  14253. name: "Macro++",
  14254. height: math.unit(300, "feet")
  14255. },
  14256. {
  14257. name: "Macro+++",
  14258. height: math.unit(400, "feet")
  14259. },
  14260. ]
  14261. ))
  14262. characterMakers.push(() => makeCharacter(
  14263. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14264. {
  14265. side: {
  14266. height: math.unit(6, "feet"),
  14267. weight: math.unit(170, "lb"),
  14268. name: "Side",
  14269. image: {
  14270. source: "./media/characters/finn/side.svg",
  14271. extra: 1953 / 1807,
  14272. bottom: 0.057
  14273. }
  14274. },
  14275. },
  14276. [
  14277. {
  14278. name: "Megamacro",
  14279. height: math.unit(14445, "feet"),
  14280. default: true
  14281. },
  14282. ]
  14283. ))
  14284. characterMakers.push(() => makeCharacter(
  14285. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14286. {
  14287. front: {
  14288. height: math.unit(5 + 6 / 12, "feet"),
  14289. weight: math.unit(125, "lb"),
  14290. name: "Front",
  14291. image: {
  14292. source: "./media/characters/roy/front.svg",
  14293. extra: 1,
  14294. bottom: 0.11
  14295. }
  14296. },
  14297. },
  14298. [
  14299. {
  14300. name: "Micro",
  14301. height: math.unit(3, "inches"),
  14302. default: true
  14303. },
  14304. {
  14305. name: "Normal",
  14306. height: math.unit(5 + 6 / 12, "feet")
  14307. },
  14308. {
  14309. name: "Lesser Macro",
  14310. height: math.unit(60, "feet")
  14311. },
  14312. {
  14313. name: "Greater Macro",
  14314. height: math.unit(120, "feet")
  14315. },
  14316. ]
  14317. ))
  14318. characterMakers.push(() => makeCharacter(
  14319. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14320. {
  14321. front: {
  14322. height: math.unit(6, "feet"),
  14323. weight: math.unit(100, "lb"),
  14324. name: "Front",
  14325. image: {
  14326. source: "./media/characters/aevsivs/front.svg",
  14327. extra: 1,
  14328. bottom: 0.03
  14329. }
  14330. },
  14331. back: {
  14332. height: math.unit(6, "feet"),
  14333. weight: math.unit(100, "lb"),
  14334. name: "Back",
  14335. image: {
  14336. source: "./media/characters/aevsivs/back.svg"
  14337. }
  14338. },
  14339. },
  14340. [
  14341. {
  14342. name: "Micro",
  14343. height: math.unit(2, "inches"),
  14344. default: true
  14345. },
  14346. {
  14347. name: "Normal",
  14348. height: math.unit(5, "feet")
  14349. },
  14350. ]
  14351. ))
  14352. characterMakers.push(() => makeCharacter(
  14353. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14354. {
  14355. front: {
  14356. height: math.unit(5 + 7 / 12, "feet"),
  14357. weight: math.unit(159, "lb"),
  14358. name: "Front",
  14359. image: {
  14360. source: "./media/characters/hildegard/front.svg",
  14361. extra: 289 / 269,
  14362. bottom: 7.63 / 297.8
  14363. }
  14364. },
  14365. back: {
  14366. height: math.unit(5 + 7 / 12, "feet"),
  14367. weight: math.unit(159, "lb"),
  14368. name: "Back",
  14369. image: {
  14370. source: "./media/characters/hildegard/back.svg",
  14371. extra: 280 / 260,
  14372. bottom: 2.3 / 282
  14373. }
  14374. },
  14375. },
  14376. [
  14377. {
  14378. name: "Normal",
  14379. height: math.unit(5 + 7 / 12, "feet"),
  14380. default: true
  14381. },
  14382. ]
  14383. ))
  14384. characterMakers.push(() => makeCharacter(
  14385. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14386. {
  14387. bernard: {
  14388. height: math.unit(2 + 7 / 12, "feet"),
  14389. weight: math.unit(66, "lb"),
  14390. name: "Bernard",
  14391. rename: true,
  14392. image: {
  14393. source: "./media/characters/bernard-wilder/bernard.svg",
  14394. extra: 192 / 128,
  14395. bottom: 0.05
  14396. }
  14397. },
  14398. wilder: {
  14399. height: math.unit(5 + 8 / 12, "feet"),
  14400. weight: math.unit(143, "lb"),
  14401. name: "Wilder",
  14402. rename: true,
  14403. image: {
  14404. source: "./media/characters/bernard-wilder/wilder.svg",
  14405. extra: 361 / 312,
  14406. bottom: 0.02
  14407. }
  14408. },
  14409. },
  14410. [
  14411. {
  14412. name: "Normal",
  14413. height: math.unit(2 + 7 / 12, "feet"),
  14414. default: true
  14415. },
  14416. ]
  14417. ))
  14418. characterMakers.push(() => makeCharacter(
  14419. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14420. {
  14421. anthro: {
  14422. height: math.unit(6 + 1 / 12, "feet"),
  14423. weight: math.unit(155, "lb"),
  14424. name: "Anthro",
  14425. image: {
  14426. source: "./media/characters/hearth/anthro.svg",
  14427. extra: 260 / 250,
  14428. bottom: 0.02
  14429. }
  14430. },
  14431. feral: {
  14432. height: math.unit(3.78, "feet"),
  14433. weight: math.unit(35, "kg"),
  14434. name: "Feral",
  14435. image: {
  14436. source: "./media/characters/hearth/feral.svg",
  14437. extra: 153 / 135,
  14438. bottom: 0.03
  14439. }
  14440. },
  14441. },
  14442. [
  14443. {
  14444. name: "Normal",
  14445. height: math.unit(6 + 1 / 12, "feet"),
  14446. default: true
  14447. },
  14448. ]
  14449. ))
  14450. characterMakers.push(() => makeCharacter(
  14451. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14452. {
  14453. front: {
  14454. height: math.unit(6, "feet"),
  14455. weight: math.unit(182, "lb"),
  14456. name: "Front",
  14457. image: {
  14458. source: "./media/characters/ingrid/front.svg",
  14459. extra: 294 / 268,
  14460. bottom: 0.027
  14461. }
  14462. },
  14463. },
  14464. [
  14465. {
  14466. name: "Normal",
  14467. height: math.unit(6, "feet"),
  14468. default: true
  14469. },
  14470. ]
  14471. ))
  14472. characterMakers.push(() => makeCharacter(
  14473. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14474. {
  14475. eevee: {
  14476. height: math.unit(2 + 10 / 12, "feet"),
  14477. weight: math.unit(86, "lb"),
  14478. name: "Malgam",
  14479. image: {
  14480. source: "./media/characters/malgam/eevee.svg",
  14481. extra: 218 / 180,
  14482. bottom: 0.2
  14483. }
  14484. },
  14485. sylveon: {
  14486. height: math.unit(4, "feet"),
  14487. weight: math.unit(101, "lb"),
  14488. name: "Future Malgam",
  14489. rename: true,
  14490. image: {
  14491. source: "./media/characters/malgam/sylveon.svg",
  14492. extra: 371 / 325,
  14493. bottom: 0.015
  14494. }
  14495. },
  14496. gigantamax: {
  14497. height: math.unit(50, "feet"),
  14498. name: "Gigantamax Malgam",
  14499. rename: true,
  14500. image: {
  14501. source: "./media/characters/malgam/gigantamax.svg"
  14502. }
  14503. },
  14504. },
  14505. [
  14506. {
  14507. name: "Normal",
  14508. height: math.unit(2 + 10 / 12, "feet"),
  14509. default: true
  14510. },
  14511. ]
  14512. ))
  14513. characterMakers.push(() => makeCharacter(
  14514. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14515. {
  14516. front: {
  14517. height: math.unit(5 + 11 / 12, "feet"),
  14518. weight: math.unit(188, "lb"),
  14519. name: "Front",
  14520. image: {
  14521. source: "./media/characters/fleur/front.svg",
  14522. extra: 309 / 283,
  14523. bottom: 0.007
  14524. }
  14525. },
  14526. },
  14527. [
  14528. {
  14529. name: "Normal",
  14530. height: math.unit(5 + 11 / 12, "feet"),
  14531. default: true
  14532. },
  14533. ]
  14534. ))
  14535. characterMakers.push(() => makeCharacter(
  14536. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14537. {
  14538. front: {
  14539. height: math.unit(5 + 4 / 12, "feet"),
  14540. weight: math.unit(122, "lb"),
  14541. name: "Front",
  14542. image: {
  14543. source: "./media/characters/jude/front.svg",
  14544. extra: 288 / 273,
  14545. bottom: 0.03
  14546. }
  14547. },
  14548. },
  14549. [
  14550. {
  14551. name: "Normal",
  14552. height: math.unit(5 + 4 / 12, "feet"),
  14553. default: true
  14554. },
  14555. ]
  14556. ))
  14557. characterMakers.push(() => makeCharacter(
  14558. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14559. {
  14560. front: {
  14561. height: math.unit(5 + 11 / 12, "feet"),
  14562. weight: math.unit(190, "lb"),
  14563. name: "Front",
  14564. image: {
  14565. source: "./media/characters/seara/front.svg",
  14566. extra: 1,
  14567. bottom: 0.05
  14568. }
  14569. },
  14570. },
  14571. [
  14572. {
  14573. name: "Normal",
  14574. height: math.unit(5 + 11 / 12, "feet"),
  14575. default: true
  14576. },
  14577. ]
  14578. ))
  14579. characterMakers.push(() => makeCharacter(
  14580. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14581. {
  14582. front: {
  14583. height: math.unit(16 + 5 / 12, "feet"),
  14584. weight: math.unit(524, "lb"),
  14585. name: "Front",
  14586. image: {
  14587. source: "./media/characters/caspian/front.svg",
  14588. extra: 1,
  14589. bottom: 0.04
  14590. }
  14591. },
  14592. },
  14593. [
  14594. {
  14595. name: "Normal",
  14596. height: math.unit(16 + 5 / 12, "feet"),
  14597. default: true
  14598. },
  14599. ]
  14600. ))
  14601. characterMakers.push(() => makeCharacter(
  14602. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14603. {
  14604. front: {
  14605. height: math.unit(5 + 7 / 12, "feet"),
  14606. weight: math.unit(170, "lb"),
  14607. name: "Front",
  14608. image: {
  14609. source: "./media/characters/mika/front.svg",
  14610. extra: 1,
  14611. bottom: 0.016
  14612. }
  14613. },
  14614. },
  14615. [
  14616. {
  14617. name: "Normal",
  14618. height: math.unit(5 + 7 / 12, "feet"),
  14619. default: true
  14620. },
  14621. ]
  14622. ))
  14623. characterMakers.push(() => makeCharacter(
  14624. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14625. {
  14626. front: {
  14627. height: math.unit(6 + 2 / 12, "feet"),
  14628. weight: math.unit(268, "lb"),
  14629. name: "Front",
  14630. image: {
  14631. source: "./media/characters/sol/front.svg",
  14632. extra: 247 / 231,
  14633. bottom: 0.05
  14634. }
  14635. },
  14636. },
  14637. [
  14638. {
  14639. name: "Normal",
  14640. height: math.unit(6 + 2 / 12, "feet"),
  14641. default: true
  14642. },
  14643. ]
  14644. ))
  14645. characterMakers.push(() => makeCharacter(
  14646. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14647. {
  14648. buizel: {
  14649. height: math.unit(2 + 5 / 12, "feet"),
  14650. weight: math.unit(87, "lb"),
  14651. name: "Buizel",
  14652. image: {
  14653. source: "./media/characters/umiko/buizel.svg",
  14654. extra: 172 / 157,
  14655. bottom: 0.01
  14656. }
  14657. },
  14658. floatzel: {
  14659. height: math.unit(5 + 9 / 12, "feet"),
  14660. weight: math.unit(250, "lb"),
  14661. name: "Floatzel",
  14662. image: {
  14663. source: "./media/characters/umiko/floatzel.svg",
  14664. extra: 262 / 248
  14665. }
  14666. },
  14667. },
  14668. [
  14669. {
  14670. name: "Normal",
  14671. height: math.unit(2 + 5 / 12, "feet"),
  14672. default: true
  14673. },
  14674. ]
  14675. ))
  14676. characterMakers.push(() => makeCharacter(
  14677. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14678. {
  14679. front: {
  14680. height: math.unit(6 + 2 / 12, "feet"),
  14681. weight: math.unit(146, "lb"),
  14682. name: "Front",
  14683. image: {
  14684. source: "./media/characters/iliac/front.svg",
  14685. extra: 389 / 365,
  14686. bottom: 0.035
  14687. }
  14688. },
  14689. },
  14690. [
  14691. {
  14692. name: "Normal",
  14693. height: math.unit(6 + 2 / 12, "feet"),
  14694. default: true
  14695. },
  14696. ]
  14697. ))
  14698. characterMakers.push(() => makeCharacter(
  14699. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14700. {
  14701. front: {
  14702. height: math.unit(6, "feet"),
  14703. weight: math.unit(170, "lb"),
  14704. name: "Front",
  14705. image: {
  14706. source: "./media/characters/topaz/front.svg",
  14707. extra: 317 / 303,
  14708. bottom: 0.055
  14709. }
  14710. },
  14711. },
  14712. [
  14713. {
  14714. name: "Normal",
  14715. height: math.unit(6, "feet"),
  14716. default: true
  14717. },
  14718. ]
  14719. ))
  14720. characterMakers.push(() => makeCharacter(
  14721. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14722. {
  14723. front: {
  14724. height: math.unit(5 + 11 / 12, "feet"),
  14725. weight: math.unit(144, "lb"),
  14726. name: "Front",
  14727. image: {
  14728. source: "./media/characters/gabriel/front.svg",
  14729. extra: 285 / 262,
  14730. bottom: 0.004
  14731. }
  14732. },
  14733. },
  14734. [
  14735. {
  14736. name: "Normal",
  14737. height: math.unit(5 + 11 / 12, "feet"),
  14738. default: true
  14739. },
  14740. ]
  14741. ))
  14742. characterMakers.push(() => makeCharacter(
  14743. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14744. {
  14745. side: {
  14746. height: math.unit(6 + 5 / 12, "feet"),
  14747. weight: math.unit(300, "lb"),
  14748. name: "Side",
  14749. image: {
  14750. source: "./media/characters/tempest-suicune/side.svg",
  14751. extra: 195 / 154,
  14752. bottom: 0.04
  14753. }
  14754. },
  14755. },
  14756. [
  14757. {
  14758. name: "Normal",
  14759. height: math.unit(6 + 5 / 12, "feet"),
  14760. default: true
  14761. },
  14762. ]
  14763. ))
  14764. characterMakers.push(() => makeCharacter(
  14765. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14766. {
  14767. front: {
  14768. height: math.unit(7 + 2 / 12, "feet"),
  14769. weight: math.unit(322, "lb"),
  14770. name: "Front",
  14771. image: {
  14772. source: "./media/characters/vulcan/front.svg",
  14773. extra: 154 / 147,
  14774. bottom: 0.04
  14775. }
  14776. },
  14777. },
  14778. [
  14779. {
  14780. name: "Normal",
  14781. height: math.unit(7 + 2 / 12, "feet"),
  14782. default: true
  14783. },
  14784. ]
  14785. ))
  14786. characterMakers.push(() => makeCharacter(
  14787. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14788. {
  14789. front: {
  14790. height: math.unit(5 + 10 / 12, "feet"),
  14791. weight: math.unit(264, "lb"),
  14792. name: "Front",
  14793. image: {
  14794. source: "./media/characters/gault/front.svg",
  14795. extra: 161 / 140,
  14796. bottom: 0.028
  14797. }
  14798. },
  14799. },
  14800. [
  14801. {
  14802. name: "Normal",
  14803. height: math.unit(5 + 10 / 12, "feet"),
  14804. default: true
  14805. },
  14806. ]
  14807. ))
  14808. characterMakers.push(() => makeCharacter(
  14809. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14810. {
  14811. front: {
  14812. height: math.unit(6, "feet"),
  14813. weight: math.unit(150, "lb"),
  14814. name: "Front",
  14815. image: {
  14816. source: "./media/characters/shard/front.svg",
  14817. extra: 273 / 238,
  14818. bottom: 0.02
  14819. }
  14820. },
  14821. },
  14822. [
  14823. {
  14824. name: "Normal",
  14825. height: math.unit(3 + 6 / 12, "feet"),
  14826. default: true
  14827. },
  14828. ]
  14829. ))
  14830. characterMakers.push(() => makeCharacter(
  14831. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14832. {
  14833. front: {
  14834. height: math.unit(5 + 11 / 12, "feet"),
  14835. weight: math.unit(146, "lb"),
  14836. name: "Front",
  14837. image: {
  14838. source: "./media/characters/ashe/front.svg",
  14839. extra: 400 / 373,
  14840. bottom: 0.01
  14841. }
  14842. },
  14843. },
  14844. [
  14845. {
  14846. name: "Normal",
  14847. height: math.unit(5 + 11 / 12, "feet"),
  14848. default: true
  14849. },
  14850. ]
  14851. ))
  14852. characterMakers.push(() => makeCharacter(
  14853. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14854. {
  14855. front: {
  14856. height: math.unit(5 + 5 / 12, "feet"),
  14857. weight: math.unit(135, "lb"),
  14858. name: "Front",
  14859. image: {
  14860. source: "./media/characters/beatrix/front.svg",
  14861. extra: 392 / 379,
  14862. bottom: 0.01
  14863. }
  14864. },
  14865. },
  14866. [
  14867. {
  14868. name: "Normal",
  14869. height: math.unit(6, "feet"),
  14870. default: true
  14871. },
  14872. ]
  14873. ))
  14874. characterMakers.push(() => makeCharacter(
  14875. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14876. {
  14877. front: {
  14878. height: math.unit(6, "feet"),
  14879. weight: math.unit(150, "lb"),
  14880. name: "Front",
  14881. image: {
  14882. source: "./media/characters/ignatius/front.svg",
  14883. extra: 245 / 222,
  14884. bottom: 0.01
  14885. }
  14886. },
  14887. },
  14888. [
  14889. {
  14890. name: "Normal",
  14891. height: math.unit(5 + 5 / 12, "feet"),
  14892. default: true
  14893. },
  14894. ]
  14895. ))
  14896. characterMakers.push(() => makeCharacter(
  14897. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14898. {
  14899. front: {
  14900. height: math.unit(6 + 2 / 12, "feet"),
  14901. weight: math.unit(138, "lb"),
  14902. name: "Front",
  14903. image: {
  14904. source: "./media/characters/mei-li/front.svg",
  14905. extra: 237 / 229,
  14906. bottom: 0.03
  14907. }
  14908. },
  14909. },
  14910. [
  14911. {
  14912. name: "Normal",
  14913. height: math.unit(6 + 2 / 12, "feet"),
  14914. default: true
  14915. },
  14916. ]
  14917. ))
  14918. characterMakers.push(() => makeCharacter(
  14919. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14920. {
  14921. front: {
  14922. height: math.unit(2 + 4 / 12, "feet"),
  14923. weight: math.unit(62, "lb"),
  14924. name: "Front",
  14925. image: {
  14926. source: "./media/characters/puru/front.svg",
  14927. extra: 206 / 149,
  14928. bottom: 0.06
  14929. }
  14930. },
  14931. },
  14932. [
  14933. {
  14934. name: "Normal",
  14935. height: math.unit(2 + 4 / 12, "feet"),
  14936. default: true
  14937. },
  14938. ]
  14939. ))
  14940. characterMakers.push(() => makeCharacter(
  14941. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14942. {
  14943. taur: {
  14944. height: math.unit(11, "feet"),
  14945. weight: math.unit(500, "lb"),
  14946. name: "Taur",
  14947. image: {
  14948. source: "./media/characters/kee/taur.svg",
  14949. extra: 1,
  14950. bottom: 0.04
  14951. }
  14952. },
  14953. },
  14954. [
  14955. {
  14956. name: "Normal",
  14957. height: math.unit(11, "feet"),
  14958. default: true
  14959. },
  14960. ]
  14961. ))
  14962. characterMakers.push(() => makeCharacter(
  14963. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14964. {
  14965. anthro: {
  14966. height: math.unit(7, "feet"),
  14967. weight: math.unit(190, "lb"),
  14968. name: "Anthro",
  14969. image: {
  14970. source: "./media/characters/cobalt-dracha/anthro.svg",
  14971. extra: 231 / 225,
  14972. bottom: 0.04
  14973. }
  14974. },
  14975. feral: {
  14976. height: math.unit(9 + 7 / 12, "feet"),
  14977. weight: math.unit(294, "lb"),
  14978. name: "Feral",
  14979. image: {
  14980. source: "./media/characters/cobalt-dracha/feral.svg",
  14981. extra: 692 / 633,
  14982. bottom: 0.05
  14983. }
  14984. },
  14985. },
  14986. [
  14987. {
  14988. name: "Normal",
  14989. height: math.unit(7, "feet"),
  14990. default: true
  14991. },
  14992. ]
  14993. ))
  14994. characterMakers.push(() => makeCharacter(
  14995. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14996. {
  14997. fallen: {
  14998. height: math.unit(11 + 8 / 12, "feet"),
  14999. weight: math.unit(485, "lb"),
  15000. name: "Java (Fallen)",
  15001. rename: true,
  15002. image: {
  15003. source: "./media/characters/java/fallen.svg",
  15004. extra: 226 / 208,
  15005. bottom: 0.005
  15006. }
  15007. },
  15008. godkin: {
  15009. height: math.unit(10 + 6 / 12, "feet"),
  15010. weight: math.unit(328, "lb"),
  15011. name: "Java (Godkin)",
  15012. rename: true,
  15013. image: {
  15014. source: "./media/characters/java/godkin.svg",
  15015. extra: 270 / 262,
  15016. bottom: 0.02
  15017. }
  15018. },
  15019. },
  15020. [
  15021. {
  15022. name: "Normal",
  15023. height: math.unit(11 + 8 / 12, "feet"),
  15024. default: true
  15025. },
  15026. ]
  15027. ))
  15028. characterMakers.push(() => makeCharacter(
  15029. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15030. {
  15031. front: {
  15032. height: math.unit(7 + 8 / 12, "feet"),
  15033. weight: math.unit(320, "lb"),
  15034. name: "Front",
  15035. image: {
  15036. source: "./media/characters/skoll/front.svg",
  15037. extra: 232 / 220,
  15038. bottom: 0.02
  15039. }
  15040. },
  15041. },
  15042. [
  15043. {
  15044. name: "Normal",
  15045. height: math.unit(7 + 8 / 12, "feet"),
  15046. default: true
  15047. },
  15048. ]
  15049. ))
  15050. characterMakers.push(() => makeCharacter(
  15051. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15052. {
  15053. front: {
  15054. height: math.unit(5 + 9 / 12, "feet"),
  15055. weight: math.unit(170, "lb"),
  15056. name: "Front",
  15057. image: {
  15058. source: "./media/characters/purna/front.svg",
  15059. extra: 239 / 229,
  15060. bottom: 0.01
  15061. }
  15062. },
  15063. },
  15064. [
  15065. {
  15066. name: "Normal",
  15067. height: math.unit(5 + 9 / 12, "feet"),
  15068. default: true
  15069. },
  15070. ]
  15071. ))
  15072. characterMakers.push(() => makeCharacter(
  15073. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15074. {
  15075. front: {
  15076. height: math.unit(5 + 9 / 12, "feet"),
  15077. weight: math.unit(142, "lb"),
  15078. name: "Front",
  15079. image: {
  15080. source: "./media/characters/kuva/front.svg",
  15081. extra: 281 / 271,
  15082. bottom: 0.006
  15083. }
  15084. },
  15085. },
  15086. [
  15087. {
  15088. name: "Normal",
  15089. height: math.unit(5 + 9 / 12, "feet"),
  15090. default: true
  15091. },
  15092. ]
  15093. ))
  15094. characterMakers.push(() => makeCharacter(
  15095. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15096. {
  15097. anthro: {
  15098. height: math.unit(9 + 2 / 12, "feet"),
  15099. weight: math.unit(270, "lb"),
  15100. name: "Anthro",
  15101. image: {
  15102. source: "./media/characters/embra/anthro.svg",
  15103. extra: 200 / 187,
  15104. bottom: 0.02
  15105. }
  15106. },
  15107. feral: {
  15108. height: math.unit(18 + 8 / 12, "feet"),
  15109. weight: math.unit(576, "lb"),
  15110. name: "Feral",
  15111. image: {
  15112. source: "./media/characters/embra/feral.svg",
  15113. extra: 152 / 137,
  15114. bottom: 0.037
  15115. }
  15116. },
  15117. },
  15118. [
  15119. {
  15120. name: "Normal",
  15121. height: math.unit(9 + 2 / 12, "feet"),
  15122. default: true
  15123. },
  15124. ]
  15125. ))
  15126. characterMakers.push(() => makeCharacter(
  15127. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15128. {
  15129. anthro: {
  15130. height: math.unit(10 + 9 / 12, "feet"),
  15131. weight: math.unit(224, "lb"),
  15132. name: "Anthro",
  15133. image: {
  15134. source: "./media/characters/grottos/anthro.svg",
  15135. extra: 350 / 332,
  15136. bottom: 0.045
  15137. }
  15138. },
  15139. feral: {
  15140. height: math.unit(20 + 7 / 12, "feet"),
  15141. weight: math.unit(629, "lb"),
  15142. name: "Feral",
  15143. image: {
  15144. source: "./media/characters/grottos/feral.svg",
  15145. extra: 207 / 190,
  15146. bottom: 0.05
  15147. }
  15148. },
  15149. },
  15150. [
  15151. {
  15152. name: "Normal",
  15153. height: math.unit(10 + 9 / 12, "feet"),
  15154. default: true
  15155. },
  15156. ]
  15157. ))
  15158. characterMakers.push(() => makeCharacter(
  15159. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15160. {
  15161. anthro: {
  15162. height: math.unit(9 + 6 / 12, "feet"),
  15163. weight: math.unit(298, "lb"),
  15164. name: "Anthro",
  15165. image: {
  15166. source: "./media/characters/frifna/anthro.svg",
  15167. extra: 282 / 269,
  15168. bottom: 0.015
  15169. }
  15170. },
  15171. feral: {
  15172. height: math.unit(16 + 2 / 12, "feet"),
  15173. weight: math.unit(624, "lb"),
  15174. name: "Feral",
  15175. image: {
  15176. source: "./media/characters/frifna/feral.svg"
  15177. }
  15178. },
  15179. },
  15180. [
  15181. {
  15182. name: "Normal",
  15183. height: math.unit(9 + 6 / 12, "feet"),
  15184. default: true
  15185. },
  15186. ]
  15187. ))
  15188. characterMakers.push(() => makeCharacter(
  15189. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15190. {
  15191. front: {
  15192. height: math.unit(6 + 2 / 12, "feet"),
  15193. weight: math.unit(168, "lb"),
  15194. name: "Front",
  15195. image: {
  15196. source: "./media/characters/elise/front.svg",
  15197. extra: 276 / 271
  15198. }
  15199. },
  15200. },
  15201. [
  15202. {
  15203. name: "Normal",
  15204. height: math.unit(6 + 2 / 12, "feet"),
  15205. default: true
  15206. },
  15207. ]
  15208. ))
  15209. characterMakers.push(() => makeCharacter(
  15210. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15211. {
  15212. front: {
  15213. height: math.unit(5 + 10 / 12, "feet"),
  15214. weight: math.unit(210, "lb"),
  15215. name: "Front",
  15216. image: {
  15217. source: "./media/characters/glade/front.svg",
  15218. extra: 258 / 247,
  15219. bottom: 0.008
  15220. }
  15221. },
  15222. },
  15223. [
  15224. {
  15225. name: "Normal",
  15226. height: math.unit(5 + 10 / 12, "feet"),
  15227. default: true
  15228. },
  15229. ]
  15230. ))
  15231. characterMakers.push(() => makeCharacter(
  15232. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15233. {
  15234. front: {
  15235. height: math.unit(5 + 10 / 12, "feet"),
  15236. weight: math.unit(129, "lb"),
  15237. name: "Front",
  15238. image: {
  15239. source: "./media/characters/rina/front.svg",
  15240. extra: 266 / 255,
  15241. bottom: 0.005
  15242. }
  15243. },
  15244. },
  15245. [
  15246. {
  15247. name: "Normal",
  15248. height: math.unit(5 + 10 / 12, "feet"),
  15249. default: true
  15250. },
  15251. ]
  15252. ))
  15253. characterMakers.push(() => makeCharacter(
  15254. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15255. {
  15256. front: {
  15257. height: math.unit(6 + 1 / 12, "feet"),
  15258. weight: math.unit(192, "lb"),
  15259. name: "Front",
  15260. image: {
  15261. source: "./media/characters/veronica/front.svg",
  15262. extra: 319 / 309,
  15263. bottom: 0.005
  15264. }
  15265. },
  15266. },
  15267. [
  15268. {
  15269. name: "Normal",
  15270. height: math.unit(6 + 1 / 12, "feet"),
  15271. default: true
  15272. },
  15273. ]
  15274. ))
  15275. characterMakers.push(() => makeCharacter(
  15276. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15277. {
  15278. front: {
  15279. height: math.unit(9 + 3 / 12, "feet"),
  15280. weight: math.unit(1100, "lb"),
  15281. name: "Front",
  15282. image: {
  15283. source: "./media/characters/braxton/front.svg",
  15284. extra: 1057 / 984,
  15285. bottom: 0.05
  15286. }
  15287. },
  15288. },
  15289. [
  15290. {
  15291. name: "Normal",
  15292. height: math.unit(9 + 3 / 12, "feet")
  15293. },
  15294. {
  15295. name: "Giant",
  15296. height: math.unit(300, "feet"),
  15297. default: true
  15298. },
  15299. {
  15300. name: "Macro",
  15301. height: math.unit(700, "feet")
  15302. },
  15303. {
  15304. name: "Megamacro",
  15305. height: math.unit(6000, "feet")
  15306. },
  15307. ]
  15308. ))
  15309. characterMakers.push(() => makeCharacter(
  15310. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15311. {
  15312. front: {
  15313. height: math.unit(6 + 7 / 12, "feet"),
  15314. weight: math.unit(150, "lb"),
  15315. name: "Front",
  15316. image: {
  15317. source: "./media/characters/blue-feyonics/front.svg",
  15318. extra: 1403 / 1306,
  15319. bottom: 0.047
  15320. }
  15321. },
  15322. },
  15323. [
  15324. {
  15325. name: "Normal",
  15326. height: math.unit(6 + 7 / 12, "feet"),
  15327. default: true
  15328. },
  15329. ]
  15330. ))
  15331. characterMakers.push(() => makeCharacter(
  15332. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15333. {
  15334. front: {
  15335. height: math.unit(1.8, "meters"),
  15336. weight: math.unit(60, "kg"),
  15337. name: "Front",
  15338. image: {
  15339. source: "./media/characters/maxwell/front.svg",
  15340. extra: 2060 / 1873
  15341. }
  15342. },
  15343. },
  15344. [
  15345. {
  15346. name: "Micro",
  15347. height: math.unit(1, "mm")
  15348. },
  15349. {
  15350. name: "Normal",
  15351. height: math.unit(1.8, "meter"),
  15352. default: true
  15353. },
  15354. {
  15355. name: "Macro",
  15356. height: math.unit(30, "meters")
  15357. },
  15358. {
  15359. name: "Megamacro",
  15360. height: math.unit(10, "km")
  15361. },
  15362. ]
  15363. ))
  15364. characterMakers.push(() => makeCharacter(
  15365. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15366. {
  15367. front: {
  15368. height: math.unit(6, "feet"),
  15369. weight: math.unit(150, "lb"),
  15370. name: "Front",
  15371. image: {
  15372. source: "./media/characters/jack/front.svg",
  15373. extra: 1754 / 1640,
  15374. bottom: 0.01
  15375. }
  15376. },
  15377. },
  15378. [
  15379. {
  15380. name: "Normal",
  15381. height: math.unit(80000, "feet"),
  15382. default: true
  15383. },
  15384. {
  15385. name: "Max size",
  15386. height: math.unit(10, "lightyears")
  15387. },
  15388. ]
  15389. ))
  15390. characterMakers.push(() => makeCharacter(
  15391. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15392. {
  15393. upright: {
  15394. height: math.unit(7, "feet"),
  15395. weight: math.unit(170, "lb"),
  15396. name: "Upright",
  15397. image: {
  15398. source: "./media/characters/cafat/upright.svg",
  15399. bottom: 0.01
  15400. }
  15401. },
  15402. uprightFull: {
  15403. height: math.unit(7, "feet"),
  15404. weight: math.unit(170, "lb"),
  15405. name: "Upright (Full)",
  15406. image: {
  15407. source: "./media/characters/cafat/upright-full.svg",
  15408. bottom: 0.01
  15409. }
  15410. },
  15411. side: {
  15412. height: math.unit(5, "feet"),
  15413. weight: math.unit(150, "lb"),
  15414. name: "Side",
  15415. image: {
  15416. source: "./media/characters/cafat/side.svg"
  15417. }
  15418. },
  15419. },
  15420. [
  15421. {
  15422. name: "Small",
  15423. height: math.unit(7, "feet"),
  15424. default: true
  15425. },
  15426. {
  15427. name: "Large",
  15428. height: math.unit(15.5, "feet")
  15429. },
  15430. ]
  15431. ))
  15432. characterMakers.push(() => makeCharacter(
  15433. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15434. {
  15435. front: {
  15436. height: math.unit(6, "feet"),
  15437. weight: math.unit(150, "lb"),
  15438. name: "Front",
  15439. image: {
  15440. source: "./media/characters/verin-raharra/front.svg",
  15441. extra: 5019 / 4835,
  15442. bottom: 0.023
  15443. }
  15444. },
  15445. },
  15446. [
  15447. {
  15448. name: "Normal",
  15449. height: math.unit(7 + 5 / 12, "feet"),
  15450. default: true
  15451. },
  15452. {
  15453. name: "Upsized",
  15454. height: math.unit(20, "feet")
  15455. },
  15456. ]
  15457. ))
  15458. characterMakers.push(() => makeCharacter(
  15459. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15460. {
  15461. front: {
  15462. height: math.unit(7, "feet"),
  15463. weight: math.unit(230, "lb"),
  15464. name: "Front",
  15465. image: {
  15466. source: "./media/characters/nakata/front.svg",
  15467. extra: 1.005,
  15468. bottom: 0.01
  15469. }
  15470. },
  15471. },
  15472. [
  15473. {
  15474. name: "Normal",
  15475. height: math.unit(7, "feet"),
  15476. default: true
  15477. },
  15478. {
  15479. name: "Big",
  15480. height: math.unit(14, "feet")
  15481. },
  15482. {
  15483. name: "Macro",
  15484. height: math.unit(400, "feet")
  15485. },
  15486. ]
  15487. ))
  15488. characterMakers.push(() => makeCharacter(
  15489. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15490. {
  15491. front: {
  15492. height: math.unit(4.91, "feet"),
  15493. weight: math.unit(100, "lb"),
  15494. name: "Front",
  15495. image: {
  15496. source: "./media/characters/lily/front.svg",
  15497. extra: 1585 / 1415,
  15498. bottom: 0.02
  15499. }
  15500. },
  15501. },
  15502. [
  15503. {
  15504. name: "Normal",
  15505. height: math.unit(4.91, "feet"),
  15506. default: true
  15507. },
  15508. ]
  15509. ))
  15510. characterMakers.push(() => makeCharacter(
  15511. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15512. {
  15513. laying: {
  15514. height: math.unit(4 + 4 / 12, "feet"),
  15515. weight: math.unit(600, "lb"),
  15516. name: "Laying",
  15517. image: {
  15518. source: "./media/characters/sheila/laying.svg",
  15519. extra: 1333 / 1265,
  15520. bottom: 0.16
  15521. }
  15522. },
  15523. },
  15524. [
  15525. {
  15526. name: "Normal",
  15527. height: math.unit(4 + 4 / 12, "feet"),
  15528. default: true
  15529. },
  15530. ]
  15531. ))
  15532. characterMakers.push(() => makeCharacter(
  15533. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15534. {
  15535. front: {
  15536. height: math.unit(6, "feet"),
  15537. weight: math.unit(190, "lb"),
  15538. name: "Front",
  15539. image: {
  15540. source: "./media/characters/sax/front.svg",
  15541. extra: 1187 / 973,
  15542. bottom: 0.042
  15543. }
  15544. },
  15545. },
  15546. [
  15547. {
  15548. name: "Micro",
  15549. height: math.unit(4, "inches"),
  15550. default: true
  15551. },
  15552. ]
  15553. ))
  15554. characterMakers.push(() => makeCharacter(
  15555. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15556. {
  15557. front: {
  15558. height: math.unit(6, "feet"),
  15559. weight: math.unit(150, "lb"),
  15560. name: "Front",
  15561. image: {
  15562. source: "./media/characters/pandora/front.svg",
  15563. extra: 2720 / 2556,
  15564. bottom: 0.015
  15565. }
  15566. },
  15567. back: {
  15568. height: math.unit(6, "feet"),
  15569. weight: math.unit(150, "lb"),
  15570. name: "Back",
  15571. image: {
  15572. source: "./media/characters/pandora/back.svg",
  15573. extra: 2720 / 2556,
  15574. bottom: 0.01
  15575. }
  15576. },
  15577. beans: {
  15578. height: math.unit(6 / 8, "feet"),
  15579. name: "Beans",
  15580. image: {
  15581. source: "./media/characters/pandora/beans.svg"
  15582. }
  15583. },
  15584. skirt: {
  15585. height: math.unit(6, "feet"),
  15586. weight: math.unit(150, "lb"),
  15587. name: "Skirt",
  15588. image: {
  15589. source: "./media/characters/pandora/skirt.svg",
  15590. extra: 1622 / 1525,
  15591. bottom: 0.015
  15592. }
  15593. },
  15594. hoodie: {
  15595. height: math.unit(6, "feet"),
  15596. weight: math.unit(150, "lb"),
  15597. name: "Hoodie",
  15598. image: {
  15599. source: "./media/characters/pandora/hoodie.svg",
  15600. extra: 1622 / 1525,
  15601. bottom: 0.015
  15602. }
  15603. },
  15604. casual: {
  15605. height: math.unit(6, "feet"),
  15606. weight: math.unit(150, "lb"),
  15607. name: "Casual",
  15608. image: {
  15609. source: "./media/characters/pandora/casual.svg",
  15610. extra: 1622 / 1525,
  15611. bottom: 0.015
  15612. }
  15613. },
  15614. },
  15615. [
  15616. {
  15617. name: "Normal",
  15618. height: math.unit(6, "feet")
  15619. },
  15620. {
  15621. name: "Big Steppy",
  15622. height: math.unit(1, "km"),
  15623. default: true
  15624. },
  15625. ]
  15626. ))
  15627. characterMakers.push(() => makeCharacter(
  15628. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15629. {
  15630. side: {
  15631. height: math.unit(10, "feet"),
  15632. weight: math.unit(800, "kg"),
  15633. name: "Side",
  15634. image: {
  15635. source: "./media/characters/venio-darcony/side.svg",
  15636. extra: 1373 / 1003,
  15637. bottom: 0.037
  15638. }
  15639. },
  15640. front: {
  15641. height: math.unit(19, "feet"),
  15642. weight: math.unit(800, "kg"),
  15643. name: "Front",
  15644. image: {
  15645. source: "./media/characters/venio-darcony/front.svg"
  15646. }
  15647. },
  15648. back: {
  15649. height: math.unit(19, "feet"),
  15650. weight: math.unit(800, "kg"),
  15651. name: "Back",
  15652. image: {
  15653. source: "./media/characters/venio-darcony/back.svg"
  15654. }
  15655. },
  15656. sideNsfw: {
  15657. height: math.unit(10, "feet"),
  15658. weight: math.unit(800, "kg"),
  15659. name: "Side (NSFW)",
  15660. image: {
  15661. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15662. extra: 1373 / 1003,
  15663. bottom: 0.037
  15664. }
  15665. },
  15666. frontNsfw: {
  15667. height: math.unit(19, "feet"),
  15668. weight: math.unit(800, "kg"),
  15669. name: "Front (NSFW)",
  15670. image: {
  15671. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15672. }
  15673. },
  15674. backNsfw: {
  15675. height: math.unit(19, "feet"),
  15676. weight: math.unit(800, "kg"),
  15677. name: "Back (NSFW)",
  15678. image: {
  15679. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15680. }
  15681. },
  15682. sideArmored: {
  15683. height: math.unit(10, "feet"),
  15684. weight: math.unit(800, "kg"),
  15685. name: "Side (Armored)",
  15686. image: {
  15687. source: "./media/characters/venio-darcony/side-armored.svg",
  15688. extra: 1373 / 1003,
  15689. bottom: 0.037
  15690. }
  15691. },
  15692. frontArmored: {
  15693. height: math.unit(19, "feet"),
  15694. weight: math.unit(900, "kg"),
  15695. name: "Front (Armored)",
  15696. image: {
  15697. source: "./media/characters/venio-darcony/front-armored.svg"
  15698. }
  15699. },
  15700. backArmored: {
  15701. height: math.unit(19, "feet"),
  15702. weight: math.unit(900, "kg"),
  15703. name: "Back (Armored)",
  15704. image: {
  15705. source: "./media/characters/venio-darcony/back-armored.svg"
  15706. }
  15707. },
  15708. sword: {
  15709. height: math.unit(10, "feet"),
  15710. weight: math.unit(50, "lb"),
  15711. name: "Sword",
  15712. image: {
  15713. source: "./media/characters/venio-darcony/sword.svg"
  15714. }
  15715. },
  15716. },
  15717. [
  15718. {
  15719. name: "Normal",
  15720. height: math.unit(10, "feet")
  15721. },
  15722. {
  15723. name: "Macro",
  15724. height: math.unit(130, "feet"),
  15725. default: true
  15726. },
  15727. {
  15728. name: "Macro+",
  15729. height: math.unit(240, "feet")
  15730. },
  15731. ]
  15732. ))
  15733. characterMakers.push(() => makeCharacter(
  15734. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15735. {
  15736. front: {
  15737. height: math.unit(6, "feet"),
  15738. weight: math.unit(150, "lb"),
  15739. name: "Front",
  15740. image: {
  15741. source: "./media/characters/veski/front.svg",
  15742. extra: 1299 / 1225,
  15743. bottom: 0.04
  15744. }
  15745. },
  15746. back: {
  15747. height: math.unit(6, "feet"),
  15748. weight: math.unit(150, "lb"),
  15749. name: "Back",
  15750. image: {
  15751. source: "./media/characters/veski/back.svg",
  15752. extra: 1299 / 1225,
  15753. bottom: 0.008
  15754. }
  15755. },
  15756. maw: {
  15757. height: math.unit(1.5 * 1.21, "feet"),
  15758. name: "Maw",
  15759. image: {
  15760. source: "./media/characters/veski/maw.svg"
  15761. }
  15762. },
  15763. },
  15764. [
  15765. {
  15766. name: "Macro",
  15767. height: math.unit(2, "km"),
  15768. default: true
  15769. },
  15770. ]
  15771. ))
  15772. characterMakers.push(() => makeCharacter(
  15773. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15774. {
  15775. front: {
  15776. height: math.unit(5 + 7 / 12, "feet"),
  15777. name: "Front",
  15778. image: {
  15779. source: "./media/characters/isabelle/front.svg",
  15780. extra: 2130 / 1976,
  15781. bottom: 0.05
  15782. }
  15783. },
  15784. },
  15785. [
  15786. {
  15787. name: "Supermicro",
  15788. height: math.unit(10, "micrometers")
  15789. },
  15790. {
  15791. name: "Micro",
  15792. height: math.unit(1, "inch")
  15793. },
  15794. {
  15795. name: "Tiny",
  15796. height: math.unit(5, "inches")
  15797. },
  15798. {
  15799. name: "Standard",
  15800. height: math.unit(5 + 7 / 12, "inches")
  15801. },
  15802. {
  15803. name: "Macro",
  15804. height: math.unit(80, "meters"),
  15805. default: true
  15806. },
  15807. {
  15808. name: "Megamacro",
  15809. height: math.unit(250, "meters")
  15810. },
  15811. {
  15812. name: "Gigamacro",
  15813. height: math.unit(5, "km")
  15814. },
  15815. {
  15816. name: "Cosmic",
  15817. height: math.unit(2.5e6, "miles")
  15818. },
  15819. ]
  15820. ))
  15821. characterMakers.push(() => makeCharacter(
  15822. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15823. {
  15824. front: {
  15825. height: math.unit(6, "feet"),
  15826. weight: math.unit(150, "lb"),
  15827. name: "Front",
  15828. image: {
  15829. source: "./media/characters/hanzo/front.svg",
  15830. extra: 374 / 344,
  15831. bottom: 0.02
  15832. }
  15833. },
  15834. },
  15835. [
  15836. {
  15837. name: "Normal",
  15838. height: math.unit(8, "feet"),
  15839. default: true
  15840. },
  15841. ]
  15842. ))
  15843. characterMakers.push(() => makeCharacter(
  15844. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15845. {
  15846. front: {
  15847. height: math.unit(7, "feet"),
  15848. weight: math.unit(130, "lb"),
  15849. name: "Front",
  15850. image: {
  15851. source: "./media/characters/anna/front.svg",
  15852. extra: 169 / 145,
  15853. bottom: 0.06
  15854. }
  15855. },
  15856. full: {
  15857. height: math.unit(4.96, "feet"),
  15858. weight: math.unit(220, "lb"),
  15859. name: "Full",
  15860. image: {
  15861. source: "./media/characters/anna/full.svg",
  15862. extra: 138 / 114,
  15863. bottom: 0.15
  15864. }
  15865. },
  15866. tongue: {
  15867. height: math.unit(2.53, "feet"),
  15868. name: "Tongue",
  15869. image: {
  15870. source: "./media/characters/anna/tongue.svg"
  15871. }
  15872. },
  15873. },
  15874. [
  15875. {
  15876. name: "Normal",
  15877. height: math.unit(7, "feet"),
  15878. default: true
  15879. },
  15880. ]
  15881. ))
  15882. characterMakers.push(() => makeCharacter(
  15883. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15884. {
  15885. front: {
  15886. height: math.unit(7, "feet"),
  15887. weight: math.unit(150, "lb"),
  15888. name: "Front",
  15889. image: {
  15890. source: "./media/characters/ian-corvid/front.svg",
  15891. extra: 150 / 142,
  15892. bottom: 0.02
  15893. }
  15894. },
  15895. back: {
  15896. height: math.unit(7, "feet"),
  15897. weight: math.unit(150, "lb"),
  15898. name: "Back",
  15899. image: {
  15900. source: "./media/characters/ian-corvid/back.svg",
  15901. extra: 150 / 143,
  15902. bottom: 0.01
  15903. }
  15904. },
  15905. stomping: {
  15906. height: math.unit(7, "feet"),
  15907. weight: math.unit(150, "lb"),
  15908. name: "Stomping",
  15909. image: {
  15910. source: "./media/characters/ian-corvid/stomping.svg",
  15911. extra: 76 / 72
  15912. }
  15913. },
  15914. sitting: {
  15915. height: math.unit(7 / 1.8, "feet"),
  15916. weight: math.unit(150, "lb"),
  15917. name: "Sitting",
  15918. image: {
  15919. source: "./media/characters/ian-corvid/sitting.svg",
  15920. extra: 1400 / 1269,
  15921. bottom: 0.15
  15922. }
  15923. },
  15924. },
  15925. [
  15926. {
  15927. name: "Tiny Microw",
  15928. height: math.unit(1, "inch")
  15929. },
  15930. {
  15931. name: "Microw",
  15932. height: math.unit(6, "inches")
  15933. },
  15934. {
  15935. name: "Crow",
  15936. height: math.unit(7 + 1 / 12, "feet"),
  15937. default: true
  15938. },
  15939. {
  15940. name: "Macrow",
  15941. height: math.unit(176, "feet")
  15942. },
  15943. ]
  15944. ))
  15945. characterMakers.push(() => makeCharacter(
  15946. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15947. {
  15948. front: {
  15949. height: math.unit(5 + 7 / 12, "feet"),
  15950. weight: math.unit(147, "lb"),
  15951. name: "Front",
  15952. image: {
  15953. source: "./media/characters/natalie-kellon/front.svg",
  15954. extra: 1214 / 1141,
  15955. bottom: 0.02
  15956. }
  15957. },
  15958. },
  15959. [
  15960. {
  15961. name: "Micro",
  15962. height: math.unit(1 / 16, "inch")
  15963. },
  15964. {
  15965. name: "Tiny",
  15966. height: math.unit(4, "inches")
  15967. },
  15968. {
  15969. name: "Normal",
  15970. height: math.unit(5 + 7 / 12, "feet"),
  15971. default: true
  15972. },
  15973. {
  15974. name: "Amazon",
  15975. height: math.unit(12, "feet")
  15976. },
  15977. {
  15978. name: "Giantess",
  15979. height: math.unit(160, "meters")
  15980. },
  15981. {
  15982. name: "Titaness",
  15983. height: math.unit(800, "meters")
  15984. },
  15985. ]
  15986. ))
  15987. characterMakers.push(() => makeCharacter(
  15988. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15989. {
  15990. front: {
  15991. height: math.unit(6, "feet"),
  15992. weight: math.unit(150, "lb"),
  15993. name: "Front",
  15994. image: {
  15995. source: "./media/characters/alluria/front.svg",
  15996. extra: 806 / 738,
  15997. bottom: 0.01
  15998. }
  15999. },
  16000. side: {
  16001. height: math.unit(6, "feet"),
  16002. weight: math.unit(150, "lb"),
  16003. name: "Side",
  16004. image: {
  16005. source: "./media/characters/alluria/side.svg",
  16006. extra: 800 / 750,
  16007. }
  16008. },
  16009. back: {
  16010. height: math.unit(6, "feet"),
  16011. weight: math.unit(150, "lb"),
  16012. name: "Back",
  16013. image: {
  16014. source: "./media/characters/alluria/back.svg",
  16015. extra: 806 / 738,
  16016. }
  16017. },
  16018. frontMaid: {
  16019. height: math.unit(6, "feet"),
  16020. weight: math.unit(150, "lb"),
  16021. name: "Front (Maid)",
  16022. image: {
  16023. source: "./media/characters/alluria/front-maid.svg",
  16024. extra: 806 / 738,
  16025. bottom: 0.01
  16026. }
  16027. },
  16028. sideMaid: {
  16029. height: math.unit(6, "feet"),
  16030. weight: math.unit(150, "lb"),
  16031. name: "Side (Maid)",
  16032. image: {
  16033. source: "./media/characters/alluria/side-maid.svg",
  16034. extra: 800 / 750,
  16035. bottom: 0.005
  16036. }
  16037. },
  16038. backMaid: {
  16039. height: math.unit(6, "feet"),
  16040. weight: math.unit(150, "lb"),
  16041. name: "Back (Maid)",
  16042. image: {
  16043. source: "./media/characters/alluria/back-maid.svg",
  16044. extra: 806 / 738,
  16045. }
  16046. },
  16047. },
  16048. [
  16049. {
  16050. name: "Micro",
  16051. height: math.unit(6, "inches"),
  16052. default: true
  16053. },
  16054. ]
  16055. ))
  16056. characterMakers.push(() => makeCharacter(
  16057. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16058. {
  16059. front: {
  16060. height: math.unit(6, "feet"),
  16061. weight: math.unit(150, "lb"),
  16062. name: "Front",
  16063. image: {
  16064. source: "./media/characters/kyle/front.svg",
  16065. extra: 1069 / 962,
  16066. bottom: 77.228 / 1727.45
  16067. }
  16068. },
  16069. },
  16070. [
  16071. {
  16072. name: "Macro",
  16073. height: math.unit(150, "feet"),
  16074. default: true
  16075. },
  16076. ]
  16077. ))
  16078. characterMakers.push(() => makeCharacter(
  16079. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16080. {
  16081. front: {
  16082. height: math.unit(6, "feet"),
  16083. weight: math.unit(300, "lb"),
  16084. name: "Front",
  16085. image: {
  16086. source: "./media/characters/duncan/front.svg",
  16087. extra: 1650 / 1482,
  16088. bottom: 0.05
  16089. }
  16090. },
  16091. },
  16092. [
  16093. {
  16094. name: "Macro",
  16095. height: math.unit(100, "feet"),
  16096. default: true
  16097. },
  16098. ]
  16099. ))
  16100. characterMakers.push(() => makeCharacter(
  16101. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16102. {
  16103. front: {
  16104. height: math.unit(5 + 4 / 12, "feet"),
  16105. weight: math.unit(220, "lb"),
  16106. name: "Front",
  16107. image: {
  16108. source: "./media/characters/memory/front.svg",
  16109. extra: 3641 / 3545,
  16110. bottom: 0.03
  16111. }
  16112. },
  16113. back: {
  16114. height: math.unit(5 + 4 / 12, "feet"),
  16115. weight: math.unit(220, "lb"),
  16116. name: "Back",
  16117. image: {
  16118. source: "./media/characters/memory/back.svg",
  16119. extra: 3641 / 3545,
  16120. bottom: 0.025
  16121. }
  16122. },
  16123. frontSkirt: {
  16124. height: math.unit(5 + 4 / 12, "feet"),
  16125. weight: math.unit(220, "lb"),
  16126. name: "Front (Skirt)",
  16127. image: {
  16128. source: "./media/characters/memory/front-skirt.svg",
  16129. extra: 3641 / 3545,
  16130. bottom: 0.03
  16131. }
  16132. },
  16133. frontDress: {
  16134. height: math.unit(5 + 4 / 12, "feet"),
  16135. weight: math.unit(220, "lb"),
  16136. name: "Front (Dress)",
  16137. image: {
  16138. source: "./media/characters/memory/front-dress.svg",
  16139. extra: 3641 / 3545,
  16140. bottom: 0.03
  16141. }
  16142. },
  16143. },
  16144. [
  16145. {
  16146. name: "Micro",
  16147. height: math.unit(6, "inches"),
  16148. default: true
  16149. },
  16150. {
  16151. name: "Normal",
  16152. height: math.unit(5 + 4 / 12, "feet")
  16153. },
  16154. ]
  16155. ))
  16156. characterMakers.push(() => makeCharacter(
  16157. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16158. {
  16159. front: {
  16160. height: math.unit(4 + 11 / 12, "feet"),
  16161. weight: math.unit(100, "lb"),
  16162. name: "Front",
  16163. image: {
  16164. source: "./media/characters/luno/front.svg",
  16165. extra: 1535 / 1487,
  16166. bottom: 0.03
  16167. }
  16168. },
  16169. },
  16170. [
  16171. {
  16172. name: "Micro",
  16173. height: math.unit(3, "inches")
  16174. },
  16175. {
  16176. name: "Normal",
  16177. height: math.unit(4 + 11 / 12, "feet"),
  16178. default: true
  16179. },
  16180. {
  16181. name: "Macro",
  16182. height: math.unit(300, "feet")
  16183. },
  16184. {
  16185. name: "Megamacro",
  16186. height: math.unit(700, "miles")
  16187. },
  16188. ]
  16189. ))
  16190. characterMakers.push(() => makeCharacter(
  16191. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16192. {
  16193. front: {
  16194. height: math.unit(6 + 2 / 12, "feet"),
  16195. weight: math.unit(170, "lb"),
  16196. name: "Front",
  16197. image: {
  16198. source: "./media/characters/jamesy/front.svg",
  16199. extra: 440 / 382,
  16200. bottom: 0.005
  16201. }
  16202. },
  16203. },
  16204. [
  16205. {
  16206. name: "Micro",
  16207. height: math.unit(3, "inches")
  16208. },
  16209. {
  16210. name: "Normal",
  16211. height: math.unit(6 + 2 / 12, "feet"),
  16212. default: true
  16213. },
  16214. {
  16215. name: "Macro",
  16216. height: math.unit(300, "feet")
  16217. },
  16218. {
  16219. name: "Megamacro",
  16220. height: math.unit(700, "miles")
  16221. },
  16222. ]
  16223. ))
  16224. characterMakers.push(() => makeCharacter(
  16225. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16226. {
  16227. front: {
  16228. height: math.unit(6, "feet"),
  16229. weight: math.unit(160, "lb"),
  16230. name: "Front",
  16231. image: {
  16232. source: "./media/characters/mark/front.svg",
  16233. extra: 3300 / 3100,
  16234. bottom: 136.42 / 3440.47
  16235. }
  16236. },
  16237. },
  16238. [
  16239. {
  16240. name: "Macro",
  16241. height: math.unit(120, "meters")
  16242. },
  16243. {
  16244. name: "Bigger Macro",
  16245. height: math.unit(350, "meters")
  16246. },
  16247. {
  16248. name: "Megamacro",
  16249. height: math.unit(8, "km"),
  16250. default: true
  16251. },
  16252. {
  16253. name: "Continental",
  16254. height: math.unit(4550, "km")
  16255. },
  16256. {
  16257. name: "Planetary",
  16258. height: math.unit(65000, "km")
  16259. },
  16260. ]
  16261. ))
  16262. characterMakers.push(() => makeCharacter(
  16263. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16264. {
  16265. front: {
  16266. height: math.unit(6, "feet"),
  16267. weight: math.unit(400, "lb"),
  16268. name: "Front",
  16269. image: {
  16270. source: "./media/characters/mac/front.svg",
  16271. extra: 1048 / 987.7,
  16272. bottom: 60 / 1107.6,
  16273. }
  16274. },
  16275. },
  16276. [
  16277. {
  16278. name: "Macro",
  16279. height: math.unit(500, "feet"),
  16280. default: true
  16281. },
  16282. ]
  16283. ))
  16284. characterMakers.push(() => makeCharacter(
  16285. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16286. {
  16287. front: {
  16288. height: math.unit(5 + 2 / 12, "feet"),
  16289. weight: math.unit(190, "lb"),
  16290. name: "Front",
  16291. image: {
  16292. source: "./media/characters/bari/front.svg",
  16293. extra: 3156 / 2880,
  16294. bottom: 0.03
  16295. }
  16296. },
  16297. back: {
  16298. height: math.unit(5 + 2 / 12, "feet"),
  16299. weight: math.unit(190, "lb"),
  16300. name: "Back",
  16301. image: {
  16302. source: "./media/characters/bari/back.svg",
  16303. extra: 3260 / 2834,
  16304. bottom: 0.025
  16305. }
  16306. },
  16307. frontPlush: {
  16308. height: math.unit(5 + 2 / 12, "feet"),
  16309. weight: math.unit(190, "lb"),
  16310. name: "Front (Plush)",
  16311. image: {
  16312. source: "./media/characters/bari/front-plush.svg",
  16313. extra: 1112 / 1061,
  16314. bottom: 0.002
  16315. }
  16316. },
  16317. },
  16318. [
  16319. {
  16320. name: "Micro",
  16321. height: math.unit(3, "inches")
  16322. },
  16323. {
  16324. name: "Normal",
  16325. height: math.unit(5 + 2 / 12, "feet"),
  16326. default: true
  16327. },
  16328. {
  16329. name: "Macro",
  16330. height: math.unit(20, "feet")
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16336. {
  16337. front: {
  16338. height: math.unit(6 + 1 / 12, "feet"),
  16339. weight: math.unit(275, "lb"),
  16340. name: "Front",
  16341. image: {
  16342. source: "./media/characters/hunter-misha-raven/front.svg"
  16343. }
  16344. },
  16345. },
  16346. [
  16347. {
  16348. name: "Mortal",
  16349. height: math.unit(6 + 1 / 12, "feet")
  16350. },
  16351. {
  16352. name: "Divine",
  16353. height: math.unit(1.12134e34, "parsecs"),
  16354. default: true
  16355. },
  16356. ]
  16357. ))
  16358. characterMakers.push(() => makeCharacter(
  16359. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16360. {
  16361. front: {
  16362. height: math.unit(6 + 3 / 12, "feet"),
  16363. weight: math.unit(220, "lb"),
  16364. name: "Front",
  16365. image: {
  16366. source: "./media/characters/max-calore/front.svg",
  16367. extra: 1700 / 1648,
  16368. bottom: 0.01
  16369. }
  16370. },
  16371. back: {
  16372. height: math.unit(6 + 3 / 12, "feet"),
  16373. weight: math.unit(220, "lb"),
  16374. name: "Back",
  16375. image: {
  16376. source: "./media/characters/max-calore/back.svg",
  16377. extra: 1700 / 1648,
  16378. bottom: 0.01
  16379. }
  16380. },
  16381. },
  16382. [
  16383. {
  16384. name: "Normal",
  16385. height: math.unit(6 + 3 / 12, "feet"),
  16386. default: true
  16387. },
  16388. ]
  16389. ))
  16390. characterMakers.push(() => makeCharacter(
  16391. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16392. {
  16393. side: {
  16394. height: math.unit(2 + 8 / 12, "feet"),
  16395. weight: math.unit(99, "lb"),
  16396. name: "Side",
  16397. image: {
  16398. source: "./media/characters/aspen/side.svg",
  16399. extra: 152 / 138,
  16400. bottom: 0.032
  16401. }
  16402. },
  16403. },
  16404. [
  16405. {
  16406. name: "Normal",
  16407. height: math.unit(2 + 8 / 12, "feet"),
  16408. default: true
  16409. },
  16410. ]
  16411. ))
  16412. characterMakers.push(() => makeCharacter(
  16413. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16414. {
  16415. side: {
  16416. height: math.unit(3 + 2 / 12, "feet"),
  16417. weight: math.unit(224, "lb"),
  16418. name: "Side",
  16419. image: {
  16420. source: "./media/characters/sheila-feral-wolf/side.svg",
  16421. extra: 179 / 166,
  16422. bottom: 0.03
  16423. }
  16424. },
  16425. },
  16426. [
  16427. {
  16428. name: "Normal",
  16429. height: math.unit(3 + 2 / 12, "feet"),
  16430. default: true
  16431. },
  16432. ]
  16433. ))
  16434. characterMakers.push(() => makeCharacter(
  16435. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16436. {
  16437. side: {
  16438. height: math.unit(1 + 9 / 12, "feet"),
  16439. weight: math.unit(38, "lb"),
  16440. name: "Side",
  16441. image: {
  16442. source: "./media/characters/michelle/side.svg",
  16443. extra: 147 / 136.7,
  16444. bottom: 0.03
  16445. }
  16446. },
  16447. },
  16448. [
  16449. {
  16450. name: "Normal",
  16451. height: math.unit(1 + 9 / 12, "feet"),
  16452. default: true
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16458. {
  16459. front: {
  16460. height: math.unit(1 + 1 / 12, "feet"),
  16461. weight: math.unit(18, "lb"),
  16462. name: "Front",
  16463. image: {
  16464. source: "./media/characters/nino/front.svg"
  16465. }
  16466. },
  16467. },
  16468. [
  16469. {
  16470. name: "Normal",
  16471. height: math.unit(1 + 1 / 12, "feet"),
  16472. default: true
  16473. },
  16474. ]
  16475. ))
  16476. characterMakers.push(() => makeCharacter(
  16477. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16478. {
  16479. front: {
  16480. height: math.unit(1, "feet"),
  16481. weight: math.unit(16, "lb"),
  16482. name: "Front",
  16483. image: {
  16484. source: "./media/characters/viola/front.svg"
  16485. }
  16486. },
  16487. },
  16488. [
  16489. {
  16490. name: "Normal",
  16491. height: math.unit(1, "feet"),
  16492. default: true
  16493. },
  16494. ]
  16495. ))
  16496. characterMakers.push(() => makeCharacter(
  16497. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16498. {
  16499. front: {
  16500. height: math.unit(6 + 5 / 12, "feet"),
  16501. weight: math.unit(580, "lb"),
  16502. name: "Front",
  16503. image: {
  16504. source: "./media/characters/atlas/front.svg",
  16505. extra: 298.5 / 290,
  16506. bottom: 0.015
  16507. }
  16508. },
  16509. },
  16510. [
  16511. {
  16512. name: "Normal",
  16513. height: math.unit(6 + 5 / 12, "feet"),
  16514. default: true
  16515. },
  16516. ]
  16517. ))
  16518. characterMakers.push(() => makeCharacter(
  16519. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16520. {
  16521. side: {
  16522. height: math.unit(1 + 10 / 12, "feet"),
  16523. weight: math.unit(25, "lb"),
  16524. name: "Side",
  16525. image: {
  16526. source: "./media/characters/davy/side.svg",
  16527. extra: 200 / 170,
  16528. bottom: 0.01
  16529. }
  16530. },
  16531. },
  16532. [
  16533. {
  16534. name: "Normal",
  16535. height: math.unit(1 + 10 / 12, "feet"),
  16536. default: true
  16537. },
  16538. ]
  16539. ))
  16540. characterMakers.push(() => makeCharacter(
  16541. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16542. {
  16543. side: {
  16544. height: math.unit(4 + 8 / 12, "feet"),
  16545. weight: math.unit(166, "lb"),
  16546. name: "Side",
  16547. image: {
  16548. source: "./media/characters/fiona/side.svg",
  16549. extra: 232 / 220,
  16550. bottom: 0.03
  16551. }
  16552. },
  16553. },
  16554. [
  16555. {
  16556. name: "Normal",
  16557. height: math.unit(4 + 8 / 12, "feet"),
  16558. default: true
  16559. },
  16560. ]
  16561. ))
  16562. characterMakers.push(() => makeCharacter(
  16563. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16564. {
  16565. front: {
  16566. height: math.unit(2, "feet"),
  16567. weight: math.unit(62, "lb"),
  16568. name: "Front",
  16569. image: {
  16570. source: "./media/characters/lyla/front.svg",
  16571. bottom: 0.1
  16572. }
  16573. },
  16574. },
  16575. [
  16576. {
  16577. name: "Normal",
  16578. height: math.unit(2, "feet"),
  16579. default: true
  16580. },
  16581. ]
  16582. ))
  16583. characterMakers.push(() => makeCharacter(
  16584. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16585. {
  16586. side: {
  16587. height: math.unit(1.8, "feet"),
  16588. weight: math.unit(44, "lb"),
  16589. name: "Side",
  16590. image: {
  16591. source: "./media/characters/perseus/side.svg",
  16592. bottom: 0.21
  16593. }
  16594. },
  16595. },
  16596. [
  16597. {
  16598. name: "Normal",
  16599. height: math.unit(1.8, "feet"),
  16600. default: true
  16601. },
  16602. ]
  16603. ))
  16604. characterMakers.push(() => makeCharacter(
  16605. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16606. {
  16607. side: {
  16608. height: math.unit(4 + 2 / 12, "feet"),
  16609. weight: math.unit(20, "lb"),
  16610. name: "Side",
  16611. image: {
  16612. source: "./media/characters/remus/side.svg"
  16613. }
  16614. },
  16615. },
  16616. [
  16617. {
  16618. name: "Normal",
  16619. height: math.unit(4 + 2 / 12, "feet"),
  16620. default: true
  16621. },
  16622. ]
  16623. ))
  16624. characterMakers.push(() => makeCharacter(
  16625. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16626. {
  16627. front: {
  16628. height: math.unit(4 + 11 / 12, "feet"),
  16629. weight: math.unit(114, "lb"),
  16630. name: "Front",
  16631. image: {
  16632. source: "./media/characters/raf/front.svg",
  16633. bottom: 20.5 / 1863
  16634. }
  16635. },
  16636. side: {
  16637. height: math.unit(4 + 11 / 12, "feet"),
  16638. weight: math.unit(114, "lb"),
  16639. name: "Side",
  16640. image: {
  16641. source: "./media/characters/raf/side.svg",
  16642. bottom: 22 / 1822
  16643. }
  16644. },
  16645. },
  16646. [
  16647. {
  16648. name: "Micro",
  16649. height: math.unit(2, "inches")
  16650. },
  16651. {
  16652. name: "Normal",
  16653. height: math.unit(4 + 11 / 12, "feet"),
  16654. default: true
  16655. },
  16656. {
  16657. name: "Macro",
  16658. height: math.unit(70, "feet")
  16659. },
  16660. ]
  16661. ))
  16662. characterMakers.push(() => makeCharacter(
  16663. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16664. {
  16665. front: {
  16666. height: math.unit(1.5, "meters"),
  16667. weight: math.unit(68, "kg"),
  16668. name: "Front",
  16669. image: {
  16670. source: "./media/characters/liam-einarr/front.svg",
  16671. extra: 2822 / 2666
  16672. }
  16673. },
  16674. back: {
  16675. height: math.unit(1.5, "meters"),
  16676. weight: math.unit(68, "kg"),
  16677. name: "Back",
  16678. image: {
  16679. source: "./media/characters/liam-einarr/back.svg",
  16680. extra: 2822 / 2666,
  16681. bottom: 0.015
  16682. }
  16683. },
  16684. },
  16685. [
  16686. {
  16687. name: "Normal",
  16688. height: math.unit(1.5, "meters"),
  16689. default: true
  16690. },
  16691. {
  16692. name: "Macro",
  16693. height: math.unit(150, "meters")
  16694. },
  16695. {
  16696. name: "Megamacro",
  16697. height: math.unit(35, "km")
  16698. },
  16699. ]
  16700. ))
  16701. characterMakers.push(() => makeCharacter(
  16702. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16703. {
  16704. front: {
  16705. height: math.unit(6, "feet"),
  16706. weight: math.unit(75, "kg"),
  16707. name: "Front",
  16708. image: {
  16709. source: "./media/characters/linda/front.svg",
  16710. extra: 930 / 874,
  16711. bottom: 0.004
  16712. }
  16713. },
  16714. },
  16715. [
  16716. {
  16717. name: "Normal",
  16718. height: math.unit(6, "feet"),
  16719. default: true
  16720. },
  16721. ]
  16722. ))
  16723. characterMakers.push(() => makeCharacter(
  16724. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16725. {
  16726. front: {
  16727. height: math.unit(6 + 8 / 12, "feet"),
  16728. weight: math.unit(220, "lb"),
  16729. name: "Front",
  16730. image: {
  16731. source: "./media/characters/caylex/front.svg",
  16732. extra: 821 / 772,
  16733. bottom: 0.07
  16734. }
  16735. },
  16736. back: {
  16737. height: math.unit(6 + 8 / 12, "feet"),
  16738. weight: math.unit(220, "lb"),
  16739. name: "Back",
  16740. image: {
  16741. source: "./media/characters/caylex/back.svg",
  16742. extra: 821 / 772,
  16743. bottom: 0.022
  16744. }
  16745. },
  16746. hand: {
  16747. height: math.unit(1.25, "feet"),
  16748. name: "Hand",
  16749. image: {
  16750. source: "./media/characters/caylex/hand.svg"
  16751. }
  16752. },
  16753. foot: {
  16754. height: math.unit(1.6, "feet"),
  16755. name: "Foot",
  16756. image: {
  16757. source: "./media/characters/caylex/foot.svg"
  16758. }
  16759. },
  16760. armored: {
  16761. height: math.unit(6 + 8 / 12, "feet"),
  16762. weight: math.unit(250, "lb"),
  16763. name: "Armored",
  16764. image: {
  16765. source: "./media/characters/caylex/armored.svg",
  16766. extra: 1420 / 1310,
  16767. bottom: 0.045
  16768. }
  16769. },
  16770. },
  16771. [
  16772. {
  16773. name: "Normal",
  16774. height: math.unit(6 + 8 / 12, "feet"),
  16775. default: true
  16776. },
  16777. {
  16778. name: "Normal+",
  16779. height: math.unit(12, "feet")
  16780. },
  16781. ]
  16782. ))
  16783. characterMakers.push(() => makeCharacter(
  16784. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16785. {
  16786. front: {
  16787. height: math.unit(7 + 6 / 12, "feet"),
  16788. weight: math.unit(288, "lb"),
  16789. name: "Front",
  16790. image: {
  16791. source: "./media/characters/alana/front.svg",
  16792. extra: 679 / 653,
  16793. bottom: 22.5 / 701
  16794. }
  16795. },
  16796. },
  16797. [
  16798. {
  16799. name: "Normal",
  16800. height: math.unit(7 + 6 / 12, "feet")
  16801. },
  16802. {
  16803. name: "Large",
  16804. height: math.unit(50, "feet")
  16805. },
  16806. {
  16807. name: "Macro",
  16808. height: math.unit(100, "feet"),
  16809. default: true
  16810. },
  16811. {
  16812. name: "Macro+",
  16813. height: math.unit(200, "feet")
  16814. },
  16815. ]
  16816. ))
  16817. characterMakers.push(() => makeCharacter(
  16818. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16819. {
  16820. front: {
  16821. height: math.unit(6 + 1 / 12, "feet"),
  16822. weight: math.unit(210, "lb"),
  16823. name: "Front",
  16824. image: {
  16825. source: "./media/characters/hasani/front.svg",
  16826. extra: 244 / 232,
  16827. bottom: 0.01
  16828. }
  16829. },
  16830. back: {
  16831. height: math.unit(6 + 1 / 12, "feet"),
  16832. weight: math.unit(210, "lb"),
  16833. name: "Back",
  16834. image: {
  16835. source: "./media/characters/hasani/back.svg",
  16836. extra: 244 / 232,
  16837. bottom: 0.01
  16838. }
  16839. },
  16840. },
  16841. [
  16842. {
  16843. name: "Normal",
  16844. height: math.unit(6 + 1 / 12, "feet")
  16845. },
  16846. {
  16847. name: "Macro",
  16848. height: math.unit(175, "feet"),
  16849. default: true
  16850. },
  16851. ]
  16852. ))
  16853. characterMakers.push(() => makeCharacter(
  16854. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16855. {
  16856. front: {
  16857. height: math.unit(1.82, "meters"),
  16858. weight: math.unit(140, "lb"),
  16859. name: "Front",
  16860. image: {
  16861. source: "./media/characters/nita/front.svg",
  16862. extra: 2473 / 2363,
  16863. bottom: 0.01
  16864. }
  16865. },
  16866. },
  16867. [
  16868. {
  16869. name: "Normal",
  16870. height: math.unit(1.82, "m")
  16871. },
  16872. {
  16873. name: "Macro",
  16874. height: math.unit(300, "m")
  16875. },
  16876. {
  16877. name: "Mistake Canon",
  16878. height: math.unit(0.5, "miles"),
  16879. default: true
  16880. },
  16881. {
  16882. name: "Big Mistake",
  16883. height: math.unit(13, "miles")
  16884. },
  16885. {
  16886. name: "Playing God",
  16887. height: math.unit(2450, "miles")
  16888. },
  16889. ]
  16890. ))
  16891. characterMakers.push(() => makeCharacter(
  16892. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16893. {
  16894. front: {
  16895. height: math.unit(4, "feet"),
  16896. weight: math.unit(120, "lb"),
  16897. name: "Front",
  16898. image: {
  16899. source: "./media/characters/shiriko/front.svg",
  16900. extra: 195 / 188
  16901. }
  16902. },
  16903. },
  16904. [
  16905. {
  16906. name: "Normal",
  16907. height: math.unit(4, "feet"),
  16908. default: true
  16909. },
  16910. ]
  16911. ))
  16912. characterMakers.push(() => makeCharacter(
  16913. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16914. {
  16915. front: {
  16916. height: math.unit(6, "feet"),
  16917. name: "front",
  16918. image: {
  16919. source: "./media/characters/deja/front.svg",
  16920. extra: 926 / 840,
  16921. bottom: 0.07
  16922. }
  16923. },
  16924. },
  16925. [
  16926. {
  16927. name: "Planck Length",
  16928. height: math.unit(1.6e-35, "meters")
  16929. },
  16930. {
  16931. name: "Normal",
  16932. height: math.unit(30.48, "meters"),
  16933. default: true
  16934. },
  16935. {
  16936. name: "Universal",
  16937. height: math.unit(8.8e26, "meters")
  16938. },
  16939. ]
  16940. ))
  16941. characterMakers.push(() => makeCharacter(
  16942. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16943. {
  16944. side: {
  16945. height: math.unit(8, "feet"),
  16946. weight: math.unit(6300, "lb"),
  16947. name: "Side",
  16948. image: {
  16949. source: "./media/characters/anima/side.svg",
  16950. bottom: 0.035
  16951. }
  16952. },
  16953. },
  16954. [
  16955. {
  16956. name: "Normal",
  16957. height: math.unit(8, "feet"),
  16958. default: true
  16959. },
  16960. ]
  16961. ))
  16962. characterMakers.push(() => makeCharacter(
  16963. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16964. {
  16965. front: {
  16966. height: math.unit(8, "feet"),
  16967. weight: math.unit(350, "lb"),
  16968. name: "Front",
  16969. image: {
  16970. source: "./media/characters/bianca/front.svg",
  16971. extra: 234 / 225,
  16972. bottom: 0.03
  16973. }
  16974. },
  16975. },
  16976. [
  16977. {
  16978. name: "Normal",
  16979. height: math.unit(8, "feet"),
  16980. default: true
  16981. },
  16982. ]
  16983. ))
  16984. characterMakers.push(() => makeCharacter(
  16985. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16986. {
  16987. front: {
  16988. height: math.unit(6, "feet"),
  16989. weight: math.unit(150, "lb"),
  16990. name: "Front",
  16991. image: {
  16992. source: "./media/characters/adinia/front.svg",
  16993. extra: 1845 / 1672,
  16994. bottom: 0.02
  16995. }
  16996. },
  16997. back: {
  16998. height: math.unit(6, "feet"),
  16999. weight: math.unit(150, "lb"),
  17000. name: "Back",
  17001. image: {
  17002. source: "./media/characters/adinia/back.svg",
  17003. extra: 1845 / 1672,
  17004. bottom: 0.002
  17005. }
  17006. },
  17007. },
  17008. [
  17009. {
  17010. name: "Normal",
  17011. height: math.unit(11 + 5 / 12, "feet"),
  17012. default: true
  17013. },
  17014. ]
  17015. ))
  17016. characterMakers.push(() => makeCharacter(
  17017. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  17018. {
  17019. front: {
  17020. height: math.unit(3, "meters"),
  17021. weight: math.unit(200, "kg"),
  17022. name: "Front",
  17023. image: {
  17024. source: "./media/characters/lykasa/front.svg",
  17025. extra: 1076 / 976,
  17026. bottom: 0.06
  17027. }
  17028. },
  17029. },
  17030. [
  17031. {
  17032. name: "Normal",
  17033. height: math.unit(3, "meters")
  17034. },
  17035. {
  17036. name: "Kaiju",
  17037. height: math.unit(120, "meters"),
  17038. default: true
  17039. },
  17040. {
  17041. name: "Mega Kaiju",
  17042. height: math.unit(240, "km")
  17043. },
  17044. {
  17045. name: "Giga Kaiju",
  17046. height: math.unit(400, "megameters")
  17047. },
  17048. {
  17049. name: "Tera Kaiju",
  17050. height: math.unit(800, "gigameters")
  17051. },
  17052. {
  17053. name: "Kaiju Dragon Goddess",
  17054. height: math.unit(26, "zettaparsecs")
  17055. },
  17056. ]
  17057. ))
  17058. characterMakers.push(() => makeCharacter(
  17059. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17060. {
  17061. side: {
  17062. height: math.unit(283 / 124 * 6, "feet"),
  17063. weight: math.unit(35000, "lb"),
  17064. name: "Side",
  17065. image: {
  17066. source: "./media/characters/malfaren/side.svg",
  17067. extra: 2500 / 1010,
  17068. bottom: 0.01
  17069. }
  17070. },
  17071. front: {
  17072. height: math.unit(22.36, "feet"),
  17073. weight: math.unit(35000, "lb"),
  17074. name: "Front",
  17075. image: {
  17076. source: "./media/characters/malfaren/front.svg",
  17077. extra: 1631 / 1476,
  17078. bottom: 0.01
  17079. }
  17080. },
  17081. maw: {
  17082. height: math.unit(6.9, "feet"),
  17083. name: "Maw",
  17084. image: {
  17085. source: "./media/characters/malfaren/maw.svg"
  17086. }
  17087. },
  17088. },
  17089. [
  17090. {
  17091. name: "Big",
  17092. height: math.unit(283 / 162 * 6, "feet"),
  17093. },
  17094. {
  17095. name: "Bigger",
  17096. height: math.unit(283 / 124 * 6, "feet")
  17097. },
  17098. {
  17099. name: "Massive",
  17100. height: math.unit(283 / 92 * 6, "feet"),
  17101. default: true
  17102. },
  17103. {
  17104. name: "👀💦",
  17105. height: math.unit(283 / 73 * 6, "feet"),
  17106. },
  17107. ]
  17108. ))
  17109. characterMakers.push(() => makeCharacter(
  17110. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17111. {
  17112. front: {
  17113. height: math.unit(1.7, "m"),
  17114. weight: math.unit(70, "kg"),
  17115. name: "Front",
  17116. image: {
  17117. source: "./media/characters/kernel/front.svg",
  17118. extra: 222 / 210,
  17119. bottom: 0.007
  17120. }
  17121. },
  17122. },
  17123. [
  17124. {
  17125. name: "Nano",
  17126. height: math.unit(17, "micrometers")
  17127. },
  17128. {
  17129. name: "Micro",
  17130. height: math.unit(1.7, "mm")
  17131. },
  17132. {
  17133. name: "Small",
  17134. height: math.unit(1.7, "cm")
  17135. },
  17136. {
  17137. name: "Normal",
  17138. height: math.unit(1.7, "m"),
  17139. default: true
  17140. },
  17141. ]
  17142. ))
  17143. characterMakers.push(() => makeCharacter(
  17144. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17145. {
  17146. front: {
  17147. height: math.unit(1.75, "meters"),
  17148. weight: math.unit(65, "kg"),
  17149. name: "Front",
  17150. image: {
  17151. source: "./media/characters/jayne-folest/front.svg",
  17152. extra: 2115 / 2007,
  17153. bottom: 0.02
  17154. }
  17155. },
  17156. back: {
  17157. height: math.unit(1.75, "meters"),
  17158. weight: math.unit(65, "kg"),
  17159. name: "Back",
  17160. image: {
  17161. source: "./media/characters/jayne-folest/back.svg",
  17162. extra: 2115 / 2007,
  17163. bottom: 0.005
  17164. }
  17165. },
  17166. frontClothed: {
  17167. height: math.unit(1.75, "meters"),
  17168. weight: math.unit(65, "kg"),
  17169. name: "Front (Clothed)",
  17170. image: {
  17171. source: "./media/characters/jayne-folest/front-clothed.svg",
  17172. extra: 2115 / 2007,
  17173. bottom: 0.035
  17174. }
  17175. },
  17176. hand: {
  17177. height: math.unit(1 / 1.260, "feet"),
  17178. name: "Hand",
  17179. image: {
  17180. source: "./media/characters/jayne-folest/hand.svg"
  17181. }
  17182. },
  17183. foot: {
  17184. height: math.unit(1 / 0.918, "feet"),
  17185. name: "Foot",
  17186. image: {
  17187. source: "./media/characters/jayne-folest/foot.svg"
  17188. }
  17189. },
  17190. },
  17191. [
  17192. {
  17193. name: "Micro",
  17194. height: math.unit(4, "cm")
  17195. },
  17196. {
  17197. name: "Normal",
  17198. height: math.unit(1.75, "meters")
  17199. },
  17200. {
  17201. name: "Macro",
  17202. height: math.unit(47.5, "meters"),
  17203. default: true
  17204. },
  17205. ]
  17206. ))
  17207. characterMakers.push(() => makeCharacter(
  17208. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17209. {
  17210. front: {
  17211. height: math.unit(180, "cm"),
  17212. weight: math.unit(70, "kg"),
  17213. name: "Front",
  17214. image: {
  17215. source: "./media/characters/algier/front.svg",
  17216. extra: 596 / 572,
  17217. bottom: 0.04
  17218. }
  17219. },
  17220. back: {
  17221. height: math.unit(180, "cm"),
  17222. weight: math.unit(70, "kg"),
  17223. name: "Back",
  17224. image: {
  17225. source: "./media/characters/algier/back.svg",
  17226. extra: 596 / 572,
  17227. bottom: 0.025
  17228. }
  17229. },
  17230. frontdressed: {
  17231. height: math.unit(180, "cm"),
  17232. weight: math.unit(150, "kg"),
  17233. name: "Front-dressed",
  17234. image: {
  17235. source: "./media/characters/algier/front-dressed.svg",
  17236. extra: 596 / 572,
  17237. bottom: 0.038
  17238. }
  17239. },
  17240. },
  17241. [
  17242. {
  17243. name: "Micro",
  17244. height: math.unit(5, "cm")
  17245. },
  17246. {
  17247. name: "Normal",
  17248. height: math.unit(180, "cm"),
  17249. default: true
  17250. },
  17251. {
  17252. name: "Macro",
  17253. height: math.unit(64, "m")
  17254. },
  17255. ]
  17256. ))
  17257. characterMakers.push(() => makeCharacter(
  17258. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17259. {
  17260. upright: {
  17261. height: math.unit(7, "feet"),
  17262. weight: math.unit(300, "lb"),
  17263. name: "Upright",
  17264. image: {
  17265. source: "./media/characters/pretzel/upright.svg",
  17266. extra: 534 / 522,
  17267. bottom: 0.065
  17268. }
  17269. },
  17270. sprawling: {
  17271. height: math.unit(3.75, "feet"),
  17272. weight: math.unit(300, "lb"),
  17273. name: "Sprawling",
  17274. image: {
  17275. source: "./media/characters/pretzel/sprawling.svg",
  17276. extra: 314 / 281,
  17277. bottom: 0.1
  17278. }
  17279. },
  17280. tongue: {
  17281. height: math.unit(2, "feet"),
  17282. name: "Tongue",
  17283. image: {
  17284. source: "./media/characters/pretzel/tongue.svg"
  17285. }
  17286. },
  17287. },
  17288. [
  17289. {
  17290. name: "Normal",
  17291. height: math.unit(7, "feet"),
  17292. default: true
  17293. },
  17294. {
  17295. name: "Oversized",
  17296. height: math.unit(15, "feet")
  17297. },
  17298. {
  17299. name: "Huge",
  17300. height: math.unit(30, "feet")
  17301. },
  17302. {
  17303. name: "Macro",
  17304. height: math.unit(250, "feet")
  17305. },
  17306. ]
  17307. ))
  17308. characterMakers.push(() => makeCharacter(
  17309. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17310. {
  17311. sideFront: {
  17312. height: math.unit(5 + 2 / 12, "feet"),
  17313. weight: math.unit(120, "lb"),
  17314. name: "Front Side",
  17315. image: {
  17316. source: "./media/characters/roxi/side-front.svg",
  17317. extra: 2924 / 2717,
  17318. bottom: 0.08
  17319. }
  17320. },
  17321. sideBack: {
  17322. height: math.unit(5 + 2 / 12, "feet"),
  17323. weight: math.unit(120, "lb"),
  17324. name: "Back Side",
  17325. image: {
  17326. source: "./media/characters/roxi/side-back.svg",
  17327. extra: 2904 / 2693,
  17328. bottom: 0.06
  17329. }
  17330. },
  17331. front: {
  17332. height: math.unit(5 + 2 / 12, "feet"),
  17333. weight: math.unit(120, "lb"),
  17334. name: "Front",
  17335. image: {
  17336. source: "./media/characters/roxi/front.svg",
  17337. extra: 2028 / 1907,
  17338. bottom: 0.01
  17339. }
  17340. },
  17341. frontAlt: {
  17342. height: math.unit(5 + 2 / 12, "feet"),
  17343. weight: math.unit(120, "lb"),
  17344. name: "Front (Alt)",
  17345. image: {
  17346. source: "./media/characters/roxi/front-alt.svg",
  17347. extra: 1828 / 1798,
  17348. bottom: 0.01
  17349. }
  17350. },
  17351. sitting: {
  17352. height: math.unit(2.8, "feet"),
  17353. weight: math.unit(120, "lb"),
  17354. name: "Sitting",
  17355. image: {
  17356. source: "./media/characters/roxi/sitting.svg",
  17357. extra: 2660 / 2462,
  17358. bottom: 0.1
  17359. }
  17360. },
  17361. },
  17362. [
  17363. {
  17364. name: "Normal",
  17365. height: math.unit(5 + 2 / 12, "feet"),
  17366. default: true
  17367. },
  17368. ]
  17369. ))
  17370. characterMakers.push(() => makeCharacter(
  17371. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17372. {
  17373. side: {
  17374. height: math.unit(55, "feet"),
  17375. weight: math.unit(153, "tons"),
  17376. name: "Side",
  17377. image: {
  17378. source: "./media/characters/shadow/side.svg",
  17379. extra: 701 / 628,
  17380. bottom: 0.02
  17381. }
  17382. },
  17383. flying: {
  17384. height: math.unit(145, "feet"),
  17385. weight: math.unit(153, "tons"),
  17386. name: "Flying",
  17387. image: {
  17388. source: "./media/characters/shadow/flying.svg"
  17389. }
  17390. },
  17391. },
  17392. [
  17393. {
  17394. name: "Normal",
  17395. height: math.unit(55, "feet"),
  17396. default: true
  17397. },
  17398. ]
  17399. ))
  17400. characterMakers.push(() => makeCharacter(
  17401. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17402. {
  17403. front: {
  17404. height: math.unit(6, "feet"),
  17405. weight: math.unit(200, "lb"),
  17406. name: "Front",
  17407. image: {
  17408. source: "./media/characters/marcie/front.svg",
  17409. extra: 960 / 876,
  17410. bottom: 58 / 1017.87
  17411. }
  17412. },
  17413. },
  17414. [
  17415. {
  17416. name: "Macro",
  17417. height: math.unit(1, "mile"),
  17418. default: true
  17419. },
  17420. ]
  17421. ))
  17422. characterMakers.push(() => makeCharacter(
  17423. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17424. {
  17425. front: {
  17426. height: math.unit(7, "feet"),
  17427. weight: math.unit(200, "lb"),
  17428. name: "Front",
  17429. image: {
  17430. source: "./media/characters/kachina/front.svg",
  17431. extra: 1290.68 / 1119,
  17432. bottom: 36.5 / 1327.18
  17433. }
  17434. },
  17435. },
  17436. [
  17437. {
  17438. name: "Normal",
  17439. height: math.unit(7, "feet"),
  17440. default: true
  17441. },
  17442. ]
  17443. ))
  17444. characterMakers.push(() => makeCharacter(
  17445. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17446. {
  17447. looking: {
  17448. height: math.unit(2, "meters"),
  17449. weight: math.unit(300, "kg"),
  17450. name: "Looking",
  17451. image: {
  17452. source: "./media/characters/kash/looking.svg",
  17453. extra: 474 / 344,
  17454. bottom: 0.03
  17455. }
  17456. },
  17457. side: {
  17458. height: math.unit(2, "meters"),
  17459. weight: math.unit(300, "kg"),
  17460. name: "Side",
  17461. image: {
  17462. source: "./media/characters/kash/side.svg",
  17463. extra: 302 / 251,
  17464. bottom: 0.03
  17465. }
  17466. },
  17467. front: {
  17468. height: math.unit(2, "meters"),
  17469. weight: math.unit(300, "kg"),
  17470. name: "Front",
  17471. image: {
  17472. source: "./media/characters/kash/front.svg",
  17473. extra: 495 / 360,
  17474. bottom: 0.015
  17475. }
  17476. },
  17477. },
  17478. [
  17479. {
  17480. name: "Normal",
  17481. height: math.unit(2, "meters"),
  17482. default: true
  17483. },
  17484. {
  17485. name: "Big",
  17486. height: math.unit(3, "meters")
  17487. },
  17488. {
  17489. name: "Large",
  17490. height: math.unit(5, "meters")
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17496. {
  17497. feeding: {
  17498. height: math.unit(6.7, "feet"),
  17499. weight: math.unit(350, "lb"),
  17500. name: "Feeding",
  17501. image: {
  17502. source: "./media/characters/lalim/feeding.svg",
  17503. }
  17504. },
  17505. },
  17506. [
  17507. {
  17508. name: "Normal",
  17509. height: math.unit(6.7, "feet"),
  17510. default: true
  17511. },
  17512. ]
  17513. ))
  17514. characterMakers.push(() => makeCharacter(
  17515. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17516. {
  17517. front: {
  17518. height: math.unit(9.5, "feet"),
  17519. weight: math.unit(600, "lb"),
  17520. name: "Front",
  17521. image: {
  17522. source: "./media/characters/de'vout/front.svg",
  17523. extra: 1443 / 1328,
  17524. bottom: 0.025
  17525. }
  17526. },
  17527. back: {
  17528. height: math.unit(9.5, "feet"),
  17529. weight: math.unit(600, "lb"),
  17530. name: "Back",
  17531. image: {
  17532. source: "./media/characters/de'vout/back.svg",
  17533. extra: 1443 / 1328
  17534. }
  17535. },
  17536. frontDressed: {
  17537. height: math.unit(9.5, "feet"),
  17538. weight: math.unit(600, "lb"),
  17539. name: "Front (Dressed",
  17540. image: {
  17541. source: "./media/characters/de'vout/front-dressed.svg",
  17542. extra: 1443 / 1328,
  17543. bottom: 0.025
  17544. }
  17545. },
  17546. backDressed: {
  17547. height: math.unit(9.5, "feet"),
  17548. weight: math.unit(600, "lb"),
  17549. name: "Back (Dressed",
  17550. image: {
  17551. source: "./media/characters/de'vout/back-dressed.svg",
  17552. extra: 1443 / 1328
  17553. }
  17554. },
  17555. },
  17556. [
  17557. {
  17558. name: "Normal",
  17559. height: math.unit(9.5, "feet"),
  17560. default: true
  17561. },
  17562. ]
  17563. ))
  17564. characterMakers.push(() => makeCharacter(
  17565. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17566. {
  17567. front: {
  17568. height: math.unit(8, "feet"),
  17569. weight: math.unit(225, "lb"),
  17570. name: "Front",
  17571. image: {
  17572. source: "./media/characters/talana/front.svg",
  17573. extra: 1410 / 1300,
  17574. bottom: 0.015
  17575. }
  17576. },
  17577. frontDressed: {
  17578. height: math.unit(8, "feet"),
  17579. weight: math.unit(225, "lb"),
  17580. name: "Front (Dressed",
  17581. image: {
  17582. source: "./media/characters/talana/front-dressed.svg",
  17583. extra: 1410 / 1300,
  17584. bottom: 0.015
  17585. }
  17586. },
  17587. },
  17588. [
  17589. {
  17590. name: "Normal",
  17591. height: math.unit(8, "feet"),
  17592. default: true
  17593. },
  17594. ]
  17595. ))
  17596. characterMakers.push(() => makeCharacter(
  17597. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17598. {
  17599. side: {
  17600. height: math.unit(7.2, "feet"),
  17601. weight: math.unit(150, "lb"),
  17602. name: "Side",
  17603. image: {
  17604. source: "./media/characters/xeauvok/side.svg",
  17605. extra: 1975 / 1523,
  17606. bottom: 0.07
  17607. }
  17608. },
  17609. },
  17610. [
  17611. {
  17612. name: "Normal",
  17613. height: math.unit(7.2, "feet"),
  17614. default: true
  17615. },
  17616. ]
  17617. ))
  17618. characterMakers.push(() => makeCharacter(
  17619. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17620. {
  17621. side: {
  17622. height: math.unit(10, "feet"),
  17623. weight: math.unit(900, "kg"),
  17624. name: "Side",
  17625. image: {
  17626. source: "./media/characters/zara/side.svg",
  17627. extra: 504 / 498
  17628. }
  17629. },
  17630. },
  17631. [
  17632. {
  17633. name: "Normal",
  17634. height: math.unit(10, "feet"),
  17635. default: true
  17636. },
  17637. ]
  17638. ))
  17639. characterMakers.push(() => makeCharacter(
  17640. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17641. {
  17642. side: {
  17643. height: math.unit(6, "feet"),
  17644. weight: math.unit(150, "lb"),
  17645. name: "Side",
  17646. image: {
  17647. source: "./media/characters/richard-dragon/side.svg",
  17648. extra: 845 / 340,
  17649. bottom: 0.017
  17650. }
  17651. },
  17652. maw: {
  17653. height: math.unit(2.97, "feet"),
  17654. name: "Maw",
  17655. image: {
  17656. source: "./media/characters/richard-dragon/maw.svg"
  17657. }
  17658. },
  17659. },
  17660. [
  17661. ]
  17662. ))
  17663. characterMakers.push(() => makeCharacter(
  17664. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17665. {
  17666. front: {
  17667. height: math.unit(4, "feet"),
  17668. weight: math.unit(100, "lb"),
  17669. name: "Front",
  17670. image: {
  17671. source: "./media/characters/richard-smeargle/front.svg",
  17672. extra: 2952 / 2820,
  17673. bottom: 0.028
  17674. }
  17675. },
  17676. },
  17677. [
  17678. {
  17679. name: "Normal",
  17680. height: math.unit(4, "feet"),
  17681. default: true
  17682. },
  17683. {
  17684. name: "Dynamax",
  17685. height: math.unit(20, "meters")
  17686. },
  17687. ]
  17688. ))
  17689. characterMakers.push(() => makeCharacter(
  17690. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17691. {
  17692. front: {
  17693. height: math.unit(6, "feet"),
  17694. weight: math.unit(110, "lb"),
  17695. name: "Front",
  17696. image: {
  17697. source: "./media/characters/klay/front.svg",
  17698. extra: 962 / 883,
  17699. bottom: 0.04
  17700. }
  17701. },
  17702. back: {
  17703. height: math.unit(6, "feet"),
  17704. weight: math.unit(110, "lb"),
  17705. name: "Back",
  17706. image: {
  17707. source: "./media/characters/klay/back.svg",
  17708. extra: 962 / 883
  17709. }
  17710. },
  17711. beans: {
  17712. height: math.unit(1.15, "feet"),
  17713. name: "Beans",
  17714. image: {
  17715. source: "./media/characters/klay/beans.svg"
  17716. }
  17717. },
  17718. },
  17719. [
  17720. {
  17721. name: "Micro",
  17722. height: math.unit(6, "inches")
  17723. },
  17724. {
  17725. name: "Mini",
  17726. height: math.unit(3, "feet")
  17727. },
  17728. {
  17729. name: "Normal",
  17730. height: math.unit(6, "feet"),
  17731. default: true
  17732. },
  17733. {
  17734. name: "Big",
  17735. height: math.unit(25, "feet")
  17736. },
  17737. {
  17738. name: "Macro",
  17739. height: math.unit(100, "feet")
  17740. },
  17741. {
  17742. name: "Megamacro",
  17743. height: math.unit(400, "feet")
  17744. },
  17745. ]
  17746. ))
  17747. characterMakers.push(() => makeCharacter(
  17748. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17749. {
  17750. front: {
  17751. height: math.unit(6, "feet"),
  17752. weight: math.unit(160, "lb"),
  17753. name: "Front",
  17754. image: {
  17755. source: "./media/characters/marcus/front.svg",
  17756. extra: 734 / 676,
  17757. bottom: 0.03
  17758. }
  17759. },
  17760. },
  17761. [
  17762. {
  17763. name: "Little",
  17764. height: math.unit(6, "feet")
  17765. },
  17766. {
  17767. name: "Normal",
  17768. height: math.unit(110, "feet"),
  17769. default: true
  17770. },
  17771. {
  17772. name: "Macro",
  17773. height: math.unit(250, "feet")
  17774. },
  17775. {
  17776. name: "Megamacro",
  17777. height: math.unit(1000, "feet")
  17778. },
  17779. ]
  17780. ))
  17781. characterMakers.push(() => makeCharacter(
  17782. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17783. {
  17784. front: {
  17785. height: math.unit(7, "feet"),
  17786. weight: math.unit(275, "lb"),
  17787. name: "Front",
  17788. image: {
  17789. source: "./media/characters/claude-delroute/front.svg",
  17790. extra: 230 / 214,
  17791. bottom: 0.007
  17792. }
  17793. },
  17794. side: {
  17795. height: math.unit(7, "feet"),
  17796. weight: math.unit(275, "lb"),
  17797. name: "Side",
  17798. image: {
  17799. source: "./media/characters/claude-delroute/side.svg",
  17800. extra: 222 / 214,
  17801. bottom: 0.01
  17802. }
  17803. },
  17804. back: {
  17805. height: math.unit(7, "feet"),
  17806. weight: math.unit(275, "lb"),
  17807. name: "Back",
  17808. image: {
  17809. source: "./media/characters/claude-delroute/back.svg",
  17810. extra: 230 / 214,
  17811. bottom: 0.015
  17812. }
  17813. },
  17814. maw: {
  17815. height: math.unit(0.6407, "meters"),
  17816. name: "Maw",
  17817. image: {
  17818. source: "./media/characters/claude-delroute/maw.svg"
  17819. }
  17820. },
  17821. },
  17822. [
  17823. {
  17824. name: "Normal",
  17825. height: math.unit(7, "feet"),
  17826. default: true
  17827. },
  17828. {
  17829. name: "Lorge",
  17830. height: math.unit(20, "feet")
  17831. },
  17832. ]
  17833. ))
  17834. characterMakers.push(() => makeCharacter(
  17835. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17836. {
  17837. front: {
  17838. height: math.unit(8 + 4 / 12, "feet"),
  17839. weight: math.unit(600, "lb"),
  17840. name: "Front",
  17841. image: {
  17842. source: "./media/characters/dragonien/front.svg",
  17843. extra: 100 / 94,
  17844. bottom: 3.3 / 103.3445
  17845. }
  17846. },
  17847. back: {
  17848. height: math.unit(8 + 4 / 12, "feet"),
  17849. weight: math.unit(600, "lb"),
  17850. name: "Back",
  17851. image: {
  17852. source: "./media/characters/dragonien/back.svg",
  17853. extra: 776 / 746,
  17854. bottom: 6.4 / 782.0616
  17855. }
  17856. },
  17857. foot: {
  17858. height: math.unit(1.54, "feet"),
  17859. name: "Foot",
  17860. image: {
  17861. source: "./media/characters/dragonien/foot.svg",
  17862. }
  17863. },
  17864. },
  17865. [
  17866. {
  17867. name: "Normal",
  17868. height: math.unit(8 + 4 / 12, "feet"),
  17869. default: true
  17870. },
  17871. {
  17872. name: "Macro",
  17873. height: math.unit(200, "feet")
  17874. },
  17875. {
  17876. name: "Megamacro",
  17877. height: math.unit(1, "mile")
  17878. },
  17879. {
  17880. name: "Gigamacro",
  17881. height: math.unit(1000, "miles")
  17882. },
  17883. ]
  17884. ))
  17885. characterMakers.push(() => makeCharacter(
  17886. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17887. {
  17888. front: {
  17889. height: math.unit(5 + 2 / 12, "feet"),
  17890. weight: math.unit(110, "lb"),
  17891. name: "Front",
  17892. image: {
  17893. source: "./media/characters/desta/front.svg",
  17894. extra: 767 / 726,
  17895. bottom: 11.7 / 779
  17896. }
  17897. },
  17898. back: {
  17899. height: math.unit(5 + 2 / 12, "feet"),
  17900. weight: math.unit(110, "lb"),
  17901. name: "Back",
  17902. image: {
  17903. source: "./media/characters/desta/back.svg",
  17904. extra: 777 / 728,
  17905. bottom: 6 / 784
  17906. }
  17907. },
  17908. frontAlt: {
  17909. height: math.unit(5 + 2 / 12, "feet"),
  17910. weight: math.unit(110, "lb"),
  17911. name: "Front",
  17912. image: {
  17913. source: "./media/characters/desta/front-alt.svg",
  17914. extra: 1482 / 1417
  17915. }
  17916. },
  17917. side: {
  17918. height: math.unit(5 + 2 / 12, "feet"),
  17919. weight: math.unit(110, "lb"),
  17920. name: "Side",
  17921. image: {
  17922. source: "./media/characters/desta/side.svg",
  17923. extra: 2579 / 2491,
  17924. bottom: 0.053
  17925. }
  17926. },
  17927. },
  17928. [
  17929. {
  17930. name: "Micro",
  17931. height: math.unit(6, "inches")
  17932. },
  17933. {
  17934. name: "Normal",
  17935. height: math.unit(5 + 2 / 12, "feet"),
  17936. default: true
  17937. },
  17938. {
  17939. name: "Macro",
  17940. height: math.unit(62, "feet")
  17941. },
  17942. {
  17943. name: "Megamacro",
  17944. height: math.unit(1800, "feet")
  17945. },
  17946. ]
  17947. ))
  17948. characterMakers.push(() => makeCharacter(
  17949. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17950. {
  17951. front: {
  17952. height: math.unit(10, "feet"),
  17953. weight: math.unit(700, "lb"),
  17954. name: "Front",
  17955. image: {
  17956. source: "./media/characters/storm-alystar/front.svg",
  17957. extra: 2112 / 1898,
  17958. bottom: 0.034
  17959. }
  17960. },
  17961. },
  17962. [
  17963. {
  17964. name: "Micro",
  17965. height: math.unit(3.5, "inches")
  17966. },
  17967. {
  17968. name: "Normal",
  17969. height: math.unit(10, "feet"),
  17970. default: true
  17971. },
  17972. {
  17973. name: "Macro",
  17974. height: math.unit(400, "feet")
  17975. },
  17976. {
  17977. name: "Deific",
  17978. height: math.unit(60, "miles")
  17979. },
  17980. ]
  17981. ))
  17982. characterMakers.push(() => makeCharacter(
  17983. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17984. {
  17985. front: {
  17986. height: math.unit(2.35, "meters"),
  17987. weight: math.unit(119, "kg"),
  17988. name: "Front",
  17989. image: {
  17990. source: "./media/characters/ilia/front.svg",
  17991. extra: 1285 / 1255,
  17992. bottom: 0.06
  17993. }
  17994. },
  17995. },
  17996. [
  17997. {
  17998. name: "Normal",
  17999. height: math.unit(2.35, "meters")
  18000. },
  18001. {
  18002. name: "Macro",
  18003. height: math.unit(140, "meters"),
  18004. default: true
  18005. },
  18006. {
  18007. name: "Megamacro",
  18008. height: math.unit(100, "miles")
  18009. },
  18010. ]
  18011. ))
  18012. characterMakers.push(() => makeCharacter(
  18013. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  18014. {
  18015. front: {
  18016. height: math.unit(6 + 5 / 12, "feet"),
  18017. weight: math.unit(190, "lb"),
  18018. name: "Front",
  18019. image: {
  18020. source: "./media/characters/kingdead/front.svg",
  18021. extra: 1228 / 1177
  18022. }
  18023. },
  18024. },
  18025. [
  18026. {
  18027. name: "Micro",
  18028. height: math.unit(7, "inches")
  18029. },
  18030. {
  18031. name: "Normal",
  18032. height: math.unit(6 + 5 / 12, "feet")
  18033. },
  18034. {
  18035. name: "Macro",
  18036. height: math.unit(150, "feet"),
  18037. default: true
  18038. },
  18039. {
  18040. name: "Megamacro",
  18041. height: math.unit(200, "miles")
  18042. },
  18043. ]
  18044. ))
  18045. characterMakers.push(() => makeCharacter(
  18046. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18047. {
  18048. front: {
  18049. height: math.unit(8, "feet"),
  18050. weight: math.unit(600, "lb"),
  18051. name: "Front",
  18052. image: {
  18053. source: "./media/characters/kyrehx/front.svg",
  18054. extra: 1195 / 1095,
  18055. bottom: 0.034
  18056. }
  18057. },
  18058. },
  18059. [
  18060. {
  18061. name: "Micro",
  18062. height: math.unit(2, "inches")
  18063. },
  18064. {
  18065. name: "Normal",
  18066. height: math.unit(8, "feet"),
  18067. default: true
  18068. },
  18069. {
  18070. name: "Macro",
  18071. height: math.unit(255, "feet")
  18072. },
  18073. ]
  18074. ))
  18075. characterMakers.push(() => makeCharacter(
  18076. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18077. {
  18078. front: {
  18079. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18080. weight: math.unit(184, "lb"),
  18081. name: "Front",
  18082. image: {
  18083. source: "./media/characters/xang/front.svg",
  18084. extra: 845 / 755
  18085. }
  18086. },
  18087. },
  18088. [
  18089. {
  18090. name: "Normal",
  18091. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18092. default: true
  18093. },
  18094. {
  18095. name: "Macro",
  18096. height: math.unit(0.935 * 146, "feet")
  18097. },
  18098. {
  18099. name: "Megamacro",
  18100. height: math.unit(0.935 * 3, "miles")
  18101. },
  18102. ]
  18103. ))
  18104. characterMakers.push(() => makeCharacter(
  18105. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18106. {
  18107. frontDressed: {
  18108. height: math.unit(5 + 7 / 12, "feet"),
  18109. weight: math.unit(140, "lb"),
  18110. name: "Front (Dressed)",
  18111. image: {
  18112. source: "./media/characters/doc-weardno/front-dressed.svg",
  18113. extra: 263 / 234
  18114. }
  18115. },
  18116. backDressed: {
  18117. height: math.unit(5 + 7 / 12, "feet"),
  18118. weight: math.unit(140, "lb"),
  18119. name: "Back (Dressed)",
  18120. image: {
  18121. source: "./media/characters/doc-weardno/back-dressed.svg",
  18122. extra: 266 / 238
  18123. }
  18124. },
  18125. front: {
  18126. height: math.unit(5 + 7 / 12, "feet"),
  18127. weight: math.unit(140, "lb"),
  18128. name: "Front",
  18129. image: {
  18130. source: "./media/characters/doc-weardno/front.svg",
  18131. extra: 254 / 233
  18132. }
  18133. },
  18134. },
  18135. [
  18136. {
  18137. name: "Micro",
  18138. height: math.unit(3, "inches")
  18139. },
  18140. {
  18141. name: "Normal",
  18142. height: math.unit(5 + 7 / 12, "feet"),
  18143. default: true
  18144. },
  18145. {
  18146. name: "Macro",
  18147. height: math.unit(25, "feet")
  18148. },
  18149. {
  18150. name: "Megamacro",
  18151. height: math.unit(2, "miles")
  18152. },
  18153. ]
  18154. ))
  18155. characterMakers.push(() => makeCharacter(
  18156. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18157. {
  18158. front: {
  18159. height: math.unit(6 + 2 / 12, "feet"),
  18160. weight: math.unit(153, "lb"),
  18161. name: "Front",
  18162. image: {
  18163. source: "./media/characters/seth-whilst/front.svg",
  18164. bottom: 0.07
  18165. }
  18166. },
  18167. },
  18168. [
  18169. {
  18170. name: "Micro",
  18171. height: math.unit(5, "inches")
  18172. },
  18173. {
  18174. name: "Normal",
  18175. height: math.unit(6 + 2 / 12, "feet"),
  18176. default: true
  18177. },
  18178. ]
  18179. ))
  18180. characterMakers.push(() => makeCharacter(
  18181. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18182. {
  18183. front: {
  18184. height: math.unit(3, "inches"),
  18185. weight: math.unit(8, "grams"),
  18186. name: "Front",
  18187. image: {
  18188. source: "./media/characters/pocket-jabari/front.svg",
  18189. extra: 1024 / 974,
  18190. bottom: 0.039
  18191. }
  18192. },
  18193. },
  18194. [
  18195. {
  18196. name: "Minimicro",
  18197. height: math.unit(8, "mm")
  18198. },
  18199. {
  18200. name: "Micro",
  18201. height: math.unit(3, "inches"),
  18202. default: true
  18203. },
  18204. {
  18205. name: "Normal",
  18206. height: math.unit(3, "feet")
  18207. },
  18208. ]
  18209. ))
  18210. characterMakers.push(() => makeCharacter(
  18211. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18212. {
  18213. front: {
  18214. height: math.unit(15, "feet"),
  18215. weight: math.unit(3280, "lb"),
  18216. name: "Front",
  18217. image: {
  18218. source: "./media/characters/sapphy/front.svg",
  18219. extra: 671 / 577,
  18220. bottom: 0.085
  18221. }
  18222. },
  18223. back: {
  18224. height: math.unit(15, "feet"),
  18225. weight: math.unit(3280, "lb"),
  18226. name: "Back",
  18227. image: {
  18228. source: "./media/characters/sapphy/back.svg",
  18229. extra: 631 / 607,
  18230. bottom: 0.045
  18231. }
  18232. },
  18233. },
  18234. [
  18235. {
  18236. name: "Normal",
  18237. height: math.unit(15, "feet")
  18238. },
  18239. {
  18240. name: "Casual Macro",
  18241. height: math.unit(120, "feet")
  18242. },
  18243. {
  18244. name: "Macro",
  18245. height: math.unit(2150, "feet"),
  18246. default: true
  18247. },
  18248. {
  18249. name: "Megamacro",
  18250. height: math.unit(8, "miles")
  18251. },
  18252. {
  18253. name: "Galaxy Mom",
  18254. height: math.unit(6, "megalightyears")
  18255. },
  18256. ]
  18257. ))
  18258. characterMakers.push(() => makeCharacter(
  18259. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18260. {
  18261. front: {
  18262. height: math.unit(6, "feet"),
  18263. weight: math.unit(170, "lb"),
  18264. name: "Front",
  18265. image: {
  18266. source: "./media/characters/kiro/front.svg",
  18267. extra: 1064 / 1012,
  18268. bottom: 0.052
  18269. }
  18270. },
  18271. },
  18272. [
  18273. {
  18274. name: "Micro",
  18275. height: math.unit(6, "inches")
  18276. },
  18277. {
  18278. name: "Normal",
  18279. height: math.unit(6, "feet"),
  18280. default: true
  18281. },
  18282. {
  18283. name: "Macro",
  18284. height: math.unit(72, "feet")
  18285. },
  18286. ]
  18287. ))
  18288. characterMakers.push(() => makeCharacter(
  18289. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18290. {
  18291. front: {
  18292. height: math.unit(5 + 9 / 12, "feet"),
  18293. weight: math.unit(175, "lb"),
  18294. name: "Front",
  18295. image: {
  18296. source: "./media/characters/irishfox/front.svg",
  18297. extra: 1912 / 1680,
  18298. bottom: 0.02
  18299. }
  18300. },
  18301. },
  18302. [
  18303. {
  18304. name: "Nano",
  18305. height: math.unit(1, "mm")
  18306. },
  18307. {
  18308. name: "Micro",
  18309. height: math.unit(2, "inches")
  18310. },
  18311. {
  18312. name: "Normal",
  18313. height: math.unit(5 + 9 / 12, "feet"),
  18314. default: true
  18315. },
  18316. {
  18317. name: "Macro",
  18318. height: math.unit(45, "feet")
  18319. },
  18320. ]
  18321. ))
  18322. characterMakers.push(() => makeCharacter(
  18323. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18324. {
  18325. front: {
  18326. height: math.unit(6 + 1 / 12, "feet"),
  18327. weight: math.unit(75, "lb"),
  18328. name: "Front",
  18329. image: {
  18330. source: "./media/characters/aronai-sieyes/front.svg",
  18331. extra: 1556 / 1480,
  18332. bottom: 0.015
  18333. }
  18334. },
  18335. side: {
  18336. height: math.unit(6 + 1 / 12, "feet"),
  18337. weight: math.unit(75, "lb"),
  18338. name: "Side",
  18339. image: {
  18340. source: "./media/characters/aronai-sieyes/side.svg",
  18341. extra: 1433 / 1390,
  18342. bottom: 0.0393
  18343. }
  18344. },
  18345. back: {
  18346. height: math.unit(6 + 1 / 12, "feet"),
  18347. weight: math.unit(75, "lb"),
  18348. name: "Back",
  18349. image: {
  18350. source: "./media/characters/aronai-sieyes/back.svg",
  18351. extra: 1544 / 1494,
  18352. bottom: 0.02
  18353. }
  18354. },
  18355. frontClothed: {
  18356. height: math.unit(6 + 1 / 12, "feet"),
  18357. weight: math.unit(75, "lb"),
  18358. name: "Front (Clothed)",
  18359. image: {
  18360. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18361. extra: 1582 / 1527
  18362. }
  18363. },
  18364. feral: {
  18365. height: math.unit(18, "feet"),
  18366. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18367. name: "Feral",
  18368. image: {
  18369. source: "./media/characters/aronai-sieyes/feral.svg",
  18370. extra: 1530 / 1240,
  18371. bottom: 0.035
  18372. }
  18373. },
  18374. },
  18375. [
  18376. {
  18377. name: "Micro",
  18378. height: math.unit(2, "inches")
  18379. },
  18380. {
  18381. name: "Normal",
  18382. height: math.unit(6 + 1 / 12, "feet"),
  18383. default: true
  18384. }
  18385. ]
  18386. ))
  18387. characterMakers.push(() => makeCharacter(
  18388. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18389. {
  18390. front: {
  18391. height: math.unit(12, "feet"),
  18392. weight: math.unit(410, "kg"),
  18393. name: "Front",
  18394. image: {
  18395. source: "./media/characters/xuna/front.svg",
  18396. extra: 2184 / 1980
  18397. }
  18398. },
  18399. side: {
  18400. height: math.unit(12, "feet"),
  18401. weight: math.unit(410, "kg"),
  18402. name: "Side",
  18403. image: {
  18404. source: "./media/characters/xuna/side.svg",
  18405. extra: 2184 / 1980
  18406. }
  18407. },
  18408. back: {
  18409. height: math.unit(12, "feet"),
  18410. weight: math.unit(410, "kg"),
  18411. name: "Back",
  18412. image: {
  18413. source: "./media/characters/xuna/back.svg",
  18414. extra: 2184 / 1980
  18415. }
  18416. },
  18417. },
  18418. [
  18419. {
  18420. name: "Nano glow",
  18421. height: math.unit(10, "nm")
  18422. },
  18423. {
  18424. name: "Micro floof",
  18425. height: math.unit(0.3, "m")
  18426. },
  18427. {
  18428. name: "Huggable softy boi",
  18429. height: math.unit(3.6576, "m"),
  18430. default: true
  18431. },
  18432. {
  18433. name: "Admirable floof",
  18434. height: math.unit(80, "meters")
  18435. },
  18436. {
  18437. name: "Gentle macro",
  18438. height: math.unit(300, "meters")
  18439. },
  18440. {
  18441. name: "Very careful floof",
  18442. height: math.unit(3200, "meters")
  18443. },
  18444. {
  18445. name: "The mega floof",
  18446. height: math.unit(36000, "meters")
  18447. },
  18448. {
  18449. name: "Giga-fur-Wicker",
  18450. height: math.unit(4800000, "meters")
  18451. },
  18452. {
  18453. name: "Licky world",
  18454. height: math.unit(20000000, "meters")
  18455. },
  18456. {
  18457. name: "Floofy cyan sun",
  18458. height: math.unit(1500000000, "meters")
  18459. },
  18460. {
  18461. name: "Milky Wicker",
  18462. height: math.unit(1000000000000000000000, "meters")
  18463. },
  18464. {
  18465. name: "The observing Wicker",
  18466. height: math.unit(999999999999999999999999999, "meters")
  18467. },
  18468. ]
  18469. ))
  18470. characterMakers.push(() => makeCharacter(
  18471. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18472. {
  18473. front: {
  18474. height: math.unit(5 + 9 / 12, "feet"),
  18475. weight: math.unit(150, "lb"),
  18476. name: "Front",
  18477. image: {
  18478. source: "./media/characters/arokha-sieyes/front.svg",
  18479. extra: 1425 / 1284,
  18480. bottom: 0.05
  18481. }
  18482. },
  18483. },
  18484. [
  18485. {
  18486. name: "Normal",
  18487. height: math.unit(5 + 9 / 12, "feet")
  18488. },
  18489. {
  18490. name: "Macro",
  18491. height: math.unit(30, "meters"),
  18492. default: true
  18493. },
  18494. ]
  18495. ))
  18496. characterMakers.push(() => makeCharacter(
  18497. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18498. {
  18499. front: {
  18500. height: math.unit(6, "feet"),
  18501. weight: math.unit(180, "lb"),
  18502. name: "Front",
  18503. image: {
  18504. source: "./media/characters/arokh-sieyes/front.svg",
  18505. extra: 1830 / 1769,
  18506. bottom: 0.01
  18507. }
  18508. },
  18509. },
  18510. [
  18511. {
  18512. name: "Normal",
  18513. height: math.unit(6, "feet")
  18514. },
  18515. {
  18516. name: "Macro",
  18517. height: math.unit(30, "meters"),
  18518. default: true
  18519. },
  18520. ]
  18521. ))
  18522. characterMakers.push(() => makeCharacter(
  18523. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18524. {
  18525. side: {
  18526. height: math.unit(13 + 1 / 12, "feet"),
  18527. weight: math.unit(8.5, "tonnes"),
  18528. name: "Side",
  18529. image: {
  18530. source: "./media/characters/goldeneye/side.svg",
  18531. extra: 1182 / 778,
  18532. bottom: 0.067
  18533. }
  18534. },
  18535. paw: {
  18536. height: math.unit(3.4, "feet"),
  18537. name: "Paw",
  18538. image: {
  18539. source: "./media/characters/goldeneye/paw.svg"
  18540. }
  18541. },
  18542. },
  18543. [
  18544. {
  18545. name: "Normal",
  18546. height: math.unit(13 + 1 / 12, "feet"),
  18547. default: true
  18548. },
  18549. ]
  18550. ))
  18551. characterMakers.push(() => makeCharacter(
  18552. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18553. {
  18554. front: {
  18555. height: math.unit(6 + 1 / 12, "feet"),
  18556. weight: math.unit(210, "lb"),
  18557. name: "Front",
  18558. image: {
  18559. source: "./media/characters/leonardo-lycheborne/front.svg",
  18560. extra: 390 / 365,
  18561. bottom: 0.032
  18562. }
  18563. },
  18564. side: {
  18565. height: math.unit(6 + 1 / 12, "feet"),
  18566. weight: math.unit(210, "lb"),
  18567. name: "Side",
  18568. image: {
  18569. source: "./media/characters/leonardo-lycheborne/side.svg",
  18570. extra: 390 / 365,
  18571. bottom: 0.005
  18572. }
  18573. },
  18574. back: {
  18575. height: math.unit(6 + 1 / 12, "feet"),
  18576. weight: math.unit(210, "lb"),
  18577. name: "Back",
  18578. image: {
  18579. source: "./media/characters/leonardo-lycheborne/back.svg",
  18580. extra: 392 / 366,
  18581. bottom: 0.01
  18582. }
  18583. },
  18584. hand: {
  18585. height: math.unit(1.08, "feet"),
  18586. name: "Hand",
  18587. image: {
  18588. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18589. }
  18590. },
  18591. foot: {
  18592. height: math.unit(1.32, "feet"),
  18593. name: "Foot",
  18594. image: {
  18595. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18596. }
  18597. },
  18598. were: {
  18599. height: math.unit(20, "feet"),
  18600. weight: math.unit(7800, "lb"),
  18601. name: "Were",
  18602. image: {
  18603. source: "./media/characters/leonardo-lycheborne/were.svg",
  18604. extra: 308 / 294,
  18605. bottom: 0.048
  18606. }
  18607. },
  18608. feral: {
  18609. height: math.unit(7.5, "feet"),
  18610. weight: math.unit(600, "lb"),
  18611. name: "Feral",
  18612. image: {
  18613. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18614. extra: 210 / 186,
  18615. bottom: 0.108
  18616. }
  18617. },
  18618. taur: {
  18619. height: math.unit(11, "feet"),
  18620. weight: math.unit(3300, "lb"),
  18621. name: "Taur",
  18622. image: {
  18623. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18624. extra: 320 / 303,
  18625. bottom: 0.025
  18626. }
  18627. },
  18628. barghest: {
  18629. height: math.unit(11, "feet"),
  18630. weight: math.unit(1300, "lb"),
  18631. name: "Barghest",
  18632. image: {
  18633. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18634. extra: 323 / 302,
  18635. bottom: 0.027
  18636. }
  18637. },
  18638. dick: {
  18639. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18640. name: "Dick",
  18641. image: {
  18642. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18643. }
  18644. },
  18645. dickWere: {
  18646. height: math.unit((20) / 3.8, "feet"),
  18647. name: "Dick (Were)",
  18648. image: {
  18649. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18650. }
  18651. },
  18652. },
  18653. [
  18654. {
  18655. name: "Normal",
  18656. height: math.unit(6 + 1 / 12, "feet"),
  18657. default: true
  18658. },
  18659. ]
  18660. ))
  18661. characterMakers.push(() => makeCharacter(
  18662. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18663. {
  18664. front: {
  18665. height: math.unit(10, "feet"),
  18666. weight: math.unit(350, "lb"),
  18667. name: "Front",
  18668. image: {
  18669. source: "./media/characters/jet/front.svg",
  18670. extra: 2050 / 1980,
  18671. bottom: 0.013
  18672. }
  18673. },
  18674. back: {
  18675. height: math.unit(10, "feet"),
  18676. weight: math.unit(350, "lb"),
  18677. name: "Back",
  18678. image: {
  18679. source: "./media/characters/jet/back.svg",
  18680. extra: 2050 / 1980,
  18681. bottom: 0.013
  18682. }
  18683. },
  18684. },
  18685. [
  18686. {
  18687. name: "Micro",
  18688. height: math.unit(6, "inches")
  18689. },
  18690. {
  18691. name: "Normal",
  18692. height: math.unit(10, "feet"),
  18693. default: true
  18694. },
  18695. {
  18696. name: "Macro",
  18697. height: math.unit(100, "feet")
  18698. },
  18699. ]
  18700. ))
  18701. characterMakers.push(() => makeCharacter(
  18702. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18703. {
  18704. front: {
  18705. height: math.unit(15, "feet"),
  18706. weight: math.unit(2800, "lb"),
  18707. name: "Front",
  18708. image: {
  18709. source: "./media/characters/tanarath/front.svg",
  18710. extra: 2392 / 2220,
  18711. bottom: 0.03
  18712. }
  18713. },
  18714. back: {
  18715. height: math.unit(15, "feet"),
  18716. weight: math.unit(2800, "lb"),
  18717. name: "Back",
  18718. image: {
  18719. source: "./media/characters/tanarath/back.svg",
  18720. extra: 2392 / 2220,
  18721. bottom: 0.03
  18722. }
  18723. },
  18724. },
  18725. [
  18726. {
  18727. name: "Normal",
  18728. height: math.unit(15, "feet"),
  18729. default: true
  18730. },
  18731. ]
  18732. ))
  18733. characterMakers.push(() => makeCharacter(
  18734. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18735. {
  18736. front: {
  18737. height: math.unit(7 + 1 / 12, "feet"),
  18738. weight: math.unit(175, "lb"),
  18739. name: "Front",
  18740. image: {
  18741. source: "./media/characters/patty-cattybatty/front.svg",
  18742. extra: 908 / 874,
  18743. bottom: 0.025
  18744. }
  18745. },
  18746. },
  18747. [
  18748. {
  18749. name: "Micro",
  18750. height: math.unit(1, "inch")
  18751. },
  18752. {
  18753. name: "Normal",
  18754. height: math.unit(7 + 1 / 12, "feet")
  18755. },
  18756. {
  18757. name: "Mini Macro",
  18758. height: math.unit(155, "feet")
  18759. },
  18760. {
  18761. name: "Macro",
  18762. height: math.unit(1077, "feet")
  18763. },
  18764. {
  18765. name: "Mega Macro",
  18766. height: math.unit(47650, "feet"),
  18767. default: true
  18768. },
  18769. {
  18770. name: "Giga Macro",
  18771. height: math.unit(440, "miles")
  18772. },
  18773. {
  18774. name: "Tera Macro",
  18775. height: math.unit(8700, "miles")
  18776. },
  18777. {
  18778. name: "Planetary Macro",
  18779. height: math.unit(32700, "miles")
  18780. },
  18781. {
  18782. name: "Solar Macro",
  18783. height: math.unit(550000, "miles")
  18784. },
  18785. {
  18786. name: "Celestial Macro",
  18787. height: math.unit(2.5, "AU")
  18788. },
  18789. ]
  18790. ))
  18791. characterMakers.push(() => makeCharacter(
  18792. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18793. {
  18794. front: {
  18795. height: math.unit(4 + 5 / 12, "feet"),
  18796. weight: math.unit(90, "lb"),
  18797. name: "Front",
  18798. image: {
  18799. source: "./media/characters/cappu/front.svg",
  18800. extra: 1247 / 1152,
  18801. bottom: 0.012
  18802. }
  18803. },
  18804. },
  18805. [
  18806. {
  18807. name: "Normal",
  18808. height: math.unit(4 + 5 / 12, "feet"),
  18809. default: true
  18810. },
  18811. ]
  18812. ))
  18813. characterMakers.push(() => makeCharacter(
  18814. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18815. {
  18816. frontDressed: {
  18817. height: math.unit(70, "cm"),
  18818. weight: math.unit(6, "kg"),
  18819. name: "Front (Dressed)",
  18820. image: {
  18821. source: "./media/characters/sebi/front-dressed.svg",
  18822. extra: 713.5 / 686.5,
  18823. bottom: 0.003
  18824. }
  18825. },
  18826. front: {
  18827. height: math.unit(70, "cm"),
  18828. weight: math.unit(5, "kg"),
  18829. name: "Front",
  18830. image: {
  18831. source: "./media/characters/sebi/front.svg",
  18832. extra: 713.5 / 686.5,
  18833. bottom: 0.003
  18834. }
  18835. }
  18836. },
  18837. [
  18838. {
  18839. name: "Normal",
  18840. height: math.unit(70, "cm"),
  18841. default: true
  18842. },
  18843. {
  18844. name: "Macro",
  18845. height: math.unit(8, "meters")
  18846. },
  18847. ]
  18848. ))
  18849. characterMakers.push(() => makeCharacter(
  18850. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18851. {
  18852. front: {
  18853. height: math.unit(6, "feet"),
  18854. weight: math.unit(150, "lb"),
  18855. name: "Front",
  18856. image: {
  18857. source: "./media/characters/typhek/front.svg",
  18858. extra: 1948 / 1929,
  18859. bottom: 0.025
  18860. }
  18861. },
  18862. side: {
  18863. height: math.unit(6, "feet"),
  18864. weight: math.unit(150, "lb"),
  18865. name: "Side",
  18866. image: {
  18867. source: "./media/characters/typhek/side.svg",
  18868. extra: 2034 / 2010,
  18869. bottom: 0.003
  18870. }
  18871. },
  18872. back: {
  18873. height: math.unit(6, "feet"),
  18874. weight: math.unit(150, "lb"),
  18875. name: "Back",
  18876. image: {
  18877. source: "./media/characters/typhek/back.svg",
  18878. extra: 2005 / 1978,
  18879. bottom: 0.004
  18880. }
  18881. },
  18882. palm: {
  18883. height: math.unit(1.2, "feet"),
  18884. name: "Palm",
  18885. image: {
  18886. source: "./media/characters/typhek/palm.svg"
  18887. }
  18888. },
  18889. fist: {
  18890. height: math.unit(1.1, "feet"),
  18891. name: "Fist",
  18892. image: {
  18893. source: "./media/characters/typhek/fist.svg"
  18894. }
  18895. },
  18896. foot: {
  18897. height: math.unit(1.57, "feet"),
  18898. name: "Foot",
  18899. image: {
  18900. source: "./media/characters/typhek/foot.svg"
  18901. }
  18902. },
  18903. sole: {
  18904. height: math.unit(2.05, "feet"),
  18905. name: "Sole",
  18906. image: {
  18907. source: "./media/characters/typhek/sole.svg"
  18908. }
  18909. },
  18910. },
  18911. [
  18912. {
  18913. name: "Macro",
  18914. height: math.unit(40, "stories"),
  18915. default: true
  18916. },
  18917. {
  18918. name: "Megamacro",
  18919. height: math.unit(1, "mile")
  18920. },
  18921. {
  18922. name: "Gigamacro",
  18923. height: math.unit(4000, "solarradii")
  18924. },
  18925. {
  18926. name: "Universal",
  18927. height: math.unit(1.1, "universes")
  18928. }
  18929. ]
  18930. ))
  18931. characterMakers.push(() => makeCharacter(
  18932. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18933. {
  18934. side: {
  18935. height: math.unit(5 + 7 / 12, "feet"),
  18936. weight: math.unit(150, "lb"),
  18937. name: "Side",
  18938. image: {
  18939. source: "./media/characters/kassy/side.svg",
  18940. extra: 1280 / 1225,
  18941. bottom: 0.002
  18942. }
  18943. },
  18944. front: {
  18945. height: math.unit(5 + 7 / 12, "feet"),
  18946. weight: math.unit(150, "lb"),
  18947. name: "Front",
  18948. image: {
  18949. source: "./media/characters/kassy/front.svg",
  18950. extra: 1280 / 1225,
  18951. bottom: 0.025
  18952. }
  18953. },
  18954. back: {
  18955. height: math.unit(5 + 7 / 12, "feet"),
  18956. weight: math.unit(150, "lb"),
  18957. name: "Back",
  18958. image: {
  18959. source: "./media/characters/kassy/back.svg",
  18960. extra: 1280 / 1225,
  18961. bottom: 0.002
  18962. }
  18963. },
  18964. foot: {
  18965. height: math.unit(1.266, "feet"),
  18966. name: "Foot",
  18967. image: {
  18968. source: "./media/characters/kassy/foot.svg"
  18969. }
  18970. },
  18971. },
  18972. [
  18973. {
  18974. name: "Normal",
  18975. height: math.unit(5 + 7 / 12, "feet")
  18976. },
  18977. {
  18978. name: "Macro",
  18979. height: math.unit(137, "feet"),
  18980. default: true
  18981. },
  18982. {
  18983. name: "Megamacro",
  18984. height: math.unit(1, "mile")
  18985. },
  18986. ]
  18987. ))
  18988. characterMakers.push(() => makeCharacter(
  18989. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18990. {
  18991. front: {
  18992. height: math.unit(6 + 1 / 12, "feet"),
  18993. weight: math.unit(200, "lb"),
  18994. name: "Front",
  18995. image: {
  18996. source: "./media/characters/neil/front.svg",
  18997. extra: 1326 / 1250,
  18998. bottom: 0.023
  18999. }
  19000. },
  19001. },
  19002. [
  19003. {
  19004. name: "Normal",
  19005. height: math.unit(6 + 1 / 12, "feet"),
  19006. default: true
  19007. },
  19008. {
  19009. name: "Macro",
  19010. height: math.unit(200, "feet")
  19011. },
  19012. ]
  19013. ))
  19014. characterMakers.push(() => makeCharacter(
  19015. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  19016. {
  19017. front: {
  19018. height: math.unit(5 + 9 / 12, "feet"),
  19019. weight: math.unit(190, "lb"),
  19020. name: "Front",
  19021. image: {
  19022. source: "./media/characters/atticus/front.svg",
  19023. extra: 2934 / 2785,
  19024. bottom: 0.025
  19025. }
  19026. },
  19027. },
  19028. [
  19029. {
  19030. name: "Normal",
  19031. height: math.unit(5 + 9 / 12, "feet"),
  19032. default: true
  19033. },
  19034. {
  19035. name: "Macro",
  19036. height: math.unit(180, "feet")
  19037. },
  19038. ]
  19039. ))
  19040. characterMakers.push(() => makeCharacter(
  19041. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19042. {
  19043. side: {
  19044. height: math.unit(9, "feet"),
  19045. weight: math.unit(650, "lb"),
  19046. name: "Side",
  19047. image: {
  19048. source: "./media/characters/milo/side.svg",
  19049. extra: 2644 / 2310,
  19050. bottom: 0.032
  19051. }
  19052. },
  19053. },
  19054. [
  19055. {
  19056. name: "Normal",
  19057. height: math.unit(9, "feet"),
  19058. default: true
  19059. },
  19060. {
  19061. name: "Macro",
  19062. height: math.unit(300, "feet")
  19063. },
  19064. ]
  19065. ))
  19066. characterMakers.push(() => makeCharacter(
  19067. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19068. {
  19069. side: {
  19070. height: math.unit(8, "meters"),
  19071. weight: math.unit(90000, "kg"),
  19072. name: "Side",
  19073. image: {
  19074. source: "./media/characters/ijzer/side.svg",
  19075. extra: 2756 / 1600,
  19076. bottom: 0.01
  19077. }
  19078. },
  19079. },
  19080. [
  19081. {
  19082. name: "Small",
  19083. height: math.unit(3, "meters")
  19084. },
  19085. {
  19086. name: "Normal",
  19087. height: math.unit(8, "meters"),
  19088. default: true
  19089. },
  19090. {
  19091. name: "Normal+",
  19092. height: math.unit(10, "meters")
  19093. },
  19094. {
  19095. name: "Bigger",
  19096. height: math.unit(24, "meters")
  19097. },
  19098. {
  19099. name: "Huge",
  19100. height: math.unit(80, "meters")
  19101. },
  19102. ]
  19103. ))
  19104. characterMakers.push(() => makeCharacter(
  19105. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19106. {
  19107. front: {
  19108. height: math.unit(6 + 2 / 12, "feet"),
  19109. weight: math.unit(153, "lb"),
  19110. name: "Front",
  19111. image: {
  19112. source: "./media/characters/luca-cervicum/front.svg",
  19113. extra: 370 / 327,
  19114. bottom: 0.015
  19115. }
  19116. },
  19117. back: {
  19118. height: math.unit(6 + 2 / 12, "feet"),
  19119. weight: math.unit(153, "lb"),
  19120. name: "Back",
  19121. image: {
  19122. source: "./media/characters/luca-cervicum/back.svg",
  19123. extra: 367 / 333,
  19124. bottom: 0.005
  19125. }
  19126. },
  19127. frontGear: {
  19128. height: math.unit(6 + 2 / 12, "feet"),
  19129. weight: math.unit(173, "lb"),
  19130. name: "Front (Gear)",
  19131. image: {
  19132. source: "./media/characters/luca-cervicum/front-gear.svg",
  19133. extra: 377 / 333,
  19134. bottom: 0.006
  19135. }
  19136. },
  19137. },
  19138. [
  19139. {
  19140. name: "Normal",
  19141. height: math.unit(6 + 2 / 12, "feet"),
  19142. default: true
  19143. },
  19144. ]
  19145. ))
  19146. characterMakers.push(() => makeCharacter(
  19147. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19148. {
  19149. front: {
  19150. height: math.unit(6 + 1 / 12, "feet"),
  19151. weight: math.unit(304, "lb"),
  19152. name: "Front",
  19153. image: {
  19154. source: "./media/characters/oliver/front.svg",
  19155. extra: 157 / 143,
  19156. bottom: 0.08
  19157. }
  19158. },
  19159. },
  19160. [
  19161. {
  19162. name: "Normal",
  19163. height: math.unit(6 + 1 / 12, "feet"),
  19164. default: true
  19165. },
  19166. ]
  19167. ))
  19168. characterMakers.push(() => makeCharacter(
  19169. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19170. {
  19171. front: {
  19172. height: math.unit(5 + 7 / 12, "feet"),
  19173. weight: math.unit(140, "lb"),
  19174. name: "Front",
  19175. image: {
  19176. source: "./media/characters/shane/front.svg",
  19177. extra: 304 / 289,
  19178. bottom: 0.005
  19179. }
  19180. },
  19181. },
  19182. [
  19183. {
  19184. name: "Normal",
  19185. height: math.unit(5 + 7 / 12, "feet"),
  19186. default: true
  19187. },
  19188. ]
  19189. ))
  19190. characterMakers.push(() => makeCharacter(
  19191. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19192. {
  19193. front: {
  19194. height: math.unit(5 + 9 / 12, "feet"),
  19195. weight: math.unit(178, "lb"),
  19196. name: "Front",
  19197. image: {
  19198. source: "./media/characters/shin/front.svg",
  19199. extra: 159 / 151,
  19200. bottom: 0.015
  19201. }
  19202. },
  19203. },
  19204. [
  19205. {
  19206. name: "Normal",
  19207. height: math.unit(5 + 9 / 12, "feet"),
  19208. default: true
  19209. },
  19210. ]
  19211. ))
  19212. characterMakers.push(() => makeCharacter(
  19213. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19214. {
  19215. front: {
  19216. height: math.unit(5 + 10 / 12, "feet"),
  19217. weight: math.unit(168, "lb"),
  19218. name: "Front",
  19219. image: {
  19220. source: "./media/characters/xerxes/front.svg",
  19221. extra: 282 / 260,
  19222. bottom: 0.045
  19223. }
  19224. },
  19225. },
  19226. [
  19227. {
  19228. name: "Normal",
  19229. height: math.unit(5 + 10 / 12, "feet"),
  19230. default: true
  19231. },
  19232. ]
  19233. ))
  19234. characterMakers.push(() => makeCharacter(
  19235. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19236. {
  19237. front: {
  19238. height: math.unit(6 + 7 / 12, "feet"),
  19239. weight: math.unit(208, "lb"),
  19240. name: "Front",
  19241. image: {
  19242. source: "./media/characters/chaska/front.svg",
  19243. extra: 332 / 319,
  19244. bottom: 0.015
  19245. }
  19246. },
  19247. },
  19248. [
  19249. {
  19250. name: "Normal",
  19251. height: math.unit(6 + 7 / 12, "feet"),
  19252. default: true
  19253. },
  19254. ]
  19255. ))
  19256. characterMakers.push(() => makeCharacter(
  19257. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19258. {
  19259. front: {
  19260. height: math.unit(5 + 8 / 12, "feet"),
  19261. weight: math.unit(208, "lb"),
  19262. name: "Front",
  19263. image: {
  19264. source: "./media/characters/enuk/front.svg",
  19265. extra: 437 / 406,
  19266. bottom: 0.02
  19267. }
  19268. },
  19269. },
  19270. [
  19271. {
  19272. name: "Normal",
  19273. height: math.unit(5 + 8 / 12, "feet"),
  19274. default: true
  19275. },
  19276. ]
  19277. ))
  19278. characterMakers.push(() => makeCharacter(
  19279. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19280. {
  19281. front: {
  19282. height: math.unit(5 + 10 / 12, "feet"),
  19283. weight: math.unit(252, "lb"),
  19284. name: "Front",
  19285. image: {
  19286. source: "./media/characters/bruun/front.svg",
  19287. extra: 197 / 187,
  19288. bottom: 0.012
  19289. }
  19290. },
  19291. },
  19292. [
  19293. {
  19294. name: "Normal",
  19295. height: math.unit(5 + 10 / 12, "feet"),
  19296. default: true
  19297. },
  19298. ]
  19299. ))
  19300. characterMakers.push(() => makeCharacter(
  19301. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19302. {
  19303. front: {
  19304. height: math.unit(6 + 10 / 12, "feet"),
  19305. weight: math.unit(255, "lb"),
  19306. name: "Front",
  19307. image: {
  19308. source: "./media/characters/alexeev/front.svg",
  19309. extra: 213 / 200,
  19310. bottom: 0.05
  19311. }
  19312. },
  19313. },
  19314. [
  19315. {
  19316. name: "Normal",
  19317. height: math.unit(6 + 10 / 12, "feet"),
  19318. default: true
  19319. },
  19320. ]
  19321. ))
  19322. characterMakers.push(() => makeCharacter(
  19323. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19324. {
  19325. front: {
  19326. height: math.unit(2 + 8 / 12, "feet"),
  19327. weight: math.unit(22, "lb"),
  19328. name: "Front",
  19329. image: {
  19330. source: "./media/characters/evelyn/front.svg",
  19331. extra: 208 / 180
  19332. }
  19333. },
  19334. },
  19335. [
  19336. {
  19337. name: "Normal",
  19338. height: math.unit(2 + 8 / 12, "feet"),
  19339. default: true
  19340. },
  19341. ]
  19342. ))
  19343. characterMakers.push(() => makeCharacter(
  19344. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19345. {
  19346. front: {
  19347. height: math.unit(5 + 9 / 12, "feet"),
  19348. weight: math.unit(139, "lb"),
  19349. name: "Front",
  19350. image: {
  19351. source: "./media/characters/inca/front.svg",
  19352. extra: 294 / 291,
  19353. bottom: 0.03
  19354. }
  19355. },
  19356. },
  19357. [
  19358. {
  19359. name: "Normal",
  19360. height: math.unit(5 + 9 / 12, "feet"),
  19361. default: true
  19362. },
  19363. ]
  19364. ))
  19365. characterMakers.push(() => makeCharacter(
  19366. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19367. {
  19368. front: {
  19369. height: math.unit(5 + 1 / 12, "feet"),
  19370. weight: math.unit(84, "lb"),
  19371. name: "Front",
  19372. image: {
  19373. source: "./media/characters/magdalene/front.svg",
  19374. extra: 293 / 273
  19375. }
  19376. },
  19377. },
  19378. [
  19379. {
  19380. name: "Normal",
  19381. height: math.unit(5 + 1 / 12, "feet"),
  19382. default: true
  19383. },
  19384. ]
  19385. ))
  19386. characterMakers.push(() => makeCharacter(
  19387. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19388. {
  19389. front: {
  19390. height: math.unit(6 + 3 / 12, "feet"),
  19391. weight: math.unit(185, "lb"),
  19392. name: "Front",
  19393. image: {
  19394. source: "./media/characters/mera/front.svg",
  19395. extra: 291 / 277,
  19396. bottom: 0.03
  19397. }
  19398. },
  19399. },
  19400. [
  19401. {
  19402. name: "Normal",
  19403. height: math.unit(6 + 3 / 12, "feet"),
  19404. default: true
  19405. },
  19406. ]
  19407. ))
  19408. characterMakers.push(() => makeCharacter(
  19409. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19410. {
  19411. front: {
  19412. height: math.unit(6 + 7 / 12, "feet"),
  19413. weight: math.unit(160, "lb"),
  19414. name: "Front",
  19415. image: {
  19416. source: "./media/characters/ceres/front.svg",
  19417. extra: 1023 / 950,
  19418. bottom: 0.027
  19419. }
  19420. },
  19421. back: {
  19422. height: math.unit(6 + 7 / 12, "feet"),
  19423. weight: math.unit(160, "lb"),
  19424. name: "Back",
  19425. image: {
  19426. source: "./media/characters/ceres/back.svg",
  19427. extra: 1023 / 950
  19428. }
  19429. },
  19430. },
  19431. [
  19432. {
  19433. name: "Normal",
  19434. height: math.unit(6 + 7 / 12, "feet"),
  19435. default: true
  19436. },
  19437. ]
  19438. ))
  19439. characterMakers.push(() => makeCharacter(
  19440. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19441. {
  19442. front: {
  19443. height: math.unit(5 + 10 / 12, "feet"),
  19444. weight: math.unit(150, "lb"),
  19445. name: "Front",
  19446. image: {
  19447. source: "./media/characters/kris/front.svg",
  19448. extra: 885 / 803,
  19449. bottom: 0.03
  19450. }
  19451. },
  19452. },
  19453. [
  19454. {
  19455. name: "Normal",
  19456. height: math.unit(5 + 10 / 12, "feet"),
  19457. default: true
  19458. },
  19459. ]
  19460. ))
  19461. characterMakers.push(() => makeCharacter(
  19462. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19463. {
  19464. front: {
  19465. height: math.unit(7, "feet"),
  19466. weight: math.unit(120, "kg"),
  19467. name: "Front",
  19468. image: {
  19469. source: "./media/characters/taluthus/front.svg",
  19470. extra: 903 / 833,
  19471. bottom: 0.015
  19472. }
  19473. },
  19474. },
  19475. [
  19476. {
  19477. name: "Normal",
  19478. height: math.unit(7, "feet"),
  19479. default: true
  19480. },
  19481. {
  19482. name: "Macro",
  19483. height: math.unit(300, "feet")
  19484. },
  19485. ]
  19486. ))
  19487. characterMakers.push(() => makeCharacter(
  19488. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19489. {
  19490. front: {
  19491. height: math.unit(5 + 9 / 12, "feet"),
  19492. weight: math.unit(145, "lb"),
  19493. name: "Front",
  19494. image: {
  19495. source: "./media/characters/dawn/front.svg",
  19496. extra: 2094 / 2016,
  19497. bottom: 0.025
  19498. }
  19499. },
  19500. back: {
  19501. height: math.unit(5 + 9 / 12, "feet"),
  19502. weight: math.unit(160, "lb"),
  19503. name: "Back",
  19504. image: {
  19505. source: "./media/characters/dawn/back.svg",
  19506. extra: 2112 / 2080,
  19507. bottom: 0.005
  19508. }
  19509. },
  19510. },
  19511. [
  19512. {
  19513. name: "Normal",
  19514. height: math.unit(6 + 7 / 12, "feet"),
  19515. default: true
  19516. },
  19517. ]
  19518. ))
  19519. characterMakers.push(() => makeCharacter(
  19520. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19521. {
  19522. anthro: {
  19523. height: math.unit(8 + 3 / 12, "feet"),
  19524. weight: math.unit(450, "lb"),
  19525. name: "Anthro",
  19526. image: {
  19527. source: "./media/characters/arador/anthro.svg",
  19528. extra: 1835 / 1718,
  19529. bottom: 0.025
  19530. }
  19531. },
  19532. feral: {
  19533. height: math.unit(4, "feet"),
  19534. weight: math.unit(200, "lb"),
  19535. name: "Feral",
  19536. image: {
  19537. source: "./media/characters/arador/feral.svg",
  19538. extra: 1683 / 1514,
  19539. bottom: 0.07
  19540. }
  19541. },
  19542. },
  19543. [
  19544. {
  19545. name: "Normal",
  19546. height: math.unit(8 + 3 / 12, "feet")
  19547. },
  19548. {
  19549. name: "Macro",
  19550. height: math.unit(82.5, "feet"),
  19551. default: true
  19552. },
  19553. ]
  19554. ))
  19555. characterMakers.push(() => makeCharacter(
  19556. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19557. {
  19558. front: {
  19559. height: math.unit(5 + 10 / 12, "feet"),
  19560. weight: math.unit(125, "lb"),
  19561. name: "Front",
  19562. image: {
  19563. source: "./media/characters/dharsi/front.svg",
  19564. extra: 716 / 630,
  19565. bottom: 0.035
  19566. }
  19567. },
  19568. },
  19569. [
  19570. {
  19571. name: "Nano",
  19572. height: math.unit(100, "nm")
  19573. },
  19574. {
  19575. name: "Micro",
  19576. height: math.unit(2, "inches")
  19577. },
  19578. {
  19579. name: "Normal",
  19580. height: math.unit(5 + 10 / 12, "feet"),
  19581. default: true
  19582. },
  19583. {
  19584. name: "Macro",
  19585. height: math.unit(1000, "feet")
  19586. },
  19587. {
  19588. name: "Megamacro",
  19589. height: math.unit(10, "miles")
  19590. },
  19591. {
  19592. name: "Gigamacro",
  19593. height: math.unit(3000, "miles")
  19594. },
  19595. {
  19596. name: "Teramacro",
  19597. height: math.unit(500000, "miles")
  19598. },
  19599. {
  19600. name: "Teramacro+",
  19601. height: math.unit(30, "galaxies")
  19602. },
  19603. ]
  19604. ))
  19605. characterMakers.push(() => makeCharacter(
  19606. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19607. {
  19608. front: {
  19609. height: math.unit(6, "feet"),
  19610. weight: math.unit(150, "lb"),
  19611. name: "Front",
  19612. image: {
  19613. source: "./media/characters/deathy/front.svg",
  19614. extra: 1552 / 1463,
  19615. bottom: 0.025
  19616. }
  19617. },
  19618. side: {
  19619. height: math.unit(6, "feet"),
  19620. weight: math.unit(150, "lb"),
  19621. name: "Side",
  19622. image: {
  19623. source: "./media/characters/deathy/side.svg",
  19624. extra: 1604 / 1455,
  19625. bottom: 0.025
  19626. }
  19627. },
  19628. back: {
  19629. height: math.unit(6, "feet"),
  19630. weight: math.unit(150, "lb"),
  19631. name: "Back",
  19632. image: {
  19633. source: "./media/characters/deathy/back.svg",
  19634. extra: 1580 / 1463,
  19635. bottom: 0.005
  19636. }
  19637. },
  19638. },
  19639. [
  19640. {
  19641. name: "Micro",
  19642. height: math.unit(5, "millimeters")
  19643. },
  19644. {
  19645. name: "Normal",
  19646. height: math.unit(6 + 5 / 12, "feet"),
  19647. default: true
  19648. },
  19649. ]
  19650. ))
  19651. characterMakers.push(() => makeCharacter(
  19652. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19653. {
  19654. front: {
  19655. height: math.unit(16, "feet"),
  19656. weight: math.unit(4000, "lb"),
  19657. name: "Front",
  19658. image: {
  19659. source: "./media/characters/juniper/front.svg",
  19660. bottom: 0.04
  19661. }
  19662. },
  19663. },
  19664. [
  19665. {
  19666. name: "Normal",
  19667. height: math.unit(16, "feet"),
  19668. default: true
  19669. },
  19670. ]
  19671. ))
  19672. characterMakers.push(() => makeCharacter(
  19673. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19674. {
  19675. front: {
  19676. height: math.unit(6, "feet"),
  19677. weight: math.unit(150, "lb"),
  19678. name: "Front",
  19679. image: {
  19680. source: "./media/characters/hipster/front.svg",
  19681. extra: 1312 / 1209,
  19682. bottom: 0.025
  19683. }
  19684. },
  19685. back: {
  19686. height: math.unit(6, "feet"),
  19687. weight: math.unit(150, "lb"),
  19688. name: "Back",
  19689. image: {
  19690. source: "./media/characters/hipster/back.svg",
  19691. extra: 1281 / 1196,
  19692. bottom: 0.01
  19693. }
  19694. },
  19695. },
  19696. [
  19697. {
  19698. name: "Micro",
  19699. height: math.unit(1, "mm")
  19700. },
  19701. {
  19702. name: "Normal",
  19703. height: math.unit(4, "inches"),
  19704. default: true
  19705. },
  19706. {
  19707. name: "Macro",
  19708. height: math.unit(500, "feet")
  19709. },
  19710. {
  19711. name: "Megamacro",
  19712. height: math.unit(1000, "miles")
  19713. },
  19714. ]
  19715. ))
  19716. characterMakers.push(() => makeCharacter(
  19717. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19718. {
  19719. front: {
  19720. height: math.unit(6, "feet"),
  19721. weight: math.unit(150, "lb"),
  19722. name: "Front",
  19723. image: {
  19724. source: "./media/characters/tendirmuldr/front.svg",
  19725. extra: 1878 / 1772,
  19726. bottom: 0.015
  19727. }
  19728. },
  19729. },
  19730. [
  19731. {
  19732. name: "Megamacro",
  19733. height: math.unit(1500, "miles"),
  19734. default: true
  19735. },
  19736. ]
  19737. ))
  19738. characterMakers.push(() => makeCharacter(
  19739. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19740. {
  19741. front: {
  19742. height: math.unit(14, "feet"),
  19743. weight: math.unit(12000, "lb"),
  19744. name: "Front",
  19745. image: {
  19746. source: "./media/characters/mort/front.svg",
  19747. extra: 365 / 318,
  19748. bottom: 0.01
  19749. }
  19750. },
  19751. side: {
  19752. height: math.unit(14, "feet"),
  19753. weight: math.unit(12000, "lb"),
  19754. name: "Side",
  19755. image: {
  19756. source: "./media/characters/mort/side.svg",
  19757. extra: 365 / 318,
  19758. bottom: 0.052
  19759. },
  19760. default: true
  19761. },
  19762. back: {
  19763. height: math.unit(14, "feet"),
  19764. weight: math.unit(12000, "lb"),
  19765. name: "Back",
  19766. image: {
  19767. source: "./media/characters/mort/back.svg",
  19768. extra: 371 / 332,
  19769. bottom: 0.18
  19770. }
  19771. },
  19772. },
  19773. [
  19774. {
  19775. name: "Normal",
  19776. height: math.unit(14, "feet"),
  19777. default: true
  19778. },
  19779. ]
  19780. ))
  19781. characterMakers.push(() => makeCharacter(
  19782. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19783. {
  19784. front: {
  19785. height: math.unit(8, "feet"),
  19786. weight: math.unit(1, "ton"),
  19787. name: "Front",
  19788. image: {
  19789. source: "./media/characters/lycoa/front.svg",
  19790. extra: 1875 / 1789,
  19791. bottom: 0.022
  19792. }
  19793. },
  19794. back: {
  19795. height: math.unit(8, "feet"),
  19796. weight: math.unit(1, "ton"),
  19797. name: "Back",
  19798. image: {
  19799. source: "./media/characters/lycoa/back.svg",
  19800. extra: 1835 / 1781,
  19801. bottom: 0.03
  19802. }
  19803. },
  19804. head: {
  19805. height: math.unit(2.1, "feet"),
  19806. name: "Head",
  19807. image: {
  19808. source: "./media/characters/lycoa/head.svg"
  19809. }
  19810. },
  19811. tailmaw: {
  19812. height: math.unit(1.9, "feet"),
  19813. name: "Tailmaw",
  19814. image: {
  19815. source: "./media/characters/lycoa/tailmaw.svg"
  19816. }
  19817. },
  19818. tentacles: {
  19819. height: math.unit(2.1, "feet"),
  19820. name: "Tentacles",
  19821. image: {
  19822. source: "./media/characters/lycoa/tentacles.svg"
  19823. }
  19824. },
  19825. dick: {
  19826. height: math.unit(1.73, "feet"),
  19827. name: "Dick",
  19828. image: {
  19829. source: "./media/characters/lycoa/dick.svg"
  19830. }
  19831. },
  19832. },
  19833. [
  19834. {
  19835. name: "Normal",
  19836. height: math.unit(8, "feet"),
  19837. default: true
  19838. },
  19839. {
  19840. name: "Macro",
  19841. height: math.unit(30, "feet")
  19842. },
  19843. ]
  19844. ))
  19845. characterMakers.push(() => makeCharacter(
  19846. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19847. {
  19848. front: {
  19849. height: math.unit(4 + 2 / 12, "feet"),
  19850. weight: math.unit(70, "lb"),
  19851. name: "Front",
  19852. image: {
  19853. source: "./media/characters/naldara/front.svg",
  19854. extra: 841 / 720,
  19855. bottom: 0.04
  19856. }
  19857. },
  19858. naga: {
  19859. height: math.unit(23, "feet"),
  19860. weight: math.unit(15000, "kg"),
  19861. name: "Naga",
  19862. image: {
  19863. source: "./media/characters/naldara/naga.svg",
  19864. extra: 3290 / 2959,
  19865. bottom: 124 / 3432
  19866. }
  19867. },
  19868. },
  19869. [
  19870. {
  19871. name: "Normal",
  19872. height: math.unit(4 + 2 / 12, "feet"),
  19873. default: true
  19874. },
  19875. ]
  19876. ))
  19877. characterMakers.push(() => makeCharacter(
  19878. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19879. {
  19880. front: {
  19881. height: math.unit(13 + 7 / 12, "feet"),
  19882. weight: math.unit(1500, "lb"),
  19883. name: "Front",
  19884. image: {
  19885. source: "./media/characters/briar/front.svg",
  19886. extra: 626 / 596,
  19887. bottom: 0.08
  19888. }
  19889. },
  19890. },
  19891. [
  19892. {
  19893. name: "Normal",
  19894. height: math.unit(13 + 7 / 12, "feet"),
  19895. default: true
  19896. },
  19897. ]
  19898. ))
  19899. characterMakers.push(() => makeCharacter(
  19900. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19901. {
  19902. side: {
  19903. height: math.unit(10, "feet"),
  19904. weight: math.unit(500, "lb"),
  19905. name: "Side",
  19906. image: {
  19907. source: "./media/characters/vanguard/side.svg",
  19908. extra: 502 / 425,
  19909. bottom: 0.087
  19910. }
  19911. },
  19912. },
  19913. [
  19914. {
  19915. name: "Normal",
  19916. height: math.unit(10, "feet"),
  19917. default: true
  19918. },
  19919. ]
  19920. ))
  19921. characterMakers.push(() => makeCharacter(
  19922. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19923. {
  19924. front: {
  19925. height: math.unit(7.5, "feet"),
  19926. weight: math.unit(2, "lb"),
  19927. name: "Front",
  19928. image: {
  19929. source: "./media/characters/artemis/front.svg",
  19930. extra: 1192 / 1075,
  19931. bottom: 0.07
  19932. }
  19933. },
  19934. frontNsfw: {
  19935. height: math.unit(7.5, "feet"),
  19936. weight: math.unit(2, "lb"),
  19937. name: "Front (NSFW)",
  19938. image: {
  19939. source: "./media/characters/artemis/front-nsfw.svg",
  19940. extra: 1192 / 1075,
  19941. bottom: 0.07
  19942. }
  19943. },
  19944. frontNsfwer: {
  19945. height: math.unit(7.5, "feet"),
  19946. weight: math.unit(2, "lb"),
  19947. name: "Front (NSFW-er)",
  19948. image: {
  19949. source: "./media/characters/artemis/front-nsfwer.svg",
  19950. extra: 1192 / 1075,
  19951. bottom: 0.07
  19952. }
  19953. },
  19954. side: {
  19955. height: math.unit(7.5, "feet"),
  19956. weight: math.unit(2, "lb"),
  19957. name: "Side",
  19958. image: {
  19959. source: "./media/characters/artemis/side.svg",
  19960. extra: 1192 / 1075,
  19961. bottom: 0.07
  19962. }
  19963. },
  19964. sideNsfw: {
  19965. height: math.unit(7.5, "feet"),
  19966. weight: math.unit(2, "lb"),
  19967. name: "Side (NSFW)",
  19968. image: {
  19969. source: "./media/characters/artemis/side-nsfw.svg",
  19970. extra: 1192 / 1075,
  19971. bottom: 0.07
  19972. }
  19973. },
  19974. sideNsfwer: {
  19975. height: math.unit(7.5, "feet"),
  19976. weight: math.unit(2, "lb"),
  19977. name: "Side (NSFW-er)",
  19978. image: {
  19979. source: "./media/characters/artemis/side-nsfwer.svg",
  19980. extra: 1192 / 1075,
  19981. bottom: 0.07
  19982. }
  19983. },
  19984. maw: {
  19985. height: math.unit(1.1, "feet"),
  19986. name: "Maw",
  19987. image: {
  19988. source: "./media/characters/artemis/maw.svg"
  19989. }
  19990. },
  19991. stomach: {
  19992. height: math.unit(0.95, "feet"),
  19993. name: "Stomach",
  19994. image: {
  19995. source: "./media/characters/artemis/stomach.svg"
  19996. }
  19997. },
  19998. dickCanine: {
  19999. height: math.unit(1, "feet"),
  20000. name: "Dick (Canine)",
  20001. image: {
  20002. source: "./media/characters/artemis/dick-canine.svg"
  20003. }
  20004. },
  20005. dickEquine: {
  20006. height: math.unit(0.85, "feet"),
  20007. name: "Dick (Equine)",
  20008. image: {
  20009. source: "./media/characters/artemis/dick-equine.svg"
  20010. }
  20011. },
  20012. dickExotic: {
  20013. height: math.unit(0.85, "feet"),
  20014. name: "Dick (Exotic)",
  20015. image: {
  20016. source: "./media/characters/artemis/dick-exotic.svg"
  20017. }
  20018. },
  20019. },
  20020. [
  20021. {
  20022. name: "Normal",
  20023. height: math.unit(7.5, "feet"),
  20024. default: true
  20025. },
  20026. {
  20027. name: "Enlarged",
  20028. height: math.unit(12, "feet")
  20029. },
  20030. ]
  20031. ))
  20032. characterMakers.push(() => makeCharacter(
  20033. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20034. {
  20035. front: {
  20036. height: math.unit(5 + 3 / 12, "feet"),
  20037. weight: math.unit(160, "lb"),
  20038. name: "Front",
  20039. image: {
  20040. source: "./media/characters/kira/front.svg",
  20041. extra: 906 / 786,
  20042. bottom: 0.01
  20043. }
  20044. },
  20045. back: {
  20046. height: math.unit(5 + 3 / 12, "feet"),
  20047. weight: math.unit(160, "lb"),
  20048. name: "Back",
  20049. image: {
  20050. source: "./media/characters/kira/back.svg",
  20051. extra: 882 / 757,
  20052. bottom: 0.005
  20053. }
  20054. },
  20055. frontDressed: {
  20056. height: math.unit(5 + 3 / 12, "feet"),
  20057. weight: math.unit(160, "lb"),
  20058. name: "Front (Dressed)",
  20059. image: {
  20060. source: "./media/characters/kira/front-dressed.svg",
  20061. extra: 906 / 786,
  20062. bottom: 0.01
  20063. }
  20064. },
  20065. beans: {
  20066. height: math.unit(0.92, "feet"),
  20067. name: "Beans",
  20068. image: {
  20069. source: "./media/characters/kira/beans.svg"
  20070. }
  20071. },
  20072. },
  20073. [
  20074. {
  20075. name: "Normal",
  20076. height: math.unit(5 + 3 / 12, "feet"),
  20077. default: true
  20078. },
  20079. ]
  20080. ))
  20081. characterMakers.push(() => makeCharacter(
  20082. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20083. {
  20084. front: {
  20085. height: math.unit(5 + 4 / 12, "feet"),
  20086. weight: math.unit(145, "lb"),
  20087. name: "Front",
  20088. image: {
  20089. source: "./media/characters/scramble/front.svg",
  20090. extra: 763 / 727,
  20091. bottom: 0.05
  20092. }
  20093. },
  20094. back: {
  20095. height: math.unit(5 + 4 / 12, "feet"),
  20096. weight: math.unit(145, "lb"),
  20097. name: "Back",
  20098. image: {
  20099. source: "./media/characters/scramble/back.svg",
  20100. extra: 826 / 737,
  20101. bottom: 0.002
  20102. }
  20103. },
  20104. },
  20105. [
  20106. {
  20107. name: "Normal",
  20108. height: math.unit(5 + 4 / 12, "feet"),
  20109. default: true
  20110. },
  20111. ]
  20112. ))
  20113. characterMakers.push(() => makeCharacter(
  20114. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20115. {
  20116. side: {
  20117. height: math.unit(6 + 2 / 12, "feet"),
  20118. weight: math.unit(190, "lb"),
  20119. name: "Side",
  20120. image: {
  20121. source: "./media/characters/biscuit/side.svg",
  20122. extra: 858 / 791,
  20123. bottom: 0.044
  20124. }
  20125. },
  20126. },
  20127. [
  20128. {
  20129. name: "Normal",
  20130. height: math.unit(6 + 2 / 12, "feet"),
  20131. default: true
  20132. },
  20133. ]
  20134. ))
  20135. characterMakers.push(() => makeCharacter(
  20136. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20137. {
  20138. front: {
  20139. height: math.unit(5 + 2 / 12, "feet"),
  20140. weight: math.unit(120, "lb"),
  20141. name: "Front",
  20142. image: {
  20143. source: "./media/characters/poffin/front.svg",
  20144. extra: 786 / 680,
  20145. bottom: 0.005
  20146. }
  20147. },
  20148. },
  20149. [
  20150. {
  20151. name: "Normal",
  20152. height: math.unit(5 + 2 / 12, "feet"),
  20153. default: true
  20154. },
  20155. ]
  20156. ))
  20157. characterMakers.push(() => makeCharacter(
  20158. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20159. {
  20160. front: {
  20161. height: math.unit(6 + 3 / 12, "feet"),
  20162. weight: math.unit(519, "lb"),
  20163. name: "Front",
  20164. image: {
  20165. source: "./media/characters/dhari/front.svg",
  20166. extra: 1048 / 946,
  20167. bottom: 0.015
  20168. }
  20169. },
  20170. back: {
  20171. height: math.unit(6 + 3 / 12, "feet"),
  20172. weight: math.unit(519, "lb"),
  20173. name: "Back",
  20174. image: {
  20175. source: "./media/characters/dhari/back.svg",
  20176. extra: 1048 / 931,
  20177. bottom: 0.005
  20178. }
  20179. },
  20180. frontDressed: {
  20181. height: math.unit(6 + 3 / 12, "feet"),
  20182. weight: math.unit(519, "lb"),
  20183. name: "Front (Dressed)",
  20184. image: {
  20185. source: "./media/characters/dhari/front-dressed.svg",
  20186. extra: 1713 / 1546,
  20187. bottom: 0.02
  20188. }
  20189. },
  20190. backDressed: {
  20191. height: math.unit(6 + 3 / 12, "feet"),
  20192. weight: math.unit(519, "lb"),
  20193. name: "Back (Dressed)",
  20194. image: {
  20195. source: "./media/characters/dhari/back-dressed.svg",
  20196. extra: 1699 / 1537,
  20197. bottom: 0.01
  20198. }
  20199. },
  20200. maw: {
  20201. height: math.unit(0.95, "feet"),
  20202. name: "Maw",
  20203. image: {
  20204. source: "./media/characters/dhari/maw.svg"
  20205. }
  20206. },
  20207. wereFront: {
  20208. height: math.unit(12 + 8 / 12, "feet"),
  20209. weight: math.unit(4000, "lb"),
  20210. name: "Front (Were)",
  20211. image: {
  20212. source: "./media/characters/dhari/were-front.svg",
  20213. extra: 1065 / 969,
  20214. bottom: 0.015
  20215. }
  20216. },
  20217. wereBack: {
  20218. height: math.unit(12 + 8 / 12, "feet"),
  20219. weight: math.unit(4000, "lb"),
  20220. name: "Back (Were)",
  20221. image: {
  20222. source: "./media/characters/dhari/were-back.svg",
  20223. extra: 1065 / 969,
  20224. bottom: 0.012
  20225. }
  20226. },
  20227. wereMaw: {
  20228. height: math.unit(0.625, "meters"),
  20229. name: "Maw (Were)",
  20230. image: {
  20231. source: "./media/characters/dhari/were-maw.svg"
  20232. }
  20233. },
  20234. },
  20235. [
  20236. {
  20237. name: "Normal",
  20238. height: math.unit(6 + 3 / 12, "feet"),
  20239. default: true
  20240. },
  20241. ]
  20242. ))
  20243. characterMakers.push(() => makeCharacter(
  20244. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20245. {
  20246. anthro: {
  20247. height: math.unit(5 + 7 / 12, "feet"),
  20248. weight: math.unit(175, "lb"),
  20249. name: "Anthro",
  20250. image: {
  20251. source: "./media/characters/rena-dyne/anthro.svg",
  20252. extra: 1849 / 1785,
  20253. bottom: 0.005
  20254. }
  20255. },
  20256. taur: {
  20257. height: math.unit(15 + 6 / 12, "feet"),
  20258. weight: math.unit(8000, "lb"),
  20259. name: "Taur",
  20260. image: {
  20261. source: "./media/characters/rena-dyne/taur.svg",
  20262. extra: 2315 / 2234,
  20263. bottom: 0.033
  20264. }
  20265. },
  20266. },
  20267. [
  20268. {
  20269. name: "Normal",
  20270. height: math.unit(5 + 7 / 12, "feet"),
  20271. default: true
  20272. },
  20273. ]
  20274. ))
  20275. characterMakers.push(() => makeCharacter(
  20276. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20277. {
  20278. front: {
  20279. height: math.unit(8, "feet"),
  20280. weight: math.unit(600, "lb"),
  20281. name: "Front",
  20282. image: {
  20283. source: "./media/characters/weremeep/front.svg",
  20284. extra: 967 / 862,
  20285. bottom: 0.01
  20286. }
  20287. },
  20288. },
  20289. [
  20290. {
  20291. name: "Normal",
  20292. height: math.unit(8, "feet"),
  20293. default: true
  20294. },
  20295. {
  20296. name: "Lorg",
  20297. height: math.unit(12, "feet")
  20298. },
  20299. {
  20300. name: "Oh Lawd She Comin'",
  20301. height: math.unit(20, "feet")
  20302. },
  20303. ]
  20304. ))
  20305. characterMakers.push(() => makeCharacter(
  20306. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20307. {
  20308. front: {
  20309. height: math.unit(4, "feet"),
  20310. weight: math.unit(90, "lb"),
  20311. name: "Front",
  20312. image: {
  20313. source: "./media/characters/reza/front.svg",
  20314. extra: 1183 / 1111,
  20315. bottom: 0.017
  20316. }
  20317. },
  20318. back: {
  20319. height: math.unit(4, "feet"),
  20320. weight: math.unit(90, "lb"),
  20321. name: "Back",
  20322. image: {
  20323. source: "./media/characters/reza/back.svg",
  20324. extra: 1183 / 1111,
  20325. bottom: 0.01
  20326. }
  20327. },
  20328. drake: {
  20329. height: math.unit(30, "feet"),
  20330. weight: math.unit(246960, "lb"),
  20331. name: "Drake",
  20332. image: {
  20333. source: "./media/characters/reza/drake.svg",
  20334. extra: 2350 / 2024,
  20335. bottom: 60.7 / 2403
  20336. }
  20337. },
  20338. },
  20339. [
  20340. {
  20341. name: "Normal",
  20342. height: math.unit(4, "feet"),
  20343. default: true
  20344. },
  20345. ]
  20346. ))
  20347. characterMakers.push(() => makeCharacter(
  20348. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20349. {
  20350. side: {
  20351. height: math.unit(15, "feet"),
  20352. weight: math.unit(14, "tons"),
  20353. name: "Side",
  20354. image: {
  20355. source: "./media/characters/athea/side.svg",
  20356. extra: 960 / 540,
  20357. bottom: 0.003
  20358. }
  20359. },
  20360. sitting: {
  20361. height: math.unit(6 * 2.85, "feet"),
  20362. weight: math.unit(14, "tons"),
  20363. name: "Sitting",
  20364. image: {
  20365. source: "./media/characters/athea/sitting.svg",
  20366. extra: 621 / 581,
  20367. bottom: 0.075
  20368. }
  20369. },
  20370. maw: {
  20371. height: math.unit(7.59498031496063, "feet"),
  20372. name: "Maw",
  20373. image: {
  20374. source: "./media/characters/athea/maw.svg"
  20375. }
  20376. },
  20377. },
  20378. [
  20379. {
  20380. name: "Lap Cat",
  20381. height: math.unit(2.5, "feet")
  20382. },
  20383. {
  20384. name: "Minimacro",
  20385. height: math.unit(15, "feet"),
  20386. default: true
  20387. },
  20388. {
  20389. name: "Macro",
  20390. height: math.unit(120, "feet")
  20391. },
  20392. {
  20393. name: "Macro+",
  20394. height: math.unit(640, "feet")
  20395. },
  20396. {
  20397. name: "Colossus",
  20398. height: math.unit(2.2, "miles")
  20399. },
  20400. ]
  20401. ))
  20402. characterMakers.push(() => makeCharacter(
  20403. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20404. {
  20405. front: {
  20406. height: math.unit(8 + 8 / 12, "feet"),
  20407. weight: math.unit(130, "kg"),
  20408. name: "Front",
  20409. image: {
  20410. source: "./media/characters/seroko/front.svg",
  20411. extra: 1385 / 1280,
  20412. bottom: 0.025
  20413. }
  20414. },
  20415. back: {
  20416. height: math.unit(8 + 8 / 12, "feet"),
  20417. weight: math.unit(130, "kg"),
  20418. name: "Back",
  20419. image: {
  20420. source: "./media/characters/seroko/back.svg",
  20421. extra: 1369 / 1238,
  20422. bottom: 0.018
  20423. }
  20424. },
  20425. frontDressed: {
  20426. height: math.unit(8 + 8 / 12, "feet"),
  20427. weight: math.unit(130, "kg"),
  20428. name: "Front (Dressed)",
  20429. image: {
  20430. source: "./media/characters/seroko/front-dressed.svg",
  20431. extra: 1366 / 1275,
  20432. bottom: 0.03
  20433. }
  20434. },
  20435. },
  20436. [
  20437. {
  20438. name: "Normal",
  20439. height: math.unit(8 + 8 / 12, "feet"),
  20440. default: true
  20441. },
  20442. ]
  20443. ))
  20444. characterMakers.push(() => makeCharacter(
  20445. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20446. {
  20447. front: {
  20448. height: math.unit(5.5, "feet"),
  20449. weight: math.unit(160, "lb"),
  20450. name: "Front",
  20451. image: {
  20452. source: "./media/characters/quatzi/front.svg",
  20453. extra: 2346 / 2242,
  20454. bottom: 0.015
  20455. }
  20456. },
  20457. },
  20458. [
  20459. {
  20460. name: "Normal",
  20461. height: math.unit(5.5, "feet"),
  20462. default: true
  20463. },
  20464. {
  20465. name: "Big",
  20466. height: math.unit(7.7, "feet")
  20467. },
  20468. ]
  20469. ))
  20470. characterMakers.push(() => makeCharacter(
  20471. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20472. {
  20473. front: {
  20474. height: math.unit(5 + 11 / 12, "feet"),
  20475. weight: math.unit(180, "lb"),
  20476. name: "Front",
  20477. image: {
  20478. source: "./media/characters/sen/front.svg",
  20479. extra: 1321 / 1254,
  20480. bottom: 0.015
  20481. }
  20482. },
  20483. side: {
  20484. height: math.unit(5 + 11 / 12, "feet"),
  20485. weight: math.unit(180, "lb"),
  20486. name: "Side",
  20487. image: {
  20488. source: "./media/characters/sen/side.svg",
  20489. extra: 1321 / 1254,
  20490. bottom: 0.007
  20491. }
  20492. },
  20493. back: {
  20494. height: math.unit(5 + 11 / 12, "feet"),
  20495. weight: math.unit(180, "lb"),
  20496. name: "Back",
  20497. image: {
  20498. source: "./media/characters/sen/back.svg",
  20499. extra: 1321 / 1254
  20500. }
  20501. },
  20502. },
  20503. [
  20504. {
  20505. name: "Normal",
  20506. height: math.unit(5 + 11 / 12, "feet"),
  20507. default: true
  20508. },
  20509. ]
  20510. ))
  20511. characterMakers.push(() => makeCharacter(
  20512. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20513. {
  20514. front: {
  20515. height: math.unit(166.6, "cm"),
  20516. weight: math.unit(66.6, "kg"),
  20517. name: "Front",
  20518. image: {
  20519. source: "./media/characters/fruity/front.svg",
  20520. extra: 1510 / 1386,
  20521. bottom: 0.04
  20522. }
  20523. },
  20524. back: {
  20525. height: math.unit(166.6, "cm"),
  20526. weight: math.unit(66.6, "lb"),
  20527. name: "Back",
  20528. image: {
  20529. source: "./media/characters/fruity/back.svg",
  20530. extra: 1563 / 1435,
  20531. bottom: 0.005
  20532. }
  20533. },
  20534. },
  20535. [
  20536. {
  20537. name: "Normal",
  20538. height: math.unit(166.6, "cm"),
  20539. default: true
  20540. },
  20541. {
  20542. name: "Demonic",
  20543. height: math.unit(166.6, "feet")
  20544. },
  20545. ]
  20546. ))
  20547. characterMakers.push(() => makeCharacter(
  20548. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20549. {
  20550. side: {
  20551. height: math.unit(10, "feet"),
  20552. weight: math.unit(500, "lb"),
  20553. name: "Side",
  20554. image: {
  20555. source: "./media/characters/zost/side.svg",
  20556. extra: 966 / 880,
  20557. bottom: 0.075
  20558. }
  20559. },
  20560. mawFront: {
  20561. height: math.unit(1.08, "meters"),
  20562. name: "Maw (Front)",
  20563. image: {
  20564. source: "./media/characters/zost/maw-front.svg"
  20565. }
  20566. },
  20567. mawSide: {
  20568. height: math.unit(2.66, "feet"),
  20569. name: "Maw (Side)",
  20570. image: {
  20571. source: "./media/characters/zost/maw-side.svg"
  20572. }
  20573. },
  20574. },
  20575. [
  20576. {
  20577. name: "Normal",
  20578. height: math.unit(10, "feet"),
  20579. default: true
  20580. },
  20581. ]
  20582. ))
  20583. characterMakers.push(() => makeCharacter(
  20584. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20585. {
  20586. front: {
  20587. height: math.unit(5 + 4 / 12, "feet"),
  20588. weight: math.unit(120, "lb"),
  20589. name: "Front",
  20590. image: {
  20591. source: "./media/characters/luci/front.svg",
  20592. extra: 1985 / 1884,
  20593. bottom: 0.04
  20594. }
  20595. },
  20596. back: {
  20597. height: math.unit(5 + 4 / 12, "feet"),
  20598. weight: math.unit(120, "lb"),
  20599. name: "Back",
  20600. image: {
  20601. source: "./media/characters/luci/back.svg",
  20602. extra: 1892 / 1791,
  20603. bottom: 0.002
  20604. }
  20605. },
  20606. },
  20607. [
  20608. {
  20609. name: "Normal",
  20610. height: math.unit(5 + 4 / 12, "feet"),
  20611. default: true
  20612. },
  20613. ]
  20614. ))
  20615. characterMakers.push(() => makeCharacter(
  20616. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20617. {
  20618. front: {
  20619. height: math.unit(1500, "feet"),
  20620. weight: math.unit(3.8e6, "tons"),
  20621. name: "Front",
  20622. image: {
  20623. source: "./media/characters/2th/front.svg",
  20624. extra: 3489 / 3350,
  20625. bottom: 0.1
  20626. }
  20627. },
  20628. foot: {
  20629. height: math.unit(461, "feet"),
  20630. name: "Foot",
  20631. image: {
  20632. source: "./media/characters/2th/foot.svg"
  20633. }
  20634. },
  20635. },
  20636. [
  20637. {
  20638. name: "\"Micro\"",
  20639. height: math.unit(15 + 7 / 12, "feet")
  20640. },
  20641. {
  20642. name: "Normal",
  20643. height: math.unit(1500, "feet"),
  20644. default: true
  20645. },
  20646. {
  20647. name: "Macro",
  20648. height: math.unit(5000, "feet")
  20649. },
  20650. {
  20651. name: "Megamacro",
  20652. height: math.unit(15, "miles")
  20653. },
  20654. {
  20655. name: "Gigamacro",
  20656. height: math.unit(4000, "miles")
  20657. },
  20658. {
  20659. name: "Galactic",
  20660. height: math.unit(50, "AU")
  20661. },
  20662. ]
  20663. ))
  20664. characterMakers.push(() => makeCharacter(
  20665. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20666. {
  20667. front: {
  20668. height: math.unit(5 + 6 / 12, "feet"),
  20669. weight: math.unit(220, "lb"),
  20670. name: "Front",
  20671. image: {
  20672. source: "./media/characters/amethyst/front.svg",
  20673. extra: 2078 / 2040,
  20674. bottom: 0.045
  20675. }
  20676. },
  20677. back: {
  20678. height: math.unit(5 + 6 / 12, "feet"),
  20679. weight: math.unit(220, "lb"),
  20680. name: "Back",
  20681. image: {
  20682. source: "./media/characters/amethyst/back.svg",
  20683. extra: 2021 / 1989,
  20684. bottom: 0.02
  20685. }
  20686. },
  20687. },
  20688. [
  20689. {
  20690. name: "Normal",
  20691. height: math.unit(5 + 6 / 12, "feet"),
  20692. default: true
  20693. },
  20694. ]
  20695. ))
  20696. characterMakers.push(() => makeCharacter(
  20697. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20698. {
  20699. front: {
  20700. height: math.unit(4 + 11 / 12, "feet"),
  20701. weight: math.unit(120, "lb"),
  20702. name: "Front",
  20703. image: {
  20704. source: "./media/characters/yumi-akiyama/front.svg",
  20705. extra: 1327 / 1235,
  20706. bottom: 0.02
  20707. }
  20708. },
  20709. back: {
  20710. height: math.unit(4 + 11 / 12, "feet"),
  20711. weight: math.unit(120, "lb"),
  20712. name: "Back",
  20713. image: {
  20714. source: "./media/characters/yumi-akiyama/back.svg",
  20715. extra: 1287 / 1245,
  20716. bottom: 0.002
  20717. }
  20718. },
  20719. },
  20720. [
  20721. {
  20722. name: "Galactic",
  20723. height: math.unit(50, "galaxies"),
  20724. default: true
  20725. },
  20726. {
  20727. name: "Universal",
  20728. height: math.unit(100, "universes")
  20729. },
  20730. ]
  20731. ))
  20732. characterMakers.push(() => makeCharacter(
  20733. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20734. {
  20735. front: {
  20736. height: math.unit(8, "feet"),
  20737. weight: math.unit(500, "lb"),
  20738. name: "Front",
  20739. image: {
  20740. source: "./media/characters/rifter-yrmori/front.svg",
  20741. extra: 1180 / 1125,
  20742. bottom: 0.02
  20743. }
  20744. },
  20745. back: {
  20746. height: math.unit(8, "feet"),
  20747. weight: math.unit(500, "lb"),
  20748. name: "Back",
  20749. image: {
  20750. source: "./media/characters/rifter-yrmori/back.svg",
  20751. extra: 1190 / 1145,
  20752. bottom: 0.001
  20753. }
  20754. },
  20755. wings: {
  20756. height: math.unit(7.75, "feet"),
  20757. weight: math.unit(500, "lb"),
  20758. name: "Wings",
  20759. image: {
  20760. source: "./media/characters/rifter-yrmori/wings.svg",
  20761. extra: 1357 / 1285
  20762. }
  20763. },
  20764. maw: {
  20765. height: math.unit(0.8, "feet"),
  20766. name: "Maw",
  20767. image: {
  20768. source: "./media/characters/rifter-yrmori/maw.svg"
  20769. }
  20770. },
  20771. mawfront: {
  20772. height: math.unit(1.45, "feet"),
  20773. name: "Maw (Front)",
  20774. image: {
  20775. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20776. }
  20777. },
  20778. },
  20779. [
  20780. {
  20781. name: "Normal",
  20782. height: math.unit(8, "feet"),
  20783. default: true
  20784. },
  20785. {
  20786. name: "Macro",
  20787. height: math.unit(42, "meters")
  20788. },
  20789. ]
  20790. ))
  20791. characterMakers.push(() => makeCharacter(
  20792. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20793. {
  20794. were: {
  20795. height: math.unit(25 + 6 / 12, "feet"),
  20796. weight: math.unit(10000, "lb"),
  20797. name: "Were",
  20798. image: {
  20799. source: "./media/characters/tahajin/were.svg",
  20800. extra: 801 / 770,
  20801. bottom: 0.042
  20802. }
  20803. },
  20804. aquatic: {
  20805. height: math.unit(6 + 4 / 12, "feet"),
  20806. weight: math.unit(160, "lb"),
  20807. name: "Aquatic",
  20808. image: {
  20809. source: "./media/characters/tahajin/aquatic.svg",
  20810. extra: 572 / 542,
  20811. bottom: 0.04
  20812. }
  20813. },
  20814. chow: {
  20815. height: math.unit(8 + 11 / 12, "feet"),
  20816. weight: math.unit(450, "lb"),
  20817. name: "Chow",
  20818. image: {
  20819. source: "./media/characters/tahajin/chow.svg",
  20820. extra: 660 / 640,
  20821. bottom: 0.015
  20822. }
  20823. },
  20824. demiNaga: {
  20825. height: math.unit(6 + 8 / 12, "feet"),
  20826. weight: math.unit(300, "lb"),
  20827. name: "Demi Naga",
  20828. image: {
  20829. source: "./media/characters/tahajin/demi-naga.svg",
  20830. extra: 643 / 615,
  20831. bottom: 0.1
  20832. }
  20833. },
  20834. data: {
  20835. height: math.unit(5, "inches"),
  20836. weight: math.unit(0.1, "lb"),
  20837. name: "Data",
  20838. image: {
  20839. source: "./media/characters/tahajin/data.svg"
  20840. }
  20841. },
  20842. fluu: {
  20843. height: math.unit(5 + 7 / 12, "feet"),
  20844. weight: math.unit(140, "lb"),
  20845. name: "Fluu",
  20846. image: {
  20847. source: "./media/characters/tahajin/fluu.svg",
  20848. extra: 628 / 592,
  20849. bottom: 0.02
  20850. }
  20851. },
  20852. starWarrior: {
  20853. height: math.unit(4 + 5 / 12, "feet"),
  20854. weight: math.unit(50, "lb"),
  20855. name: "Star Warrior",
  20856. image: {
  20857. source: "./media/characters/tahajin/star-warrior.svg"
  20858. }
  20859. },
  20860. },
  20861. [
  20862. {
  20863. name: "Normal",
  20864. height: math.unit(25 + 6 / 12, "feet"),
  20865. default: true
  20866. },
  20867. ]
  20868. ))
  20869. characterMakers.push(() => makeCharacter(
  20870. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20871. {
  20872. front: {
  20873. height: math.unit(8, "feet"),
  20874. weight: math.unit(350, "lb"),
  20875. name: "Front",
  20876. image: {
  20877. source: "./media/characters/gabira/front.svg",
  20878. extra: 608 / 580,
  20879. bottom: 0.03
  20880. }
  20881. },
  20882. back: {
  20883. height: math.unit(8, "feet"),
  20884. weight: math.unit(350, "lb"),
  20885. name: "Back",
  20886. image: {
  20887. source: "./media/characters/gabira/back.svg",
  20888. extra: 608 / 580,
  20889. bottom: 0.03
  20890. }
  20891. },
  20892. },
  20893. [
  20894. {
  20895. name: "Normal",
  20896. height: math.unit(8, "feet"),
  20897. default: true
  20898. },
  20899. ]
  20900. ))
  20901. characterMakers.push(() => makeCharacter(
  20902. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20903. {
  20904. front: {
  20905. height: math.unit(5 + 3 / 12, "feet"),
  20906. weight: math.unit(137, "lb"),
  20907. name: "Front",
  20908. image: {
  20909. source: "./media/characters/sasha-katraine/front.svg",
  20910. bottom: 0.045
  20911. }
  20912. },
  20913. },
  20914. [
  20915. {
  20916. name: "Micro",
  20917. height: math.unit(5, "inches")
  20918. },
  20919. {
  20920. name: "Normal",
  20921. height: math.unit(5 + 3 / 12, "feet"),
  20922. default: true
  20923. },
  20924. ]
  20925. ))
  20926. characterMakers.push(() => makeCharacter(
  20927. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20928. {
  20929. side: {
  20930. height: math.unit(4, "inches"),
  20931. weight: math.unit(200, "grams"),
  20932. name: "Side",
  20933. image: {
  20934. source: "./media/characters/der/side.svg",
  20935. extra: 719 / 400,
  20936. bottom: 30.6 / 749.9187
  20937. }
  20938. },
  20939. },
  20940. [
  20941. {
  20942. name: "Micro",
  20943. height: math.unit(4, "inches"),
  20944. default: true
  20945. },
  20946. ]
  20947. ))
  20948. characterMakers.push(() => makeCharacter(
  20949. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20950. {
  20951. side: {
  20952. height: math.unit(30, "meters"),
  20953. weight: math.unit(700, "tonnes"),
  20954. name: "Side",
  20955. image: {
  20956. source: "./media/characters/fixerdragon/side.svg",
  20957. extra: (1293.0514 - 116.03) / 1106.86,
  20958. bottom: 116.03 / 1293.0514
  20959. }
  20960. },
  20961. },
  20962. [
  20963. {
  20964. name: "Planck",
  20965. height: math.unit(1.6e-35, "meters")
  20966. },
  20967. {
  20968. name: "Micro",
  20969. height: math.unit(0.4, "meters")
  20970. },
  20971. {
  20972. name: "Normal",
  20973. height: math.unit(30, "meters"),
  20974. default: true
  20975. },
  20976. {
  20977. name: "Megamacro",
  20978. height: math.unit(1.2, "megameters")
  20979. },
  20980. {
  20981. name: "Teramacro",
  20982. height: math.unit(130, "terameters")
  20983. },
  20984. {
  20985. name: "Yottamacro",
  20986. height: math.unit(6200, "yottameters")
  20987. },
  20988. ]
  20989. ));
  20990. characterMakers.push(() => makeCharacter(
  20991. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20992. {
  20993. front: {
  20994. height: math.unit(8, "feet"),
  20995. weight: math.unit(250, "lb"),
  20996. name: "Front",
  20997. image: {
  20998. source: "./media/characters/kite/front.svg",
  20999. extra: 2796 / 2659,
  21000. bottom: 0.002
  21001. }
  21002. },
  21003. },
  21004. [
  21005. {
  21006. name: "Normal",
  21007. height: math.unit(8, "feet"),
  21008. default: true
  21009. },
  21010. {
  21011. name: "Macro",
  21012. height: math.unit(360, "feet")
  21013. },
  21014. {
  21015. name: "Megamacro",
  21016. height: math.unit(1500, "feet")
  21017. },
  21018. ]
  21019. ))
  21020. characterMakers.push(() => makeCharacter(
  21021. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21022. {
  21023. front: {
  21024. height: math.unit(5 + 10 / 12, "feet"),
  21025. weight: math.unit(150, "lb"),
  21026. name: "Front",
  21027. image: {
  21028. source: "./media/characters/poojawa-vynar/front.svg",
  21029. extra: (1506.1547 - 55) / 1356.6,
  21030. bottom: 55 / 1506.1547
  21031. }
  21032. },
  21033. frontTailless: {
  21034. height: math.unit(5 + 10 / 12, "feet"),
  21035. weight: math.unit(150, "lb"),
  21036. name: "Front (Tailless)",
  21037. image: {
  21038. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21039. extra: (1506.1547 - 55) / 1356.6,
  21040. bottom: 55 / 1506.1547
  21041. }
  21042. },
  21043. },
  21044. [
  21045. {
  21046. name: "Normal",
  21047. height: math.unit(5 + 10 / 12, "feet"),
  21048. default: true
  21049. },
  21050. ]
  21051. ))
  21052. characterMakers.push(() => makeCharacter(
  21053. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21054. {
  21055. front: {
  21056. height: math.unit(293, "meters"),
  21057. weight: math.unit(70400, "tons"),
  21058. name: "Front",
  21059. image: {
  21060. source: "./media/characters/violette/front.svg",
  21061. extra: 1227 / 1180,
  21062. bottom: 0.005
  21063. }
  21064. },
  21065. back: {
  21066. height: math.unit(293, "meters"),
  21067. weight: math.unit(70400, "tons"),
  21068. name: "Back",
  21069. image: {
  21070. source: "./media/characters/violette/back.svg",
  21071. extra: 1227 / 1180,
  21072. bottom: 0.005
  21073. }
  21074. },
  21075. },
  21076. [
  21077. {
  21078. name: "Macro",
  21079. height: math.unit(293, "meters"),
  21080. default: true
  21081. },
  21082. ]
  21083. ))
  21084. characterMakers.push(() => makeCharacter(
  21085. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21086. {
  21087. front: {
  21088. height: math.unit(1050, "feet"),
  21089. weight: math.unit(200000, "tons"),
  21090. name: "Front",
  21091. image: {
  21092. source: "./media/characters/alessandra/front.svg",
  21093. extra: 960 / 912,
  21094. bottom: 0.06
  21095. }
  21096. },
  21097. },
  21098. [
  21099. {
  21100. name: "Macro",
  21101. height: math.unit(1050, "feet")
  21102. },
  21103. {
  21104. name: "Macro+",
  21105. height: math.unit(900, "meters"),
  21106. default: true
  21107. },
  21108. ]
  21109. ))
  21110. characterMakers.push(() => makeCharacter(
  21111. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21112. {
  21113. front: {
  21114. height: math.unit(5, "feet"),
  21115. weight: math.unit(187, "lb"),
  21116. name: "Front",
  21117. image: {
  21118. source: "./media/characters/person/front.svg",
  21119. extra: 3087 / 2945,
  21120. bottom: 91 / 3181
  21121. }
  21122. },
  21123. },
  21124. [
  21125. {
  21126. name: "Micro",
  21127. height: math.unit(3, "inches")
  21128. },
  21129. {
  21130. name: "Normal",
  21131. height: math.unit(5, "feet"),
  21132. default: true
  21133. },
  21134. {
  21135. name: "Macro",
  21136. height: math.unit(90, "feet")
  21137. },
  21138. {
  21139. name: "Max Size",
  21140. height: math.unit(280, "feet")
  21141. },
  21142. ]
  21143. ))
  21144. characterMakers.push(() => makeCharacter(
  21145. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21146. {
  21147. front: {
  21148. height: math.unit(4.5, "meters"),
  21149. weight: math.unit(3200, "lb"),
  21150. name: "Front",
  21151. image: {
  21152. source: "./media/characters/ty/front.svg",
  21153. extra: 1038 / 960,
  21154. bottom: 31.156 / 1068
  21155. }
  21156. },
  21157. back: {
  21158. height: math.unit(4.5, "meters"),
  21159. weight: math.unit(3200, "lb"),
  21160. name: "Back",
  21161. image: {
  21162. source: "./media/characters/ty/back.svg",
  21163. extra: 1044 / 966,
  21164. bottom: 7.48 / 1049
  21165. }
  21166. },
  21167. },
  21168. [
  21169. {
  21170. name: "Normal",
  21171. height: math.unit(4.5, "meters"),
  21172. default: true
  21173. },
  21174. ]
  21175. ))
  21176. characterMakers.push(() => makeCharacter(
  21177. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21178. {
  21179. front: {
  21180. height: math.unit(5 + 4 / 12, "feet"),
  21181. weight: math.unit(115, "lb"),
  21182. name: "Front",
  21183. image: {
  21184. source: "./media/characters/rocky/front.svg",
  21185. extra: 1012 / 975,
  21186. bottom: 54 / 1066
  21187. }
  21188. },
  21189. },
  21190. [
  21191. {
  21192. name: "Normal",
  21193. height: math.unit(5 + 4 / 12, "feet"),
  21194. default: true
  21195. },
  21196. ]
  21197. ))
  21198. characterMakers.push(() => makeCharacter(
  21199. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21200. {
  21201. upright: {
  21202. height: math.unit(6, "meters"),
  21203. weight: math.unit(4000, "kg"),
  21204. name: "Upright",
  21205. image: {
  21206. source: "./media/characters/ruin/upright.svg",
  21207. extra: 668 / 661,
  21208. bottom: 42 / 799.8396
  21209. }
  21210. },
  21211. },
  21212. [
  21213. {
  21214. name: "Normal",
  21215. height: math.unit(6, "meters"),
  21216. default: true
  21217. },
  21218. ]
  21219. ))
  21220. characterMakers.push(() => makeCharacter(
  21221. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21222. {
  21223. front: {
  21224. height: math.unit(5, "feet"),
  21225. weight: math.unit(106, "lb"),
  21226. name: "Front",
  21227. image: {
  21228. source: "./media/characters/robin/front.svg",
  21229. extra: 862 / 799,
  21230. bottom: 42.4 / 914.8856
  21231. }
  21232. },
  21233. },
  21234. [
  21235. {
  21236. name: "Normal",
  21237. height: math.unit(5, "feet"),
  21238. default: true
  21239. },
  21240. ]
  21241. ))
  21242. characterMakers.push(() => makeCharacter(
  21243. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21244. {
  21245. side: {
  21246. height: math.unit(3, "feet"),
  21247. weight: math.unit(225, "lb"),
  21248. name: "Side",
  21249. image: {
  21250. source: "./media/characters/saian/side.svg",
  21251. extra: 566 / 356,
  21252. bottom: 79.7 / 643
  21253. }
  21254. },
  21255. maw: {
  21256. height: math.unit(2.85, "feet"),
  21257. name: "Maw",
  21258. image: {
  21259. source: "./media/characters/saian/maw.svg"
  21260. }
  21261. },
  21262. },
  21263. [
  21264. {
  21265. name: "Normal",
  21266. height: math.unit(3, "feet"),
  21267. default: true
  21268. },
  21269. ]
  21270. ))
  21271. characterMakers.push(() => makeCharacter(
  21272. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21273. {
  21274. side: {
  21275. height: math.unit(8, "feet"),
  21276. weight: math.unit(300, "lb"),
  21277. name: "Side",
  21278. image: {
  21279. source: "./media/characters/equus-silvermane/side.svg",
  21280. extra: 2176 / 2050,
  21281. bottom: 65.7 / 2245
  21282. }
  21283. },
  21284. front: {
  21285. height: math.unit(8, "feet"),
  21286. weight: math.unit(300, "lb"),
  21287. name: "Front",
  21288. image: {
  21289. source: "./media/characters/equus-silvermane/front.svg",
  21290. extra: 4633 / 4400,
  21291. bottom: 71.3 / 4706.915
  21292. }
  21293. },
  21294. sideStepping: {
  21295. height: math.unit(8, "feet"),
  21296. weight: math.unit(300, "lb"),
  21297. name: "Side (Stepping)",
  21298. image: {
  21299. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21300. extra: 1968 / 1860,
  21301. bottom: 16.4 / 1989
  21302. }
  21303. },
  21304. },
  21305. [
  21306. {
  21307. name: "Normal",
  21308. height: math.unit(8, "feet")
  21309. },
  21310. {
  21311. name: "Minimacro",
  21312. height: math.unit(75, "feet"),
  21313. default: true
  21314. },
  21315. {
  21316. name: "Macro",
  21317. height: math.unit(150, "feet")
  21318. },
  21319. {
  21320. name: "Macro+",
  21321. height: math.unit(1000, "feet")
  21322. },
  21323. {
  21324. name: "Megamacro",
  21325. height: math.unit(1, "mile")
  21326. },
  21327. ]
  21328. ))
  21329. characterMakers.push(() => makeCharacter(
  21330. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21331. {
  21332. side: {
  21333. height: math.unit(20, "feet"),
  21334. weight: math.unit(30000, "kg"),
  21335. name: "Side",
  21336. image: {
  21337. source: "./media/characters/windar/side.svg",
  21338. extra: 1491 / 1248,
  21339. bottom: 82.56 / 1568
  21340. }
  21341. },
  21342. },
  21343. [
  21344. {
  21345. name: "Normal",
  21346. height: math.unit(20, "feet"),
  21347. default: true
  21348. },
  21349. ]
  21350. ))
  21351. characterMakers.push(() => makeCharacter(
  21352. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21353. {
  21354. side: {
  21355. height: math.unit(15.66, "feet"),
  21356. weight: math.unit(150, "lb"),
  21357. name: "Side",
  21358. image: {
  21359. source: "./media/characters/melody/side.svg",
  21360. extra: 1097 / 944,
  21361. bottom: 11.8 / 1109
  21362. }
  21363. },
  21364. sideOutfit: {
  21365. height: math.unit(15.66, "feet"),
  21366. weight: math.unit(150, "lb"),
  21367. name: "Side (Outfit)",
  21368. image: {
  21369. source: "./media/characters/melody/side-outfit.svg",
  21370. extra: 1097 / 944,
  21371. bottom: 11.8 / 1109
  21372. }
  21373. },
  21374. },
  21375. [
  21376. {
  21377. name: "Normal",
  21378. height: math.unit(15.66, "feet"),
  21379. default: true
  21380. },
  21381. ]
  21382. ))
  21383. characterMakers.push(() => makeCharacter(
  21384. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21385. {
  21386. front: {
  21387. height: math.unit(8, "feet"),
  21388. weight: math.unit(325, "lb"),
  21389. name: "Front",
  21390. image: {
  21391. source: "./media/characters/windera/front.svg",
  21392. extra: 3180 / 2845,
  21393. bottom: 178 / 3365
  21394. }
  21395. },
  21396. },
  21397. [
  21398. {
  21399. name: "Normal",
  21400. height: math.unit(8, "feet"),
  21401. default: true
  21402. },
  21403. ]
  21404. ))
  21405. characterMakers.push(() => makeCharacter(
  21406. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21407. {
  21408. front: {
  21409. height: math.unit(28.75, "feet"),
  21410. weight: math.unit(2000, "kg"),
  21411. name: "Front",
  21412. image: {
  21413. source: "./media/characters/sonear/front.svg",
  21414. extra: 1041.1 / 964.9,
  21415. bottom: 53.7 / 1096.6
  21416. }
  21417. },
  21418. },
  21419. [
  21420. {
  21421. name: "Normal",
  21422. height: math.unit(28.75, "feet"),
  21423. default: true
  21424. },
  21425. ]
  21426. ))
  21427. characterMakers.push(() => makeCharacter(
  21428. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21429. {
  21430. side: {
  21431. height: math.unit(25.5, "feet"),
  21432. weight: math.unit(23000, "kg"),
  21433. name: "Side",
  21434. image: {
  21435. source: "./media/characters/kanara/side.svg"
  21436. }
  21437. },
  21438. },
  21439. [
  21440. {
  21441. name: "Normal",
  21442. height: math.unit(25.5, "feet"),
  21443. default: true
  21444. },
  21445. ]
  21446. ))
  21447. characterMakers.push(() => makeCharacter(
  21448. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21449. {
  21450. side: {
  21451. height: math.unit(10, "feet"),
  21452. weight: math.unit(1000, "kg"),
  21453. name: "Side",
  21454. image: {
  21455. source: "./media/characters/ereus/side.svg",
  21456. extra: 1157 / 959,
  21457. bottom: 153 / 1312.5
  21458. }
  21459. },
  21460. },
  21461. [
  21462. {
  21463. name: "Normal",
  21464. height: math.unit(10, "feet"),
  21465. default: true
  21466. },
  21467. ]
  21468. ))
  21469. characterMakers.push(() => makeCharacter(
  21470. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21471. {
  21472. side: {
  21473. height: math.unit(4.5, "feet"),
  21474. weight: math.unit(500, "lb"),
  21475. name: "Side",
  21476. image: {
  21477. source: "./media/characters/e-ter/side.svg",
  21478. extra: 1550 / 1248,
  21479. bottom: 146 / 1694
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(4.5, "feet"),
  21487. default: true
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21493. {
  21494. side: {
  21495. height: math.unit(9.7, "feet"),
  21496. weight: math.unit(4000, "kg"),
  21497. name: "Side",
  21498. image: {
  21499. source: "./media/characters/yamie/side.svg"
  21500. }
  21501. },
  21502. },
  21503. [
  21504. {
  21505. name: "Normal",
  21506. height: math.unit(9.7, "feet"),
  21507. default: true
  21508. },
  21509. ]
  21510. ))
  21511. characterMakers.push(() => makeCharacter(
  21512. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21513. {
  21514. front: {
  21515. height: math.unit(50, "feet"),
  21516. weight: math.unit(50000, "kg"),
  21517. name: "Front",
  21518. image: {
  21519. source: "./media/characters/anders/front.svg",
  21520. extra: 570 / 539,
  21521. bottom: 14.7 / 586.7
  21522. }
  21523. },
  21524. },
  21525. [
  21526. {
  21527. name: "Large",
  21528. height: math.unit(50, "feet")
  21529. },
  21530. {
  21531. name: "Macro",
  21532. height: math.unit(2000, "feet"),
  21533. default: true
  21534. },
  21535. {
  21536. name: "Megamacro",
  21537. height: math.unit(12, "miles")
  21538. },
  21539. ]
  21540. ))
  21541. characterMakers.push(() => makeCharacter(
  21542. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21543. {
  21544. front: {
  21545. height: math.unit(7 + 2 / 12, "feet"),
  21546. weight: math.unit(300, "lb"),
  21547. name: "Front",
  21548. image: {
  21549. source: "./media/characters/reban/front.svg",
  21550. extra: 516 / 487,
  21551. bottom: 42.82 / 558.356
  21552. }
  21553. },
  21554. dick: {
  21555. height: math.unit(7 / 5, "feet"),
  21556. name: "Dick",
  21557. image: {
  21558. source: "./media/characters/reban/dick.svg"
  21559. }
  21560. },
  21561. },
  21562. [
  21563. {
  21564. name: "Natural Height",
  21565. height: math.unit(7 + 2 / 12, "feet")
  21566. },
  21567. {
  21568. name: "Macro",
  21569. height: math.unit(500, "feet"),
  21570. default: true
  21571. },
  21572. {
  21573. name: "Canon Height",
  21574. height: math.unit(50, "AU")
  21575. },
  21576. ]
  21577. ))
  21578. characterMakers.push(() => makeCharacter(
  21579. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21580. {
  21581. front: {
  21582. height: math.unit(6, "feet"),
  21583. weight: math.unit(150, "lb"),
  21584. name: "Front",
  21585. image: {
  21586. source: "./media/characters/terrance-keayes/front.svg",
  21587. extra: 1.005,
  21588. bottom: 151 / 1615
  21589. }
  21590. },
  21591. side: {
  21592. height: math.unit(6, "feet"),
  21593. weight: math.unit(150, "lb"),
  21594. name: "Side",
  21595. image: {
  21596. source: "./media/characters/terrance-keayes/side.svg",
  21597. extra: 1.005,
  21598. bottom: 129.4 / 1544
  21599. }
  21600. },
  21601. back: {
  21602. height: math.unit(6, "feet"),
  21603. weight: math.unit(150, "lb"),
  21604. name: "Back",
  21605. image: {
  21606. source: "./media/characters/terrance-keayes/back.svg",
  21607. extra: 1.005,
  21608. bottom: 58.4 / 1557.3
  21609. }
  21610. },
  21611. dick: {
  21612. height: math.unit(6 * 0.208, "feet"),
  21613. name: "Dick",
  21614. image: {
  21615. source: "./media/characters/terrance-keayes/dick.svg"
  21616. }
  21617. },
  21618. },
  21619. [
  21620. {
  21621. name: "Canon Height",
  21622. height: math.unit(35, "miles"),
  21623. default: true
  21624. },
  21625. ]
  21626. ))
  21627. characterMakers.push(() => makeCharacter(
  21628. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21629. {
  21630. front: {
  21631. height: math.unit(6, "feet"),
  21632. weight: math.unit(150, "lb"),
  21633. name: "Front",
  21634. image: {
  21635. source: "./media/characters/ofelia/front.svg",
  21636. extra: 546 / 541,
  21637. bottom: 39 / 583
  21638. }
  21639. },
  21640. back: {
  21641. height: math.unit(6, "feet"),
  21642. weight: math.unit(150, "lb"),
  21643. name: "Back",
  21644. image: {
  21645. source: "./media/characters/ofelia/back.svg",
  21646. extra: 564 / 559.5,
  21647. bottom: 8.69 / 573.02
  21648. }
  21649. },
  21650. maw: {
  21651. height: math.unit(1, "feet"),
  21652. name: "Maw",
  21653. image: {
  21654. source: "./media/characters/ofelia/maw.svg"
  21655. }
  21656. },
  21657. foot: {
  21658. height: math.unit(1.949, "feet"),
  21659. name: "Foot",
  21660. image: {
  21661. source: "./media/characters/ofelia/foot.svg"
  21662. }
  21663. },
  21664. },
  21665. [
  21666. {
  21667. name: "Canon Height",
  21668. height: math.unit(2000, "miles"),
  21669. default: true
  21670. },
  21671. ]
  21672. ))
  21673. characterMakers.push(() => makeCharacter(
  21674. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21675. {
  21676. front: {
  21677. height: math.unit(6, "feet"),
  21678. weight: math.unit(150, "lb"),
  21679. name: "Front",
  21680. image: {
  21681. source: "./media/characters/samuel/front.svg",
  21682. extra: 265 / 258,
  21683. bottom: 2 / 266.1566
  21684. }
  21685. },
  21686. },
  21687. [
  21688. {
  21689. name: "Macro",
  21690. height: math.unit(100, "feet"),
  21691. default: true
  21692. },
  21693. {
  21694. name: "Full Size",
  21695. height: math.unit(1000, "miles")
  21696. },
  21697. ]
  21698. ))
  21699. characterMakers.push(() => makeCharacter(
  21700. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21701. {
  21702. front: {
  21703. height: math.unit(6, "feet"),
  21704. weight: math.unit(300, "lb"),
  21705. name: "Front",
  21706. image: {
  21707. source: "./media/characters/beishir-kiel/front.svg",
  21708. extra: 569 / 547,
  21709. bottom: 41.9 / 609
  21710. }
  21711. },
  21712. maw: {
  21713. height: math.unit(6 * 0.202, "feet"),
  21714. name: "Maw",
  21715. image: {
  21716. source: "./media/characters/beishir-kiel/maw.svg"
  21717. }
  21718. },
  21719. },
  21720. [
  21721. {
  21722. name: "Macro",
  21723. height: math.unit(300, "feet"),
  21724. default: true
  21725. },
  21726. ]
  21727. ))
  21728. characterMakers.push(() => makeCharacter(
  21729. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21730. {
  21731. front: {
  21732. height: math.unit(5 + 8 / 12, "feet"),
  21733. weight: math.unit(120, "lb"),
  21734. name: "Front",
  21735. image: {
  21736. source: "./media/characters/logan-grey/front.svg",
  21737. extra: 2539 / 2393,
  21738. bottom: 97.6 / 2636.37
  21739. }
  21740. },
  21741. frontAlt: {
  21742. height: math.unit(5 + 8 / 12, "feet"),
  21743. weight: math.unit(120, "lb"),
  21744. name: "Front (Alt)",
  21745. image: {
  21746. source: "./media/characters/logan-grey/front-alt.svg",
  21747. extra: 958 / 893,
  21748. bottom: 15 / 970.768
  21749. }
  21750. },
  21751. back: {
  21752. height: math.unit(5 + 8 / 12, "feet"),
  21753. weight: math.unit(120, "lb"),
  21754. name: "Back",
  21755. image: {
  21756. source: "./media/characters/logan-grey/back.svg",
  21757. extra: 958 / 893,
  21758. bottom: 2.1881 / 970.9788
  21759. }
  21760. },
  21761. dick: {
  21762. height: math.unit(1.437, "feet"),
  21763. name: "Dick",
  21764. image: {
  21765. source: "./media/characters/logan-grey/dick.svg"
  21766. }
  21767. },
  21768. },
  21769. [
  21770. {
  21771. name: "Normal",
  21772. height: math.unit(5 + 8 / 12, "feet")
  21773. },
  21774. {
  21775. name: "The 500 Foot Femboy",
  21776. height: math.unit(500, "feet"),
  21777. default: true
  21778. },
  21779. {
  21780. name: "Megmacro",
  21781. height: math.unit(20, "miles")
  21782. },
  21783. ]
  21784. ))
  21785. characterMakers.push(() => makeCharacter(
  21786. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21787. {
  21788. front: {
  21789. height: math.unit(8 + 2 / 12, "feet"),
  21790. weight: math.unit(275, "lb"),
  21791. name: "Front",
  21792. image: {
  21793. source: "./media/characters/draganta/front.svg",
  21794. extra: 1177 / 1135,
  21795. bottom: 33.46 / 1212.1
  21796. }
  21797. },
  21798. },
  21799. [
  21800. {
  21801. name: "Normal",
  21802. height: math.unit(8 + 6 / 12, "feet"),
  21803. default: true
  21804. },
  21805. {
  21806. name: "Macro",
  21807. height: math.unit(150, "feet")
  21808. },
  21809. {
  21810. name: "Megamacro",
  21811. height: math.unit(1000, "miles")
  21812. },
  21813. ]
  21814. ))
  21815. characterMakers.push(() => makeCharacter(
  21816. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21817. {
  21818. front: {
  21819. height: math.unit(1.72, "m"),
  21820. weight: math.unit(80, "lb"),
  21821. name: "Front",
  21822. image: {
  21823. source: "./media/characters/voski/front.svg",
  21824. extra: 2076.22 / 2022.4,
  21825. bottom: 102.7 / 2177.3866
  21826. }
  21827. },
  21828. frontNsfw: {
  21829. height: math.unit(1.72, "m"),
  21830. weight: math.unit(80, "lb"),
  21831. name: "Front (NSFW)",
  21832. image: {
  21833. source: "./media/characters/voski/front-nsfw.svg",
  21834. extra: 2076.22 / 2022.4,
  21835. bottom: 102.7 / 2177.3866
  21836. }
  21837. },
  21838. back: {
  21839. height: math.unit(1.72, "m"),
  21840. weight: math.unit(80, "lb"),
  21841. name: "Back",
  21842. image: {
  21843. source: "./media/characters/voski/back.svg",
  21844. extra: 2104 / 2051,
  21845. bottom: 10.45 / 2113.63
  21846. }
  21847. },
  21848. },
  21849. [
  21850. {
  21851. name: "Normal",
  21852. height: math.unit(1.72, "m")
  21853. },
  21854. {
  21855. name: "Macro",
  21856. height: math.unit(55, "m"),
  21857. default: true
  21858. },
  21859. {
  21860. name: "Macro+",
  21861. height: math.unit(300, "m")
  21862. },
  21863. {
  21864. name: "Macro++",
  21865. height: math.unit(700, "m")
  21866. },
  21867. {
  21868. name: "Macro+++",
  21869. height: math.unit(4500, "m")
  21870. },
  21871. {
  21872. name: "Macro++++",
  21873. height: math.unit(45, "km")
  21874. },
  21875. {
  21876. name: "Macro+++++",
  21877. height: math.unit(1220, "km")
  21878. },
  21879. ]
  21880. ))
  21881. characterMakers.push(() => makeCharacter(
  21882. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21883. {
  21884. front: {
  21885. height: math.unit(2.3, "m"),
  21886. weight: math.unit(304, "kg"),
  21887. name: "Front",
  21888. image: {
  21889. source: "./media/characters/icowom-lee/front.svg",
  21890. extra: 985 / 955,
  21891. bottom: 25.4 / 1012
  21892. }
  21893. },
  21894. fronttentacles: {
  21895. height: math.unit(2.3, "m"),
  21896. weight: math.unit(304, "kg"),
  21897. name: "Front-tentacles",
  21898. image: {
  21899. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21900. extra: 985 / 955,
  21901. bottom: 25.4 / 1012
  21902. }
  21903. },
  21904. back: {
  21905. height: math.unit(2.3, "m"),
  21906. weight: math.unit(304, "kg"),
  21907. name: "Back",
  21908. image: {
  21909. source: "./media/characters/icowom-lee/back.svg",
  21910. extra: 975 / 954,
  21911. bottom: 9.5 / 985
  21912. }
  21913. },
  21914. backtentacles: {
  21915. height: math.unit(2.3, "m"),
  21916. weight: math.unit(304, "kg"),
  21917. name: "Back-tentacles",
  21918. image: {
  21919. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21920. extra: 975 / 954,
  21921. bottom: 9.5 / 985
  21922. }
  21923. },
  21924. frontDressed: {
  21925. height: math.unit(2.3, "m"),
  21926. weight: math.unit(304, "kg"),
  21927. name: "Front (Dressed)",
  21928. image: {
  21929. source: "./media/characters/icowom-lee/front-dressed.svg",
  21930. extra: 3076 / 2933,
  21931. bottom: 51.4 / 3125.1889
  21932. }
  21933. },
  21934. rump: {
  21935. height: math.unit(0.776, "meters"),
  21936. name: "Rump",
  21937. image: {
  21938. source: "./media/characters/icowom-lee/rump.svg"
  21939. }
  21940. },
  21941. genitals: {
  21942. height: math.unit(0.78, "meters"),
  21943. name: "Genitals",
  21944. image: {
  21945. source: "./media/characters/icowom-lee/genitals.svg"
  21946. }
  21947. },
  21948. },
  21949. [
  21950. {
  21951. name: "Normal",
  21952. height: math.unit(2.3, "meters"),
  21953. default: true
  21954. },
  21955. {
  21956. name: "Macro",
  21957. height: math.unit(94, "meters"),
  21958. default: true
  21959. },
  21960. ]
  21961. ))
  21962. characterMakers.push(() => makeCharacter(
  21963. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21964. {
  21965. front: {
  21966. height: math.unit(22, "meters"),
  21967. weight: math.unit(21000, "kg"),
  21968. name: "Front",
  21969. image: {
  21970. source: "./media/characters/shock-diamond/front.svg",
  21971. extra: 2204 / 2053,
  21972. bottom: 65 / 2239.47
  21973. }
  21974. },
  21975. frontNude: {
  21976. height: math.unit(22, "meters"),
  21977. weight: math.unit(21000, "kg"),
  21978. name: "Front (Nude)",
  21979. image: {
  21980. source: "./media/characters/shock-diamond/front-nude.svg",
  21981. extra: 2514 / 2285,
  21982. bottom: 13 / 2527.56
  21983. }
  21984. },
  21985. },
  21986. [
  21987. {
  21988. name: "Normal",
  21989. height: math.unit(3, "meters")
  21990. },
  21991. {
  21992. name: "Macro",
  21993. height: math.unit(22, "meters"),
  21994. default: true
  21995. },
  21996. ]
  21997. ))
  21998. characterMakers.push(() => makeCharacter(
  21999. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  22000. {
  22001. front: {
  22002. height: math.unit(5 + 4 / 12, "feet"),
  22003. weight: math.unit(120, "lb"),
  22004. name: "Front",
  22005. image: {
  22006. source: "./media/characters/rory/front.svg",
  22007. extra: 589 / 556,
  22008. bottom: 45.7 / 635.76
  22009. }
  22010. },
  22011. frontNude: {
  22012. height: math.unit(5 + 4 / 12, "feet"),
  22013. weight: math.unit(120, "lb"),
  22014. name: "Front (Nude)",
  22015. image: {
  22016. source: "./media/characters/rory/front-nude.svg",
  22017. extra: 589 / 556,
  22018. bottom: 45.7 / 635.76
  22019. }
  22020. },
  22021. side: {
  22022. height: math.unit(5 + 4 / 12, "feet"),
  22023. weight: math.unit(120, "lb"),
  22024. name: "Side",
  22025. image: {
  22026. source: "./media/characters/rory/side.svg",
  22027. extra: 597 / 564,
  22028. bottom: 55 / 653
  22029. }
  22030. },
  22031. back: {
  22032. height: math.unit(5 + 4 / 12, "feet"),
  22033. weight: math.unit(120, "lb"),
  22034. name: "Back",
  22035. image: {
  22036. source: "./media/characters/rory/back.svg",
  22037. extra: 620 / 585,
  22038. bottom: 8.86 / 630.43
  22039. }
  22040. },
  22041. dick: {
  22042. height: math.unit(0.86, "feet"),
  22043. name: "Dick",
  22044. image: {
  22045. source: "./media/characters/rory/dick.svg"
  22046. }
  22047. },
  22048. },
  22049. [
  22050. {
  22051. name: "Normal",
  22052. height: math.unit(5 + 4 / 12, "feet"),
  22053. default: true
  22054. },
  22055. {
  22056. name: "Macro",
  22057. height: math.unit(100, "feet")
  22058. },
  22059. {
  22060. name: "Macro+",
  22061. height: math.unit(140, "feet")
  22062. },
  22063. {
  22064. name: "Macro++",
  22065. height: math.unit(300, "feet")
  22066. },
  22067. ]
  22068. ))
  22069. characterMakers.push(() => makeCharacter(
  22070. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22071. {
  22072. front: {
  22073. height: math.unit(5 + 9 / 12, "feet"),
  22074. weight: math.unit(190, "lb"),
  22075. name: "Front",
  22076. image: {
  22077. source: "./media/characters/sprisk/front.svg",
  22078. extra: 1225 / 1180,
  22079. bottom: 42.7 / 1266.4
  22080. }
  22081. },
  22082. frontNsfw: {
  22083. height: math.unit(5 + 9 / 12, "feet"),
  22084. weight: math.unit(190, "lb"),
  22085. name: "Front (NSFW)",
  22086. image: {
  22087. source: "./media/characters/sprisk/front-nsfw.svg",
  22088. extra: 1225 / 1180,
  22089. bottom: 42.7 / 1266.4
  22090. }
  22091. },
  22092. back: {
  22093. height: math.unit(5 + 9 / 12, "feet"),
  22094. weight: math.unit(190, "lb"),
  22095. name: "Back",
  22096. image: {
  22097. source: "./media/characters/sprisk/back.svg",
  22098. extra: 1247 / 1200,
  22099. bottom: 5.6 / 1253.04
  22100. }
  22101. },
  22102. },
  22103. [
  22104. {
  22105. name: "Tiny",
  22106. height: math.unit(2, "inches")
  22107. },
  22108. {
  22109. name: "Normal",
  22110. height: math.unit(5 + 9 / 12, "feet"),
  22111. default: true
  22112. },
  22113. {
  22114. name: "Mini Macro",
  22115. height: math.unit(18, "feet")
  22116. },
  22117. {
  22118. name: "Macro",
  22119. height: math.unit(100, "feet")
  22120. },
  22121. {
  22122. name: "MACRO",
  22123. height: math.unit(50, "miles")
  22124. },
  22125. {
  22126. name: "M A C R O",
  22127. height: math.unit(300, "miles")
  22128. },
  22129. ]
  22130. ))
  22131. characterMakers.push(() => makeCharacter(
  22132. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22133. {
  22134. side: {
  22135. height: math.unit(15.6, "meters"),
  22136. weight: math.unit(700000, "kg"),
  22137. name: "Side",
  22138. image: {
  22139. source: "./media/characters/bunsen/side.svg",
  22140. extra: 1644 / 358
  22141. }
  22142. },
  22143. foot: {
  22144. height: math.unit(1.611 * 1644 / 358, "meter"),
  22145. name: "Foot",
  22146. image: {
  22147. source: "./media/characters/bunsen/foot.svg"
  22148. }
  22149. },
  22150. },
  22151. [
  22152. {
  22153. name: "Small",
  22154. height: math.unit(10, "feet")
  22155. },
  22156. {
  22157. name: "Normal",
  22158. height: math.unit(15.6, "meters"),
  22159. default: true
  22160. },
  22161. ]
  22162. ))
  22163. characterMakers.push(() => makeCharacter(
  22164. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22165. {
  22166. front: {
  22167. height: math.unit(4 + 11 / 12, "feet"),
  22168. weight: math.unit(140, "lb"),
  22169. name: "Front",
  22170. image: {
  22171. source: "./media/characters/sesh/front.svg",
  22172. extra: 3420 / 3231,
  22173. bottom: 72 / 3949.5
  22174. }
  22175. },
  22176. },
  22177. [
  22178. {
  22179. name: "Normal",
  22180. height: math.unit(4 + 11 / 12, "feet")
  22181. },
  22182. {
  22183. name: "Grown",
  22184. height: math.unit(15, "feet"),
  22185. default: true
  22186. },
  22187. {
  22188. name: "Macro",
  22189. height: math.unit(1500, "feet")
  22190. },
  22191. {
  22192. name: "Megamacro",
  22193. height: math.unit(30, "miles")
  22194. },
  22195. {
  22196. name: "Continental",
  22197. height: math.unit(3000, "miles")
  22198. },
  22199. {
  22200. name: "Gravity Mass",
  22201. height: math.unit(300000, "miles")
  22202. },
  22203. {
  22204. name: "Planet Buster",
  22205. height: math.unit(30000000, "miles")
  22206. },
  22207. {
  22208. name: "Big",
  22209. height: math.unit(3000000000, "miles")
  22210. },
  22211. ]
  22212. ))
  22213. characterMakers.push(() => makeCharacter(
  22214. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22215. {
  22216. front: {
  22217. height: math.unit(9, "feet"),
  22218. weight: math.unit(350, "lb"),
  22219. name: "Front",
  22220. image: {
  22221. source: "./media/characters/pepper/front.svg",
  22222. extra: 1448 / 1312,
  22223. bottom: 9.4 / 1457.88
  22224. }
  22225. },
  22226. back: {
  22227. height: math.unit(9, "feet"),
  22228. weight: math.unit(350, "lb"),
  22229. name: "Back",
  22230. image: {
  22231. source: "./media/characters/pepper/back.svg",
  22232. extra: 1423 / 1300,
  22233. bottom: 4.6 / 1429
  22234. }
  22235. },
  22236. maw: {
  22237. height: math.unit(0.932, "feet"),
  22238. name: "Maw",
  22239. image: {
  22240. source: "./media/characters/pepper/maw.svg"
  22241. }
  22242. },
  22243. },
  22244. [
  22245. {
  22246. name: "Normal",
  22247. height: math.unit(9, "feet"),
  22248. default: true
  22249. },
  22250. ]
  22251. ))
  22252. characterMakers.push(() => makeCharacter(
  22253. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22254. {
  22255. front: {
  22256. height: math.unit(6, "feet"),
  22257. weight: math.unit(150, "lb"),
  22258. name: "Front",
  22259. image: {
  22260. source: "./media/characters/maelstrom/front.svg",
  22261. extra: 2100 / 1883,
  22262. bottom: 94 / 2196.7
  22263. }
  22264. },
  22265. },
  22266. [
  22267. {
  22268. name: "Less Kaiju",
  22269. height: math.unit(200, "feet")
  22270. },
  22271. {
  22272. name: "Kaiju",
  22273. height: math.unit(400, "feet"),
  22274. default: true
  22275. },
  22276. {
  22277. name: "Kaiju-er",
  22278. height: math.unit(600, "feet")
  22279. },
  22280. ]
  22281. ))
  22282. characterMakers.push(() => makeCharacter(
  22283. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22284. {
  22285. front: {
  22286. height: math.unit(6 + 5 / 12, "feet"),
  22287. weight: math.unit(180, "lb"),
  22288. name: "Front",
  22289. image: {
  22290. source: "./media/characters/lexir/front.svg",
  22291. extra: 180 / 172,
  22292. bottom: 12 / 192
  22293. }
  22294. },
  22295. back: {
  22296. height: math.unit(6 + 5 / 12, "feet"),
  22297. weight: math.unit(180, "lb"),
  22298. name: "Back",
  22299. image: {
  22300. source: "./media/characters/lexir/back.svg",
  22301. extra: 183.84 / 175.5,
  22302. bottom: 3.1 / 187
  22303. }
  22304. },
  22305. },
  22306. [
  22307. {
  22308. name: "Very Smal",
  22309. height: math.unit(1, "nm")
  22310. },
  22311. {
  22312. name: "Normal",
  22313. height: math.unit(6 + 5 / 12, "feet"),
  22314. default: true
  22315. },
  22316. {
  22317. name: "Macro",
  22318. height: math.unit(1, "mile")
  22319. },
  22320. {
  22321. name: "Megamacro",
  22322. height: math.unit(50, "miles")
  22323. },
  22324. ]
  22325. ))
  22326. characterMakers.push(() => makeCharacter(
  22327. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22328. {
  22329. front: {
  22330. height: math.unit(1.5, "meters"),
  22331. weight: math.unit(100, "lb"),
  22332. name: "Front",
  22333. image: {
  22334. source: "./media/characters/maksio/front.svg",
  22335. extra: 1549 / 1531,
  22336. bottom: 123.7 / 1674.5429
  22337. }
  22338. },
  22339. back: {
  22340. height: math.unit(1.5, "meters"),
  22341. weight: math.unit(100, "lb"),
  22342. name: "Back",
  22343. image: {
  22344. source: "./media/characters/maksio/back.svg",
  22345. extra: 1541 / 1509,
  22346. bottom: 97 / 1639
  22347. }
  22348. },
  22349. hand: {
  22350. height: math.unit(0.621, "feet"),
  22351. name: "Hand",
  22352. image: {
  22353. source: "./media/characters/maksio/hand.svg"
  22354. }
  22355. },
  22356. foot: {
  22357. height: math.unit(1.611, "feet"),
  22358. name: "Foot",
  22359. image: {
  22360. source: "./media/characters/maksio/foot.svg"
  22361. }
  22362. },
  22363. },
  22364. [
  22365. {
  22366. name: "Shrunken",
  22367. height: math.unit(10, "cm")
  22368. },
  22369. {
  22370. name: "Normal",
  22371. height: math.unit(150, "cm"),
  22372. default: true
  22373. },
  22374. ]
  22375. ))
  22376. characterMakers.push(() => makeCharacter(
  22377. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22378. {
  22379. front: {
  22380. height: math.unit(100, "feet"),
  22381. name: "Front",
  22382. image: {
  22383. source: "./media/characters/erza-bear/front.svg",
  22384. extra: 2449 / 2390,
  22385. bottom: 46 / 2494
  22386. }
  22387. },
  22388. back: {
  22389. height: math.unit(100, "feet"),
  22390. name: "Back",
  22391. image: {
  22392. source: "./media/characters/erza-bear/back.svg",
  22393. extra: 2489 / 2430,
  22394. bottom: 85.4 / 2480
  22395. }
  22396. },
  22397. tail: {
  22398. height: math.unit(42, "feet"),
  22399. name: "Tail",
  22400. image: {
  22401. source: "./media/characters/erza-bear/tail.svg"
  22402. }
  22403. },
  22404. tongue: {
  22405. height: math.unit(8, "feet"),
  22406. name: "Tongue",
  22407. image: {
  22408. source: "./media/characters/erza-bear/tongue.svg"
  22409. }
  22410. },
  22411. dick: {
  22412. height: math.unit(10.5, "feet"),
  22413. name: "Dick",
  22414. image: {
  22415. source: "./media/characters/erza-bear/dick.svg"
  22416. }
  22417. },
  22418. dickVertical: {
  22419. height: math.unit(16.9, "feet"),
  22420. name: "Dick (Vertical)",
  22421. image: {
  22422. source: "./media/characters/erza-bear/dick-vertical.svg"
  22423. }
  22424. },
  22425. },
  22426. [
  22427. {
  22428. name: "Macro",
  22429. height: math.unit(100, "feet"),
  22430. default: true
  22431. },
  22432. ]
  22433. ))
  22434. characterMakers.push(() => makeCharacter(
  22435. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22436. {
  22437. front: {
  22438. height: math.unit(172, "cm"),
  22439. weight: math.unit(73, "kg"),
  22440. name: "Front",
  22441. image: {
  22442. source: "./media/characters/violet-flor/front.svg",
  22443. extra: 1530 / 1442,
  22444. bottom: 61.9 / 1588.8
  22445. }
  22446. },
  22447. back: {
  22448. height: math.unit(180, "cm"),
  22449. weight: math.unit(73, "kg"),
  22450. name: "Back",
  22451. image: {
  22452. source: "./media/characters/violet-flor/back.svg",
  22453. extra: 1692 / 1630,
  22454. bottom: 20 / 1712
  22455. }
  22456. },
  22457. },
  22458. [
  22459. {
  22460. name: "Normal",
  22461. height: math.unit(172, "cm"),
  22462. default: true
  22463. },
  22464. ]
  22465. ))
  22466. characterMakers.push(() => makeCharacter(
  22467. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22468. {
  22469. front: {
  22470. height: math.unit(6, "feet"),
  22471. weight: math.unit(220, "lb"),
  22472. name: "Front",
  22473. image: {
  22474. source: "./media/characters/lynn-rhea/front.svg",
  22475. extra: 310 / 273
  22476. }
  22477. },
  22478. back: {
  22479. height: math.unit(6, "feet"),
  22480. weight: math.unit(220, "lb"),
  22481. name: "Back",
  22482. image: {
  22483. source: "./media/characters/lynn-rhea/back.svg",
  22484. extra: 310 / 273
  22485. }
  22486. },
  22487. dicks: {
  22488. height: math.unit(0.9, "feet"),
  22489. name: "Dicks",
  22490. image: {
  22491. source: "./media/characters/lynn-rhea/dicks.svg"
  22492. }
  22493. },
  22494. slit: {
  22495. height: math.unit(0.4, "feet"),
  22496. name: "Slit",
  22497. image: {
  22498. source: "./media/characters/lynn-rhea/slit.svg"
  22499. }
  22500. },
  22501. },
  22502. [
  22503. {
  22504. name: "Micro",
  22505. height: math.unit(1, "inch")
  22506. },
  22507. {
  22508. name: "Macro",
  22509. height: math.unit(60, "feet"),
  22510. default: true
  22511. },
  22512. {
  22513. name: "Megamacro",
  22514. height: math.unit(2, "miles")
  22515. },
  22516. {
  22517. name: "Gigamacro",
  22518. height: math.unit(3, "earths")
  22519. },
  22520. {
  22521. name: "Galactic",
  22522. height: math.unit(0.8, "galaxies")
  22523. },
  22524. ]
  22525. ))
  22526. characterMakers.push(() => makeCharacter(
  22527. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22528. {
  22529. front: {
  22530. height: math.unit(1600, "feet"),
  22531. weight: math.unit(85758785169, "kg"),
  22532. name: "Front",
  22533. image: {
  22534. source: "./media/characters/valathos/front.svg",
  22535. extra: 1451 / 1339
  22536. }
  22537. },
  22538. },
  22539. [
  22540. {
  22541. name: "Macro",
  22542. height: math.unit(1600, "feet"),
  22543. default: true
  22544. },
  22545. ]
  22546. ))
  22547. characterMakers.push(() => makeCharacter(
  22548. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22549. {
  22550. front: {
  22551. height: math.unit(7 + 5 / 12, "feet"),
  22552. weight: math.unit(300, "lb"),
  22553. name: "Front",
  22554. image: {
  22555. source: "./media/characters/azula/front.svg",
  22556. extra: 3208 / 2880,
  22557. bottom: 80.2 / 3277
  22558. }
  22559. },
  22560. back: {
  22561. height: math.unit(7 + 5 / 12, "feet"),
  22562. weight: math.unit(300, "lb"),
  22563. name: "Back",
  22564. image: {
  22565. source: "./media/characters/azula/back.svg",
  22566. extra: 3169 / 2822,
  22567. bottom: 150.6 / 3321
  22568. }
  22569. },
  22570. },
  22571. [
  22572. {
  22573. name: "Normal",
  22574. height: math.unit(7 + 5 / 12, "feet"),
  22575. default: true
  22576. },
  22577. {
  22578. name: "Big",
  22579. height: math.unit(20, "feet")
  22580. },
  22581. ]
  22582. ))
  22583. characterMakers.push(() => makeCharacter(
  22584. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22585. {
  22586. front: {
  22587. height: math.unit(5 + 1 / 12, "feet"),
  22588. weight: math.unit(110, "lb"),
  22589. name: "Front",
  22590. image: {
  22591. source: "./media/characters/rupert/front.svg",
  22592. extra: 1549 / 1495,
  22593. bottom: 54.2 / 1604.4
  22594. }
  22595. },
  22596. },
  22597. [
  22598. {
  22599. name: "Normal",
  22600. height: math.unit(5 + 1 / 12, "feet"),
  22601. default: true
  22602. },
  22603. ]
  22604. ))
  22605. characterMakers.push(() => makeCharacter(
  22606. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro", "taur"] },
  22607. {
  22608. front: {
  22609. height: math.unit(8 + 4 / 12, "feet"),
  22610. weight: math.unit(350, "lb"),
  22611. name: "Front",
  22612. image: {
  22613. source: "./media/characters/sheera-castellar/front.svg",
  22614. extra: 1957 / 1894,
  22615. bottom: 26.97 / 1975.017
  22616. }
  22617. },
  22618. side: {
  22619. height: math.unit(8 + 4 / 12, "feet"),
  22620. weight: math.unit(350, "lb"),
  22621. name: "Side",
  22622. image: {
  22623. source: "./media/characters/sheera-castellar/side.svg",
  22624. extra: 1957 / 1894
  22625. }
  22626. },
  22627. back: {
  22628. height: math.unit(8 + 4 / 12, "feet"),
  22629. weight: math.unit(350, "lb"),
  22630. name: "Back",
  22631. image: {
  22632. source: "./media/characters/sheera-castellar/back.svg",
  22633. extra: 1957 / 1894
  22634. }
  22635. },
  22636. angled: {
  22637. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22638. weight: math.unit(350, "lb"),
  22639. name: "Angled",
  22640. image: {
  22641. source: "./media/characters/sheera-castellar/angled.svg",
  22642. extra: 1807 / 1707,
  22643. bottom: 68 / 1875
  22644. }
  22645. },
  22646. genitals: {
  22647. height: math.unit(2.2, "feet"),
  22648. name: "Genitals",
  22649. image: {
  22650. source: "./media/characters/sheera-castellar/genitals.svg"
  22651. }
  22652. },
  22653. taur: {
  22654. height: math.unit(10 + 6/12, "feet"),
  22655. name: "Taur",
  22656. image: {
  22657. source: "./media/characters/sheera-castellar/taur.svg",
  22658. extra: 2017/1909,
  22659. bottom: 185/2202
  22660. }
  22661. },
  22662. },
  22663. [
  22664. {
  22665. name: "Normal",
  22666. height: math.unit(8 + 4 / 12, "feet")
  22667. },
  22668. {
  22669. name: "Macro",
  22670. height: math.unit(150, "feet"),
  22671. default: true
  22672. },
  22673. {
  22674. name: "Macro+",
  22675. height: math.unit(800, "feet")
  22676. },
  22677. ]
  22678. ))
  22679. characterMakers.push(() => makeCharacter(
  22680. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22681. {
  22682. front: {
  22683. height: math.unit(6, "feet"),
  22684. weight: math.unit(150, "lb"),
  22685. name: "Front",
  22686. image: {
  22687. source: "./media/characters/jaipur/front.svg",
  22688. extra: 3860 / 3731,
  22689. bottom: 287 / 4140
  22690. }
  22691. },
  22692. back: {
  22693. height: math.unit(6, "feet"),
  22694. weight: math.unit(150, "lb"),
  22695. name: "Back",
  22696. image: {
  22697. source: "./media/characters/jaipur/back.svg",
  22698. extra: 4060 / 3930,
  22699. bottom: 151 / 4200
  22700. }
  22701. },
  22702. },
  22703. [
  22704. {
  22705. name: "Normal",
  22706. height: math.unit(1.85, "meters"),
  22707. default: true
  22708. },
  22709. {
  22710. name: "Macro",
  22711. height: math.unit(150, "meters")
  22712. },
  22713. {
  22714. name: "Macro+",
  22715. height: math.unit(0.5, "miles")
  22716. },
  22717. {
  22718. name: "Macro++",
  22719. height: math.unit(2.5, "miles")
  22720. },
  22721. {
  22722. name: "Macro+++",
  22723. height: math.unit(12, "miles")
  22724. },
  22725. {
  22726. name: "Macro++++",
  22727. height: math.unit(120, "miles")
  22728. },
  22729. {
  22730. name: "Macro+++++",
  22731. height: math.unit(1200, "miles")
  22732. },
  22733. ]
  22734. ))
  22735. characterMakers.push(() => makeCharacter(
  22736. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22737. {
  22738. front: {
  22739. height: math.unit(6, "feet"),
  22740. weight: math.unit(150, "lb"),
  22741. name: "Front",
  22742. image: {
  22743. source: "./media/characters/sheila-wolf/front.svg",
  22744. extra: 1931 / 1808,
  22745. bottom: 29.5 / 1960
  22746. }
  22747. },
  22748. dick: {
  22749. height: math.unit(1.464, "feet"),
  22750. name: "Dick",
  22751. image: {
  22752. source: "./media/characters/sheila-wolf/dick.svg"
  22753. }
  22754. },
  22755. muzzle: {
  22756. height: math.unit(0.513, "feet"),
  22757. name: "Muzzle",
  22758. image: {
  22759. source: "./media/characters/sheila-wolf/muzzle.svg"
  22760. }
  22761. },
  22762. },
  22763. [
  22764. {
  22765. name: "Macro",
  22766. height: math.unit(70, "feet"),
  22767. default: true
  22768. },
  22769. ]
  22770. ))
  22771. characterMakers.push(() => makeCharacter(
  22772. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22773. {
  22774. front: {
  22775. height: math.unit(32, "meters"),
  22776. weight: math.unit(300000, "kg"),
  22777. name: "Front",
  22778. image: {
  22779. source: "./media/characters/almor/front.svg",
  22780. extra: 1408 / 1322,
  22781. bottom: 94.6 / 1506.5
  22782. }
  22783. },
  22784. },
  22785. [
  22786. {
  22787. name: "Macro",
  22788. height: math.unit(32, "meters"),
  22789. default: true
  22790. },
  22791. ]
  22792. ))
  22793. characterMakers.push(() => makeCharacter(
  22794. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22795. {
  22796. front: {
  22797. height: math.unit(7, "feet"),
  22798. weight: math.unit(200, "lb"),
  22799. name: "Front",
  22800. image: {
  22801. source: "./media/characters/silver/front.svg",
  22802. extra: 472.1 / 450.5,
  22803. bottom: 26.5 / 499.424
  22804. }
  22805. },
  22806. },
  22807. [
  22808. {
  22809. name: "Normal",
  22810. height: math.unit(7, "feet"),
  22811. default: true
  22812. },
  22813. {
  22814. name: "Macro",
  22815. height: math.unit(800, "feet")
  22816. },
  22817. {
  22818. name: "Megamacro",
  22819. height: math.unit(250, "miles")
  22820. },
  22821. ]
  22822. ))
  22823. characterMakers.push(() => makeCharacter(
  22824. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22825. {
  22826. front: {
  22827. height: math.unit(6, "feet"),
  22828. weight: math.unit(150, "lb"),
  22829. name: "Front",
  22830. image: {
  22831. source: "./media/characters/pliskin/front.svg",
  22832. extra: 1469 / 1359,
  22833. bottom: 70 / 1540
  22834. }
  22835. },
  22836. },
  22837. [
  22838. {
  22839. name: "Micro",
  22840. height: math.unit(3, "inches")
  22841. },
  22842. {
  22843. name: "Normal",
  22844. height: math.unit(5 + 11 / 12, "feet"),
  22845. default: true
  22846. },
  22847. {
  22848. name: "Macro",
  22849. height: math.unit(120, "feet")
  22850. },
  22851. ]
  22852. ))
  22853. characterMakers.push(() => makeCharacter(
  22854. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22855. {
  22856. front: {
  22857. height: math.unit(6, "feet"),
  22858. weight: math.unit(150, "lb"),
  22859. name: "Front",
  22860. image: {
  22861. source: "./media/characters/sammy/front.svg",
  22862. extra: 1193 / 1089,
  22863. bottom: 30.5 / 1226
  22864. }
  22865. },
  22866. },
  22867. [
  22868. {
  22869. name: "Macro",
  22870. height: math.unit(1700, "feet"),
  22871. default: true
  22872. },
  22873. {
  22874. name: "Examacro",
  22875. height: math.unit(2.5e9, "lightyears")
  22876. },
  22877. ]
  22878. ))
  22879. characterMakers.push(() => makeCharacter(
  22880. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22881. {
  22882. front: {
  22883. height: math.unit(21, "meters"),
  22884. weight: math.unit(12, "tonnes"),
  22885. name: "Front",
  22886. image: {
  22887. source: "./media/characters/kuru/front.svg",
  22888. extra: 4301 / 3785,
  22889. bottom: 371.3 / 4691
  22890. }
  22891. },
  22892. },
  22893. [
  22894. {
  22895. name: "Macro",
  22896. height: math.unit(21, "meters"),
  22897. default: true
  22898. },
  22899. ]
  22900. ))
  22901. characterMakers.push(() => makeCharacter(
  22902. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22903. {
  22904. front: {
  22905. height: math.unit(23, "meters"),
  22906. weight: math.unit(12.2, "tonnes"),
  22907. name: "Front",
  22908. image: {
  22909. source: "./media/characters/rakka/front.svg",
  22910. extra: 4670 / 4169,
  22911. bottom: 301 / 4968.7
  22912. }
  22913. },
  22914. },
  22915. [
  22916. {
  22917. name: "Macro",
  22918. height: math.unit(23, "meters"),
  22919. default: true
  22920. },
  22921. ]
  22922. ))
  22923. characterMakers.push(() => makeCharacter(
  22924. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22925. {
  22926. front: {
  22927. height: math.unit(6, "feet"),
  22928. weight: math.unit(150, "lb"),
  22929. name: "Front",
  22930. image: {
  22931. source: "./media/characters/rhys-feline/front.svg",
  22932. extra: 2488 / 2308,
  22933. bottom: 35.67 / 2519.19
  22934. }
  22935. },
  22936. },
  22937. [
  22938. {
  22939. name: "Really Small",
  22940. height: math.unit(1, "nm")
  22941. },
  22942. {
  22943. name: "Micro",
  22944. height: math.unit(4, "inches")
  22945. },
  22946. {
  22947. name: "Normal",
  22948. height: math.unit(4 + 10 / 12, "feet"),
  22949. default: true
  22950. },
  22951. {
  22952. name: "Macro",
  22953. height: math.unit(100, "feet")
  22954. },
  22955. {
  22956. name: "Megamacto",
  22957. height: math.unit(50, "miles")
  22958. },
  22959. ]
  22960. ))
  22961. characterMakers.push(() => makeCharacter(
  22962. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22963. {
  22964. side: {
  22965. height: math.unit(30, "feet"),
  22966. weight: math.unit(35000, "kg"),
  22967. name: "Side",
  22968. image: {
  22969. source: "./media/characters/alydar/side.svg",
  22970. extra: 234 / 222,
  22971. bottom: 6.5 / 241
  22972. }
  22973. },
  22974. front: {
  22975. height: math.unit(30, "feet"),
  22976. weight: math.unit(35000, "kg"),
  22977. name: "Front",
  22978. image: {
  22979. source: "./media/characters/alydar/front.svg",
  22980. extra: 223.37 / 210.2,
  22981. bottom: 22.3 / 246.76
  22982. }
  22983. },
  22984. top: {
  22985. height: math.unit(64.54, "feet"),
  22986. weight: math.unit(35000, "kg"),
  22987. name: "Top",
  22988. image: {
  22989. source: "./media/characters/alydar/top.svg"
  22990. }
  22991. },
  22992. anthro: {
  22993. height: math.unit(30, "feet"),
  22994. weight: math.unit(9000, "kg"),
  22995. name: "Anthro",
  22996. image: {
  22997. source: "./media/characters/alydar/anthro.svg",
  22998. extra: 432 / 421,
  22999. bottom: 7.18 / 440
  23000. }
  23001. },
  23002. maw: {
  23003. height: math.unit(11.693, "feet"),
  23004. name: "Maw",
  23005. image: {
  23006. source: "./media/characters/alydar/maw.svg"
  23007. }
  23008. },
  23009. head: {
  23010. height: math.unit(11.693, "feet"),
  23011. name: "Head",
  23012. image: {
  23013. source: "./media/characters/alydar/head.svg"
  23014. }
  23015. },
  23016. headAlt: {
  23017. height: math.unit(12.861, "feet"),
  23018. name: "Head (Alt)",
  23019. image: {
  23020. source: "./media/characters/alydar/head-alt.svg"
  23021. }
  23022. },
  23023. wing: {
  23024. height: math.unit(20.712, "feet"),
  23025. name: "Wing",
  23026. image: {
  23027. source: "./media/characters/alydar/wing.svg"
  23028. }
  23029. },
  23030. wingFeather: {
  23031. height: math.unit(9.662, "feet"),
  23032. name: "Wing Feather",
  23033. image: {
  23034. source: "./media/characters/alydar/wing-feather.svg"
  23035. }
  23036. },
  23037. countourFeather: {
  23038. height: math.unit(4.154, "feet"),
  23039. name: "Contour Feather",
  23040. image: {
  23041. source: "./media/characters/alydar/contour-feather.svg"
  23042. }
  23043. },
  23044. },
  23045. [
  23046. {
  23047. name: "Diplomatic",
  23048. height: math.unit(13, "feet"),
  23049. default: true
  23050. },
  23051. {
  23052. name: "Small",
  23053. height: math.unit(30, "feet")
  23054. },
  23055. {
  23056. name: "Normal",
  23057. height: math.unit(95, "feet"),
  23058. default: true
  23059. },
  23060. {
  23061. name: "Large",
  23062. height: math.unit(285, "feet")
  23063. },
  23064. {
  23065. name: "Incomprehensible",
  23066. height: math.unit(450, "megameters")
  23067. },
  23068. ]
  23069. ))
  23070. characterMakers.push(() => makeCharacter(
  23071. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23072. {
  23073. side: {
  23074. height: math.unit(11, "feet"),
  23075. weight: math.unit(1750, "kg"),
  23076. name: "Side",
  23077. image: {
  23078. source: "./media/characters/selicia/side.svg",
  23079. extra: 440 / 396,
  23080. bottom: 24.8 / 465.979
  23081. }
  23082. },
  23083. maw: {
  23084. height: math.unit(4.665, "feet"),
  23085. name: "Maw",
  23086. image: {
  23087. source: "./media/characters/selicia/maw.svg"
  23088. }
  23089. },
  23090. },
  23091. [
  23092. {
  23093. name: "Normal",
  23094. height: math.unit(11, "feet"),
  23095. default: true
  23096. },
  23097. ]
  23098. ))
  23099. characterMakers.push(() => makeCharacter(
  23100. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23101. {
  23102. side: {
  23103. height: math.unit(2 + 6 / 12, "feet"),
  23104. weight: math.unit(30, "lb"),
  23105. name: "Side",
  23106. image: {
  23107. source: "./media/characters/layla/side.svg",
  23108. extra: 244 / 188,
  23109. bottom: 18.2 / 262.1
  23110. }
  23111. },
  23112. back: {
  23113. height: math.unit(2 + 6 / 12, "feet"),
  23114. weight: math.unit(30, "lb"),
  23115. name: "Back",
  23116. image: {
  23117. source: "./media/characters/layla/back.svg",
  23118. extra: 308 / 241.5,
  23119. bottom: 8.9 / 316.8
  23120. }
  23121. },
  23122. cumming: {
  23123. height: math.unit(2 + 6 / 12, "feet"),
  23124. weight: math.unit(30, "lb"),
  23125. name: "Cumming",
  23126. image: {
  23127. source: "./media/characters/layla/cumming.svg",
  23128. extra: 342 / 279,
  23129. bottom: 595 / 938
  23130. }
  23131. },
  23132. dickFlaccid: {
  23133. height: math.unit(2.595, "feet"),
  23134. name: "Flaccid Genitals",
  23135. image: {
  23136. source: "./media/characters/layla/dick-flaccid.svg"
  23137. }
  23138. },
  23139. dickErect: {
  23140. height: math.unit(2.359, "feet"),
  23141. name: "Erect Genitals",
  23142. image: {
  23143. source: "./media/characters/layla/dick-erect.svg"
  23144. }
  23145. },
  23146. },
  23147. [
  23148. {
  23149. name: "Micro",
  23150. height: math.unit(1, "inch")
  23151. },
  23152. {
  23153. name: "Small",
  23154. height: math.unit(1, "foot")
  23155. },
  23156. {
  23157. name: "Normal",
  23158. height: math.unit(2 + 6 / 12, "feet"),
  23159. default: true
  23160. },
  23161. {
  23162. name: "Macro",
  23163. height: math.unit(200, "feet")
  23164. },
  23165. {
  23166. name: "Megamacro",
  23167. height: math.unit(1000, "miles")
  23168. },
  23169. {
  23170. name: "Planetary",
  23171. height: math.unit(8000, "miles")
  23172. },
  23173. {
  23174. name: "True Layla",
  23175. height: math.unit(200000 * 7, "multiverses")
  23176. },
  23177. ]
  23178. ))
  23179. characterMakers.push(() => makeCharacter(
  23180. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23181. {
  23182. back: {
  23183. height: math.unit(10.5, "feet"),
  23184. weight: math.unit(800, "lb"),
  23185. name: "Back",
  23186. image: {
  23187. source: "./media/characters/knox/back.svg",
  23188. extra: 1486 / 1089,
  23189. bottom: 107 / 1601.4
  23190. }
  23191. },
  23192. side: {
  23193. height: math.unit(10.5, "feet"),
  23194. weight: math.unit(800, "lb"),
  23195. name: "Side",
  23196. image: {
  23197. source: "./media/characters/knox/side.svg",
  23198. extra: 244 / 218,
  23199. bottom: 14 / 260
  23200. }
  23201. },
  23202. },
  23203. [
  23204. {
  23205. name: "Compact",
  23206. height: math.unit(10.5, "feet"),
  23207. default: true
  23208. },
  23209. {
  23210. name: "Dynamax",
  23211. height: math.unit(210, "feet")
  23212. },
  23213. {
  23214. name: "Full Macro",
  23215. height: math.unit(850, "feet")
  23216. },
  23217. ]
  23218. ))
  23219. characterMakers.push(() => makeCharacter(
  23220. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23221. {
  23222. front: {
  23223. height: math.unit(6, "feet"),
  23224. weight: math.unit(152, "lb"),
  23225. name: "Front",
  23226. image: {
  23227. source: "./media/characters/shin-pikachu/front.svg",
  23228. extra: 1574 / 1480,
  23229. bottom: 53.3 / 1626
  23230. }
  23231. },
  23232. hand: {
  23233. height: math.unit(1.055, "feet"),
  23234. name: "Hand",
  23235. image: {
  23236. source: "./media/characters/shin-pikachu/hand.svg"
  23237. }
  23238. },
  23239. foot: {
  23240. height: math.unit(1.1, "feet"),
  23241. name: "Foot",
  23242. image: {
  23243. source: "./media/characters/shin-pikachu/foot.svg"
  23244. }
  23245. },
  23246. collar: {
  23247. height: math.unit(0.386, "feet"),
  23248. name: "Collar",
  23249. image: {
  23250. source: "./media/characters/shin-pikachu/collar.svg"
  23251. }
  23252. },
  23253. },
  23254. [
  23255. {
  23256. name: "Smallest",
  23257. height: math.unit(0.5, "inches")
  23258. },
  23259. {
  23260. name: "Micro",
  23261. height: math.unit(6, "inches")
  23262. },
  23263. {
  23264. name: "Normal",
  23265. height: math.unit(6, "feet"),
  23266. default: true
  23267. },
  23268. {
  23269. name: "Macro",
  23270. height: math.unit(150, "feet")
  23271. },
  23272. ]
  23273. ))
  23274. characterMakers.push(() => makeCharacter(
  23275. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23276. {
  23277. front: {
  23278. height: math.unit(28, "feet"),
  23279. weight: math.unit(10500, "lb"),
  23280. name: "Front",
  23281. image: {
  23282. source: "./media/characters/kayda/front.svg",
  23283. extra: 1536 / 1428,
  23284. bottom: 68.7 / 1603
  23285. }
  23286. },
  23287. back: {
  23288. height: math.unit(28, "feet"),
  23289. weight: math.unit(10500, "lb"),
  23290. name: "Back",
  23291. image: {
  23292. source: "./media/characters/kayda/back.svg",
  23293. extra: 1557 / 1464,
  23294. bottom: 39.5 / 1597.49
  23295. }
  23296. },
  23297. dick: {
  23298. height: math.unit(3.858, "feet"),
  23299. name: "Dick",
  23300. image: {
  23301. source: "./media/characters/kayda/dick.svg"
  23302. }
  23303. },
  23304. },
  23305. [
  23306. {
  23307. name: "Macro",
  23308. height: math.unit(28, "feet"),
  23309. default: true
  23310. },
  23311. ]
  23312. ))
  23313. characterMakers.push(() => makeCharacter(
  23314. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23315. {
  23316. front: {
  23317. height: math.unit(10 + 11 / 12, "feet"),
  23318. weight: math.unit(1400, "lb"),
  23319. name: "Front",
  23320. image: {
  23321. source: "./media/characters/brian/front.svg",
  23322. extra: 737 / 692,
  23323. bottom: 55.4 / 785
  23324. }
  23325. },
  23326. },
  23327. [
  23328. {
  23329. name: "Normal",
  23330. height: math.unit(10 + 11 / 12, "feet"),
  23331. default: true
  23332. },
  23333. ]
  23334. ))
  23335. characterMakers.push(() => makeCharacter(
  23336. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23337. {
  23338. front: {
  23339. height: math.unit(5 + 8 / 12, "feet"),
  23340. weight: math.unit(140, "lb"),
  23341. name: "Front",
  23342. image: {
  23343. source: "./media/characters/khemri/front.svg",
  23344. extra: 4780 / 4059,
  23345. bottom: 80.1 / 4859.25
  23346. }
  23347. },
  23348. },
  23349. [
  23350. {
  23351. name: "Micro",
  23352. height: math.unit(6, "inches")
  23353. },
  23354. {
  23355. name: "Normal",
  23356. height: math.unit(5 + 8 / 12, "feet"),
  23357. default: true
  23358. },
  23359. ]
  23360. ))
  23361. characterMakers.push(() => makeCharacter(
  23362. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23363. {
  23364. front: {
  23365. height: math.unit(13, "feet"),
  23366. weight: math.unit(1700, "lb"),
  23367. name: "Front",
  23368. image: {
  23369. source: "./media/characters/felix-braveheart/front.svg",
  23370. extra: 1222 / 1157,
  23371. bottom: 53.2 / 1280
  23372. }
  23373. },
  23374. back: {
  23375. height: math.unit(13, "feet"),
  23376. weight: math.unit(1700, "lb"),
  23377. name: "Back",
  23378. image: {
  23379. source: "./media/characters/felix-braveheart/back.svg",
  23380. extra: 1277 / 1203,
  23381. bottom: 50.2 / 1327
  23382. }
  23383. },
  23384. feral: {
  23385. height: math.unit(6, "feet"),
  23386. weight: math.unit(400, "lb"),
  23387. name: "Feral",
  23388. image: {
  23389. source: "./media/characters/felix-braveheart/feral.svg",
  23390. extra: 682 / 625,
  23391. bottom: 6.9 / 688
  23392. }
  23393. },
  23394. },
  23395. [
  23396. {
  23397. name: "Normal",
  23398. height: math.unit(13, "feet"),
  23399. default: true
  23400. },
  23401. ]
  23402. ))
  23403. characterMakers.push(() => makeCharacter(
  23404. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23405. {
  23406. side: {
  23407. height: math.unit(5 + 11 / 12, "feet"),
  23408. weight: math.unit(1400, "lb"),
  23409. name: "Side",
  23410. image: {
  23411. source: "./media/characters/shadow-blade/side.svg",
  23412. extra: 1726 / 1267,
  23413. bottom: 58.4 / 1785
  23414. }
  23415. },
  23416. },
  23417. [
  23418. {
  23419. name: "Normal",
  23420. height: math.unit(5 + 11 / 12, "feet"),
  23421. default: true
  23422. },
  23423. ]
  23424. ))
  23425. characterMakers.push(() => makeCharacter(
  23426. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23427. {
  23428. front: {
  23429. height: math.unit(1 + 6 / 12, "feet"),
  23430. weight: math.unit(25, "lb"),
  23431. name: "Front",
  23432. image: {
  23433. source: "./media/characters/karla-halldor/front.svg",
  23434. extra: 1459 / 1383,
  23435. bottom: 12 / 1472
  23436. }
  23437. },
  23438. },
  23439. [
  23440. {
  23441. name: "Normal",
  23442. height: math.unit(1 + 6 / 12, "feet"),
  23443. default: true
  23444. },
  23445. ]
  23446. ))
  23447. characterMakers.push(() => makeCharacter(
  23448. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23449. {
  23450. front: {
  23451. height: math.unit(6 + 2 / 12, "feet"),
  23452. weight: math.unit(160, "lb"),
  23453. name: "Front",
  23454. image: {
  23455. source: "./media/characters/ariam/front.svg",
  23456. extra: 714 / 617,
  23457. bottom: 23.4 / 737,
  23458. }
  23459. },
  23460. squatting: {
  23461. height: math.unit(4.1, "feet"),
  23462. weight: math.unit(160, "lb"),
  23463. name: "Squatting",
  23464. image: {
  23465. source: "./media/characters/ariam/squatting.svg",
  23466. extra: 2617 / 2112,
  23467. bottom: 61.2 / 2681,
  23468. }
  23469. },
  23470. },
  23471. [
  23472. {
  23473. name: "Normal",
  23474. height: math.unit(6 + 2 / 12, "feet"),
  23475. default: true
  23476. },
  23477. {
  23478. name: "Normal+",
  23479. height: math.unit(4, "meters")
  23480. },
  23481. {
  23482. name: "Macro",
  23483. height: math.unit(50, "meters")
  23484. },
  23485. {
  23486. name: "Macro+",
  23487. height: math.unit(100, "meters")
  23488. },
  23489. {
  23490. name: "Megamacro",
  23491. height: math.unit(20, "km")
  23492. },
  23493. ]
  23494. ))
  23495. characterMakers.push(() => makeCharacter(
  23496. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23497. {
  23498. front: {
  23499. height: math.unit(1.67, "meters"),
  23500. weight: math.unit(140, "lb"),
  23501. name: "Front",
  23502. image: {
  23503. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23504. extra: 438 / 410,
  23505. bottom: 0.75 / 439
  23506. }
  23507. },
  23508. },
  23509. [
  23510. {
  23511. name: "Shrunken",
  23512. height: math.unit(7.6, "cm")
  23513. },
  23514. {
  23515. name: "Human Scale",
  23516. height: math.unit(1.67, "meters")
  23517. },
  23518. {
  23519. name: "Wolxi Scale",
  23520. height: math.unit(36.7, "meters"),
  23521. default: true
  23522. },
  23523. ]
  23524. ))
  23525. characterMakers.push(() => makeCharacter(
  23526. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23527. {
  23528. front: {
  23529. height: math.unit(1.73, "meters"),
  23530. weight: math.unit(240, "lb"),
  23531. name: "Front",
  23532. image: {
  23533. source: "./media/characters/izue-two-mothers/front.svg",
  23534. extra: 469 / 437,
  23535. bottom: 1.24 / 470.6
  23536. }
  23537. },
  23538. },
  23539. [
  23540. {
  23541. name: "Shrunken",
  23542. height: math.unit(7.86, "cm")
  23543. },
  23544. {
  23545. name: "Human Scale",
  23546. height: math.unit(1.73, "meters")
  23547. },
  23548. {
  23549. name: "Wolxi Scale",
  23550. height: math.unit(38, "meters"),
  23551. default: true
  23552. },
  23553. ]
  23554. ))
  23555. characterMakers.push(() => makeCharacter(
  23556. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23557. {
  23558. front: {
  23559. height: math.unit(1.55, "meters"),
  23560. weight: math.unit(120, "lb"),
  23561. name: "Front",
  23562. image: {
  23563. source: "./media/characters/teeku-love-shack/front.svg",
  23564. extra: 387 / 362,
  23565. bottom: 1.51 / 388
  23566. }
  23567. },
  23568. },
  23569. [
  23570. {
  23571. name: "Shrunken",
  23572. height: math.unit(7, "cm")
  23573. },
  23574. {
  23575. name: "Human Scale",
  23576. height: math.unit(1.55, "meters")
  23577. },
  23578. {
  23579. name: "Wolxi Scale",
  23580. height: math.unit(34.1, "meters"),
  23581. default: true
  23582. },
  23583. ]
  23584. ))
  23585. characterMakers.push(() => makeCharacter(
  23586. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23587. {
  23588. front: {
  23589. height: math.unit(1.83, "meters"),
  23590. weight: math.unit(135, "lb"),
  23591. name: "Front",
  23592. image: {
  23593. source: "./media/characters/dejma-the-red/front.svg",
  23594. extra: 480 / 458,
  23595. bottom: 1.8 / 482
  23596. }
  23597. },
  23598. },
  23599. [
  23600. {
  23601. name: "Shrunken",
  23602. height: math.unit(8.3, "cm")
  23603. },
  23604. {
  23605. name: "Human Scale",
  23606. height: math.unit(1.83, "meters")
  23607. },
  23608. {
  23609. name: "Wolxi Scale",
  23610. height: math.unit(40, "meters"),
  23611. default: true
  23612. },
  23613. ]
  23614. ))
  23615. characterMakers.push(() => makeCharacter(
  23616. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23617. {
  23618. front: {
  23619. height: math.unit(1.78, "meters"),
  23620. weight: math.unit(65, "kg"),
  23621. name: "Front",
  23622. image: {
  23623. source: "./media/characters/aki/front.svg",
  23624. extra: 452 / 415
  23625. }
  23626. },
  23627. frontNsfw: {
  23628. height: math.unit(1.78, "meters"),
  23629. weight: math.unit(65, "kg"),
  23630. name: "Front (NSFW)",
  23631. image: {
  23632. source: "./media/characters/aki/front-nsfw.svg",
  23633. extra: 452 / 415
  23634. }
  23635. },
  23636. back: {
  23637. height: math.unit(1.78, "meters"),
  23638. weight: math.unit(65, "kg"),
  23639. name: "Back",
  23640. image: {
  23641. source: "./media/characters/aki/back.svg",
  23642. extra: 452 / 415
  23643. }
  23644. },
  23645. rump: {
  23646. height: math.unit(2.05, "feet"),
  23647. name: "Rump",
  23648. image: {
  23649. source: "./media/characters/aki/rump.svg"
  23650. }
  23651. },
  23652. dick: {
  23653. height: math.unit(0.95, "feet"),
  23654. name: "Dick",
  23655. image: {
  23656. source: "./media/characters/aki/dick.svg"
  23657. }
  23658. },
  23659. },
  23660. [
  23661. {
  23662. name: "Micro",
  23663. height: math.unit(15, "cm")
  23664. },
  23665. {
  23666. name: "Normal",
  23667. height: math.unit(178, "cm"),
  23668. default: true
  23669. },
  23670. {
  23671. name: "Macro",
  23672. height: math.unit(214, "m")
  23673. },
  23674. {
  23675. name: "Macro+",
  23676. height: math.unit(534, "m")
  23677. },
  23678. ]
  23679. ))
  23680. characterMakers.push(() => makeCharacter(
  23681. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23682. {
  23683. front: {
  23684. height: math.unit(5 + 5 / 12, "feet"),
  23685. weight: math.unit(120, "lb"),
  23686. name: "Front",
  23687. image: {
  23688. source: "./media/characters/ari/front.svg",
  23689. extra: 714.5 / 682,
  23690. bottom: 8 / 722.5
  23691. }
  23692. },
  23693. },
  23694. [
  23695. {
  23696. name: "Normal",
  23697. height: math.unit(5 + 5 / 12, "feet")
  23698. },
  23699. {
  23700. name: "Macro",
  23701. height: math.unit(100, "feet"),
  23702. default: true
  23703. },
  23704. {
  23705. name: "Megamacro",
  23706. height: math.unit(100, "miles")
  23707. },
  23708. {
  23709. name: "Gigamacro",
  23710. height: math.unit(80000, "miles")
  23711. },
  23712. ]
  23713. ))
  23714. characterMakers.push(() => makeCharacter(
  23715. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23716. {
  23717. side: {
  23718. height: math.unit(9, "feet"),
  23719. weight: math.unit(400, "kg"),
  23720. name: "Side",
  23721. image: {
  23722. source: "./media/characters/bolt/side.svg",
  23723. extra: 1126 / 896,
  23724. bottom: 60 / 1187.3,
  23725. }
  23726. },
  23727. },
  23728. [
  23729. {
  23730. name: "Micro",
  23731. height: math.unit(5, "inches")
  23732. },
  23733. {
  23734. name: "Normal",
  23735. height: math.unit(9, "feet"),
  23736. default: true
  23737. },
  23738. {
  23739. name: "Macro",
  23740. height: math.unit(700, "feet")
  23741. },
  23742. {
  23743. name: "Max Size",
  23744. height: math.unit(1.52e22, "yottameters")
  23745. },
  23746. ]
  23747. ))
  23748. characterMakers.push(() => makeCharacter(
  23749. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23750. {
  23751. front: {
  23752. height: math.unit(4.53, "meters"),
  23753. weight: math.unit(3, "tons"),
  23754. name: "Front",
  23755. image: {
  23756. source: "./media/characters/draekon-sylviar/front.svg",
  23757. extra: 1228 / 1068,
  23758. bottom: 41 / 1270
  23759. }
  23760. },
  23761. tail: {
  23762. height: math.unit(1.772, "meter"),
  23763. name: "Tail",
  23764. image: {
  23765. source: "./media/characters/draekon-sylviar/tail.svg"
  23766. }
  23767. },
  23768. head: {
  23769. height: math.unit(1.331, "meter"),
  23770. name: "Head",
  23771. image: {
  23772. source: "./media/characters/draekon-sylviar/head.svg"
  23773. }
  23774. },
  23775. hand: {
  23776. height: math.unit(0.564, "meter"),
  23777. name: "Hand",
  23778. image: {
  23779. source: "./media/characters/draekon-sylviar/hand.svg"
  23780. }
  23781. },
  23782. foot: {
  23783. height: math.unit(0.621, "meter"),
  23784. name: "Foot",
  23785. image: {
  23786. source: "./media/characters/draekon-sylviar/foot.svg",
  23787. bottom: 32 / 324
  23788. }
  23789. },
  23790. dick: {
  23791. height: math.unit(61, "cm"),
  23792. name: "Dick",
  23793. image: {
  23794. source: "./media/characters/draekon-sylviar/dick.svg"
  23795. }
  23796. },
  23797. dickseparated: {
  23798. height: math.unit(61, "cm"),
  23799. name: "Dick-separated",
  23800. image: {
  23801. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23802. }
  23803. },
  23804. },
  23805. [
  23806. {
  23807. name: "Small",
  23808. height: math.unit(4.53 / 2, "meters"),
  23809. default: true
  23810. },
  23811. {
  23812. name: "Normal",
  23813. height: math.unit(4.53, "meters"),
  23814. default: true
  23815. },
  23816. {
  23817. name: "Large",
  23818. height: math.unit(4.53 * 2, "meters"),
  23819. },
  23820. ]
  23821. ))
  23822. characterMakers.push(() => makeCharacter(
  23823. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23824. {
  23825. front: {
  23826. height: math.unit(6 + 2 / 12, "feet"),
  23827. weight: math.unit(180, "lb"),
  23828. name: "Front",
  23829. image: {
  23830. source: "./media/characters/brawler/front.svg",
  23831. extra: 3301 / 3027,
  23832. bottom: 138 / 3439
  23833. }
  23834. },
  23835. },
  23836. [
  23837. {
  23838. name: "Normal",
  23839. height: math.unit(6 + 2 / 12, "feet"),
  23840. default: true
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23846. {
  23847. front: {
  23848. height: math.unit(11, "feet"),
  23849. weight: math.unit(1000, "lb"),
  23850. name: "Front",
  23851. image: {
  23852. source: "./media/characters/alex/front.svg",
  23853. bottom: 44.5 / 620
  23854. }
  23855. },
  23856. },
  23857. [
  23858. {
  23859. name: "Micro",
  23860. height: math.unit(5, "inches")
  23861. },
  23862. {
  23863. name: "Normal",
  23864. height: math.unit(11, "feet"),
  23865. default: true
  23866. },
  23867. {
  23868. name: "Macro",
  23869. height: math.unit(9.5e9, "feet")
  23870. },
  23871. {
  23872. name: "Max Size",
  23873. height: math.unit(1.4e283, "yottameters")
  23874. },
  23875. ]
  23876. ))
  23877. characterMakers.push(() => makeCharacter(
  23878. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23879. {
  23880. female: {
  23881. height: math.unit(29.9, "m"),
  23882. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23883. name: "Female",
  23884. image: {
  23885. source: "./media/characters/zenari/female.svg",
  23886. extra: 3281.6 / 3217,
  23887. bottom: 72.2 / 3353
  23888. }
  23889. },
  23890. male: {
  23891. height: math.unit(27.7, "m"),
  23892. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23893. name: "Male",
  23894. image: {
  23895. source: "./media/characters/zenari/male.svg",
  23896. extra: 3008 / 2991,
  23897. bottom: 54.6 / 3069
  23898. }
  23899. },
  23900. },
  23901. [
  23902. {
  23903. name: "Macro",
  23904. height: math.unit(29.7, "meters"),
  23905. default: true
  23906. },
  23907. ]
  23908. ))
  23909. characterMakers.push(() => makeCharacter(
  23910. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23911. {
  23912. female: {
  23913. height: math.unit(23.8, "m"),
  23914. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23915. name: "Female",
  23916. image: {
  23917. source: "./media/characters/mactarian/female.svg",
  23918. extra: 2662 / 2569,
  23919. bottom: 73 / 2736
  23920. }
  23921. },
  23922. male: {
  23923. height: math.unit(23.8, "m"),
  23924. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23925. name: "Male",
  23926. image: {
  23927. source: "./media/characters/mactarian/male.svg",
  23928. extra: 2673 / 2600,
  23929. bottom: 76 / 2750
  23930. }
  23931. },
  23932. },
  23933. [
  23934. {
  23935. name: "Macro",
  23936. height: math.unit(23.8, "meters"),
  23937. default: true
  23938. },
  23939. ]
  23940. ))
  23941. characterMakers.push(() => makeCharacter(
  23942. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23943. {
  23944. female: {
  23945. height: math.unit(19.3, "m"),
  23946. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23947. name: "Female",
  23948. image: {
  23949. source: "./media/characters/umok/female.svg",
  23950. extra: 2186 / 2078,
  23951. bottom: 87 / 2277
  23952. }
  23953. },
  23954. male: {
  23955. height: math.unit(19.5, "m"),
  23956. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23957. name: "Male",
  23958. image: {
  23959. source: "./media/characters/umok/male.svg",
  23960. extra: 2233 / 2140,
  23961. bottom: 24.4 / 2258
  23962. }
  23963. },
  23964. },
  23965. [
  23966. {
  23967. name: "Macro",
  23968. height: math.unit(19.3, "meters"),
  23969. default: true
  23970. },
  23971. ]
  23972. ))
  23973. characterMakers.push(() => makeCharacter(
  23974. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23975. {
  23976. female: {
  23977. height: math.unit(26.15, "m"),
  23978. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23979. name: "Female",
  23980. image: {
  23981. source: "./media/characters/joraxian/female.svg",
  23982. extra: 2912 / 2824,
  23983. bottom: 36 / 2956
  23984. }
  23985. },
  23986. male: {
  23987. height: math.unit(25.4, "m"),
  23988. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23989. name: "Male",
  23990. image: {
  23991. source: "./media/characters/joraxian/male.svg",
  23992. extra: 2877 / 2721,
  23993. bottom: 82 / 2967
  23994. }
  23995. },
  23996. },
  23997. [
  23998. {
  23999. name: "Macro",
  24000. height: math.unit(26.15, "meters"),
  24001. default: true
  24002. },
  24003. ]
  24004. ))
  24005. characterMakers.push(() => makeCharacter(
  24006. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  24007. {
  24008. female: {
  24009. height: math.unit(21.6, "m"),
  24010. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  24011. name: "Female",
  24012. image: {
  24013. source: "./media/characters/sthara/female.svg",
  24014. extra: 2516 / 2347,
  24015. bottom: 21.5 / 2537
  24016. }
  24017. },
  24018. male: {
  24019. height: math.unit(24, "m"),
  24020. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  24021. name: "Male",
  24022. image: {
  24023. source: "./media/characters/sthara/male.svg",
  24024. extra: 2732 / 2607,
  24025. bottom: 23 / 2732
  24026. }
  24027. },
  24028. },
  24029. [
  24030. {
  24031. name: "Macro",
  24032. height: math.unit(21.6, "meters"),
  24033. default: true
  24034. },
  24035. ]
  24036. ))
  24037. characterMakers.push(() => makeCharacter(
  24038. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24039. {
  24040. front: {
  24041. height: math.unit(6 + 4 / 12, "feet"),
  24042. weight: math.unit(175, "lb"),
  24043. name: "Front",
  24044. image: {
  24045. source: "./media/characters/luka-bryzant/front.svg",
  24046. extra: 311 / 289,
  24047. bottom: 4 / 315
  24048. }
  24049. },
  24050. back: {
  24051. height: math.unit(6 + 4 / 12, "feet"),
  24052. weight: math.unit(175, "lb"),
  24053. name: "Back",
  24054. image: {
  24055. source: "./media/characters/luka-bryzant/back.svg",
  24056. extra: 311 / 289,
  24057. bottom: 3.8 / 313.7
  24058. }
  24059. },
  24060. },
  24061. [
  24062. {
  24063. name: "Micro",
  24064. height: math.unit(10, "inches")
  24065. },
  24066. {
  24067. name: "Normal",
  24068. height: math.unit(6 + 4 / 12, "feet"),
  24069. default: true
  24070. },
  24071. {
  24072. name: "Large",
  24073. height: math.unit(12, "feet")
  24074. },
  24075. ]
  24076. ))
  24077. characterMakers.push(() => makeCharacter(
  24078. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24079. {
  24080. front: {
  24081. height: math.unit(5 + 7 / 12, "feet"),
  24082. weight: math.unit(185, "lb"),
  24083. name: "Front",
  24084. image: {
  24085. source: "./media/characters/aman-aquila/front.svg",
  24086. extra: 1013 / 976,
  24087. bottom: 45.6 / 1057
  24088. }
  24089. },
  24090. side: {
  24091. height: math.unit(5 + 7 / 12, "feet"),
  24092. weight: math.unit(185, "lb"),
  24093. name: "Side",
  24094. image: {
  24095. source: "./media/characters/aman-aquila/side.svg",
  24096. extra: 1054 / 1011,
  24097. bottom: 15 / 1070
  24098. }
  24099. },
  24100. back: {
  24101. height: math.unit(5 + 7 / 12, "feet"),
  24102. weight: math.unit(185, "lb"),
  24103. name: "Back",
  24104. image: {
  24105. source: "./media/characters/aman-aquila/back.svg",
  24106. extra: 1026 / 970,
  24107. bottom: 12 / 1039
  24108. }
  24109. },
  24110. head: {
  24111. height: math.unit(1.211, "feet"),
  24112. name: "Head",
  24113. image: {
  24114. source: "./media/characters/aman-aquila/head.svg",
  24115. }
  24116. },
  24117. },
  24118. [
  24119. {
  24120. name: "Minimicro",
  24121. height: math.unit(0.057, "inches")
  24122. },
  24123. {
  24124. name: "Micro",
  24125. height: math.unit(7, "inches")
  24126. },
  24127. {
  24128. name: "Mini",
  24129. height: math.unit(3 + 7 / 12, "feet")
  24130. },
  24131. {
  24132. name: "Normal",
  24133. height: math.unit(5 + 7 / 12, "feet"),
  24134. default: true
  24135. },
  24136. {
  24137. name: "Macro",
  24138. height: math.unit(157 + 7 / 12, "feet")
  24139. },
  24140. {
  24141. name: "Megamacro",
  24142. height: math.unit(1557 + 7 / 12, "feet")
  24143. },
  24144. {
  24145. name: "Gigamacro",
  24146. height: math.unit(15557 + 7 / 12, "feet")
  24147. },
  24148. ]
  24149. ))
  24150. characterMakers.push(() => makeCharacter(
  24151. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24152. {
  24153. front: {
  24154. height: math.unit(3 + 2 / 12, "inches"),
  24155. weight: math.unit(0.3, "ounces"),
  24156. name: "Front",
  24157. image: {
  24158. source: "./media/characters/hiphae/front.svg",
  24159. extra: 1931 / 1683,
  24160. bottom: 24 / 1955
  24161. }
  24162. },
  24163. },
  24164. [
  24165. {
  24166. name: "Normal",
  24167. height: math.unit(3 + 1 / 2, "inches"),
  24168. default: true
  24169. },
  24170. ]
  24171. ))
  24172. characterMakers.push(() => makeCharacter(
  24173. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24174. {
  24175. front: {
  24176. height: math.unit(5 + 10 / 12, "feet"),
  24177. weight: math.unit(165, "lb"),
  24178. name: "Front",
  24179. image: {
  24180. source: "./media/characters/nicky/front.svg",
  24181. extra: 3144 / 2886,
  24182. bottom: 45.6 / 3192
  24183. }
  24184. },
  24185. back: {
  24186. height: math.unit(5 + 10 / 12, "feet"),
  24187. weight: math.unit(165, "lb"),
  24188. name: "Back",
  24189. image: {
  24190. source: "./media/characters/nicky/back.svg",
  24191. extra: 3055 / 2804,
  24192. bottom: 28.4 / 3087
  24193. }
  24194. },
  24195. frontclothed: {
  24196. height: math.unit(5 + 10 / 12, "feet"),
  24197. weight: math.unit(165, "lb"),
  24198. name: "Front-clothed",
  24199. image: {
  24200. source: "./media/characters/nicky/front-clothed.svg",
  24201. extra: 3184.9 / 2926.9,
  24202. bottom: 86.5 / 3239.9
  24203. }
  24204. },
  24205. foot: {
  24206. height: math.unit(1.16, "feet"),
  24207. name: "Foot",
  24208. image: {
  24209. source: "./media/characters/nicky/foot.svg"
  24210. }
  24211. },
  24212. feet: {
  24213. height: math.unit(1.34, "feet"),
  24214. name: "Feet",
  24215. image: {
  24216. source: "./media/characters/nicky/feet.svg"
  24217. }
  24218. },
  24219. maw: {
  24220. height: math.unit(0.9, "feet"),
  24221. name: "Maw",
  24222. image: {
  24223. source: "./media/characters/nicky/maw.svg"
  24224. }
  24225. },
  24226. },
  24227. [
  24228. {
  24229. name: "Normal",
  24230. height: math.unit(5 + 10 / 12, "feet"),
  24231. default: true
  24232. },
  24233. {
  24234. name: "Macro",
  24235. height: math.unit(60, "feet")
  24236. },
  24237. {
  24238. name: "Megamacro",
  24239. height: math.unit(1, "mile")
  24240. },
  24241. ]
  24242. ))
  24243. characterMakers.push(() => makeCharacter(
  24244. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24245. {
  24246. side: {
  24247. height: math.unit(10, "feet"),
  24248. weight: math.unit(600, "lb"),
  24249. name: "Side",
  24250. image: {
  24251. source: "./media/characters/blair/side.svg",
  24252. bottom: 16.6 / 475,
  24253. extra: 458 / 431
  24254. }
  24255. },
  24256. },
  24257. [
  24258. {
  24259. name: "Micro",
  24260. height: math.unit(8, "inches")
  24261. },
  24262. {
  24263. name: "Normal",
  24264. height: math.unit(10, "feet"),
  24265. default: true
  24266. },
  24267. {
  24268. name: "Macro",
  24269. height: math.unit(180, "feet")
  24270. },
  24271. ]
  24272. ))
  24273. characterMakers.push(() => makeCharacter(
  24274. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24275. {
  24276. front: {
  24277. height: math.unit(5 + 4 / 12, "feet"),
  24278. weight: math.unit(125, "lb"),
  24279. name: "Front",
  24280. image: {
  24281. source: "./media/characters/fisher/front.svg",
  24282. extra: 444 / 390,
  24283. bottom: 2 / 444.8
  24284. }
  24285. },
  24286. },
  24287. [
  24288. {
  24289. name: "Micro",
  24290. height: math.unit(4, "inches")
  24291. },
  24292. {
  24293. name: "Normal",
  24294. height: math.unit(5 + 4 / 12, "feet"),
  24295. default: true
  24296. },
  24297. {
  24298. name: "Macro",
  24299. height: math.unit(100, "feet")
  24300. },
  24301. ]
  24302. ))
  24303. characterMakers.push(() => makeCharacter(
  24304. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24305. {
  24306. front: {
  24307. height: math.unit(6.71, "feet"),
  24308. weight: math.unit(200, "lb"),
  24309. capacity: math.unit(1000000, "people"),
  24310. name: "Front",
  24311. image: {
  24312. source: "./media/characters/gliss/front.svg",
  24313. extra: 2347 / 2231,
  24314. bottom: 113 / 2462
  24315. }
  24316. },
  24317. hammerspaceSize: {
  24318. height: math.unit(6.71 * 717, "feet"),
  24319. weight: math.unit(200, "lb"),
  24320. capacity: math.unit(1000000, "people"),
  24321. name: "Hammerspace Size",
  24322. image: {
  24323. source: "./media/characters/gliss/front.svg",
  24324. extra: 2347 / 2231,
  24325. bottom: 113 / 2462
  24326. }
  24327. },
  24328. },
  24329. [
  24330. {
  24331. name: "Normal",
  24332. height: math.unit(6.71, "feet"),
  24333. default: true
  24334. },
  24335. ]
  24336. ))
  24337. characterMakers.push(() => makeCharacter(
  24338. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24339. {
  24340. side: {
  24341. height: math.unit(1.44, "m"),
  24342. weight: math.unit(80, "kg"),
  24343. name: "Side",
  24344. image: {
  24345. source: "./media/characters/dune-anderson/side.svg",
  24346. bottom: 49 / 1426
  24347. }
  24348. },
  24349. },
  24350. [
  24351. {
  24352. name: "Wolf-sized",
  24353. height: math.unit(1.44, "meters")
  24354. },
  24355. {
  24356. name: "Normal",
  24357. height: math.unit(5.05, "meters"),
  24358. default: true
  24359. },
  24360. {
  24361. name: "Big",
  24362. height: math.unit(14.4, "meters")
  24363. },
  24364. {
  24365. name: "Huge",
  24366. height: math.unit(144, "meters")
  24367. },
  24368. ]
  24369. ))
  24370. characterMakers.push(() => makeCharacter(
  24371. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24372. {
  24373. front: {
  24374. height: math.unit(7, "feet"),
  24375. weight: math.unit(425, "lb"),
  24376. name: "Front",
  24377. image: {
  24378. source: "./media/characters/hind/front.svg",
  24379. extra: 2091 / 1860,
  24380. bottom: 129 / 2220
  24381. }
  24382. },
  24383. back: {
  24384. height: math.unit(7, "feet"),
  24385. weight: math.unit(425, "lb"),
  24386. name: "Back",
  24387. image: {
  24388. source: "./media/characters/hind/back.svg",
  24389. extra: 2091 / 1860,
  24390. bottom: 24.6 / 2309
  24391. }
  24392. },
  24393. tail: {
  24394. height: math.unit(2.8, "feet"),
  24395. name: "Tail",
  24396. image: {
  24397. source: "./media/characters/hind/tail.svg"
  24398. }
  24399. },
  24400. head: {
  24401. height: math.unit(2.55, "feet"),
  24402. name: "Head",
  24403. image: {
  24404. source: "./media/characters/hind/head.svg"
  24405. }
  24406. },
  24407. },
  24408. [
  24409. {
  24410. name: "XS",
  24411. height: math.unit(0.7, "feet")
  24412. },
  24413. {
  24414. name: "Normal",
  24415. height: math.unit(7, "feet"),
  24416. default: true
  24417. },
  24418. {
  24419. name: "XL",
  24420. height: math.unit(70, "feet")
  24421. },
  24422. ]
  24423. ))
  24424. characterMakers.push(() => makeCharacter(
  24425. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24426. {
  24427. front: {
  24428. height: math.unit(6, "feet"),
  24429. weight: math.unit(150, "lb"),
  24430. name: "Front",
  24431. image: {
  24432. source: "./media/characters/dylan-skaven/front.svg",
  24433. extra: 2318 / 2063,
  24434. bottom: 93.4 / 2410
  24435. }
  24436. },
  24437. },
  24438. [
  24439. {
  24440. name: "Nano",
  24441. height: math.unit(1, "mm")
  24442. },
  24443. {
  24444. name: "Micro",
  24445. height: math.unit(1, "cm")
  24446. },
  24447. {
  24448. name: "Normal",
  24449. height: math.unit(2.1, "meters"),
  24450. default: true
  24451. },
  24452. ]
  24453. ))
  24454. characterMakers.push(() => makeCharacter(
  24455. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24456. {
  24457. front: {
  24458. height: math.unit(7 + 5 / 12, "feet"),
  24459. weight: math.unit(357, "lb"),
  24460. name: "Front",
  24461. image: {
  24462. source: "./media/characters/solex-draconov/front.svg",
  24463. extra: 1993 / 1865,
  24464. bottom: 117 / 2111
  24465. }
  24466. },
  24467. },
  24468. [
  24469. {
  24470. name: "Natural Height",
  24471. height: math.unit(7 + 5 / 12, "feet"),
  24472. default: true
  24473. },
  24474. {
  24475. name: "Macro",
  24476. height: math.unit(350, "feet")
  24477. },
  24478. {
  24479. name: "Macro+",
  24480. height: math.unit(1000, "feet")
  24481. },
  24482. {
  24483. name: "Megamacro",
  24484. height: math.unit(20, "km")
  24485. },
  24486. {
  24487. name: "Megamacro+",
  24488. height: math.unit(1000, "km")
  24489. },
  24490. {
  24491. name: "Gigamacro",
  24492. height: math.unit(2.5, "Gm")
  24493. },
  24494. {
  24495. name: "Teramacro",
  24496. height: math.unit(15, "Tm")
  24497. },
  24498. {
  24499. name: "Galactic",
  24500. height: math.unit(30, "Zm")
  24501. },
  24502. {
  24503. name: "Universal",
  24504. height: math.unit(21000, "Ym")
  24505. },
  24506. {
  24507. name: "Omniversal",
  24508. height: math.unit(9.861e50, "Ym")
  24509. },
  24510. {
  24511. name: "Existential",
  24512. height: math.unit(1e300, "meters")
  24513. },
  24514. ]
  24515. ))
  24516. characterMakers.push(() => makeCharacter(
  24517. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24518. {
  24519. side: {
  24520. height: math.unit(25, "feet"),
  24521. weight: math.unit(90000, "lb"),
  24522. name: "Side",
  24523. image: {
  24524. source: "./media/characters/mandarax/side.svg",
  24525. extra: 614 / 332,
  24526. bottom: 55 / 630
  24527. }
  24528. },
  24529. head: {
  24530. height: math.unit(11.4, "feet"),
  24531. name: "Head",
  24532. image: {
  24533. source: "./media/characters/mandarax/head.svg"
  24534. }
  24535. },
  24536. belly: {
  24537. height: math.unit(33, "feet"),
  24538. name: "Belly",
  24539. capacity: math.unit(500, "people"),
  24540. image: {
  24541. source: "./media/characters/mandarax/belly.svg"
  24542. }
  24543. },
  24544. dick: {
  24545. height: math.unit(8.46, "feet"),
  24546. name: "Dick",
  24547. image: {
  24548. source: "./media/characters/mandarax/dick.svg"
  24549. }
  24550. },
  24551. top: {
  24552. height: math.unit(28, "meters"),
  24553. name: "Top",
  24554. image: {
  24555. source: "./media/characters/mandarax/top.svg"
  24556. }
  24557. },
  24558. },
  24559. [
  24560. {
  24561. name: "Normal",
  24562. height: math.unit(25, "feet"),
  24563. default: true
  24564. },
  24565. ]
  24566. ))
  24567. characterMakers.push(() => makeCharacter(
  24568. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24569. {
  24570. front: {
  24571. height: math.unit(5, "feet"),
  24572. weight: math.unit(90, "lb"),
  24573. name: "Front",
  24574. image: {
  24575. source: "./media/characters/pixil/front.svg",
  24576. extra: 2000 / 1618,
  24577. bottom: 12.3 / 2011
  24578. }
  24579. },
  24580. },
  24581. [
  24582. {
  24583. name: "Normal",
  24584. height: math.unit(5, "feet"),
  24585. default: true
  24586. },
  24587. {
  24588. name: "Megamacro",
  24589. height: math.unit(10, "miles"),
  24590. },
  24591. ]
  24592. ))
  24593. characterMakers.push(() => makeCharacter(
  24594. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24595. {
  24596. front: {
  24597. height: math.unit(7 + 2 / 12, "feet"),
  24598. weight: math.unit(200, "lb"),
  24599. name: "Front",
  24600. image: {
  24601. source: "./media/characters/angel/front.svg",
  24602. extra: 1830 / 1737,
  24603. bottom: 22.6 / 1854,
  24604. }
  24605. },
  24606. },
  24607. [
  24608. {
  24609. name: "Normal",
  24610. height: math.unit(7 + 2 / 12, "feet"),
  24611. default: true
  24612. },
  24613. {
  24614. name: "Macro",
  24615. height: math.unit(1000, "feet")
  24616. },
  24617. {
  24618. name: "Megamacro",
  24619. height: math.unit(2, "miles")
  24620. },
  24621. {
  24622. name: "Gigamacro",
  24623. height: math.unit(20, "earths")
  24624. },
  24625. ]
  24626. ))
  24627. characterMakers.push(() => makeCharacter(
  24628. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24629. {
  24630. front: {
  24631. height: math.unit(5, "feet"),
  24632. weight: math.unit(180, "lb"),
  24633. name: "Front",
  24634. image: {
  24635. source: "./media/characters/mekana/front.svg",
  24636. extra: 1671 / 1605,
  24637. bottom: 3.5 / 1691
  24638. }
  24639. },
  24640. side: {
  24641. height: math.unit(5, "feet"),
  24642. weight: math.unit(180, "lb"),
  24643. name: "Side",
  24644. image: {
  24645. source: "./media/characters/mekana/side.svg",
  24646. extra: 1671 / 1605,
  24647. bottom: 3.5 / 1691
  24648. }
  24649. },
  24650. back: {
  24651. height: math.unit(5, "feet"),
  24652. weight: math.unit(180, "lb"),
  24653. name: "Back",
  24654. image: {
  24655. source: "./media/characters/mekana/back.svg",
  24656. extra: 1671 / 1605,
  24657. bottom: 3.5 / 1691
  24658. }
  24659. },
  24660. },
  24661. [
  24662. {
  24663. name: "Normal",
  24664. height: math.unit(5, "feet"),
  24665. default: true
  24666. },
  24667. ]
  24668. ))
  24669. characterMakers.push(() => makeCharacter(
  24670. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24671. {
  24672. front: {
  24673. height: math.unit(4 + 6 / 12, "feet"),
  24674. weight: math.unit(80, "lb"),
  24675. name: "Front",
  24676. image: {
  24677. source: "./media/characters/pixie/front.svg",
  24678. extra: 1924 / 1825,
  24679. bottom: 22.4 / 1946
  24680. }
  24681. },
  24682. },
  24683. [
  24684. {
  24685. name: "Normal",
  24686. height: math.unit(4 + 6 / 12, "feet"),
  24687. default: true
  24688. },
  24689. {
  24690. name: "Macro",
  24691. height: math.unit(40, "feet")
  24692. },
  24693. ]
  24694. ))
  24695. characterMakers.push(() => makeCharacter(
  24696. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24697. {
  24698. front: {
  24699. height: math.unit(2.1, "meters"),
  24700. weight: math.unit(200, "lb"),
  24701. name: "Front",
  24702. image: {
  24703. source: "./media/characters/the-lascivious/front.svg",
  24704. extra: 1 / 0.893,
  24705. bottom: 3.5 / 573.7
  24706. }
  24707. },
  24708. },
  24709. [
  24710. {
  24711. name: "Human Scale",
  24712. height: math.unit(2.1, "meters")
  24713. },
  24714. {
  24715. name: "Wolxi Scale",
  24716. height: math.unit(46.2, "m"),
  24717. default: true
  24718. },
  24719. {
  24720. name: "Boinker of Buildings",
  24721. height: math.unit(10, "km")
  24722. },
  24723. {
  24724. name: "Shagger of Skyscrapers",
  24725. height: math.unit(40, "km")
  24726. },
  24727. {
  24728. name: "Banger of Boroughs",
  24729. height: math.unit(4000, "km")
  24730. },
  24731. {
  24732. name: "Screwer of States",
  24733. height: math.unit(100000, "km")
  24734. },
  24735. {
  24736. name: "Pounder of Planets",
  24737. height: math.unit(2000000, "km")
  24738. },
  24739. ]
  24740. ))
  24741. characterMakers.push(() => makeCharacter(
  24742. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24743. {
  24744. front: {
  24745. height: math.unit(6, "feet"),
  24746. weight: math.unit(150, "lb"),
  24747. name: "Front",
  24748. image: {
  24749. source: "./media/characters/aj/front.svg",
  24750. extra: 2039 / 1562,
  24751. bottom: 40 / 2079
  24752. }
  24753. },
  24754. },
  24755. [
  24756. {
  24757. name: "Normal",
  24758. height: math.unit(11 + 6 / 12, "feet"),
  24759. default: true
  24760. },
  24761. {
  24762. name: "Megamacro",
  24763. height: math.unit(60, "megameters")
  24764. },
  24765. ]
  24766. ))
  24767. characterMakers.push(() => makeCharacter(
  24768. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24769. {
  24770. side: {
  24771. height: math.unit(31 + 8 / 12, "feet"),
  24772. weight: math.unit(75000, "kg"),
  24773. name: "Side",
  24774. image: {
  24775. source: "./media/characters/koros/side.svg",
  24776. extra: 1442 / 1297,
  24777. bottom: 122.7 / 1562
  24778. }
  24779. },
  24780. dicksKingsCrown: {
  24781. height: math.unit(6, "feet"),
  24782. name: "Dicks (King's Crown)",
  24783. image: {
  24784. source: "./media/characters/koros/dicks-kings-crown.svg"
  24785. }
  24786. },
  24787. dicksTailSet: {
  24788. height: math.unit(3, "feet"),
  24789. name: "Dicks (Tail Set)",
  24790. image: {
  24791. source: "./media/characters/koros/dicks-tail-set.svg"
  24792. }
  24793. },
  24794. dickCumming: {
  24795. height: math.unit(7.98, "feet"),
  24796. name: "Dick (Cumming)",
  24797. image: {
  24798. source: "./media/characters/koros/dick-cumming.svg"
  24799. }
  24800. },
  24801. dicksBack: {
  24802. height: math.unit(5.9, "feet"),
  24803. name: "Dicks (Back)",
  24804. image: {
  24805. source: "./media/characters/koros/dicks-back.svg"
  24806. }
  24807. },
  24808. dicksFront: {
  24809. height: math.unit(3.72, "feet"),
  24810. name: "Dicks (Front)",
  24811. image: {
  24812. source: "./media/characters/koros/dicks-front.svg"
  24813. }
  24814. },
  24815. dicksPeeking: {
  24816. height: math.unit(3.0, "feet"),
  24817. name: "Dicks (Peeking)",
  24818. image: {
  24819. source: "./media/characters/koros/dicks-peeking.svg"
  24820. }
  24821. },
  24822. eye: {
  24823. height: math.unit(1.7, "feet"),
  24824. name: "Eye",
  24825. image: {
  24826. source: "./media/characters/koros/eye.svg"
  24827. }
  24828. },
  24829. headFront: {
  24830. height: math.unit(11.69, "feet"),
  24831. name: "Head (Front)",
  24832. image: {
  24833. source: "./media/characters/koros/head-front.svg"
  24834. }
  24835. },
  24836. headSide: {
  24837. height: math.unit(14, "feet"),
  24838. name: "Head (Side)",
  24839. image: {
  24840. source: "./media/characters/koros/head-side.svg"
  24841. }
  24842. },
  24843. leg: {
  24844. height: math.unit(17, "feet"),
  24845. name: "Leg",
  24846. image: {
  24847. source: "./media/characters/koros/leg.svg"
  24848. }
  24849. },
  24850. mawSide: {
  24851. height: math.unit(12.8, "feet"),
  24852. name: "Maw (Side)",
  24853. image: {
  24854. source: "./media/characters/koros/maw-side.svg"
  24855. }
  24856. },
  24857. mawSpitting: {
  24858. height: math.unit(17, "feet"),
  24859. name: "Maw (Spitting)",
  24860. image: {
  24861. source: "./media/characters/koros/maw-spitting.svg"
  24862. }
  24863. },
  24864. slit: {
  24865. height: math.unit(2.8, "feet"),
  24866. name: "Slit",
  24867. image: {
  24868. source: "./media/characters/koros/slit.svg"
  24869. }
  24870. },
  24871. stomach: {
  24872. height: math.unit(6.8, "feet"),
  24873. capacity: math.unit(20, "people"),
  24874. name: "Stomach",
  24875. image: {
  24876. source: "./media/characters/koros/stomach.svg"
  24877. }
  24878. },
  24879. wingspanBottom: {
  24880. height: math.unit(114, "feet"),
  24881. name: "Wingspan (Bottom)",
  24882. image: {
  24883. source: "./media/characters/koros/wingspan-bottom.svg"
  24884. }
  24885. },
  24886. wingspanTop: {
  24887. height: math.unit(104, "feet"),
  24888. name: "Wingspan (Top)",
  24889. image: {
  24890. source: "./media/characters/koros/wingspan-top.svg"
  24891. }
  24892. },
  24893. },
  24894. [
  24895. {
  24896. name: "Normal",
  24897. height: math.unit(31 + 8 / 12, "feet"),
  24898. default: true
  24899. },
  24900. ]
  24901. ))
  24902. characterMakers.push(() => makeCharacter(
  24903. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24904. {
  24905. front: {
  24906. height: math.unit(18 + 5 / 12, "feet"),
  24907. weight: math.unit(3750, "kg"),
  24908. name: "Front",
  24909. image: {
  24910. source: "./media/characters/vexx/front.svg",
  24911. extra: 426 / 396,
  24912. bottom: 31.5 / 458
  24913. }
  24914. },
  24915. maw: {
  24916. height: math.unit(6, "feet"),
  24917. name: "Maw",
  24918. image: {
  24919. source: "./media/characters/vexx/maw.svg"
  24920. }
  24921. },
  24922. },
  24923. [
  24924. {
  24925. name: "Normal",
  24926. height: math.unit(18 + 5 / 12, "feet"),
  24927. default: true
  24928. },
  24929. ]
  24930. ))
  24931. characterMakers.push(() => makeCharacter(
  24932. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24933. {
  24934. front: {
  24935. height: math.unit(17 + 6 / 12, "feet"),
  24936. weight: math.unit(150, "lb"),
  24937. name: "Front",
  24938. image: {
  24939. source: "./media/characters/baadra/front.svg",
  24940. extra: 3137 / 2890,
  24941. bottom: 168.4 / 3305
  24942. }
  24943. },
  24944. back: {
  24945. height: math.unit(17 + 6 / 12, "feet"),
  24946. weight: math.unit(150, "lb"),
  24947. name: "Back",
  24948. image: {
  24949. source: "./media/characters/baadra/back.svg",
  24950. extra: 3142 / 2890,
  24951. bottom: 220 / 3371
  24952. }
  24953. },
  24954. head: {
  24955. height: math.unit(5.45, "feet"),
  24956. name: "Head",
  24957. image: {
  24958. source: "./media/characters/baadra/head.svg"
  24959. }
  24960. },
  24961. headAngry: {
  24962. height: math.unit(4.95, "feet"),
  24963. name: "Head (Angry)",
  24964. image: {
  24965. source: "./media/characters/baadra/head-angry.svg"
  24966. }
  24967. },
  24968. headOpen: {
  24969. height: math.unit(6, "feet"),
  24970. name: "Head (Open)",
  24971. image: {
  24972. source: "./media/characters/baadra/head-open.svg"
  24973. }
  24974. },
  24975. },
  24976. [
  24977. {
  24978. name: "Normal",
  24979. height: math.unit(17 + 6 / 12, "feet"),
  24980. default: true
  24981. },
  24982. ]
  24983. ))
  24984. characterMakers.push(() => makeCharacter(
  24985. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24986. {
  24987. front: {
  24988. height: math.unit(7 + 3 / 12, "feet"),
  24989. weight: math.unit(180, "lb"),
  24990. name: "Front",
  24991. image: {
  24992. source: "./media/characters/juri/front.svg",
  24993. extra: 1401 / 1237,
  24994. bottom: 18.5 / 1418
  24995. }
  24996. },
  24997. side: {
  24998. height: math.unit(7 + 3 / 12, "feet"),
  24999. weight: math.unit(180, "lb"),
  25000. name: "Side",
  25001. image: {
  25002. source: "./media/characters/juri/side.svg",
  25003. extra: 1424 / 1242,
  25004. bottom: 18.5 / 1447
  25005. }
  25006. },
  25007. sitting: {
  25008. height: math.unit(6, "feet"),
  25009. weight: math.unit(180, "lb"),
  25010. name: "Sitting",
  25011. image: {
  25012. source: "./media/characters/juri/sitting.svg",
  25013. extra: 1270 / 1143,
  25014. bottom: 100 / 1343
  25015. }
  25016. },
  25017. back: {
  25018. height: math.unit(7 + 3 / 12, "feet"),
  25019. weight: math.unit(180, "lb"),
  25020. name: "Back",
  25021. image: {
  25022. source: "./media/characters/juri/back.svg",
  25023. extra: 1377 / 1240,
  25024. bottom: 23.7 / 1405
  25025. }
  25026. },
  25027. maw: {
  25028. height: math.unit(2.8, "feet"),
  25029. name: "Maw",
  25030. image: {
  25031. source: "./media/characters/juri/maw.svg"
  25032. }
  25033. },
  25034. stomach: {
  25035. height: math.unit(0.89, "feet"),
  25036. capacity: math.unit(4, "liters"),
  25037. name: "Stomach",
  25038. image: {
  25039. source: "./media/characters/juri/stomach.svg"
  25040. }
  25041. },
  25042. },
  25043. [
  25044. {
  25045. name: "Normal",
  25046. height: math.unit(7 + 3 / 12, "feet"),
  25047. default: true
  25048. },
  25049. ]
  25050. ))
  25051. characterMakers.push(() => makeCharacter(
  25052. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25053. {
  25054. fox: {
  25055. height: math.unit(5 + 6 / 12, "feet"),
  25056. weight: math.unit(140, "lb"),
  25057. name: "Fox",
  25058. image: {
  25059. source: "./media/characters/maxene-sita/fox.svg",
  25060. extra: 146 / 138,
  25061. bottom: 2.1 / 148.19
  25062. }
  25063. },
  25064. foxLaying: {
  25065. height: math.unit(1.70, "feet"),
  25066. weight: math.unit(140, "lb"),
  25067. name: "Fox (Laying)",
  25068. image: {
  25069. source: "./media/characters/maxene-sita/fox-laying.svg",
  25070. extra: 910 / 572,
  25071. bottom: 71 / 981
  25072. }
  25073. },
  25074. kitsune: {
  25075. height: math.unit(10, "feet"),
  25076. weight: math.unit(800, "lb"),
  25077. name: "Kitsune",
  25078. image: {
  25079. source: "./media/characters/maxene-sita/kitsune.svg",
  25080. extra: 185 / 176,
  25081. bottom: 4.7 / 189.9
  25082. }
  25083. },
  25084. hellhound: {
  25085. height: math.unit(10, "feet"),
  25086. weight: math.unit(700, "lb"),
  25087. name: "Hellhound",
  25088. image: {
  25089. source: "./media/characters/maxene-sita/hellhound.svg",
  25090. extra: 1600 / 1545,
  25091. bottom: 81 / 1681
  25092. }
  25093. },
  25094. },
  25095. [
  25096. {
  25097. name: "Normal",
  25098. height: math.unit(5 + 6 / 12, "feet"),
  25099. default: true
  25100. },
  25101. ]
  25102. ))
  25103. characterMakers.push(() => makeCharacter(
  25104. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25105. {
  25106. front: {
  25107. height: math.unit(3 + 4 / 12, "feet"),
  25108. weight: math.unit(70, "lb"),
  25109. name: "Front",
  25110. image: {
  25111. source: "./media/characters/maia/front.svg",
  25112. extra: 227 / 219.5,
  25113. bottom: 40 / 267
  25114. }
  25115. },
  25116. back: {
  25117. height: math.unit(3 + 4 / 12, "feet"),
  25118. weight: math.unit(70, "lb"),
  25119. name: "Back",
  25120. image: {
  25121. source: "./media/characters/maia/back.svg",
  25122. extra: 237 / 225
  25123. }
  25124. },
  25125. },
  25126. [
  25127. {
  25128. name: "Normal",
  25129. height: math.unit(3 + 4 / 12, "feet"),
  25130. default: true
  25131. },
  25132. ]
  25133. ))
  25134. characterMakers.push(() => makeCharacter(
  25135. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25136. {
  25137. front: {
  25138. height: math.unit(5 + 10 / 12, "feet"),
  25139. weight: math.unit(197, "lb"),
  25140. name: "Front",
  25141. image: {
  25142. source: "./media/characters/jabaro/front.svg",
  25143. extra: 225 / 216,
  25144. bottom: 5.06 / 230
  25145. }
  25146. },
  25147. back: {
  25148. height: math.unit(5 + 10 / 12, "feet"),
  25149. weight: math.unit(197, "lb"),
  25150. name: "Back",
  25151. image: {
  25152. source: "./media/characters/jabaro/back.svg",
  25153. extra: 225 / 219,
  25154. bottom: 1.9 / 227
  25155. }
  25156. },
  25157. },
  25158. [
  25159. {
  25160. name: "Normal",
  25161. height: math.unit(5 + 10 / 12, "feet"),
  25162. default: true
  25163. },
  25164. ]
  25165. ))
  25166. characterMakers.push(() => makeCharacter(
  25167. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25168. {
  25169. front: {
  25170. height: math.unit(5 + 8 / 12, "feet"),
  25171. weight: math.unit(139, "lb"),
  25172. name: "Front",
  25173. image: {
  25174. source: "./media/characters/risa/front.svg",
  25175. extra: 270 / 260,
  25176. bottom: 11.2 / 282
  25177. }
  25178. },
  25179. back: {
  25180. height: math.unit(5 + 8 / 12, "feet"),
  25181. weight: math.unit(139, "lb"),
  25182. name: "Back",
  25183. image: {
  25184. source: "./media/characters/risa/back.svg",
  25185. extra: 264 / 255,
  25186. bottom: 4 / 268
  25187. }
  25188. },
  25189. },
  25190. [
  25191. {
  25192. name: "Normal",
  25193. height: math.unit(5 + 8 / 12, "feet"),
  25194. default: true
  25195. },
  25196. ]
  25197. ))
  25198. characterMakers.push(() => makeCharacter(
  25199. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25200. {
  25201. front: {
  25202. height: math.unit(2 + 11 / 12, "feet"),
  25203. weight: math.unit(30, "lb"),
  25204. name: "Front",
  25205. image: {
  25206. source: "./media/characters/weatley/front.svg",
  25207. bottom: 10.7 / 414,
  25208. extra: 403.5 / 362
  25209. }
  25210. },
  25211. back: {
  25212. height: math.unit(2 + 11 / 12, "feet"),
  25213. weight: math.unit(30, "lb"),
  25214. name: "Back",
  25215. image: {
  25216. source: "./media/characters/weatley/back.svg",
  25217. bottom: 10.7 / 414,
  25218. extra: 403.5 / 362
  25219. }
  25220. },
  25221. },
  25222. [
  25223. {
  25224. name: "Normal",
  25225. height: math.unit(2 + 11 / 12, "feet"),
  25226. default: true
  25227. },
  25228. ]
  25229. ))
  25230. characterMakers.push(() => makeCharacter(
  25231. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25232. {
  25233. front: {
  25234. height: math.unit(5 + 2 / 12, "feet"),
  25235. weight: math.unit(50, "kg"),
  25236. name: "Front",
  25237. image: {
  25238. source: "./media/characters/mercury-crescent/front.svg",
  25239. extra: 1088 / 1033,
  25240. bottom: 18.9 / 1109
  25241. }
  25242. },
  25243. },
  25244. [
  25245. {
  25246. name: "Normal",
  25247. height: math.unit(5 + 2 / 12, "feet"),
  25248. default: true
  25249. },
  25250. ]
  25251. ))
  25252. characterMakers.push(() => makeCharacter(
  25253. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25254. {
  25255. front: {
  25256. height: math.unit(2, "feet"),
  25257. weight: math.unit(15, "kg"),
  25258. name: "Front",
  25259. image: {
  25260. source: "./media/characters/diamond-jones/front.svg",
  25261. bottom: 16 / 568
  25262. }
  25263. },
  25264. },
  25265. [
  25266. {
  25267. name: "Normal",
  25268. height: math.unit(2, "feet"),
  25269. default: true
  25270. },
  25271. ]
  25272. ))
  25273. characterMakers.push(() => makeCharacter(
  25274. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25275. {
  25276. front: {
  25277. height: math.unit(3, "feet"),
  25278. weight: math.unit(30, "kg"),
  25279. name: "Front",
  25280. image: {
  25281. source: "./media/characters/sweet-bit/front.svg",
  25282. extra: 675 / 567,
  25283. bottom: 27.7 / 703
  25284. }
  25285. },
  25286. },
  25287. [
  25288. {
  25289. name: "Normal",
  25290. height: math.unit(3, "feet"),
  25291. default: true
  25292. },
  25293. ]
  25294. ))
  25295. characterMakers.push(() => makeCharacter(
  25296. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25297. {
  25298. side: {
  25299. height: math.unit(9.178, "feet"),
  25300. weight: math.unit(500, "lb"),
  25301. name: "Side",
  25302. image: {
  25303. source: "./media/characters/umbrazen/side.svg",
  25304. extra: 1730 / 1473,
  25305. bottom: 34.6 / 1765
  25306. }
  25307. },
  25308. },
  25309. [
  25310. {
  25311. name: "Normal",
  25312. height: math.unit(9.178, "feet"),
  25313. default: true
  25314. },
  25315. ]
  25316. ))
  25317. characterMakers.push(() => makeCharacter(
  25318. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25319. {
  25320. front: {
  25321. height: math.unit(10, "feet"),
  25322. weight: math.unit(750, "lb"),
  25323. name: "Front",
  25324. image: {
  25325. source: "./media/characters/arlist/front.svg",
  25326. extra: 961 / 778,
  25327. bottom: 6.2 / 986
  25328. }
  25329. },
  25330. },
  25331. [
  25332. {
  25333. name: "Normal",
  25334. height: math.unit(10, "feet"),
  25335. default: true
  25336. },
  25337. ]
  25338. ))
  25339. characterMakers.push(() => makeCharacter(
  25340. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25341. {
  25342. front: {
  25343. height: math.unit(5 + 1 / 12, "feet"),
  25344. weight: math.unit(110, "lb"),
  25345. name: "Front",
  25346. image: {
  25347. source: "./media/characters/aradel/front.svg",
  25348. extra: 324 / 303,
  25349. bottom: 3.6 / 329.4
  25350. }
  25351. },
  25352. },
  25353. [
  25354. {
  25355. name: "Normal",
  25356. height: math.unit(5 + 1 / 12, "feet"),
  25357. default: true
  25358. },
  25359. ]
  25360. ))
  25361. characterMakers.push(() => makeCharacter(
  25362. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25363. {
  25364. front: {
  25365. height: math.unit(3 + 8 / 12, "feet"),
  25366. weight: math.unit(50, "lb"),
  25367. name: "Front",
  25368. image: {
  25369. source: "./media/characters/serryn/front.svg",
  25370. extra: 1792 / 1656,
  25371. bottom: 43.5 / 1840
  25372. }
  25373. },
  25374. },
  25375. [
  25376. {
  25377. name: "Normal",
  25378. height: math.unit(3 + 8 / 12, "feet"),
  25379. default: true
  25380. },
  25381. ]
  25382. ))
  25383. characterMakers.push(() => makeCharacter(
  25384. { name: "Xavier Thyme" },
  25385. {
  25386. front: {
  25387. height: math.unit(7 + 10 / 12, "feet"),
  25388. weight: math.unit(255, "lb"),
  25389. name: "Front",
  25390. image: {
  25391. source: "./media/characters/xavier-thyme/front.svg",
  25392. extra: 3733 / 3642,
  25393. bottom: 131 / 3869
  25394. }
  25395. },
  25396. frontRaven: {
  25397. height: math.unit(7 + 10 / 12, "feet"),
  25398. weight: math.unit(255, "lb"),
  25399. name: "Front (Raven)",
  25400. image: {
  25401. source: "./media/characters/xavier-thyme/front-raven.svg",
  25402. extra: 4385 / 3642,
  25403. bottom: 131 / 4517
  25404. }
  25405. },
  25406. },
  25407. [
  25408. {
  25409. name: "Normal",
  25410. height: math.unit(7 + 10 / 12, "feet"),
  25411. default: true
  25412. },
  25413. ]
  25414. ))
  25415. characterMakers.push(() => makeCharacter(
  25416. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25417. {
  25418. front: {
  25419. height: math.unit(1.6, "m"),
  25420. weight: math.unit(50, "kg"),
  25421. name: "Front",
  25422. image: {
  25423. source: "./media/characters/kiki/front.svg",
  25424. extra: 4682 / 3610,
  25425. bottom: 115 / 4777
  25426. }
  25427. },
  25428. },
  25429. [
  25430. {
  25431. name: "Normal",
  25432. height: math.unit(1.6, "meters"),
  25433. default: true
  25434. },
  25435. ]
  25436. ))
  25437. characterMakers.push(() => makeCharacter(
  25438. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25439. {
  25440. front: {
  25441. height: math.unit(50, "m"),
  25442. weight: math.unit(500, "tonnes"),
  25443. name: "Front",
  25444. image: {
  25445. source: "./media/characters/ryoko/front.svg",
  25446. extra: 4632 / 3926,
  25447. bottom: 193 / 4823
  25448. }
  25449. },
  25450. },
  25451. [
  25452. {
  25453. name: "Normal",
  25454. height: math.unit(50, "meters"),
  25455. default: true
  25456. },
  25457. ]
  25458. ))
  25459. characterMakers.push(() => makeCharacter(
  25460. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25461. {
  25462. front: {
  25463. height: math.unit(30, "m"),
  25464. weight: math.unit(22, "tonnes"),
  25465. name: "Front",
  25466. image: {
  25467. source: "./media/characters/elio/front.svg",
  25468. extra: 4582 / 3720,
  25469. bottom: 236 / 4828
  25470. }
  25471. },
  25472. },
  25473. [
  25474. {
  25475. name: "Normal",
  25476. height: math.unit(30, "meters"),
  25477. default: true
  25478. },
  25479. ]
  25480. ))
  25481. characterMakers.push(() => makeCharacter(
  25482. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25483. {
  25484. front: {
  25485. height: math.unit(6 + 3 / 12, "feet"),
  25486. weight: math.unit(120, "lb"),
  25487. name: "Front",
  25488. image: {
  25489. source: "./media/characters/azura/front.svg",
  25490. extra: 1149 / 1135,
  25491. bottom: 45 / 1194
  25492. }
  25493. },
  25494. frontClothed: {
  25495. height: math.unit(6 + 3 / 12, "feet"),
  25496. weight: math.unit(120, "lb"),
  25497. name: "Front (Clothed)",
  25498. image: {
  25499. source: "./media/characters/azura/front-clothed.svg",
  25500. extra: 1149 / 1135,
  25501. bottom: 45 / 1194
  25502. }
  25503. },
  25504. },
  25505. [
  25506. {
  25507. name: "Normal",
  25508. height: math.unit(6 + 3 / 12, "feet"),
  25509. default: true
  25510. },
  25511. {
  25512. name: "Macro",
  25513. height: math.unit(20 + 6 / 12, "feet")
  25514. },
  25515. {
  25516. name: "Megamacro",
  25517. height: math.unit(12, "miles")
  25518. },
  25519. {
  25520. name: "Gigamacro",
  25521. height: math.unit(10000, "miles")
  25522. },
  25523. {
  25524. name: "Teramacro",
  25525. height: math.unit(900000, "miles")
  25526. },
  25527. ]
  25528. ))
  25529. characterMakers.push(() => makeCharacter(
  25530. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25531. {
  25532. front: {
  25533. height: math.unit(12, "feet"),
  25534. weight: math.unit(1, "ton"),
  25535. capacity: math.unit(660000, "gallons"),
  25536. name: "Front",
  25537. image: {
  25538. source: "./media/characters/zeus/front.svg",
  25539. extra: 5005 / 4717,
  25540. bottom: 363 / 5388
  25541. }
  25542. },
  25543. },
  25544. [
  25545. {
  25546. name: "Normal",
  25547. height: math.unit(12, "feet")
  25548. },
  25549. {
  25550. name: "Preferred Size",
  25551. height: math.unit(0.5, "miles"),
  25552. default: true
  25553. },
  25554. {
  25555. name: "Giga Horse",
  25556. height: math.unit(300, "miles")
  25557. },
  25558. {
  25559. name: "Riding Planets",
  25560. height: math.unit(30, "megameters")
  25561. },
  25562. {
  25563. name: "Cosmic Giant",
  25564. height: math.unit(3, "zettameters")
  25565. },
  25566. {
  25567. name: "Breeding God",
  25568. height: math.unit(9.92e22, "yottameters")
  25569. },
  25570. ]
  25571. ))
  25572. characterMakers.push(() => makeCharacter(
  25573. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25574. {
  25575. side: {
  25576. height: math.unit(9, "feet"),
  25577. weight: math.unit(1500, "kg"),
  25578. name: "Side",
  25579. image: {
  25580. source: "./media/characters/fang/side.svg",
  25581. extra: 924 / 866,
  25582. bottom: 47.5 / 972.3
  25583. }
  25584. },
  25585. },
  25586. [
  25587. {
  25588. name: "Normal",
  25589. height: math.unit(9, "feet"),
  25590. default: true
  25591. },
  25592. {
  25593. name: "Macro",
  25594. height: math.unit(75 + 6 / 12, "feet")
  25595. },
  25596. {
  25597. name: "Teramacro",
  25598. height: math.unit(50000, "miles")
  25599. },
  25600. ]
  25601. ))
  25602. characterMakers.push(() => makeCharacter(
  25603. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25604. {
  25605. front: {
  25606. height: math.unit(10, "feet"),
  25607. weight: math.unit(2, "tons"),
  25608. name: "Front",
  25609. image: {
  25610. source: "./media/characters/rekhit/front.svg",
  25611. extra: 2796 / 2590,
  25612. bottom: 225 / 3022
  25613. }
  25614. },
  25615. },
  25616. [
  25617. {
  25618. name: "Normal",
  25619. height: math.unit(10, "feet"),
  25620. default: true
  25621. },
  25622. {
  25623. name: "Macro",
  25624. height: math.unit(500, "feet")
  25625. },
  25626. ]
  25627. ))
  25628. characterMakers.push(() => makeCharacter(
  25629. { name: "Dahlia Verrick" },
  25630. {
  25631. front: {
  25632. height: math.unit(7 + 6.451 / 12, "feet"),
  25633. weight: math.unit(310, "lb"),
  25634. name: "Front",
  25635. image: {
  25636. source: "./media/characters/dahlia-verrick/front.svg",
  25637. extra: 1488 / 1365,
  25638. bottom: 6.2 / 1495
  25639. }
  25640. },
  25641. back: {
  25642. height: math.unit(7 + 6.451 / 12, "feet"),
  25643. weight: math.unit(310, "lb"),
  25644. name: "Back",
  25645. image: {
  25646. source: "./media/characters/dahlia-verrick/back.svg",
  25647. extra: 1472 / 1351,
  25648. bottom: 5.28 / 1477
  25649. }
  25650. },
  25651. frontBusiness: {
  25652. height: math.unit(7 + 6.451 / 12, "feet"),
  25653. weight: math.unit(200, "lb"),
  25654. name: "Front (Business)",
  25655. image: {
  25656. source: "./media/characters/dahlia-verrick/front-business.svg",
  25657. extra: 1478 / 1381,
  25658. bottom: 5.5 / 1484
  25659. }
  25660. },
  25661. frontCasual: {
  25662. height: math.unit(7 + 6.451 / 12, "feet"),
  25663. weight: math.unit(200, "lb"),
  25664. name: "Front (Casual)",
  25665. image: {
  25666. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25667. extra: 1478 / 1381,
  25668. bottom: 5.5 / 1484
  25669. }
  25670. },
  25671. },
  25672. [
  25673. {
  25674. name: "Travel-Sized",
  25675. height: math.unit(7.45, "inches")
  25676. },
  25677. {
  25678. name: "Normal",
  25679. height: math.unit(7 + 6.451 / 12, "feet"),
  25680. default: true
  25681. },
  25682. {
  25683. name: "Hitting the Town",
  25684. height: math.unit(37 + 8 / 12, "feet")
  25685. },
  25686. {
  25687. name: "Stomp in the Suburbs",
  25688. height: math.unit(964 + 9.728 / 12, "feet")
  25689. },
  25690. {
  25691. name: "Sit on the City",
  25692. height: math.unit(61747 + 10.592 / 12, "feet")
  25693. },
  25694. {
  25695. name: "Glomp the Globe",
  25696. height: math.unit(252919327 + 4.832 / 12, "feet")
  25697. },
  25698. ]
  25699. ))
  25700. characterMakers.push(() => makeCharacter(
  25701. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25702. {
  25703. front: {
  25704. height: math.unit(6 + 4 / 12, "feet"),
  25705. weight: math.unit(320, "lb"),
  25706. name: "Front",
  25707. image: {
  25708. source: "./media/characters/balina-mahigan/front.svg",
  25709. extra: 447 / 428,
  25710. bottom: 18 / 466
  25711. }
  25712. },
  25713. back: {
  25714. height: math.unit(6 + 4 / 12, "feet"),
  25715. weight: math.unit(320, "lb"),
  25716. name: "Back",
  25717. image: {
  25718. source: "./media/characters/balina-mahigan/back.svg",
  25719. extra: 445 / 428,
  25720. bottom: 4.07 / 448
  25721. }
  25722. },
  25723. arm: {
  25724. height: math.unit(1.88, "feet"),
  25725. name: "Arm",
  25726. image: {
  25727. source: "./media/characters/balina-mahigan/arm.svg"
  25728. }
  25729. },
  25730. backPort: {
  25731. height: math.unit(0.685, "feet"),
  25732. name: "Back Port",
  25733. image: {
  25734. source: "./media/characters/balina-mahigan/back-port.svg"
  25735. }
  25736. },
  25737. hoofpaw: {
  25738. height: math.unit(1.41, "feet"),
  25739. name: "Hoofpaw",
  25740. image: {
  25741. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25742. }
  25743. },
  25744. leftHandBack: {
  25745. height: math.unit(0.938, "feet"),
  25746. name: "Left Hand (Back)",
  25747. image: {
  25748. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25749. }
  25750. },
  25751. leftHandFront: {
  25752. height: math.unit(0.938, "feet"),
  25753. name: "Left Hand (Front)",
  25754. image: {
  25755. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25756. }
  25757. },
  25758. rightHandBack: {
  25759. height: math.unit(0.95, "feet"),
  25760. name: "Right Hand (Back)",
  25761. image: {
  25762. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25763. }
  25764. },
  25765. rightHandFront: {
  25766. height: math.unit(0.95, "feet"),
  25767. name: "Right Hand (Front)",
  25768. image: {
  25769. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25770. }
  25771. },
  25772. },
  25773. [
  25774. {
  25775. name: "Normal",
  25776. height: math.unit(6 + 4 / 12, "feet"),
  25777. default: true
  25778. },
  25779. ]
  25780. ))
  25781. characterMakers.push(() => makeCharacter(
  25782. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25783. {
  25784. front: {
  25785. height: math.unit(6, "feet"),
  25786. weight: math.unit(320, "lb"),
  25787. name: "Front",
  25788. image: {
  25789. source: "./media/characters/balina-mejeri/front.svg",
  25790. extra: 517 / 488,
  25791. bottom: 44.2 / 561
  25792. }
  25793. },
  25794. },
  25795. [
  25796. {
  25797. name: "Normal",
  25798. height: math.unit(6 + 4 / 12, "feet")
  25799. },
  25800. {
  25801. name: "Business",
  25802. height: math.unit(155, "feet"),
  25803. default: true
  25804. },
  25805. ]
  25806. ))
  25807. characterMakers.push(() => makeCharacter(
  25808. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25809. {
  25810. kneeling: {
  25811. height: math.unit(6 + 4 / 12, "feet"),
  25812. weight: math.unit(300 * 20, "lb"),
  25813. name: "Kneeling",
  25814. image: {
  25815. source: "./media/characters/balbarian/kneeling.svg",
  25816. extra: 922 / 862,
  25817. bottom: 42.4 / 965
  25818. }
  25819. },
  25820. },
  25821. [
  25822. {
  25823. name: "Normal",
  25824. height: math.unit(6 + 4 / 12, "feet")
  25825. },
  25826. {
  25827. name: "Treasured",
  25828. height: math.unit(18 + 9 / 12, "feet"),
  25829. default: true
  25830. },
  25831. {
  25832. name: "Macro",
  25833. height: math.unit(900, "feet")
  25834. },
  25835. ]
  25836. ))
  25837. characterMakers.push(() => makeCharacter(
  25838. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25839. {
  25840. front: {
  25841. height: math.unit(6 + 4 / 12, "feet"),
  25842. weight: math.unit(325, "lb"),
  25843. name: "Front",
  25844. image: {
  25845. source: "./media/characters/balina-amarini/front.svg",
  25846. extra: 415 / 403,
  25847. bottom: 19 / 433.4
  25848. }
  25849. },
  25850. back: {
  25851. height: math.unit(6 + 4 / 12, "feet"),
  25852. weight: math.unit(325, "lb"),
  25853. name: "Back",
  25854. image: {
  25855. source: "./media/characters/balina-amarini/back.svg",
  25856. extra: 415 / 403,
  25857. bottom: 13.5 / 432
  25858. }
  25859. },
  25860. overdrive: {
  25861. height: math.unit(6 + 4 / 12, "feet"),
  25862. weight: math.unit(400, "lb"),
  25863. name: "Overdrive",
  25864. image: {
  25865. source: "./media/characters/balina-amarini/overdrive.svg",
  25866. extra: 269 / 259,
  25867. bottom: 12 / 282
  25868. }
  25869. },
  25870. },
  25871. [
  25872. {
  25873. name: "Boom",
  25874. height: math.unit(9 + 10 / 12, "feet"),
  25875. default: true
  25876. },
  25877. {
  25878. name: "Macro",
  25879. height: math.unit(280, "feet")
  25880. },
  25881. ]
  25882. ))
  25883. characterMakers.push(() => makeCharacter(
  25884. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25885. {
  25886. goddess: {
  25887. height: math.unit(600, "feet"),
  25888. weight: math.unit(2000000, "tons"),
  25889. name: "Goddess",
  25890. image: {
  25891. source: "./media/characters/lady-kubwa/goddess.svg",
  25892. extra: 1240.5 / 1223,
  25893. bottom: 22 / 1263
  25894. }
  25895. },
  25896. goddesser: {
  25897. height: math.unit(900, "feet"),
  25898. weight: math.unit(20000000, "lb"),
  25899. name: "Goddess-er",
  25900. image: {
  25901. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25902. extra: 899 / 888,
  25903. bottom: 12.6 / 912
  25904. }
  25905. },
  25906. },
  25907. [
  25908. {
  25909. name: "Macro",
  25910. height: math.unit(600, "feet"),
  25911. default: true
  25912. },
  25913. {
  25914. name: "Megamacro",
  25915. height: math.unit(250, "miles")
  25916. },
  25917. ]
  25918. ))
  25919. characterMakers.push(() => makeCharacter(
  25920. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25921. {
  25922. front: {
  25923. height: math.unit(7 + 7 / 12, "feet"),
  25924. weight: math.unit(250, "lb"),
  25925. name: "Front",
  25926. image: {
  25927. source: "./media/characters/tala-grovehorn/front.svg",
  25928. extra: 2636 / 2525,
  25929. bottom: 147 / 2781
  25930. }
  25931. },
  25932. back: {
  25933. height: math.unit(7 + 7 / 12, "feet"),
  25934. weight: math.unit(250, "lb"),
  25935. name: "Back",
  25936. image: {
  25937. source: "./media/characters/tala-grovehorn/back.svg",
  25938. extra: 2635 / 2539,
  25939. bottom: 100 / 2732.8
  25940. }
  25941. },
  25942. mouth: {
  25943. height: math.unit(1.15, "feet"),
  25944. name: "Mouth",
  25945. image: {
  25946. source: "./media/characters/tala-grovehorn/mouth.svg"
  25947. }
  25948. },
  25949. dick: {
  25950. height: math.unit(2.36, "feet"),
  25951. name: "Dick",
  25952. image: {
  25953. source: "./media/characters/tala-grovehorn/dick.svg"
  25954. }
  25955. },
  25956. slit: {
  25957. height: math.unit(0.61, "feet"),
  25958. name: "Slit",
  25959. image: {
  25960. source: "./media/characters/tala-grovehorn/slit.svg"
  25961. }
  25962. },
  25963. },
  25964. [
  25965. ]
  25966. ))
  25967. characterMakers.push(() => makeCharacter(
  25968. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25969. {
  25970. front: {
  25971. height: math.unit(7 + 7 / 12, "feet"),
  25972. weight: math.unit(225, "lb"),
  25973. name: "Front",
  25974. image: {
  25975. source: "./media/characters/epona/front.svg",
  25976. extra: 2445 / 2290,
  25977. bottom: 251 / 2696
  25978. }
  25979. },
  25980. back: {
  25981. height: math.unit(7 + 7 / 12, "feet"),
  25982. weight: math.unit(225, "lb"),
  25983. name: "Back",
  25984. image: {
  25985. source: "./media/characters/epona/back.svg",
  25986. extra: 2546 / 2408,
  25987. bottom: 44 / 2589
  25988. }
  25989. },
  25990. genitals: {
  25991. height: math.unit(1.5, "feet"),
  25992. name: "Genitals",
  25993. image: {
  25994. source: "./media/characters/epona/genitals.svg"
  25995. }
  25996. },
  25997. },
  25998. [
  25999. {
  26000. name: "Normal",
  26001. height: math.unit(7 + 7 / 12, "feet"),
  26002. default: true
  26003. },
  26004. ]
  26005. ))
  26006. characterMakers.push(() => makeCharacter(
  26007. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  26008. {
  26009. front: {
  26010. height: math.unit(7, "feet"),
  26011. weight: math.unit(518, "lb"),
  26012. name: "Front",
  26013. image: {
  26014. source: "./media/characters/avia-bloodbourn/front.svg",
  26015. extra: 1466 / 1350,
  26016. bottom: 65 / 1527
  26017. }
  26018. },
  26019. },
  26020. [
  26021. ]
  26022. ))
  26023. characterMakers.push(() => makeCharacter(
  26024. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  26025. {
  26026. front: {
  26027. height: math.unit(9.35, "feet"),
  26028. weight: math.unit(600, "lb"),
  26029. name: "Front",
  26030. image: {
  26031. source: "./media/characters/amera/front.svg",
  26032. extra: 891 / 818,
  26033. bottom: 30 / 922.7
  26034. }
  26035. },
  26036. back: {
  26037. height: math.unit(9.35, "feet"),
  26038. weight: math.unit(600, "lb"),
  26039. name: "Back",
  26040. image: {
  26041. source: "./media/characters/amera/back.svg",
  26042. extra: 876 / 824,
  26043. bottom: 6.8 / 884
  26044. }
  26045. },
  26046. dick: {
  26047. height: math.unit(2.14, "feet"),
  26048. name: "Dick",
  26049. image: {
  26050. source: "./media/characters/amera/dick.svg"
  26051. }
  26052. },
  26053. },
  26054. [
  26055. {
  26056. name: "Normal",
  26057. height: math.unit(9.35, "feet"),
  26058. default: true
  26059. },
  26060. ]
  26061. ))
  26062. characterMakers.push(() => makeCharacter(
  26063. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26064. {
  26065. kneeling: {
  26066. height: math.unit(3 + 4 / 12, "feet"),
  26067. weight: math.unit(90, "lb"),
  26068. name: "Kneeling",
  26069. image: {
  26070. source: "./media/characters/rosewen/kneeling.svg",
  26071. extra: 1835 / 1571,
  26072. bottom: 27.7 / 1862
  26073. }
  26074. },
  26075. },
  26076. [
  26077. {
  26078. name: "Normal",
  26079. height: math.unit(3 + 4 / 12, "feet"),
  26080. default: true
  26081. },
  26082. ]
  26083. ))
  26084. characterMakers.push(() => makeCharacter(
  26085. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26086. {
  26087. front: {
  26088. height: math.unit(5 + 10 / 12, "feet"),
  26089. weight: math.unit(200, "lb"),
  26090. name: "Front",
  26091. image: {
  26092. source: "./media/characters/sabah/front.svg",
  26093. extra: 849 / 763,
  26094. bottom: 33.9 / 881
  26095. }
  26096. },
  26097. },
  26098. [
  26099. {
  26100. name: "Normal",
  26101. height: math.unit(5 + 10 / 12, "feet"),
  26102. default: true
  26103. },
  26104. ]
  26105. ))
  26106. characterMakers.push(() => makeCharacter(
  26107. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26108. {
  26109. front: {
  26110. height: math.unit(3 + 5 / 12, "feet"),
  26111. weight: math.unit(40, "kg"),
  26112. name: "Front",
  26113. image: {
  26114. source: "./media/characters/purple-flame/front.svg",
  26115. extra: 1577 / 1412,
  26116. bottom: 97 / 1694
  26117. }
  26118. },
  26119. frontDressed: {
  26120. height: math.unit(3 + 5 / 12, "feet"),
  26121. weight: math.unit(40, "kg"),
  26122. name: "Front (Dressed)",
  26123. image: {
  26124. source: "./media/characters/purple-flame/front-dressed.svg",
  26125. extra: 1577 / 1412,
  26126. bottom: 97 / 1694
  26127. }
  26128. },
  26129. headphones: {
  26130. height: math.unit(0.85, "feet"),
  26131. name: "Headphones",
  26132. image: {
  26133. source: "./media/characters/purple-flame/headphones.svg"
  26134. }
  26135. },
  26136. },
  26137. [
  26138. {
  26139. name: "Really Small",
  26140. height: math.unit(5, "cm")
  26141. },
  26142. {
  26143. name: "Micro",
  26144. height: math.unit(1 + 5 / 12, "feet")
  26145. },
  26146. {
  26147. name: "Normal",
  26148. height: math.unit(3 + 5 / 12, "feet"),
  26149. default: true
  26150. },
  26151. {
  26152. name: "Minimacro",
  26153. height: math.unit(125, "feet")
  26154. },
  26155. {
  26156. name: "Macro",
  26157. height: math.unit(0.5, "miles")
  26158. },
  26159. {
  26160. name: "Megamacro",
  26161. height: math.unit(50, "miles")
  26162. },
  26163. {
  26164. name: "Gigantic",
  26165. height: math.unit(750, "miles")
  26166. },
  26167. {
  26168. name: "Planetary",
  26169. height: math.unit(15000, "miles")
  26170. },
  26171. ]
  26172. ))
  26173. characterMakers.push(() => makeCharacter(
  26174. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26175. {
  26176. front: {
  26177. height: math.unit(14, "feet"),
  26178. weight: math.unit(959, "lb"),
  26179. name: "Front",
  26180. image: {
  26181. source: "./media/characters/arsenal/front.svg",
  26182. extra: 2357 / 2157,
  26183. bottom: 93 / 2458
  26184. }
  26185. },
  26186. },
  26187. [
  26188. {
  26189. name: "Normal",
  26190. height: math.unit(14, "feet"),
  26191. default: true
  26192. },
  26193. ]
  26194. ))
  26195. characterMakers.push(() => makeCharacter(
  26196. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26197. {
  26198. front: {
  26199. height: math.unit(6, "feet"),
  26200. weight: math.unit(150, "lb"),
  26201. name: "Front",
  26202. image: {
  26203. source: "./media/characters/adira/front.svg",
  26204. extra: 1078 / 1029,
  26205. bottom: 87 / 1166
  26206. }
  26207. },
  26208. },
  26209. [
  26210. {
  26211. name: "Micro",
  26212. height: math.unit(4, "inches"),
  26213. default: true
  26214. },
  26215. {
  26216. name: "Macro",
  26217. height: math.unit(50, "feet")
  26218. },
  26219. ]
  26220. ))
  26221. characterMakers.push(() => makeCharacter(
  26222. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26223. {
  26224. front: {
  26225. height: math.unit(16, "feet"),
  26226. weight: math.unit(1000, "lb"),
  26227. name: "Front",
  26228. image: {
  26229. source: "./media/characters/grim/front.svg",
  26230. extra: 622 / 614,
  26231. bottom: 18.1 / 642
  26232. }
  26233. },
  26234. back: {
  26235. height: math.unit(16, "feet"),
  26236. weight: math.unit(1000, "lb"),
  26237. name: "Back",
  26238. image: {
  26239. source: "./media/characters/grim/back.svg",
  26240. extra: 610.6 / 602,
  26241. bottom: 40.8 / 652
  26242. }
  26243. },
  26244. hunched: {
  26245. height: math.unit(9.75, "feet"),
  26246. weight: math.unit(1000, "lb"),
  26247. name: "Hunched",
  26248. image: {
  26249. source: "./media/characters/grim/hunched.svg",
  26250. extra: 304 / 297,
  26251. bottom: 35.4 / 394
  26252. }
  26253. },
  26254. },
  26255. [
  26256. {
  26257. name: "Normal",
  26258. height: math.unit(16, "feet"),
  26259. default: true
  26260. },
  26261. ]
  26262. ))
  26263. characterMakers.push(() => makeCharacter(
  26264. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26265. {
  26266. front: {
  26267. height: math.unit(2.3, "meters"),
  26268. weight: math.unit(300, "lb"),
  26269. name: "Front",
  26270. image: {
  26271. source: "./media/characters/sinja/front-sfw.svg",
  26272. extra: 1393 / 1294,
  26273. bottom: 70 / 1463
  26274. }
  26275. },
  26276. frontNsfw: {
  26277. height: math.unit(2.3, "meters"),
  26278. weight: math.unit(300, "lb"),
  26279. name: "Front (NSFW)",
  26280. image: {
  26281. source: "./media/characters/sinja/front-nsfw.svg",
  26282. extra: 1393 / 1294,
  26283. bottom: 70 / 1463
  26284. }
  26285. },
  26286. back: {
  26287. height: math.unit(2.3, "meters"),
  26288. weight: math.unit(300, "lb"),
  26289. name: "Back",
  26290. image: {
  26291. source: "./media/characters/sinja/back.svg",
  26292. extra: 1393 / 1294,
  26293. bottom: 70 / 1463
  26294. }
  26295. },
  26296. head: {
  26297. height: math.unit(1.771, "feet"),
  26298. name: "Head",
  26299. image: {
  26300. source: "./media/characters/sinja/head.svg"
  26301. }
  26302. },
  26303. slit: {
  26304. height: math.unit(0.8, "feet"),
  26305. name: "Slit",
  26306. image: {
  26307. source: "./media/characters/sinja/slit.svg"
  26308. }
  26309. },
  26310. },
  26311. [
  26312. {
  26313. name: "Normal",
  26314. height: math.unit(2.3, "meters")
  26315. },
  26316. {
  26317. name: "Macro",
  26318. height: math.unit(91, "meters"),
  26319. default: true
  26320. },
  26321. {
  26322. name: "Megamacro",
  26323. height: math.unit(91440, "meters")
  26324. },
  26325. {
  26326. name: "Gigamacro",
  26327. height: math.unit(60960000, "meters")
  26328. },
  26329. {
  26330. name: "Teramacro",
  26331. height: math.unit(9144000000, "meters")
  26332. },
  26333. ]
  26334. ))
  26335. characterMakers.push(() => makeCharacter(
  26336. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26337. {
  26338. front: {
  26339. height: math.unit(1.7, "meters"),
  26340. weight: math.unit(130, "lb"),
  26341. name: "Front",
  26342. image: {
  26343. source: "./media/characters/kyu/front.svg",
  26344. extra: 415 / 395,
  26345. bottom: 5 / 420
  26346. }
  26347. },
  26348. head: {
  26349. height: math.unit(1.75, "feet"),
  26350. name: "Head",
  26351. image: {
  26352. source: "./media/characters/kyu/head.svg"
  26353. }
  26354. },
  26355. foot: {
  26356. height: math.unit(0.81, "feet"),
  26357. name: "Foot",
  26358. image: {
  26359. source: "./media/characters/kyu/foot.svg"
  26360. }
  26361. },
  26362. },
  26363. [
  26364. {
  26365. name: "Normal",
  26366. height: math.unit(1.7, "meters")
  26367. },
  26368. {
  26369. name: "Macro",
  26370. height: math.unit(131, "feet"),
  26371. default: true
  26372. },
  26373. {
  26374. name: "Megamacro",
  26375. height: math.unit(91440, "meters")
  26376. },
  26377. {
  26378. name: "Gigamacro",
  26379. height: math.unit(60960000, "meters")
  26380. },
  26381. {
  26382. name: "Teramacro",
  26383. height: math.unit(9144000000, "meters")
  26384. },
  26385. ]
  26386. ))
  26387. characterMakers.push(() => makeCharacter(
  26388. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26389. {
  26390. front: {
  26391. height: math.unit(7 + 1 / 12, "feet"),
  26392. weight: math.unit(250, "lb"),
  26393. name: "Front",
  26394. image: {
  26395. source: "./media/characters/joey/front.svg",
  26396. extra: 1791 / 1537,
  26397. bottom: 28 / 1816
  26398. }
  26399. },
  26400. },
  26401. [
  26402. {
  26403. name: "Micro",
  26404. height: math.unit(3, "inches")
  26405. },
  26406. {
  26407. name: "Normal",
  26408. height: math.unit(7 + 1 / 12, "feet"),
  26409. default: true
  26410. },
  26411. ]
  26412. ))
  26413. characterMakers.push(() => makeCharacter(
  26414. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26415. {
  26416. front: {
  26417. height: math.unit(165, "cm"),
  26418. weight: math.unit(140, "lb"),
  26419. name: "Front",
  26420. image: {
  26421. source: "./media/characters/sam-evans/front.svg",
  26422. extra: 3417 / 3230,
  26423. bottom: 41.3 / 3417
  26424. }
  26425. },
  26426. frontSixTails: {
  26427. height: math.unit(165, "cm"),
  26428. weight: math.unit(140, "lb"),
  26429. name: "Front-six-tails",
  26430. image: {
  26431. source: "./media/characters/sam-evans/front-six-tails.svg",
  26432. extra: 3417 / 3230,
  26433. bottom: 41.3 / 3417
  26434. }
  26435. },
  26436. back: {
  26437. height: math.unit(165, "cm"),
  26438. weight: math.unit(140, "lb"),
  26439. name: "Back",
  26440. image: {
  26441. source: "./media/characters/sam-evans/back.svg",
  26442. extra: 3227 / 3032,
  26443. bottom: 6.8 / 3234
  26444. }
  26445. },
  26446. face: {
  26447. height: math.unit(0.68, "feet"),
  26448. name: "Face",
  26449. image: {
  26450. source: "./media/characters/sam-evans/face.svg"
  26451. }
  26452. },
  26453. },
  26454. [
  26455. {
  26456. name: "Normal",
  26457. height: math.unit(165, "cm"),
  26458. default: true
  26459. },
  26460. {
  26461. name: "Macro",
  26462. height: math.unit(100, "meters")
  26463. },
  26464. {
  26465. name: "Macro+",
  26466. height: math.unit(800, "meters")
  26467. },
  26468. {
  26469. name: "Macro++",
  26470. height: math.unit(3, "km")
  26471. },
  26472. {
  26473. name: "Macro+++",
  26474. height: math.unit(30, "km")
  26475. },
  26476. ]
  26477. ))
  26478. characterMakers.push(() => makeCharacter(
  26479. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26480. {
  26481. front: {
  26482. height: math.unit(10, "feet"),
  26483. weight: math.unit(750, "lb"),
  26484. name: "Front",
  26485. image: {
  26486. source: "./media/characters/juliet-a/front.svg",
  26487. extra: 1766 / 1720,
  26488. bottom: 43 / 1809
  26489. }
  26490. },
  26491. back: {
  26492. height: math.unit(10, "feet"),
  26493. weight: math.unit(750, "lb"),
  26494. name: "Back",
  26495. image: {
  26496. source: "./media/characters/juliet-a/back.svg",
  26497. extra: 1781 / 1734,
  26498. bottom: 35 / 1810,
  26499. }
  26500. },
  26501. },
  26502. [
  26503. {
  26504. name: "Normal",
  26505. height: math.unit(10, "feet"),
  26506. default: true
  26507. },
  26508. {
  26509. name: "Dragon Form",
  26510. height: math.unit(250, "feet")
  26511. },
  26512. {
  26513. name: "Macro",
  26514. height: math.unit(1000, "feet")
  26515. },
  26516. {
  26517. name: "Megamacro",
  26518. height: math.unit(10000, "feet")
  26519. }
  26520. ]
  26521. ))
  26522. characterMakers.push(() => makeCharacter(
  26523. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26524. {
  26525. regular: {
  26526. height: math.unit(7 + 3 / 12, "feet"),
  26527. weight: math.unit(260, "lb"),
  26528. name: "Regular",
  26529. image: {
  26530. source: "./media/characters/wild/regular.svg",
  26531. extra: 97.45 / 92,
  26532. bottom: 6.8 / 104.3
  26533. }
  26534. },
  26535. biggums: {
  26536. height: math.unit(8 + 6 / 12, "feet"),
  26537. weight: math.unit(425, "lb"),
  26538. name: "Biggums",
  26539. image: {
  26540. source: "./media/characters/wild/biggums.svg",
  26541. extra: 97.45 / 92,
  26542. bottom: 7.5 / 132.34
  26543. }
  26544. },
  26545. mawRegular: {
  26546. height: math.unit(1.24, "feet"),
  26547. name: "Maw (Regular)",
  26548. image: {
  26549. source: "./media/characters/wild/maw.svg"
  26550. }
  26551. },
  26552. mawBiggums: {
  26553. height: math.unit(1.47, "feet"),
  26554. name: "Maw (Biggums)",
  26555. image: {
  26556. source: "./media/characters/wild/maw.svg"
  26557. }
  26558. },
  26559. },
  26560. [
  26561. {
  26562. name: "Normal",
  26563. height: math.unit(7 + 3 / 12, "feet"),
  26564. default: true
  26565. },
  26566. ]
  26567. ))
  26568. characterMakers.push(() => makeCharacter(
  26569. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26570. {
  26571. front: {
  26572. height: math.unit(2.5, "meters"),
  26573. weight: math.unit(200, "kg"),
  26574. name: "Front",
  26575. image: {
  26576. source: "./media/characters/vidar/front.svg",
  26577. extra: 2994 / 2795,
  26578. bottom: 56 / 3061
  26579. }
  26580. },
  26581. back: {
  26582. height: math.unit(2.5, "meters"),
  26583. weight: math.unit(200, "kg"),
  26584. name: "Back",
  26585. image: {
  26586. source: "./media/characters/vidar/back.svg",
  26587. extra: 3131 / 2928,
  26588. bottom: 13.5 / 3141.5
  26589. }
  26590. },
  26591. feral: {
  26592. height: math.unit(2.5, "meters"),
  26593. weight: math.unit(2000, "kg"),
  26594. name: "Feral",
  26595. image: {
  26596. source: "./media/characters/vidar/feral.svg",
  26597. extra: 2790 / 1765,
  26598. bottom: 6 / 2796
  26599. }
  26600. },
  26601. },
  26602. [
  26603. {
  26604. name: "Normal",
  26605. height: math.unit(2.5, "meters"),
  26606. default: true
  26607. },
  26608. {
  26609. name: "Macro",
  26610. height: math.unit(100, "meters")
  26611. },
  26612. ]
  26613. ))
  26614. characterMakers.push(() => makeCharacter(
  26615. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26616. {
  26617. front: {
  26618. height: math.unit(5 + 9 / 12, "feet"),
  26619. weight: math.unit(120, "lb"),
  26620. name: "Front",
  26621. image: {
  26622. source: "./media/characters/ash/front.svg",
  26623. extra: 2189 / 1961,
  26624. bottom: 5.2 / 2194
  26625. }
  26626. },
  26627. },
  26628. [
  26629. {
  26630. name: "Normal",
  26631. height: math.unit(5 + 9 / 12, "feet"),
  26632. default: true
  26633. },
  26634. ]
  26635. ))
  26636. characterMakers.push(() => makeCharacter(
  26637. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26638. {
  26639. front: {
  26640. height: math.unit(9, "feet"),
  26641. weight: math.unit(10000, "lb"),
  26642. name: "Front",
  26643. image: {
  26644. source: "./media/characters/gygabite/front.svg",
  26645. bottom: 31.7 / 537.8,
  26646. extra: 505 / 370
  26647. }
  26648. },
  26649. },
  26650. [
  26651. {
  26652. name: "Normal",
  26653. height: math.unit(9, "feet"),
  26654. default: true
  26655. },
  26656. ]
  26657. ))
  26658. characterMakers.push(() => makeCharacter(
  26659. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26660. {
  26661. front: {
  26662. height: math.unit(12, "feet"),
  26663. weight: math.unit(35000, "lb"),
  26664. name: "Front",
  26665. image: {
  26666. source: "./media/characters/p0tat0/front.svg",
  26667. extra: 1065 / 921,
  26668. bottom: 55.7 / 1121.25
  26669. }
  26670. },
  26671. },
  26672. [
  26673. {
  26674. name: "Normal",
  26675. height: math.unit(12, "feet"),
  26676. default: true
  26677. },
  26678. ]
  26679. ))
  26680. characterMakers.push(() => makeCharacter(
  26681. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26682. {
  26683. side: {
  26684. height: math.unit(6.5, "feet"),
  26685. weight: math.unit(800, "lb"),
  26686. name: "Side",
  26687. image: {
  26688. source: "./media/characters/dusk/side.svg",
  26689. extra: 615 / 373,
  26690. bottom: 53 / 664
  26691. }
  26692. },
  26693. sitting: {
  26694. height: math.unit(7, "feet"),
  26695. weight: math.unit(800, "lb"),
  26696. name: "Sitting",
  26697. image: {
  26698. source: "./media/characters/dusk/sitting.svg",
  26699. extra: 753 / 425,
  26700. bottom: 33 / 774
  26701. }
  26702. },
  26703. head: {
  26704. height: math.unit(6.1, "feet"),
  26705. name: "Head",
  26706. image: {
  26707. source: "./media/characters/dusk/head.svg"
  26708. }
  26709. },
  26710. },
  26711. [
  26712. {
  26713. name: "Normal",
  26714. height: math.unit(7, "feet"),
  26715. default: true
  26716. },
  26717. ]
  26718. ))
  26719. characterMakers.push(() => makeCharacter(
  26720. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26721. {
  26722. front: {
  26723. height: math.unit(15, "feet"),
  26724. weight: math.unit(7000, "lb"),
  26725. name: "Front",
  26726. image: {
  26727. source: "./media/characters/jay-direwolf/front.svg",
  26728. extra: 1810 / 1732,
  26729. bottom: 66 / 1892
  26730. }
  26731. },
  26732. },
  26733. [
  26734. {
  26735. name: "Normal",
  26736. height: math.unit(15, "feet"),
  26737. default: true
  26738. },
  26739. ]
  26740. ))
  26741. characterMakers.push(() => makeCharacter(
  26742. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26743. {
  26744. front: {
  26745. height: math.unit(4 + 9 / 12, "feet"),
  26746. weight: math.unit(130, "lb"),
  26747. name: "Front",
  26748. image: {
  26749. source: "./media/characters/anchovie/front.svg",
  26750. extra: 382 / 350,
  26751. bottom: 25 / 409
  26752. }
  26753. },
  26754. back: {
  26755. height: math.unit(4 + 9 / 12, "feet"),
  26756. weight: math.unit(130, "lb"),
  26757. name: "Back",
  26758. image: {
  26759. source: "./media/characters/anchovie/back.svg",
  26760. extra: 385 / 352,
  26761. bottom: 16.6 / 402
  26762. }
  26763. },
  26764. frontDressed: {
  26765. height: math.unit(4 + 9 / 12, "feet"),
  26766. weight: math.unit(130, "lb"),
  26767. name: "Front (Dressed)",
  26768. image: {
  26769. source: "./media/characters/anchovie/front-dressed.svg",
  26770. extra: 382 / 350,
  26771. bottom: 25 / 409
  26772. }
  26773. },
  26774. backDressed: {
  26775. height: math.unit(4 + 9 / 12, "feet"),
  26776. weight: math.unit(130, "lb"),
  26777. name: "Back (Dressed)",
  26778. image: {
  26779. source: "./media/characters/anchovie/back-dressed.svg",
  26780. extra: 385 / 352,
  26781. bottom: 16.6 / 402
  26782. }
  26783. },
  26784. },
  26785. [
  26786. {
  26787. name: "Micro",
  26788. height: math.unit(6.4, "inches")
  26789. },
  26790. {
  26791. name: "Normal",
  26792. height: math.unit(4 + 9 / 12, "feet"),
  26793. default: true
  26794. },
  26795. ]
  26796. ))
  26797. characterMakers.push(() => makeCharacter(
  26798. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26799. {
  26800. front: {
  26801. height: math.unit(2, "meters"),
  26802. weight: math.unit(180, "lb"),
  26803. name: "Front",
  26804. image: {
  26805. source: "./media/characters/acidrenamon/front.svg",
  26806. extra: 987 / 890,
  26807. bottom: 22.8 / 1009
  26808. }
  26809. },
  26810. back: {
  26811. height: math.unit(2, "meters"),
  26812. weight: math.unit(180, "lb"),
  26813. name: "Back",
  26814. image: {
  26815. source: "./media/characters/acidrenamon/back.svg",
  26816. extra: 983 / 891,
  26817. bottom: 8.4 / 992
  26818. }
  26819. },
  26820. head: {
  26821. height: math.unit(1.92, "feet"),
  26822. name: "Head",
  26823. image: {
  26824. source: "./media/characters/acidrenamon/head.svg"
  26825. }
  26826. },
  26827. rump: {
  26828. height: math.unit(1.72, "feet"),
  26829. name: "Rump",
  26830. image: {
  26831. source: "./media/characters/acidrenamon/rump.svg"
  26832. }
  26833. },
  26834. tail: {
  26835. height: math.unit(4.2, "feet"),
  26836. name: "Tail",
  26837. image: {
  26838. source: "./media/characters/acidrenamon/tail.svg"
  26839. }
  26840. },
  26841. },
  26842. [
  26843. {
  26844. name: "Normal",
  26845. height: math.unit(2, "meters"),
  26846. default: true
  26847. },
  26848. {
  26849. name: "Minimacro",
  26850. height: math.unit(7, "meters")
  26851. },
  26852. {
  26853. name: "Macro",
  26854. height: math.unit(200, "meters")
  26855. },
  26856. {
  26857. name: "Gigamacro",
  26858. height: math.unit(0.2, "earths")
  26859. },
  26860. ]
  26861. ))
  26862. characterMakers.push(() => makeCharacter(
  26863. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26864. {
  26865. front: {
  26866. height: math.unit(6, "feet"),
  26867. weight: math.unit(150, "lb"),
  26868. name: "Front",
  26869. image: {
  26870. source: "./media/characters/kenzie-lee/front.svg",
  26871. extra: 1525 / 1465,
  26872. bottom: 45 / 1570
  26873. }
  26874. },
  26875. side: {
  26876. height: math.unit(6, "feet"),
  26877. weight: math.unit(150, "lb"),
  26878. name: "Side",
  26879. image: {
  26880. source: "./media/characters/kenzie-lee/side.svg",
  26881. extra: 5505 / 5383,
  26882. bottom: 60 / 5573
  26883. }
  26884. },
  26885. paw: {
  26886. height: math.unit(0.57, "feet"),
  26887. name: "Paw",
  26888. image: {
  26889. source: "./media/characters/kenzie-lee/paw.svg"
  26890. }
  26891. },
  26892. },
  26893. [
  26894. {
  26895. name: "Normal",
  26896. height: math.unit(152, "feet"),
  26897. default: true
  26898. },
  26899. {
  26900. name: "Megamacro",
  26901. height: math.unit(7, "miles")
  26902. },
  26903. {
  26904. name: "Gigamacro",
  26905. height: math.unit(8000, "miles")
  26906. },
  26907. ]
  26908. ))
  26909. characterMakers.push(() => makeCharacter(
  26910. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26911. {
  26912. side: {
  26913. height: math.unit(6, "feet"),
  26914. weight: math.unit(150, "lb"),
  26915. name: "Side",
  26916. image: {
  26917. source: "./media/characters/withers/side.svg",
  26918. extra: 1830 / 1728,
  26919. bottom: 96 / 1927
  26920. }
  26921. },
  26922. front: {
  26923. height: math.unit(6, "feet"),
  26924. weight: math.unit(150, "lb"),
  26925. name: "Front",
  26926. image: {
  26927. source: "./media/characters/withers/front.svg",
  26928. extra: 1514 / 1438,
  26929. bottom: 118 / 1632
  26930. }
  26931. },
  26932. },
  26933. [
  26934. {
  26935. name: "Macro",
  26936. height: math.unit(168, "feet"),
  26937. default: true
  26938. },
  26939. {
  26940. name: "Megamacro",
  26941. height: math.unit(15, "miles")
  26942. }
  26943. ]
  26944. ))
  26945. characterMakers.push(() => makeCharacter(
  26946. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26947. {
  26948. front: {
  26949. height: math.unit(6 + 7 / 12, "feet"),
  26950. weight: math.unit(250, "lb"),
  26951. name: "Front",
  26952. image: {
  26953. source: "./media/characters/nemoskii/front.svg",
  26954. extra: 2270 / 1734,
  26955. bottom: 86 / 2354
  26956. }
  26957. },
  26958. back: {
  26959. height: math.unit(6 + 7 / 12, "feet"),
  26960. weight: math.unit(250, "lb"),
  26961. name: "Back",
  26962. image: {
  26963. source: "./media/characters/nemoskii/back.svg",
  26964. extra: 1845 / 1788,
  26965. bottom: 10.5 / 1852
  26966. }
  26967. },
  26968. head: {
  26969. height: math.unit(1.31, "feet"),
  26970. name: "Head",
  26971. image: {
  26972. source: "./media/characters/nemoskii/head.svg"
  26973. }
  26974. },
  26975. },
  26976. [
  26977. {
  26978. name: "Micro",
  26979. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26980. },
  26981. {
  26982. name: "Normal",
  26983. height: math.unit(6 + 7 / 12, "feet"),
  26984. default: true
  26985. },
  26986. {
  26987. name: "Macro",
  26988. height: math.unit((6 + 7 / 12) * 150, "feet")
  26989. },
  26990. {
  26991. name: "Macro+",
  26992. height: math.unit((6 + 7 / 12) * 500, "feet")
  26993. },
  26994. {
  26995. name: "Megamacro",
  26996. height: math.unit((6 + 7 / 12) * 100000, "feet")
  26997. },
  26998. ]
  26999. ))
  27000. characterMakers.push(() => makeCharacter(
  27001. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  27002. {
  27003. front: {
  27004. height: math.unit(1, "mile"),
  27005. weight: math.unit(265261.9, "lb"),
  27006. name: "Front",
  27007. image: {
  27008. source: "./media/characters/shui/front.svg",
  27009. extra: 1633 / 1564,
  27010. bottom: 91.5 / 1726
  27011. }
  27012. },
  27013. },
  27014. [
  27015. {
  27016. name: "Macro",
  27017. height: math.unit(1, "mile"),
  27018. default: true
  27019. },
  27020. ]
  27021. ))
  27022. characterMakers.push(() => makeCharacter(
  27023. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  27024. {
  27025. front: {
  27026. height: math.unit(12 + 6 / 12, "feet"),
  27027. weight: math.unit(1342, "lb"),
  27028. name: "Front",
  27029. image: {
  27030. source: "./media/characters/arokh-takakura/front.svg",
  27031. extra: 1089 / 1043,
  27032. bottom: 77.4 / 1176.7
  27033. }
  27034. },
  27035. back: {
  27036. height: math.unit(12 + 6 / 12, "feet"),
  27037. weight: math.unit(1342, "lb"),
  27038. name: "Back",
  27039. image: {
  27040. source: "./media/characters/arokh-takakura/back.svg",
  27041. extra: 1046 / 1019,
  27042. bottom: 102 / 1150
  27043. }
  27044. },
  27045. },
  27046. [
  27047. {
  27048. name: "Big",
  27049. height: math.unit(12 + 6 / 12, "feet"),
  27050. default: true
  27051. },
  27052. ]
  27053. ))
  27054. characterMakers.push(() => makeCharacter(
  27055. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27056. {
  27057. front: {
  27058. height: math.unit(5 + 6 / 12, "feet"),
  27059. weight: math.unit(150, "lb"),
  27060. name: "Front",
  27061. image: {
  27062. source: "./media/characters/theo/front.svg",
  27063. extra: 1184 / 1131,
  27064. bottom: 7.4 / 1191
  27065. }
  27066. },
  27067. },
  27068. [
  27069. {
  27070. name: "Micro",
  27071. height: math.unit(5, "inches")
  27072. },
  27073. {
  27074. name: "Normal",
  27075. height: math.unit(5 + 6 / 12, "feet"),
  27076. default: true
  27077. },
  27078. ]
  27079. ))
  27080. characterMakers.push(() => makeCharacter(
  27081. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27082. {
  27083. front: {
  27084. height: math.unit(5 + 9 / 12, "feet"),
  27085. weight: math.unit(130, "lb"),
  27086. name: "Front",
  27087. image: {
  27088. source: "./media/characters/cecelia-swift/front.svg",
  27089. extra: 502 / 484,
  27090. bottom: 23 / 523
  27091. }
  27092. },
  27093. back: {
  27094. height: math.unit(5 + 9 / 12, "feet"),
  27095. weight: math.unit(130, "lb"),
  27096. name: "Back",
  27097. image: {
  27098. source: "./media/characters/cecelia-swift/back.svg",
  27099. extra: 499 / 485,
  27100. bottom: 12 / 511
  27101. }
  27102. },
  27103. head: {
  27104. height: math.unit(0.90, "feet"),
  27105. name: "Head",
  27106. image: {
  27107. source: "./media/characters/cecelia-swift/head.svg"
  27108. }
  27109. },
  27110. rump: {
  27111. height: math.unit(1.75, "feet"),
  27112. name: "Rump",
  27113. image: {
  27114. source: "./media/characters/cecelia-swift/rump.svg"
  27115. }
  27116. },
  27117. },
  27118. [
  27119. {
  27120. name: "Normal",
  27121. height: math.unit(5 + 9 / 12, "feet"),
  27122. default: true
  27123. },
  27124. {
  27125. name: "Big",
  27126. height: math.unit(50, "feet")
  27127. },
  27128. {
  27129. name: "Macro",
  27130. height: math.unit(100, "feet")
  27131. },
  27132. {
  27133. name: "Macro+",
  27134. height: math.unit(500, "feet")
  27135. },
  27136. {
  27137. name: "Macro++",
  27138. height: math.unit(1000, "feet")
  27139. },
  27140. ]
  27141. ))
  27142. characterMakers.push(() => makeCharacter(
  27143. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27144. {
  27145. front: {
  27146. height: math.unit(6, "feet"),
  27147. weight: math.unit(150, "lb"),
  27148. name: "Front",
  27149. image: {
  27150. source: "./media/characters/kaunan/front.svg",
  27151. extra: 2890 / 2523,
  27152. bottom: 49 / 2939
  27153. }
  27154. },
  27155. },
  27156. [
  27157. {
  27158. name: "Macro",
  27159. height: math.unit(150, "feet"),
  27160. default: true
  27161. },
  27162. ]
  27163. ))
  27164. characterMakers.push(() => makeCharacter(
  27165. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27166. {
  27167. front: {
  27168. height: math.unit(175, "cm"),
  27169. weight: math.unit(60, "kg"),
  27170. name: "Front",
  27171. image: {
  27172. source: "./media/characters/fei/front.svg",
  27173. extra: 2581 / 2400,
  27174. bottom: 82.2 / 2663
  27175. }
  27176. },
  27177. },
  27178. [
  27179. {
  27180. name: "Mortal",
  27181. height: math.unit(175, "cm")
  27182. },
  27183. {
  27184. name: "Normal",
  27185. height: math.unit(3500, "m"),
  27186. default: true
  27187. },
  27188. {
  27189. name: "Stroll",
  27190. height: math.unit(17.5, "km")
  27191. },
  27192. {
  27193. name: "Showoff",
  27194. height: math.unit(175, "km")
  27195. },
  27196. ]
  27197. ))
  27198. characterMakers.push(() => makeCharacter(
  27199. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27200. {
  27201. front: {
  27202. height: math.unit(7, "feet"),
  27203. weight: math.unit(1000, "kg"),
  27204. name: "Front",
  27205. image: {
  27206. source: "./media/characters/edrax/front.svg",
  27207. extra: 2838 / 2550,
  27208. bottom: 130 / 2968
  27209. }
  27210. },
  27211. },
  27212. [
  27213. {
  27214. name: "Small",
  27215. height: math.unit(7, "feet")
  27216. },
  27217. {
  27218. name: "Normal",
  27219. height: math.unit(1500, "meters")
  27220. },
  27221. {
  27222. name: "Mega",
  27223. height: math.unit(12000000, "km"),
  27224. default: true
  27225. },
  27226. {
  27227. name: "Megamacro",
  27228. height: math.unit(10600000, "lightyears")
  27229. },
  27230. {
  27231. name: "Hypermacro",
  27232. height: math.unit(256, "yottameters")
  27233. },
  27234. ]
  27235. ))
  27236. characterMakers.push(() => makeCharacter(
  27237. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27238. {
  27239. front: {
  27240. height: math.unit(10, "feet"),
  27241. weight: math.unit(750, "lb"),
  27242. name: "Front",
  27243. image: {
  27244. source: "./media/characters/clove/front.svg",
  27245. extra: 2031 / 1860,
  27246. bottom: 47.8 / 2080
  27247. }
  27248. },
  27249. back: {
  27250. height: math.unit(10, "feet"),
  27251. weight: math.unit(750, "lb"),
  27252. name: "Back",
  27253. image: {
  27254. source: "./media/characters/clove/back.svg",
  27255. extra: 2025 / 1859,
  27256. bottom: 46 / 2071
  27257. }
  27258. },
  27259. },
  27260. [
  27261. {
  27262. name: "Normal",
  27263. height: math.unit(10, "feet"),
  27264. default: true
  27265. },
  27266. ]
  27267. ))
  27268. characterMakers.push(() => makeCharacter(
  27269. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27270. {
  27271. front: {
  27272. height: math.unit(4, "feet"),
  27273. weight: math.unit(50, "lb"),
  27274. name: "Front",
  27275. image: {
  27276. source: "./media/characters/alex-rabbit/front.svg",
  27277. extra: 507 / 458,
  27278. bottom: 18.5 / 527
  27279. }
  27280. },
  27281. back: {
  27282. height: math.unit(4, "feet"),
  27283. weight: math.unit(50, "lb"),
  27284. name: "Back",
  27285. image: {
  27286. source: "./media/characters/alex-rabbit/back.svg",
  27287. extra: 502 / 460,
  27288. bottom: 18.9 / 521
  27289. }
  27290. },
  27291. },
  27292. [
  27293. {
  27294. name: "Normal",
  27295. height: math.unit(4, "feet"),
  27296. default: true
  27297. },
  27298. ]
  27299. ))
  27300. characterMakers.push(() => makeCharacter(
  27301. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27302. {
  27303. front: {
  27304. height: math.unit(1 + 3 / 12, "feet"),
  27305. weight: math.unit(80, "lb"),
  27306. name: "Front",
  27307. image: {
  27308. source: "./media/characters/zander-rose/front.svg",
  27309. extra: 916 / 797,
  27310. bottom: 17 / 933
  27311. }
  27312. },
  27313. back: {
  27314. height: math.unit(1 + 3 / 12, "feet"),
  27315. weight: math.unit(80, "lb"),
  27316. name: "Back",
  27317. image: {
  27318. source: "./media/characters/zander-rose/back.svg",
  27319. extra: 903 / 779,
  27320. bottom: 31 / 934
  27321. }
  27322. },
  27323. },
  27324. [
  27325. {
  27326. name: "Normal",
  27327. height: math.unit(1 + 3 / 12, "feet"),
  27328. default: true
  27329. },
  27330. ]
  27331. ))
  27332. characterMakers.push(() => makeCharacter(
  27333. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27334. {
  27335. anthro: {
  27336. height: math.unit(6, "feet"),
  27337. weight: math.unit(150, "lb"),
  27338. name: "Anthro",
  27339. image: {
  27340. source: "./media/characters/razz/anthro.svg",
  27341. extra: 1437 / 1343,
  27342. bottom: 48 / 1485
  27343. }
  27344. },
  27345. feral: {
  27346. height: math.unit(6, "feet"),
  27347. weight: math.unit(150, "lb"),
  27348. name: "Feral",
  27349. image: {
  27350. source: "./media/characters/razz/feral.svg",
  27351. extra: 2569 / 1385,
  27352. bottom: 95 / 2664
  27353. }
  27354. },
  27355. },
  27356. [
  27357. {
  27358. name: "Normal",
  27359. height: math.unit(6, "feet"),
  27360. default: true
  27361. },
  27362. ]
  27363. ))
  27364. characterMakers.push(() => makeCharacter(
  27365. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27366. {
  27367. front: {
  27368. height: math.unit(9 + 4 / 12, "feet"),
  27369. weight: math.unit(500, "lb"),
  27370. name: "Front",
  27371. image: {
  27372. source: "./media/characters/morrigan/front.svg",
  27373. extra: 2707 / 2579,
  27374. bottom: 156 / 2863
  27375. }
  27376. },
  27377. },
  27378. [
  27379. {
  27380. name: "Normal",
  27381. height: math.unit(9 + 4 / 12, "feet"),
  27382. default: true
  27383. },
  27384. ]
  27385. ))
  27386. characterMakers.push(() => makeCharacter(
  27387. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27388. {
  27389. front: {
  27390. height: math.unit(5, "stories"),
  27391. weight: math.unit(4000, "lb"),
  27392. name: "Front",
  27393. image: {
  27394. source: "./media/characters/jenene/front.svg",
  27395. extra: 1780 / 1710,
  27396. bottom: 57 / 1837
  27397. }
  27398. },
  27399. },
  27400. [
  27401. {
  27402. name: "Normal",
  27403. height: math.unit(5, "stories"),
  27404. default: true
  27405. },
  27406. ]
  27407. ))
  27408. characterMakers.push(() => makeCharacter(
  27409. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27410. {
  27411. front: {
  27412. height: math.unit(6, "feet"),
  27413. weight: math.unit(150, "lb"),
  27414. name: "Front",
  27415. image: {
  27416. source: "./media/characters/vix-archaser/front.svg",
  27417. extra: 2767 / 2562,
  27418. bottom: 36 / 2803
  27419. }
  27420. },
  27421. },
  27422. [
  27423. {
  27424. name: "Micro",
  27425. height: math.unit(1, "foot")
  27426. },
  27427. {
  27428. name: "Normal",
  27429. height: math.unit(6 + 5 / 12, "feet")
  27430. },
  27431. {
  27432. name: "Minimacro",
  27433. height: math.unit(500, "feet")
  27434. },
  27435. {
  27436. name: "Macro",
  27437. height: math.unit(4, "miles")
  27438. },
  27439. {
  27440. name: "Megamacro",
  27441. height: math.unit(250, "miles"),
  27442. default: true
  27443. },
  27444. {
  27445. name: "Gigamacro",
  27446. height: math.unit(1, "universe")
  27447. },
  27448. {
  27449. name: "Endgame",
  27450. height: math.unit(100, "multiverses")
  27451. }
  27452. ]
  27453. ))
  27454. characterMakers.push(() => makeCharacter(
  27455. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27456. {
  27457. taurSfw: {
  27458. height: math.unit(10, "meters"),
  27459. weight: math.unit(17500, "kg"),
  27460. name: "Taur",
  27461. image: {
  27462. source: "./media/characters/faey/taur-sfw.svg",
  27463. extra: 1200 / 968,
  27464. bottom: 41 / 1241
  27465. }
  27466. },
  27467. chestmaw: {
  27468. height: math.unit(2.01, "meters"),
  27469. name: "Chestmaw",
  27470. image: {
  27471. source: "./media/characters/faey/chestmaw.svg"
  27472. }
  27473. },
  27474. foot: {
  27475. height: math.unit(2.43, "meters"),
  27476. name: "Foot",
  27477. image: {
  27478. source: "./media/characters/faey/foot.svg"
  27479. }
  27480. },
  27481. jaws: {
  27482. height: math.unit(1.66, "meters"),
  27483. name: "Jaws",
  27484. image: {
  27485. source: "./media/characters/faey/jaws.svg"
  27486. }
  27487. },
  27488. tongues: {
  27489. height: math.unit(2.01, "meters"),
  27490. name: "Tongues",
  27491. image: {
  27492. source: "./media/characters/faey/tongues.svg"
  27493. }
  27494. },
  27495. },
  27496. [
  27497. {
  27498. name: "Small",
  27499. height: math.unit(10, "meters"),
  27500. default: true
  27501. },
  27502. {
  27503. name: "Big",
  27504. height: math.unit(500000, "km")
  27505. },
  27506. ]
  27507. ))
  27508. characterMakers.push(() => makeCharacter(
  27509. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27510. {
  27511. front: {
  27512. height: math.unit(7, "feet"),
  27513. weight: math.unit(275, "lb"),
  27514. name: "Front",
  27515. image: {
  27516. source: "./media/characters/roku/front.svg",
  27517. extra: 903 / 878,
  27518. bottom: 37 / 940
  27519. }
  27520. },
  27521. },
  27522. [
  27523. {
  27524. name: "Normal",
  27525. height: math.unit(7, "feet"),
  27526. default: true
  27527. },
  27528. {
  27529. name: "Macro",
  27530. height: math.unit(500, "feet")
  27531. },
  27532. {
  27533. name: "Megamacro",
  27534. height: math.unit(200, "miles")
  27535. },
  27536. ]
  27537. ))
  27538. characterMakers.push(() => makeCharacter(
  27539. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27540. {
  27541. front: {
  27542. height: math.unit(6 + 2 / 12, "feet"),
  27543. weight: math.unit(150, "lb"),
  27544. name: "Front",
  27545. image: {
  27546. source: "./media/characters/lira/front.svg",
  27547. extra: 1727 / 1605,
  27548. bottom: 26 / 1753
  27549. }
  27550. },
  27551. back: {
  27552. height: math.unit(6 + 2 / 12, "feet"),
  27553. weight: math.unit(150, "lb"),
  27554. name: "Back",
  27555. image: {
  27556. source: "./media/characters/lira/back.svg",
  27557. extra: 1713 / 159,
  27558. bottom: 20 / 1733
  27559. }
  27560. },
  27561. hand: {
  27562. height: math.unit(0.75, "feet"),
  27563. name: "Hand",
  27564. image: {
  27565. source: "./media/characters/lira/hand.svg"
  27566. }
  27567. },
  27568. maw: {
  27569. height: math.unit(0.65, "feet"),
  27570. name: "Maw",
  27571. image: {
  27572. source: "./media/characters/lira/maw.svg"
  27573. }
  27574. },
  27575. pawDigi: {
  27576. height: math.unit(1.6, "feet"),
  27577. name: "Paw Digi",
  27578. image: {
  27579. source: "./media/characters/lira/paw-digi.svg"
  27580. }
  27581. },
  27582. pawPlanti: {
  27583. height: math.unit(1.4, "feet"),
  27584. name: "Paw Planti",
  27585. image: {
  27586. source: "./media/characters/lira/paw-planti.svg"
  27587. }
  27588. },
  27589. },
  27590. [
  27591. {
  27592. name: "Normal",
  27593. height: math.unit(6 + 2 / 12, "feet"),
  27594. default: true
  27595. },
  27596. {
  27597. name: "Macro",
  27598. height: math.unit(100, "feet")
  27599. },
  27600. {
  27601. name: "Macro²",
  27602. height: math.unit(1600, "feet")
  27603. },
  27604. {
  27605. name: "Planetary",
  27606. height: math.unit(20, "earths")
  27607. },
  27608. ]
  27609. ))
  27610. characterMakers.push(() => makeCharacter(
  27611. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27612. {
  27613. front: {
  27614. height: math.unit(6, "feet"),
  27615. weight: math.unit(150, "lb"),
  27616. name: "Front",
  27617. image: {
  27618. source: "./media/characters/hadjet/front.svg",
  27619. extra: 1480 / 1346,
  27620. bottom: 26 / 1506
  27621. }
  27622. },
  27623. frontNsfw: {
  27624. height: math.unit(6, "feet"),
  27625. weight: math.unit(150, "lb"),
  27626. name: "Front (NSFW)",
  27627. image: {
  27628. source: "./media/characters/hadjet/front-nsfw.svg",
  27629. extra: 1440 / 1358,
  27630. bottom: 52 / 1492
  27631. }
  27632. },
  27633. },
  27634. [
  27635. {
  27636. name: "Macro",
  27637. height: math.unit(10, "stories"),
  27638. default: true
  27639. },
  27640. {
  27641. name: "Megamacro",
  27642. height: math.unit(1.5, "miles")
  27643. },
  27644. {
  27645. name: "Megamacro+",
  27646. height: math.unit(5, "miles")
  27647. },
  27648. ]
  27649. ))
  27650. characterMakers.push(() => makeCharacter(
  27651. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27652. {
  27653. side: {
  27654. height: math.unit(106, "feet"),
  27655. weight: math.unit(500, "tonnes"),
  27656. name: "Side",
  27657. image: {
  27658. source: "./media/characters/kodran/side.svg",
  27659. extra: 553 / 480,
  27660. bottom: 33 / 586
  27661. }
  27662. },
  27663. front: {
  27664. height: math.unit(132, "feet"),
  27665. weight: math.unit(500, "tonnes"),
  27666. name: "Front",
  27667. image: {
  27668. source: "./media/characters/kodran/front.svg",
  27669. extra: 667 / 643,
  27670. bottom: 42 / 709
  27671. }
  27672. },
  27673. flying: {
  27674. height: math.unit(350, "feet"),
  27675. weight: math.unit(500, "tonnes"),
  27676. name: "Flying",
  27677. image: {
  27678. source: "./media/characters/kodran/flying.svg"
  27679. }
  27680. },
  27681. foot: {
  27682. height: math.unit(33, "feet"),
  27683. name: "Foot",
  27684. image: {
  27685. source: "./media/characters/kodran/foot.svg"
  27686. }
  27687. },
  27688. footFront: {
  27689. height: math.unit(19, "feet"),
  27690. name: "Foot (Front)",
  27691. image: {
  27692. source: "./media/characters/kodran/foot-front.svg",
  27693. extra: 261 / 261,
  27694. bottom: 91 / 352
  27695. }
  27696. },
  27697. headFront: {
  27698. height: math.unit(53, "feet"),
  27699. name: "Head (Front)",
  27700. image: {
  27701. source: "./media/characters/kodran/head-front.svg"
  27702. }
  27703. },
  27704. headSide: {
  27705. height: math.unit(65, "feet"),
  27706. name: "Head (Side)",
  27707. image: {
  27708. source: "./media/characters/kodran/head-side.svg"
  27709. }
  27710. },
  27711. throat: {
  27712. height: math.unit(79, "feet"),
  27713. name: "Throat",
  27714. image: {
  27715. source: "./media/characters/kodran/throat.svg"
  27716. }
  27717. },
  27718. },
  27719. [
  27720. {
  27721. name: "Large",
  27722. height: math.unit(106, "feet"),
  27723. default: true
  27724. },
  27725. ]
  27726. ))
  27727. characterMakers.push(() => makeCharacter(
  27728. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27729. {
  27730. side: {
  27731. height: math.unit(11, "feet"),
  27732. weight: math.unit(150, "lb"),
  27733. name: "Side",
  27734. image: {
  27735. source: "./media/characters/pyxaron/side.svg",
  27736. extra: 305 / 195,
  27737. bottom: 17 / 322
  27738. }
  27739. },
  27740. },
  27741. [
  27742. {
  27743. name: "Normal",
  27744. height: math.unit(11, "feet"),
  27745. default: true
  27746. },
  27747. ]
  27748. ))
  27749. characterMakers.push(() => makeCharacter(
  27750. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27751. {
  27752. front: {
  27753. height: math.unit(6, "feet"),
  27754. weight: math.unit(150, "lb"),
  27755. name: "Front",
  27756. image: {
  27757. source: "./media/characters/meep/front.svg",
  27758. extra: 88 / 80,
  27759. bottom: 6 / 94
  27760. }
  27761. },
  27762. },
  27763. [
  27764. {
  27765. name: "Fun Sized",
  27766. height: math.unit(2, "inches"),
  27767. default: true
  27768. },
  27769. {
  27770. name: "Friend Sized",
  27771. height: math.unit(8, "inches")
  27772. },
  27773. ]
  27774. ))
  27775. characterMakers.push(() => makeCharacter(
  27776. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27777. {
  27778. front: {
  27779. height: math.unit(15, "feet"),
  27780. weight: math.unit(2500, "lb"),
  27781. name: "Front",
  27782. image: {
  27783. source: "./media/characters/holly-rabbit/front.svg",
  27784. extra: 1433 / 1233,
  27785. bottom: 125 / 1558
  27786. }
  27787. },
  27788. dick: {
  27789. height: math.unit(4.6, "feet"),
  27790. name: "Dick",
  27791. image: {
  27792. source: "./media/characters/holly-rabbit/dick.svg"
  27793. }
  27794. },
  27795. },
  27796. [
  27797. {
  27798. name: "Normal",
  27799. height: math.unit(15, "feet"),
  27800. default: true
  27801. },
  27802. {
  27803. name: "Macro",
  27804. height: math.unit(250, "feet")
  27805. },
  27806. {
  27807. name: "Macro+",
  27808. height: math.unit(2500, "feet")
  27809. },
  27810. ]
  27811. ))
  27812. characterMakers.push(() => makeCharacter(
  27813. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27814. {
  27815. front: {
  27816. height: math.unit(3.02, "meters"),
  27817. weight: math.unit(500, "kg"),
  27818. name: "Front",
  27819. image: {
  27820. source: "./media/characters/drena/front.svg",
  27821. extra: 282 / 243,
  27822. bottom: 8 / 290
  27823. }
  27824. },
  27825. side: {
  27826. height: math.unit(3.02, "meters"),
  27827. weight: math.unit(500, "kg"),
  27828. name: "Side",
  27829. image: {
  27830. source: "./media/characters/drena/side.svg",
  27831. extra: 280 / 245,
  27832. bottom: 10 / 290
  27833. }
  27834. },
  27835. back: {
  27836. height: math.unit(3.02, "meters"),
  27837. weight: math.unit(500, "kg"),
  27838. name: "Back",
  27839. image: {
  27840. source: "./media/characters/drena/back.svg",
  27841. extra: 278 / 243,
  27842. bottom: 2 / 280
  27843. }
  27844. },
  27845. foot: {
  27846. height: math.unit(0.75, "meters"),
  27847. name: "Foot",
  27848. image: {
  27849. source: "./media/characters/drena/foot.svg"
  27850. }
  27851. },
  27852. maw: {
  27853. height: math.unit(0.82, "meters"),
  27854. name: "Maw",
  27855. image: {
  27856. source: "./media/characters/drena/maw.svg"
  27857. }
  27858. },
  27859. rump: {
  27860. height: math.unit(0.93, "meters"),
  27861. name: "Rump",
  27862. image: {
  27863. source: "./media/characters/drena/rump.svg"
  27864. }
  27865. },
  27866. },
  27867. [
  27868. {
  27869. name: "Normal",
  27870. height: math.unit(3.02, "meters"),
  27871. default: true
  27872. },
  27873. ]
  27874. ))
  27875. characterMakers.push(() => makeCharacter(
  27876. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27877. {
  27878. front: {
  27879. height: math.unit(6 + 4 / 12, "feet"),
  27880. weight: math.unit(250, "lb"),
  27881. name: "Front",
  27882. image: {
  27883. source: "./media/characters/remmyzilla/front.svg",
  27884. extra: 4033 / 3588,
  27885. bottom: 123 / 4156
  27886. }
  27887. },
  27888. back: {
  27889. height: math.unit(6 + 4 / 12, "feet"),
  27890. weight: math.unit(250, "lb"),
  27891. name: "Back",
  27892. image: {
  27893. source: "./media/characters/remmyzilla/back.svg",
  27894. extra: 2687 / 2555,
  27895. bottom: 48 / 2735
  27896. }
  27897. },
  27898. frontFancy: {
  27899. height: math.unit(6 + 4 / 12, "feet"),
  27900. weight: math.unit(250, "lb"),
  27901. name: "Front (Fancy)",
  27902. image: {
  27903. source: "./media/characters/remmyzilla/front-fancy.svg",
  27904. extra: 4119 / 3419,
  27905. bottom: 237 / 4356
  27906. }
  27907. },
  27908. paw: {
  27909. height: math.unit(1.73, "feet"),
  27910. name: "Paw",
  27911. image: {
  27912. source: "./media/characters/remmyzilla/paw.svg"
  27913. }
  27914. },
  27915. maw: {
  27916. height: math.unit(1.73, "feet"),
  27917. name: "Maw",
  27918. image: {
  27919. source: "./media/characters/remmyzilla/maw.svg"
  27920. }
  27921. },
  27922. },
  27923. [
  27924. {
  27925. name: "Normal",
  27926. height: math.unit(6 + 4 / 12, "feet")
  27927. },
  27928. {
  27929. name: "Minimacro",
  27930. height: math.unit(12 + 8 / 12, "feet")
  27931. },
  27932. {
  27933. name: "Normal",
  27934. height: math.unit(640, "feet"),
  27935. default: true
  27936. },
  27937. {
  27938. name: "Megamacro",
  27939. height: math.unit(6400, "feet")
  27940. },
  27941. {
  27942. name: "Gigamacro",
  27943. height: math.unit(64000, "miles")
  27944. },
  27945. ]
  27946. ))
  27947. characterMakers.push(() => makeCharacter(
  27948. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27949. {
  27950. front: {
  27951. height: math.unit(2.5, "meters"),
  27952. weight: math.unit(300, "lb"),
  27953. name: "Front",
  27954. image: {
  27955. source: "./media/characters/lawrence/front.svg",
  27956. extra: 357 / 335,
  27957. bottom: 30 / 387
  27958. }
  27959. },
  27960. back: {
  27961. height: math.unit(2.5, "meters"),
  27962. weight: math.unit(300, "lb"),
  27963. name: "Back",
  27964. image: {
  27965. source: "./media/characters/lawrence/back.svg",
  27966. extra: 357 / 338,
  27967. bottom: 16 / 373
  27968. }
  27969. },
  27970. head: {
  27971. height: math.unit(0.9, "meter"),
  27972. name: "Head",
  27973. image: {
  27974. source: "./media/characters/lawrence/head.svg"
  27975. }
  27976. },
  27977. maw: {
  27978. height: math.unit(0.7, "meter"),
  27979. name: "Maw",
  27980. image: {
  27981. source: "./media/characters/lawrence/maw.svg"
  27982. }
  27983. },
  27984. footBottom: {
  27985. height: math.unit(0.5, "meter"),
  27986. name: "Foot (Bottom)",
  27987. image: {
  27988. source: "./media/characters/lawrence/foot-bottom.svg"
  27989. }
  27990. },
  27991. footTop: {
  27992. height: math.unit(0.5, "meter"),
  27993. name: "Foot (Top)",
  27994. image: {
  27995. source: "./media/characters/lawrence/foot-top.svg"
  27996. }
  27997. },
  27998. },
  27999. [
  28000. {
  28001. name: "Normal",
  28002. height: math.unit(2.5, "meters"),
  28003. default: true
  28004. },
  28005. {
  28006. name: "Macro",
  28007. height: math.unit(95, "meters")
  28008. },
  28009. {
  28010. name: "Megamacro",
  28011. height: math.unit(150, "km")
  28012. },
  28013. ]
  28014. ))
  28015. characterMakers.push(() => makeCharacter(
  28016. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  28017. {
  28018. front: {
  28019. height: math.unit(4.2, "meters"),
  28020. name: "Front",
  28021. image: {
  28022. source: "./media/characters/sydney/front.svg",
  28023. extra: 1323 / 1277,
  28024. bottom: 111 / 1434
  28025. }
  28026. },
  28027. },
  28028. [
  28029. {
  28030. name: "Normal",
  28031. height: math.unit(4.2, "meters"),
  28032. default: true
  28033. },
  28034. ]
  28035. ))
  28036. characterMakers.push(() => makeCharacter(
  28037. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28038. {
  28039. back: {
  28040. height: math.unit(201, "feet"),
  28041. name: "Back",
  28042. image: {
  28043. source: "./media/characters/jessica/back.svg",
  28044. extra: 273 / 259,
  28045. bottom: 7 / 280
  28046. }
  28047. },
  28048. },
  28049. [
  28050. {
  28051. name: "Normal",
  28052. height: math.unit(201, "feet"),
  28053. default: true
  28054. },
  28055. {
  28056. name: "Megamacro",
  28057. height: math.unit(8, "miles")
  28058. },
  28059. ]
  28060. ))
  28061. characterMakers.push(() => makeCharacter(
  28062. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28063. {
  28064. side: {
  28065. height: math.unit(320, "cm"),
  28066. name: "Side",
  28067. image: {
  28068. source: "./media/characters/victoria/side.svg",
  28069. extra: 778 / 346,
  28070. bottom: 56 / 834
  28071. }
  28072. },
  28073. maw: {
  28074. height: math.unit(5.9, "feet"),
  28075. name: "Maw",
  28076. image: {
  28077. source: "./media/characters/victoria/maw.svg"
  28078. }
  28079. },
  28080. },
  28081. [
  28082. {
  28083. name: "Normal",
  28084. height: math.unit(320, "cm"),
  28085. default: true
  28086. },
  28087. ]
  28088. ))
  28089. characterMakers.push(() => makeCharacter(
  28090. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28091. {
  28092. front: {
  28093. height: math.unit(5 + 6 / 12, "feet"),
  28094. name: "Front",
  28095. image: {
  28096. source: "./media/characters/cat/front.svg",
  28097. extra: 1374 / 1257,
  28098. bottom: 59 / 1433
  28099. }
  28100. },
  28101. back: {
  28102. height: math.unit(5 + 6 / 12, "feet"),
  28103. name: "Back",
  28104. image: {
  28105. source: "./media/characters/cat/back.svg",
  28106. extra: 1337 / 1226,
  28107. bottom: 34 / 1371
  28108. }
  28109. },
  28110. taur: {
  28111. height: math.unit(7, "feet"),
  28112. name: "Taur",
  28113. image: {
  28114. source: "./media/characters/cat/taur.svg",
  28115. extra: 1345 / 1231,
  28116. bottom: 66 / 1411
  28117. }
  28118. },
  28119. lucario: {
  28120. height: math.unit(4, "feet"),
  28121. name: "Lucario",
  28122. image: {
  28123. source: "./media/characters/cat/lucario.svg",
  28124. extra: 1470 / 1318,
  28125. bottom: 65 / 1535
  28126. }
  28127. },
  28128. megaLucario: {
  28129. height: math.unit(4, "feet"),
  28130. name: "Mega Lucario",
  28131. image: {
  28132. source: "./media/characters/cat/mega-lucario.svg",
  28133. extra: 1515 / 1319,
  28134. bottom: 63 / 1578
  28135. }
  28136. },
  28137. nickit: {
  28138. height: math.unit(2, "feet"),
  28139. name: "Nickit",
  28140. image: {
  28141. source: "./media/characters/cat/nickit.svg",
  28142. extra: 1980 / 1585,
  28143. bottom: 102 / 2082
  28144. }
  28145. },
  28146. lopunnyFront: {
  28147. height: math.unit(5, "feet"),
  28148. name: "Lopunny (Front)",
  28149. image: {
  28150. source: "./media/characters/cat/lopunny-front.svg",
  28151. extra: 1782 / 1469,
  28152. bottom: 38 / 1820
  28153. }
  28154. },
  28155. lopunnyBack: {
  28156. height: math.unit(5, "feet"),
  28157. name: "Lopunny (Back)",
  28158. image: {
  28159. source: "./media/characters/cat/lopunny-back.svg",
  28160. extra: 1660 / 1490,
  28161. bottom: 25 / 1685
  28162. }
  28163. },
  28164. },
  28165. [
  28166. {
  28167. name: "Really small",
  28168. height: math.unit(1, "nm")
  28169. },
  28170. {
  28171. name: "Micro",
  28172. height: math.unit(5, "inches")
  28173. },
  28174. {
  28175. name: "Normal",
  28176. height: math.unit(5 + 6 / 12, "feet"),
  28177. default: true
  28178. },
  28179. {
  28180. name: "Macro",
  28181. height: math.unit(50, "feet")
  28182. },
  28183. {
  28184. name: "Macro+",
  28185. height: math.unit(150, "feet")
  28186. },
  28187. {
  28188. name: "Megamacro",
  28189. height: math.unit(100, "miles")
  28190. },
  28191. ]
  28192. ))
  28193. characterMakers.push(() => makeCharacter(
  28194. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28195. {
  28196. front: {
  28197. height: math.unit(63.4, "meters"),
  28198. weight: math.unit(3.28349e+6, "kilograms"),
  28199. name: "Front",
  28200. image: {
  28201. source: "./media/characters/kirina-violet/front.svg",
  28202. extra: 2812 / 2725,
  28203. bottom: 0 / 2812
  28204. }
  28205. },
  28206. back: {
  28207. height: math.unit(63.4, "meters"),
  28208. weight: math.unit(3.28349e+6, "kilograms"),
  28209. name: "Back",
  28210. image: {
  28211. source: "./media/characters/kirina-violet/back.svg",
  28212. extra: 2812 / 2725,
  28213. bottom: 0 / 2812
  28214. }
  28215. },
  28216. mouth: {
  28217. height: math.unit(4.35, "meters"),
  28218. name: "Mouth",
  28219. image: {
  28220. source: "./media/characters/kirina-violet/mouth.svg"
  28221. }
  28222. },
  28223. paw: {
  28224. height: math.unit(5.6, "meters"),
  28225. name: "Paw",
  28226. image: {
  28227. source: "./media/characters/kirina-violet/paw.svg"
  28228. }
  28229. },
  28230. tail: {
  28231. height: math.unit(18, "meters"),
  28232. name: "Tail",
  28233. image: {
  28234. source: "./media/characters/kirina-violet/tail.svg"
  28235. }
  28236. },
  28237. },
  28238. [
  28239. {
  28240. name: "Macro",
  28241. height: math.unit(63.4, "meters"),
  28242. default: true
  28243. },
  28244. ]
  28245. ))
  28246. characterMakers.push(() => makeCharacter(
  28247. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28248. {
  28249. front: {
  28250. height: math.unit(60, "feet"),
  28251. name: "Front",
  28252. image: {
  28253. source: "./media/characters/cat-gigachu/front.svg",
  28254. extra: 1024 / 780,
  28255. bottom: 23 / 1047
  28256. }
  28257. },
  28258. back: {
  28259. height: math.unit(60, "feet"),
  28260. name: "Back",
  28261. image: {
  28262. source: "./media/characters/cat-gigachu/back.svg",
  28263. extra: 1024 / 780,
  28264. bottom: 23 / 1047
  28265. }
  28266. },
  28267. },
  28268. [
  28269. {
  28270. name: "Dynamax",
  28271. height: math.unit(60, "feet"),
  28272. default: true
  28273. },
  28274. ]
  28275. ))
  28276. characterMakers.push(() => makeCharacter(
  28277. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28278. {
  28279. front: {
  28280. height: math.unit(6, "feet"),
  28281. weight: math.unit(150, "lb"),
  28282. name: "Front",
  28283. image: {
  28284. source: "./media/characters/sfaiyan/front.svg",
  28285. extra: 999 / 978,
  28286. bottom: 5 / 1004
  28287. }
  28288. },
  28289. },
  28290. [
  28291. {
  28292. name: "Normal",
  28293. height: math.unit(1.82, "meters")
  28294. },
  28295. {
  28296. name: "Giant",
  28297. height: math.unit(2.27, "km"),
  28298. default: true
  28299. },
  28300. ]
  28301. ))
  28302. characterMakers.push(() => makeCharacter(
  28303. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28304. {
  28305. front: {
  28306. height: math.unit(179, "cm"),
  28307. weight: math.unit(100, "kg"),
  28308. name: "Front",
  28309. image: {
  28310. source: "./media/characters/raunehkeli/front.svg",
  28311. extra: 1934 / 1926,
  28312. bottom: 0 / 1934
  28313. }
  28314. },
  28315. },
  28316. [
  28317. {
  28318. name: "Normal",
  28319. height: math.unit(179, "cm")
  28320. },
  28321. {
  28322. name: "Maximum",
  28323. height: math.unit(575, "meters"),
  28324. default: true
  28325. },
  28326. ]
  28327. ))
  28328. characterMakers.push(() => makeCharacter(
  28329. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28330. {
  28331. front: {
  28332. height: math.unit(6, "feet"),
  28333. weight: math.unit(150, "lb"),
  28334. name: "Front",
  28335. image: {
  28336. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28337. extra: 2625 / 2518,
  28338. bottom: 60 / 2685
  28339. }
  28340. },
  28341. },
  28342. [
  28343. {
  28344. name: "Normal",
  28345. height: math.unit(6 + 2 / 12, "feet")
  28346. },
  28347. {
  28348. name: "Macro",
  28349. height: math.unit(1180, "feet"),
  28350. default: true
  28351. },
  28352. ]
  28353. ))
  28354. characterMakers.push(() => makeCharacter(
  28355. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28356. {
  28357. front: {
  28358. height: math.unit(5 + 6 / 12, "feet"),
  28359. weight: math.unit(108, "lb"),
  28360. name: "Front",
  28361. image: {
  28362. source: "./media/characters/lilith-zott/front.svg",
  28363. extra: 2510 / 2238,
  28364. bottom: 100 / 2610
  28365. }
  28366. },
  28367. frontDressed: {
  28368. height: math.unit(5 + 6 / 12, "feet"),
  28369. weight: math.unit(108, "lb"),
  28370. name: "Front (Dressed)",
  28371. image: {
  28372. source: "./media/characters/lilith-zott/front-dressed.svg",
  28373. extra: 2510 / 2238,
  28374. bottom: 100 / 2610
  28375. }
  28376. },
  28377. },
  28378. [
  28379. {
  28380. name: "Normal",
  28381. height: math.unit(5 + 6 / 12, "feet")
  28382. },
  28383. {
  28384. name: "Macro",
  28385. height: math.unit(1030, "feet"),
  28386. default: true
  28387. },
  28388. ]
  28389. ))
  28390. characterMakers.push(() => makeCharacter(
  28391. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28392. {
  28393. front: {
  28394. height: math.unit(6, "feet"),
  28395. weight: math.unit(150, "lb"),
  28396. name: "Front",
  28397. image: {
  28398. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28399. extra: 2567 / 2435,
  28400. bottom: 39 / 2606
  28401. }
  28402. },
  28403. frontSuper: {
  28404. height: math.unit(6, "feet"),
  28405. name: "Front (Super)",
  28406. image: {
  28407. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28408. extra: 2567 / 2435,
  28409. bottom: 39 / 2606
  28410. }
  28411. },
  28412. },
  28413. [
  28414. {
  28415. name: "Normal",
  28416. height: math.unit(5 + 10 / 12, "feet")
  28417. },
  28418. {
  28419. name: "Macro",
  28420. height: math.unit(1100, "feet"),
  28421. default: true
  28422. },
  28423. ]
  28424. ))
  28425. characterMakers.push(() => makeCharacter(
  28426. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28427. {
  28428. front: {
  28429. height: math.unit(100, "miles"),
  28430. name: "Front",
  28431. image: {
  28432. source: "./media/characters/sona/front.svg",
  28433. extra: 2433 / 2201,
  28434. bottom: 53 / 2486
  28435. }
  28436. },
  28437. foot: {
  28438. height: math.unit(16.1, "miles"),
  28439. name: "Foot",
  28440. image: {
  28441. source: "./media/characters/sona/foot.svg"
  28442. }
  28443. },
  28444. },
  28445. [
  28446. {
  28447. name: "Macro",
  28448. height: math.unit(100, "miles"),
  28449. default: true
  28450. },
  28451. ]
  28452. ))
  28453. characterMakers.push(() => makeCharacter(
  28454. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28455. {
  28456. front: {
  28457. height: math.unit(6, "feet"),
  28458. weight: math.unit(150, "lb"),
  28459. name: "Front",
  28460. image: {
  28461. source: "./media/characters/bailey/front.svg",
  28462. extra: 1778 / 1724,
  28463. bottom: 30 / 1808
  28464. }
  28465. },
  28466. },
  28467. [
  28468. {
  28469. name: "Micro",
  28470. height: math.unit(4, "inches")
  28471. },
  28472. {
  28473. name: "Normal",
  28474. height: math.unit(5 + 5 / 12, "feet"),
  28475. default: true
  28476. },
  28477. {
  28478. name: "Macro",
  28479. height: math.unit(250, "feet")
  28480. },
  28481. {
  28482. name: "Megamacro",
  28483. height: math.unit(100, "miles")
  28484. },
  28485. ]
  28486. ))
  28487. characterMakers.push(() => makeCharacter(
  28488. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28489. {
  28490. front: {
  28491. height: math.unit(5 + 2 / 12, "feet"),
  28492. weight: math.unit(120, "lb"),
  28493. name: "Front",
  28494. image: {
  28495. source: "./media/characters/snaps/front.svg",
  28496. extra: 2370 / 2177,
  28497. bottom: 48 / 2418
  28498. }
  28499. },
  28500. back: {
  28501. height: math.unit(5 + 2 / 12, "feet"),
  28502. weight: math.unit(120, "lb"),
  28503. name: "Back",
  28504. image: {
  28505. source: "./media/characters/snaps/back.svg",
  28506. extra: 2408 / 2258,
  28507. bottom: 15 / 2423
  28508. }
  28509. },
  28510. },
  28511. [
  28512. {
  28513. name: "Micro",
  28514. height: math.unit(9, "inches")
  28515. },
  28516. {
  28517. name: "Normal",
  28518. height: math.unit(5 + 2 / 12, "feet"),
  28519. default: true
  28520. },
  28521. {
  28522. name: "Mini Macro",
  28523. height: math.unit(10, "feet")
  28524. },
  28525. ]
  28526. ))
  28527. characterMakers.push(() => makeCharacter(
  28528. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28529. {
  28530. front: {
  28531. height: math.unit(1.8, "meters"),
  28532. weight: math.unit(85, "kg"),
  28533. name: "Front",
  28534. image: {
  28535. source: "./media/characters/azteck/front.svg",
  28536. extra: 2815 / 2625,
  28537. bottom: 89 / 2904
  28538. }
  28539. },
  28540. back: {
  28541. height: math.unit(1.8, "meters"),
  28542. weight: math.unit(85, "kg"),
  28543. name: "Back",
  28544. image: {
  28545. source: "./media/characters/azteck/back.svg",
  28546. extra: 2856 / 2648,
  28547. bottom: 85 / 2941
  28548. }
  28549. },
  28550. frontDressed: {
  28551. height: math.unit(1.8, "meters"),
  28552. weight: math.unit(85, "kg"),
  28553. name: "Front (Dressed)",
  28554. image: {
  28555. source: "./media/characters/azteck/front-dressed.svg",
  28556. extra: 2147 / 2003,
  28557. bottom: 68 / 2215
  28558. }
  28559. },
  28560. head: {
  28561. height: math.unit(0.47, "meters"),
  28562. weight: math.unit(85, "kg"),
  28563. name: "Head",
  28564. image: {
  28565. source: "./media/characters/azteck/head.svg"
  28566. }
  28567. },
  28568. },
  28569. [
  28570. {
  28571. name: "Bite sized",
  28572. height: math.unit(16, "cm")
  28573. },
  28574. {
  28575. name: "Normal",
  28576. height: math.unit(1.8, "meters"),
  28577. default: true
  28578. },
  28579. ]
  28580. ))
  28581. characterMakers.push(() => makeCharacter(
  28582. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28583. {
  28584. front: {
  28585. height: math.unit(6, "feet"),
  28586. weight: math.unit(150, "lb"),
  28587. name: "Front",
  28588. image: {
  28589. source: "./media/characters/pidge/front.svg",
  28590. extra: 620 / 588,
  28591. bottom: 9 / 629
  28592. }
  28593. },
  28594. back: {
  28595. height: math.unit(6, "feet"),
  28596. weight: math.unit(150, "lb"),
  28597. name: "Back",
  28598. image: {
  28599. source: "./media/characters/pidge/back.svg",
  28600. extra: 620 / 588,
  28601. bottom: 9 / 629
  28602. }
  28603. },
  28604. },
  28605. [
  28606. {
  28607. name: "Macro",
  28608. height: math.unit(1, "mile"),
  28609. default: true
  28610. },
  28611. ]
  28612. ))
  28613. characterMakers.push(() => makeCharacter(
  28614. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28615. {
  28616. front: {
  28617. height: math.unit(6, "feet"),
  28618. weight: math.unit(150, "lb"),
  28619. name: "Front",
  28620. image: {
  28621. source: "./media/characters/en/front.svg",
  28622. extra: 1697 / 1563,
  28623. bottom: 103 / 1800
  28624. }
  28625. },
  28626. back: {
  28627. height: math.unit(6, "feet"),
  28628. weight: math.unit(150, "lb"),
  28629. name: "Back",
  28630. image: {
  28631. source: "./media/characters/en/back.svg",
  28632. extra: 1700 / 1570,
  28633. bottom: 51 / 1751
  28634. }
  28635. },
  28636. frontDressed: {
  28637. height: math.unit(6, "feet"),
  28638. weight: math.unit(150, "lb"),
  28639. name: "Front (Dressed)",
  28640. image: {
  28641. source: "./media/characters/en/front-dressed.svg",
  28642. extra: 1697 / 1563,
  28643. bottom: 103 / 1800
  28644. }
  28645. },
  28646. backDressed: {
  28647. height: math.unit(6, "feet"),
  28648. weight: math.unit(150, "lb"),
  28649. name: "Back (Dressed)",
  28650. image: {
  28651. source: "./media/characters/en/back-dressed.svg",
  28652. extra: 1700 / 1570,
  28653. bottom: 51 / 1751
  28654. }
  28655. },
  28656. },
  28657. [
  28658. {
  28659. name: "Macro",
  28660. height: math.unit(210, "feet"),
  28661. default: true
  28662. },
  28663. ]
  28664. ))
  28665. characterMakers.push(() => makeCharacter(
  28666. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28667. {
  28668. front: {
  28669. height: math.unit(6, "feet"),
  28670. weight: math.unit(150, "lb"),
  28671. name: "Front",
  28672. image: {
  28673. source: "./media/characters/haze-orris/front.svg",
  28674. extra: 3975 / 3525,
  28675. bottom: 137 / 4112
  28676. }
  28677. },
  28678. },
  28679. [
  28680. {
  28681. name: "Micro",
  28682. height: math.unit(150, "mm"),
  28683. default: true
  28684. },
  28685. ]
  28686. ))
  28687. characterMakers.push(() => makeCharacter(
  28688. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28689. {
  28690. front: {
  28691. height: math.unit(6, "feet"),
  28692. weight: math.unit(150, "lb"),
  28693. name: "Front",
  28694. image: {
  28695. source: "./media/characters/casselene-yaro/front.svg",
  28696. extra: 4721 / 4541,
  28697. bottom: 82 / 4803
  28698. }
  28699. },
  28700. back: {
  28701. height: math.unit(6, "feet"),
  28702. weight: math.unit(150, "lb"),
  28703. name: "Back",
  28704. image: {
  28705. source: "./media/characters/casselene-yaro/back.svg",
  28706. extra: 4569 / 4377,
  28707. bottom: 69 / 4638
  28708. }
  28709. },
  28710. frontDressed: {
  28711. height: math.unit(6, "feet"),
  28712. weight: math.unit(150, "lb"),
  28713. name: "Front-dressed",
  28714. image: {
  28715. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28716. extra: 4721 / 4541,
  28717. bottom: 82 / 4803
  28718. }
  28719. },
  28720. },
  28721. [
  28722. {
  28723. name: "Macro",
  28724. height: math.unit(190, "feet"),
  28725. default: true
  28726. },
  28727. ]
  28728. ))
  28729. characterMakers.push(() => makeCharacter(
  28730. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28731. {
  28732. front: {
  28733. height: math.unit(6, "feet"),
  28734. weight: math.unit(150, "lb"),
  28735. name: "Front",
  28736. image: {
  28737. source: "./media/characters/myra-rue-delore/front.svg",
  28738. extra: 1340 / 1308,
  28739. bottom: 67 / 1407
  28740. }
  28741. },
  28742. back: {
  28743. height: math.unit(6, "feet"),
  28744. weight: math.unit(150, "lb"),
  28745. name: "Back",
  28746. image: {
  28747. source: "./media/characters/myra-rue-delore/back.svg",
  28748. extra: 1341 / 1310,
  28749. bottom: 40 / 1381
  28750. }
  28751. },
  28752. frontDressed: {
  28753. height: math.unit(6, "feet"),
  28754. weight: math.unit(150, "lb"),
  28755. name: "Front (Dressed)",
  28756. image: {
  28757. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28758. extra: 1340 / 1308,
  28759. bottom: 67 / 1407
  28760. }
  28761. },
  28762. },
  28763. [
  28764. {
  28765. name: "Macro",
  28766. height: math.unit(150, "feet"),
  28767. default: true
  28768. },
  28769. ]
  28770. ))
  28771. characterMakers.push(() => makeCharacter(
  28772. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28773. {
  28774. front: {
  28775. height: math.unit(10, "feet"),
  28776. weight: math.unit(15015, "lb"),
  28777. name: "Front",
  28778. image: {
  28779. source: "./media/characters/fem!plat/front.svg",
  28780. extra: 2799 / 2604,
  28781. bottom: 149 / 2948
  28782. }
  28783. },
  28784. },
  28785. [
  28786. {
  28787. name: "Normal",
  28788. height: math.unit(10, "feet"),
  28789. default: true
  28790. },
  28791. {
  28792. name: "Macro",
  28793. height: math.unit(100, "feet")
  28794. },
  28795. {
  28796. name: "Megamacro",
  28797. height: math.unit(1000, "feet")
  28798. },
  28799. ]
  28800. ))
  28801. characterMakers.push(() => makeCharacter(
  28802. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28803. {
  28804. front: {
  28805. height: math.unit(15 + 5 / 12, "feet"),
  28806. weight: math.unit(4600, "lb"),
  28807. name: "Front",
  28808. image: {
  28809. source: "./media/characters/neapolitan-ananassa/front.svg",
  28810. extra: 2903 / 2736,
  28811. bottom: 0 / 2903
  28812. }
  28813. },
  28814. side: {
  28815. height: math.unit(15 + 5 / 12, "feet"),
  28816. weight: math.unit(4600, "lb"),
  28817. name: "Side",
  28818. image: {
  28819. source: "./media/characters/neapolitan-ananassa/side.svg",
  28820. extra: 2925 / 2719,
  28821. bottom: 0 / 2925
  28822. }
  28823. },
  28824. back: {
  28825. height: math.unit(15 + 5 / 12, "feet"),
  28826. weight: math.unit(4600, "lb"),
  28827. name: "Back",
  28828. image: {
  28829. source: "./media/characters/neapolitan-ananassa/back.svg",
  28830. extra: 2903 / 2736,
  28831. bottom: 0 / 2903
  28832. }
  28833. },
  28834. },
  28835. [
  28836. {
  28837. name: "Normal",
  28838. height: math.unit(15 + 5 / 12, "feet"),
  28839. default: true
  28840. },
  28841. {
  28842. name: "Post-Millenium",
  28843. height: math.unit(35 + 5 / 12, "feet")
  28844. },
  28845. {
  28846. name: "Post-Era",
  28847. height: math.unit(450 + 5 / 12, "feet")
  28848. },
  28849. ]
  28850. ))
  28851. characterMakers.push(() => makeCharacter(
  28852. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28853. {
  28854. front: {
  28855. height: math.unit(300, "meters"),
  28856. weight: math.unit(125000, "tonnes"),
  28857. name: "Front",
  28858. image: {
  28859. source: "./media/characters/pazuzu/front.svg",
  28860. extra: 877 / 794,
  28861. bottom: 47 / 924
  28862. }
  28863. },
  28864. },
  28865. [
  28866. {
  28867. name: "Macro",
  28868. height: math.unit(300, "meters"),
  28869. default: true
  28870. },
  28871. ]
  28872. ))
  28873. characterMakers.push(() => makeCharacter(
  28874. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28875. {
  28876. side: {
  28877. height: math.unit(10 + 7 / 12, "feet"),
  28878. weight: math.unit(2.5, "tons"),
  28879. name: "Side",
  28880. image: {
  28881. source: "./media/characters/aasha/side.svg",
  28882. extra: 1345 / 1245,
  28883. bottom: 111 / 1456
  28884. }
  28885. },
  28886. back: {
  28887. height: math.unit(10 + 7 / 12, "feet"),
  28888. weight: math.unit(2.5, "tons"),
  28889. name: "Back",
  28890. image: {
  28891. source: "./media/characters/aasha/back.svg",
  28892. extra: 1133 / 1057,
  28893. bottom: 257 / 1390
  28894. }
  28895. },
  28896. },
  28897. [
  28898. {
  28899. name: "Normal",
  28900. height: math.unit(10 + 7 / 12, "feet"),
  28901. default: true
  28902. },
  28903. ]
  28904. ))
  28905. characterMakers.push(() => makeCharacter(
  28906. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28907. {
  28908. front: {
  28909. height: math.unit(6 + 3 / 12, "feet"),
  28910. name: "Front",
  28911. image: {
  28912. source: "./media/characters/nevan/front.svg",
  28913. extra: 704 / 704,
  28914. bottom: 28 / 732
  28915. }
  28916. },
  28917. back: {
  28918. height: math.unit(6 + 3 / 12, "feet"),
  28919. name: "Back",
  28920. image: {
  28921. source: "./media/characters/nevan/back.svg",
  28922. extra: 714 / 714,
  28923. bottom: 21 / 735
  28924. }
  28925. },
  28926. frontFlaccid: {
  28927. height: math.unit(6 + 3 / 12, "feet"),
  28928. name: "Front (Flaccid)",
  28929. image: {
  28930. source: "./media/characters/nevan/front-flaccid.svg",
  28931. extra: 704 / 704,
  28932. bottom: 28 / 732
  28933. }
  28934. },
  28935. frontErect: {
  28936. height: math.unit(6 + 3 / 12, "feet"),
  28937. name: "Front (Erect)",
  28938. image: {
  28939. source: "./media/characters/nevan/front-erect.svg",
  28940. extra: 704 / 704,
  28941. bottom: 28 / 732
  28942. }
  28943. },
  28944. backFlaccid: {
  28945. height: math.unit(6 + 3 / 12, "feet"),
  28946. name: "Back (Flaccid)",
  28947. image: {
  28948. source: "./media/characters/nevan/back-flaccid.svg",
  28949. extra: 714 / 714,
  28950. bottom: 21 / 735
  28951. }
  28952. },
  28953. },
  28954. [
  28955. {
  28956. name: "Normal",
  28957. height: math.unit(6 + 3 / 12, "feet"),
  28958. default: true
  28959. },
  28960. ]
  28961. ))
  28962. characterMakers.push(() => makeCharacter(
  28963. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28964. {
  28965. front: {
  28966. height: math.unit(4, "feet"),
  28967. name: "Front",
  28968. image: {
  28969. source: "./media/characters/arhan/front.svg",
  28970. extra: 3368 / 3133,
  28971. bottom: 0 / 3368
  28972. }
  28973. },
  28974. side: {
  28975. height: math.unit(4, "feet"),
  28976. name: "Side",
  28977. image: {
  28978. source: "./media/characters/arhan/side.svg",
  28979. extra: 3347 / 3105,
  28980. bottom: 0 / 3347
  28981. }
  28982. },
  28983. tongue: {
  28984. height: math.unit(1.42, "feet"),
  28985. name: "Tongue",
  28986. image: {
  28987. source: "./media/characters/arhan/tongue.svg"
  28988. }
  28989. },
  28990. head: {
  28991. height: math.unit(0.85, "feet"),
  28992. name: "Head",
  28993. image: {
  28994. source: "./media/characters/arhan/head.svg"
  28995. }
  28996. },
  28997. },
  28998. [
  28999. {
  29000. name: "Normal",
  29001. height: math.unit(4, "feet"),
  29002. default: true
  29003. },
  29004. ]
  29005. ))
  29006. characterMakers.push(() => makeCharacter(
  29007. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  29008. {
  29009. front: {
  29010. height: math.unit(5 + 7.5 / 12, "feet"),
  29011. weight: math.unit(120, "lb"),
  29012. name: "Front",
  29013. image: {
  29014. source: "./media/characters/digi-duncan/front.svg",
  29015. extra: 330 / 326,
  29016. bottom: 16 / 346
  29017. }
  29018. },
  29019. side: {
  29020. height: math.unit(5 + 7.5 / 12, "feet"),
  29021. weight: math.unit(120, "lb"),
  29022. name: "Side",
  29023. image: {
  29024. source: "./media/characters/digi-duncan/side.svg",
  29025. extra: 341 / 337,
  29026. bottom: 1 / 342
  29027. }
  29028. },
  29029. back: {
  29030. height: math.unit(5 + 7.5 / 12, "feet"),
  29031. weight: math.unit(120, "lb"),
  29032. name: "Back",
  29033. image: {
  29034. source: "./media/characters/digi-duncan/back.svg",
  29035. extra: 330 / 326,
  29036. bottom: 12 / 342
  29037. }
  29038. },
  29039. },
  29040. [
  29041. {
  29042. name: "Speck",
  29043. height: math.unit(0.25, "mm")
  29044. },
  29045. {
  29046. name: "Micro",
  29047. height: math.unit(5, "mm")
  29048. },
  29049. {
  29050. name: "Tiny",
  29051. height: math.unit(0.5, "inches"),
  29052. default: true
  29053. },
  29054. {
  29055. name: "Human",
  29056. height: math.unit(5 + 7.5 / 12, "feet")
  29057. },
  29058. {
  29059. name: "Minigiant",
  29060. height: math.unit(8 + 5.25, "feet")
  29061. },
  29062. {
  29063. name: "Giant",
  29064. height: math.unit(2000, "feet")
  29065. },
  29066. {
  29067. name: "Mega",
  29068. height: math.unit(371.1, "miles")
  29069. },
  29070. ]
  29071. ))
  29072. characterMakers.push(() => makeCharacter(
  29073. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29074. {
  29075. front: {
  29076. height: math.unit(2, "meters"),
  29077. weight: math.unit(350, "kg"),
  29078. name: "Front",
  29079. image: {
  29080. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29081. extra: 898 / 838,
  29082. bottom: 9 / 907
  29083. }
  29084. },
  29085. },
  29086. [
  29087. {
  29088. name: "Micro",
  29089. height: math.unit(8, "meters")
  29090. },
  29091. {
  29092. name: "Normal",
  29093. height: math.unit(50, "meters"),
  29094. default: true
  29095. },
  29096. {
  29097. name: "Macro",
  29098. height: math.unit(500, "meters")
  29099. },
  29100. ]
  29101. ))
  29102. characterMakers.push(() => makeCharacter(
  29103. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29104. {
  29105. front: {
  29106. height: math.unit(6 + 6 / 12, "feet"),
  29107. name: "Front",
  29108. image: {
  29109. source: "./media/characters/khardesh/front.svg",
  29110. extra: 888 / 797,
  29111. bottom: 25 / 913
  29112. }
  29113. },
  29114. },
  29115. [
  29116. {
  29117. name: "Normal",
  29118. height: math.unit(6 + 6 / 12, "feet"),
  29119. default: true
  29120. },
  29121. {
  29122. name: "Normal+",
  29123. height: math.unit(4, "meters")
  29124. },
  29125. {
  29126. name: "Macro",
  29127. height: math.unit(50, "meters")
  29128. },
  29129. {
  29130. name: "Macro+",
  29131. height: math.unit(100, "meters")
  29132. },
  29133. {
  29134. name: "Megamacro",
  29135. height: math.unit(20, "km")
  29136. },
  29137. ]
  29138. ))
  29139. characterMakers.push(() => makeCharacter(
  29140. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29141. {
  29142. front: {
  29143. height: math.unit(6, "feet"),
  29144. weight: math.unit(150, "lb"),
  29145. name: "Front",
  29146. image: {
  29147. source: "./media/characters/kosho/front.svg",
  29148. extra: 1847 / 1847,
  29149. bottom: 86 / 1933
  29150. }
  29151. },
  29152. },
  29153. [
  29154. {
  29155. name: "Second-stage micro",
  29156. height: math.unit(0.5, "inches")
  29157. },
  29158. {
  29159. name: "First-stage micro",
  29160. height: math.unit(6, "inches")
  29161. },
  29162. {
  29163. name: "Normal",
  29164. height: math.unit(6, "feet"),
  29165. default: true
  29166. },
  29167. {
  29168. name: "First-stage macro",
  29169. height: math.unit(72, "feet")
  29170. },
  29171. {
  29172. name: "Second-stage macro",
  29173. height: math.unit(864, "feet")
  29174. },
  29175. ]
  29176. ))
  29177. characterMakers.push(() => makeCharacter(
  29178. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29179. {
  29180. normal: {
  29181. height: math.unit(4 + 6 / 12, "feet"),
  29182. name: "Normal",
  29183. image: {
  29184. source: "./media/characters/hydra/normal.svg",
  29185. extra: 2833 / 2634,
  29186. bottom: 68 / 2901
  29187. }
  29188. },
  29189. smol: {
  29190. height: math.unit(0.705, "inches"),
  29191. name: "Smol",
  29192. image: {
  29193. source: "./media/characters/hydra/smol.svg",
  29194. extra: 2715 / 2540,
  29195. bottom: 0 / 2715
  29196. }
  29197. },
  29198. },
  29199. [
  29200. {
  29201. name: "Normal",
  29202. height: math.unit(4 + 6 / 12, "feet"),
  29203. default: true
  29204. }
  29205. ]
  29206. ))
  29207. characterMakers.push(() => makeCharacter(
  29208. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29209. {
  29210. front: {
  29211. height: math.unit(0.6, "cm"),
  29212. name: "Front",
  29213. image: {
  29214. source: "./media/characters/daz/front.svg",
  29215. extra: 1682 / 1164,
  29216. bottom: 42 / 1724
  29217. }
  29218. },
  29219. },
  29220. [
  29221. {
  29222. name: "Normal",
  29223. height: math.unit(0.6, "cm"),
  29224. default: true
  29225. },
  29226. ]
  29227. ))
  29228. characterMakers.push(() => makeCharacter(
  29229. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29230. {
  29231. front: {
  29232. height: math.unit(6, "feet"),
  29233. weight: math.unit(235, "lb"),
  29234. name: "Front",
  29235. image: {
  29236. source: "./media/characters/theo-pangolin/front.svg",
  29237. extra: 1996 / 1969,
  29238. bottom: 115 / 2111
  29239. }
  29240. },
  29241. back: {
  29242. height: math.unit(6, "feet"),
  29243. weight: math.unit(235, "lb"),
  29244. name: "Back",
  29245. image: {
  29246. source: "./media/characters/theo-pangolin/back.svg",
  29247. extra: 1979 / 1979,
  29248. bottom: 40 / 2019
  29249. }
  29250. },
  29251. feral: {
  29252. height: math.unit(2, "feet"),
  29253. weight: math.unit(30, "lb"),
  29254. name: "Feral",
  29255. image: {
  29256. source: "./media/characters/theo-pangolin/feral.svg",
  29257. extra: 803 / 791,
  29258. bottom: 181 / 984
  29259. }
  29260. },
  29261. footFive: {
  29262. height: math.unit(1.43, "feet"),
  29263. name: "Foot (Five Toes)",
  29264. image: {
  29265. source: "./media/characters/theo-pangolin/foot-five.svg"
  29266. }
  29267. },
  29268. footFour: {
  29269. height: math.unit(1.43, "feet"),
  29270. name: "Foot (Four Toes)",
  29271. image: {
  29272. source: "./media/characters/theo-pangolin/foot-four.svg"
  29273. }
  29274. },
  29275. handFour: {
  29276. height: math.unit(0.81, "feet"),
  29277. name: "Hand (Four Fingers)",
  29278. image: {
  29279. source: "./media/characters/theo-pangolin/hand-four.svg"
  29280. }
  29281. },
  29282. handThree: {
  29283. height: math.unit(0.81, "feet"),
  29284. name: "Hand (Three Fingers)",
  29285. image: {
  29286. source: "./media/characters/theo-pangolin/hand-three.svg"
  29287. }
  29288. },
  29289. headFront: {
  29290. height: math.unit(1.37, "feet"),
  29291. name: "Head (Front)",
  29292. image: {
  29293. source: "./media/characters/theo-pangolin/head-front.svg"
  29294. }
  29295. },
  29296. headSide: {
  29297. height: math.unit(1.43, "feet"),
  29298. name: "Head (Side)",
  29299. image: {
  29300. source: "./media/characters/theo-pangolin/head-side.svg"
  29301. }
  29302. },
  29303. tongue: {
  29304. height: math.unit(2.29, "feet"),
  29305. name: "Tongue",
  29306. image: {
  29307. source: "./media/characters/theo-pangolin/tongue.svg"
  29308. }
  29309. },
  29310. },
  29311. [
  29312. {
  29313. name: "Normal",
  29314. height: math.unit(6, "feet")
  29315. },
  29316. {
  29317. name: "Macro",
  29318. height: math.unit(400, "feet"),
  29319. default: true
  29320. },
  29321. ]
  29322. ))
  29323. characterMakers.push(() => makeCharacter(
  29324. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29325. {
  29326. front: {
  29327. height: math.unit(6, "inches"),
  29328. weight: math.unit(0.036, "kg"),
  29329. name: "Front",
  29330. image: {
  29331. source: "./media/characters/renée/front.svg",
  29332. extra: 900 / 886,
  29333. bottom: 8 / 908
  29334. }
  29335. },
  29336. },
  29337. [
  29338. {
  29339. name: "Nano",
  29340. height: math.unit(1, "nm")
  29341. },
  29342. {
  29343. name: "Micro",
  29344. height: math.unit(1, "mm")
  29345. },
  29346. {
  29347. name: "Normal",
  29348. height: math.unit(6, "inches")
  29349. },
  29350. {
  29351. name: "Macro",
  29352. height: math.unit(2000, "feet"),
  29353. default: true
  29354. },
  29355. {
  29356. name: "Megamacro",
  29357. height: math.unit(2, "km")
  29358. },
  29359. {
  29360. name: "Gigamacro",
  29361. height: math.unit(2000, "km")
  29362. },
  29363. {
  29364. name: "Teramacro",
  29365. height: math.unit(250000, "km")
  29366. },
  29367. ]
  29368. ))
  29369. characterMakers.push(() => makeCharacter(
  29370. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29371. {
  29372. front: {
  29373. height: math.unit(4, "meters"),
  29374. weight: math.unit(150, "kg"),
  29375. name: "Front",
  29376. image: {
  29377. source: "./media/characters/caledvwlch/front.svg",
  29378. extra: 1760 / 1551,
  29379. bottom: 28 / 1788
  29380. }
  29381. },
  29382. side: {
  29383. height: math.unit(4, "meters"),
  29384. weight: math.unit(150, "kg"),
  29385. name: "Side",
  29386. image: {
  29387. source: "./media/characters/caledvwlch/side.svg",
  29388. extra: 1605 / 1536,
  29389. bottom: 31 / 1636
  29390. }
  29391. },
  29392. back: {
  29393. height: math.unit(4, "meters"),
  29394. weight: math.unit(150, "kg"),
  29395. name: "Back",
  29396. image: {
  29397. source: "./media/characters/caledvwlch/back.svg",
  29398. extra: 1635 / 1565,
  29399. bottom: 27 / 1662
  29400. }
  29401. },
  29402. },
  29403. [
  29404. {
  29405. name: "\"Incognito\"",
  29406. height: math.unit(4, "meters")
  29407. },
  29408. {
  29409. name: "Small rampage",
  29410. height: math.unit(600, "meters")
  29411. },
  29412. {
  29413. name: "Mega",
  29414. height: math.unit(30, "km")
  29415. },
  29416. {
  29417. name: "Home-size",
  29418. height: math.unit(50, "km"),
  29419. default: true
  29420. },
  29421. {
  29422. name: "Giga",
  29423. height: math.unit(300, "km")
  29424. },
  29425. {
  29426. name: "Lounging",
  29427. height: math.unit(11000, "km")
  29428. },
  29429. {
  29430. name: "Planet snacking",
  29431. height: math.unit(2000000, "km")
  29432. },
  29433. ]
  29434. ))
  29435. characterMakers.push(() => makeCharacter(
  29436. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29437. {
  29438. front: {
  29439. height: math.unit(6, "feet"),
  29440. weight: math.unit(215, "lb"),
  29441. name: "Front",
  29442. image: {
  29443. source: "./media/characters/sapphire-svell/front.svg",
  29444. extra: 495 / 455,
  29445. bottom: 20 / 515
  29446. }
  29447. },
  29448. back: {
  29449. height: math.unit(6, "feet"),
  29450. weight: math.unit(216, "lb"),
  29451. name: "Back",
  29452. image: {
  29453. source: "./media/characters/sapphire-svell/back.svg",
  29454. extra: 497 / 477,
  29455. bottom: 7 / 504
  29456. }
  29457. },
  29458. maw: {
  29459. height: math.unit(1.57, "feet"),
  29460. name: "Maw",
  29461. image: {
  29462. source: "./media/characters/sapphire-svell/maw.svg"
  29463. }
  29464. },
  29465. foot: {
  29466. height: math.unit(1.07, "feet"),
  29467. name: "Foot",
  29468. image: {
  29469. source: "./media/characters/sapphire-svell/foot.svg"
  29470. }
  29471. },
  29472. toering: {
  29473. height: math.unit(1.7, "inch"),
  29474. name: "Toering",
  29475. image: {
  29476. source: "./media/characters/sapphire-svell/toering.svg"
  29477. }
  29478. },
  29479. },
  29480. [
  29481. {
  29482. name: "Normal",
  29483. height: math.unit(300, "feet"),
  29484. default: true
  29485. },
  29486. {
  29487. name: "Augmented",
  29488. height: math.unit(1250, "feet")
  29489. },
  29490. {
  29491. name: "Unleashed",
  29492. height: math.unit(3000, "feet")
  29493. },
  29494. ]
  29495. ))
  29496. characterMakers.push(() => makeCharacter(
  29497. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29498. {
  29499. side: {
  29500. height: math.unit(2 + 3 / 12, "feet"),
  29501. weight: math.unit(110, "lb"),
  29502. name: "Side",
  29503. image: {
  29504. source: "./media/characters/glitch-flux/side.svg",
  29505. extra: 997 / 805,
  29506. bottom: 20 / 1017
  29507. }
  29508. },
  29509. },
  29510. [
  29511. {
  29512. name: "Normal",
  29513. height: math.unit(2 + 3 / 12, "feet"),
  29514. default: true
  29515. },
  29516. ]
  29517. ))
  29518. characterMakers.push(() => makeCharacter(
  29519. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29520. {
  29521. front: {
  29522. height: math.unit(4, "meters"),
  29523. name: "Front",
  29524. image: {
  29525. source: "./media/characters/mid/front.svg",
  29526. extra: 507 / 476,
  29527. bottom: 17 / 524
  29528. }
  29529. },
  29530. back: {
  29531. height: math.unit(4, "meters"),
  29532. name: "Back",
  29533. image: {
  29534. source: "./media/characters/mid/back.svg",
  29535. extra: 519 / 487,
  29536. bottom: 7 / 526
  29537. }
  29538. },
  29539. stuck: {
  29540. height: math.unit(2.2, "meters"),
  29541. name: "Stuck",
  29542. image: {
  29543. source: "./media/characters/mid/stuck.svg",
  29544. extra: 1951 / 1869,
  29545. bottom: 88 / 2039
  29546. }
  29547. }
  29548. },
  29549. [
  29550. {
  29551. name: "Normal",
  29552. height: math.unit(4, "meters"),
  29553. default: true
  29554. },
  29555. {
  29556. name: "Big",
  29557. height: math.unit(10, "meters")
  29558. },
  29559. {
  29560. name: "Macro",
  29561. height: math.unit(800, "meters")
  29562. },
  29563. {
  29564. name: "Megamacro",
  29565. height: math.unit(100, "km")
  29566. },
  29567. {
  29568. name: "Overgrown",
  29569. height: math.unit(1, "parsec")
  29570. },
  29571. ]
  29572. ))
  29573. characterMakers.push(() => makeCharacter(
  29574. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29575. {
  29576. front: {
  29577. height: math.unit(2.5, "meters"),
  29578. weight: math.unit(225, "kg"),
  29579. name: "Front",
  29580. image: {
  29581. source: "./media/characters/iris/front.svg",
  29582. extra: 3348 / 3251,
  29583. bottom: 205 / 3553
  29584. }
  29585. },
  29586. maw: {
  29587. height: math.unit(0.56, "meter"),
  29588. name: "Maw",
  29589. image: {
  29590. source: "./media/characters/iris/maw.svg"
  29591. }
  29592. },
  29593. },
  29594. [
  29595. {
  29596. name: "Mewter cat",
  29597. height: math.unit(1.2, "meters")
  29598. },
  29599. {
  29600. name: "Minimacro",
  29601. height: math.unit(2.5, "meters"),
  29602. default: true
  29603. },
  29604. {
  29605. name: "Macro",
  29606. height: math.unit(180, "meters")
  29607. },
  29608. {
  29609. name: "Megamacro",
  29610. height: math.unit(2746, "meters")
  29611. },
  29612. ]
  29613. ))
  29614. characterMakers.push(() => makeCharacter(
  29615. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29616. {
  29617. front: {
  29618. height: math.unit(6, "feet"),
  29619. weight: math.unit(135, "lb"),
  29620. name: "Front",
  29621. image: {
  29622. source: "./media/characters/axel/front.svg",
  29623. extra: 908 / 908,
  29624. bottom: 58 / 966
  29625. }
  29626. },
  29627. side: {
  29628. height: math.unit(6, "feet"),
  29629. weight: math.unit(135, "lb"),
  29630. name: "Side",
  29631. image: {
  29632. source: "./media/characters/axel/side.svg",
  29633. extra: 958 / 958,
  29634. bottom: 11 / 969
  29635. }
  29636. },
  29637. back: {
  29638. height: math.unit(6, "feet"),
  29639. weight: math.unit(135, "lb"),
  29640. name: "Back",
  29641. image: {
  29642. source: "./media/characters/axel/back.svg",
  29643. extra: 887 / 887,
  29644. bottom: 34 / 921
  29645. }
  29646. },
  29647. head: {
  29648. height: math.unit(1.07, "feet"),
  29649. name: "Head",
  29650. image: {
  29651. source: "./media/characters/axel/head.svg"
  29652. }
  29653. },
  29654. beak: {
  29655. height: math.unit(1.4, "feet"),
  29656. name: "Beak",
  29657. image: {
  29658. source: "./media/characters/axel/beak.svg"
  29659. }
  29660. },
  29661. beakSide: {
  29662. height: math.unit(1.4, "feet"),
  29663. name: "Beak Side",
  29664. image: {
  29665. source: "./media/characters/axel/beak-side.svg"
  29666. }
  29667. },
  29668. sheath: {
  29669. height: math.unit(0.5, "feet"),
  29670. name: "Sheath",
  29671. image: {
  29672. source: "./media/characters/axel/sheath.svg"
  29673. }
  29674. },
  29675. dick: {
  29676. height: math.unit(0.98, "feet"),
  29677. name: "Dick",
  29678. image: {
  29679. source: "./media/characters/axel/dick.svg"
  29680. }
  29681. },
  29682. },
  29683. [
  29684. {
  29685. name: "Macro",
  29686. height: math.unit(68, "meters"),
  29687. default: true
  29688. },
  29689. ]
  29690. ))
  29691. characterMakers.push(() => makeCharacter(
  29692. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29693. {
  29694. front: {
  29695. height: math.unit(3.5, "meters"),
  29696. weight: math.unit(1200, "kg"),
  29697. name: "Front",
  29698. image: {
  29699. source: "./media/characters/joanna/front.svg",
  29700. extra: 1596 / 1488,
  29701. bottom: 29 / 1625
  29702. }
  29703. },
  29704. back: {
  29705. height: math.unit(3.5, "meters"),
  29706. weight: math.unit(1200, "kg"),
  29707. name: "Back",
  29708. image: {
  29709. source: "./media/characters/joanna/back.svg",
  29710. extra: 1594 / 1495,
  29711. bottom: 26 / 1620
  29712. }
  29713. },
  29714. frontShorts: {
  29715. height: math.unit(3.5, "meters"),
  29716. weight: math.unit(1200, "kg"),
  29717. name: "Front (Shorts)",
  29718. image: {
  29719. source: "./media/characters/joanna/front-shorts.svg",
  29720. extra: 1596 / 1488,
  29721. bottom: 29 / 1625
  29722. }
  29723. },
  29724. frontBiker: {
  29725. height: math.unit(3.5, "meters"),
  29726. weight: math.unit(1200, "kg"),
  29727. name: "Front (Biker)",
  29728. image: {
  29729. source: "./media/characters/joanna/front-biker.svg",
  29730. extra: 1596 / 1488,
  29731. bottom: 29 / 1625
  29732. }
  29733. },
  29734. backBiker: {
  29735. height: math.unit(3.5, "meters"),
  29736. weight: math.unit(1200, "kg"),
  29737. name: "Back (Biker)",
  29738. image: {
  29739. source: "./media/characters/joanna/back-biker.svg",
  29740. extra: 1594 / 1495,
  29741. bottom: 88 / 1682
  29742. }
  29743. },
  29744. bikeLeft: {
  29745. height: math.unit(2.4, "meters"),
  29746. weight: math.unit(1600, "kg"),
  29747. name: "Bike (Left)",
  29748. image: {
  29749. source: "./media/characters/joanna/bike-left.svg",
  29750. extra: 720 / 720,
  29751. bottom: 8 / 728
  29752. }
  29753. },
  29754. bikeRight: {
  29755. height: math.unit(2.4, "meters"),
  29756. weight: math.unit(1600, "kg"),
  29757. name: "Bike (Right)",
  29758. image: {
  29759. source: "./media/characters/joanna/bike-right.svg",
  29760. extra: 720 / 720,
  29761. bottom: 8 / 728
  29762. }
  29763. },
  29764. },
  29765. [
  29766. {
  29767. name: "Incognito",
  29768. height: math.unit(3.5, "meters")
  29769. },
  29770. {
  29771. name: "Casual Big",
  29772. height: math.unit(200, "meters")
  29773. },
  29774. {
  29775. name: "Macro",
  29776. height: math.unit(600, "meters")
  29777. },
  29778. {
  29779. name: "Original",
  29780. height: math.unit(20, "km"),
  29781. default: true
  29782. },
  29783. {
  29784. name: "Giga",
  29785. height: math.unit(400, "km")
  29786. },
  29787. {
  29788. name: "Lounging",
  29789. height: math.unit(1500, "km")
  29790. },
  29791. {
  29792. name: "Planetary",
  29793. height: math.unit(200000, "km")
  29794. },
  29795. ]
  29796. ))
  29797. characterMakers.push(() => makeCharacter(
  29798. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29799. {
  29800. front: {
  29801. height: math.unit(6, "feet"),
  29802. weight: math.unit(150, "lb"),
  29803. name: "Front",
  29804. image: {
  29805. source: "./media/characters/hugo-sigil/front.svg",
  29806. extra: 522 / 500,
  29807. bottom: 2 / 524
  29808. }
  29809. },
  29810. back: {
  29811. height: math.unit(6, "feet"),
  29812. weight: math.unit(150, "lb"),
  29813. name: "Back",
  29814. image: {
  29815. source: "./media/characters/hugo-sigil/back.svg",
  29816. extra: 519 / 495,
  29817. bottom: 5 / 524
  29818. }
  29819. },
  29820. maw: {
  29821. height: math.unit(1.4, "feet"),
  29822. weight: math.unit(150, "lb"),
  29823. name: "Maw",
  29824. image: {
  29825. source: "./media/characters/hugo-sigil/maw.svg"
  29826. }
  29827. },
  29828. feet: {
  29829. height: math.unit(1.56, "feet"),
  29830. weight: math.unit(150, "lb"),
  29831. name: "Feet",
  29832. image: {
  29833. source: "./media/characters/hugo-sigil/feet.svg",
  29834. extra: 177 / 177,
  29835. bottom: 12 / 189
  29836. }
  29837. },
  29838. },
  29839. [
  29840. {
  29841. name: "Normal",
  29842. height: math.unit(6, "feet")
  29843. },
  29844. {
  29845. name: "Macro",
  29846. height: math.unit(200, "feet"),
  29847. default: true
  29848. },
  29849. ]
  29850. ))
  29851. characterMakers.push(() => makeCharacter(
  29852. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29853. {
  29854. front: {
  29855. height: math.unit(6, "feet"),
  29856. weight: math.unit(150, "lb"),
  29857. name: "Front",
  29858. image: {
  29859. source: "./media/characters/peri/front.svg",
  29860. extra: 2354 / 2233,
  29861. bottom: 49 / 2403
  29862. }
  29863. },
  29864. },
  29865. [
  29866. {
  29867. name: "Really Small",
  29868. height: math.unit(1, "nm")
  29869. },
  29870. {
  29871. name: "Micro",
  29872. height: math.unit(4, "inches")
  29873. },
  29874. {
  29875. name: "Normal",
  29876. height: math.unit(7, "inches"),
  29877. default: true
  29878. },
  29879. {
  29880. name: "Macro",
  29881. height: math.unit(400, "feet")
  29882. },
  29883. {
  29884. name: "Megamacro",
  29885. height: math.unit(100, "miles")
  29886. },
  29887. ]
  29888. ))
  29889. characterMakers.push(() => makeCharacter(
  29890. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29891. {
  29892. frontSlim: {
  29893. height: math.unit(7, "feet"),
  29894. name: "Front (Slim)",
  29895. image: {
  29896. source: "./media/characters/issilora/front-slim.svg",
  29897. extra: 529 / 449,
  29898. bottom: 53 / 582
  29899. }
  29900. },
  29901. sideSlim: {
  29902. height: math.unit(7, "feet"),
  29903. name: "Side (Slim)",
  29904. image: {
  29905. source: "./media/characters/issilora/side-slim.svg",
  29906. extra: 570 / 480,
  29907. bottom: 30 / 600
  29908. }
  29909. },
  29910. backSlim: {
  29911. height: math.unit(7, "feet"),
  29912. name: "Back (Slim)",
  29913. image: {
  29914. source: "./media/characters/issilora/back-slim.svg",
  29915. extra: 537 / 455,
  29916. bottom: 46 / 583
  29917. }
  29918. },
  29919. frontBuff: {
  29920. height: math.unit(7, "feet"),
  29921. name: "Front (Buff)",
  29922. image: {
  29923. source: "./media/characters/issilora/front-buff.svg",
  29924. extra: 2310 / 2035,
  29925. bottom: 335 / 2645
  29926. }
  29927. },
  29928. head: {
  29929. height: math.unit(1.94, "feet"),
  29930. name: "Head",
  29931. image: {
  29932. source: "./media/characters/issilora/head.svg"
  29933. }
  29934. },
  29935. },
  29936. [
  29937. {
  29938. name: "Minimum",
  29939. height: math.unit(7, "feet")
  29940. },
  29941. {
  29942. name: "Comfortable",
  29943. height: math.unit(17, "feet")
  29944. },
  29945. {
  29946. name: "Fun Size",
  29947. height: math.unit(47, "feet")
  29948. },
  29949. {
  29950. name: "Natural Macro",
  29951. height: math.unit(137, "feet"),
  29952. default: true
  29953. },
  29954. {
  29955. name: "Maximum Kaiju",
  29956. height: math.unit(397, "feet")
  29957. },
  29958. ]
  29959. ))
  29960. characterMakers.push(() => makeCharacter(
  29961. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29962. {
  29963. front: {
  29964. height: math.unit(50 + 9/12, "feet"),
  29965. weight: math.unit(32.8, "tons"),
  29966. name: "Front",
  29967. image: {
  29968. source: "./media/characters/irb'iiritaahn/front.svg",
  29969. extra: 1878/1826,
  29970. bottom: 326/2204
  29971. }
  29972. },
  29973. back: {
  29974. height: math.unit(50 + 9/12, "feet"),
  29975. weight: math.unit(32.8, "tons"),
  29976. name: "Back",
  29977. image: {
  29978. source: "./media/characters/irb'iiritaahn/back.svg",
  29979. extra: 2052/2018,
  29980. bottom: 152/2204
  29981. }
  29982. },
  29983. head: {
  29984. height: math.unit(12.86, "feet"),
  29985. name: "Head",
  29986. image: {
  29987. source: "./media/characters/irb'iiritaahn/head.svg"
  29988. }
  29989. },
  29990. maw: {
  29991. height: math.unit(9.66, "feet"),
  29992. name: "Maw",
  29993. image: {
  29994. source: "./media/characters/irb'iiritaahn/maw.svg"
  29995. }
  29996. },
  29997. frontDick: {
  29998. height: math.unit(8.78461, "feet"),
  29999. name: "Front Dick",
  30000. image: {
  30001. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  30002. }
  30003. },
  30004. rearDick: {
  30005. height: math.unit(8.78461, "feet"),
  30006. name: "Rear Dick",
  30007. image: {
  30008. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  30009. }
  30010. },
  30011. rearDickUnfolded: {
  30012. height: math.unit(8.78, "feet"),
  30013. name: "Rear Dick (Unfolded)",
  30014. image: {
  30015. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  30016. }
  30017. },
  30018. wings: {
  30019. height: math.unit(43, "feet"),
  30020. name: "Wings",
  30021. image: {
  30022. source: "./media/characters/irb'iiritaahn/wings.svg"
  30023. }
  30024. },
  30025. },
  30026. [
  30027. {
  30028. name: "Macro",
  30029. height: math.unit(50 + 9/12, "feet"),
  30030. default: true
  30031. },
  30032. ]
  30033. ))
  30034. characterMakers.push(() => makeCharacter(
  30035. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30036. {
  30037. front: {
  30038. height: math.unit(205, "cm"),
  30039. weight: math.unit(102, "kg"),
  30040. name: "Front",
  30041. image: {
  30042. source: "./media/characters/irbisgreif/front.svg",
  30043. extra: 785/706,
  30044. bottom: 13/798
  30045. }
  30046. },
  30047. back: {
  30048. height: math.unit(205, "cm"),
  30049. weight: math.unit(102, "kg"),
  30050. name: "Back",
  30051. image: {
  30052. source: "./media/characters/irbisgreif/back.svg",
  30053. extra: 713/701,
  30054. bottom: 26/739
  30055. }
  30056. },
  30057. frontDressed: {
  30058. height: math.unit(216, "cm"),
  30059. weight: math.unit(102, "kg"),
  30060. name: "Front-dressed",
  30061. image: {
  30062. source: "./media/characters/irbisgreif/front-dressed.svg",
  30063. extra: 902/776,
  30064. bottom: 14/916
  30065. }
  30066. },
  30067. sideDressed: {
  30068. height: math.unit(195, "cm"),
  30069. weight: math.unit(102, "kg"),
  30070. name: "Side-dressed",
  30071. image: {
  30072. source: "./media/characters/irbisgreif/side-dressed.svg",
  30073. extra: 788/688,
  30074. bottom: 21/809
  30075. }
  30076. },
  30077. backDressed: {
  30078. height: math.unit(216, "cm"),
  30079. weight: math.unit(102, "kg"),
  30080. name: "Back-dressed",
  30081. image: {
  30082. source: "./media/characters/irbisgreif/back-dressed.svg",
  30083. extra: 901/783,
  30084. bottom: 10/911
  30085. }
  30086. },
  30087. dick: {
  30088. height: math.unit(0.49, "feet"),
  30089. name: "Dick",
  30090. image: {
  30091. source: "./media/characters/irbisgreif/dick.svg"
  30092. }
  30093. },
  30094. wingTop: {
  30095. height: math.unit(1.93 , "feet"),
  30096. name: "Wing-top",
  30097. image: {
  30098. source: "./media/characters/irbisgreif/wing-top.svg"
  30099. }
  30100. },
  30101. wingBottom: {
  30102. height: math.unit(1.93 , "feet"),
  30103. name: "Wing-bottom",
  30104. image: {
  30105. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30106. }
  30107. },
  30108. },
  30109. [
  30110. {
  30111. name: "Normal",
  30112. height: math.unit(216, "cm"),
  30113. default: true
  30114. },
  30115. ]
  30116. ))
  30117. characterMakers.push(() => makeCharacter(
  30118. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30119. {
  30120. front: {
  30121. height: math.unit(6, "feet"),
  30122. weight: math.unit(150, "lb"),
  30123. name: "Front",
  30124. image: {
  30125. source: "./media/characters/pride/front.svg",
  30126. extra: 1299/1230,
  30127. bottom: 18/1317
  30128. }
  30129. },
  30130. },
  30131. [
  30132. {
  30133. name: "Normal",
  30134. height: math.unit(7, "feet")
  30135. },
  30136. {
  30137. name: "Mini-macro",
  30138. height: math.unit(11, "feet")
  30139. },
  30140. {
  30141. name: "Macro",
  30142. height: math.unit(15, "meters"),
  30143. default: true
  30144. },
  30145. {
  30146. name: "Macro+",
  30147. height: math.unit(40, "meters")
  30148. },
  30149. ]
  30150. ))
  30151. characterMakers.push(() => makeCharacter(
  30152. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30153. {
  30154. front: {
  30155. height: math.unit(4 + 2 / 12, "feet"),
  30156. weight: math.unit(95, "lb"),
  30157. name: "Front",
  30158. image: {
  30159. source: "./media/characters/vaelophis-nyx/front.svg",
  30160. extra: 2532/2330,
  30161. bottom: 0/2532
  30162. }
  30163. },
  30164. back: {
  30165. height: math.unit(4 + 2 / 12, "feet"),
  30166. weight: math.unit(95, "lb"),
  30167. name: "Back",
  30168. image: {
  30169. source: "./media/characters/vaelophis-nyx/back.svg",
  30170. extra: 2484/2361,
  30171. bottom: 0/2484
  30172. }
  30173. },
  30174. feralSide: {
  30175. height: math.unit(2 + 1/12, "feet"),
  30176. weight: math.unit(20, "lb"),
  30177. name: "Feral (Side)",
  30178. image: {
  30179. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30180. extra: 1721/1581,
  30181. bottom: 70/1791
  30182. }
  30183. },
  30184. feralLazing: {
  30185. height: math.unit(1.08, "feet"),
  30186. weight: math.unit(20, "lb"),
  30187. name: "Feral (Lazing)",
  30188. image: {
  30189. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30190. extra: 822/822,
  30191. bottom: 248/1070
  30192. }
  30193. },
  30194. ear: {
  30195. height: math.unit(0.416, "feet"),
  30196. name: "Ear",
  30197. image: {
  30198. source: "./media/characters/vaelophis-nyx/ear.svg"
  30199. }
  30200. },
  30201. eye: {
  30202. height: math.unit(0.0748, "feet"),
  30203. name: "Eye",
  30204. image: {
  30205. source: "./media/characters/vaelophis-nyx/eye.svg"
  30206. }
  30207. },
  30208. mouth: {
  30209. height: math.unit(0.378, "feet"),
  30210. name: "Mouth",
  30211. image: {
  30212. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30213. }
  30214. },
  30215. spade: {
  30216. height: math.unit(0.55, "feet"),
  30217. name: "Spade",
  30218. image: {
  30219. source: "./media/characters/vaelophis-nyx/spade.svg"
  30220. }
  30221. },
  30222. },
  30223. [
  30224. {
  30225. name: "Normal",
  30226. height: math.unit(4 + 2/12, "feet"),
  30227. default: true
  30228. },
  30229. ]
  30230. ))
  30231. characterMakers.push(() => makeCharacter(
  30232. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30233. {
  30234. front: {
  30235. height: math.unit(7, "feet"),
  30236. weight: math.unit(231, "lb"),
  30237. name: "Front",
  30238. image: {
  30239. source: "./media/characters/flux/front.svg",
  30240. extra: 919/871,
  30241. bottom: 0/919
  30242. }
  30243. },
  30244. back: {
  30245. height: math.unit(7, "feet"),
  30246. weight: math.unit(231, "lb"),
  30247. name: "Back",
  30248. image: {
  30249. source: "./media/characters/flux/back.svg",
  30250. extra: 1040/992,
  30251. bottom: 0/1040
  30252. }
  30253. },
  30254. frontDressed: {
  30255. height: math.unit(7, "feet"),
  30256. weight: math.unit(231, "lb"),
  30257. name: "Front (Dressed)",
  30258. image: {
  30259. source: "./media/characters/flux/front-dressed.svg",
  30260. extra: 919/871,
  30261. bottom: 0/919
  30262. }
  30263. },
  30264. feralSide: {
  30265. height: math.unit(5, "feet"),
  30266. weight: math.unit(150, "lb"),
  30267. name: "Feral (Side)",
  30268. image: {
  30269. source: "./media/characters/flux/feral-side.svg",
  30270. extra: 598/528,
  30271. bottom: 28/626
  30272. }
  30273. },
  30274. head: {
  30275. height: math.unit(1.585, "feet"),
  30276. name: "Head",
  30277. image: {
  30278. source: "./media/characters/flux/head.svg"
  30279. }
  30280. },
  30281. headSide: {
  30282. height: math.unit(1.74, "feet"),
  30283. name: "Head (Side)",
  30284. image: {
  30285. source: "./media/characters/flux/head-side.svg"
  30286. }
  30287. },
  30288. headSideFire: {
  30289. height: math.unit(1.76, "feet"),
  30290. name: "Head (Side, Fire)",
  30291. image: {
  30292. source: "./media/characters/flux/head-side-fire.svg"
  30293. }
  30294. },
  30295. },
  30296. [
  30297. {
  30298. name: "Normal",
  30299. height: math.unit(7, "feet"),
  30300. default: true
  30301. },
  30302. ]
  30303. ))
  30304. characterMakers.push(() => makeCharacter(
  30305. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30306. {
  30307. front: {
  30308. height: math.unit(9, "feet"),
  30309. weight: math.unit(1012, "lb"),
  30310. name: "Front",
  30311. image: {
  30312. source: "./media/characters/ulfra-lupae/front.svg",
  30313. extra: 1083/1011,
  30314. bottom: 67/1150
  30315. }
  30316. },
  30317. },
  30318. [
  30319. {
  30320. name: "Micro",
  30321. height: math.unit(6, "inches")
  30322. },
  30323. {
  30324. name: "Socializing",
  30325. height: math.unit(6 + 5/12, "feet")
  30326. },
  30327. {
  30328. name: "Normal",
  30329. height: math.unit(9, "feet"),
  30330. default: true
  30331. },
  30332. {
  30333. name: "Macro",
  30334. height: math.unit(150, "feet")
  30335. },
  30336. ]
  30337. ))
  30338. characterMakers.push(() => makeCharacter(
  30339. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30340. {
  30341. front: {
  30342. height: math.unit(5 + 2/12, "feet"),
  30343. weight: math.unit(120, "lb"),
  30344. name: "Front",
  30345. image: {
  30346. source: "./media/characters/timber/front.svg",
  30347. extra: 2814/2705,
  30348. bottom: 181/2995
  30349. }
  30350. },
  30351. },
  30352. [
  30353. {
  30354. name: "Normal",
  30355. height: math.unit(5 + 2/12, "feet"),
  30356. default: true
  30357. },
  30358. ]
  30359. ))
  30360. characterMakers.push(() => makeCharacter(
  30361. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30362. {
  30363. front: {
  30364. height: math.unit(5 + 7/12, "feet"),
  30365. weight: math.unit(220, "lb"),
  30366. name: "Front",
  30367. image: {
  30368. source: "./media/characters/nicki/front.svg",
  30369. extra: 453/419,
  30370. bottom: 7/460
  30371. }
  30372. },
  30373. frontAlt: {
  30374. height: math.unit(5 + 7/12, "feet"),
  30375. weight: math.unit(220, "lb"),
  30376. name: "Front-alt",
  30377. image: {
  30378. source: "./media/characters/nicki/front-alt.svg",
  30379. extra: 435/411,
  30380. bottom: 12/447
  30381. }
  30382. },
  30383. back: {
  30384. height: math.unit(5 + 7/12, "feet"),
  30385. weight: math.unit(220, "lb"),
  30386. name: "Back",
  30387. image: {
  30388. source: "./media/characters/nicki/back.svg",
  30389. extra: 440/413,
  30390. bottom: 19/459
  30391. }
  30392. },
  30393. taur: {
  30394. height: math.unit(7 + 6/12, "feet"),
  30395. weight: math.unit(700, "lb"),
  30396. name: "Taur",
  30397. image: {
  30398. source: "./media/characters/nicki/taur.svg",
  30399. extra: 975/773,
  30400. bottom: 0/975
  30401. }
  30402. },
  30403. frontNsfw: {
  30404. height: math.unit(5 + 7/12, "feet"),
  30405. weight: math.unit(220, "lb"),
  30406. name: "Front (NSFW)",
  30407. image: {
  30408. source: "./media/characters/nicki/front-nsfw.svg",
  30409. extra: 453/419,
  30410. bottom: 7/460
  30411. }
  30412. },
  30413. frontNsfwAlt: {
  30414. height: math.unit(5 + 7/12, "feet"),
  30415. weight: math.unit(220, "lb"),
  30416. name: "Front (Alt, NSFW)",
  30417. image: {
  30418. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30419. extra: 435/411,
  30420. bottom: 12/447
  30421. }
  30422. },
  30423. backNsfw: {
  30424. height: math.unit(5 + 7/12, "feet"),
  30425. weight: math.unit(220, "lb"),
  30426. name: "Back (NSFW)",
  30427. image: {
  30428. source: "./media/characters/nicki/back-nsfw.svg",
  30429. extra: 440/413,
  30430. bottom: 19/459
  30431. }
  30432. },
  30433. head: {
  30434. height: math.unit(2.1, "feet"),
  30435. name: "Head",
  30436. image: {
  30437. source: "./media/characters/nicki/head.svg"
  30438. }
  30439. },
  30440. paw: {
  30441. height: math.unit(1.88, "feet"),
  30442. name: "Paw",
  30443. image: {
  30444. source: "./media/characters/nicki/paw.svg"
  30445. }
  30446. },
  30447. },
  30448. [
  30449. {
  30450. name: "Normal",
  30451. height: math.unit(5 + 7/12, "feet"),
  30452. default: true
  30453. },
  30454. ]
  30455. ))
  30456. characterMakers.push(() => makeCharacter(
  30457. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30458. {
  30459. front: {
  30460. height: math.unit(7 + 10/12, "feet"),
  30461. weight: math.unit(3.5, "tons"),
  30462. name: "Front",
  30463. image: {
  30464. source: "./media/characters/lee/front.svg",
  30465. extra: 1773/1615,
  30466. bottom: 86/1859
  30467. }
  30468. },
  30469. hand: {
  30470. height: math.unit(1.78, "feet"),
  30471. name: "Hand",
  30472. image: {
  30473. source: "./media/characters/lee/hand.svg"
  30474. }
  30475. },
  30476. maw: {
  30477. height: math.unit(1.18, "feet"),
  30478. name: "Maw",
  30479. image: {
  30480. source: "./media/characters/lee/maw.svg"
  30481. }
  30482. },
  30483. },
  30484. [
  30485. {
  30486. name: "Normal",
  30487. height: math.unit(7 + 10/12, "feet"),
  30488. default: true
  30489. },
  30490. ]
  30491. ))
  30492. characterMakers.push(() => makeCharacter(
  30493. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30494. {
  30495. front: {
  30496. height: math.unit(9, "feet"),
  30497. name: "Front",
  30498. image: {
  30499. source: "./media/characters/guti/front.svg",
  30500. extra: 4551/4355,
  30501. bottom: 123/4674
  30502. }
  30503. },
  30504. tongue: {
  30505. height: math.unit(1, "feet"),
  30506. name: "Tongue",
  30507. image: {
  30508. source: "./media/characters/guti/tongue.svg"
  30509. }
  30510. },
  30511. paw: {
  30512. height: math.unit(1.18, "feet"),
  30513. name: "Paw",
  30514. image: {
  30515. source: "./media/characters/guti/paw.svg"
  30516. }
  30517. },
  30518. },
  30519. [
  30520. {
  30521. name: "Normal",
  30522. height: math.unit(9, "feet"),
  30523. default: true
  30524. },
  30525. ]
  30526. ))
  30527. characterMakers.push(() => makeCharacter(
  30528. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30529. {
  30530. side: {
  30531. height: math.unit(5, "meters"),
  30532. name: "Side",
  30533. image: {
  30534. source: "./media/characters/vesper/side.svg",
  30535. extra: 1605/1518,
  30536. bottom: 0/1605
  30537. }
  30538. },
  30539. },
  30540. [
  30541. {
  30542. name: "Small",
  30543. height: math.unit(5, "meters")
  30544. },
  30545. {
  30546. name: "Sage",
  30547. height: math.unit(100, "meters"),
  30548. default: true
  30549. },
  30550. {
  30551. name: "Fun Size",
  30552. height: math.unit(600, "meters")
  30553. },
  30554. {
  30555. name: "Goddess",
  30556. height: math.unit(20000, "km")
  30557. },
  30558. {
  30559. name: "Maximum",
  30560. height: math.unit(5, "galaxies")
  30561. },
  30562. ]
  30563. ))
  30564. characterMakers.push(() => makeCharacter(
  30565. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30566. {
  30567. front: {
  30568. height: math.unit(6 + 3/12, "feet"),
  30569. weight: math.unit(190, "lb"),
  30570. name: "Front",
  30571. image: {
  30572. source: "./media/characters/gawain/front.svg",
  30573. extra: 2222/2139,
  30574. bottom: 90/2312
  30575. }
  30576. },
  30577. back: {
  30578. height: math.unit(6 + 3/12, "feet"),
  30579. weight: math.unit(190, "lb"),
  30580. name: "Back",
  30581. image: {
  30582. source: "./media/characters/gawain/back.svg",
  30583. extra: 2199/2111,
  30584. bottom: 73/2272
  30585. }
  30586. },
  30587. },
  30588. [
  30589. {
  30590. name: "Normal",
  30591. height: math.unit(6 + 3/12, "feet"),
  30592. default: true
  30593. },
  30594. ]
  30595. ))
  30596. characterMakers.push(() => makeCharacter(
  30597. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30598. {
  30599. side: {
  30600. height: math.unit(3.5, "meters"),
  30601. weight: math.unit(16000, "lb"),
  30602. name: "Side",
  30603. image: {
  30604. source: "./media/characters/dascalti/side.svg",
  30605. extra: 392/273,
  30606. bottom: 47/439
  30607. }
  30608. },
  30609. breath: {
  30610. height: math.unit(7.4, "feet"),
  30611. name: "Breath",
  30612. image: {
  30613. source: "./media/characters/dascalti/breath.svg"
  30614. }
  30615. },
  30616. fed: {
  30617. height: math.unit(3.6, "meters"),
  30618. weight: math.unit(16000, "lb"),
  30619. name: "Fed",
  30620. image: {
  30621. source: "./media/characters/dascalti/fed.svg",
  30622. extra: 1419/820,
  30623. bottom: 95/1514
  30624. }
  30625. },
  30626. },
  30627. [
  30628. {
  30629. name: "Normal",
  30630. height: math.unit(3.5, "meters"),
  30631. default: true
  30632. },
  30633. ]
  30634. ))
  30635. characterMakers.push(() => makeCharacter(
  30636. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30637. {
  30638. front: {
  30639. height: math.unit(3 + 5/12, "feet"),
  30640. name: "Front",
  30641. image: {
  30642. source: "./media/characters/mauve/front.svg",
  30643. extra: 1126/1033,
  30644. bottom: 65/1191
  30645. }
  30646. },
  30647. side: {
  30648. height: math.unit(3 + 5/12, "feet"),
  30649. name: "Side",
  30650. image: {
  30651. source: "./media/characters/mauve/side.svg",
  30652. extra: 1089/1001,
  30653. bottom: 29/1118
  30654. }
  30655. },
  30656. back: {
  30657. height: math.unit(3 + 5/12, "feet"),
  30658. name: "Back",
  30659. image: {
  30660. source: "./media/characters/mauve/back.svg",
  30661. extra: 1173/1053,
  30662. bottom: 109/1282
  30663. }
  30664. },
  30665. },
  30666. [
  30667. {
  30668. name: "Normal",
  30669. height: math.unit(3 + 5/12, "feet"),
  30670. default: true
  30671. },
  30672. ]
  30673. ))
  30674. characterMakers.push(() => makeCharacter(
  30675. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30676. {
  30677. front: {
  30678. height: math.unit(6 + 3/12, "feet"),
  30679. weight: math.unit(430, "lb"),
  30680. name: "Front",
  30681. image: {
  30682. source: "./media/characters/carlos/front.svg",
  30683. extra: 1964/1913,
  30684. bottom: 70/2034
  30685. }
  30686. },
  30687. },
  30688. [
  30689. {
  30690. name: "Normal",
  30691. height: math.unit(6 + 3/12, "feet"),
  30692. default: true
  30693. },
  30694. ]
  30695. ))
  30696. characterMakers.push(() => makeCharacter(
  30697. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30698. {
  30699. back: {
  30700. height: math.unit(5 + 10/12, "feet"),
  30701. weight: math.unit(200, "lb"),
  30702. name: "Back",
  30703. image: {
  30704. source: "./media/characters/jax/back.svg",
  30705. extra: 764/739,
  30706. bottom: 25/789
  30707. }
  30708. },
  30709. },
  30710. [
  30711. {
  30712. name: "Normal",
  30713. height: math.unit(5 + 10/12, "feet"),
  30714. default: true
  30715. },
  30716. ]
  30717. ))
  30718. characterMakers.push(() => makeCharacter(
  30719. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30720. {
  30721. front: {
  30722. height: math.unit(8, "feet"),
  30723. weight: math.unit(250, "lb"),
  30724. name: "Front",
  30725. image: {
  30726. source: "./media/characters/eikthynir/front.svg",
  30727. extra: 1332/1166,
  30728. bottom: 82/1414
  30729. }
  30730. },
  30731. back: {
  30732. height: math.unit(8, "feet"),
  30733. weight: math.unit(250, "lb"),
  30734. name: "Back",
  30735. image: {
  30736. source: "./media/characters/eikthynir/back.svg",
  30737. extra: 1342/1190,
  30738. bottom: 19/1361
  30739. }
  30740. },
  30741. dick: {
  30742. height: math.unit(2.35, "feet"),
  30743. name: "Dick",
  30744. image: {
  30745. source: "./media/characters/eikthynir/dick.svg"
  30746. }
  30747. },
  30748. },
  30749. [
  30750. {
  30751. name: "Normal",
  30752. height: math.unit(8, "feet"),
  30753. default: true
  30754. },
  30755. ]
  30756. ))
  30757. characterMakers.push(() => makeCharacter(
  30758. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30759. {
  30760. front: {
  30761. height: math.unit(99, "meters"),
  30762. weight: math.unit(13000, "tons"),
  30763. name: "Front",
  30764. image: {
  30765. source: "./media/characters/zlmos/front.svg",
  30766. extra: 2202/1992,
  30767. bottom: 315/2517
  30768. }
  30769. },
  30770. },
  30771. [
  30772. {
  30773. name: "Macro",
  30774. height: math.unit(99, "meters"),
  30775. default: true
  30776. },
  30777. ]
  30778. ))
  30779. characterMakers.push(() => makeCharacter(
  30780. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30781. {
  30782. front: {
  30783. height: math.unit(6 + 5/12, "feet"),
  30784. name: "Front",
  30785. image: {
  30786. source: "./media/characters/purri/front.svg",
  30787. extra: 1698/1610,
  30788. bottom: 32/1730
  30789. }
  30790. },
  30791. frontAlt: {
  30792. height: math.unit(6 + 5/12, "feet"),
  30793. name: "Front (Alt)",
  30794. image: {
  30795. source: "./media/characters/purri/front-alt.svg",
  30796. extra: 450/420,
  30797. bottom: 26/476
  30798. }
  30799. },
  30800. boots: {
  30801. height: math.unit(5.5, "feet"),
  30802. name: "Boots",
  30803. image: {
  30804. source: "./media/characters/purri/boots.svg",
  30805. extra: 905/853,
  30806. bottom: 18/923
  30807. }
  30808. },
  30809. lying: {
  30810. height: math.unit(2, "feet"),
  30811. name: "Lying",
  30812. image: {
  30813. source: "./media/characters/purri/lying.svg",
  30814. extra: 940/843,
  30815. bottom: 146/1086
  30816. }
  30817. },
  30818. devious: {
  30819. height: math.unit(1.77, "feet"),
  30820. name: "Devious",
  30821. image: {
  30822. source: "./media/characters/purri/devious.svg",
  30823. extra: 1440/1155,
  30824. bottom: 147/1587
  30825. }
  30826. },
  30827. bean: {
  30828. height: math.unit(1.94, "feet"),
  30829. name: "Bean",
  30830. image: {
  30831. source: "./media/characters/purri/bean.svg"
  30832. }
  30833. },
  30834. },
  30835. [
  30836. {
  30837. name: "Micro",
  30838. height: math.unit(1, "mm")
  30839. },
  30840. {
  30841. name: "Normal",
  30842. height: math.unit(6 + 5/12, "feet"),
  30843. default: true
  30844. },
  30845. {
  30846. name: "Macro :3c",
  30847. height: math.unit(2, "miles")
  30848. },
  30849. ]
  30850. ))
  30851. characterMakers.push(() => makeCharacter(
  30852. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30853. {
  30854. front: {
  30855. height: math.unit(6 + 2/12, "feet"),
  30856. weight: math.unit(250, "lb"),
  30857. name: "Front",
  30858. image: {
  30859. source: "./media/characters/moonlight/front.svg",
  30860. extra: 1044/908,
  30861. bottom: 56/1100
  30862. }
  30863. },
  30864. feral: {
  30865. height: math.unit(3 + 1/12, "feet"),
  30866. weight: math.unit(50, "kg"),
  30867. name: "Feral",
  30868. image: {
  30869. source: "./media/characters/moonlight/feral.svg",
  30870. extra: 3705/2791,
  30871. bottom: 145/3850
  30872. }
  30873. },
  30874. paw: {
  30875. height: math.unit(1, "feet"),
  30876. name: "Paw",
  30877. image: {
  30878. source: "./media/characters/moonlight/paw.svg"
  30879. }
  30880. },
  30881. paws: {
  30882. height: math.unit(0.98, "feet"),
  30883. name: "Paws",
  30884. image: {
  30885. source: "./media/characters/moonlight/paws.svg",
  30886. extra: 939/939,
  30887. bottom: 50/989
  30888. }
  30889. },
  30890. mouth: {
  30891. height: math.unit(0.48, "feet"),
  30892. name: "Mouth",
  30893. image: {
  30894. source: "./media/characters/moonlight/mouth.svg"
  30895. }
  30896. },
  30897. dick: {
  30898. height: math.unit(1.46, "feet"),
  30899. name: "Dick",
  30900. image: {
  30901. source: "./media/characters/moonlight/dick.svg"
  30902. }
  30903. },
  30904. },
  30905. [
  30906. {
  30907. name: "Normal",
  30908. height: math.unit(6 + 2/12, "feet"),
  30909. default: true
  30910. },
  30911. {
  30912. name: "Macro",
  30913. height: math.unit(300, "feet")
  30914. },
  30915. {
  30916. name: "Macro+",
  30917. height: math.unit(1, "mile")
  30918. },
  30919. {
  30920. name: "Mt. Moon",
  30921. height: math.unit(5, "miles")
  30922. },
  30923. {
  30924. name: "Megamacro",
  30925. height: math.unit(15, "miles")
  30926. },
  30927. ]
  30928. ))
  30929. characterMakers.push(() => makeCharacter(
  30930. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30931. {
  30932. back: {
  30933. height: math.unit(6, "feet"),
  30934. weight: math.unit(150, "lb"),
  30935. name: "Back",
  30936. image: {
  30937. source: "./media/characters/sylen/back.svg",
  30938. extra: 1335/1273,
  30939. bottom: 107/1442
  30940. }
  30941. },
  30942. },
  30943. [
  30944. {
  30945. name: "Normal",
  30946. height: math.unit(5 + 5/12, "feet")
  30947. },
  30948. {
  30949. name: "Megamacro",
  30950. height: math.unit(3, "miles"),
  30951. default: true
  30952. },
  30953. ]
  30954. ))
  30955. characterMakers.push(() => makeCharacter(
  30956. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30957. {
  30958. front: {
  30959. height: math.unit(6, "feet"),
  30960. weight: math.unit(190, "lb"),
  30961. name: "Front",
  30962. image: {
  30963. source: "./media/characters/huttser/front.svg",
  30964. extra: 1152/1058,
  30965. bottom: 23/1175
  30966. }
  30967. },
  30968. side: {
  30969. height: math.unit(6, "feet"),
  30970. weight: math.unit(190, "lb"),
  30971. name: "Side",
  30972. image: {
  30973. source: "./media/characters/huttser/side.svg",
  30974. extra: 1174/1065,
  30975. bottom: 18/1192
  30976. }
  30977. },
  30978. back: {
  30979. height: math.unit(6, "feet"),
  30980. weight: math.unit(190, "lb"),
  30981. name: "Back",
  30982. image: {
  30983. source: "./media/characters/huttser/back.svg",
  30984. extra: 1158/1056,
  30985. bottom: 12/1170
  30986. }
  30987. },
  30988. },
  30989. [
  30990. ]
  30991. ))
  30992. characterMakers.push(() => makeCharacter(
  30993. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30994. {
  30995. side: {
  30996. height: math.unit(12 + 9/12, "feet"),
  30997. weight: math.unit(15000, "lb"),
  30998. name: "Side",
  30999. image: {
  31000. source: "./media/characters/faan/side.svg",
  31001. extra: 2747/2697,
  31002. bottom: 0/2747
  31003. }
  31004. },
  31005. front: {
  31006. height: math.unit(12 + 9/12, "feet"),
  31007. weight: math.unit(15000, "lb"),
  31008. name: "Front",
  31009. image: {
  31010. source: "./media/characters/faan/front.svg",
  31011. extra: 607/571,
  31012. bottom: 24/631
  31013. }
  31014. },
  31015. head: {
  31016. height: math.unit(2.85, "feet"),
  31017. name: "Head",
  31018. image: {
  31019. source: "./media/characters/faan/head.svg"
  31020. }
  31021. },
  31022. headAlt: {
  31023. height: math.unit(3.13, "feet"),
  31024. name: "Head-alt",
  31025. image: {
  31026. source: "./media/characters/faan/head-alt.svg"
  31027. }
  31028. },
  31029. },
  31030. [
  31031. {
  31032. name: "Normal",
  31033. height: math.unit(12 + 9/12, "feet"),
  31034. default: true
  31035. },
  31036. ]
  31037. ))
  31038. characterMakers.push(() => makeCharacter(
  31039. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31040. {
  31041. front: {
  31042. height: math.unit(6, "feet"),
  31043. weight: math.unit(300, "lb"),
  31044. name: "Front",
  31045. image: {
  31046. source: "./media/characters/tanio/front.svg",
  31047. extra: 711/673,
  31048. bottom: 25/736
  31049. }
  31050. },
  31051. },
  31052. [
  31053. {
  31054. name: "Normal",
  31055. height: math.unit(6, "feet"),
  31056. default: true
  31057. },
  31058. ]
  31059. ))
  31060. characterMakers.push(() => makeCharacter(
  31061. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31062. {
  31063. front: {
  31064. height: math.unit(3, "inches"),
  31065. name: "Front",
  31066. image: {
  31067. source: "./media/characters/noboru/front.svg",
  31068. extra: 1039/932,
  31069. bottom: 18/1057
  31070. }
  31071. },
  31072. },
  31073. [
  31074. {
  31075. name: "Micro",
  31076. height: math.unit(3, "inches"),
  31077. default: true
  31078. },
  31079. ]
  31080. ))
  31081. characterMakers.push(() => makeCharacter(
  31082. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31083. {
  31084. front: {
  31085. height: math.unit(1.85, "meters"),
  31086. weight: math.unit(80, "kg"),
  31087. name: "Front",
  31088. image: {
  31089. source: "./media/characters/daniel-barrett/front.svg",
  31090. extra: 355/337,
  31091. bottom: 9/364
  31092. }
  31093. },
  31094. },
  31095. [
  31096. {
  31097. name: "Pico",
  31098. height: math.unit(0.0433, "mm")
  31099. },
  31100. {
  31101. name: "Nano",
  31102. height: math.unit(1.5, "mm")
  31103. },
  31104. {
  31105. name: "Micro",
  31106. height: math.unit(5.3, "cm"),
  31107. default: true
  31108. },
  31109. {
  31110. name: "Normal",
  31111. height: math.unit(1.85, "meters")
  31112. },
  31113. {
  31114. name: "Macro",
  31115. height: math.unit(64.7, "meters")
  31116. },
  31117. {
  31118. name: "Megamacro",
  31119. height: math.unit(2.26, "km")
  31120. },
  31121. {
  31122. name: "Gigamacro",
  31123. height: math.unit(79, "km")
  31124. },
  31125. {
  31126. name: "Teramacro",
  31127. height: math.unit(2765, "km")
  31128. },
  31129. {
  31130. name: "Petamacro",
  31131. height: math.unit(96678, "km")
  31132. },
  31133. ]
  31134. ))
  31135. characterMakers.push(() => makeCharacter(
  31136. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31137. {
  31138. front: {
  31139. height: math.unit(30, "meters"),
  31140. weight: math.unit(400, "tons"),
  31141. name: "Front",
  31142. image: {
  31143. source: "./media/characters/zeel/front.svg",
  31144. extra: 2599/2599,
  31145. bottom: 226/2825
  31146. }
  31147. },
  31148. },
  31149. [
  31150. {
  31151. name: "Macro",
  31152. height: math.unit(30, "meters"),
  31153. default: true
  31154. },
  31155. ]
  31156. ))
  31157. characterMakers.push(() => makeCharacter(
  31158. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31159. {
  31160. front: {
  31161. height: math.unit(6 + 7/12, "feet"),
  31162. weight: math.unit(210, "lb"),
  31163. name: "Front",
  31164. image: {
  31165. source: "./media/characters/tarn/front.svg",
  31166. extra: 3517/3220,
  31167. bottom: 91/3608
  31168. }
  31169. },
  31170. back: {
  31171. height: math.unit(6 + 7/12, "feet"),
  31172. weight: math.unit(210, "lb"),
  31173. name: "Back",
  31174. image: {
  31175. source: "./media/characters/tarn/back.svg",
  31176. extra: 3566/3241,
  31177. bottom: 34/3600
  31178. }
  31179. },
  31180. dick: {
  31181. height: math.unit(1.65, "feet"),
  31182. name: "Dick",
  31183. image: {
  31184. source: "./media/characters/tarn/dick.svg"
  31185. }
  31186. },
  31187. paw: {
  31188. height: math.unit(1.80, "feet"),
  31189. name: "Paw",
  31190. image: {
  31191. source: "./media/characters/tarn/paw.svg"
  31192. }
  31193. },
  31194. tongue: {
  31195. height: math.unit(0.97, "feet"),
  31196. name: "Tongue",
  31197. image: {
  31198. source: "./media/characters/tarn/tongue.svg"
  31199. }
  31200. },
  31201. },
  31202. [
  31203. {
  31204. name: "Micro",
  31205. height: math.unit(4, "inches")
  31206. },
  31207. {
  31208. name: "Normal",
  31209. height: math.unit(6 + 7/12, "feet"),
  31210. default: true
  31211. },
  31212. {
  31213. name: "Macro",
  31214. height: math.unit(300, "feet")
  31215. },
  31216. ]
  31217. ))
  31218. characterMakers.push(() => makeCharacter(
  31219. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31220. {
  31221. front: {
  31222. height: math.unit(5 + 7/12, "feet"),
  31223. weight: math.unit(80, "kg"),
  31224. name: "Front",
  31225. image: {
  31226. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31227. extra: 3023/2865,
  31228. bottom: 33/3056
  31229. }
  31230. },
  31231. back: {
  31232. height: math.unit(5 + 7/12, "feet"),
  31233. weight: math.unit(80, "kg"),
  31234. name: "Back",
  31235. image: {
  31236. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31237. extra: 3020/2886,
  31238. bottom: 30/3050
  31239. }
  31240. },
  31241. dick: {
  31242. height: math.unit(0.98, "feet"),
  31243. name: "Dick",
  31244. image: {
  31245. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31246. }
  31247. },
  31248. anatomy: {
  31249. height: math.unit(2.86, "feet"),
  31250. name: "Anatomy",
  31251. image: {
  31252. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31253. }
  31254. },
  31255. },
  31256. [
  31257. {
  31258. name: "Really Small",
  31259. height: math.unit(2, "inches")
  31260. },
  31261. {
  31262. name: "Micro",
  31263. height: math.unit(5.583, "inches")
  31264. },
  31265. {
  31266. name: "Normal",
  31267. height: math.unit(5 + 7/12, "feet"),
  31268. default: true
  31269. },
  31270. {
  31271. name: "Macro",
  31272. height: math.unit(67, "feet")
  31273. },
  31274. {
  31275. name: "Megamacro",
  31276. height: math.unit(134, "feet")
  31277. },
  31278. ]
  31279. ))
  31280. characterMakers.push(() => makeCharacter(
  31281. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31282. {
  31283. front: {
  31284. height: math.unit(9, "feet"),
  31285. weight: math.unit(120, "lb"),
  31286. name: "Front",
  31287. image: {
  31288. source: "./media/characters/sally/front.svg",
  31289. extra: 1506/1349,
  31290. bottom: 66/1572
  31291. }
  31292. },
  31293. },
  31294. [
  31295. {
  31296. name: "Normal",
  31297. height: math.unit(9, "feet"),
  31298. default: true
  31299. },
  31300. ]
  31301. ))
  31302. characterMakers.push(() => makeCharacter(
  31303. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31304. {
  31305. front: {
  31306. height: math.unit(8, "feet"),
  31307. weight: math.unit(900, "lb"),
  31308. name: "Front",
  31309. image: {
  31310. source: "./media/characters/owen/front.svg",
  31311. extra: 1761/1657,
  31312. bottom: 74/1835
  31313. }
  31314. },
  31315. side: {
  31316. height: math.unit(8, "feet"),
  31317. weight: math.unit(900, "lb"),
  31318. name: "Side",
  31319. image: {
  31320. source: "./media/characters/owen/side.svg",
  31321. extra: 1797/1734,
  31322. bottom: 30/1827
  31323. }
  31324. },
  31325. back: {
  31326. height: math.unit(8, "feet"),
  31327. weight: math.unit(900, "lb"),
  31328. name: "Back",
  31329. image: {
  31330. source: "./media/characters/owen/back.svg",
  31331. extra: 1796/1706,
  31332. bottom: 59/1855
  31333. }
  31334. },
  31335. maw: {
  31336. height: math.unit(1.76, "feet"),
  31337. name: "Maw",
  31338. image: {
  31339. source: "./media/characters/owen/maw.svg"
  31340. }
  31341. },
  31342. },
  31343. [
  31344. {
  31345. name: "Normal",
  31346. height: math.unit(8, "feet"),
  31347. default: true
  31348. },
  31349. ]
  31350. ))
  31351. characterMakers.push(() => makeCharacter(
  31352. { name: "Ryth", species: ["gremlin", "zorgoia"], tags: ["anthro", "feral"] },
  31353. {
  31354. front: {
  31355. height: math.unit(4, "feet"),
  31356. weight: math.unit(400, "lb"),
  31357. name: "Front",
  31358. image: {
  31359. source: "./media/characters/ryth/front.svg",
  31360. extra: 876/691,
  31361. bottom: 25/901
  31362. }
  31363. },
  31364. goia: {
  31365. height: math.unit(12, "feet"),
  31366. weight: math.unit(10800, "lb"),
  31367. name: "Goia",
  31368. image: {
  31369. source: "./media/characters/ryth/goia.svg",
  31370. extra: 3450/3198,
  31371. bottom: 61/3511
  31372. }
  31373. },
  31374. },
  31375. [
  31376. {
  31377. name: "Normal",
  31378. height: math.unit(4, "feet"),
  31379. default: true
  31380. },
  31381. ]
  31382. ))
  31383. characterMakers.push(() => makeCharacter(
  31384. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31385. {
  31386. front: {
  31387. height: math.unit(7, "feet"),
  31388. weight: math.unit(180, "lb"),
  31389. name: "Front",
  31390. image: {
  31391. source: "./media/characters/necrolance/front.svg",
  31392. extra: 1062/947,
  31393. bottom: 41/1103
  31394. }
  31395. },
  31396. back: {
  31397. height: math.unit(7, "feet"),
  31398. weight: math.unit(180, "lb"),
  31399. name: "Back",
  31400. image: {
  31401. source: "./media/characters/necrolance/back.svg",
  31402. extra: 1045/984,
  31403. bottom: 14/1059
  31404. }
  31405. },
  31406. wing: {
  31407. height: math.unit(2.67, "feet"),
  31408. name: "Wing",
  31409. image: {
  31410. source: "./media/characters/necrolance/wing.svg"
  31411. }
  31412. },
  31413. },
  31414. [
  31415. {
  31416. name: "Normal",
  31417. height: math.unit(7, "feet"),
  31418. default: true
  31419. },
  31420. ]
  31421. ))
  31422. characterMakers.push(() => makeCharacter(
  31423. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31424. {
  31425. front: {
  31426. height: math.unit(76, "meters"),
  31427. weight: math.unit(30000, "tons"),
  31428. name: "Front",
  31429. image: {
  31430. source: "./media/characters/tyler/front.svg",
  31431. extra: 1640/1640,
  31432. bottom: 114/1754
  31433. }
  31434. },
  31435. },
  31436. [
  31437. {
  31438. name: "Macro",
  31439. height: math.unit(76, "meters"),
  31440. default: true
  31441. },
  31442. ]
  31443. ))
  31444. characterMakers.push(() => makeCharacter(
  31445. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31446. {
  31447. front: {
  31448. height: math.unit(4 + 11/12, "feet"),
  31449. weight: math.unit(132, "lb"),
  31450. name: "Front",
  31451. image: {
  31452. source: "./media/characters/icey/front.svg",
  31453. extra: 2750/2550,
  31454. bottom: 33/2783
  31455. }
  31456. },
  31457. back: {
  31458. height: math.unit(4 + 11/12, "feet"),
  31459. weight: math.unit(132, "lb"),
  31460. name: "Back",
  31461. image: {
  31462. source: "./media/characters/icey/back.svg",
  31463. extra: 2624/2481,
  31464. bottom: 35/2659
  31465. }
  31466. },
  31467. },
  31468. [
  31469. {
  31470. name: "Normal",
  31471. height: math.unit(4 + 11/12, "feet"),
  31472. default: true
  31473. },
  31474. ]
  31475. ))
  31476. characterMakers.push(() => makeCharacter(
  31477. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31478. {
  31479. front: {
  31480. height: math.unit(100, "feet"),
  31481. weight: math.unit(0, "lb"),
  31482. name: "Front",
  31483. image: {
  31484. source: "./media/characters/smile/front.svg",
  31485. extra: 2983/2912,
  31486. bottom: 162/3145
  31487. }
  31488. },
  31489. back: {
  31490. height: math.unit(100, "feet"),
  31491. weight: math.unit(0, "lb"),
  31492. name: "Back",
  31493. image: {
  31494. source: "./media/characters/smile/back.svg",
  31495. extra: 3143/3031,
  31496. bottom: 91/3234
  31497. }
  31498. },
  31499. head: {
  31500. height: math.unit(26.3, "feet"),
  31501. weight: math.unit(0, "lb"),
  31502. name: "Head",
  31503. image: {
  31504. source: "./media/characters/smile/head.svg"
  31505. }
  31506. },
  31507. collar: {
  31508. height: math.unit(5.3, "feet"),
  31509. weight: math.unit(0, "lb"),
  31510. name: "Collar",
  31511. image: {
  31512. source: "./media/characters/smile/collar.svg"
  31513. }
  31514. },
  31515. },
  31516. [
  31517. {
  31518. name: "Macro",
  31519. height: math.unit(100, "feet"),
  31520. default: true
  31521. },
  31522. ]
  31523. ))
  31524. characterMakers.push(() => makeCharacter(
  31525. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31526. {
  31527. dragon: {
  31528. height: math.unit(26, "feet"),
  31529. weight: math.unit(36, "tons"),
  31530. name: "Dragon",
  31531. image: {
  31532. source: "./media/characters/arimphae/dragon.svg",
  31533. extra: 1574/983,
  31534. bottom: 357/1931
  31535. }
  31536. },
  31537. drake: {
  31538. height: math.unit(9, "feet"),
  31539. weight: math.unit(1.5, "tons"),
  31540. name: "Drake",
  31541. image: {
  31542. source: "./media/characters/arimphae/drake.svg",
  31543. extra: 1120/925,
  31544. bottom: 435/1555
  31545. }
  31546. },
  31547. },
  31548. [
  31549. {
  31550. name: "Small",
  31551. height: math.unit(26*5/9, "feet")
  31552. },
  31553. {
  31554. name: "Normal",
  31555. height: math.unit(26, "feet"),
  31556. default: true
  31557. },
  31558. ]
  31559. ))
  31560. characterMakers.push(() => makeCharacter(
  31561. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31562. {
  31563. front: {
  31564. height: math.unit(8 + 9/12, "feet"),
  31565. name: "Front",
  31566. image: {
  31567. source: "./media/characters/xander/front.svg",
  31568. extra: 848/673,
  31569. bottom: 62/910
  31570. }
  31571. },
  31572. },
  31573. [
  31574. {
  31575. name: "Normal",
  31576. height: math.unit(8 + 9/12, "feet"),
  31577. default: true
  31578. },
  31579. {
  31580. name: "Gaze Grabber",
  31581. height: math.unit(13 + 8/12, "feet")
  31582. },
  31583. {
  31584. name: "Jaw Dropper",
  31585. height: math.unit(27, "feet")
  31586. },
  31587. {
  31588. name: "Show Stopper",
  31589. height: math.unit(136, "feet")
  31590. },
  31591. {
  31592. name: "Superstar",
  31593. height: math.unit(1.9e6, "miles")
  31594. },
  31595. ]
  31596. ))
  31597. characterMakers.push(() => makeCharacter(
  31598. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31599. {
  31600. side: {
  31601. height: math.unit(2100, "feet"),
  31602. name: "Side",
  31603. image: {
  31604. source: "./media/characters/osiris/side.svg",
  31605. extra: 1105/939,
  31606. bottom: 167/1272
  31607. }
  31608. },
  31609. },
  31610. [
  31611. {
  31612. name: "Macro",
  31613. height: math.unit(2100, "feet"),
  31614. default: true
  31615. },
  31616. ]
  31617. ))
  31618. characterMakers.push(() => makeCharacter(
  31619. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31620. {
  31621. front: {
  31622. height: math.unit(6 + 8/12, "feet"),
  31623. weight: math.unit(225, "lb"),
  31624. name: "Front",
  31625. image: {
  31626. source: "./media/characters/rhys-londe/front.svg",
  31627. extra: 2258/2141,
  31628. bottom: 188/2446
  31629. }
  31630. },
  31631. back: {
  31632. height: math.unit(6 + 8/12, "feet"),
  31633. weight: math.unit(225, "lb"),
  31634. name: "Back",
  31635. image: {
  31636. source: "./media/characters/rhys-londe/back.svg",
  31637. extra: 2237/2137,
  31638. bottom: 63/2300
  31639. }
  31640. },
  31641. frontNsfw: {
  31642. height: math.unit(6 + 8/12, "feet"),
  31643. weight: math.unit(225, "lb"),
  31644. name: "Front (NSFW)",
  31645. image: {
  31646. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31647. extra: 2258/2141,
  31648. bottom: 188/2446
  31649. }
  31650. },
  31651. backNsfw: {
  31652. height: math.unit(6 + 8/12, "feet"),
  31653. weight: math.unit(225, "lb"),
  31654. name: "Back (NSFW)",
  31655. image: {
  31656. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31657. extra: 2237/2137,
  31658. bottom: 63/2300
  31659. }
  31660. },
  31661. dick: {
  31662. height: math.unit(30, "inches"),
  31663. name: "Dick",
  31664. image: {
  31665. source: "./media/characters/rhys-londe/dick.svg"
  31666. }
  31667. },
  31668. maw: {
  31669. height: math.unit(1.6, "feet"),
  31670. name: "Maw",
  31671. image: {
  31672. source: "./media/characters/rhys-londe/maw.svg"
  31673. }
  31674. },
  31675. },
  31676. [
  31677. {
  31678. name: "Normal",
  31679. height: math.unit(6 + 8/12, "feet"),
  31680. default: true
  31681. },
  31682. ]
  31683. ))
  31684. characterMakers.push(() => makeCharacter(
  31685. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31686. {
  31687. front: {
  31688. height: math.unit(3 + 10/12, "feet"),
  31689. weight: math.unit(90, "lb"),
  31690. name: "Front",
  31691. image: {
  31692. source: "./media/characters/taivas-ensim/front.svg",
  31693. extra: 1327/1216,
  31694. bottom: 96/1423
  31695. }
  31696. },
  31697. back: {
  31698. height: math.unit(3 + 10/12, "feet"),
  31699. weight: math.unit(90, "lb"),
  31700. name: "Back",
  31701. image: {
  31702. source: "./media/characters/taivas-ensim/back.svg",
  31703. extra: 1355/1247,
  31704. bottom: 11/1366
  31705. }
  31706. },
  31707. frontNsfw: {
  31708. height: math.unit(3 + 10/12, "feet"),
  31709. weight: math.unit(90, "lb"),
  31710. name: "Front (NSFW)",
  31711. image: {
  31712. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31713. extra: 1327/1216,
  31714. bottom: 96/1423
  31715. }
  31716. },
  31717. backNsfw: {
  31718. height: math.unit(3 + 10/12, "feet"),
  31719. weight: math.unit(90, "lb"),
  31720. name: "Back (NSFW)",
  31721. image: {
  31722. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31723. extra: 1355/1247,
  31724. bottom: 11/1366
  31725. }
  31726. },
  31727. },
  31728. [
  31729. {
  31730. name: "Normal",
  31731. height: math.unit(3 + 10/12, "feet"),
  31732. default: true
  31733. },
  31734. ]
  31735. ))
  31736. characterMakers.push(() => makeCharacter(
  31737. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31738. {
  31739. front: {
  31740. height: math.unit(9 + 6/12, "feet"),
  31741. weight: math.unit(940, "lb"),
  31742. name: "Front",
  31743. image: {
  31744. source: "./media/characters/byliss/front.svg",
  31745. extra: 1327/1290,
  31746. bottom: 82/1409
  31747. }
  31748. },
  31749. back: {
  31750. height: math.unit(9 + 6/12, "feet"),
  31751. weight: math.unit(940, "lb"),
  31752. name: "Back",
  31753. image: {
  31754. source: "./media/characters/byliss/back.svg",
  31755. extra: 1376/1349,
  31756. bottom: 9/1385
  31757. }
  31758. },
  31759. frontNsfw: {
  31760. height: math.unit(9 + 6/12, "feet"),
  31761. weight: math.unit(940, "lb"),
  31762. name: "Front (NSFW)",
  31763. image: {
  31764. source: "./media/characters/byliss/front-nsfw.svg",
  31765. extra: 1327/1290,
  31766. bottom: 82/1409
  31767. }
  31768. },
  31769. backNsfw: {
  31770. height: math.unit(9 + 6/12, "feet"),
  31771. weight: math.unit(940, "lb"),
  31772. name: "Back (NSFW)",
  31773. image: {
  31774. source: "./media/characters/byliss/back-nsfw.svg",
  31775. extra: 1376/1349,
  31776. bottom: 9/1385
  31777. }
  31778. },
  31779. },
  31780. [
  31781. {
  31782. name: "Normal",
  31783. height: math.unit(9 + 6/12, "feet"),
  31784. default: true
  31785. },
  31786. ]
  31787. ))
  31788. characterMakers.push(() => makeCharacter(
  31789. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31790. {
  31791. front: {
  31792. height: math.unit(5 + 2/12, "feet"),
  31793. weight: math.unit(200, "lb"),
  31794. name: "Front",
  31795. image: {
  31796. source: "./media/characters/noraly/front.svg",
  31797. extra: 4985/4773,
  31798. bottom: 150/5135
  31799. }
  31800. },
  31801. full: {
  31802. height: math.unit(5 + 2/12, "feet"),
  31803. weight: math.unit(164, "lb"),
  31804. name: "Full",
  31805. image: {
  31806. source: "./media/characters/noraly/full.svg",
  31807. extra: 1114/1059,
  31808. bottom: 35/1149
  31809. }
  31810. },
  31811. fuller: {
  31812. height: math.unit(5 + 2/12, "feet"),
  31813. weight: math.unit(230, "lb"),
  31814. name: "Fuller",
  31815. image: {
  31816. source: "./media/characters/noraly/fuller.svg",
  31817. extra: 1114/1059,
  31818. bottom: 35/1149
  31819. }
  31820. },
  31821. fullest: {
  31822. height: math.unit(5 + 2/12, "feet"),
  31823. weight: math.unit(300, "lb"),
  31824. name: "Fullest",
  31825. image: {
  31826. source: "./media/characters/noraly/fullest.svg",
  31827. extra: 1114/1059,
  31828. bottom: 35/1149
  31829. }
  31830. },
  31831. },
  31832. [
  31833. {
  31834. name: "Normal",
  31835. height: math.unit(5 + 2/12, "feet"),
  31836. default: true
  31837. },
  31838. ]
  31839. ))
  31840. characterMakers.push(() => makeCharacter(
  31841. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31842. {
  31843. front: {
  31844. height: math.unit(5 + 2/12, "feet"),
  31845. weight: math.unit(210, "lb"),
  31846. name: "Front",
  31847. image: {
  31848. source: "./media/characters/pera/front.svg",
  31849. extra: 1560/1531,
  31850. bottom: 165/1725
  31851. }
  31852. },
  31853. back: {
  31854. height: math.unit(5 + 2/12, "feet"),
  31855. weight: math.unit(210, "lb"),
  31856. name: "Back",
  31857. image: {
  31858. source: "./media/characters/pera/back.svg",
  31859. extra: 1523/1493,
  31860. bottom: 152/1675
  31861. }
  31862. },
  31863. dick: {
  31864. height: math.unit(2.4, "feet"),
  31865. name: "Dick",
  31866. image: {
  31867. source: "./media/characters/pera/dick.svg"
  31868. }
  31869. },
  31870. },
  31871. [
  31872. {
  31873. name: "Normal",
  31874. height: math.unit(5 + 2/12, "feet"),
  31875. default: true
  31876. },
  31877. ]
  31878. ))
  31879. characterMakers.push(() => makeCharacter(
  31880. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31881. {
  31882. front: {
  31883. height: math.unit(12, "feet"),
  31884. weight: math.unit(3200, "lb"),
  31885. name: "Front",
  31886. image: {
  31887. source: "./media/characters/julian/front.svg",
  31888. extra: 2962/2701,
  31889. bottom: 184/3146
  31890. }
  31891. },
  31892. maw: {
  31893. height: math.unit(5.35, "feet"),
  31894. name: "Maw",
  31895. image: {
  31896. source: "./media/characters/julian/maw.svg"
  31897. }
  31898. },
  31899. paw: {
  31900. height: math.unit(3.07, "feet"),
  31901. name: "Paw",
  31902. image: {
  31903. source: "./media/characters/julian/paw.svg"
  31904. }
  31905. },
  31906. },
  31907. [
  31908. {
  31909. name: "Default",
  31910. height: math.unit(12, "feet"),
  31911. default: true
  31912. },
  31913. {
  31914. name: "Big",
  31915. height: math.unit(50, "feet")
  31916. },
  31917. {
  31918. name: "Really Big",
  31919. height: math.unit(1, "mile")
  31920. },
  31921. {
  31922. name: "Extremely Big",
  31923. height: math.unit(100, "miles")
  31924. },
  31925. {
  31926. name: "Planet Hugger",
  31927. height: math.unit(200, "megameters")
  31928. },
  31929. {
  31930. name: "Unreasonably Big",
  31931. height: math.unit(1e300, "meters")
  31932. },
  31933. ]
  31934. ))
  31935. characterMakers.push(() => makeCharacter(
  31936. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31937. {
  31938. solgooleo: {
  31939. height: math.unit(4, "meters"),
  31940. weight: math.unit(6000*1.5, "kg"),
  31941. volume: math.unit(6000, "liters"),
  31942. name: "Solgooleo",
  31943. image: {
  31944. source: "./media/characters/pi/solgooleo.svg",
  31945. extra: 388/331,
  31946. bottom: 29/417
  31947. }
  31948. },
  31949. },
  31950. [
  31951. {
  31952. name: "Normal",
  31953. height: math.unit(4, "meters"),
  31954. default: true
  31955. },
  31956. ]
  31957. ))
  31958. characterMakers.push(() => makeCharacter(
  31959. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31960. {
  31961. front: {
  31962. height: math.unit(8 + 2/12, "feet"),
  31963. weight: math.unit(4, "tons"),
  31964. name: "Front",
  31965. image: {
  31966. source: "./media/characters/shaun/front.svg",
  31967. extra: 1550/1505,
  31968. bottom: 353/1903
  31969. }
  31970. },
  31971. },
  31972. [
  31973. {
  31974. name: "Lorg",
  31975. height: math.unit(8 + 2/12, "feet"),
  31976. default: true
  31977. },
  31978. ]
  31979. ))
  31980. characterMakers.push(() => makeCharacter(
  31981. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31982. {
  31983. front: {
  31984. height: math.unit(7, "feet"),
  31985. name: "Front",
  31986. image: {
  31987. source: "./media/characters/sini/front.svg",
  31988. extra: 726/678,
  31989. bottom: 35/761
  31990. }
  31991. },
  31992. back: {
  31993. height: math.unit(7, "feet"),
  31994. name: "Back",
  31995. image: {
  31996. source: "./media/characters/sini/back.svg",
  31997. extra: 743/701,
  31998. bottom: 12/755
  31999. }
  32000. },
  32001. mawAnthro: {
  32002. height: math.unit(2.14, "feet"),
  32003. name: "Maw (Anthro)",
  32004. image: {
  32005. source: "./media/characters/sini/maw-anthro.svg"
  32006. }
  32007. },
  32008. dick: {
  32009. height: math.unit(1.45, "feet"),
  32010. name: "Dick (Anthro)",
  32011. image: {
  32012. source: "./media/characters/sini/dick-anthro.svg"
  32013. }
  32014. },
  32015. feral: {
  32016. height: math.unit(13, "feet"),
  32017. name: "Feral",
  32018. image: {
  32019. source: "./media/characters/sini/feral.svg",
  32020. extra: 814/605,
  32021. bottom: 11/825
  32022. }
  32023. },
  32024. mawFeral: {
  32025. height: math.unit(4.6, "feet"),
  32026. name: "Maw-feral",
  32027. image: {
  32028. source: "./media/characters/sini/maw-feral.svg"
  32029. }
  32030. },
  32031. footFeral: {
  32032. height: math.unit(4.2, "feet"),
  32033. name: "Foot-feral",
  32034. image: {
  32035. source: "./media/characters/sini/foot-feral.svg"
  32036. }
  32037. },
  32038. },
  32039. [
  32040. {
  32041. name: "Normal",
  32042. height: math.unit(7, "feet"),
  32043. default: true
  32044. },
  32045. ]
  32046. ))
  32047. characterMakers.push(() => makeCharacter(
  32048. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32049. {
  32050. side: {
  32051. height: math.unit(13, "meters"),
  32052. weight: math.unit(9072, "kg"),
  32053. name: "Side",
  32054. image: {
  32055. source: "./media/characters/raylldo/side.svg",
  32056. extra: 403/344,
  32057. bottom: 42/445
  32058. }
  32059. },
  32060. leaping: {
  32061. height: math.unit(12.3, "meters"),
  32062. weight: math.unit(9072, "kg"),
  32063. name: "Leaping",
  32064. image: {
  32065. source: "./media/characters/raylldo/leaping.svg",
  32066. extra: 470/249,
  32067. bottom: 13/483
  32068. }
  32069. },
  32070. flying: {
  32071. height: math.unit(18, "meters"),
  32072. weight: math.unit(9072, "kg"),
  32073. name: "Flying",
  32074. image: {
  32075. source: "./media/characters/raylldo/flying.svg"
  32076. }
  32077. },
  32078. head: {
  32079. height: math.unit(5.85, "meters"),
  32080. name: "Head",
  32081. image: {
  32082. source: "./media/characters/raylldo/head.svg"
  32083. }
  32084. },
  32085. maw: {
  32086. height: math.unit(5.32, "meters"),
  32087. name: "Maw",
  32088. image: {
  32089. source: "./media/characters/raylldo/maw.svg"
  32090. }
  32091. },
  32092. eye: {
  32093. height: math.unit(0.54, "meters"),
  32094. name: "Eye",
  32095. image: {
  32096. source: "./media/characters/raylldo/eye.svg"
  32097. }
  32098. },
  32099. },
  32100. [
  32101. {
  32102. name: "Normal",
  32103. height: math.unit(13, "meters"),
  32104. default: true
  32105. },
  32106. ]
  32107. ))
  32108. characterMakers.push(() => makeCharacter(
  32109. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32110. {
  32111. anthroFront: {
  32112. height: math.unit(9, "feet"),
  32113. weight: math.unit(600, "lb"),
  32114. name: "Anthro (Front)",
  32115. image: {
  32116. source: "./media/characters/glint/anthro-front.svg",
  32117. extra: 1097/1018,
  32118. bottom: 28/1125
  32119. }
  32120. },
  32121. anthroBack: {
  32122. height: math.unit(9, "feet"),
  32123. weight: math.unit(600, "lb"),
  32124. name: "Anthro (Back)",
  32125. image: {
  32126. source: "./media/characters/glint/anthro-back.svg",
  32127. extra: 1154/997,
  32128. bottom: 36/1190
  32129. }
  32130. },
  32131. feral: {
  32132. height: math.unit(11, "feet"),
  32133. weight: math.unit(50000, "lb"),
  32134. name: "Feral",
  32135. image: {
  32136. source: "./media/characters/glint/feral.svg",
  32137. extra: 3035/1585,
  32138. bottom: 1169/4204
  32139. }
  32140. },
  32141. dickAnthro: {
  32142. height: math.unit(0.7, "meters"),
  32143. name: "Dick (Anthro)",
  32144. image: {
  32145. source: "./media/characters/glint/dick-anthro.svg"
  32146. }
  32147. },
  32148. dickFeral: {
  32149. height: math.unit(2.65, "meters"),
  32150. name: "Dick (Feral)",
  32151. image: {
  32152. source: "./media/characters/glint/dick-feral.svg"
  32153. }
  32154. },
  32155. slitHidden: {
  32156. height: math.unit(5.85, "meters"),
  32157. name: "Slit (Hidden)",
  32158. image: {
  32159. source: "./media/characters/glint/slit-hidden.svg"
  32160. }
  32161. },
  32162. slitErect: {
  32163. height: math.unit(5.85, "meters"),
  32164. name: "Slit (Erect)",
  32165. image: {
  32166. source: "./media/characters/glint/slit-erect.svg"
  32167. }
  32168. },
  32169. mawAnthro: {
  32170. height: math.unit(0.63, "meters"),
  32171. name: "Maw (Anthro)",
  32172. image: {
  32173. source: "./media/characters/glint/maw.svg"
  32174. }
  32175. },
  32176. mawFeral: {
  32177. height: math.unit(2.89, "meters"),
  32178. name: "Maw (Feral)",
  32179. image: {
  32180. source: "./media/characters/glint/maw.svg"
  32181. }
  32182. },
  32183. },
  32184. [
  32185. {
  32186. name: "Normal",
  32187. height: math.unit(9, "feet"),
  32188. default: true
  32189. },
  32190. ]
  32191. ))
  32192. characterMakers.push(() => makeCharacter(
  32193. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32194. {
  32195. side: {
  32196. height: math.unit(15, "feet"),
  32197. weight: math.unit(5000, "kg"),
  32198. name: "Side",
  32199. image: {
  32200. source: "./media/characters/kairne/side.svg",
  32201. extra: 979/811,
  32202. bottom: 13/992
  32203. }
  32204. },
  32205. front: {
  32206. height: math.unit(15, "feet"),
  32207. weight: math.unit(5000, "kg"),
  32208. name: "Front",
  32209. image: {
  32210. source: "./media/characters/kairne/front.svg",
  32211. extra: 908/814,
  32212. bottom: 26/934
  32213. }
  32214. },
  32215. sideNsfw: {
  32216. height: math.unit(15, "feet"),
  32217. weight: math.unit(5000, "kg"),
  32218. name: "Side (NSFW)",
  32219. image: {
  32220. source: "./media/characters/kairne/side-nsfw.svg",
  32221. extra: 979/811,
  32222. bottom: 13/992
  32223. }
  32224. },
  32225. frontNsfw: {
  32226. height: math.unit(15, "feet"),
  32227. weight: math.unit(5000, "kg"),
  32228. name: "Front (NSFW)",
  32229. image: {
  32230. source: "./media/characters/kairne/front-nsfw.svg",
  32231. extra: 908/814,
  32232. bottom: 26/934
  32233. }
  32234. },
  32235. dickCaged: {
  32236. height: math.unit(0.65, "meters"),
  32237. name: "Dick-caged",
  32238. image: {
  32239. source: "./media/characters/kairne/dick-caged.svg"
  32240. }
  32241. },
  32242. dick: {
  32243. height: math.unit(0.79, "meters"),
  32244. name: "Dick",
  32245. image: {
  32246. source: "./media/characters/kairne/dick.svg"
  32247. }
  32248. },
  32249. genitals: {
  32250. height: math.unit(1.29, "meters"),
  32251. name: "Genitals",
  32252. image: {
  32253. source: "./media/characters/kairne/genitals.svg"
  32254. }
  32255. },
  32256. maw: {
  32257. height: math.unit(1.73, "meters"),
  32258. name: "Maw",
  32259. image: {
  32260. source: "./media/characters/kairne/maw.svg"
  32261. }
  32262. },
  32263. },
  32264. [
  32265. {
  32266. name: "Normal",
  32267. height: math.unit(15, "feet"),
  32268. default: true
  32269. },
  32270. ]
  32271. ))
  32272. characterMakers.push(() => makeCharacter(
  32273. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32274. {
  32275. front: {
  32276. height: math.unit(5 + 8/12, "feet"),
  32277. weight: math.unit(139, "lb"),
  32278. name: "Front",
  32279. image: {
  32280. source: "./media/characters/biscuit-jackal/front.svg",
  32281. extra: 2106/1961,
  32282. bottom: 58/2164
  32283. }
  32284. },
  32285. back: {
  32286. height: math.unit(5 + 8/12, "feet"),
  32287. weight: math.unit(139, "lb"),
  32288. name: "Back",
  32289. image: {
  32290. source: "./media/characters/biscuit-jackal/back.svg",
  32291. extra: 2132/1976,
  32292. bottom: 57/2189
  32293. }
  32294. },
  32295. werejackal: {
  32296. height: math.unit(6 + 3/12, "feet"),
  32297. weight: math.unit(188, "lb"),
  32298. name: "Werejackal",
  32299. image: {
  32300. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32301. extra: 2373/2178,
  32302. bottom: 53/2426
  32303. }
  32304. },
  32305. },
  32306. [
  32307. {
  32308. name: "Normal",
  32309. height: math.unit(5 + 8/12, "feet"),
  32310. default: true
  32311. },
  32312. ]
  32313. ))
  32314. characterMakers.push(() => makeCharacter(
  32315. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32316. {
  32317. front: {
  32318. height: math.unit(140, "cm"),
  32319. weight: math.unit(45, "kg"),
  32320. name: "Front",
  32321. image: {
  32322. source: "./media/characters/tayra-white/front.svg",
  32323. extra: 2229/2192,
  32324. bottom: 75/2304
  32325. }
  32326. },
  32327. },
  32328. [
  32329. {
  32330. name: "Normal",
  32331. height: math.unit(140, "cm"),
  32332. default: true
  32333. },
  32334. ]
  32335. ))
  32336. characterMakers.push(() => makeCharacter(
  32337. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32338. {
  32339. front: {
  32340. height: math.unit(4 + 5/12, "feet"),
  32341. name: "Front",
  32342. image: {
  32343. source: "./media/characters/scoop/front.svg",
  32344. extra: 1257/1136,
  32345. bottom: 69/1326
  32346. }
  32347. },
  32348. back: {
  32349. height: math.unit(4 + 5/12, "feet"),
  32350. name: "Back",
  32351. image: {
  32352. source: "./media/characters/scoop/back.svg",
  32353. extra: 1321/1152,
  32354. bottom: 32/1353
  32355. }
  32356. },
  32357. maw: {
  32358. height: math.unit(0.68, "feet"),
  32359. name: "Maw",
  32360. image: {
  32361. source: "./media/characters/scoop/maw.svg"
  32362. }
  32363. },
  32364. },
  32365. [
  32366. {
  32367. name: "Really Small",
  32368. height: math.unit(1, "mm")
  32369. },
  32370. {
  32371. name: "Micro",
  32372. height: math.unit(1, "inch")
  32373. },
  32374. {
  32375. name: "Normal",
  32376. height: math.unit(4 + 5/12, "feet"),
  32377. default: true
  32378. },
  32379. {
  32380. name: "Macro",
  32381. height: math.unit(200, "feet")
  32382. },
  32383. {
  32384. name: "Megamacro",
  32385. height: math.unit(3240, "feet")
  32386. },
  32387. {
  32388. name: "Teramacro",
  32389. height: math.unit(2500, "miles")
  32390. },
  32391. ]
  32392. ))
  32393. characterMakers.push(() => makeCharacter(
  32394. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32395. {
  32396. front: {
  32397. height: math.unit(15 + 7/12, "feet"),
  32398. name: "Front",
  32399. image: {
  32400. source: "./media/characters/saphinara/front.svg",
  32401. extra: 604/546,
  32402. bottom: 19/623
  32403. }
  32404. },
  32405. side: {
  32406. height: math.unit(15 + 7/12, "feet"),
  32407. name: "Side",
  32408. image: {
  32409. source: "./media/characters/saphinara/side.svg",
  32410. extra: 605/547,
  32411. bottom: 6/611
  32412. }
  32413. },
  32414. back: {
  32415. height: math.unit(15 + 7/12, "feet"),
  32416. name: "Back",
  32417. image: {
  32418. source: "./media/characters/saphinara/back.svg",
  32419. extra: 591/531,
  32420. bottom: 13/604
  32421. }
  32422. },
  32423. frontTail: {
  32424. height: math.unit(15 + 7/12, "feet"),
  32425. name: "Front (Full Tail)",
  32426. image: {
  32427. source: "./media/characters/saphinara/front-tail.svg",
  32428. extra: 748/547,
  32429. bottom: 66/814
  32430. }
  32431. },
  32432. },
  32433. [
  32434. {
  32435. name: "Normal",
  32436. height: math.unit(15 + 7/12, "feet"),
  32437. default: true
  32438. },
  32439. {
  32440. name: "Angry",
  32441. height: math.unit(30 + 6/12, "feet")
  32442. },
  32443. {
  32444. name: "Enraged",
  32445. height: math.unit(102 + 1/12, "feet")
  32446. },
  32447. ]
  32448. ))
  32449. characterMakers.push(() => makeCharacter(
  32450. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32451. {
  32452. front: {
  32453. height: math.unit(6 + 8/12, "feet"),
  32454. weight: math.unit(300, "lb"),
  32455. name: "Front",
  32456. image: {
  32457. source: "./media/characters/jrain/front.svg",
  32458. extra: 3039/2865,
  32459. bottom: 399/3438
  32460. }
  32461. },
  32462. back: {
  32463. height: math.unit(6 + 8/12, "feet"),
  32464. weight: math.unit(300, "lb"),
  32465. name: "Back",
  32466. image: {
  32467. source: "./media/characters/jrain/back.svg",
  32468. extra: 3089/2938,
  32469. bottom: 172/3261
  32470. }
  32471. },
  32472. head: {
  32473. height: math.unit(2.14, "feet"),
  32474. name: "Head",
  32475. image: {
  32476. source: "./media/characters/jrain/head.svg"
  32477. }
  32478. },
  32479. maw: {
  32480. height: math.unit(1.77, "feet"),
  32481. name: "Maw",
  32482. image: {
  32483. source: "./media/characters/jrain/maw.svg"
  32484. }
  32485. },
  32486. leftHand: {
  32487. height: math.unit(1.1, "feet"),
  32488. name: "Left Hand",
  32489. image: {
  32490. source: "./media/characters/jrain/left-hand.svg"
  32491. }
  32492. },
  32493. rightHand: {
  32494. height: math.unit(1.1, "feet"),
  32495. name: "Right Hand",
  32496. image: {
  32497. source: "./media/characters/jrain/right-hand.svg"
  32498. }
  32499. },
  32500. eye: {
  32501. height: math.unit(0.35, "feet"),
  32502. name: "Eye",
  32503. image: {
  32504. source: "./media/characters/jrain/eye.svg"
  32505. }
  32506. },
  32507. },
  32508. [
  32509. {
  32510. name: "Normal",
  32511. height: math.unit(6 + 8/12, "feet"),
  32512. default: true
  32513. },
  32514. {
  32515. name: "Casually Large",
  32516. height: math.unit(25, "feet")
  32517. },
  32518. {
  32519. name: "Giant",
  32520. height: math.unit(100, "feet")
  32521. },
  32522. {
  32523. name: "Kaiju",
  32524. height: math.unit(300, "feet")
  32525. },
  32526. ]
  32527. ))
  32528. characterMakers.push(() => makeCharacter(
  32529. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32530. {
  32531. dragon: {
  32532. height: math.unit(5, "meters"),
  32533. name: "Dragon",
  32534. image: {
  32535. source: "./media/characters/sabrina/dragon.svg",
  32536. extra: 3670 / 2365,
  32537. bottom: 333 / 4003
  32538. }
  32539. },
  32540. gryphon: {
  32541. height: math.unit(3, "meters"),
  32542. name: "Gryphon",
  32543. image: {
  32544. source: "./media/characters/sabrina/gryphon.svg",
  32545. extra: 1576 / 945,
  32546. bottom: 71 / 1647
  32547. }
  32548. },
  32549. snake: {
  32550. height: math.unit(12, "meters"),
  32551. name: "Snake",
  32552. image: {
  32553. source: "./media/characters/sabrina/snake.svg",
  32554. extra: 1758 / 1320,
  32555. bottom: 186 / 1944
  32556. }
  32557. },
  32558. collar: {
  32559. height: math.unit(1.86, "meters"),
  32560. name: "Collar",
  32561. image: {
  32562. source: "./media/characters/sabrina/collar.svg"
  32563. }
  32564. },
  32565. eye: {
  32566. height: math.unit(0.53, "meters"),
  32567. name: "Eye",
  32568. image: {
  32569. source: "./media/characters/sabrina/eye.svg"
  32570. }
  32571. },
  32572. foot: {
  32573. height: math.unit(1.86, "meters"),
  32574. name: "Foot",
  32575. image: {
  32576. source: "./media/characters/sabrina/foot.svg"
  32577. }
  32578. },
  32579. hand: {
  32580. height: math.unit(1.32, "meters"),
  32581. name: "Hand",
  32582. image: {
  32583. source: "./media/characters/sabrina/hand.svg"
  32584. }
  32585. },
  32586. head: {
  32587. height: math.unit(2.44, "meters"),
  32588. name: "Head",
  32589. image: {
  32590. source: "./media/characters/sabrina/head.svg"
  32591. }
  32592. },
  32593. headAngry: {
  32594. height: math.unit(2.44, "meters"),
  32595. name: "Head (Angry))",
  32596. image: {
  32597. source: "./media/characters/sabrina/head-angry.svg"
  32598. }
  32599. },
  32600. maw: {
  32601. height: math.unit(1.65, "meters"),
  32602. name: "Maw",
  32603. image: {
  32604. source: "./media/characters/sabrina/maw.svg"
  32605. }
  32606. },
  32607. spikes: {
  32608. height: math.unit(1.69, "meters"),
  32609. name: "Spikes",
  32610. image: {
  32611. source: "./media/characters/sabrina/spikes.svg"
  32612. }
  32613. },
  32614. stomach: {
  32615. height: math.unit(1.15, "meters"),
  32616. name: "Stomach",
  32617. image: {
  32618. source: "./media/characters/sabrina/stomach.svg"
  32619. }
  32620. },
  32621. tongue: {
  32622. height: math.unit(1.27, "meters"),
  32623. name: "Tongue",
  32624. image: {
  32625. source: "./media/characters/sabrina/tongue.svg"
  32626. }
  32627. },
  32628. wingDorsal: {
  32629. height: math.unit(4.85, "meters"),
  32630. name: "Wing (Dorsal)",
  32631. image: {
  32632. source: "./media/characters/sabrina/wing-dorsal.svg"
  32633. }
  32634. },
  32635. wingVentral: {
  32636. height: math.unit(4.85, "meters"),
  32637. name: "Wing (Ventral)",
  32638. image: {
  32639. source: "./media/characters/sabrina/wing-ventral.svg"
  32640. }
  32641. },
  32642. },
  32643. [
  32644. {
  32645. name: "Normal",
  32646. height: math.unit(5, "meters"),
  32647. default: true
  32648. },
  32649. ]
  32650. ))
  32651. characterMakers.push(() => makeCharacter(
  32652. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32653. {
  32654. frontMaid: {
  32655. height: math.unit(5 + 5/12, "feet"),
  32656. weight: math.unit(130, "lb"),
  32657. name: "Front (Maid)",
  32658. image: {
  32659. source: "./media/characters/midnight-tales/front-maid.svg",
  32660. extra: 489/454,
  32661. bottom: 61/550
  32662. }
  32663. },
  32664. frontFormal: {
  32665. height: math.unit(5 + 5/12, "feet"),
  32666. weight: math.unit(130, "lb"),
  32667. name: "Front (Formal)",
  32668. image: {
  32669. source: "./media/characters/midnight-tales/front-formal.svg",
  32670. extra: 489/454,
  32671. bottom: 61/550
  32672. }
  32673. },
  32674. back: {
  32675. height: math.unit(5 + 5/12, "feet"),
  32676. weight: math.unit(130, "lb"),
  32677. name: "Back",
  32678. image: {
  32679. source: "./media/characters/midnight-tales/back.svg",
  32680. extra: 498/456,
  32681. bottom: 33/531
  32682. }
  32683. },
  32684. frontBeast: {
  32685. height: math.unit(40, "feet"),
  32686. weight: math.unit(64000, "lb"),
  32687. name: "Front (Beast)",
  32688. image: {
  32689. source: "./media/characters/midnight-tales/front-beast.svg",
  32690. extra: 927/860,
  32691. bottom: 53/980
  32692. }
  32693. },
  32694. backBeast: {
  32695. height: math.unit(40, "feet"),
  32696. weight: math.unit(64000, "lb"),
  32697. name: "Back (Beast)",
  32698. image: {
  32699. source: "./media/characters/midnight-tales/back-beast.svg",
  32700. extra: 929/855,
  32701. bottom: 16/945
  32702. }
  32703. },
  32704. footBeast: {
  32705. height: math.unit(6.7, "feet"),
  32706. name: "Foot (Beast)",
  32707. image: {
  32708. source: "./media/characters/midnight-tales/foot-beast.svg"
  32709. }
  32710. },
  32711. headBeast: {
  32712. height: math.unit(8, "feet"),
  32713. name: "Head (Beast)",
  32714. image: {
  32715. source: "./media/characters/midnight-tales/head-beast.svg"
  32716. }
  32717. },
  32718. },
  32719. [
  32720. {
  32721. name: "Normal",
  32722. height: math.unit(5 + 5 / 12, "feet"),
  32723. default: true
  32724. },
  32725. {
  32726. name: "Macro",
  32727. height: math.unit(25, "feet")
  32728. },
  32729. ]
  32730. ))
  32731. characterMakers.push(() => makeCharacter(
  32732. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32733. {
  32734. front: {
  32735. height: math.unit(5 + 10/12, "feet"),
  32736. name: "Front",
  32737. image: {
  32738. source: "./media/characters/argon/front.svg",
  32739. extra: 2009/1935,
  32740. bottom: 118/2127
  32741. }
  32742. },
  32743. back: {
  32744. height: math.unit(5 + 10/12, "feet"),
  32745. name: "Back",
  32746. image: {
  32747. source: "./media/characters/argon/back.svg",
  32748. extra: 2047/1992,
  32749. bottom: 20/2067
  32750. }
  32751. },
  32752. frontDressed: {
  32753. height: math.unit(5 + 10/12, "feet"),
  32754. name: "Front (Dressed)",
  32755. image: {
  32756. source: "./media/characters/argon/front-dressed.svg",
  32757. extra: 2009/1935,
  32758. bottom: 118/2127
  32759. }
  32760. },
  32761. },
  32762. [
  32763. {
  32764. name: "Normal",
  32765. height: math.unit(5 + 10/12, "feet"),
  32766. default: true
  32767. },
  32768. ]
  32769. ))
  32770. characterMakers.push(() => makeCharacter(
  32771. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32772. {
  32773. front: {
  32774. height: math.unit(8 + 6/12, "feet"),
  32775. weight: math.unit(1150, "lb"),
  32776. name: "Front",
  32777. image: {
  32778. source: "./media/characters/kichi/front.svg",
  32779. extra: 1267/1164,
  32780. bottom: 61/1328
  32781. }
  32782. },
  32783. back: {
  32784. height: math.unit(8 + 6/12, "feet"),
  32785. weight: math.unit(1150, "lb"),
  32786. name: "Back",
  32787. image: {
  32788. source: "./media/characters/kichi/back.svg",
  32789. extra: 1273/1166,
  32790. bottom: 33/1306
  32791. }
  32792. },
  32793. },
  32794. [
  32795. {
  32796. name: "Normal",
  32797. height: math.unit(8 + 6/12, "feet"),
  32798. default: true
  32799. },
  32800. ]
  32801. ))
  32802. characterMakers.push(() => makeCharacter(
  32803. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32804. {
  32805. front: {
  32806. height: math.unit(6, "feet"),
  32807. weight: math.unit(210, "lb"),
  32808. name: "Front",
  32809. image: {
  32810. source: "./media/characters/manetel-greyscale/front.svg",
  32811. extra: 350/312,
  32812. bottom: 8/358
  32813. }
  32814. },
  32815. },
  32816. [
  32817. {
  32818. name: "Micro",
  32819. height: math.unit(2, "inches")
  32820. },
  32821. {
  32822. name: "Normal",
  32823. height: math.unit(6, "feet"),
  32824. default: true
  32825. },
  32826. {
  32827. name: "Minimacro",
  32828. height: math.unit(17, "feet")
  32829. },
  32830. {
  32831. name: "Macro",
  32832. height: math.unit(117, "feet")
  32833. },
  32834. ]
  32835. ))
  32836. characterMakers.push(() => makeCharacter(
  32837. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32838. {
  32839. side: {
  32840. height: math.unit(5 + 1/12, "feet"),
  32841. weight: math.unit(418, "lb"),
  32842. name: "Side",
  32843. image: {
  32844. source: "./media/characters/softpurr/side.svg",
  32845. extra: 1993/1945,
  32846. bottom: 134/2127
  32847. }
  32848. },
  32849. front: {
  32850. height: math.unit(5 + 1/12, "feet"),
  32851. weight: math.unit(418, "lb"),
  32852. name: "Front",
  32853. image: {
  32854. source: "./media/characters/softpurr/front.svg",
  32855. extra: 1950/1856,
  32856. bottom: 174/2124
  32857. }
  32858. },
  32859. paw: {
  32860. height: math.unit(1, "feet"),
  32861. name: "Paw",
  32862. image: {
  32863. source: "./media/characters/softpurr/paw.svg"
  32864. }
  32865. },
  32866. },
  32867. [
  32868. {
  32869. name: "Normal",
  32870. height: math.unit(5 + 1/12, "feet"),
  32871. default: true
  32872. },
  32873. ]
  32874. ))
  32875. characterMakers.push(() => makeCharacter(
  32876. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32877. {
  32878. front: {
  32879. height: math.unit(260, "meters"),
  32880. name: "Front",
  32881. image: {
  32882. source: "./media/characters/anahita/front.svg",
  32883. extra: 665/635,
  32884. bottom: 89/754
  32885. }
  32886. },
  32887. },
  32888. [
  32889. {
  32890. name: "Macro",
  32891. height: math.unit(260, "meters"),
  32892. default: true
  32893. },
  32894. ]
  32895. ))
  32896. characterMakers.push(() => makeCharacter(
  32897. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32898. {
  32899. front: {
  32900. height: math.unit(4 + 10/12, "feet"),
  32901. weight: math.unit(160, "lb"),
  32902. name: "Front",
  32903. image: {
  32904. source: "./media/characters/chip-mouse/front.svg",
  32905. extra: 3528/3408,
  32906. bottom: 0/3528
  32907. }
  32908. },
  32909. frontNsfw: {
  32910. height: math.unit(4 + 10/12, "feet"),
  32911. weight: math.unit(160, "lb"),
  32912. name: "Front (NSFW)",
  32913. image: {
  32914. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32915. extra: 3528/3408,
  32916. bottom: 0/3528
  32917. }
  32918. },
  32919. },
  32920. [
  32921. {
  32922. name: "Normal",
  32923. height: math.unit(4 + 10/12, "feet"),
  32924. default: true
  32925. },
  32926. ]
  32927. ))
  32928. characterMakers.push(() => makeCharacter(
  32929. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32930. {
  32931. side: {
  32932. height: math.unit(10, "feet"),
  32933. weight: math.unit(14000, "lb"),
  32934. name: "Side",
  32935. image: {
  32936. source: "./media/characters/kremm/side.svg",
  32937. extra: 1390/1053,
  32938. bottom: 90/1480
  32939. }
  32940. },
  32941. gut: {
  32942. height: math.unit(5.8, "feet"),
  32943. name: "Gut",
  32944. image: {
  32945. source: "./media/characters/kremm/gut.svg"
  32946. }
  32947. },
  32948. ass: {
  32949. height: math.unit(6.1, "feet"),
  32950. name: "Ass",
  32951. image: {
  32952. source: "./media/characters/kremm/ass.svg"
  32953. }
  32954. },
  32955. jaws: {
  32956. height: math.unit(2.2, "feet"),
  32957. name: "Jaws",
  32958. image: {
  32959. source: "./media/characters/kremm/jaws.svg"
  32960. }
  32961. },
  32962. dick: {
  32963. height: math.unit(4.26, "feet"),
  32964. name: "Dick",
  32965. image: {
  32966. source: "./media/characters/kremm/dick.svg"
  32967. }
  32968. },
  32969. },
  32970. [
  32971. {
  32972. name: "Normal",
  32973. height: math.unit(10, "feet"),
  32974. default: true
  32975. },
  32976. ]
  32977. ))
  32978. characterMakers.push(() => makeCharacter(
  32979. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  32980. {
  32981. front: {
  32982. height: math.unit(30, "stories"),
  32983. name: "Front",
  32984. image: {
  32985. source: "./media/characters/kai/front.svg",
  32986. extra: 1892/1718,
  32987. bottom: 162/2054
  32988. }
  32989. },
  32990. },
  32991. [
  32992. {
  32993. name: "Macro",
  32994. height: math.unit(30, "stories"),
  32995. default: true
  32996. },
  32997. ]
  32998. ))
  32999. characterMakers.push(() => makeCharacter(
  33000. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  33001. {
  33002. front: {
  33003. height: math.unit(6 + 4/12, "feet"),
  33004. weight: math.unit(145, "lb"),
  33005. name: "Front",
  33006. image: {
  33007. source: "./media/characters/sykes/front.svg",
  33008. extra: 1321 / 1187,
  33009. bottom: 66 / 1387
  33010. }
  33011. },
  33012. back: {
  33013. height: math.unit(6 + 4/12, "feet"),
  33014. weight: math.unit(145, "lb"),
  33015. name: "Back",
  33016. image: {
  33017. source: "./media/characters/sykes/back.svg",
  33018. extra: 1326/1181,
  33019. bottom: 31/1357
  33020. }
  33021. },
  33022. handBack: {
  33023. height: math.unit(0.9, "feet"),
  33024. name: "Hand (Back)",
  33025. image: {
  33026. source: "./media/characters/sykes/hand-back.svg"
  33027. }
  33028. },
  33029. handFront: {
  33030. height: math.unit(0.839, "feet"),
  33031. name: "Hand (Front)",
  33032. image: {
  33033. source: "./media/characters/sykes/hand-front.svg"
  33034. }
  33035. },
  33036. leftFoot: {
  33037. height: math.unit(1.2, "feet"),
  33038. name: "Foot (Left)",
  33039. image: {
  33040. source: "./media/characters/sykes/foot-left.svg"
  33041. }
  33042. },
  33043. rightFoot: {
  33044. height: math.unit(1.2, "feet"),
  33045. name: "Foot (Right)",
  33046. image: {
  33047. source: "./media/characters/sykes/foot-right.svg"
  33048. }
  33049. },
  33050. maw: {
  33051. height: math.unit(1.93, "feet"),
  33052. name: "Maw",
  33053. image: {
  33054. source: "./media/characters/sykes/maw.svg"
  33055. }
  33056. },
  33057. teeth: {
  33058. height: math.unit(0.51, "feet"),
  33059. name: "Teeth",
  33060. image: {
  33061. source: "./media/characters/sykes/teeth.svg"
  33062. }
  33063. },
  33064. tongue: {
  33065. height: math.unit(2.13, "feet"),
  33066. name: "Tongue",
  33067. image: {
  33068. source: "./media/characters/sykes/tongue.svg"
  33069. }
  33070. },
  33071. uvula: {
  33072. height: math.unit(0.16, "feet"),
  33073. name: "Uvula",
  33074. image: {
  33075. source: "./media/characters/sykes/uvula.svg"
  33076. }
  33077. },
  33078. collar: {
  33079. height: math.unit(0.287, "feet"),
  33080. name: "Collar",
  33081. image: {
  33082. source: "./media/characters/sykes/collar.svg"
  33083. }
  33084. },
  33085. },
  33086. [
  33087. {
  33088. name: "Shrunken",
  33089. height: math.unit(5, "inches")
  33090. },
  33091. {
  33092. name: "Normal",
  33093. height: math.unit(6 + 4 / 12, "feet"),
  33094. default: true
  33095. },
  33096. {
  33097. name: "Big",
  33098. height: math.unit(15, "feet")
  33099. },
  33100. ]
  33101. ))
  33102. characterMakers.push(() => makeCharacter(
  33103. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33104. {
  33105. front: {
  33106. height: math.unit(5 + 8/12, "feet"),
  33107. weight: math.unit(190, "lb"),
  33108. name: "Front",
  33109. image: {
  33110. source: "./media/characters/oven-otter/front.svg",
  33111. extra: 1809/1740,
  33112. bottom: 181/1990
  33113. }
  33114. },
  33115. back: {
  33116. height: math.unit(5 + 8/12, "feet"),
  33117. weight: math.unit(190, "lb"),
  33118. name: "Back",
  33119. image: {
  33120. source: "./media/characters/oven-otter/back.svg",
  33121. extra: 1709/1635,
  33122. bottom: 118/1827
  33123. }
  33124. },
  33125. hand: {
  33126. height: math.unit(1.07, "feet"),
  33127. name: "Hand",
  33128. image: {
  33129. source: "./media/characters/oven-otter/hand.svg"
  33130. }
  33131. },
  33132. beans: {
  33133. height: math.unit(1.74, "feet"),
  33134. name: "Beans",
  33135. image: {
  33136. source: "./media/characters/oven-otter/beans.svg"
  33137. }
  33138. },
  33139. },
  33140. [
  33141. {
  33142. name: "Micro",
  33143. height: math.unit(0.5, "inches")
  33144. },
  33145. {
  33146. name: "Normal",
  33147. height: math.unit(5 + 8/12, "feet"),
  33148. default: true
  33149. },
  33150. {
  33151. name: "Macro",
  33152. height: math.unit(250, "feet")
  33153. },
  33154. {
  33155. name: "Really High",
  33156. height: math.unit(420, "feet")
  33157. },
  33158. ]
  33159. ))
  33160. characterMakers.push(() => makeCharacter(
  33161. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33162. {
  33163. front: {
  33164. height: math.unit(5, "meters"),
  33165. weight: math.unit(292000000000000, "kg"),
  33166. name: "Front",
  33167. image: {
  33168. source: "./media/characters/devourer/front.svg",
  33169. extra: 1800/1733,
  33170. bottom: 211/2011
  33171. }
  33172. },
  33173. maw: {
  33174. height: math.unit(1.1, "meter"),
  33175. name: "Maw",
  33176. image: {
  33177. source: "./media/characters/devourer/maw.svg"
  33178. }
  33179. },
  33180. },
  33181. [
  33182. {
  33183. name: "Small",
  33184. height: math.unit(3, "meters")
  33185. },
  33186. {
  33187. name: "Large",
  33188. height: math.unit(5, "meters"),
  33189. default: true
  33190. },
  33191. ]
  33192. ))
  33193. characterMakers.push(() => makeCharacter(
  33194. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33195. {
  33196. front: {
  33197. height: math.unit(6, "feet"),
  33198. weight: math.unit(400, "lb"),
  33199. name: "Front",
  33200. image: {
  33201. source: "./media/characters/ellarby/front.svg",
  33202. extra: 1909/1763,
  33203. bottom: 80/1989
  33204. }
  33205. },
  33206. back: {
  33207. height: math.unit(6, "feet"),
  33208. weight: math.unit(400, "lb"),
  33209. name: "Back",
  33210. image: {
  33211. source: "./media/characters/ellarby/back.svg",
  33212. extra: 1914/1784,
  33213. bottom: 172/2086
  33214. }
  33215. },
  33216. },
  33217. [
  33218. {
  33219. name: "Mischief",
  33220. height: math.unit(18, "inches")
  33221. },
  33222. {
  33223. name: "Trouble",
  33224. height: math.unit(12, "feet")
  33225. },
  33226. {
  33227. name: "Havoc",
  33228. height: math.unit(200, "feet"),
  33229. default: true
  33230. },
  33231. {
  33232. name: "Pandemonium",
  33233. height: math.unit(1, "mile")
  33234. },
  33235. {
  33236. name: "Catastrophe",
  33237. height: math.unit(100, "miles")
  33238. },
  33239. ]
  33240. ))
  33241. characterMakers.push(() => makeCharacter(
  33242. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33243. {
  33244. front: {
  33245. height: math.unit(4.7, "meters"),
  33246. weight: math.unit(6500, "kg"),
  33247. name: "Front",
  33248. image: {
  33249. source: "./media/characters/vex/front.svg",
  33250. extra: 1288/1140,
  33251. bottom: 100/1388
  33252. }
  33253. },
  33254. },
  33255. [
  33256. {
  33257. name: "Normal",
  33258. height: math.unit(4.7, "meters"),
  33259. default: true
  33260. },
  33261. ]
  33262. ))
  33263. characterMakers.push(() => makeCharacter(
  33264. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33265. {
  33266. normal: {
  33267. height: math.unit(6, "feet"),
  33268. weight: math.unit(350, "lb"),
  33269. name: "Normal",
  33270. image: {
  33271. source: "./media/characters/teshy/normal.svg",
  33272. extra: 1795/1735,
  33273. bottom: 16/1811
  33274. }
  33275. },
  33276. monsterFront: {
  33277. height: math.unit(12, "feet"),
  33278. weight: math.unit(4700, "lb"),
  33279. name: "Monster (Front)",
  33280. image: {
  33281. source: "./media/characters/teshy/monster-front.svg",
  33282. extra: 2042/2034,
  33283. bottom: 128/2170
  33284. }
  33285. },
  33286. monsterSide: {
  33287. height: math.unit(12, "feet"),
  33288. weight: math.unit(4700, "lb"),
  33289. name: "Monster (Side)",
  33290. image: {
  33291. source: "./media/characters/teshy/monster-side.svg",
  33292. extra: 2067/2056,
  33293. bottom: 70/2137
  33294. }
  33295. },
  33296. monsterBack: {
  33297. height: math.unit(12, "feet"),
  33298. weight: math.unit(4700, "lb"),
  33299. name: "Monster (Back)",
  33300. image: {
  33301. source: "./media/characters/teshy/monster-back.svg",
  33302. extra: 1921/1914,
  33303. bottom: 171/2092
  33304. }
  33305. },
  33306. },
  33307. [
  33308. {
  33309. name: "Normal",
  33310. height: math.unit(6, "feet"),
  33311. default: true
  33312. },
  33313. ]
  33314. ))
  33315. characterMakers.push(() => makeCharacter(
  33316. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33317. {
  33318. front: {
  33319. height: math.unit(6, "feet"),
  33320. name: "Front",
  33321. image: {
  33322. source: "./media/characters/ramey/front.svg",
  33323. extra: 790/787,
  33324. bottom: 27/817
  33325. }
  33326. },
  33327. },
  33328. [
  33329. {
  33330. name: "Normal",
  33331. height: math.unit(6, "feet"),
  33332. default: true
  33333. },
  33334. ]
  33335. ))
  33336. characterMakers.push(() => makeCharacter(
  33337. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33338. {
  33339. front: {
  33340. height: math.unit(5 + 5/12, "feet"),
  33341. weight: math.unit(120, "lb"),
  33342. name: "Front",
  33343. image: {
  33344. source: "./media/characters/phirae/front.svg",
  33345. extra: 2491/2436,
  33346. bottom: 38/2529
  33347. }
  33348. },
  33349. },
  33350. [
  33351. {
  33352. name: "Normal",
  33353. height: math.unit(5 + 5/12, "feet"),
  33354. default: true
  33355. },
  33356. ]
  33357. ))
  33358. characterMakers.push(() => makeCharacter(
  33359. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33360. {
  33361. front: {
  33362. height: math.unit(6, "feet"),
  33363. weight: math.unit(150, "lb"),
  33364. name: "Front",
  33365. image: {
  33366. source: "./media/characters/stagglas/front.svg",
  33367. extra: 962/882,
  33368. bottom: 53/1015
  33369. }
  33370. },
  33371. },
  33372. [
  33373. {
  33374. name: "Normal",
  33375. height: math.unit(5 + 3/12, "feet"),
  33376. default: true
  33377. },
  33378. ]
  33379. ))
  33380. characterMakers.push(() => makeCharacter(
  33381. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33382. {
  33383. front: {
  33384. height: math.unit(5 + 4/12, "feet"),
  33385. weight: math.unit(145, "lb"),
  33386. name: "Front",
  33387. image: {
  33388. source: "./media/characters/starra/front.svg",
  33389. extra: 1790/1691,
  33390. bottom: 91/1881
  33391. }
  33392. },
  33393. },
  33394. [
  33395. {
  33396. name: "Normal",
  33397. height: math.unit(5 + 4/12, "feet"),
  33398. default: true
  33399. },
  33400. ]
  33401. ))
  33402. characterMakers.push(() => makeCharacter(
  33403. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33404. {
  33405. front: {
  33406. height: math.unit(2.2, "meters"),
  33407. name: "Front",
  33408. image: {
  33409. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33410. extra: 1194/1005,
  33411. bottom: 25/1219
  33412. }
  33413. },
  33414. },
  33415. [
  33416. {
  33417. name: "Normal",
  33418. height: math.unit(2.2, "meters"),
  33419. default: true
  33420. },
  33421. ]
  33422. ))
  33423. characterMakers.push(() => makeCharacter(
  33424. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33425. {
  33426. side: {
  33427. height: math.unit(8 + 2/12, "feet"),
  33428. weight: math.unit(1240, "lb"),
  33429. name: "Side",
  33430. image: {
  33431. source: "./media/characters/mika-valentine/side.svg",
  33432. extra: 2670/2501,
  33433. bottom: 250/2920
  33434. }
  33435. },
  33436. },
  33437. [
  33438. {
  33439. name: "Normal",
  33440. height: math.unit(8 + 2/12, "feet"),
  33441. default: true
  33442. },
  33443. ]
  33444. ))
  33445. characterMakers.push(() => makeCharacter(
  33446. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33447. {
  33448. front: {
  33449. height: math.unit(7 + 2/12, "feet"),
  33450. name: "Front",
  33451. image: {
  33452. source: "./media/characters/xoltol/front.svg",
  33453. extra: 2212/2124,
  33454. bottom: 84/2296
  33455. }
  33456. },
  33457. side: {
  33458. height: math.unit(7 + 2/12, "feet"),
  33459. name: "Side",
  33460. image: {
  33461. source: "./media/characters/xoltol/side.svg",
  33462. extra: 2273/2197,
  33463. bottom: 26/2299
  33464. }
  33465. },
  33466. hand: {
  33467. height: math.unit(2.5, "feet"),
  33468. name: "Hand",
  33469. image: {
  33470. source: "./media/characters/xoltol/hand.svg"
  33471. }
  33472. },
  33473. },
  33474. [
  33475. {
  33476. name: "Small-ish",
  33477. height: math.unit(5 + 11/12, "feet")
  33478. },
  33479. {
  33480. name: "Normal",
  33481. height: math.unit(7 + 2/12, "feet")
  33482. },
  33483. {
  33484. name: "\"Macro\"",
  33485. height: math.unit(14 + 9/12, "feet"),
  33486. default: true
  33487. },
  33488. {
  33489. name: "Alternate Height",
  33490. height: math.unit(20, "feet")
  33491. },
  33492. {
  33493. name: "Actually Macro",
  33494. height: math.unit(100, "feet")
  33495. },
  33496. ]
  33497. ))
  33498. characterMakers.push(() => makeCharacter(
  33499. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33500. {
  33501. front: {
  33502. height: math.unit(5 + 2/12, "feet"),
  33503. name: "Front",
  33504. image: {
  33505. source: "./media/characters/kotetsu-redwood/front.svg",
  33506. extra: 1053/942,
  33507. bottom: 60/1113
  33508. }
  33509. },
  33510. },
  33511. [
  33512. {
  33513. name: "Normal",
  33514. height: math.unit(5 + 2/12, "feet"),
  33515. default: true
  33516. },
  33517. ]
  33518. ))
  33519. characterMakers.push(() => makeCharacter(
  33520. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33521. {
  33522. front: {
  33523. height: math.unit(2.4, "meters"),
  33524. weight: math.unit(125, "kg"),
  33525. name: "Front",
  33526. image: {
  33527. source: "./media/characters/lilith/front.svg",
  33528. extra: 1590/1513,
  33529. bottom: 203/1793
  33530. }
  33531. },
  33532. },
  33533. [
  33534. {
  33535. name: "Humanoid",
  33536. height: math.unit(2.4, "meters")
  33537. },
  33538. {
  33539. name: "Normal",
  33540. height: math.unit(6, "meters"),
  33541. default: true
  33542. },
  33543. {
  33544. name: "Largest",
  33545. height: math.unit(55, "meters")
  33546. },
  33547. ]
  33548. ))
  33549. characterMakers.push(() => makeCharacter(
  33550. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33551. {
  33552. front: {
  33553. height: math.unit(8 + 4/12, "feet"),
  33554. weight: math.unit(535, "lb"),
  33555. name: "Front",
  33556. image: {
  33557. source: "./media/characters/beh'kah-bolger/front.svg",
  33558. extra: 1660/1603,
  33559. bottom: 37/1697
  33560. }
  33561. },
  33562. },
  33563. [
  33564. {
  33565. name: "Normal",
  33566. height: math.unit(8 + 4/12, "feet"),
  33567. default: true
  33568. },
  33569. {
  33570. name: "Kaiju",
  33571. height: math.unit(250, "feet")
  33572. },
  33573. {
  33574. name: "Still Growing",
  33575. height: math.unit(10, "miles")
  33576. },
  33577. {
  33578. name: "Continental",
  33579. height: math.unit(5000, "miles")
  33580. },
  33581. {
  33582. name: "Final Form",
  33583. height: math.unit(2500000, "miles")
  33584. },
  33585. ]
  33586. ))
  33587. characterMakers.push(() => makeCharacter(
  33588. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33589. {
  33590. front: {
  33591. height: math.unit(7 + 2/12, "feet"),
  33592. weight: math.unit(230, "kg"),
  33593. name: "Front",
  33594. image: {
  33595. source: "./media/characters/tatyana-milewska/front.svg",
  33596. extra: 1199/1150,
  33597. bottom: 86/1285
  33598. }
  33599. },
  33600. },
  33601. [
  33602. {
  33603. name: "Normal",
  33604. height: math.unit(7 + 2/12, "feet"),
  33605. default: true
  33606. },
  33607. {
  33608. name: "Big",
  33609. height: math.unit(12, "feet")
  33610. },
  33611. {
  33612. name: "Minimacro",
  33613. height: math.unit(20, "feet")
  33614. },
  33615. {
  33616. name: "Macro",
  33617. height: math.unit(120, "feet")
  33618. },
  33619. ]
  33620. ))
  33621. characterMakers.push(() => makeCharacter(
  33622. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33623. {
  33624. front: {
  33625. height: math.unit(7 + 8/12, "feet"),
  33626. weight: math.unit(152, "kg"),
  33627. name: "Front",
  33628. image: {
  33629. source: "./media/characters/helen-arri/front.svg",
  33630. extra: 440/423,
  33631. bottom: 14/454
  33632. }
  33633. },
  33634. back: {
  33635. height: math.unit(7 + 8/12, "feet"),
  33636. weight: math.unit(152, "kg"),
  33637. name: "Back",
  33638. image: {
  33639. source: "./media/characters/helen-arri/back.svg",
  33640. extra: 443/426,
  33641. bottom: 8/451
  33642. }
  33643. },
  33644. },
  33645. [
  33646. {
  33647. name: "Normal",
  33648. height: math.unit(7 + 8/12, "feet"),
  33649. default: true
  33650. },
  33651. {
  33652. name: "Big",
  33653. height: math.unit(14, "feet")
  33654. },
  33655. {
  33656. name: "Minimacro",
  33657. height: math.unit(24, "feet")
  33658. },
  33659. {
  33660. name: "Macro",
  33661. height: math.unit(140, "feet")
  33662. },
  33663. ]
  33664. ))
  33665. characterMakers.push(() => makeCharacter(
  33666. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33667. {
  33668. front: {
  33669. height: math.unit(6, "meters"),
  33670. name: "Front",
  33671. image: {
  33672. source: "./media/characters/ehanu-rehu/front.svg",
  33673. extra: 1800/1800,
  33674. bottom: 59/1859
  33675. }
  33676. },
  33677. },
  33678. [
  33679. {
  33680. name: "Normal",
  33681. height: math.unit(6, "meters"),
  33682. default: true
  33683. },
  33684. ]
  33685. ))
  33686. characterMakers.push(() => makeCharacter(
  33687. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33688. {
  33689. front: {
  33690. height: math.unit(7 + 3/12, "feet"),
  33691. name: "Front",
  33692. image: {
  33693. source: "./media/characters/renholder/front.svg",
  33694. extra: 3096/2960,
  33695. bottom: 250/3346
  33696. }
  33697. },
  33698. },
  33699. [
  33700. {
  33701. name: "Normal Bat",
  33702. height: math.unit(7 + 3/12, "feet"),
  33703. default: true
  33704. },
  33705. {
  33706. name: "Slightly Tall Bat",
  33707. height: math.unit(100, "feet")
  33708. },
  33709. {
  33710. name: "Big Bat",
  33711. height: math.unit(1000, "feet")
  33712. },
  33713. {
  33714. name: "City-Sized Bat",
  33715. height: math.unit(200000, "feet")
  33716. },
  33717. {
  33718. name: "Bigger Bat",
  33719. height: math.unit(10000, "miles")
  33720. },
  33721. {
  33722. name: "Solar Sized Bat",
  33723. height: math.unit(100, "AU")
  33724. },
  33725. {
  33726. name: "Galactic Bat",
  33727. height: math.unit(200000, "lightyears")
  33728. },
  33729. {
  33730. name: "Universally Known Bat",
  33731. height: math.unit(1, "universe")
  33732. },
  33733. ]
  33734. ))
  33735. characterMakers.push(() => makeCharacter(
  33736. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33737. {
  33738. front: {
  33739. height: math.unit(6 + 11/12, "feet"),
  33740. weight: math.unit(250, "lb"),
  33741. name: "Front",
  33742. image: {
  33743. source: "./media/characters/cookiecat/front.svg",
  33744. extra: 893/827,
  33745. bottom: 14/907
  33746. }
  33747. },
  33748. },
  33749. [
  33750. {
  33751. name: "Micro",
  33752. height: math.unit(3, "inches")
  33753. },
  33754. {
  33755. name: "Normal",
  33756. height: math.unit(6 + 11/12, "feet"),
  33757. default: true
  33758. },
  33759. {
  33760. name: "Macro",
  33761. height: math.unit(100, "feet")
  33762. },
  33763. {
  33764. name: "Macro+",
  33765. height: math.unit(404, "feet")
  33766. },
  33767. {
  33768. name: "Megamacro",
  33769. height: math.unit(165, "miles")
  33770. },
  33771. {
  33772. name: "Planetary",
  33773. height: math.unit(4600, "miles")
  33774. },
  33775. ]
  33776. ))
  33777. characterMakers.push(() => makeCharacter(
  33778. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33779. {
  33780. front: {
  33781. height: math.unit(10 + 3/12, "feet"),
  33782. weight: math.unit(1500, "lb"),
  33783. name: "Front",
  33784. image: {
  33785. source: "./media/characters/tux-kusanagi/front.svg",
  33786. extra: 944/840,
  33787. bottom: 39/983
  33788. }
  33789. },
  33790. back: {
  33791. height: math.unit(10 + 3/12, "feet"),
  33792. weight: math.unit(1500, "lb"),
  33793. name: "Back",
  33794. image: {
  33795. source: "./media/characters/tux-kusanagi/back.svg",
  33796. extra: 941/842,
  33797. bottom: 28/969
  33798. }
  33799. },
  33800. rump: {
  33801. height: math.unit(5.25, "feet"),
  33802. name: "Rump",
  33803. image: {
  33804. source: "./media/characters/tux-kusanagi/rump.svg"
  33805. }
  33806. },
  33807. beak: {
  33808. height: math.unit(1.54, "feet"),
  33809. name: "Beak",
  33810. image: {
  33811. source: "./media/characters/tux-kusanagi/beak.svg"
  33812. }
  33813. },
  33814. },
  33815. [
  33816. {
  33817. name: "Normal",
  33818. height: math.unit(10 + 3/12, "feet"),
  33819. default: true
  33820. },
  33821. ]
  33822. ))
  33823. characterMakers.push(() => makeCharacter(
  33824. { name: "Uzarmazari", species: ["amtsvane"], tags: ["anthro"] },
  33825. {
  33826. front: {
  33827. height: math.unit(58, "feet"),
  33828. weight: math.unit(200, "tons"),
  33829. name: "Front",
  33830. image: {
  33831. source: "./media/characters/uzarmazari/front.svg",
  33832. extra: 1575/1455,
  33833. bottom: 152/1727
  33834. }
  33835. },
  33836. back: {
  33837. height: math.unit(58, "feet"),
  33838. weight: math.unit(200, "tons"),
  33839. name: "Back",
  33840. image: {
  33841. source: "./media/characters/uzarmazari/back.svg",
  33842. extra: 1585/1510,
  33843. bottom: 157/1742
  33844. }
  33845. },
  33846. head: {
  33847. height: math.unit(26, "feet"),
  33848. name: "Head",
  33849. image: {
  33850. source: "./media/characters/uzarmazari/head.svg"
  33851. }
  33852. },
  33853. },
  33854. [
  33855. {
  33856. name: "Normal",
  33857. height: math.unit(58, "feet"),
  33858. default: true
  33859. },
  33860. ]
  33861. ))
  33862. characterMakers.push(() => makeCharacter(
  33863. { name: "Akitu", species: ["kigavi"], tags: ["feral"] },
  33864. {
  33865. side: {
  33866. height: math.unit(15, "feet"),
  33867. name: "Side",
  33868. image: {
  33869. source: "./media/characters/akitu/side.svg",
  33870. extra: 1421/1321,
  33871. bottom: 157/1578
  33872. }
  33873. },
  33874. front: {
  33875. height: math.unit(15, "feet"),
  33876. name: "Front",
  33877. image: {
  33878. source: "./media/characters/akitu/front.svg",
  33879. extra: 1435/1326,
  33880. bottom: 232/1667
  33881. }
  33882. },
  33883. },
  33884. [
  33885. {
  33886. name: "Normal",
  33887. height: math.unit(15, "feet"),
  33888. default: true
  33889. },
  33890. ]
  33891. ))
  33892. characterMakers.push(() => makeCharacter(
  33893. { name: "Azalie Croixland", species: ["gryphon"], tags: ["anthro"] },
  33894. {
  33895. front: {
  33896. height: math.unit(10 + 8/12, "feet"),
  33897. name: "Front",
  33898. image: {
  33899. source: "./media/characters/azalie-croixland/front.svg",
  33900. extra: 1972/1856,
  33901. bottom: 31/2003
  33902. }
  33903. },
  33904. },
  33905. [
  33906. {
  33907. name: "Original Height",
  33908. height: math.unit(5 + 4/12, "feet")
  33909. },
  33910. {
  33911. name: "Normal Height",
  33912. height: math.unit(10 + 8/12, "feet"),
  33913. default: true
  33914. },
  33915. ]
  33916. ))
  33917. characterMakers.push(() => makeCharacter(
  33918. { name: "Kavus Kazian", species: ["turian"], tags: ["anthro"] },
  33919. {
  33920. side: {
  33921. height: math.unit(7 + 1/12, "feet"),
  33922. weight: math.unit(245, "lb"),
  33923. name: "Side",
  33924. image: {
  33925. source: "./media/characters/kavus-kazian/side.svg",
  33926. extra: 349/342,
  33927. bottom: 15/364
  33928. }
  33929. },
  33930. },
  33931. [
  33932. {
  33933. name: "Normal",
  33934. height: math.unit(7 + 1/12, "feet"),
  33935. default: true
  33936. },
  33937. ]
  33938. ))
  33939. characterMakers.push(() => makeCharacter(
  33940. { name: "Moonlight Rose", species: ["eevee"], tags: ["anthro"] },
  33941. {
  33942. normal: {
  33943. height: math.unit(5 + 11/12, "feet"),
  33944. name: "Normal",
  33945. image: {
  33946. source: "./media/characters/moonlight-rose/normal.svg",
  33947. extra: 1979/1835,
  33948. bottom: 14/1993
  33949. }
  33950. },
  33951. demon: {
  33952. height: math.unit(5, "km"),
  33953. name: "Demon",
  33954. image: {
  33955. source: "./media/characters/moonlight-rose/demon.svg",
  33956. extra: 986/916,
  33957. bottom: 28/1014
  33958. }
  33959. },
  33960. },
  33961. [
  33962. {
  33963. name: "\"Natural\" height",
  33964. height: math.unit(5 + 11/12, "feet")
  33965. },
  33966. {
  33967. name: "Comfortable Size",
  33968. height: math.unit(40, "meters")
  33969. },
  33970. {
  33971. name: "Common Size",
  33972. height: math.unit(50, "km"),
  33973. default: true
  33974. },
  33975. {
  33976. name: "Demonic",
  33977. height: math.unit(1.24415e+21, "meters")
  33978. },
  33979. ]
  33980. ))
  33981. characterMakers.push(() => makeCharacter(
  33982. { name: "Huckle", species: ["dragon"], tags: ["anthro"] },
  33983. {
  33984. front: {
  33985. height: math.unit(16, "feet"),
  33986. weight: math.unit(610, "kg"),
  33987. name: "Front",
  33988. image: {
  33989. source: "./media/characters/huckle/front.svg",
  33990. extra: 1731/1625,
  33991. bottom: 33/1764
  33992. }
  33993. },
  33994. back: {
  33995. height: math.unit(16, "feet"),
  33996. weight: math.unit(610, "kg"),
  33997. name: "Back",
  33998. image: {
  33999. source: "./media/characters/huckle/back.svg",
  34000. extra: 1738/1651,
  34001. bottom: 37/1775
  34002. }
  34003. },
  34004. laughing: {
  34005. height: math.unit(3.75, "feet"),
  34006. name: "Laughing",
  34007. image: {
  34008. source: "./media/characters/huckle/laughing.svg"
  34009. }
  34010. },
  34011. angry: {
  34012. height: math.unit(4.15, "feet"),
  34013. name: "Angry",
  34014. image: {
  34015. source: "./media/characters/huckle/angry.svg"
  34016. }
  34017. },
  34018. },
  34019. [
  34020. {
  34021. name: "Normal",
  34022. height: math.unit(16, "feet"),
  34023. default: true
  34024. },
  34025. {
  34026. name: "Mini Macro",
  34027. height: math.unit(463, "feet")
  34028. },
  34029. {
  34030. name: "Macro",
  34031. height: math.unit(1680, "meters")
  34032. },
  34033. {
  34034. name: "Mega Macro",
  34035. height: math.unit(175, "km")
  34036. },
  34037. {
  34038. name: "Terra Macro",
  34039. height: math.unit(32, "gigameters")
  34040. },
  34041. {
  34042. name: "Multiverse+",
  34043. height: math.unit(2.56e23, "yottameters")
  34044. },
  34045. ]
  34046. ))
  34047. characterMakers.push(() => makeCharacter(
  34048. { name: "Candy", species: ["zeraora"], tags: ["anthro"] },
  34049. {
  34050. front: {
  34051. height: math.unit(6 + 9/12, "feet"),
  34052. weight: math.unit(280, "lb"),
  34053. name: "Front",
  34054. image: {
  34055. source: "./media/characters/candy/front.svg",
  34056. extra: 234/217,
  34057. bottom: 11/245
  34058. }
  34059. },
  34060. },
  34061. [
  34062. {
  34063. name: "Really Small",
  34064. height: math.unit(0.1, "nm")
  34065. },
  34066. {
  34067. name: "Micro",
  34068. height: math.unit(2, "inches")
  34069. },
  34070. {
  34071. name: "Normal",
  34072. height: math.unit(6 + 9/12, "feet"),
  34073. default: true
  34074. },
  34075. {
  34076. name: "Small Macro",
  34077. height: math.unit(69, "feet")
  34078. },
  34079. {
  34080. name: "Macro",
  34081. height: math.unit(160, "feet")
  34082. },
  34083. {
  34084. name: "Megamacro",
  34085. height: math.unit(22000, "miles")
  34086. },
  34087. {
  34088. name: "Gigamacro",
  34089. height: math.unit(50000, "miles")
  34090. },
  34091. ]
  34092. ))
  34093. characterMakers.push(() => makeCharacter(
  34094. { name: "Joey McDonald", species: ["rabbit"], tags: ["anthro"] },
  34095. {
  34096. front: {
  34097. height: math.unit(4, "feet"),
  34098. weight: math.unit(90, "lb"),
  34099. name: "Front",
  34100. image: {
  34101. source: "./media/characters/joey-mcdonald/front.svg",
  34102. extra: 1059/852,
  34103. bottom: 33/1092
  34104. }
  34105. },
  34106. back: {
  34107. height: math.unit(4, "feet"),
  34108. weight: math.unit(90, "lb"),
  34109. name: "Back",
  34110. image: {
  34111. source: "./media/characters/joey-mcdonald/back.svg",
  34112. extra: 1077/879,
  34113. bottom: 5/1082
  34114. }
  34115. },
  34116. },
  34117. [
  34118. {
  34119. name: "Normal",
  34120. height: math.unit(4, "feet"),
  34121. default: true
  34122. },
  34123. ]
  34124. ))
  34125. characterMakers.push(() => makeCharacter(
  34126. { name: "Kass Lockheed", species: ["dragon"], tags: ["anthro"] },
  34127. {
  34128. front: {
  34129. height: math.unit(12 + 6/12, "feet"),
  34130. name: "Front",
  34131. image: {
  34132. source: "./media/characters/kass-lockheed/front.svg",
  34133. extra: 354/343,
  34134. bottom: 9/363
  34135. }
  34136. },
  34137. back: {
  34138. height: math.unit(12 + 6/12, "feet"),
  34139. name: "Back",
  34140. image: {
  34141. source: "./media/characters/kass-lockheed/back.svg",
  34142. extra: 364/352,
  34143. bottom: 3/367
  34144. }
  34145. },
  34146. dick: {
  34147. height: math.unit(3.12, "feet"),
  34148. name: "Dick",
  34149. image: {
  34150. source: "./media/characters/kass-lockheed/dick.svg"
  34151. }
  34152. },
  34153. head: {
  34154. height: math.unit(2.6, "feet"),
  34155. name: "Head",
  34156. image: {
  34157. source: "./media/characters/kass-lockheed/head.svg"
  34158. }
  34159. },
  34160. bleh: {
  34161. height: math.unit(2.85, "feet"),
  34162. name: "Bleh",
  34163. image: {
  34164. source: "./media/characters/kass-lockheed/bleh.svg"
  34165. }
  34166. },
  34167. smug: {
  34168. height: math.unit(2.85, "feet"),
  34169. name: "Smug",
  34170. image: {
  34171. source: "./media/characters/kass-lockheed/smug.svg"
  34172. }
  34173. },
  34174. },
  34175. [
  34176. {
  34177. name: "Normal",
  34178. height: math.unit(12 + 6/12, "feet"),
  34179. default: true
  34180. },
  34181. ]
  34182. ))
  34183. characterMakers.push(() => makeCharacter(
  34184. { name: "Taylor", species: ["rabbit"], tags: ["anthro"] },
  34185. {
  34186. front: {
  34187. height: math.unit(6 + 2/12, "feet"),
  34188. name: "Front",
  34189. image: {
  34190. source: "./media/characters/taylor/front.svg",
  34191. extra: 639/495,
  34192. bottom: 12/651
  34193. }
  34194. },
  34195. },
  34196. [
  34197. {
  34198. name: "Normal",
  34199. height: math.unit(6 + 2/12, "feet"),
  34200. default: true
  34201. },
  34202. {
  34203. name: "Big",
  34204. height: math.unit(15, "feet")
  34205. },
  34206. {
  34207. name: "Lorg",
  34208. height: math.unit(80, "feet")
  34209. },
  34210. {
  34211. name: "Too Lorg",
  34212. height: math.unit(120, "feet")
  34213. },
  34214. ]
  34215. ))
  34216. characterMakers.push(() => makeCharacter(
  34217. { name: "Kaizer", species: ["demon"], tags: ["anthro"] },
  34218. {
  34219. front: {
  34220. height: math.unit(15, "feet"),
  34221. name: "Front",
  34222. image: {
  34223. source: "./media/characters/kaizer/front.svg",
  34224. extra: 1612/1436,
  34225. bottom: 43/1655
  34226. }
  34227. },
  34228. },
  34229. [
  34230. {
  34231. name: "Normal",
  34232. height: math.unit(15, "feet"),
  34233. default: true
  34234. },
  34235. ]
  34236. ))
  34237. characterMakers.push(() => makeCharacter(
  34238. { name: "Sandy", species: ["sandshrew"], tags: ["anthro"] },
  34239. {
  34240. front: {
  34241. height: math.unit(2, "feet"),
  34242. weight: math.unit(30, "lb"),
  34243. name: "Front",
  34244. image: {
  34245. source: "./media/characters/sandy/front.svg",
  34246. extra: 1439/1307,
  34247. bottom: 194/1633
  34248. }
  34249. },
  34250. },
  34251. [
  34252. {
  34253. name: "Normal",
  34254. height: math.unit(2, "feet"),
  34255. default: true
  34256. },
  34257. ]
  34258. ))
  34259. characterMakers.push(() => makeCharacter(
  34260. { name: "Mellvi", species: ["imp"], tags: ["anthro"] },
  34261. {
  34262. front: {
  34263. height: math.unit(3, "feet"),
  34264. name: "Front",
  34265. image: {
  34266. source: "./media/characters/mellvi/front.svg",
  34267. extra: 1831/1630,
  34268. bottom: 58/1889
  34269. }
  34270. },
  34271. },
  34272. [
  34273. {
  34274. name: "Normal",
  34275. height: math.unit(3, "feet"),
  34276. default: true
  34277. },
  34278. ]
  34279. ))
  34280. characterMakers.push(() => makeCharacter(
  34281. { name: "Shirou", species: ["dragon"], tags: ["anthro"] },
  34282. {
  34283. front: {
  34284. height: math.unit(5 + 11/12, "feet"),
  34285. weight: math.unit(200, "lb"),
  34286. name: "Front",
  34287. image: {
  34288. source: "./media/characters/shirou/front.svg",
  34289. extra: 2491/2383,
  34290. bottom: 189/2680
  34291. }
  34292. },
  34293. back: {
  34294. height: math.unit(5 + 11/12, "feet"),
  34295. weight: math.unit(200, "lb"),
  34296. name: "Back",
  34297. image: {
  34298. source: "./media/characters/shirou/back.svg",
  34299. extra: 2554/2450,
  34300. bottom: 76/2630
  34301. }
  34302. },
  34303. },
  34304. [
  34305. {
  34306. name: "Normal",
  34307. height: math.unit(5 + 11/12, "feet"),
  34308. default: true
  34309. },
  34310. ]
  34311. ))
  34312. characterMakers.push(() => makeCharacter(
  34313. { name: "Noryu", species: ["protogen"], tags: ["anthro"] },
  34314. {
  34315. front: {
  34316. height: math.unit(6 + 3/12, "feet"),
  34317. weight: math.unit(177, "lb"),
  34318. name: "Front",
  34319. image: {
  34320. source: "./media/characters/noryu/front.svg",
  34321. extra: 973/885,
  34322. bottom: 10/983
  34323. }
  34324. },
  34325. },
  34326. [
  34327. {
  34328. name: "Normal",
  34329. height: math.unit(6 + 3/12, "feet"),
  34330. default: true
  34331. },
  34332. ]
  34333. ))
  34334. characterMakers.push(() => makeCharacter(
  34335. { name: "Mevolas Rubenido", species: ["carbuncle"], tags: ["anthro"] },
  34336. {
  34337. front: {
  34338. height: math.unit(5 + 6/12, "feet"),
  34339. weight: math.unit(170, "lb"),
  34340. name: "Front",
  34341. image: {
  34342. source: "./media/characters/mevolas-rubenido/front.svg",
  34343. extra: 2109/1901,
  34344. bottom: 96/2205
  34345. }
  34346. },
  34347. },
  34348. [
  34349. {
  34350. name: "Normal",
  34351. height: math.unit(5 + 6/12, "feet"),
  34352. default: true
  34353. },
  34354. ]
  34355. ))
  34356. //characters
  34357. function makeCharacters() {
  34358. const results = [];
  34359. characterMakers.forEach(character => {
  34360. results.push(character());
  34361. });
  34362. return results;
  34363. }