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

34647 строки
871 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. }
  1512. //species
  1513. function getSpeciesInfo(speciesList) {
  1514. let result = new Set();
  1515. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1516. result.add(entry)
  1517. });
  1518. return Array.from(result);
  1519. };
  1520. function getSpeciesInfoHelper(species) {
  1521. if (!speciesData[species]) {
  1522. console.warn(species + " doesn't exist");
  1523. return [];
  1524. }
  1525. if (speciesData[species].parents) {
  1526. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1527. } else {
  1528. return [species];
  1529. }
  1530. }
  1531. characterMakers.push(() => makeCharacter(
  1532. {
  1533. name: "Fen",
  1534. species: ["crux"],
  1535. description: {
  1536. title: "Bio",
  1537. text: "Very furry. Sheds on everything."
  1538. },
  1539. tags: [
  1540. "anthro",
  1541. "goo"
  1542. ]
  1543. },
  1544. {
  1545. back: {
  1546. height: math.unit(2.2428, "meter"),
  1547. weight: math.unit(124.738, "kg"),
  1548. name: "Back",
  1549. image: {
  1550. source: "./media/characters/fen/back.svg",
  1551. extra: 2024 / 1867,
  1552. bottom: 13 / 2037
  1553. },
  1554. info: {
  1555. description: {
  1556. mode: "append",
  1557. text: "\n\nHe is not currently looking at you."
  1558. }
  1559. }
  1560. },
  1561. full: {
  1562. height: math.unit(1.34, "meter"),
  1563. weight: math.unit(225, "kg"),
  1564. name: "Full",
  1565. image: {
  1566. source: "./media/characters/fen/full.svg"
  1567. },
  1568. info: {
  1569. description: {
  1570. mode: "append",
  1571. text: "\n\nMunch."
  1572. }
  1573. }
  1574. },
  1575. kneeling: {
  1576. height: math.unit(5.4, "feet"),
  1577. weight: math.unit(124.738, "kg"),
  1578. name: "Kneeling",
  1579. image: {
  1580. source: "./media/characters/fen/kneeling.svg",
  1581. extra: 563 / 507
  1582. }
  1583. },
  1584. goo: {
  1585. height: math.unit(2.8, "feet"),
  1586. weight: math.unit(125, "kg"),
  1587. capacity: math.unit(1, "people"),
  1588. name: "Goo",
  1589. image: {
  1590. source: "./media/characters/fen/goo.svg",
  1591. bottom: 116 / 613
  1592. }
  1593. },
  1594. lounging: {
  1595. height: math.unit(6.5, "feet"),
  1596. weight: math.unit(125, "kg"),
  1597. name: "Lounging",
  1598. image: {
  1599. source: "./media/characters/fen/lounging.svg"
  1600. }
  1601. },
  1602. },
  1603. [
  1604. {
  1605. name: "Normal",
  1606. height: math.unit(2.2428, "meter")
  1607. },
  1608. {
  1609. name: "Big",
  1610. height: math.unit(12, "feet")
  1611. },
  1612. {
  1613. name: "Minimacro",
  1614. height: math.unit(40, "feet"),
  1615. default: true,
  1616. info: {
  1617. description: {
  1618. mode: "append",
  1619. text: "\n\nTOO DAMN BIG"
  1620. }
  1621. }
  1622. },
  1623. {
  1624. name: "Macro",
  1625. height: math.unit(100, "feet"),
  1626. info: {
  1627. description: {
  1628. mode: "append",
  1629. text: "\n\nTOO DAMN BIG"
  1630. }
  1631. }
  1632. },
  1633. {
  1634. name: "Macro+",
  1635. height: math.unit(300, "feet")
  1636. },
  1637. {
  1638. name: "Megamacro",
  1639. height: math.unit(2, "miles")
  1640. }
  1641. ]
  1642. ))
  1643. characterMakers.push(() => makeCharacter(
  1644. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1645. {
  1646. front: {
  1647. height: math.unit(183, "cm"),
  1648. weight: math.unit(80, "kg"),
  1649. name: "Front",
  1650. image: {
  1651. source: "./media/characters/sofia-fluttertail/front.svg",
  1652. bottom: 0.01,
  1653. extra: 2154 / 2081
  1654. }
  1655. },
  1656. frontAlt: {
  1657. height: math.unit(183, "cm"),
  1658. weight: math.unit(80, "kg"),
  1659. name: "Front (alt)",
  1660. image: {
  1661. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1662. }
  1663. },
  1664. back: {
  1665. height: math.unit(183, "cm"),
  1666. weight: math.unit(80, "kg"),
  1667. name: "Back",
  1668. image: {
  1669. source: "./media/characters/sofia-fluttertail/back.svg"
  1670. }
  1671. },
  1672. kneeling: {
  1673. height: math.unit(125, "cm"),
  1674. weight: math.unit(80, "kg"),
  1675. name: "Kneeling",
  1676. image: {
  1677. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1678. extra: 1033 / 977,
  1679. bottom: 23.7 / 1057
  1680. }
  1681. },
  1682. maw: {
  1683. height: math.unit(183 / 5, "cm"),
  1684. name: "Maw",
  1685. image: {
  1686. source: "./media/characters/sofia-fluttertail/maw.svg"
  1687. }
  1688. },
  1689. mawcloseup: {
  1690. height: math.unit(183 / 5 * 0.41, "cm"),
  1691. name: "Maw (Closeup)",
  1692. image: {
  1693. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1694. }
  1695. },
  1696. paws: {
  1697. height: math.unit(1.17, "feet"),
  1698. name: "Paws",
  1699. image: {
  1700. source: "./media/characters/sofia-fluttertail/paws.svg",
  1701. extra: 851 / 851,
  1702. bottom: 17 / 868
  1703. }
  1704. },
  1705. },
  1706. [
  1707. {
  1708. name: "Normal",
  1709. height: math.unit(1.83, "meter")
  1710. },
  1711. {
  1712. name: "Size Thief",
  1713. height: math.unit(18, "feet")
  1714. },
  1715. {
  1716. name: "50 Foot Collie",
  1717. height: math.unit(50, "feet")
  1718. },
  1719. {
  1720. name: "Macro",
  1721. height: math.unit(96, "feet"),
  1722. default: true
  1723. },
  1724. {
  1725. name: "Megamerger",
  1726. height: math.unit(650, "feet")
  1727. },
  1728. ]
  1729. ))
  1730. characterMakers.push(() => makeCharacter(
  1731. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1732. {
  1733. front: {
  1734. height: math.unit(7, "feet"),
  1735. weight: math.unit(100, "kg"),
  1736. name: "Front",
  1737. image: {
  1738. source: "./media/characters/march/front.svg",
  1739. extra: 1,
  1740. bottom: 0.015
  1741. }
  1742. },
  1743. foot: {
  1744. height: math.unit(0.9, "feet"),
  1745. name: "Foot",
  1746. image: {
  1747. source: "./media/characters/march/foot.svg"
  1748. }
  1749. },
  1750. },
  1751. [
  1752. {
  1753. name: "Normal",
  1754. height: math.unit(7.9, "feet")
  1755. },
  1756. {
  1757. name: "Macro",
  1758. height: math.unit(220, "meters")
  1759. },
  1760. {
  1761. name: "Megamacro",
  1762. height: math.unit(2.98, "km"),
  1763. default: true
  1764. },
  1765. {
  1766. name: "Gigamacro",
  1767. height: math.unit(15963, "km")
  1768. },
  1769. {
  1770. name: "Teramacro",
  1771. height: math.unit(2980000000, "km")
  1772. },
  1773. {
  1774. name: "Examacro",
  1775. height: math.unit(250, "parsecs")
  1776. },
  1777. ]
  1778. ))
  1779. characterMakers.push(() => makeCharacter(
  1780. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1781. {
  1782. front: {
  1783. height: math.unit(6, "feet"),
  1784. weight: math.unit(60, "kg"),
  1785. name: "Front",
  1786. image: {
  1787. source: "./media/characters/noir/front.svg",
  1788. extra: 1,
  1789. bottom: 0.032
  1790. }
  1791. },
  1792. },
  1793. [
  1794. {
  1795. name: "Normal",
  1796. height: math.unit(6.6, "feet")
  1797. },
  1798. {
  1799. name: "Macro",
  1800. height: math.unit(500, "feet")
  1801. },
  1802. {
  1803. name: "Megamacro",
  1804. height: math.unit(2.5, "km"),
  1805. default: true
  1806. },
  1807. {
  1808. name: "Gigamacro",
  1809. height: math.unit(22500, "km")
  1810. },
  1811. {
  1812. name: "Teramacro",
  1813. height: math.unit(2500000000, "km")
  1814. },
  1815. {
  1816. name: "Examacro",
  1817. height: math.unit(200, "parsecs")
  1818. },
  1819. ]
  1820. ))
  1821. characterMakers.push(() => makeCharacter(
  1822. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1823. {
  1824. front: {
  1825. height: math.unit(7, "feet"),
  1826. weight: math.unit(100, "kg"),
  1827. name: "Front",
  1828. image: {
  1829. source: "./media/characters/okuri/front.svg",
  1830. extra: 1,
  1831. bottom: 0.037
  1832. }
  1833. },
  1834. back: {
  1835. height: math.unit(7, "feet"),
  1836. weight: math.unit(100, "kg"),
  1837. name: "Back",
  1838. image: {
  1839. source: "./media/characters/okuri/back.svg",
  1840. extra: 1,
  1841. bottom: 0.007
  1842. }
  1843. },
  1844. },
  1845. [
  1846. {
  1847. name: "Megamacro",
  1848. height: math.unit(100, "miles"),
  1849. default: true
  1850. },
  1851. ]
  1852. ))
  1853. characterMakers.push(() => makeCharacter(
  1854. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1855. {
  1856. front: {
  1857. height: math.unit(7, "feet"),
  1858. weight: math.unit(100, "kg"),
  1859. name: "Front",
  1860. image: {
  1861. source: "./media/characters/manny/front.svg",
  1862. extra: 1,
  1863. bottom: 0.06
  1864. }
  1865. },
  1866. back: {
  1867. height: math.unit(7, "feet"),
  1868. weight: math.unit(100, "kg"),
  1869. name: "Back",
  1870. image: {
  1871. source: "./media/characters/manny/back.svg",
  1872. extra: 1,
  1873. bottom: 0.014
  1874. }
  1875. },
  1876. },
  1877. [
  1878. {
  1879. name: "Normal",
  1880. height: math.unit(7, "feet"),
  1881. },
  1882. {
  1883. name: "Macro",
  1884. height: math.unit(78, "feet"),
  1885. default: true
  1886. },
  1887. {
  1888. name: "Macro+",
  1889. height: math.unit(300, "meters")
  1890. },
  1891. {
  1892. name: "Macro++",
  1893. height: math.unit(2400, "meters")
  1894. },
  1895. {
  1896. name: "Megamacro",
  1897. height: math.unit(5167, "meters")
  1898. },
  1899. {
  1900. name: "Gigamacro",
  1901. height: math.unit(41769, "miles")
  1902. },
  1903. ]
  1904. ))
  1905. characterMakers.push(() => makeCharacter(
  1906. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1907. {
  1908. front: {
  1909. height: math.unit(7, "feet"),
  1910. weight: math.unit(100, "kg"),
  1911. name: "Front",
  1912. image: {
  1913. source: "./media/characters/adake/front-1.svg"
  1914. }
  1915. },
  1916. frontAlt: {
  1917. height: math.unit(7, "feet"),
  1918. weight: math.unit(100, "kg"),
  1919. name: "Front (Alt)",
  1920. image: {
  1921. source: "./media/characters/adake/front-2.svg",
  1922. extra: 1,
  1923. bottom: 0.01
  1924. }
  1925. },
  1926. back: {
  1927. height: math.unit(7, "feet"),
  1928. weight: math.unit(100, "kg"),
  1929. name: "Back",
  1930. image: {
  1931. source: "./media/characters/adake/back.svg",
  1932. }
  1933. },
  1934. kneel: {
  1935. height: math.unit(5.385, "feet"),
  1936. weight: math.unit(100, "kg"),
  1937. name: "Kneeling",
  1938. image: {
  1939. source: "./media/characters/adake/kneel.svg",
  1940. bottom: 0.052
  1941. }
  1942. },
  1943. },
  1944. [
  1945. {
  1946. name: "Normal",
  1947. height: math.unit(7, "feet"),
  1948. },
  1949. {
  1950. name: "Macro",
  1951. height: math.unit(78, "feet"),
  1952. default: true
  1953. },
  1954. {
  1955. name: "Macro+",
  1956. height: math.unit(300, "meters")
  1957. },
  1958. {
  1959. name: "Macro++",
  1960. height: math.unit(2400, "meters")
  1961. },
  1962. {
  1963. name: "Megamacro",
  1964. height: math.unit(5167, "meters")
  1965. },
  1966. {
  1967. name: "Gigamacro",
  1968. height: math.unit(41769, "miles")
  1969. },
  1970. ]
  1971. ))
  1972. characterMakers.push(() => makeCharacter(
  1973. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1974. {
  1975. front: {
  1976. height: math.unit(1.65, "meters"),
  1977. weight: math.unit(50, "kg"),
  1978. name: "Front",
  1979. image: {
  1980. source: "./media/characters/elijah/front.svg",
  1981. extra: 858 / 830,
  1982. bottom: 95.5 / 953.8559
  1983. }
  1984. },
  1985. back: {
  1986. height: math.unit(1.65, "meters"),
  1987. weight: math.unit(50, "kg"),
  1988. name: "Back",
  1989. image: {
  1990. source: "./media/characters/elijah/back.svg",
  1991. extra: 895 / 850,
  1992. bottom: 5.3 / 897.956
  1993. }
  1994. },
  1995. frontNsfw: {
  1996. height: math.unit(1.65, "meters"),
  1997. weight: math.unit(50, "kg"),
  1998. name: "Front (NSFW)",
  1999. image: {
  2000. source: "./media/characters/elijah/front-nsfw.svg",
  2001. extra: 858 / 830,
  2002. bottom: 95.5 / 953.8559
  2003. }
  2004. },
  2005. backNsfw: {
  2006. height: math.unit(1.65, "meters"),
  2007. weight: math.unit(50, "kg"),
  2008. name: "Back (NSFW)",
  2009. image: {
  2010. source: "./media/characters/elijah/back-nsfw.svg",
  2011. extra: 895 / 850,
  2012. bottom: 5.3 / 897.956
  2013. }
  2014. },
  2015. dick: {
  2016. height: math.unit(1, "feet"),
  2017. name: "Dick",
  2018. image: {
  2019. source: "./media/characters/elijah/dick.svg"
  2020. }
  2021. },
  2022. beakOpen: {
  2023. height: math.unit(1.25, "feet"),
  2024. name: "Beak (Open)",
  2025. image: {
  2026. source: "./media/characters/elijah/beak-open.svg"
  2027. }
  2028. },
  2029. beakShut: {
  2030. height: math.unit(1.25, "feet"),
  2031. name: "Beak (Shut)",
  2032. image: {
  2033. source: "./media/characters/elijah/beak-shut.svg"
  2034. }
  2035. },
  2036. footFlexing: {
  2037. height: math.unit(1.61, "feet"),
  2038. name: "Foot (Flexing)",
  2039. image: {
  2040. source: "./media/characters/elijah/foot-flexing.svg"
  2041. }
  2042. },
  2043. footStepping: {
  2044. height: math.unit(1.44, "feet"),
  2045. name: "Foot (Stepping)",
  2046. image: {
  2047. source: "./media/characters/elijah/foot-stepping.svg"
  2048. }
  2049. },
  2050. plantigradeLeg: {
  2051. height: math.unit(2.34, "feet"),
  2052. name: "Plantigrade Leg",
  2053. image: {
  2054. source: "./media/characters/elijah/plantigrade-leg.svg"
  2055. }
  2056. },
  2057. plantigradeFootLeft: {
  2058. height: math.unit(0.9, "feet"),
  2059. name: "Plantigrade Foot (Left)",
  2060. image: {
  2061. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2062. }
  2063. },
  2064. plantigradeFootRight: {
  2065. height: math.unit(0.9, "feet"),
  2066. name: "Plantigrade Foot (Right)",
  2067. image: {
  2068. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2069. }
  2070. },
  2071. },
  2072. [
  2073. {
  2074. name: "Normal",
  2075. height: math.unit(1.65, "meters")
  2076. },
  2077. {
  2078. name: "Macro",
  2079. height: math.unit(55, "meters"),
  2080. default: true
  2081. },
  2082. {
  2083. name: "Macro+",
  2084. height: math.unit(105, "meters")
  2085. },
  2086. ]
  2087. ))
  2088. characterMakers.push(() => makeCharacter(
  2089. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2090. {
  2091. front: {
  2092. height: math.unit(11, "feet"),
  2093. weight: math.unit(80, "kg"),
  2094. name: "Front",
  2095. image: {
  2096. source: "./media/characters/rai/front.svg",
  2097. extra: 1,
  2098. bottom: 0.03
  2099. }
  2100. },
  2101. side: {
  2102. height: math.unit(11, "feet"),
  2103. weight: math.unit(80, "kg"),
  2104. name: "Side",
  2105. image: {
  2106. source: "./media/characters/rai/side.svg"
  2107. }
  2108. },
  2109. back: {
  2110. height: math.unit(11, "feet"),
  2111. weight: math.unit(80, "lb"),
  2112. name: "Back",
  2113. image: {
  2114. source: "./media/characters/rai/back.svg",
  2115. extra: 1,
  2116. bottom: 0.01
  2117. }
  2118. },
  2119. feral: {
  2120. height: math.unit(11, "feet"),
  2121. weight: math.unit(800, "lb"),
  2122. name: "Feral",
  2123. image: {
  2124. source: "./media/characters/rai/feral.svg",
  2125. extra: 1050 / 659,
  2126. bottom: 0.07
  2127. }
  2128. },
  2129. dragon: {
  2130. height: math.unit(23, "feet"),
  2131. weight: math.unit(50000, "lb"),
  2132. name: "Dragon",
  2133. image: {
  2134. source: "./media/characters/rai/dragon.svg",
  2135. extra: 2498 / 2030,
  2136. bottom: 85.2 / 2584
  2137. }
  2138. },
  2139. maw: {
  2140. height: math.unit(6 / 3.81416, "feet"),
  2141. name: "Maw",
  2142. image: {
  2143. source: "./media/characters/rai/maw.svg"
  2144. }
  2145. },
  2146. },
  2147. [
  2148. {
  2149. name: "Normal",
  2150. height: math.unit(11, "feet")
  2151. },
  2152. {
  2153. name: "Macro",
  2154. height: math.unit(302, "feet"),
  2155. default: true
  2156. },
  2157. ]
  2158. ))
  2159. characterMakers.push(() => makeCharacter(
  2160. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2161. {
  2162. frontDressed: {
  2163. height: math.unit(216, "feet"),
  2164. weight: math.unit(7000000, "lb"),
  2165. name: "Front (Dressed)",
  2166. image: {
  2167. source: "./media/characters/jazzy/front-dressed.svg",
  2168. extra: 2738 / 2651,
  2169. bottom: 41.8 / 2786
  2170. }
  2171. },
  2172. backDressed: {
  2173. height: math.unit(216, "feet"),
  2174. weight: math.unit(7000000, "lb"),
  2175. name: "Back (Dressed)",
  2176. image: {
  2177. source: "./media/characters/jazzy/back-dressed.svg",
  2178. extra: 2775 / 2673,
  2179. bottom: 36.8 / 2817
  2180. }
  2181. },
  2182. front: {
  2183. height: math.unit(216, "feet"),
  2184. weight: math.unit(7000000, "lb"),
  2185. name: "Front",
  2186. image: {
  2187. source: "./media/characters/jazzy/front.svg",
  2188. extra: 2738 / 2651,
  2189. bottom: 41.8 / 2786
  2190. }
  2191. },
  2192. back: {
  2193. height: math.unit(216, "feet"),
  2194. weight: math.unit(7000000, "lb"),
  2195. name: "Back",
  2196. image: {
  2197. source: "./media/characters/jazzy/back.svg",
  2198. extra: 2775 / 2673,
  2199. bottom: 36.8 / 2817
  2200. }
  2201. },
  2202. maw: {
  2203. height: math.unit(20, "feet"),
  2204. name: "Maw",
  2205. image: {
  2206. source: "./media/characters/jazzy/maw.svg"
  2207. }
  2208. },
  2209. paws: {
  2210. height: math.unit(27.5, "feet"),
  2211. name: "Paws",
  2212. image: {
  2213. source: "./media/characters/jazzy/paws.svg"
  2214. }
  2215. },
  2216. eye: {
  2217. height: math.unit(4.4, "feet"),
  2218. name: "Eye",
  2219. image: {
  2220. source: "./media/characters/jazzy/eye.svg"
  2221. }
  2222. },
  2223. droneOffense: {
  2224. height: math.unit(9.5, "inches"),
  2225. name: "Drone (Offense)",
  2226. image: {
  2227. source: "./media/characters/jazzy/drone-offense.svg"
  2228. }
  2229. },
  2230. droneRecon: {
  2231. height: math.unit(9.5, "inches"),
  2232. name: "Drone (Recon)",
  2233. image: {
  2234. source: "./media/characters/jazzy/drone-recon.svg"
  2235. }
  2236. },
  2237. droneDefense: {
  2238. height: math.unit(9.5, "inches"),
  2239. name: "Drone (Defense)",
  2240. image: {
  2241. source: "./media/characters/jazzy/drone-defense.svg"
  2242. }
  2243. },
  2244. },
  2245. [
  2246. {
  2247. name: "Macro",
  2248. height: math.unit(216, "feet"),
  2249. default: true
  2250. },
  2251. ]
  2252. ))
  2253. characterMakers.push(() => makeCharacter(
  2254. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2255. {
  2256. front: {
  2257. height: math.unit(7, "feet"),
  2258. weight: math.unit(80, "kg"),
  2259. name: "Front",
  2260. image: {
  2261. source: "./media/characters/flamm/front.svg",
  2262. extra: 1794 / 1677,
  2263. bottom: 31.7 / 1828.5
  2264. }
  2265. },
  2266. },
  2267. [
  2268. {
  2269. name: "Normal",
  2270. height: math.unit(9.5, "feet")
  2271. },
  2272. {
  2273. name: "Macro",
  2274. height: math.unit(200, "feet"),
  2275. default: true
  2276. },
  2277. ]
  2278. ))
  2279. characterMakers.push(() => makeCharacter(
  2280. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2281. {
  2282. front: {
  2283. height: math.unit(5 + 3/12, "feet"),
  2284. weight: math.unit(60, "kg"),
  2285. name: "Front",
  2286. image: {
  2287. source: "./media/characters/zephiro/front.svg",
  2288. extra: 2309 / 2162,
  2289. bottom: 0.069
  2290. }
  2291. },
  2292. side: {
  2293. height: math.unit(5 + 3/12, "feet"),
  2294. weight: math.unit(60, "kg"),
  2295. name: "Side",
  2296. image: {
  2297. source: "./media/characters/zephiro/side.svg",
  2298. extra: 2403 / 2279,
  2299. bottom: 0.015
  2300. }
  2301. },
  2302. back: {
  2303. height: math.unit(5 + 3/12, "feet"),
  2304. weight: math.unit(60, "kg"),
  2305. name: "Back",
  2306. image: {
  2307. source: "./media/characters/zephiro/back.svg",
  2308. extra: 2373 / 2244,
  2309. bottom: 0.013
  2310. }
  2311. },
  2312. hand: {
  2313. height: math.unit(0.68, "feet"),
  2314. name: "Hand",
  2315. image: {
  2316. source: "./media/characters/zephiro/hand.svg"
  2317. }
  2318. },
  2319. paw: {
  2320. height: math.unit(1, "feet"),
  2321. name: "Paw",
  2322. image: {
  2323. source: "./media/characters/zephiro/paw.svg"
  2324. }
  2325. },
  2326. beans: {
  2327. height: math.unit(0.93, "feet"),
  2328. name: "Beans",
  2329. image: {
  2330. source: "./media/characters/zephiro/beans.svg"
  2331. }
  2332. },
  2333. },
  2334. [
  2335. {
  2336. name: "Micro",
  2337. height: math.unit(3, "inches")
  2338. },
  2339. {
  2340. name: "Normal",
  2341. height: math.unit(5 + 3 / 12, "feet"),
  2342. default: true
  2343. },
  2344. {
  2345. name: "Macro",
  2346. height: math.unit(118, "feet")
  2347. },
  2348. ]
  2349. ))
  2350. characterMakers.push(() => makeCharacter(
  2351. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2352. {
  2353. front: {
  2354. height: math.unit(5, "feet"),
  2355. weight: math.unit(90, "kg"),
  2356. name: "Front",
  2357. image: {
  2358. source: "./media/characters/fory/front.svg",
  2359. extra: 2862 / 2674,
  2360. bottom: 180 / 3043.8
  2361. }
  2362. },
  2363. back: {
  2364. height: math.unit(5, "feet"),
  2365. weight: math.unit(90, "kg"),
  2366. name: "Back",
  2367. image: {
  2368. source: "./media/characters/fory/back.svg",
  2369. extra: 2962 / 2791,
  2370. bottom: 106 / 3071.8
  2371. }
  2372. },
  2373. foot: {
  2374. height: math.unit(2.14, "feet"),
  2375. name: "Foot",
  2376. image: {
  2377. source: "./media/characters/fory/foot.svg"
  2378. }
  2379. },
  2380. },
  2381. [
  2382. {
  2383. name: "Normal",
  2384. height: math.unit(5, "feet")
  2385. },
  2386. {
  2387. name: "Macro",
  2388. height: math.unit(50, "feet"),
  2389. default: true
  2390. },
  2391. {
  2392. name: "Megamacro",
  2393. height: math.unit(10, "miles")
  2394. },
  2395. {
  2396. name: "Gigamacro",
  2397. height: math.unit(5, "earths")
  2398. },
  2399. ]
  2400. ))
  2401. characterMakers.push(() => makeCharacter(
  2402. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2403. {
  2404. front: {
  2405. height: math.unit(7, "feet"),
  2406. weight: math.unit(90, "kg"),
  2407. name: "Front",
  2408. image: {
  2409. source: "./media/characters/kurrikage/front.svg",
  2410. extra: 1,
  2411. bottom: 0.035
  2412. }
  2413. },
  2414. back: {
  2415. height: math.unit(7, "feet"),
  2416. weight: math.unit(90, "lb"),
  2417. name: "Back",
  2418. image: {
  2419. source: "./media/characters/kurrikage/back.svg"
  2420. }
  2421. },
  2422. paw: {
  2423. height: math.unit(1.5, "feet"),
  2424. name: "Paw",
  2425. image: {
  2426. source: "./media/characters/kurrikage/paw.svg"
  2427. }
  2428. },
  2429. staff: {
  2430. height: math.unit(6.7, "feet"),
  2431. name: "Staff",
  2432. image: {
  2433. source: "./media/characters/kurrikage/staff.svg"
  2434. }
  2435. },
  2436. peek: {
  2437. height: math.unit(1.05, "feet"),
  2438. name: "Peeking",
  2439. image: {
  2440. source: "./media/characters/kurrikage/peek.svg",
  2441. bottom: 0.08
  2442. }
  2443. },
  2444. },
  2445. [
  2446. {
  2447. name: "Normal",
  2448. height: math.unit(12, "feet"),
  2449. default: true
  2450. },
  2451. {
  2452. name: "Big",
  2453. height: math.unit(20, "feet")
  2454. },
  2455. {
  2456. name: "Macro",
  2457. height: math.unit(500, "feet")
  2458. },
  2459. {
  2460. name: "Megamacro",
  2461. height: math.unit(20, "miles")
  2462. },
  2463. ]
  2464. ))
  2465. characterMakers.push(() => makeCharacter(
  2466. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2467. {
  2468. front: {
  2469. height: math.unit(6, "feet"),
  2470. weight: math.unit(75, "kg"),
  2471. name: "Front",
  2472. image: {
  2473. source: "./media/characters/shingo/front.svg",
  2474. extra: 706/681,
  2475. bottom: 11/717
  2476. }
  2477. },
  2478. frontAlt: {
  2479. height: math.unit(6, "feet"),
  2480. weight: math.unit(75, "kg"),
  2481. name: "Front (Alt)",
  2482. image: {
  2483. source: "./media/characters/shingo/front-alt.svg",
  2484. extra: 3511 / 3338,
  2485. bottom: 0.005
  2486. }
  2487. },
  2488. paw: {
  2489. height: math.unit(1, "feet"),
  2490. name: "Paw",
  2491. image: {
  2492. source: "./media/characters/shingo/paw.svg"
  2493. }
  2494. },
  2495. },
  2496. [
  2497. {
  2498. name: "Micro",
  2499. height: math.unit(4, "inches")
  2500. },
  2501. {
  2502. name: "Normal",
  2503. height: math.unit(6, "feet"),
  2504. default: true
  2505. },
  2506. {
  2507. name: "Macro",
  2508. height: math.unit(108, "feet")
  2509. },
  2510. {
  2511. name: "Macro+",
  2512. height: math.unit(1500, "feet")
  2513. },
  2514. ]
  2515. ))
  2516. characterMakers.push(() => makeCharacter(
  2517. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2518. {
  2519. side: {
  2520. height: math.unit(6, "feet"),
  2521. weight: math.unit(75, "kg"),
  2522. name: "Side",
  2523. image: {
  2524. source: "./media/characters/aigey/side.svg"
  2525. }
  2526. },
  2527. },
  2528. [
  2529. {
  2530. name: "Macro",
  2531. height: math.unit(200, "feet"),
  2532. default: true
  2533. },
  2534. {
  2535. name: "Megamacro",
  2536. height: math.unit(100, "miles")
  2537. },
  2538. ]
  2539. )
  2540. )
  2541. characterMakers.push(() => makeCharacter(
  2542. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2543. {
  2544. front: {
  2545. height: math.unit(5 + 5 / 12, "feet"),
  2546. weight: math.unit(75, "kg"),
  2547. name: "Front",
  2548. image: {
  2549. source: "./media/characters/natasha/front.svg",
  2550. extra: 859 / 824,
  2551. bottom: 23 / 879.6
  2552. }
  2553. },
  2554. frontNsfw: {
  2555. height: math.unit(5 + 5 / 12, "feet"),
  2556. weight: math.unit(75, "kg"),
  2557. name: "Front (NSFW)",
  2558. image: {
  2559. source: "./media/characters/natasha/front-nsfw.svg",
  2560. extra: 859 / 824,
  2561. bottom: 23 / 879.6
  2562. }
  2563. },
  2564. frontErect: {
  2565. height: math.unit(5 + 5 / 12, "feet"),
  2566. weight: math.unit(75, "kg"),
  2567. name: "Front (Erect)",
  2568. image: {
  2569. source: "./media/characters/natasha/front-erect.svg",
  2570. extra: 859 / 824,
  2571. bottom: 23 / 879.6
  2572. }
  2573. },
  2574. back: {
  2575. height: math.unit(5 + 5 / 12, "feet"),
  2576. weight: math.unit(75, "kg"),
  2577. name: "Back",
  2578. image: {
  2579. source: "./media/characters/natasha/back.svg",
  2580. extra: 887.9 / 852.6,
  2581. bottom: 9.7 / 896.4
  2582. }
  2583. },
  2584. backAlt: {
  2585. height: math.unit(5 + 5 / 12, "feet"),
  2586. weight: math.unit(75, "kg"),
  2587. name: "Back (Alt)",
  2588. image: {
  2589. source: "./media/characters/natasha/back-alt.svg",
  2590. extra: 1236.7 / 1192,
  2591. bottom: 22.3 / 1258.2
  2592. }
  2593. },
  2594. dick: {
  2595. height: math.unit(1.772, "feet"),
  2596. name: "Dick",
  2597. image: {
  2598. source: "./media/characters/natasha/dick.svg"
  2599. }
  2600. },
  2601. paw: {
  2602. height: math.unit(0.250, "meters"),
  2603. name: "Paw",
  2604. image: {
  2605. source: "./media/characters/natasha/paw.svg"
  2606. }
  2607. },
  2608. },
  2609. [
  2610. {
  2611. name: "Normal",
  2612. height: math.unit(5 + 5 / 12, "feet")
  2613. },
  2614. {
  2615. name: "Large",
  2616. height: math.unit(12, "feet")
  2617. },
  2618. {
  2619. name: "Macro",
  2620. height: math.unit(100, "feet"),
  2621. default: true
  2622. },
  2623. {
  2624. name: "Macro+",
  2625. height: math.unit(260, "feet")
  2626. },
  2627. {
  2628. name: "Macro++",
  2629. height: math.unit(1, "mile")
  2630. },
  2631. ]
  2632. ))
  2633. characterMakers.push(() => makeCharacter(
  2634. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2635. {
  2636. front: {
  2637. height: math.unit(6, "feet"),
  2638. weight: math.unit(75, "kg"),
  2639. name: "Front",
  2640. image: {
  2641. source: "./media/characters/malik/front.svg"
  2642. }
  2643. },
  2644. side: {
  2645. height: math.unit(6, "feet"),
  2646. weight: math.unit(75, "kg"),
  2647. name: "Side",
  2648. image: {
  2649. source: "./media/characters/malik/side.svg",
  2650. extra: 1.1539
  2651. }
  2652. },
  2653. back: {
  2654. height: math.unit(6, "feet"),
  2655. weight: math.unit(75, "kg"),
  2656. name: "Back",
  2657. image: {
  2658. source: "./media/characters/malik/back.svg"
  2659. }
  2660. },
  2661. },
  2662. [
  2663. {
  2664. name: "Macro",
  2665. height: math.unit(156, "feet"),
  2666. default: true
  2667. },
  2668. {
  2669. name: "Macro+",
  2670. height: math.unit(1188, "feet")
  2671. },
  2672. ]
  2673. ))
  2674. characterMakers.push(() => makeCharacter(
  2675. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2676. {
  2677. front: {
  2678. height: math.unit(6, "feet"),
  2679. weight: math.unit(75, "kg"),
  2680. name: "Front",
  2681. image: {
  2682. source: "./media/characters/sefer/front.svg",
  2683. extra: 848 / 659,
  2684. bottom: 28.3 / 876.442
  2685. }
  2686. },
  2687. back: {
  2688. height: math.unit(6, "feet"),
  2689. weight: math.unit(75, "kg"),
  2690. name: "Back",
  2691. image: {
  2692. source: "./media/characters/sefer/back.svg",
  2693. extra: 864 / 695,
  2694. bottom: 10 / 871
  2695. }
  2696. },
  2697. frontDressed: {
  2698. height: math.unit(6, "feet"),
  2699. weight: math.unit(75, "kg"),
  2700. name: "Front (Dressed)",
  2701. image: {
  2702. source: "./media/characters/sefer/front-dressed.svg",
  2703. extra: 839 / 653,
  2704. bottom: 37.6 / 878
  2705. }
  2706. },
  2707. },
  2708. [
  2709. {
  2710. name: "Normal",
  2711. height: math.unit(6, "feet"),
  2712. default: true
  2713. },
  2714. ]
  2715. ))
  2716. characterMakers.push(() => makeCharacter(
  2717. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2718. {
  2719. body: {
  2720. height: math.unit(2.2428, "meter"),
  2721. weight: math.unit(124.738, "kg"),
  2722. name: "Body",
  2723. image: {
  2724. extra: 1225 / 1050,
  2725. source: "./media/characters/north/front.svg"
  2726. }
  2727. }
  2728. },
  2729. [
  2730. {
  2731. name: "Micro",
  2732. height: math.unit(4, "inches")
  2733. },
  2734. {
  2735. name: "Macro",
  2736. height: math.unit(63, "meters")
  2737. },
  2738. {
  2739. name: "Megamacro",
  2740. height: math.unit(101, "miles"),
  2741. default: true
  2742. }
  2743. ]
  2744. ))
  2745. characterMakers.push(() => makeCharacter(
  2746. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2747. {
  2748. angled: {
  2749. height: math.unit(4, "meter"),
  2750. weight: math.unit(150, "kg"),
  2751. name: "Angled",
  2752. image: {
  2753. source: "./media/characters/talan/angled-sfw.svg",
  2754. bottom: 29 / 3734
  2755. }
  2756. },
  2757. angledNsfw: {
  2758. height: math.unit(4, "meter"),
  2759. weight: math.unit(150, "kg"),
  2760. name: "Angled (NSFW)",
  2761. image: {
  2762. source: "./media/characters/talan/angled-nsfw.svg",
  2763. bottom: 29 / 3734
  2764. }
  2765. },
  2766. frontNsfw: {
  2767. height: math.unit(4, "meter"),
  2768. weight: math.unit(150, "kg"),
  2769. name: "Front (NSFW)",
  2770. image: {
  2771. source: "./media/characters/talan/front-nsfw.svg",
  2772. bottom: 29 / 3734
  2773. }
  2774. },
  2775. sideNsfw: {
  2776. height: math.unit(4, "meter"),
  2777. weight: math.unit(150, "kg"),
  2778. name: "Side (NSFW)",
  2779. image: {
  2780. source: "./media/characters/talan/side-nsfw.svg",
  2781. bottom: 29 / 3734
  2782. }
  2783. },
  2784. back: {
  2785. height: math.unit(4, "meter"),
  2786. weight: math.unit(150, "kg"),
  2787. name: "Back",
  2788. image: {
  2789. source: "./media/characters/talan/back.svg"
  2790. }
  2791. },
  2792. dickBottom: {
  2793. height: math.unit(0.621, "meter"),
  2794. name: "Dick (Bottom)",
  2795. image: {
  2796. source: "./media/characters/talan/dick-bottom.svg"
  2797. }
  2798. },
  2799. dickTop: {
  2800. height: math.unit(0.621, "meter"),
  2801. name: "Dick (Top)",
  2802. image: {
  2803. source: "./media/characters/talan/dick-top.svg"
  2804. }
  2805. },
  2806. dickSide: {
  2807. height: math.unit(0.305, "meter"),
  2808. name: "Dick (Side)",
  2809. image: {
  2810. source: "./media/characters/talan/dick-side.svg"
  2811. }
  2812. },
  2813. dickFront: {
  2814. height: math.unit(0.305, "meter"),
  2815. name: "Dick (Front)",
  2816. image: {
  2817. source: "./media/characters/talan/dick-front.svg"
  2818. }
  2819. },
  2820. },
  2821. [
  2822. {
  2823. name: "Normal",
  2824. height: math.unit(4, "meters")
  2825. },
  2826. {
  2827. name: "Macro",
  2828. height: math.unit(100, "meters")
  2829. },
  2830. {
  2831. name: "Megamacro",
  2832. height: math.unit(2, "miles"),
  2833. default: true
  2834. },
  2835. {
  2836. name: "Gigamacro",
  2837. height: math.unit(5000, "miles")
  2838. },
  2839. {
  2840. name: "Teramacro",
  2841. height: math.unit(100, "parsecs")
  2842. }
  2843. ]
  2844. ))
  2845. characterMakers.push(() => makeCharacter(
  2846. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2847. {
  2848. front: {
  2849. height: math.unit(2, "meter"),
  2850. weight: math.unit(90, "kg"),
  2851. name: "Front",
  2852. image: {
  2853. source: "./media/characters/gael'rathus/front.svg"
  2854. }
  2855. },
  2856. frontAlt: {
  2857. height: math.unit(2, "meter"),
  2858. weight: math.unit(90, "kg"),
  2859. name: "Front (alt)",
  2860. image: {
  2861. source: "./media/characters/gael'rathus/front-alt.svg"
  2862. }
  2863. },
  2864. frontAlt2: {
  2865. height: math.unit(2, "meter"),
  2866. weight: math.unit(90, "kg"),
  2867. name: "Front (alt 2)",
  2868. image: {
  2869. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2870. }
  2871. }
  2872. },
  2873. [
  2874. {
  2875. name: "Normal",
  2876. height: math.unit(9, "feet"),
  2877. default: true
  2878. },
  2879. {
  2880. name: "Large",
  2881. height: math.unit(25, "feet")
  2882. },
  2883. {
  2884. name: "Macro",
  2885. height: math.unit(0.25, "miles")
  2886. },
  2887. {
  2888. name: "Megamacro",
  2889. height: math.unit(10, "miles")
  2890. }
  2891. ]
  2892. ))
  2893. characterMakers.push(() => makeCharacter(
  2894. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2895. {
  2896. side: {
  2897. height: math.unit(2, "meter"),
  2898. weight: math.unit(140, "kg"),
  2899. name: "Side",
  2900. image: {
  2901. source: "./media/characters/sosha/side.svg",
  2902. bottom: 0.042
  2903. }
  2904. },
  2905. },
  2906. [
  2907. {
  2908. name: "Normal",
  2909. height: math.unit(12, "feet"),
  2910. default: true
  2911. }
  2912. ]
  2913. ))
  2914. characterMakers.push(() => makeCharacter(
  2915. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2916. {
  2917. side: {
  2918. height: math.unit(5 + 5 / 12, "feet"),
  2919. weight: math.unit(170, "kg"),
  2920. name: "Side",
  2921. image: {
  2922. source: "./media/characters/runnola/side.svg",
  2923. extra: 741 / 448,
  2924. bottom: 0.05
  2925. }
  2926. },
  2927. },
  2928. [
  2929. {
  2930. name: "Small",
  2931. height: math.unit(3, "feet")
  2932. },
  2933. {
  2934. name: "Normal",
  2935. height: math.unit(5 + 5 / 12, "feet"),
  2936. default: true
  2937. },
  2938. {
  2939. name: "Big",
  2940. height: math.unit(10, "feet")
  2941. },
  2942. ]
  2943. ))
  2944. characterMakers.push(() => makeCharacter(
  2945. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2946. {
  2947. front: {
  2948. height: math.unit(2, "meter"),
  2949. weight: math.unit(50, "kg"),
  2950. name: "Front",
  2951. image: {
  2952. source: "./media/characters/kurribird/front.svg",
  2953. bottom: 0.015
  2954. }
  2955. },
  2956. frontAlt: {
  2957. height: math.unit(1.5, "meter"),
  2958. weight: math.unit(50, "kg"),
  2959. name: "Front (Alt)",
  2960. image: {
  2961. source: "./media/characters/kurribird/front-alt.svg",
  2962. extra: 1.45
  2963. }
  2964. },
  2965. },
  2966. [
  2967. {
  2968. name: "Normal",
  2969. height: math.unit(7, "feet")
  2970. },
  2971. {
  2972. name: "Big",
  2973. height: math.unit(12, "feet"),
  2974. default: true
  2975. },
  2976. {
  2977. name: "Macro",
  2978. height: math.unit(1500, "feet")
  2979. },
  2980. {
  2981. name: "Megamacro",
  2982. height: math.unit(2, "miles")
  2983. }
  2984. ]
  2985. ))
  2986. characterMakers.push(() => makeCharacter(
  2987. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2988. {
  2989. front: {
  2990. height: math.unit(2, "meter"),
  2991. weight: math.unit(80, "kg"),
  2992. name: "Front",
  2993. image: {
  2994. source: "./media/characters/elbial/front.svg",
  2995. extra: 1643 / 1556,
  2996. bottom: 60.2 / 1696
  2997. }
  2998. },
  2999. side: {
  3000. height: math.unit(2, "meter"),
  3001. weight: math.unit(80, "kg"),
  3002. name: "Side",
  3003. image: {
  3004. source: "./media/characters/elbial/side.svg",
  3005. extra: 1630 / 1565,
  3006. bottom: 71.5 / 1697
  3007. }
  3008. },
  3009. back: {
  3010. height: math.unit(2, "meter"),
  3011. weight: math.unit(80, "kg"),
  3012. name: "Back",
  3013. image: {
  3014. source: "./media/characters/elbial/back.svg",
  3015. extra: 1668 / 1595,
  3016. bottom: 5.6 / 1672
  3017. }
  3018. },
  3019. frontDressed: {
  3020. height: math.unit(2, "meter"),
  3021. weight: math.unit(80, "kg"),
  3022. name: "Front (Dressed)",
  3023. image: {
  3024. source: "./media/characters/elbial/front-dressed.svg",
  3025. extra: 1653 / 1584,
  3026. bottom: 57 / 1708
  3027. }
  3028. },
  3029. genitals: {
  3030. height: math.unit(2 / 3.367, "meter"),
  3031. name: "Genitals",
  3032. image: {
  3033. source: "./media/characters/elbial/genitals.svg"
  3034. }
  3035. },
  3036. },
  3037. [
  3038. {
  3039. name: "Large",
  3040. height: math.unit(100, "feet")
  3041. },
  3042. {
  3043. name: "Macro",
  3044. height: math.unit(500, "feet"),
  3045. default: true
  3046. },
  3047. {
  3048. name: "Megamacro",
  3049. height: math.unit(10, "miles")
  3050. },
  3051. {
  3052. name: "Gigamacro",
  3053. height: math.unit(25000, "miles")
  3054. },
  3055. {
  3056. name: "Full-Size",
  3057. height: math.unit(8000000, "gigaparsecs")
  3058. }
  3059. ]
  3060. ))
  3061. characterMakers.push(() => makeCharacter(
  3062. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3063. {
  3064. front: {
  3065. height: math.unit(2, "meter"),
  3066. weight: math.unit(60, "kg"),
  3067. name: "Front",
  3068. image: {
  3069. source: "./media/characters/noah/front.svg"
  3070. }
  3071. },
  3072. talons: {
  3073. height: math.unit(0.315, "meter"),
  3074. name: "Talons",
  3075. image: {
  3076. source: "./media/characters/noah/talons.svg"
  3077. }
  3078. }
  3079. },
  3080. [
  3081. {
  3082. name: "Large",
  3083. height: math.unit(50, "feet")
  3084. },
  3085. {
  3086. name: "Macro",
  3087. height: math.unit(750, "feet"),
  3088. default: true
  3089. },
  3090. {
  3091. name: "Megamacro",
  3092. height: math.unit(50, "miles")
  3093. },
  3094. {
  3095. name: "Gigamacro",
  3096. height: math.unit(100000, "miles")
  3097. },
  3098. {
  3099. name: "Full-Size",
  3100. height: math.unit(3000000000, "miles")
  3101. }
  3102. ]
  3103. ))
  3104. characterMakers.push(() => makeCharacter(
  3105. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3106. {
  3107. front: {
  3108. height: math.unit(2, "meter"),
  3109. weight: math.unit(80, "kg"),
  3110. name: "Front",
  3111. image: {
  3112. source: "./media/characters/natalya/front.svg"
  3113. }
  3114. },
  3115. back: {
  3116. height: math.unit(2, "meter"),
  3117. weight: math.unit(80, "kg"),
  3118. name: "Back",
  3119. image: {
  3120. source: "./media/characters/natalya/back.svg"
  3121. }
  3122. }
  3123. },
  3124. [
  3125. {
  3126. name: "Normal",
  3127. height: math.unit(150, "feet"),
  3128. default: true
  3129. },
  3130. {
  3131. name: "Megamacro",
  3132. height: math.unit(5, "miles")
  3133. },
  3134. {
  3135. name: "Full-Size",
  3136. height: math.unit(600, "kiloparsecs")
  3137. }
  3138. ]
  3139. ))
  3140. characterMakers.push(() => makeCharacter(
  3141. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3142. {
  3143. front: {
  3144. height: math.unit(2, "meter"),
  3145. weight: math.unit(50, "kg"),
  3146. name: "Front",
  3147. image: {
  3148. source: "./media/characters/erestrebah/front.svg",
  3149. extra: 208 / 193,
  3150. bottom: 0.055
  3151. }
  3152. },
  3153. back: {
  3154. height: math.unit(2, "meter"),
  3155. weight: math.unit(50, "kg"),
  3156. name: "Back",
  3157. image: {
  3158. source: "./media/characters/erestrebah/back.svg",
  3159. extra: 1.3
  3160. }
  3161. }
  3162. },
  3163. [
  3164. {
  3165. name: "Normal",
  3166. height: math.unit(10, "feet")
  3167. },
  3168. {
  3169. name: "Large",
  3170. height: math.unit(50, "feet"),
  3171. default: true
  3172. },
  3173. {
  3174. name: "Macro",
  3175. height: math.unit(300, "feet")
  3176. },
  3177. {
  3178. name: "Macro+",
  3179. height: math.unit(750, "feet")
  3180. },
  3181. {
  3182. name: "Megamacro",
  3183. height: math.unit(3, "miles")
  3184. }
  3185. ]
  3186. ))
  3187. characterMakers.push(() => makeCharacter(
  3188. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3189. {
  3190. front: {
  3191. height: math.unit(2, "meter"),
  3192. weight: math.unit(80, "kg"),
  3193. name: "Front",
  3194. image: {
  3195. source: "./media/characters/jennifer/front.svg",
  3196. bottom: 0.11,
  3197. extra: 1.16
  3198. }
  3199. },
  3200. frontAlt: {
  3201. height: math.unit(2, "meter"),
  3202. weight: math.unit(80, "kg"),
  3203. name: "Front (Alt)",
  3204. image: {
  3205. source: "./media/characters/jennifer/front-alt.svg"
  3206. }
  3207. }
  3208. },
  3209. [
  3210. {
  3211. name: "Canon Height",
  3212. height: math.unit(120, "feet"),
  3213. default: true
  3214. },
  3215. {
  3216. name: "Macro+",
  3217. height: math.unit(300, "feet")
  3218. },
  3219. {
  3220. name: "Megamacro",
  3221. height: math.unit(20000, "feet")
  3222. }
  3223. ]
  3224. ))
  3225. characterMakers.push(() => makeCharacter(
  3226. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3227. {
  3228. front: {
  3229. height: math.unit(2, "meter"),
  3230. weight: math.unit(50, "kg"),
  3231. name: "Front",
  3232. image: {
  3233. source: "./media/characters/kalista/front.svg",
  3234. extra: 1947 / 1700,
  3235. bottom: 76.6 / 1412.98
  3236. }
  3237. },
  3238. back: {
  3239. height: math.unit(2, "meter"),
  3240. weight: math.unit(50, "kg"),
  3241. name: "Back",
  3242. image: {
  3243. source: "./media/characters/kalista/back.svg",
  3244. extra: 1366 / 1156,
  3245. bottom: 33.9 / 1362.78
  3246. }
  3247. }
  3248. },
  3249. [
  3250. {
  3251. name: "Uncomfortably Small",
  3252. height: math.unit(10, "feet")
  3253. },
  3254. {
  3255. name: "Small",
  3256. height: math.unit(30, "feet")
  3257. },
  3258. {
  3259. name: "Macro",
  3260. height: math.unit(100, "feet"),
  3261. default: true
  3262. },
  3263. {
  3264. name: "Macro+",
  3265. height: math.unit(2000, "feet")
  3266. },
  3267. {
  3268. name: "True Form",
  3269. height: math.unit(8924, "miles")
  3270. }
  3271. ]
  3272. ))
  3273. characterMakers.push(() => makeCharacter(
  3274. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3275. {
  3276. front: {
  3277. height: math.unit(2, "meter"),
  3278. weight: math.unit(120, "kg"),
  3279. name: "Front",
  3280. image: {
  3281. source: "./media/characters/ggv/front.svg"
  3282. }
  3283. },
  3284. side: {
  3285. height: math.unit(2, "meter"),
  3286. weight: math.unit(120, "kg"),
  3287. name: "Side",
  3288. image: {
  3289. source: "./media/characters/ggv/side.svg"
  3290. }
  3291. }
  3292. },
  3293. [
  3294. {
  3295. name: "Extremely Puny",
  3296. height: math.unit(9 + 5 / 12, "feet")
  3297. },
  3298. {
  3299. name: "Horribly Small",
  3300. height: math.unit(47.7, "miles"),
  3301. default: true
  3302. },
  3303. {
  3304. name: "Reasonably Sized",
  3305. height: math.unit(25000, "parsecs")
  3306. },
  3307. {
  3308. name: "Slightly Uncompressed",
  3309. height: math.unit(7.77e31, "parsecs")
  3310. },
  3311. {
  3312. name: "Omniversal",
  3313. height: math.unit(1e300, "meters")
  3314. },
  3315. ]
  3316. ))
  3317. characterMakers.push(() => makeCharacter(
  3318. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3319. {
  3320. front: {
  3321. height: math.unit(2, "meter"),
  3322. weight: math.unit(75, "lb"),
  3323. name: "Front",
  3324. image: {
  3325. source: "./media/characters/napalm/front.svg"
  3326. }
  3327. },
  3328. back: {
  3329. height: math.unit(2, "meter"),
  3330. weight: math.unit(75, "lb"),
  3331. name: "Back",
  3332. image: {
  3333. source: "./media/characters/napalm/back.svg"
  3334. }
  3335. }
  3336. },
  3337. [
  3338. {
  3339. name: "Standard",
  3340. height: math.unit(55, "feet"),
  3341. default: true
  3342. }
  3343. ]
  3344. ))
  3345. characterMakers.push(() => makeCharacter(
  3346. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3347. {
  3348. front: {
  3349. height: math.unit(7 + 5 / 6, "feet"),
  3350. weight: math.unit(325, "lb"),
  3351. name: "Front",
  3352. image: {
  3353. source: "./media/characters/asana/front.svg",
  3354. extra: 1133 / 1060,
  3355. bottom: 15.2 / 1148.6
  3356. }
  3357. },
  3358. back: {
  3359. height: math.unit(7 + 5 / 6, "feet"),
  3360. weight: math.unit(325, "lb"),
  3361. name: "Back",
  3362. image: {
  3363. source: "./media/characters/asana/back.svg",
  3364. extra: 1114 / 1043,
  3365. bottom: 5 / 1120
  3366. }
  3367. },
  3368. dressedDark: {
  3369. height: math.unit(7 + 5 / 6, "feet"),
  3370. weight: math.unit(325, "lb"),
  3371. name: "Dressed (Dark)",
  3372. image: {
  3373. source: "./media/characters/asana/dressed-dark.svg",
  3374. extra: 1133 / 1060,
  3375. bottom: 15.2 / 1148.6
  3376. }
  3377. },
  3378. dressedLight: {
  3379. height: math.unit(7 + 5 / 6, "feet"),
  3380. weight: math.unit(325, "lb"),
  3381. name: "Dressed (Light)",
  3382. image: {
  3383. source: "./media/characters/asana/dressed-light.svg",
  3384. extra: 1133 / 1060,
  3385. bottom: 15.2 / 1148.6
  3386. }
  3387. },
  3388. },
  3389. [
  3390. {
  3391. name: "Standard",
  3392. height: math.unit(7 + 5 / 6, "feet"),
  3393. default: true
  3394. },
  3395. {
  3396. name: "Large",
  3397. height: math.unit(10, "meters")
  3398. },
  3399. {
  3400. name: "Macro",
  3401. height: math.unit(2500, "meters")
  3402. },
  3403. {
  3404. name: "Megamacro",
  3405. height: math.unit(5e6, "meters")
  3406. },
  3407. {
  3408. name: "Examacro",
  3409. height: math.unit(5e12, "lightyears")
  3410. },
  3411. {
  3412. name: "Max Size",
  3413. height: math.unit(1e31, "lightyears")
  3414. }
  3415. ]
  3416. ))
  3417. characterMakers.push(() => makeCharacter(
  3418. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3419. {
  3420. front: {
  3421. height: math.unit(2, "meter"),
  3422. weight: math.unit(60, "kg"),
  3423. name: "Front",
  3424. image: {
  3425. source: "./media/characters/ebony/front.svg",
  3426. bottom: 0.03,
  3427. extra: 1045 / 810 + 0.03
  3428. }
  3429. },
  3430. side: {
  3431. height: math.unit(2, "meter"),
  3432. weight: math.unit(60, "kg"),
  3433. name: "Side",
  3434. image: {
  3435. source: "./media/characters/ebony/side.svg",
  3436. bottom: 0.03,
  3437. extra: 1045 / 810 + 0.03
  3438. }
  3439. },
  3440. back: {
  3441. height: math.unit(2, "meter"),
  3442. weight: math.unit(60, "kg"),
  3443. name: "Back",
  3444. image: {
  3445. source: "./media/characters/ebony/back.svg",
  3446. bottom: 0.01,
  3447. extra: 1045 / 810 + 0.01
  3448. }
  3449. },
  3450. },
  3451. [
  3452. // TODO check why I did this lol
  3453. {
  3454. name: "Standard",
  3455. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3456. default: true
  3457. },
  3458. {
  3459. name: "Macro",
  3460. height: math.unit(200, "feet")
  3461. },
  3462. {
  3463. name: "Gigamacro",
  3464. height: math.unit(13000, "km")
  3465. }
  3466. ]
  3467. ))
  3468. characterMakers.push(() => makeCharacter(
  3469. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3470. {
  3471. front: {
  3472. height: math.unit(6, "feet"),
  3473. weight: math.unit(175, "lb"),
  3474. name: "Front",
  3475. image: {
  3476. source: "./media/characters/mountain/front.svg",
  3477. extra: 972 / 955,
  3478. bottom: 64 / 1036.6
  3479. }
  3480. },
  3481. back: {
  3482. height: math.unit(6, "feet"),
  3483. weight: math.unit(175, "lb"),
  3484. name: "Back",
  3485. image: {
  3486. source: "./media/characters/mountain/back.svg",
  3487. extra: 970 / 950,
  3488. bottom: 28.25 / 999
  3489. }
  3490. },
  3491. },
  3492. [
  3493. {
  3494. name: "Large",
  3495. height: math.unit(20, "meters")
  3496. },
  3497. {
  3498. name: "Macro",
  3499. height: math.unit(300, "meters")
  3500. },
  3501. {
  3502. name: "Gigamacro",
  3503. height: math.unit(10000, "km"),
  3504. default: true
  3505. },
  3506. {
  3507. name: "Examacro",
  3508. height: math.unit(10e9, "lightyears")
  3509. }
  3510. ]
  3511. ))
  3512. characterMakers.push(() => makeCharacter(
  3513. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3514. {
  3515. front: {
  3516. height: math.unit(8, "feet"),
  3517. weight: math.unit(500, "lb"),
  3518. name: "Front",
  3519. image: {
  3520. source: "./media/characters/rick/front.svg"
  3521. }
  3522. }
  3523. },
  3524. [
  3525. {
  3526. name: "Normal",
  3527. height: math.unit(8, "feet"),
  3528. default: true
  3529. },
  3530. {
  3531. name: "Macro",
  3532. height: math.unit(5, "km")
  3533. }
  3534. ]
  3535. ))
  3536. characterMakers.push(() => makeCharacter(
  3537. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3538. {
  3539. front: {
  3540. height: math.unit(8, "feet"),
  3541. weight: math.unit(120, "lb"),
  3542. name: "Front",
  3543. image: {
  3544. source: "./media/characters/ona/front.svg"
  3545. }
  3546. },
  3547. frontAlt: {
  3548. height: math.unit(8, "feet"),
  3549. weight: math.unit(120, "lb"),
  3550. name: "Front (Alt)",
  3551. image: {
  3552. source: "./media/characters/ona/front-alt.svg"
  3553. }
  3554. },
  3555. back: {
  3556. height: math.unit(8, "feet"),
  3557. weight: math.unit(120, "lb"),
  3558. name: "Back",
  3559. image: {
  3560. source: "./media/characters/ona/back.svg"
  3561. }
  3562. },
  3563. foot: {
  3564. height: math.unit(1.1, "feet"),
  3565. name: "Foot",
  3566. image: {
  3567. source: "./media/characters/ona/foot.svg"
  3568. }
  3569. }
  3570. },
  3571. [
  3572. {
  3573. name: "Megamacro",
  3574. height: math.unit(70, "km"),
  3575. default: true
  3576. },
  3577. {
  3578. name: "Gigamacro",
  3579. height: math.unit(681818, "miles")
  3580. },
  3581. {
  3582. name: "Examacro",
  3583. height: math.unit(3800000, "lightyears")
  3584. },
  3585. ]
  3586. ))
  3587. characterMakers.push(() => makeCharacter(
  3588. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3589. {
  3590. front: {
  3591. height: math.unit(12, "feet"),
  3592. weight: math.unit(3000, "lb"),
  3593. name: "Front",
  3594. image: {
  3595. source: "./media/characters/mech/front.svg",
  3596. extra: 2900 / 2770,
  3597. bottom: 110 / 3010
  3598. }
  3599. },
  3600. back: {
  3601. height: math.unit(12, "feet"),
  3602. weight: math.unit(3000, "lb"),
  3603. name: "Back",
  3604. image: {
  3605. source: "./media/characters/mech/back.svg",
  3606. extra: 3011 / 2890,
  3607. bottom: 94 / 3105
  3608. }
  3609. },
  3610. maw: {
  3611. height: math.unit(3.07, "feet"),
  3612. name: "Maw",
  3613. image: {
  3614. source: "./media/characters/mech/maw.svg"
  3615. }
  3616. },
  3617. head: {
  3618. height: math.unit(2.82, "feet"),
  3619. name: "Head",
  3620. image: {
  3621. source: "./media/characters/mech/head.svg"
  3622. }
  3623. },
  3624. dick: {
  3625. height: math.unit(1.43, "feet"),
  3626. name: "Dick",
  3627. image: {
  3628. source: "./media/characters/mech/dick.svg"
  3629. }
  3630. },
  3631. },
  3632. [
  3633. {
  3634. name: "Normal",
  3635. height: math.unit(12, "feet")
  3636. },
  3637. {
  3638. name: "Macro",
  3639. height: math.unit(300, "feet"),
  3640. default: true
  3641. },
  3642. {
  3643. name: "Macro+",
  3644. height: math.unit(1500, "feet")
  3645. },
  3646. ]
  3647. ))
  3648. characterMakers.push(() => makeCharacter(
  3649. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3650. {
  3651. front: {
  3652. height: math.unit(1.3, "meter"),
  3653. weight: math.unit(30, "kg"),
  3654. name: "Front",
  3655. image: {
  3656. source: "./media/characters/gregory/front.svg",
  3657. }
  3658. }
  3659. },
  3660. [
  3661. {
  3662. name: "Normal",
  3663. height: math.unit(1.3, "meter"),
  3664. default: true
  3665. },
  3666. {
  3667. name: "Macro",
  3668. height: math.unit(20, "meter")
  3669. }
  3670. ]
  3671. ))
  3672. characterMakers.push(() => makeCharacter(
  3673. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3674. {
  3675. front: {
  3676. height: math.unit(2.8, "meter"),
  3677. weight: math.unit(200, "kg"),
  3678. name: "Front",
  3679. image: {
  3680. source: "./media/characters/elory/front.svg",
  3681. }
  3682. }
  3683. },
  3684. [
  3685. {
  3686. name: "Normal",
  3687. height: math.unit(2.8, "meter"),
  3688. default: true
  3689. },
  3690. {
  3691. name: "Macro",
  3692. height: math.unit(38, "meter")
  3693. }
  3694. ]
  3695. ))
  3696. characterMakers.push(() => makeCharacter(
  3697. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3698. {
  3699. front: {
  3700. height: math.unit(470, "feet"),
  3701. weight: math.unit(924, "tons"),
  3702. name: "Front",
  3703. image: {
  3704. source: "./media/characters/angelpatamon/front.svg",
  3705. }
  3706. }
  3707. },
  3708. [
  3709. {
  3710. name: "Normal",
  3711. height: math.unit(470, "feet"),
  3712. default: true
  3713. },
  3714. {
  3715. name: "Deity Size I",
  3716. height: math.unit(28651.2, "km")
  3717. },
  3718. {
  3719. name: "Deity Size II",
  3720. height: math.unit(171907.2, "km")
  3721. }
  3722. ]
  3723. ))
  3724. characterMakers.push(() => makeCharacter(
  3725. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3726. {
  3727. side: {
  3728. height: math.unit(7.2, "meter"),
  3729. weight: math.unit(8.2, "tons"),
  3730. name: "Side",
  3731. image: {
  3732. source: "./media/characters/cryae/side.svg",
  3733. extra: 3500 / 1500
  3734. }
  3735. }
  3736. },
  3737. [
  3738. {
  3739. name: "Normal",
  3740. height: math.unit(7.2, "meter"),
  3741. default: true
  3742. }
  3743. ]
  3744. ))
  3745. characterMakers.push(() => makeCharacter(
  3746. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3747. {
  3748. front: {
  3749. height: math.unit(6, "feet"),
  3750. weight: math.unit(175, "lb"),
  3751. name: "Front",
  3752. image: {
  3753. source: "./media/characters/xera/front.svg",
  3754. extra: 2377 / 1972,
  3755. bottom: 75.5 / 2452
  3756. }
  3757. },
  3758. side: {
  3759. height: math.unit(6, "feet"),
  3760. weight: math.unit(175, "lb"),
  3761. name: "Side",
  3762. image: {
  3763. source: "./media/characters/xera/side.svg",
  3764. extra: 2345 / 2019,
  3765. bottom: 39.7 / 2384
  3766. }
  3767. },
  3768. back: {
  3769. height: math.unit(6, "feet"),
  3770. weight: math.unit(175, "lb"),
  3771. name: "Back",
  3772. image: {
  3773. source: "./media/characters/xera/back.svg",
  3774. extra: 2095 / 1984,
  3775. bottom: 67 / 2166
  3776. }
  3777. },
  3778. },
  3779. [
  3780. {
  3781. name: "Small",
  3782. height: math.unit(10, "feet")
  3783. },
  3784. {
  3785. name: "Macro",
  3786. height: math.unit(500, "meters"),
  3787. default: true
  3788. },
  3789. {
  3790. name: "Macro+",
  3791. height: math.unit(10, "km")
  3792. },
  3793. {
  3794. name: "Gigamacro",
  3795. height: math.unit(25000, "km")
  3796. },
  3797. {
  3798. name: "Teramacro",
  3799. height: math.unit(3e6, "km")
  3800. }
  3801. ]
  3802. ))
  3803. characterMakers.push(() => makeCharacter(
  3804. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3805. {
  3806. front: {
  3807. height: math.unit(6, "feet"),
  3808. weight: math.unit(175, "lb"),
  3809. name: "Front",
  3810. image: {
  3811. source: "./media/characters/nebula/front.svg",
  3812. extra: 2566 / 2362,
  3813. bottom: 81 / 2644
  3814. }
  3815. }
  3816. },
  3817. [
  3818. {
  3819. name: "Small",
  3820. height: math.unit(4.5, "meters")
  3821. },
  3822. {
  3823. name: "Macro",
  3824. height: math.unit(1500, "meters"),
  3825. default: true
  3826. },
  3827. {
  3828. name: "Megamacro",
  3829. height: math.unit(150, "km")
  3830. },
  3831. {
  3832. name: "Gigamacro",
  3833. height: math.unit(27000, "km")
  3834. }
  3835. ]
  3836. ))
  3837. characterMakers.push(() => makeCharacter(
  3838. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3839. {
  3840. front: {
  3841. height: math.unit(6, "feet"),
  3842. weight: math.unit(225, "lb"),
  3843. name: "Front",
  3844. image: {
  3845. source: "./media/characters/abysgar/front.svg"
  3846. }
  3847. }
  3848. },
  3849. [
  3850. {
  3851. name: "Small",
  3852. height: math.unit(4.5, "meters")
  3853. },
  3854. {
  3855. name: "Macro",
  3856. height: math.unit(1250, "meters"),
  3857. default: true
  3858. },
  3859. {
  3860. name: "Megamacro",
  3861. height: math.unit(125, "km")
  3862. },
  3863. {
  3864. name: "Gigamacro",
  3865. height: math.unit(26000, "km")
  3866. }
  3867. ]
  3868. ))
  3869. characterMakers.push(() => makeCharacter(
  3870. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3871. {
  3872. front: {
  3873. height: math.unit(6, "feet"),
  3874. weight: math.unit(180, "lb"),
  3875. name: "Front",
  3876. image: {
  3877. source: "./media/characters/yakuz/front.svg"
  3878. }
  3879. }
  3880. },
  3881. [
  3882. {
  3883. name: "Small",
  3884. height: math.unit(5, "meters")
  3885. },
  3886. {
  3887. name: "Macro",
  3888. height: math.unit(1500, "meters"),
  3889. default: true
  3890. },
  3891. {
  3892. name: "Megamacro",
  3893. height: math.unit(200, "km")
  3894. },
  3895. {
  3896. name: "Gigamacro",
  3897. height: math.unit(100000, "km")
  3898. }
  3899. ]
  3900. ))
  3901. characterMakers.push(() => makeCharacter(
  3902. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3903. {
  3904. front: {
  3905. height: math.unit(6, "feet"),
  3906. weight: math.unit(175, "lb"),
  3907. name: "Front",
  3908. image: {
  3909. source: "./media/characters/mirova/front.svg",
  3910. extra: 3334 / 3071,
  3911. bottom: 42 / 3375.6
  3912. }
  3913. }
  3914. },
  3915. [
  3916. {
  3917. name: "Small",
  3918. height: math.unit(5, "meters")
  3919. },
  3920. {
  3921. name: "Macro",
  3922. height: math.unit(900, "meters"),
  3923. default: true
  3924. },
  3925. {
  3926. name: "Megamacro",
  3927. height: math.unit(135, "km")
  3928. },
  3929. {
  3930. name: "Gigamacro",
  3931. height: math.unit(20000, "km")
  3932. }
  3933. ]
  3934. ))
  3935. characterMakers.push(() => makeCharacter(
  3936. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3937. {
  3938. side: {
  3939. height: math.unit(28.35, "feet"),
  3940. weight: math.unit(99.75, "tons"),
  3941. name: "Side",
  3942. image: {
  3943. source: "./media/characters/asana-mech/side.svg",
  3944. extra: 923 / 699,
  3945. bottom: 50 / 975
  3946. }
  3947. },
  3948. chaingun: {
  3949. height: math.unit(7, "feet"),
  3950. weight: math.unit(2400, "lb"),
  3951. name: "Chaingun",
  3952. image: {
  3953. source: "./media/characters/asana-mech/chaingun.svg"
  3954. }
  3955. },
  3956. laser: {
  3957. height: math.unit(7.12, "feet"),
  3958. weight: math.unit(2000, "lb"),
  3959. name: "Laser",
  3960. image: {
  3961. source: "./media/characters/asana-mech/laser.svg"
  3962. }
  3963. },
  3964. },
  3965. [
  3966. {
  3967. name: "Normal",
  3968. height: math.unit(28.35, "feet"),
  3969. default: true
  3970. },
  3971. {
  3972. name: "Macro",
  3973. height: math.unit(2500, "feet")
  3974. },
  3975. {
  3976. name: "Megamacro",
  3977. height: math.unit(25, "miles")
  3978. },
  3979. {
  3980. name: "Examacro",
  3981. height: math.unit(6e8, "lightyears")
  3982. },
  3983. ]
  3984. ))
  3985. characterMakers.push(() => makeCharacter(
  3986. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3987. {
  3988. front: {
  3989. height: math.unit(5, "meters"),
  3990. weight: math.unit(1000, "kg"),
  3991. name: "Front",
  3992. image: {
  3993. source: "./media/characters/asche/front.svg",
  3994. extra: 1258 / 1190,
  3995. bottom: 47 / 1305
  3996. }
  3997. },
  3998. frontUnderwear: {
  3999. height: math.unit(5, "meters"),
  4000. weight: math.unit(1000, "kg"),
  4001. name: "Front (Underwear)",
  4002. image: {
  4003. source: "./media/characters/asche/front-underwear.svg",
  4004. extra: 1258 / 1190,
  4005. bottom: 47 / 1305
  4006. }
  4007. },
  4008. frontDressed: {
  4009. height: math.unit(5, "meters"),
  4010. weight: math.unit(1000, "kg"),
  4011. name: "Front (Dressed)",
  4012. image: {
  4013. source: "./media/characters/asche/front-dressed.svg",
  4014. extra: 1258 / 1190,
  4015. bottom: 47 / 1305
  4016. }
  4017. },
  4018. frontArmor: {
  4019. height: math.unit(5, "meters"),
  4020. weight: math.unit(1000, "kg"),
  4021. name: "Front (Armored)",
  4022. image: {
  4023. source: "./media/characters/asche/front-armored.svg",
  4024. extra: 1374 / 1308,
  4025. bottom: 23 / 1397
  4026. }
  4027. },
  4028. mp724: {
  4029. height: math.unit(0.96, "meters"),
  4030. weight: math.unit(38, "kg"),
  4031. name: "H&K MP724",
  4032. image: {
  4033. source: "./media/characters/asche/h&k-mp724.svg"
  4034. }
  4035. },
  4036. side: {
  4037. height: math.unit(5, "meters"),
  4038. weight: math.unit(1000, "kg"),
  4039. name: "Side",
  4040. image: {
  4041. source: "./media/characters/asche/side.svg",
  4042. extra: 1717 / 1609,
  4043. bottom: 0.005
  4044. }
  4045. },
  4046. back: {
  4047. height: math.unit(5, "meters"),
  4048. weight: math.unit(1000, "kg"),
  4049. name: "Back",
  4050. image: {
  4051. source: "./media/characters/asche/back.svg",
  4052. extra: 1570 / 1501
  4053. }
  4054. },
  4055. },
  4056. [
  4057. {
  4058. name: "DEFCON 5",
  4059. height: math.unit(5, "meters")
  4060. },
  4061. {
  4062. name: "DEFCON 4",
  4063. height: math.unit(500, "meters"),
  4064. default: true
  4065. },
  4066. {
  4067. name: "DEFCON 3",
  4068. height: math.unit(5, "km")
  4069. },
  4070. {
  4071. name: "DEFCON 2",
  4072. height: math.unit(500, "km")
  4073. },
  4074. {
  4075. name: "DEFCON 1",
  4076. height: math.unit(500000, "km")
  4077. },
  4078. {
  4079. name: "DEFCON 0",
  4080. height: math.unit(3, "gigaparsecs")
  4081. },
  4082. ]
  4083. ))
  4084. characterMakers.push(() => makeCharacter(
  4085. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4086. {
  4087. front: {
  4088. height: math.unit(2, "meters"),
  4089. weight: math.unit(76, "kg"),
  4090. name: "Front",
  4091. image: {
  4092. source: "./media/characters/gale/front.svg"
  4093. }
  4094. },
  4095. frontAlt1: {
  4096. height: math.unit(2, "meters"),
  4097. weight: math.unit(76, "kg"),
  4098. name: "Front (Alt 1)",
  4099. image: {
  4100. source: "./media/characters/gale/front-alt-1.svg"
  4101. }
  4102. },
  4103. frontAlt2: {
  4104. height: math.unit(2, "meters"),
  4105. weight: math.unit(76, "kg"),
  4106. name: "Front (Alt 2)",
  4107. image: {
  4108. source: "./media/characters/gale/front-alt-2.svg"
  4109. }
  4110. },
  4111. },
  4112. [
  4113. {
  4114. name: "Normal",
  4115. height: math.unit(7, "feet")
  4116. },
  4117. {
  4118. name: "Macro",
  4119. height: math.unit(150, "feet"),
  4120. default: true
  4121. },
  4122. {
  4123. name: "Macro+",
  4124. height: math.unit(300, "feet")
  4125. },
  4126. ]
  4127. ))
  4128. characterMakers.push(() => makeCharacter(
  4129. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4130. {
  4131. front: {
  4132. height: math.unit(2, "meters"),
  4133. weight: math.unit(76, "kg"),
  4134. name: "Front",
  4135. image: {
  4136. source: "./media/characters/draylen/front.svg"
  4137. }
  4138. }
  4139. },
  4140. [
  4141. {
  4142. name: "Macro",
  4143. height: math.unit(150, "feet"),
  4144. default: true
  4145. }
  4146. ]
  4147. ))
  4148. characterMakers.push(() => makeCharacter(
  4149. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4150. {
  4151. front: {
  4152. height: math.unit(7 + 9 / 12, "feet"),
  4153. weight: math.unit(379, "lbs"),
  4154. name: "Front",
  4155. image: {
  4156. source: "./media/characters/chez/front.svg"
  4157. }
  4158. },
  4159. side: {
  4160. height: math.unit(7 + 9 / 12, "feet"),
  4161. weight: math.unit(379, "lbs"),
  4162. name: "Side",
  4163. image: {
  4164. source: "./media/characters/chez/side.svg"
  4165. }
  4166. }
  4167. },
  4168. [
  4169. {
  4170. name: "Normal",
  4171. height: math.unit(7 + 9 / 12, "feet"),
  4172. default: true
  4173. },
  4174. {
  4175. name: "God King",
  4176. height: math.unit(9750000, "meters")
  4177. }
  4178. ]
  4179. ))
  4180. characterMakers.push(() => makeCharacter(
  4181. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4182. {
  4183. front: {
  4184. height: math.unit(6, "feet"),
  4185. weight: math.unit(275, "lbs"),
  4186. name: "Front",
  4187. image: {
  4188. source: "./media/characters/kaylum/front.svg",
  4189. bottom: 0.01,
  4190. extra: 1166 / 1031
  4191. }
  4192. },
  4193. frontWingless: {
  4194. height: math.unit(6, "feet"),
  4195. weight: math.unit(275, "lbs"),
  4196. name: "Front (Wingless)",
  4197. image: {
  4198. source: "./media/characters/kaylum/front-wingless.svg",
  4199. bottom: 0.01,
  4200. extra: 1117 / 1031
  4201. }
  4202. }
  4203. },
  4204. [
  4205. {
  4206. name: "Normal",
  4207. height: math.unit(3.05, "meters")
  4208. },
  4209. {
  4210. name: "Master",
  4211. height: math.unit(5.5, "meters")
  4212. },
  4213. {
  4214. name: "Rampage",
  4215. height: math.unit(19, "meters")
  4216. },
  4217. {
  4218. name: "Macro Lite",
  4219. height: math.unit(37, "meters")
  4220. },
  4221. {
  4222. name: "Hyper Predator",
  4223. height: math.unit(61, "meters")
  4224. },
  4225. {
  4226. name: "Macro",
  4227. height: math.unit(138, "meters"),
  4228. default: true
  4229. }
  4230. ]
  4231. ))
  4232. characterMakers.push(() => makeCharacter(
  4233. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4234. {
  4235. front: {
  4236. height: math.unit(6, "feet"),
  4237. weight: math.unit(150, "lbs"),
  4238. name: "Front",
  4239. image: {
  4240. source: "./media/characters/geta/front.svg"
  4241. }
  4242. }
  4243. },
  4244. [
  4245. {
  4246. name: "Micro",
  4247. height: math.unit(3, "inches"),
  4248. default: true
  4249. },
  4250. {
  4251. name: "Normal",
  4252. height: math.unit(5 + 5 / 12, "feet")
  4253. }
  4254. ]
  4255. ))
  4256. characterMakers.push(() => makeCharacter(
  4257. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4258. {
  4259. front: {
  4260. height: math.unit(6, "feet"),
  4261. weight: math.unit(300, "lbs"),
  4262. name: "Front",
  4263. image: {
  4264. source: "./media/characters/tyrnn/front.svg"
  4265. }
  4266. }
  4267. },
  4268. [
  4269. {
  4270. name: "Main Height",
  4271. height: math.unit(355, "feet"),
  4272. default: true
  4273. },
  4274. {
  4275. name: "Fave. Height",
  4276. height: math.unit(2400, "feet")
  4277. }
  4278. ]
  4279. ))
  4280. characterMakers.push(() => makeCharacter(
  4281. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4282. {
  4283. front: {
  4284. height: math.unit(6, "feet"),
  4285. weight: math.unit(300, "lbs"),
  4286. name: "Front",
  4287. image: {
  4288. source: "./media/characters/appledectomy/front.svg"
  4289. }
  4290. }
  4291. },
  4292. [
  4293. {
  4294. name: "Macro",
  4295. height: math.unit(2500, "feet")
  4296. },
  4297. {
  4298. name: "Megamacro",
  4299. height: math.unit(50, "miles"),
  4300. default: true
  4301. },
  4302. {
  4303. name: "Gigamacro",
  4304. height: math.unit(5000, "miles")
  4305. },
  4306. {
  4307. name: "Teramacro",
  4308. height: math.unit(250000, "miles")
  4309. },
  4310. ]
  4311. ))
  4312. characterMakers.push(() => makeCharacter(
  4313. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4314. {
  4315. front: {
  4316. height: math.unit(6, "feet"),
  4317. weight: math.unit(200, "lbs"),
  4318. name: "Front",
  4319. image: {
  4320. source: "./media/characters/vulpes/front.svg",
  4321. extra: 573 / 543,
  4322. bottom: 0.033
  4323. }
  4324. },
  4325. side: {
  4326. height: math.unit(6, "feet"),
  4327. weight: math.unit(200, "lbs"),
  4328. name: "Side",
  4329. image: {
  4330. source: "./media/characters/vulpes/side.svg",
  4331. extra: 577 / 549,
  4332. bottom: 11 / 588
  4333. }
  4334. },
  4335. back: {
  4336. height: math.unit(6, "feet"),
  4337. weight: math.unit(200, "lbs"),
  4338. name: "Back",
  4339. image: {
  4340. source: "./media/characters/vulpes/back.svg",
  4341. extra: 573 / 549,
  4342. bottom: 20 / 593
  4343. }
  4344. },
  4345. feet: {
  4346. height: math.unit(1.276, "feet"),
  4347. name: "Feet",
  4348. image: {
  4349. source: "./media/characters/vulpes/feet.svg"
  4350. }
  4351. },
  4352. maw: {
  4353. height: math.unit(1.18, "feet"),
  4354. name: "Maw",
  4355. image: {
  4356. source: "./media/characters/vulpes/maw.svg"
  4357. }
  4358. },
  4359. },
  4360. [
  4361. {
  4362. name: "Micro",
  4363. height: math.unit(2, "inches")
  4364. },
  4365. {
  4366. name: "Normal",
  4367. height: math.unit(6.3, "feet")
  4368. },
  4369. {
  4370. name: "Macro",
  4371. height: math.unit(850, "feet")
  4372. },
  4373. {
  4374. name: "Megamacro",
  4375. height: math.unit(7500, "feet"),
  4376. default: true
  4377. },
  4378. {
  4379. name: "Gigamacro",
  4380. height: math.unit(570000, "miles")
  4381. }
  4382. ]
  4383. ))
  4384. characterMakers.push(() => makeCharacter(
  4385. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4386. {
  4387. front: {
  4388. height: math.unit(6, "feet"),
  4389. weight: math.unit(210, "lbs"),
  4390. name: "Front",
  4391. image: {
  4392. source: "./media/characters/rain-fallen/front.svg"
  4393. }
  4394. },
  4395. side: {
  4396. height: math.unit(6, "feet"),
  4397. weight: math.unit(210, "lbs"),
  4398. name: "Side",
  4399. image: {
  4400. source: "./media/characters/rain-fallen/side.svg"
  4401. }
  4402. },
  4403. back: {
  4404. height: math.unit(6, "feet"),
  4405. weight: math.unit(210, "lbs"),
  4406. name: "Back",
  4407. image: {
  4408. source: "./media/characters/rain-fallen/back.svg"
  4409. }
  4410. },
  4411. feral: {
  4412. height: math.unit(9, "feet"),
  4413. weight: math.unit(700, "lbs"),
  4414. name: "Feral",
  4415. image: {
  4416. source: "./media/characters/rain-fallen/feral.svg"
  4417. }
  4418. },
  4419. },
  4420. [
  4421. {
  4422. name: "Meddling with Mortals",
  4423. height: math.unit(8 + 8/12, "feet")
  4424. },
  4425. {
  4426. name: "Normal",
  4427. height: math.unit(5, "meter")
  4428. },
  4429. {
  4430. name: "Macro",
  4431. height: math.unit(150, "meter"),
  4432. default: true
  4433. },
  4434. {
  4435. name: "Megamacro",
  4436. height: math.unit(278e6, "meter")
  4437. },
  4438. {
  4439. name: "Gigamacro",
  4440. height: math.unit(2e9, "meter")
  4441. },
  4442. {
  4443. name: "Teramacro",
  4444. height: math.unit(8e12, "meter")
  4445. },
  4446. {
  4447. name: "Devourer",
  4448. height: math.unit(14, "zettameters")
  4449. },
  4450. {
  4451. name: "Scarlet King",
  4452. height: math.unit(18, "yottameters")
  4453. },
  4454. {
  4455. name: "Void",
  4456. height: math.unit(1e88, "yottameters")
  4457. }
  4458. ]
  4459. ))
  4460. characterMakers.push(() => makeCharacter(
  4461. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4462. {
  4463. standing: {
  4464. height: math.unit(6, "feet"),
  4465. weight: math.unit(180, "lbs"),
  4466. name: "Standing",
  4467. image: {
  4468. source: "./media/characters/zaakira/standing.svg"
  4469. }
  4470. },
  4471. laying: {
  4472. height: math.unit(3, "feet"),
  4473. weight: math.unit(180, "lbs"),
  4474. name: "Laying",
  4475. image: {
  4476. source: "./media/characters/zaakira/laying.svg"
  4477. }
  4478. },
  4479. },
  4480. [
  4481. {
  4482. name: "Normal",
  4483. height: math.unit(12, "feet")
  4484. },
  4485. {
  4486. name: "Macro",
  4487. height: math.unit(279, "feet"),
  4488. default: true
  4489. }
  4490. ]
  4491. ))
  4492. characterMakers.push(() => makeCharacter(
  4493. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4494. {
  4495. femSfw: {
  4496. height: math.unit(8, "feet"),
  4497. weight: math.unit(350, "lb"),
  4498. name: "Fem",
  4499. image: {
  4500. source: "./media/characters/sigvald/fem-sfw.svg",
  4501. extra: 182 / 164,
  4502. bottom: 8.7 / 190.5
  4503. }
  4504. },
  4505. femNsfw: {
  4506. height: math.unit(8, "feet"),
  4507. weight: math.unit(350, "lb"),
  4508. name: "Fem (NSFW)",
  4509. image: {
  4510. source: "./media/characters/sigvald/fem-nsfw.svg",
  4511. extra: 182 / 164,
  4512. bottom: 8.7 / 190.5
  4513. }
  4514. },
  4515. maleNsfw: {
  4516. height: math.unit(8, "feet"),
  4517. weight: math.unit(350, "lb"),
  4518. name: "Male (NSFW)",
  4519. image: {
  4520. source: "./media/characters/sigvald/male-nsfw.svg",
  4521. extra: 182 / 164,
  4522. bottom: 8.7 / 190.5
  4523. }
  4524. },
  4525. hermNsfw: {
  4526. height: math.unit(8, "feet"),
  4527. weight: math.unit(350, "lb"),
  4528. name: "Herm (NSFW)",
  4529. image: {
  4530. source: "./media/characters/sigvald/herm-nsfw.svg",
  4531. extra: 182 / 164,
  4532. bottom: 8.7 / 190.5
  4533. }
  4534. },
  4535. dick: {
  4536. height: math.unit(2.36, "feet"),
  4537. name: "Dick",
  4538. image: {
  4539. source: "./media/characters/sigvald/dick.svg"
  4540. }
  4541. },
  4542. eye: {
  4543. height: math.unit(0.31, "feet"),
  4544. name: "Eye",
  4545. image: {
  4546. source: "./media/characters/sigvald/eye.svg"
  4547. }
  4548. },
  4549. mouth: {
  4550. height: math.unit(0.92, "feet"),
  4551. name: "Mouth",
  4552. image: {
  4553. source: "./media/characters/sigvald/mouth.svg"
  4554. }
  4555. },
  4556. paws: {
  4557. height: math.unit(2.2, "feet"),
  4558. name: "Paws",
  4559. image: {
  4560. source: "./media/characters/sigvald/paws.svg"
  4561. }
  4562. }
  4563. },
  4564. [
  4565. {
  4566. name: "Normal",
  4567. height: math.unit(8, "feet")
  4568. },
  4569. {
  4570. name: "Large",
  4571. height: math.unit(12, "feet")
  4572. },
  4573. {
  4574. name: "Larger",
  4575. height: math.unit(20, "feet")
  4576. },
  4577. {
  4578. name: "Macro",
  4579. height: math.unit(150, "feet")
  4580. },
  4581. {
  4582. name: "Macro+",
  4583. height: math.unit(200, "feet"),
  4584. default: true
  4585. },
  4586. ]
  4587. ))
  4588. characterMakers.push(() => makeCharacter(
  4589. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4590. {
  4591. side: {
  4592. height: math.unit(12, "feet"),
  4593. weight: math.unit(2000, "kg"),
  4594. name: "Side",
  4595. image: {
  4596. source: "./media/characters/scott/side.svg",
  4597. extra: 754 / 724,
  4598. bottom: 0.069
  4599. }
  4600. },
  4601. upright: {
  4602. height: math.unit(12, "feet"),
  4603. weight: math.unit(2000, "kg"),
  4604. name: "Upright",
  4605. image: {
  4606. source: "./media/characters/scott/upright.svg",
  4607. extra: 3881 / 3722,
  4608. bottom: 0.05
  4609. }
  4610. },
  4611. },
  4612. [
  4613. {
  4614. name: "Normal",
  4615. height: math.unit(12, "feet"),
  4616. default: true
  4617. },
  4618. ]
  4619. ))
  4620. characterMakers.push(() => makeCharacter(
  4621. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4622. {
  4623. side: {
  4624. height: math.unit(8, "meters"),
  4625. weight: math.unit(84755, "lbs"),
  4626. name: "Side",
  4627. image: {
  4628. source: "./media/characters/tobias/side.svg",
  4629. extra: 1474 / 1096,
  4630. bottom: 38.9 / 1513.1235
  4631. }
  4632. },
  4633. },
  4634. [
  4635. {
  4636. name: "Normal",
  4637. height: math.unit(8, "meters"),
  4638. default: true
  4639. },
  4640. ]
  4641. ))
  4642. characterMakers.push(() => makeCharacter(
  4643. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4644. {
  4645. front: {
  4646. height: math.unit(5.5, "feet"),
  4647. weight: math.unit(400, "lbs"),
  4648. name: "Front",
  4649. image: {
  4650. source: "./media/characters/kieran/front.svg",
  4651. extra: 2694 / 2364,
  4652. bottom: 217 / 2908
  4653. }
  4654. },
  4655. side: {
  4656. height: math.unit(5.5, "feet"),
  4657. weight: math.unit(400, "lbs"),
  4658. name: "Side",
  4659. image: {
  4660. source: "./media/characters/kieran/side.svg",
  4661. extra: 875 / 777,
  4662. bottom: 84.6 / 959
  4663. }
  4664. },
  4665. },
  4666. [
  4667. {
  4668. name: "Normal",
  4669. height: math.unit(5.5, "feet"),
  4670. default: true
  4671. },
  4672. ]
  4673. ))
  4674. characterMakers.push(() => makeCharacter(
  4675. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4676. {
  4677. side: {
  4678. height: math.unit(2, "meters"),
  4679. weight: math.unit(70, "kg"),
  4680. name: "Side",
  4681. image: {
  4682. source: "./media/characters/sanya/side.svg",
  4683. bottom: 0.02,
  4684. extra: 1.02
  4685. }
  4686. },
  4687. },
  4688. [
  4689. {
  4690. name: "Small",
  4691. height: math.unit(2, "meters")
  4692. },
  4693. {
  4694. name: "Normal",
  4695. height: math.unit(3, "meters")
  4696. },
  4697. {
  4698. name: "Macro",
  4699. height: math.unit(16, "meters"),
  4700. default: true
  4701. },
  4702. ]
  4703. ))
  4704. characterMakers.push(() => makeCharacter(
  4705. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4706. {
  4707. front: {
  4708. height: math.unit(2, "meters"),
  4709. weight: math.unit(120, "kg"),
  4710. name: "Front",
  4711. image: {
  4712. source: "./media/characters/miranda/front.svg",
  4713. extra: 195 / 185,
  4714. bottom: 10.9 / 206.5
  4715. }
  4716. },
  4717. back: {
  4718. height: math.unit(2, "meters"),
  4719. weight: math.unit(120, "kg"),
  4720. name: "Back",
  4721. image: {
  4722. source: "./media/characters/miranda/back.svg",
  4723. extra: 201 / 193,
  4724. bottom: 2.3 / 203.7
  4725. }
  4726. },
  4727. },
  4728. [
  4729. {
  4730. name: "Normal",
  4731. height: math.unit(10, "feet"),
  4732. default: true
  4733. }
  4734. ]
  4735. ))
  4736. characterMakers.push(() => makeCharacter(
  4737. { name: "James", species: ["deer"], tags: ["anthro"] },
  4738. {
  4739. side: {
  4740. height: math.unit(2, "meters"),
  4741. weight: math.unit(100, "kg"),
  4742. name: "Front",
  4743. image: {
  4744. source: "./media/characters/james/front.svg",
  4745. extra: 10 / 8.5
  4746. }
  4747. },
  4748. },
  4749. [
  4750. {
  4751. name: "Normal",
  4752. height: math.unit(8.5, "feet"),
  4753. default: true
  4754. }
  4755. ]
  4756. ))
  4757. characterMakers.push(() => makeCharacter(
  4758. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4759. {
  4760. side: {
  4761. height: math.unit(9.5, "feet"),
  4762. weight: math.unit(2500, "lbs"),
  4763. name: "Side",
  4764. image: {
  4765. source: "./media/characters/heather/side.svg"
  4766. }
  4767. },
  4768. },
  4769. [
  4770. {
  4771. name: "Normal",
  4772. height: math.unit(9.5, "feet"),
  4773. default: true
  4774. }
  4775. ]
  4776. ))
  4777. characterMakers.push(() => makeCharacter(
  4778. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4779. {
  4780. side: {
  4781. height: math.unit(6.5, "feet"),
  4782. weight: math.unit(400, "lbs"),
  4783. name: "Side",
  4784. image: {
  4785. source: "./media/characters/lukas/side.svg",
  4786. extra: 7.25 / 6.5
  4787. }
  4788. },
  4789. },
  4790. [
  4791. {
  4792. name: "Normal",
  4793. height: math.unit(6.5, "feet"),
  4794. default: true
  4795. }
  4796. ]
  4797. ))
  4798. characterMakers.push(() => makeCharacter(
  4799. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4800. {
  4801. side: {
  4802. height: math.unit(5, "feet"),
  4803. weight: math.unit(3000, "lbs"),
  4804. name: "Side",
  4805. image: {
  4806. source: "./media/characters/louise/side.svg"
  4807. }
  4808. },
  4809. },
  4810. [
  4811. {
  4812. name: "Normal",
  4813. height: math.unit(5, "feet"),
  4814. default: true
  4815. }
  4816. ]
  4817. ))
  4818. characterMakers.push(() => makeCharacter(
  4819. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4820. {
  4821. side: {
  4822. height: math.unit(6, "feet"),
  4823. weight: math.unit(150, "lbs"),
  4824. name: "Side",
  4825. image: {
  4826. source: "./media/characters/ramona/side.svg"
  4827. }
  4828. },
  4829. },
  4830. [
  4831. {
  4832. name: "Normal",
  4833. height: math.unit(5.3, "meters"),
  4834. default: true
  4835. },
  4836. {
  4837. name: "Macro",
  4838. height: math.unit(20, "stories")
  4839. },
  4840. {
  4841. name: "Macro+",
  4842. height: math.unit(50, "stories")
  4843. },
  4844. ]
  4845. ))
  4846. characterMakers.push(() => makeCharacter(
  4847. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4848. {
  4849. standing: {
  4850. height: math.unit(5.75, "feet"),
  4851. weight: math.unit(160, "lbs"),
  4852. name: "Standing",
  4853. image: {
  4854. source: "./media/characters/deerpuff/standing.svg",
  4855. extra: 682 / 624
  4856. }
  4857. },
  4858. sitting: {
  4859. height: math.unit(5.75 / 1.79, "feet"),
  4860. weight: math.unit(160, "lbs"),
  4861. name: "Sitting",
  4862. image: {
  4863. source: "./media/characters/deerpuff/sitting.svg",
  4864. bottom: 44 / 400,
  4865. extra: 1
  4866. }
  4867. },
  4868. taurLaying: {
  4869. height: math.unit(6, "feet"),
  4870. weight: math.unit(400, "lbs"),
  4871. name: "Taur (Laying)",
  4872. image: {
  4873. source: "./media/characters/deerpuff/taur-laying.svg"
  4874. }
  4875. },
  4876. },
  4877. [
  4878. {
  4879. name: "Puffball",
  4880. height: math.unit(6, "inches")
  4881. },
  4882. {
  4883. name: "Normalpuff",
  4884. height: math.unit(5.75, "feet")
  4885. },
  4886. {
  4887. name: "Macropuff",
  4888. height: math.unit(1500, "feet"),
  4889. default: true
  4890. },
  4891. {
  4892. name: "Megapuff",
  4893. height: math.unit(500, "miles")
  4894. },
  4895. {
  4896. name: "Gigapuff",
  4897. height: math.unit(250000, "miles")
  4898. },
  4899. {
  4900. name: "Omegapuff",
  4901. height: math.unit(1000, "lightyears")
  4902. },
  4903. ]
  4904. ))
  4905. characterMakers.push(() => makeCharacter(
  4906. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4907. {
  4908. stomping: {
  4909. height: math.unit(6, "feet"),
  4910. weight: math.unit(170, "lbs"),
  4911. name: "Stomping",
  4912. image: {
  4913. source: "./media/characters/vivian/stomping.svg"
  4914. }
  4915. },
  4916. sitting: {
  4917. height: math.unit(6 / 1.75, "feet"),
  4918. weight: math.unit(170, "lbs"),
  4919. name: "Sitting",
  4920. image: {
  4921. source: "./media/characters/vivian/sitting.svg",
  4922. bottom: 1 / 6.4,
  4923. extra: 1,
  4924. }
  4925. },
  4926. },
  4927. [
  4928. {
  4929. name: "Normal",
  4930. height: math.unit(7, "feet"),
  4931. default: true
  4932. },
  4933. {
  4934. name: "Macro",
  4935. height: math.unit(10, "stories")
  4936. },
  4937. {
  4938. name: "Macro+",
  4939. height: math.unit(30, "stories")
  4940. },
  4941. {
  4942. name: "Megamacro",
  4943. height: math.unit(10, "miles")
  4944. },
  4945. {
  4946. name: "Megamacro+",
  4947. height: math.unit(2750000, "meters")
  4948. },
  4949. ]
  4950. ))
  4951. characterMakers.push(() => makeCharacter(
  4952. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4953. {
  4954. front: {
  4955. height: math.unit(6, "feet"),
  4956. weight: math.unit(160, "lbs"),
  4957. name: "Front",
  4958. image: {
  4959. source: "./media/characters/prince/front.svg",
  4960. extra: 3400 / 3000
  4961. }
  4962. },
  4963. jumping: {
  4964. height: math.unit(6, "feet"),
  4965. weight: math.unit(160, "lbs"),
  4966. name: "Jumping",
  4967. image: {
  4968. source: "./media/characters/prince/jump.svg",
  4969. extra: 2555 / 2134
  4970. }
  4971. },
  4972. },
  4973. [
  4974. {
  4975. name: "Normal",
  4976. height: math.unit(7.75, "feet"),
  4977. default: true
  4978. },
  4979. {
  4980. name: "Not cute",
  4981. height: math.unit(17, "feet")
  4982. },
  4983. {
  4984. name: "I said NOT",
  4985. height: math.unit(91, "feet")
  4986. },
  4987. {
  4988. name: "Please stop",
  4989. height: math.unit(560, "feet")
  4990. },
  4991. {
  4992. name: "What have you done",
  4993. height: math.unit(2200, "feet")
  4994. },
  4995. {
  4996. name: "Deer God",
  4997. height: math.unit(3.6, "miles")
  4998. },
  4999. ]
  5000. ))
  5001. characterMakers.push(() => makeCharacter(
  5002. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  5003. {
  5004. standing: {
  5005. height: math.unit(6, "feet"),
  5006. weight: math.unit(300, "lbs"),
  5007. name: "Standing",
  5008. image: {
  5009. source: "./media/characters/psymon/standing.svg",
  5010. extra: 1888 / 1810,
  5011. bottom: 0.05
  5012. }
  5013. },
  5014. slithering: {
  5015. height: math.unit(6, "feet"),
  5016. weight: math.unit(300, "lbs"),
  5017. name: "Slithering",
  5018. image: {
  5019. source: "./media/characters/psymon/slithering.svg",
  5020. extra: 1330 / 1224
  5021. }
  5022. },
  5023. slitheringAlt: {
  5024. height: math.unit(6, "feet"),
  5025. weight: math.unit(300, "lbs"),
  5026. name: "Slithering (Alt)",
  5027. image: {
  5028. source: "./media/characters/psymon/slithering-alt.svg",
  5029. extra: 1330 / 1224
  5030. }
  5031. },
  5032. },
  5033. [
  5034. {
  5035. name: "Normal",
  5036. height: math.unit(11.25, "feet"),
  5037. default: true
  5038. },
  5039. {
  5040. name: "Large",
  5041. height: math.unit(27, "feet")
  5042. },
  5043. {
  5044. name: "Giant",
  5045. height: math.unit(87, "feet")
  5046. },
  5047. {
  5048. name: "Macro",
  5049. height: math.unit(365, "feet")
  5050. },
  5051. {
  5052. name: "Megamacro",
  5053. height: math.unit(3, "miles")
  5054. },
  5055. {
  5056. name: "World Serpent",
  5057. height: math.unit(8000, "miles")
  5058. },
  5059. ]
  5060. ))
  5061. characterMakers.push(() => makeCharacter(
  5062. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5063. {
  5064. front: {
  5065. height: math.unit(6, "feet"),
  5066. weight: math.unit(180, "lbs"),
  5067. name: "Front",
  5068. image: {
  5069. source: "./media/characters/daimos/front.svg",
  5070. extra: 4160 / 3897,
  5071. bottom: 0.021
  5072. }
  5073. }
  5074. },
  5075. [
  5076. {
  5077. name: "Normal",
  5078. height: math.unit(8, "feet"),
  5079. default: true
  5080. },
  5081. {
  5082. name: "Big Dog",
  5083. height: math.unit(22, "feet")
  5084. },
  5085. {
  5086. name: "Macro",
  5087. height: math.unit(127, "feet")
  5088. },
  5089. {
  5090. name: "Megamacro",
  5091. height: math.unit(3600, "feet")
  5092. },
  5093. ]
  5094. ))
  5095. characterMakers.push(() => makeCharacter(
  5096. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5097. {
  5098. side: {
  5099. height: math.unit(6, "feet"),
  5100. weight: math.unit(180, "lbs"),
  5101. name: "Side",
  5102. image: {
  5103. source: "./media/characters/blake/side.svg",
  5104. extra: 1212 / 1120,
  5105. bottom: 0.05
  5106. }
  5107. },
  5108. crouched: {
  5109. height: math.unit(6 * 0.57, "feet"),
  5110. weight: math.unit(180, "lbs"),
  5111. name: "Crouched",
  5112. image: {
  5113. source: "./media/characters/blake/crouched.svg",
  5114. extra: 840 / 587,
  5115. bottom: 0.04
  5116. }
  5117. },
  5118. bent: {
  5119. height: math.unit(6 * 0.75, "feet"),
  5120. weight: math.unit(180, "lbs"),
  5121. name: "Bent",
  5122. image: {
  5123. source: "./media/characters/blake/bent.svg",
  5124. extra: 592 / 544,
  5125. bottom: 0.035
  5126. }
  5127. },
  5128. },
  5129. [
  5130. {
  5131. name: "Normal",
  5132. height: math.unit(8 + 1 / 6, "feet"),
  5133. default: true
  5134. },
  5135. {
  5136. name: "Big Backside",
  5137. height: math.unit(37, "feet")
  5138. },
  5139. {
  5140. name: "Subway Shredder",
  5141. height: math.unit(72, "feet")
  5142. },
  5143. {
  5144. name: "City Carver",
  5145. height: math.unit(1675, "feet")
  5146. },
  5147. {
  5148. name: "Tectonic Tweaker",
  5149. height: math.unit(2300, "miles")
  5150. },
  5151. ]
  5152. ))
  5153. characterMakers.push(() => makeCharacter(
  5154. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5155. {
  5156. front: {
  5157. height: math.unit(6, "feet"),
  5158. weight: math.unit(180, "lbs"),
  5159. name: "Front",
  5160. image: {
  5161. source: "./media/characters/guisetto/front.svg",
  5162. extra: 856 / 817,
  5163. bottom: 0.06
  5164. }
  5165. },
  5166. airborne: {
  5167. height: math.unit(6, "feet"),
  5168. weight: math.unit(180, "lbs"),
  5169. name: "Airborne",
  5170. image: {
  5171. source: "./media/characters/guisetto/airborne.svg",
  5172. extra: 584 / 525
  5173. }
  5174. },
  5175. },
  5176. [
  5177. {
  5178. name: "Normal",
  5179. height: math.unit(10 + 11 / 12, "feet"),
  5180. default: true
  5181. },
  5182. {
  5183. name: "Large",
  5184. height: math.unit(35, "feet")
  5185. },
  5186. {
  5187. name: "Macro",
  5188. height: math.unit(475, "feet")
  5189. },
  5190. ]
  5191. ))
  5192. characterMakers.push(() => makeCharacter(
  5193. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5194. {
  5195. front: {
  5196. height: math.unit(6, "feet"),
  5197. weight: math.unit(180, "lbs"),
  5198. name: "Front",
  5199. image: {
  5200. source: "./media/characters/luxor/front.svg",
  5201. extra: 2940 / 2152
  5202. }
  5203. },
  5204. back: {
  5205. height: math.unit(6, "feet"),
  5206. weight: math.unit(180, "lbs"),
  5207. name: "Back",
  5208. image: {
  5209. source: "./media/characters/luxor/back.svg",
  5210. extra: 1083 / 960
  5211. }
  5212. },
  5213. },
  5214. [
  5215. {
  5216. name: "Normal",
  5217. height: math.unit(5 + 5 / 6, "feet"),
  5218. default: true
  5219. },
  5220. {
  5221. name: "Lamp",
  5222. height: math.unit(50, "feet")
  5223. },
  5224. {
  5225. name: "Lämp",
  5226. height: math.unit(300, "feet")
  5227. },
  5228. {
  5229. name: "The sun is a lamp",
  5230. height: math.unit(250000, "miles")
  5231. },
  5232. ]
  5233. ))
  5234. characterMakers.push(() => makeCharacter(
  5235. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5236. {
  5237. front: {
  5238. height: math.unit(6, "feet"),
  5239. weight: math.unit(50, "lbs"),
  5240. name: "Front",
  5241. image: {
  5242. source: "./media/characters/huoyan/front.svg"
  5243. }
  5244. },
  5245. side: {
  5246. height: math.unit(6, "feet"),
  5247. weight: math.unit(180, "lbs"),
  5248. name: "Side",
  5249. image: {
  5250. source: "./media/characters/huoyan/side.svg"
  5251. }
  5252. },
  5253. },
  5254. [
  5255. {
  5256. name: "Chef",
  5257. height: math.unit(9, "feet")
  5258. },
  5259. {
  5260. name: "Normal",
  5261. height: math.unit(65, "feet"),
  5262. default: true
  5263. },
  5264. {
  5265. name: "Macro",
  5266. height: math.unit(780, "feet")
  5267. },
  5268. {
  5269. name: "Flaming Mountain",
  5270. height: math.unit(4.8, "miles")
  5271. },
  5272. {
  5273. name: "Celestial",
  5274. height: math.unit(765000, "miles")
  5275. },
  5276. ]
  5277. ))
  5278. characterMakers.push(() => makeCharacter(
  5279. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5280. {
  5281. front: {
  5282. height: math.unit(5 + 3 / 4, "feet"),
  5283. weight: math.unit(120, "lbs"),
  5284. name: "Front",
  5285. image: {
  5286. source: "./media/characters/tails/front.svg"
  5287. }
  5288. }
  5289. },
  5290. [
  5291. {
  5292. name: "Normal",
  5293. height: math.unit(5 + 3 / 4, "feet"),
  5294. default: true
  5295. }
  5296. ]
  5297. ))
  5298. characterMakers.push(() => makeCharacter(
  5299. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5300. {
  5301. front: {
  5302. height: math.unit(4, "feet"),
  5303. weight: math.unit(50, "lbs"),
  5304. name: "Front",
  5305. image: {
  5306. source: "./media/characters/rainy/front.svg"
  5307. }
  5308. }
  5309. },
  5310. [
  5311. {
  5312. name: "Macro",
  5313. height: math.unit(800, "feet"),
  5314. default: true
  5315. }
  5316. ]
  5317. ))
  5318. characterMakers.push(() => makeCharacter(
  5319. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5320. {
  5321. front: {
  5322. height: math.unit(6, "feet"),
  5323. weight: math.unit(150, "lbs"),
  5324. name: "Front",
  5325. image: {
  5326. source: "./media/characters/rainier/front.svg"
  5327. }
  5328. }
  5329. },
  5330. [
  5331. {
  5332. name: "Micro",
  5333. height: math.unit(2, "mm"),
  5334. default: true
  5335. }
  5336. ]
  5337. ))
  5338. characterMakers.push(() => makeCharacter(
  5339. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5340. {
  5341. front: {
  5342. height: math.unit(6, "feet"),
  5343. weight: math.unit(180, "lbs"),
  5344. name: "Front",
  5345. image: {
  5346. source: "./media/characters/andy/front.svg"
  5347. }
  5348. }
  5349. },
  5350. [
  5351. {
  5352. name: "Normal",
  5353. height: math.unit(8, "feet"),
  5354. default: true
  5355. },
  5356. {
  5357. name: "Macro",
  5358. height: math.unit(1000, "feet")
  5359. },
  5360. {
  5361. name: "Megamacro",
  5362. height: math.unit(5, "miles")
  5363. },
  5364. {
  5365. name: "Gigamacro",
  5366. height: math.unit(5000, "miles")
  5367. },
  5368. ]
  5369. ))
  5370. characterMakers.push(() => makeCharacter(
  5371. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5372. {
  5373. front: {
  5374. height: math.unit(6, "feet"),
  5375. weight: math.unit(210, "lbs"),
  5376. name: "Front",
  5377. image: {
  5378. source: "./media/characters/cimmaron/front-sfw.svg",
  5379. extra: 701 / 676,
  5380. bottom: 0.046
  5381. }
  5382. },
  5383. back: {
  5384. height: math.unit(6, "feet"),
  5385. weight: math.unit(210, "lbs"),
  5386. name: "Back",
  5387. image: {
  5388. source: "./media/characters/cimmaron/back-sfw.svg",
  5389. extra: 701 / 676,
  5390. bottom: 0.046
  5391. }
  5392. },
  5393. frontNsfw: {
  5394. height: math.unit(6, "feet"),
  5395. weight: math.unit(210, "lbs"),
  5396. name: "Front (NSFW)",
  5397. image: {
  5398. source: "./media/characters/cimmaron/front-nsfw.svg",
  5399. extra: 701 / 676,
  5400. bottom: 0.046
  5401. }
  5402. },
  5403. backNsfw: {
  5404. height: math.unit(6, "feet"),
  5405. weight: math.unit(210, "lbs"),
  5406. name: "Back (NSFW)",
  5407. image: {
  5408. source: "./media/characters/cimmaron/back-nsfw.svg",
  5409. extra: 701 / 676,
  5410. bottom: 0.046
  5411. }
  5412. },
  5413. dick: {
  5414. height: math.unit(1.714, "feet"),
  5415. name: "Dick",
  5416. image: {
  5417. source: "./media/characters/cimmaron/dick.svg"
  5418. }
  5419. },
  5420. },
  5421. [
  5422. {
  5423. name: "Normal",
  5424. height: math.unit(6, "feet"),
  5425. default: true
  5426. },
  5427. {
  5428. name: "Macro Mayor",
  5429. height: math.unit(350, "meters")
  5430. },
  5431. ]
  5432. ))
  5433. characterMakers.push(() => makeCharacter(
  5434. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5435. {
  5436. front: {
  5437. height: math.unit(6, "feet"),
  5438. weight: math.unit(200, "lbs"),
  5439. name: "Front",
  5440. image: {
  5441. source: "./media/characters/akari/front.svg",
  5442. extra: 962 / 901,
  5443. bottom: 0.04
  5444. }
  5445. }
  5446. },
  5447. [
  5448. {
  5449. name: "Micro",
  5450. height: math.unit(5, "inches"),
  5451. default: true
  5452. },
  5453. {
  5454. name: "Normal",
  5455. height: math.unit(7, "feet")
  5456. },
  5457. ]
  5458. ))
  5459. characterMakers.push(() => makeCharacter(
  5460. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5461. {
  5462. front: {
  5463. height: math.unit(6, "feet"),
  5464. weight: math.unit(140, "lbs"),
  5465. name: "Front",
  5466. image: {
  5467. source: "./media/characters/cynosura/front.svg",
  5468. extra: 896 / 847
  5469. }
  5470. },
  5471. back: {
  5472. height: math.unit(6, "feet"),
  5473. weight: math.unit(140, "lbs"),
  5474. name: "Back",
  5475. image: {
  5476. source: "./media/characters/cynosura/back.svg",
  5477. extra: 1365 / 1250
  5478. }
  5479. },
  5480. },
  5481. [
  5482. {
  5483. name: "Micro",
  5484. height: math.unit(4, "inches")
  5485. },
  5486. {
  5487. name: "Normal",
  5488. height: math.unit(5.75, "feet"),
  5489. default: true
  5490. },
  5491. {
  5492. name: "Tall",
  5493. height: math.unit(10, "feet")
  5494. },
  5495. {
  5496. name: "Big",
  5497. height: math.unit(20, "feet")
  5498. },
  5499. {
  5500. name: "Macro",
  5501. height: math.unit(50, "feet")
  5502. },
  5503. ]
  5504. ))
  5505. characterMakers.push(() => makeCharacter(
  5506. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5507. {
  5508. front: {
  5509. height: math.unit(6, "feet"),
  5510. weight: math.unit(170, "lbs"),
  5511. name: "Front",
  5512. image: {
  5513. source: "./media/characters/gin/front.svg",
  5514. extra: 1.053,
  5515. bottom: 0.025
  5516. }
  5517. },
  5518. foot: {
  5519. height: math.unit(6 / 4.25, "feet"),
  5520. name: "Foot",
  5521. image: {
  5522. source: "./media/characters/gin/foot.svg"
  5523. }
  5524. },
  5525. sole: {
  5526. height: math.unit(6 / 4.40, "feet"),
  5527. name: "Sole",
  5528. image: {
  5529. source: "./media/characters/gin/sole.svg"
  5530. }
  5531. },
  5532. },
  5533. [
  5534. {
  5535. name: "Normal",
  5536. height: math.unit(13 + 2 / 12, "feet")
  5537. },
  5538. {
  5539. name: "Macro",
  5540. height: math.unit(1500, "feet")
  5541. },
  5542. {
  5543. name: "Megamacro",
  5544. height: math.unit(200, "miles"),
  5545. default: true
  5546. },
  5547. {
  5548. name: "Gigamacro",
  5549. height: math.unit(500, "megameters")
  5550. },
  5551. {
  5552. name: "Teramacro",
  5553. height: math.unit(15, "lightyears")
  5554. }
  5555. ]
  5556. ))
  5557. characterMakers.push(() => makeCharacter(
  5558. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5559. {
  5560. front: {
  5561. height: math.unit(6 + 1 / 6, "feet"),
  5562. weight: math.unit(178, "lbs"),
  5563. name: "Front",
  5564. image: {
  5565. source: "./media/characters/guy/front.svg"
  5566. }
  5567. }
  5568. },
  5569. [
  5570. {
  5571. name: "Normal",
  5572. height: math.unit(6 + 1 / 6, "feet"),
  5573. default: true
  5574. },
  5575. {
  5576. name: "Large",
  5577. height: math.unit(25 + 7 / 12, "feet")
  5578. },
  5579. {
  5580. name: "Macro",
  5581. height: math.unit(60 + 9 / 12, "feet")
  5582. },
  5583. {
  5584. name: "Macro+",
  5585. height: math.unit(246, "feet")
  5586. },
  5587. {
  5588. name: "Macro++",
  5589. height: math.unit(878, "feet")
  5590. }
  5591. ]
  5592. ))
  5593. characterMakers.push(() => makeCharacter(
  5594. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5595. {
  5596. front: {
  5597. height: math.unit(9, "feet"),
  5598. weight: math.unit(800, "lbs"),
  5599. name: "Front",
  5600. image: {
  5601. source: "./media/characters/tiberius/front.svg",
  5602. extra: 2295 / 2071
  5603. }
  5604. },
  5605. back: {
  5606. height: math.unit(9, "feet"),
  5607. weight: math.unit(800, "lbs"),
  5608. name: "Back",
  5609. image: {
  5610. source: "./media/characters/tiberius/back.svg",
  5611. extra: 2373 / 2160
  5612. }
  5613. },
  5614. },
  5615. [
  5616. {
  5617. name: "Normal",
  5618. height: math.unit(9, "feet"),
  5619. default: true
  5620. }
  5621. ]
  5622. ))
  5623. characterMakers.push(() => makeCharacter(
  5624. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5625. {
  5626. front: {
  5627. height: math.unit(6, "feet"),
  5628. weight: math.unit(600, "lbs"),
  5629. name: "Front",
  5630. image: {
  5631. source: "./media/characters/surgo/front.svg",
  5632. extra: 3591 / 2227
  5633. }
  5634. },
  5635. back: {
  5636. height: math.unit(6, "feet"),
  5637. weight: math.unit(600, "lbs"),
  5638. name: "Back",
  5639. image: {
  5640. source: "./media/characters/surgo/back.svg",
  5641. extra: 3557 / 2228
  5642. }
  5643. },
  5644. laying: {
  5645. height: math.unit(6 * 0.85, "feet"),
  5646. weight: math.unit(600, "lbs"),
  5647. name: "Laying",
  5648. image: {
  5649. source: "./media/characters/surgo/laying.svg"
  5650. }
  5651. },
  5652. },
  5653. [
  5654. {
  5655. name: "Normal",
  5656. height: math.unit(6, "feet"),
  5657. default: true
  5658. }
  5659. ]
  5660. ))
  5661. characterMakers.push(() => makeCharacter(
  5662. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5663. {
  5664. side: {
  5665. height: math.unit(6, "feet"),
  5666. weight: math.unit(150, "lbs"),
  5667. name: "Side",
  5668. image: {
  5669. source: "./media/characters/cibus/side.svg",
  5670. extra: 800 / 400
  5671. }
  5672. },
  5673. },
  5674. [
  5675. {
  5676. name: "Normal",
  5677. height: math.unit(6, "feet"),
  5678. default: true
  5679. }
  5680. ]
  5681. ))
  5682. characterMakers.push(() => makeCharacter(
  5683. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5684. {
  5685. front: {
  5686. height: math.unit(6, "feet"),
  5687. weight: math.unit(240, "lbs"),
  5688. name: "Front",
  5689. image: {
  5690. source: "./media/characters/nibbles/front.svg"
  5691. }
  5692. },
  5693. side: {
  5694. height: math.unit(6, "feet"),
  5695. weight: math.unit(240, "lbs"),
  5696. name: "Side",
  5697. image: {
  5698. source: "./media/characters/nibbles/side.svg"
  5699. }
  5700. },
  5701. },
  5702. [
  5703. {
  5704. name: "Normal",
  5705. height: math.unit(9, "feet"),
  5706. default: true
  5707. }
  5708. ]
  5709. ))
  5710. characterMakers.push(() => makeCharacter(
  5711. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5712. {
  5713. side: {
  5714. height: math.unit(5 + 1 / 6, "feet"),
  5715. weight: math.unit(130, "lbs"),
  5716. name: "Side",
  5717. image: {
  5718. source: "./media/characters/rikky/side.svg",
  5719. extra: 851 / 801
  5720. }
  5721. },
  5722. },
  5723. [
  5724. {
  5725. name: "Normal",
  5726. height: math.unit(5 + 1 / 6, "feet")
  5727. },
  5728. {
  5729. name: "Macro",
  5730. height: math.unit(152, "feet"),
  5731. default: true
  5732. },
  5733. {
  5734. name: "Megamacro",
  5735. height: math.unit(7, "miles")
  5736. }
  5737. ]
  5738. ))
  5739. characterMakers.push(() => makeCharacter(
  5740. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5741. {
  5742. side: {
  5743. height: math.unit(370, "cm"),
  5744. weight: math.unit(350, "lbs"),
  5745. name: "Side",
  5746. image: {
  5747. source: "./media/characters/malfressa/side.svg"
  5748. }
  5749. },
  5750. walking: {
  5751. height: math.unit(370, "cm"),
  5752. weight: math.unit(350, "lbs"),
  5753. name: "Walking",
  5754. image: {
  5755. source: "./media/characters/malfressa/walking.svg"
  5756. }
  5757. },
  5758. feral: {
  5759. height: math.unit(2500, "cm"),
  5760. weight: math.unit(100000, "lbs"),
  5761. name: "Feral",
  5762. image: {
  5763. source: "./media/characters/malfressa/feral.svg",
  5764. extra: 2108 / 837,
  5765. bottom: 0.02
  5766. }
  5767. },
  5768. },
  5769. [
  5770. {
  5771. name: "Normal",
  5772. height: math.unit(370, "cm")
  5773. },
  5774. {
  5775. name: "Macro",
  5776. height: math.unit(300, "meters"),
  5777. default: true
  5778. }
  5779. ]
  5780. ))
  5781. characterMakers.push(() => makeCharacter(
  5782. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5783. {
  5784. front: {
  5785. height: math.unit(6, "feet"),
  5786. weight: math.unit(60, "kg"),
  5787. name: "Front",
  5788. image: {
  5789. source: "./media/characters/jaro/front.svg"
  5790. }
  5791. },
  5792. back: {
  5793. height: math.unit(6, "feet"),
  5794. weight: math.unit(60, "kg"),
  5795. name: "Back",
  5796. image: {
  5797. source: "./media/characters/jaro/back.svg"
  5798. }
  5799. },
  5800. },
  5801. [
  5802. {
  5803. name: "Micro",
  5804. height: math.unit(7, "inches")
  5805. },
  5806. {
  5807. name: "Normal",
  5808. height: math.unit(5.5, "feet"),
  5809. default: true
  5810. },
  5811. {
  5812. name: "Minimacro",
  5813. height: math.unit(20, "feet")
  5814. },
  5815. {
  5816. name: "Macro",
  5817. height: math.unit(200, "meters")
  5818. }
  5819. ]
  5820. ))
  5821. characterMakers.push(() => makeCharacter(
  5822. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5823. {
  5824. front: {
  5825. height: math.unit(6, "feet"),
  5826. weight: math.unit(195, "lb"),
  5827. name: "Front",
  5828. image: {
  5829. source: "./media/characters/rogue/front.svg"
  5830. }
  5831. },
  5832. },
  5833. [
  5834. {
  5835. name: "Macro",
  5836. height: math.unit(90, "feet"),
  5837. default: true
  5838. },
  5839. ]
  5840. ))
  5841. characterMakers.push(() => makeCharacter(
  5842. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5843. {
  5844. front: {
  5845. height: math.unit(5 + 8 / 12, "feet"),
  5846. weight: math.unit(140, "lb"),
  5847. name: "Front",
  5848. image: {
  5849. source: "./media/characters/piper/front.svg",
  5850. extra: 3948/3655,
  5851. bottom: 0/3948
  5852. }
  5853. },
  5854. },
  5855. [
  5856. {
  5857. name: "Micro",
  5858. height: math.unit(2, "inches")
  5859. },
  5860. {
  5861. name: "Normal",
  5862. height: math.unit(5 + 8 / 12, "feet")
  5863. },
  5864. {
  5865. name: "Macro",
  5866. height: math.unit(250, "feet"),
  5867. default: true
  5868. },
  5869. {
  5870. name: "Megamacro",
  5871. height: math.unit(7, "miles")
  5872. },
  5873. ]
  5874. ))
  5875. characterMakers.push(() => makeCharacter(
  5876. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5877. {
  5878. front: {
  5879. height: math.unit(6, "feet"),
  5880. weight: math.unit(220, "lb"),
  5881. name: "Front",
  5882. image: {
  5883. source: "./media/characters/gemini/front.svg"
  5884. }
  5885. },
  5886. back: {
  5887. height: math.unit(6, "feet"),
  5888. weight: math.unit(220, "lb"),
  5889. name: "Back",
  5890. image: {
  5891. source: "./media/characters/gemini/back.svg"
  5892. }
  5893. },
  5894. kneeling: {
  5895. height: math.unit(6 / 1.5, "feet"),
  5896. weight: math.unit(220, "lb"),
  5897. name: "Kneeling",
  5898. image: {
  5899. source: "./media/characters/gemini/kneeling.svg",
  5900. bottom: 0.02
  5901. }
  5902. },
  5903. },
  5904. [
  5905. {
  5906. name: "Macro",
  5907. height: math.unit(300, "meters"),
  5908. default: true
  5909. },
  5910. {
  5911. name: "Megamacro",
  5912. height: math.unit(6900, "meters")
  5913. },
  5914. ]
  5915. ))
  5916. characterMakers.push(() => makeCharacter(
  5917. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5918. {
  5919. anthro: {
  5920. height: math.unit(2.35, "meters"),
  5921. weight: math.unit(73, "kg"),
  5922. name: "Anthro",
  5923. image: {
  5924. source: "./media/characters/alicia/anthro.svg",
  5925. extra: 2571 / 2385,
  5926. bottom: 75 / 2648
  5927. }
  5928. },
  5929. paw: {
  5930. height: math.unit(1.32, "feet"),
  5931. name: "Paw",
  5932. image: {
  5933. source: "./media/characters/alicia/paw.svg"
  5934. }
  5935. },
  5936. feral: {
  5937. height: math.unit(1.69, "meters"),
  5938. weight: math.unit(73, "kg"),
  5939. name: "Feral",
  5940. image: {
  5941. source: "./media/characters/alicia/feral.svg",
  5942. extra: 2123 / 1715,
  5943. bottom: 222 / 2349
  5944. }
  5945. },
  5946. },
  5947. [
  5948. {
  5949. name: "Normal",
  5950. height: math.unit(2.35, "meters")
  5951. },
  5952. {
  5953. name: "Macro",
  5954. height: math.unit(60, "meters"),
  5955. default: true
  5956. },
  5957. {
  5958. name: "Megamacro",
  5959. height: math.unit(10000, "kilometers")
  5960. },
  5961. ]
  5962. ))
  5963. characterMakers.push(() => makeCharacter(
  5964. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5965. {
  5966. front: {
  5967. height: math.unit(7, "feet"),
  5968. weight: math.unit(250, "lbs"),
  5969. name: "Front",
  5970. image: {
  5971. source: "./media/characters/archy/front.svg"
  5972. }
  5973. }
  5974. },
  5975. [
  5976. {
  5977. name: "Micro",
  5978. height: math.unit(1, "inch")
  5979. },
  5980. {
  5981. name: "Shorty",
  5982. height: math.unit(5, "feet")
  5983. },
  5984. {
  5985. name: "Normal",
  5986. height: math.unit(7, "feet")
  5987. },
  5988. {
  5989. name: "Macro",
  5990. height: math.unit(600, "meters"),
  5991. default: true
  5992. },
  5993. {
  5994. name: "Megamacro",
  5995. height: math.unit(1, "mile")
  5996. },
  5997. ]
  5998. ))
  5999. characterMakers.push(() => makeCharacter(
  6000. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  6001. {
  6002. front: {
  6003. height: math.unit(1.65, "meters"),
  6004. weight: math.unit(74, "kg"),
  6005. name: "Front",
  6006. image: {
  6007. source: "./media/characters/berri/front.svg",
  6008. extra: 857 / 837,
  6009. bottom: 18 / 877
  6010. }
  6011. },
  6012. bum: {
  6013. height: math.unit(1.46, "feet"),
  6014. name: "Bum",
  6015. image: {
  6016. source: "./media/characters/berri/bum.svg"
  6017. }
  6018. },
  6019. mouth: {
  6020. height: math.unit(0.44, "feet"),
  6021. name: "Mouth",
  6022. image: {
  6023. source: "./media/characters/berri/mouth.svg"
  6024. }
  6025. },
  6026. paw: {
  6027. height: math.unit(0.826, "feet"),
  6028. name: "Paw",
  6029. image: {
  6030. source: "./media/characters/berri/paw.svg"
  6031. }
  6032. },
  6033. },
  6034. [
  6035. {
  6036. name: "Normal",
  6037. height: math.unit(1.65, "meters")
  6038. },
  6039. {
  6040. name: "Macro",
  6041. height: math.unit(60, "m"),
  6042. default: true
  6043. },
  6044. {
  6045. name: "Megamacro",
  6046. height: math.unit(9.213, "km")
  6047. },
  6048. {
  6049. name: "Planet Eater",
  6050. height: math.unit(489, "megameters")
  6051. },
  6052. {
  6053. name: "Teramacro",
  6054. height: math.unit(2471635000000, "meters")
  6055. },
  6056. {
  6057. name: "Examacro",
  6058. height: math.unit(8.0624e+26, "meters")
  6059. }
  6060. ]
  6061. ))
  6062. characterMakers.push(() => makeCharacter(
  6063. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6064. {
  6065. front: {
  6066. height: math.unit(1.72, "meters"),
  6067. weight: math.unit(68, "kg"),
  6068. name: "Front",
  6069. image: {
  6070. source: "./media/characters/lexi/front.svg"
  6071. }
  6072. }
  6073. },
  6074. [
  6075. {
  6076. name: "Very Smol",
  6077. height: math.unit(10, "mm")
  6078. },
  6079. {
  6080. name: "Micro",
  6081. height: math.unit(6.8, "cm"),
  6082. default: true
  6083. },
  6084. {
  6085. name: "Normal",
  6086. height: math.unit(1.72, "m")
  6087. }
  6088. ]
  6089. ))
  6090. characterMakers.push(() => makeCharacter(
  6091. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6092. {
  6093. front: {
  6094. height: math.unit(1.69, "meters"),
  6095. weight: math.unit(68, "kg"),
  6096. name: "Front",
  6097. image: {
  6098. source: "./media/characters/martin/front.svg",
  6099. extra: 596 / 581
  6100. }
  6101. }
  6102. },
  6103. [
  6104. {
  6105. name: "Micro",
  6106. height: math.unit(6.85, "cm"),
  6107. default: true
  6108. },
  6109. {
  6110. name: "Normal",
  6111. height: math.unit(1.69, "m")
  6112. }
  6113. ]
  6114. ))
  6115. characterMakers.push(() => makeCharacter(
  6116. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6117. {
  6118. front: {
  6119. height: math.unit(1.69, "meters"),
  6120. weight: math.unit(68, "kg"),
  6121. name: "Front",
  6122. image: {
  6123. source: "./media/characters/juno/front.svg"
  6124. }
  6125. }
  6126. },
  6127. [
  6128. {
  6129. name: "Micro",
  6130. height: math.unit(7, "cm")
  6131. },
  6132. {
  6133. name: "Normal",
  6134. height: math.unit(1.89, "m")
  6135. },
  6136. {
  6137. name: "Macro",
  6138. height: math.unit(353, "meters"),
  6139. default: true
  6140. }
  6141. ]
  6142. ))
  6143. characterMakers.push(() => makeCharacter(
  6144. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6145. {
  6146. front: {
  6147. height: math.unit(1.93, "meters"),
  6148. weight: math.unit(83, "kg"),
  6149. name: "Front",
  6150. image: {
  6151. source: "./media/characters/samantha/front.svg"
  6152. }
  6153. },
  6154. frontClothed: {
  6155. height: math.unit(1.93, "meters"),
  6156. weight: math.unit(83, "kg"),
  6157. name: "Front (Clothed)",
  6158. image: {
  6159. source: "./media/characters/samantha/front-clothed.svg"
  6160. }
  6161. },
  6162. back: {
  6163. height: math.unit(1.93, "meters"),
  6164. weight: math.unit(83, "kg"),
  6165. name: "Back",
  6166. image: {
  6167. source: "./media/characters/samantha/back.svg"
  6168. }
  6169. },
  6170. },
  6171. [
  6172. {
  6173. name: "Normal",
  6174. height: math.unit(1.93, "m")
  6175. },
  6176. {
  6177. name: "Macro",
  6178. height: math.unit(74, "meters"),
  6179. default: true
  6180. },
  6181. {
  6182. name: "Macro+",
  6183. height: math.unit(223, "meters"),
  6184. },
  6185. {
  6186. name: "Megamacro",
  6187. height: math.unit(8381, "meters"),
  6188. },
  6189. {
  6190. name: "Megamacro+",
  6191. height: math.unit(12000, "kilometers")
  6192. },
  6193. ]
  6194. ))
  6195. characterMakers.push(() => makeCharacter(
  6196. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6197. {
  6198. front: {
  6199. height: math.unit(1.92, "meters"),
  6200. weight: math.unit(80, "kg"),
  6201. name: "Front",
  6202. image: {
  6203. source: "./media/characters/dr-clay/front.svg"
  6204. }
  6205. },
  6206. frontClothed: {
  6207. height: math.unit(1.92, "meters"),
  6208. weight: math.unit(80, "kg"),
  6209. name: "Front (Clothed)",
  6210. image: {
  6211. source: "./media/characters/dr-clay/front-clothed.svg"
  6212. }
  6213. }
  6214. },
  6215. [
  6216. {
  6217. name: "Normal",
  6218. height: math.unit(1.92, "m")
  6219. },
  6220. {
  6221. name: "Macro",
  6222. height: math.unit(214, "meters"),
  6223. default: true
  6224. },
  6225. {
  6226. name: "Macro+",
  6227. height: math.unit(12.237, "meters"),
  6228. },
  6229. {
  6230. name: "Megamacro",
  6231. height: math.unit(557, "megameters"),
  6232. },
  6233. {
  6234. name: "Unimaginable",
  6235. height: math.unit(120e9, "lightyears")
  6236. },
  6237. ]
  6238. ))
  6239. characterMakers.push(() => makeCharacter(
  6240. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6241. {
  6242. front: {
  6243. height: math.unit(2, "meters"),
  6244. weight: math.unit(80, "kg"),
  6245. name: "Front",
  6246. image: {
  6247. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6248. }
  6249. }
  6250. },
  6251. [
  6252. {
  6253. name: "Teramacro",
  6254. height: math.unit(500000, "lightyears"),
  6255. default: true
  6256. },
  6257. ]
  6258. ))
  6259. characterMakers.push(() => makeCharacter(
  6260. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6261. {
  6262. front: {
  6263. height: math.unit(2, "meters"),
  6264. weight: math.unit(150, "kg"),
  6265. name: "Front",
  6266. image: {
  6267. source: "./media/characters/vemus/front.svg",
  6268. extra: 2384 / 2084,
  6269. bottom: 0.0123
  6270. }
  6271. }
  6272. },
  6273. [
  6274. {
  6275. name: "Normal",
  6276. height: math.unit(3.75, "meters"),
  6277. default: true
  6278. },
  6279. {
  6280. name: "Big",
  6281. height: math.unit(8, "meters")
  6282. },
  6283. {
  6284. name: "Macro",
  6285. height: math.unit(100, "meters")
  6286. },
  6287. {
  6288. name: "Macro+",
  6289. height: math.unit(1500, "meters")
  6290. },
  6291. {
  6292. name: "Stellar",
  6293. height: math.unit(14e8, "meters")
  6294. },
  6295. ]
  6296. ))
  6297. characterMakers.push(() => makeCharacter(
  6298. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6299. {
  6300. front: {
  6301. height: math.unit(2, "meters"),
  6302. weight: math.unit(70, "kg"),
  6303. name: "Front",
  6304. image: {
  6305. source: "./media/characters/beherit/front.svg",
  6306. extra: 1408 / 1242
  6307. }
  6308. }
  6309. },
  6310. [
  6311. {
  6312. name: "Normal",
  6313. height: math.unit(6, "feet")
  6314. },
  6315. {
  6316. name: "Lorg",
  6317. height: math.unit(25, "feet"),
  6318. default: true
  6319. },
  6320. {
  6321. name: "Lorger",
  6322. height: math.unit(75, "feet")
  6323. },
  6324. {
  6325. name: "Macro",
  6326. height: math.unit(200, "meters")
  6327. },
  6328. ]
  6329. ))
  6330. characterMakers.push(() => makeCharacter(
  6331. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6332. {
  6333. front: {
  6334. height: math.unit(2, "meters"),
  6335. weight: math.unit(150, "kg"),
  6336. name: "Front",
  6337. image: {
  6338. source: "./media/characters/everett/front.svg",
  6339. extra: 2038 / 1737,
  6340. bottom: 0.03
  6341. }
  6342. },
  6343. paw: {
  6344. height: math.unit(2 / 3.6, "meters"),
  6345. name: "Paw",
  6346. image: {
  6347. source: "./media/characters/everett/paw.svg"
  6348. }
  6349. },
  6350. },
  6351. [
  6352. {
  6353. name: "Normal",
  6354. height: math.unit(15, "feet"),
  6355. default: true
  6356. },
  6357. {
  6358. name: "Lorg",
  6359. height: math.unit(70, "feet"),
  6360. default: true
  6361. },
  6362. {
  6363. name: "Lorger",
  6364. height: math.unit(250, "feet")
  6365. },
  6366. {
  6367. name: "Macro",
  6368. height: math.unit(500, "meters")
  6369. },
  6370. ]
  6371. ))
  6372. characterMakers.push(() => makeCharacter(
  6373. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6374. {
  6375. front: {
  6376. height: math.unit(2, "meters"),
  6377. weight: math.unit(86, "kg"),
  6378. name: "Front",
  6379. image: {
  6380. source: "./media/characters/rose/front.svg",
  6381. extra: 350/335,
  6382. bottom: 10/360
  6383. }
  6384. },
  6385. frontAlt: {
  6386. height: math.unit(1.6, "meters"),
  6387. weight: math.unit(86, "kg"),
  6388. name: "Front (Alt)",
  6389. image: {
  6390. source: "./media/characters/rose/front-alt.svg",
  6391. extra: 299/283,
  6392. bottom: 3/302
  6393. }
  6394. },
  6395. plush: {
  6396. height: math.unit(2, "meters"),
  6397. weight: math.unit(86/3, "kg"),
  6398. name: "Plush",
  6399. image: {
  6400. source: "./media/characters/rose/plush.svg",
  6401. extra: 361/337,
  6402. bottom: 11/372
  6403. }
  6404. },
  6405. },
  6406. [
  6407. {
  6408. name: "Mini-Micro",
  6409. height: math.unit(1, "cm")
  6410. },
  6411. {
  6412. name: "Micro",
  6413. height: math.unit(3.5, "inches"),
  6414. default: true
  6415. },
  6416. {
  6417. name: "Normal",
  6418. height: math.unit(6 + 1 / 6, "feet")
  6419. },
  6420. {
  6421. name: "Mini-Macro",
  6422. height: math.unit(9 + 10 / 12, "feet")
  6423. },
  6424. ]
  6425. ))
  6426. characterMakers.push(() => makeCharacter(
  6427. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6428. {
  6429. front: {
  6430. height: math.unit(2, "meters"),
  6431. weight: math.unit(350, "lbs"),
  6432. name: "Front",
  6433. image: {
  6434. source: "./media/characters/regal/front.svg"
  6435. }
  6436. },
  6437. back: {
  6438. height: math.unit(2, "meters"),
  6439. weight: math.unit(350, "lbs"),
  6440. name: "Back",
  6441. image: {
  6442. source: "./media/characters/regal/back.svg"
  6443. }
  6444. },
  6445. },
  6446. [
  6447. {
  6448. name: "Macro",
  6449. height: math.unit(350, "feet"),
  6450. default: true
  6451. }
  6452. ]
  6453. ))
  6454. characterMakers.push(() => makeCharacter(
  6455. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6456. {
  6457. front: {
  6458. height: math.unit(4 + 11 / 12, "feet"),
  6459. weight: math.unit(100, "lbs"),
  6460. name: "Front",
  6461. image: {
  6462. source: "./media/characters/opal/front.svg"
  6463. }
  6464. },
  6465. frontAlt: {
  6466. height: math.unit(4 + 11 / 12, "feet"),
  6467. weight: math.unit(100, "lbs"),
  6468. name: "Front (Alt)",
  6469. image: {
  6470. source: "./media/characters/opal/front-alt.svg"
  6471. }
  6472. },
  6473. },
  6474. [
  6475. {
  6476. name: "Small",
  6477. height: math.unit(4 + 11 / 12, "feet")
  6478. },
  6479. {
  6480. name: "Normal",
  6481. height: math.unit(20, "feet"),
  6482. default: true
  6483. },
  6484. {
  6485. name: "Macro",
  6486. height: math.unit(120, "feet")
  6487. },
  6488. {
  6489. name: "Megamacro",
  6490. height: math.unit(80, "miles")
  6491. },
  6492. {
  6493. name: "True Size",
  6494. height: math.unit(100000, "lightyears")
  6495. },
  6496. ]
  6497. ))
  6498. characterMakers.push(() => makeCharacter(
  6499. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6500. {
  6501. front: {
  6502. height: math.unit(6, "feet"),
  6503. weight: math.unit(200, "lbs"),
  6504. name: "Front",
  6505. image: {
  6506. source: "./media/characters/vector-wuff/front.svg"
  6507. }
  6508. }
  6509. },
  6510. [
  6511. {
  6512. name: "Normal",
  6513. height: math.unit(2.8, "meters")
  6514. },
  6515. {
  6516. name: "Macro",
  6517. height: math.unit(450, "meters"),
  6518. default: true
  6519. },
  6520. {
  6521. name: "Megamacro",
  6522. height: math.unit(15, "kilometers")
  6523. }
  6524. ]
  6525. ))
  6526. characterMakers.push(() => makeCharacter(
  6527. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6528. {
  6529. front: {
  6530. height: math.unit(6, "feet"),
  6531. weight: math.unit(256, "lbs"),
  6532. name: "Front",
  6533. image: {
  6534. source: "./media/characters/dannik/front.svg"
  6535. }
  6536. }
  6537. },
  6538. [
  6539. {
  6540. name: "Macro",
  6541. height: math.unit(69.57, "meters"),
  6542. default: true
  6543. },
  6544. ]
  6545. ))
  6546. characterMakers.push(() => makeCharacter(
  6547. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6548. {
  6549. front: {
  6550. height: math.unit(6, "feet"),
  6551. weight: math.unit(120, "lbs"),
  6552. name: "Front",
  6553. image: {
  6554. source: "./media/characters/azura-saharah/front.svg"
  6555. }
  6556. },
  6557. back: {
  6558. height: math.unit(6, "feet"),
  6559. weight: math.unit(120, "lbs"),
  6560. name: "Back",
  6561. image: {
  6562. source: "./media/characters/azura-saharah/back.svg"
  6563. }
  6564. },
  6565. },
  6566. [
  6567. {
  6568. name: "Macro",
  6569. height: math.unit(100, "feet"),
  6570. default: true
  6571. },
  6572. ]
  6573. ))
  6574. characterMakers.push(() => makeCharacter(
  6575. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6576. {
  6577. side: {
  6578. height: math.unit(5 + 4 / 12, "feet"),
  6579. weight: math.unit(163, "lbs"),
  6580. name: "Side",
  6581. image: {
  6582. source: "./media/characters/kennedy/side.svg"
  6583. }
  6584. }
  6585. },
  6586. [
  6587. {
  6588. name: "Standard Doggo",
  6589. height: math.unit(5 + 4 / 12, "feet")
  6590. },
  6591. {
  6592. name: "Big Doggo",
  6593. height: math.unit(25 + 3 / 12, "feet"),
  6594. default: true
  6595. },
  6596. ]
  6597. ))
  6598. characterMakers.push(() => makeCharacter(
  6599. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6600. {
  6601. front: {
  6602. height: math.unit(6, "feet"),
  6603. weight: math.unit(90, "lbs"),
  6604. name: "Front",
  6605. image: {
  6606. source: "./media/characters/odi-lunar/front.svg"
  6607. }
  6608. }
  6609. },
  6610. [
  6611. {
  6612. name: "Micro",
  6613. height: math.unit(3, "inches"),
  6614. default: true
  6615. },
  6616. {
  6617. name: "Normal",
  6618. height: math.unit(5.5, "feet")
  6619. }
  6620. ]
  6621. ))
  6622. characterMakers.push(() => makeCharacter(
  6623. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6624. {
  6625. back: {
  6626. height: math.unit(6, "feet"),
  6627. weight: math.unit(220, "lbs"),
  6628. name: "Back",
  6629. image: {
  6630. source: "./media/characters/mandake/back.svg"
  6631. }
  6632. }
  6633. },
  6634. [
  6635. {
  6636. name: "Normal",
  6637. height: math.unit(7, "feet"),
  6638. default: true
  6639. },
  6640. {
  6641. name: "Macro",
  6642. height: math.unit(78, "feet")
  6643. },
  6644. {
  6645. name: "Macro+",
  6646. height: math.unit(300, "meters")
  6647. },
  6648. {
  6649. name: "Macro++",
  6650. height: math.unit(2400, "feet")
  6651. },
  6652. {
  6653. name: "Megamacro",
  6654. height: math.unit(5167, "meters")
  6655. },
  6656. {
  6657. name: "Gigamacro",
  6658. height: math.unit(41769, "miles")
  6659. },
  6660. ]
  6661. ))
  6662. characterMakers.push(() => makeCharacter(
  6663. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6664. {
  6665. front: {
  6666. height: math.unit(6, "feet"),
  6667. weight: math.unit(120, "lbs"),
  6668. name: "Front",
  6669. image: {
  6670. source: "./media/characters/yozey/front.svg"
  6671. }
  6672. },
  6673. frontAlt: {
  6674. height: math.unit(6, "feet"),
  6675. weight: math.unit(120, "lbs"),
  6676. name: "Front (Alt)",
  6677. image: {
  6678. source: "./media/characters/yozey/front-alt.svg"
  6679. }
  6680. },
  6681. side: {
  6682. height: math.unit(6, "feet"),
  6683. weight: math.unit(120, "lbs"),
  6684. name: "Side",
  6685. image: {
  6686. source: "./media/characters/yozey/side.svg"
  6687. }
  6688. },
  6689. },
  6690. [
  6691. {
  6692. name: "Micro",
  6693. height: math.unit(3, "inches"),
  6694. default: true
  6695. },
  6696. {
  6697. name: "Normal",
  6698. height: math.unit(6, "feet")
  6699. }
  6700. ]
  6701. ))
  6702. characterMakers.push(() => makeCharacter(
  6703. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6704. {
  6705. front: {
  6706. height: math.unit(6, "feet"),
  6707. weight: math.unit(103, "lbs"),
  6708. name: "Front",
  6709. image: {
  6710. source: "./media/characters/valeska-voss/front.svg"
  6711. }
  6712. }
  6713. },
  6714. [
  6715. {
  6716. name: "Mini-Sized Sub",
  6717. height: math.unit(3.1, "inches")
  6718. },
  6719. {
  6720. name: "Mid-Sized Sub",
  6721. height: math.unit(6.2, "inches")
  6722. },
  6723. {
  6724. name: "Full-Sized Sub",
  6725. height: math.unit(9.3, "inches")
  6726. },
  6727. {
  6728. name: "Normal",
  6729. height: math.unit(5 + 2 / 12, "foot"),
  6730. default: true
  6731. },
  6732. ]
  6733. ))
  6734. characterMakers.push(() => makeCharacter(
  6735. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6736. {
  6737. front: {
  6738. height: math.unit(6, "feet"),
  6739. weight: math.unit(160, "lbs"),
  6740. name: "Front",
  6741. image: {
  6742. source: "./media/characters/gene-zeta/front.svg",
  6743. extra: 3006 / 2826,
  6744. bottom: 182 / 3188
  6745. }
  6746. }
  6747. },
  6748. [
  6749. {
  6750. name: "Micro",
  6751. height: math.unit(6, "inches")
  6752. },
  6753. {
  6754. name: "Normal",
  6755. height: math.unit(5 + 11 / 12, "foot"),
  6756. default: true
  6757. },
  6758. {
  6759. name: "Macro",
  6760. height: math.unit(140, "feet")
  6761. },
  6762. {
  6763. name: "Supercharged",
  6764. height: math.unit(2500, "feet")
  6765. },
  6766. ]
  6767. ))
  6768. characterMakers.push(() => makeCharacter(
  6769. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6770. {
  6771. front: {
  6772. height: math.unit(6, "feet"),
  6773. weight: math.unit(350, "lbs"),
  6774. name: "Front",
  6775. image: {
  6776. source: "./media/characters/razinox/front.svg",
  6777. extra: 1686 / 1548,
  6778. bottom: 28.2 / 1868
  6779. }
  6780. },
  6781. back: {
  6782. height: math.unit(6, "feet"),
  6783. weight: math.unit(350, "lbs"),
  6784. name: "Back",
  6785. image: {
  6786. source: "./media/characters/razinox/back.svg",
  6787. extra: 1660 / 1590,
  6788. bottom: 15 / 1665
  6789. }
  6790. },
  6791. },
  6792. [
  6793. {
  6794. name: "Normal",
  6795. height: math.unit(10 + 8 / 12, "foot")
  6796. },
  6797. {
  6798. name: "Minimacro",
  6799. height: math.unit(15, "foot")
  6800. },
  6801. {
  6802. name: "Macro",
  6803. height: math.unit(60, "foot"),
  6804. default: true
  6805. },
  6806. {
  6807. name: "Megamacro",
  6808. height: math.unit(5, "miles")
  6809. },
  6810. {
  6811. name: "Gigamacro",
  6812. height: math.unit(6000, "miles")
  6813. },
  6814. ]
  6815. ))
  6816. characterMakers.push(() => makeCharacter(
  6817. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6818. {
  6819. front: {
  6820. height: math.unit(6, "feet"),
  6821. weight: math.unit(150, "lbs"),
  6822. name: "Front",
  6823. image: {
  6824. source: "./media/characters/cobalt/front.svg"
  6825. }
  6826. }
  6827. },
  6828. [
  6829. {
  6830. name: "Normal",
  6831. height: math.unit(8 + 1 / 12, "foot")
  6832. },
  6833. {
  6834. name: "Macro",
  6835. height: math.unit(111, "foot"),
  6836. default: true
  6837. },
  6838. {
  6839. name: "Supracosmic",
  6840. height: math.unit(1e42, "feet")
  6841. },
  6842. ]
  6843. ))
  6844. characterMakers.push(() => makeCharacter(
  6845. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6846. {
  6847. front: {
  6848. height: math.unit(6, "feet"),
  6849. weight: math.unit(140, "lbs"),
  6850. name: "Front",
  6851. image: {
  6852. source: "./media/characters/amanda/front.svg"
  6853. }
  6854. }
  6855. },
  6856. [
  6857. {
  6858. name: "Micro",
  6859. height: math.unit(5, "inches"),
  6860. default: true
  6861. },
  6862. ]
  6863. ))
  6864. characterMakers.push(() => makeCharacter(
  6865. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6866. {
  6867. front: {
  6868. height: math.unit(2.75, "meters"),
  6869. weight: math.unit(1200, "lb"),
  6870. name: "Front",
  6871. image: {
  6872. source: "./media/characters/teal/front.svg",
  6873. extra: 2463 / 2320,
  6874. bottom: 166 / 2629
  6875. }
  6876. },
  6877. back: {
  6878. height: math.unit(2.75, "meters"),
  6879. weight: math.unit(1200, "lb"),
  6880. name: "Back",
  6881. image: {
  6882. source: "./media/characters/teal/back.svg",
  6883. extra: 2580 / 2489,
  6884. bottom: 151 / 2731
  6885. }
  6886. },
  6887. sitting: {
  6888. height: math.unit(1.9, "meters"),
  6889. weight: math.unit(1200, "lb"),
  6890. name: "Sitting",
  6891. image: {
  6892. source: "./media/characters/teal/sitting.svg",
  6893. extra: 623 / 590,
  6894. bottom: 121 / 744
  6895. }
  6896. },
  6897. standing: {
  6898. height: math.unit(2.75, "meters"),
  6899. weight: math.unit(1200, "lb"),
  6900. name: "Standing",
  6901. image: {
  6902. source: "./media/characters/teal/standing.svg",
  6903. extra: 923 / 893,
  6904. bottom: 60 / 983
  6905. }
  6906. },
  6907. stretching: {
  6908. height: math.unit(3.65, "meters"),
  6909. weight: math.unit(1200, "lb"),
  6910. name: "Stretching",
  6911. image: {
  6912. source: "./media/characters/teal/stretching.svg",
  6913. extra: 1276 / 1244,
  6914. bottom: 0 / 1276
  6915. }
  6916. },
  6917. legged: {
  6918. height: math.unit(1.3, "meters"),
  6919. weight: math.unit(100, "lb"),
  6920. name: "Legged",
  6921. image: {
  6922. source: "./media/characters/teal/legged.svg",
  6923. extra: 462 / 437,
  6924. bottom: 24 / 486
  6925. }
  6926. },
  6927. naga: {
  6928. height: math.unit(5.4, "meters"),
  6929. weight: math.unit(4000, "lb"),
  6930. name: "Naga",
  6931. image: {
  6932. source: "./media/characters/teal/naga.svg",
  6933. extra: 1902 / 1858,
  6934. bottom: 0 / 1902
  6935. }
  6936. },
  6937. hand: {
  6938. height: math.unit(0.52, "meters"),
  6939. name: "Hand",
  6940. image: {
  6941. source: "./media/characters/teal/hand.svg"
  6942. }
  6943. },
  6944. maw: {
  6945. height: math.unit(0.43, "meters"),
  6946. name: "Maw",
  6947. image: {
  6948. source: "./media/characters/teal/maw.svg"
  6949. }
  6950. },
  6951. slit: {
  6952. height: math.unit(0.25, "meters"),
  6953. name: "Slit",
  6954. image: {
  6955. source: "./media/characters/teal/slit.svg"
  6956. }
  6957. },
  6958. },
  6959. [
  6960. {
  6961. name: "Normal",
  6962. height: math.unit(2.75, "meters"),
  6963. default: true
  6964. },
  6965. {
  6966. name: "Macro",
  6967. height: math.unit(300, "feet")
  6968. },
  6969. {
  6970. name: "Macro+",
  6971. height: math.unit(2000, "feet")
  6972. },
  6973. ]
  6974. ))
  6975. characterMakers.push(() => makeCharacter(
  6976. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6977. {
  6978. frontCat: {
  6979. height: math.unit(6, "feet"),
  6980. weight: math.unit(180, "lbs"),
  6981. name: "Front (Cat)",
  6982. image: {
  6983. source: "./media/characters/ravin-amulet/front-cat.svg"
  6984. }
  6985. },
  6986. frontCatAlt: {
  6987. height: math.unit(6, "feet"),
  6988. weight: math.unit(180, "lbs"),
  6989. name: "Front (Alt, Cat)",
  6990. image: {
  6991. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6992. }
  6993. },
  6994. frontWerewolf: {
  6995. height: math.unit(6 * 1.2, "feet"),
  6996. weight: math.unit(225, "lbs"),
  6997. name: "Front (Werewolf)",
  6998. image: {
  6999. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  7000. }
  7001. },
  7002. backWerewolf: {
  7003. height: math.unit(6 * 1.2, "feet"),
  7004. weight: math.unit(225, "lbs"),
  7005. name: "Back (Werewolf)",
  7006. image: {
  7007. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7008. }
  7009. },
  7010. },
  7011. [
  7012. {
  7013. name: "Nano",
  7014. height: math.unit(1, "micrometer")
  7015. },
  7016. {
  7017. name: "Micro",
  7018. height: math.unit(1, "inch")
  7019. },
  7020. {
  7021. name: "Normal",
  7022. height: math.unit(6, "feet"),
  7023. default: true
  7024. },
  7025. {
  7026. name: "Macro",
  7027. height: math.unit(60, "feet")
  7028. }
  7029. ]
  7030. ))
  7031. characterMakers.push(() => makeCharacter(
  7032. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7033. {
  7034. front: {
  7035. height: math.unit(6, "feet"),
  7036. weight: math.unit(165, "lbs"),
  7037. name: "Front",
  7038. image: {
  7039. source: "./media/characters/fluoresce/front.svg"
  7040. }
  7041. }
  7042. },
  7043. [
  7044. {
  7045. name: "Micro",
  7046. height: math.unit(6, "cm")
  7047. },
  7048. {
  7049. name: "Normal",
  7050. height: math.unit(5 + 7 / 12, "feet"),
  7051. default: true
  7052. },
  7053. {
  7054. name: "Macro",
  7055. height: math.unit(56, "feet")
  7056. },
  7057. {
  7058. name: "Megamacro",
  7059. height: math.unit(1.9, "miles")
  7060. },
  7061. ]
  7062. ))
  7063. characterMakers.push(() => makeCharacter(
  7064. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7065. {
  7066. front: {
  7067. height: math.unit(9 + 6 / 12, "feet"),
  7068. weight: math.unit(523, "lbs"),
  7069. name: "Side",
  7070. image: {
  7071. source: "./media/characters/aurora/side.svg"
  7072. }
  7073. }
  7074. },
  7075. [
  7076. {
  7077. name: "Normal",
  7078. height: math.unit(9 + 6 / 12, "feet")
  7079. },
  7080. {
  7081. name: "Macro",
  7082. height: math.unit(96, "feet"),
  7083. default: true
  7084. },
  7085. {
  7086. name: "Macro+",
  7087. height: math.unit(243, "feet")
  7088. },
  7089. ]
  7090. ))
  7091. characterMakers.push(() => makeCharacter(
  7092. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7093. {
  7094. front: {
  7095. height: math.unit(194, "cm"),
  7096. weight: math.unit(90, "kg"),
  7097. name: "Front",
  7098. image: {
  7099. source: "./media/characters/ranek/front.svg"
  7100. }
  7101. },
  7102. side: {
  7103. height: math.unit(194, "cm"),
  7104. weight: math.unit(90, "kg"),
  7105. name: "Side",
  7106. image: {
  7107. source: "./media/characters/ranek/side.svg"
  7108. }
  7109. },
  7110. back: {
  7111. height: math.unit(194, "cm"),
  7112. weight: math.unit(90, "kg"),
  7113. name: "Back",
  7114. image: {
  7115. source: "./media/characters/ranek/back.svg"
  7116. }
  7117. },
  7118. feral: {
  7119. height: math.unit(30, "cm"),
  7120. weight: math.unit(1.6, "lbs"),
  7121. name: "Feral",
  7122. image: {
  7123. source: "./media/characters/ranek/feral.svg"
  7124. }
  7125. },
  7126. },
  7127. [
  7128. {
  7129. name: "Normal",
  7130. height: math.unit(194, "cm"),
  7131. default: true
  7132. },
  7133. {
  7134. name: "Macro",
  7135. height: math.unit(100, "meters")
  7136. },
  7137. ]
  7138. ))
  7139. characterMakers.push(() => makeCharacter(
  7140. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7141. {
  7142. front: {
  7143. height: math.unit(5 + 6 / 12, "feet"),
  7144. weight: math.unit(153, "lbs"),
  7145. name: "Front",
  7146. image: {
  7147. source: "./media/characters/andrew-cooper/front.svg"
  7148. }
  7149. },
  7150. },
  7151. [
  7152. {
  7153. name: "Nano",
  7154. height: math.unit(1, "mm")
  7155. },
  7156. {
  7157. name: "Micro",
  7158. height: math.unit(2, "inches")
  7159. },
  7160. {
  7161. name: "Normal",
  7162. height: math.unit(5 + 6 / 12, "feet"),
  7163. default: true
  7164. }
  7165. ]
  7166. ))
  7167. characterMakers.push(() => makeCharacter(
  7168. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7169. {
  7170. front: {
  7171. height: math.unit(6, "feet"),
  7172. weight: math.unit(180, "lbs"),
  7173. name: "Front",
  7174. image: {
  7175. source: "./media/characters/akane-sato/front.svg",
  7176. extra: 1219 / 1140
  7177. }
  7178. },
  7179. back: {
  7180. height: math.unit(6, "feet"),
  7181. weight: math.unit(180, "lbs"),
  7182. name: "Back",
  7183. image: {
  7184. source: "./media/characters/akane-sato/back.svg",
  7185. extra: 1219 / 1170
  7186. }
  7187. },
  7188. },
  7189. [
  7190. {
  7191. name: "Normal",
  7192. height: math.unit(2.5, "meters")
  7193. },
  7194. {
  7195. name: "Macro",
  7196. height: math.unit(250, "meters"),
  7197. default: true
  7198. },
  7199. {
  7200. name: "Megamacro",
  7201. height: math.unit(25, "km")
  7202. },
  7203. ]
  7204. ))
  7205. characterMakers.push(() => makeCharacter(
  7206. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7207. {
  7208. front: {
  7209. height: math.unit(6, "feet"),
  7210. weight: math.unit(65, "kg"),
  7211. name: "Front",
  7212. image: {
  7213. source: "./media/characters/rook/front.svg",
  7214. extra: 960 / 950
  7215. }
  7216. }
  7217. },
  7218. [
  7219. {
  7220. name: "Normal",
  7221. height: math.unit(8.8, "feet")
  7222. },
  7223. {
  7224. name: "Macro",
  7225. height: math.unit(88, "feet"),
  7226. default: true
  7227. },
  7228. {
  7229. name: "Megamacro",
  7230. height: math.unit(8, "miles")
  7231. },
  7232. ]
  7233. ))
  7234. characterMakers.push(() => makeCharacter(
  7235. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7236. {
  7237. front: {
  7238. height: math.unit(12 + 2 / 12, "feet"),
  7239. weight: math.unit(808, "lbs"),
  7240. name: "Front",
  7241. image: {
  7242. source: "./media/characters/prodigy/front.svg"
  7243. }
  7244. }
  7245. },
  7246. [
  7247. {
  7248. name: "Normal",
  7249. height: math.unit(12 + 2 / 12, "feet"),
  7250. default: true
  7251. },
  7252. {
  7253. name: "Macro",
  7254. height: math.unit(143, "feet")
  7255. },
  7256. {
  7257. name: "Macro+",
  7258. height: math.unit(400, "feet")
  7259. },
  7260. ]
  7261. ))
  7262. characterMakers.push(() => makeCharacter(
  7263. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7264. {
  7265. front: {
  7266. height: math.unit(6, "feet"),
  7267. weight: math.unit(225, "lbs"),
  7268. name: "Front",
  7269. image: {
  7270. source: "./media/characters/daniel/front.svg"
  7271. }
  7272. },
  7273. leaning: {
  7274. height: math.unit(6, "feet"),
  7275. weight: math.unit(225, "lbs"),
  7276. name: "Leaning",
  7277. image: {
  7278. source: "./media/characters/daniel/leaning.svg"
  7279. }
  7280. },
  7281. },
  7282. [
  7283. {
  7284. name: "Macro",
  7285. height: math.unit(1000, "feet"),
  7286. default: true
  7287. },
  7288. ]
  7289. ))
  7290. characterMakers.push(() => makeCharacter(
  7291. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7292. {
  7293. front: {
  7294. height: math.unit(6, "feet"),
  7295. weight: math.unit(88, "lbs"),
  7296. name: "Front",
  7297. image: {
  7298. source: "./media/characters/chiros/front.svg",
  7299. extra: 306 / 226
  7300. }
  7301. },
  7302. side: {
  7303. height: math.unit(6, "feet"),
  7304. weight: math.unit(88, "lbs"),
  7305. name: "Side",
  7306. image: {
  7307. source: "./media/characters/chiros/side.svg",
  7308. extra: 306 / 226
  7309. }
  7310. },
  7311. },
  7312. [
  7313. {
  7314. name: "Normal",
  7315. height: math.unit(6, "cm"),
  7316. default: true
  7317. },
  7318. ]
  7319. ))
  7320. characterMakers.push(() => makeCharacter(
  7321. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7322. {
  7323. front: {
  7324. height: math.unit(6, "feet"),
  7325. weight: math.unit(100, "lbs"),
  7326. name: "Front",
  7327. image: {
  7328. source: "./media/characters/selka/front.svg",
  7329. extra: 947 / 887
  7330. }
  7331. }
  7332. },
  7333. [
  7334. {
  7335. name: "Normal",
  7336. height: math.unit(5, "cm"),
  7337. default: true
  7338. },
  7339. ]
  7340. ))
  7341. characterMakers.push(() => makeCharacter(
  7342. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7343. {
  7344. front: {
  7345. height: math.unit(8 + 3 / 12, "feet"),
  7346. weight: math.unit(424, "lbs"),
  7347. name: "Front",
  7348. image: {
  7349. source: "./media/characters/verin/front.svg",
  7350. extra: 1845 / 1550
  7351. }
  7352. },
  7353. frontArmored: {
  7354. height: math.unit(8 + 3 / 12, "feet"),
  7355. weight: math.unit(424, "lbs"),
  7356. name: "Front (Armored)",
  7357. image: {
  7358. source: "./media/characters/verin/front-armor.svg",
  7359. extra: 1845 / 1550,
  7360. bottom: 0.01
  7361. }
  7362. },
  7363. back: {
  7364. height: math.unit(8 + 3 / 12, "feet"),
  7365. weight: math.unit(424, "lbs"),
  7366. name: "Back",
  7367. image: {
  7368. source: "./media/characters/verin/back.svg",
  7369. bottom: 0.1,
  7370. extra: 1
  7371. }
  7372. },
  7373. foot: {
  7374. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7375. name: "Foot",
  7376. image: {
  7377. source: "./media/characters/verin/foot.svg"
  7378. }
  7379. },
  7380. },
  7381. [
  7382. {
  7383. name: "Normal",
  7384. height: math.unit(8 + 3 / 12, "feet")
  7385. },
  7386. {
  7387. name: "Minimacro",
  7388. height: math.unit(21, "feet"),
  7389. default: true
  7390. },
  7391. {
  7392. name: "Macro",
  7393. height: math.unit(626, "feet")
  7394. },
  7395. ]
  7396. ))
  7397. characterMakers.push(() => makeCharacter(
  7398. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7399. {
  7400. front: {
  7401. height: math.unit(2.718, "meters"),
  7402. weight: math.unit(150, "lbs"),
  7403. name: "Front",
  7404. image: {
  7405. source: "./media/characters/sovrim-terraquian/front.svg"
  7406. }
  7407. },
  7408. back: {
  7409. height: math.unit(2.718, "meters"),
  7410. weight: math.unit(150, "lbs"),
  7411. name: "Back",
  7412. image: {
  7413. source: "./media/characters/sovrim-terraquian/back.svg"
  7414. }
  7415. }
  7416. },
  7417. [
  7418. {
  7419. name: "Micro",
  7420. height: math.unit(2, "inches")
  7421. },
  7422. {
  7423. name: "Small",
  7424. height: math.unit(1, "meter")
  7425. },
  7426. {
  7427. name: "Normal",
  7428. height: math.unit(Math.E, "meters"),
  7429. default: true
  7430. },
  7431. {
  7432. name: "Macro",
  7433. height: math.unit(20, "meters")
  7434. },
  7435. {
  7436. name: "Macro+",
  7437. height: math.unit(400, "meters")
  7438. },
  7439. ]
  7440. ))
  7441. characterMakers.push(() => makeCharacter(
  7442. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7443. {
  7444. front: {
  7445. height: math.unit(7, "feet"),
  7446. weight: math.unit(489, "lbs"),
  7447. name: "Front",
  7448. image: {
  7449. source: "./media/characters/reece-silvermane/front.svg",
  7450. bottom: 0.02,
  7451. extra: 1
  7452. }
  7453. },
  7454. },
  7455. [
  7456. {
  7457. name: "Macro",
  7458. height: math.unit(1.5, "miles"),
  7459. default: true
  7460. },
  7461. ]
  7462. ))
  7463. characterMakers.push(() => makeCharacter(
  7464. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7465. {
  7466. front: {
  7467. height: math.unit(6, "feet"),
  7468. weight: math.unit(78, "kg"),
  7469. name: "Front",
  7470. image: {
  7471. source: "./media/characters/kane/front.svg",
  7472. extra: 978 / 899
  7473. }
  7474. },
  7475. },
  7476. [
  7477. {
  7478. name: "Normal",
  7479. height: math.unit(2.1, "m"),
  7480. },
  7481. {
  7482. name: "Macro",
  7483. height: math.unit(1, "km"),
  7484. default: true
  7485. },
  7486. ]
  7487. ))
  7488. characterMakers.push(() => makeCharacter(
  7489. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7490. {
  7491. front: {
  7492. height: math.unit(6, "feet"),
  7493. weight: math.unit(200, "kg"),
  7494. name: "Front",
  7495. image: {
  7496. source: "./media/characters/tegon/front.svg",
  7497. bottom: 0.01,
  7498. extra: 1
  7499. }
  7500. },
  7501. },
  7502. [
  7503. {
  7504. name: "Micro",
  7505. height: math.unit(1, "inch")
  7506. },
  7507. {
  7508. name: "Normal",
  7509. height: math.unit(6 + 3 / 12, "feet"),
  7510. default: true
  7511. },
  7512. {
  7513. name: "Macro",
  7514. height: math.unit(300, "feet")
  7515. },
  7516. {
  7517. name: "Megamacro",
  7518. height: math.unit(69, "miles")
  7519. },
  7520. ]
  7521. ))
  7522. characterMakers.push(() => makeCharacter(
  7523. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7524. {
  7525. side: {
  7526. height: math.unit(6, "feet"),
  7527. weight: math.unit(2304, "lbs"),
  7528. name: "Side",
  7529. image: {
  7530. source: "./media/characters/arcturax/side.svg",
  7531. extra: 790 / 376,
  7532. bottom: 0.01
  7533. }
  7534. },
  7535. },
  7536. [
  7537. {
  7538. name: "Micro",
  7539. height: math.unit(2, "inch")
  7540. },
  7541. {
  7542. name: "Normal",
  7543. height: math.unit(6, "feet")
  7544. },
  7545. {
  7546. name: "Macro",
  7547. height: math.unit(39, "feet"),
  7548. default: true
  7549. },
  7550. {
  7551. name: "Megamacro",
  7552. height: math.unit(7, "miles")
  7553. },
  7554. ]
  7555. ))
  7556. characterMakers.push(() => makeCharacter(
  7557. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7558. {
  7559. front: {
  7560. height: math.unit(6, "feet"),
  7561. weight: math.unit(50, "lbs"),
  7562. name: "Front",
  7563. image: {
  7564. source: "./media/characters/sentri/front.svg",
  7565. extra: 1750 / 1570,
  7566. bottom: 0.025
  7567. }
  7568. },
  7569. frontAlt: {
  7570. height: math.unit(6, "feet"),
  7571. weight: math.unit(50, "lbs"),
  7572. name: "Front (Alt)",
  7573. image: {
  7574. source: "./media/characters/sentri/front-alt.svg",
  7575. extra: 1750 / 1570,
  7576. bottom: 0.025
  7577. }
  7578. },
  7579. },
  7580. [
  7581. {
  7582. name: "Normal",
  7583. height: math.unit(15, "feet"),
  7584. default: true
  7585. },
  7586. {
  7587. name: "Macro",
  7588. height: math.unit(2500, "feet")
  7589. }
  7590. ]
  7591. ))
  7592. characterMakers.push(() => makeCharacter(
  7593. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7594. {
  7595. front: {
  7596. height: math.unit(5 + 8 / 12, "feet"),
  7597. weight: math.unit(130, "lbs"),
  7598. name: "Front",
  7599. image: {
  7600. source: "./media/characters/corvin/front.svg",
  7601. extra: 1803 / 1629
  7602. }
  7603. },
  7604. frontShirt: {
  7605. height: math.unit(5 + 8 / 12, "feet"),
  7606. weight: math.unit(130, "lbs"),
  7607. name: "Front (Shirt)",
  7608. image: {
  7609. source: "./media/characters/corvin/front-shirt.svg",
  7610. extra: 1803 / 1629
  7611. }
  7612. },
  7613. frontPoncho: {
  7614. height: math.unit(5 + 8 / 12, "feet"),
  7615. weight: math.unit(130, "lbs"),
  7616. name: "Front (Poncho)",
  7617. image: {
  7618. source: "./media/characters/corvin/front-poncho.svg",
  7619. extra: 1803 / 1629
  7620. }
  7621. },
  7622. side: {
  7623. height: math.unit(5 + 8 / 12, "feet"),
  7624. weight: math.unit(130, "lbs"),
  7625. name: "Side",
  7626. image: {
  7627. source: "./media/characters/corvin/side.svg",
  7628. extra: 1012 / 945
  7629. }
  7630. },
  7631. back: {
  7632. height: math.unit(5 + 8 / 12, "feet"),
  7633. weight: math.unit(130, "lbs"),
  7634. name: "Back",
  7635. image: {
  7636. source: "./media/characters/corvin/back.svg",
  7637. extra: 1803 / 1629
  7638. }
  7639. },
  7640. },
  7641. [
  7642. {
  7643. name: "Micro",
  7644. height: math.unit(3, "inches")
  7645. },
  7646. {
  7647. name: "Normal",
  7648. height: math.unit(5 + 8 / 12, "feet")
  7649. },
  7650. {
  7651. name: "Macro",
  7652. height: math.unit(300, "feet"),
  7653. default: true
  7654. },
  7655. {
  7656. name: "Megamacro",
  7657. height: math.unit(500, "miles")
  7658. }
  7659. ]
  7660. ))
  7661. characterMakers.push(() => makeCharacter(
  7662. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7663. {
  7664. front: {
  7665. height: math.unit(6, "feet"),
  7666. weight: math.unit(135, "lbs"),
  7667. name: "Front",
  7668. image: {
  7669. source: "./media/characters/q/front.svg",
  7670. extra: 854 / 752,
  7671. bottom: 0.005
  7672. }
  7673. },
  7674. back: {
  7675. height: math.unit(6, "feet"),
  7676. weight: math.unit(130, "lbs"),
  7677. name: "Back",
  7678. image: {
  7679. source: "./media/characters/q/back.svg",
  7680. extra: 854 / 752
  7681. }
  7682. },
  7683. },
  7684. [
  7685. {
  7686. name: "Macro",
  7687. height: math.unit(90, "feet"),
  7688. default: true
  7689. },
  7690. {
  7691. name: "Extra Macro",
  7692. height: math.unit(300, "feet"),
  7693. },
  7694. {
  7695. name: "BIG WALF",
  7696. height: math.unit(750, "feet"),
  7697. },
  7698. ]
  7699. ))
  7700. characterMakers.push(() => makeCharacter(
  7701. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7702. {
  7703. front: {
  7704. height: math.unit(6, "feet"),
  7705. weight: math.unit(150, "lbs"),
  7706. name: "Front",
  7707. image: {
  7708. source: "./media/characters/carley/front.svg",
  7709. extra: 3927 / 3540,
  7710. bottom: 29.2 / 735
  7711. }
  7712. }
  7713. },
  7714. [
  7715. {
  7716. name: "Normal",
  7717. height: math.unit(6 + 3 / 12, "feet")
  7718. },
  7719. {
  7720. name: "Macro",
  7721. height: math.unit(185, "feet"),
  7722. default: true
  7723. },
  7724. {
  7725. name: "Megamacro",
  7726. height: math.unit(8, "miles"),
  7727. },
  7728. ]
  7729. ))
  7730. characterMakers.push(() => makeCharacter(
  7731. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7732. {
  7733. front: {
  7734. height: math.unit(3, "feet"),
  7735. weight: math.unit(28, "lbs"),
  7736. name: "Front",
  7737. image: {
  7738. source: "./media/characters/citrine/front.svg"
  7739. }
  7740. }
  7741. },
  7742. [
  7743. {
  7744. name: "Normal",
  7745. height: math.unit(3, "feet"),
  7746. default: true
  7747. }
  7748. ]
  7749. ))
  7750. characterMakers.push(() => makeCharacter(
  7751. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7752. {
  7753. front: {
  7754. height: math.unit(14, "feet"),
  7755. weight: math.unit(1450, "kg"),
  7756. capacity: math.unit(15, "people"),
  7757. name: "Front",
  7758. image: {
  7759. source: "./media/characters/aura-starwind/front.svg",
  7760. extra: 1455 / 1335
  7761. }
  7762. },
  7763. side: {
  7764. height: math.unit(14, "feet"),
  7765. weight: math.unit(1450, "kg"),
  7766. capacity: math.unit(15, "people"),
  7767. name: "Side",
  7768. image: {
  7769. source: "./media/characters/aura-starwind/side.svg",
  7770. extra: 1654 / 1497
  7771. }
  7772. },
  7773. taur: {
  7774. height: math.unit(18, "feet"),
  7775. weight: math.unit(5500, "kg"),
  7776. capacity: math.unit(50, "people"),
  7777. name: "Taur",
  7778. image: {
  7779. source: "./media/characters/aura-starwind/taur.svg",
  7780. extra: 1760 / 1650
  7781. }
  7782. },
  7783. feral: {
  7784. height: math.unit(46, "feet"),
  7785. weight: math.unit(25000, "kg"),
  7786. capacity: math.unit(120, "people"),
  7787. name: "Feral",
  7788. image: {
  7789. source: "./media/characters/aura-starwind/feral.svg"
  7790. }
  7791. },
  7792. },
  7793. [
  7794. {
  7795. name: "Normal",
  7796. height: math.unit(14, "feet"),
  7797. default: true
  7798. },
  7799. {
  7800. name: "Macro",
  7801. height: math.unit(50, "meters")
  7802. },
  7803. {
  7804. name: "Megamacro",
  7805. height: math.unit(5000, "meters")
  7806. },
  7807. {
  7808. name: "Gigamacro",
  7809. height: math.unit(100000, "kilometers")
  7810. },
  7811. ]
  7812. ))
  7813. characterMakers.push(() => makeCharacter(
  7814. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7815. {
  7816. front: {
  7817. height: math.unit(2 + 7 / 12, "feet"),
  7818. weight: math.unit(32, "lbs"),
  7819. name: "Front",
  7820. image: {
  7821. source: "./media/characters/rivet/front.svg",
  7822. extra: 1716 / 1658,
  7823. bottom: 0.03
  7824. }
  7825. },
  7826. foot: {
  7827. height: math.unit(0.551, "feet"),
  7828. name: "Rivet's Foot",
  7829. image: {
  7830. source: "./media/characters/rivet/foot.svg"
  7831. },
  7832. rename: true
  7833. }
  7834. },
  7835. [
  7836. {
  7837. name: "Micro",
  7838. height: math.unit(1.5, "inches"),
  7839. },
  7840. {
  7841. name: "Normal",
  7842. height: math.unit(2 + 7 / 12, "feet"),
  7843. default: true
  7844. },
  7845. {
  7846. name: "Macro",
  7847. height: math.unit(85, "feet")
  7848. },
  7849. {
  7850. name: "Megamacro",
  7851. height: math.unit(2.2, "km")
  7852. }
  7853. ]
  7854. ))
  7855. characterMakers.push(() => makeCharacter(
  7856. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7857. {
  7858. front: {
  7859. height: math.unit(5 + 9 / 12, "feet"),
  7860. weight: math.unit(150, "lbs"),
  7861. name: "Front",
  7862. image: {
  7863. source: "./media/characters/coffee/front.svg",
  7864. extra: 3666 / 3032,
  7865. bottom: 0.04
  7866. }
  7867. },
  7868. foot: {
  7869. height: math.unit(1.29, "feet"),
  7870. name: "Foot",
  7871. image: {
  7872. source: "./media/characters/coffee/foot.svg"
  7873. }
  7874. },
  7875. },
  7876. [
  7877. {
  7878. name: "Micro",
  7879. height: math.unit(2, "inches"),
  7880. },
  7881. {
  7882. name: "Normal",
  7883. height: math.unit(5 + 9 / 12, "feet"),
  7884. default: true
  7885. },
  7886. {
  7887. name: "Macro",
  7888. height: math.unit(800, "feet")
  7889. },
  7890. {
  7891. name: "Megamacro",
  7892. height: math.unit(25, "miles")
  7893. }
  7894. ]
  7895. ))
  7896. characterMakers.push(() => makeCharacter(
  7897. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7898. {
  7899. front: {
  7900. height: math.unit(6, "feet"),
  7901. weight: math.unit(200, "lbs"),
  7902. name: "Front",
  7903. image: {
  7904. source: "./media/characters/chari-gal/front.svg",
  7905. extra: 1568 / 1385,
  7906. bottom: 0.047
  7907. }
  7908. },
  7909. gigantamax: {
  7910. height: math.unit(6 * 16, "feet"),
  7911. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7912. name: "Gigantamax",
  7913. image: {
  7914. source: "./media/characters/chari-gal/gigantamax.svg",
  7915. extra: 1124 / 888,
  7916. bottom: 0.03
  7917. }
  7918. },
  7919. },
  7920. [
  7921. {
  7922. name: "Normal",
  7923. height: math.unit(5 + 7 / 12, "feet")
  7924. },
  7925. {
  7926. name: "Macro",
  7927. height: math.unit(200, "feet"),
  7928. default: true
  7929. }
  7930. ]
  7931. ))
  7932. characterMakers.push(() => makeCharacter(
  7933. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7934. {
  7935. front: {
  7936. height: math.unit(6, "feet"),
  7937. weight: math.unit(150, "lbs"),
  7938. name: "Front",
  7939. image: {
  7940. source: "./media/characters/nova/front.svg",
  7941. extra: 5000 / 4722,
  7942. bottom: 0.02
  7943. }
  7944. }
  7945. },
  7946. [
  7947. {
  7948. name: "Micro-",
  7949. height: math.unit(0.8, "inches")
  7950. },
  7951. {
  7952. name: "Micro",
  7953. height: math.unit(2, "inches"),
  7954. default: true
  7955. },
  7956. ]
  7957. ))
  7958. characterMakers.push(() => makeCharacter(
  7959. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7960. {
  7961. front: {
  7962. height: math.unit(3 + 1 / 12, "feet"),
  7963. weight: math.unit(21.7, "lbs"),
  7964. name: "Front",
  7965. image: {
  7966. source: "./media/characters/argent/front.svg",
  7967. extra: 1471 / 1331,
  7968. bottom: 100.8 / 1575.5
  7969. }
  7970. }
  7971. },
  7972. [
  7973. {
  7974. name: "Micro",
  7975. height: math.unit(2, "inches")
  7976. },
  7977. {
  7978. name: "Normal",
  7979. height: math.unit(3 + 1 / 12, "feet"),
  7980. default: true
  7981. },
  7982. {
  7983. name: "Macro",
  7984. height: math.unit(120, "feet")
  7985. },
  7986. ]
  7987. ))
  7988. characterMakers.push(() => makeCharacter(
  7989. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7990. {
  7991. lamp: {
  7992. height: math.unit(7 * 1559 / 989, "feet"),
  7993. name: "Magic Lamp",
  7994. image: {
  7995. source: "./media/characters/mira-al-cul/lamp.svg",
  7996. extra: 1617 / 1559
  7997. }
  7998. },
  7999. front: {
  8000. height: math.unit(7, "feet"),
  8001. name: "Front",
  8002. image: {
  8003. source: "./media/characters/mira-al-cul/front.svg",
  8004. extra: 1044 / 990
  8005. }
  8006. },
  8007. },
  8008. [
  8009. {
  8010. name: "Heavily Restricted",
  8011. height: math.unit(7 * 1559 / 989, "feet")
  8012. },
  8013. {
  8014. name: "Freshly Freed",
  8015. height: math.unit(50 * 1559 / 989, "feet")
  8016. },
  8017. {
  8018. name: "World Encompassing",
  8019. height: math.unit(10000 * 1559 / 989, "miles")
  8020. },
  8021. {
  8022. name: "Galactic",
  8023. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8024. },
  8025. {
  8026. name: "Palmed Universe",
  8027. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8028. default: true
  8029. },
  8030. {
  8031. name: "Multiversal Matriarch",
  8032. height: math.unit(8.87e10, "yottameters")
  8033. },
  8034. {
  8035. name: "Void Mother",
  8036. height: math.unit(3.14e110, "yottaparsecs")
  8037. },
  8038. {
  8039. name: "Toying with Transcendence",
  8040. height: math.unit(1e307, "meters")
  8041. },
  8042. ]
  8043. ))
  8044. characterMakers.push(() => makeCharacter(
  8045. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8046. {
  8047. front: {
  8048. height: math.unit(17 + 1 / 12, "feet"),
  8049. weight: math.unit(476.2 * 5, "lbs"),
  8050. name: "Front",
  8051. image: {
  8052. source: "./media/characters/kuro-shi-uchū/front.svg",
  8053. extra: 2329 / 1835,
  8054. bottom: 0.02
  8055. }
  8056. },
  8057. },
  8058. [
  8059. {
  8060. name: "Micro",
  8061. height: math.unit(2, "inches")
  8062. },
  8063. {
  8064. name: "Normal",
  8065. height: math.unit(12, "meters")
  8066. },
  8067. {
  8068. name: "Planetary",
  8069. height: math.unit(0.00929, "AU"),
  8070. default: true
  8071. },
  8072. {
  8073. name: "Universal",
  8074. height: math.unit(20, "gigaparsecs")
  8075. },
  8076. ]
  8077. ))
  8078. characterMakers.push(() => makeCharacter(
  8079. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8080. {
  8081. front: {
  8082. height: math.unit(5 + 2 / 12, "feet"),
  8083. weight: math.unit(120, "lbs"),
  8084. name: "Front",
  8085. image: {
  8086. source: "./media/characters/katherine/front.svg",
  8087. extra: 2075 / 1969
  8088. }
  8089. },
  8090. dress: {
  8091. height: math.unit(5 + 2 / 12, "feet"),
  8092. weight: math.unit(120, "lbs"),
  8093. name: "Dress",
  8094. image: {
  8095. source: "./media/characters/katherine/dress.svg",
  8096. extra: 2258 / 2064
  8097. }
  8098. },
  8099. },
  8100. [
  8101. {
  8102. name: "Micro",
  8103. height: math.unit(1, "inches"),
  8104. default: true
  8105. },
  8106. {
  8107. name: "Normal",
  8108. height: math.unit(5 + 2 / 12, "feet")
  8109. },
  8110. {
  8111. name: "Macro",
  8112. height: math.unit(100, "meters")
  8113. },
  8114. {
  8115. name: "Megamacro",
  8116. height: math.unit(80, "miles")
  8117. },
  8118. ]
  8119. ))
  8120. characterMakers.push(() => makeCharacter(
  8121. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8122. {
  8123. front: {
  8124. height: math.unit(7 + 8 / 12, "feet"),
  8125. weight: math.unit(250, "lbs"),
  8126. name: "Front",
  8127. image: {
  8128. source: "./media/characters/yevis/front.svg",
  8129. extra: 1938 / 1755
  8130. }
  8131. }
  8132. },
  8133. [
  8134. {
  8135. name: "Mortal",
  8136. height: math.unit(7 + 8 / 12, "feet")
  8137. },
  8138. {
  8139. name: "Battle",
  8140. height: math.unit(25 + 11 / 12, "feet")
  8141. },
  8142. {
  8143. name: "Wrath",
  8144. height: math.unit(1654 + 11 / 12, "feet")
  8145. },
  8146. {
  8147. name: "Planet Destroyer",
  8148. height: math.unit(12000, "miles")
  8149. },
  8150. {
  8151. name: "Galaxy Conqueror",
  8152. height: math.unit(1.45, "zettameters"),
  8153. default: true
  8154. },
  8155. {
  8156. name: "Universal War",
  8157. height: math.unit(184, "gigaparsecs")
  8158. },
  8159. {
  8160. name: "Eternity War",
  8161. height: math.unit(1.98e55, "yottaparsecs")
  8162. },
  8163. ]
  8164. ))
  8165. characterMakers.push(() => makeCharacter(
  8166. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8167. {
  8168. front: {
  8169. height: math.unit(5 + 8 / 12, "feet"),
  8170. weight: math.unit(63, "kg"),
  8171. name: "Front",
  8172. image: {
  8173. source: "./media/characters/xavier/front.svg",
  8174. extra: 944 / 883
  8175. }
  8176. },
  8177. frontStretch: {
  8178. height: math.unit(5 + 8 / 12, "feet"),
  8179. weight: math.unit(63, "kg"),
  8180. name: "Stretching",
  8181. image: {
  8182. source: "./media/characters/xavier/front-stretch.svg",
  8183. extra: 962 / 820
  8184. }
  8185. },
  8186. },
  8187. [
  8188. {
  8189. name: "Normal",
  8190. height: math.unit(5 + 8 / 12, "feet")
  8191. },
  8192. {
  8193. name: "Macro",
  8194. height: math.unit(100, "meters"),
  8195. default: true
  8196. },
  8197. {
  8198. name: "McLargeHuge",
  8199. height: math.unit(10, "miles")
  8200. },
  8201. ]
  8202. ))
  8203. characterMakers.push(() => makeCharacter(
  8204. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8205. {
  8206. front: {
  8207. height: math.unit(5 + 5 / 12, "feet"),
  8208. weight: math.unit(150, "lb"),
  8209. name: "Front",
  8210. image: {
  8211. source: "./media/characters/joshii/front.svg",
  8212. extra: 765 / 653,
  8213. bottom: 51 / 816
  8214. }
  8215. },
  8216. foot: {
  8217. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8218. name: "Foot",
  8219. image: {
  8220. source: "./media/characters/joshii/foot.svg"
  8221. }
  8222. },
  8223. },
  8224. [
  8225. {
  8226. name: "Micro",
  8227. height: math.unit(2, "inches"),
  8228. default: true
  8229. },
  8230. {
  8231. name: "Normal",
  8232. height: math.unit(5 + 5 / 12, "feet")
  8233. },
  8234. {
  8235. name: "Macro",
  8236. height: math.unit(785, "feet")
  8237. },
  8238. {
  8239. name: "Megamacro",
  8240. height: math.unit(24.5, "miles")
  8241. },
  8242. ]
  8243. ))
  8244. characterMakers.push(() => makeCharacter(
  8245. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8246. {
  8247. front: {
  8248. height: math.unit(6, "feet"),
  8249. weight: math.unit(150, "lb"),
  8250. name: "Front",
  8251. image: {
  8252. source: "./media/characters/goddess-elizabeth/front.svg",
  8253. extra: 1800 / 1525,
  8254. bottom: 0.005
  8255. }
  8256. },
  8257. foot: {
  8258. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8259. name: "Foot",
  8260. image: {
  8261. source: "./media/characters/goddess-elizabeth/foot.svg"
  8262. }
  8263. },
  8264. mouth: {
  8265. height: math.unit(6, "feet"),
  8266. name: "Mouth",
  8267. image: {
  8268. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8269. }
  8270. },
  8271. },
  8272. [
  8273. {
  8274. name: "Micro",
  8275. height: math.unit(12, "feet")
  8276. },
  8277. {
  8278. name: "Normal",
  8279. height: math.unit(80, "miles"),
  8280. default: true
  8281. },
  8282. {
  8283. name: "Macro",
  8284. height: math.unit(15000, "parsecs")
  8285. },
  8286. ]
  8287. ))
  8288. characterMakers.push(() => makeCharacter(
  8289. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8290. {
  8291. front: {
  8292. height: math.unit(5 + 9 / 12, "feet"),
  8293. weight: math.unit(144, "lb"),
  8294. name: "Front",
  8295. image: {
  8296. source: "./media/characters/kara/front.svg"
  8297. }
  8298. },
  8299. feet: {
  8300. height: math.unit(6 / 6.765, "feet"),
  8301. name: "Kara's Feet",
  8302. rename: true,
  8303. image: {
  8304. source: "./media/characters/kara/feet.svg"
  8305. }
  8306. },
  8307. },
  8308. [
  8309. {
  8310. name: "Normal",
  8311. height: math.unit(5 + 9 / 12, "feet")
  8312. },
  8313. {
  8314. name: "Macro",
  8315. height: math.unit(174, "feet"),
  8316. default: true
  8317. },
  8318. ]
  8319. ))
  8320. characterMakers.push(() => makeCharacter(
  8321. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8322. {
  8323. front: {
  8324. height: math.unit(18, "feet"),
  8325. weight: math.unit(4050, "lb"),
  8326. name: "Front",
  8327. image: {
  8328. source: "./media/characters/tyrone/front.svg",
  8329. extra: 2405 / 2270,
  8330. bottom: 182 / 2587
  8331. }
  8332. },
  8333. },
  8334. [
  8335. {
  8336. name: "Normal",
  8337. height: math.unit(18, "feet"),
  8338. default: true
  8339. },
  8340. {
  8341. name: "Macro",
  8342. height: math.unit(300, "feet")
  8343. },
  8344. {
  8345. name: "Megamacro",
  8346. height: math.unit(15, "km")
  8347. },
  8348. {
  8349. name: "Gigamacro",
  8350. height: math.unit(500, "km")
  8351. },
  8352. {
  8353. name: "Teramacro",
  8354. height: math.unit(0.5, "gigameters")
  8355. },
  8356. {
  8357. name: "Omnimacro",
  8358. height: math.unit(1e252, "yottauniverse")
  8359. },
  8360. ]
  8361. ))
  8362. characterMakers.push(() => makeCharacter(
  8363. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8364. {
  8365. front: {
  8366. height: math.unit(7 + 8 / 12, "feet"),
  8367. weight: math.unit(120, "lb"),
  8368. name: "Front",
  8369. image: {
  8370. source: "./media/characters/danny/front.svg",
  8371. extra: 1490 / 1350
  8372. }
  8373. },
  8374. back: {
  8375. height: math.unit(7 + 8 / 12, "feet"),
  8376. weight: math.unit(120, "lb"),
  8377. name: "Back",
  8378. image: {
  8379. source: "./media/characters/danny/back.svg",
  8380. extra: 1490 / 1350
  8381. }
  8382. },
  8383. },
  8384. [
  8385. {
  8386. name: "Normal",
  8387. height: math.unit(7 + 8 / 12, "feet"),
  8388. default: true
  8389. },
  8390. ]
  8391. ))
  8392. characterMakers.push(() => makeCharacter(
  8393. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8394. {
  8395. front: {
  8396. height: math.unit(3.5, "inches"),
  8397. weight: math.unit(19, "grams"),
  8398. name: "Front",
  8399. image: {
  8400. source: "./media/characters/mallow/front.svg",
  8401. extra: 471 / 431
  8402. }
  8403. },
  8404. back: {
  8405. height: math.unit(3.5, "inches"),
  8406. weight: math.unit(19, "grams"),
  8407. name: "Back",
  8408. image: {
  8409. source: "./media/characters/mallow/back.svg",
  8410. extra: 471 / 431
  8411. }
  8412. },
  8413. },
  8414. [
  8415. {
  8416. name: "Normal",
  8417. height: math.unit(3.5, "inches"),
  8418. default: true
  8419. },
  8420. ]
  8421. ))
  8422. characterMakers.push(() => makeCharacter(
  8423. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8424. {
  8425. front: {
  8426. height: math.unit(9, "feet"),
  8427. weight: math.unit(230, "kg"),
  8428. name: "Front",
  8429. image: {
  8430. source: "./media/characters/starry-aqua/front.svg"
  8431. }
  8432. },
  8433. back: {
  8434. height: math.unit(9, "feet"),
  8435. weight: math.unit(230, "kg"),
  8436. name: "Back",
  8437. image: {
  8438. source: "./media/characters/starry-aqua/back.svg"
  8439. }
  8440. },
  8441. hand: {
  8442. height: math.unit(9 * 0.1168, "feet"),
  8443. name: "Hand",
  8444. image: {
  8445. source: "./media/characters/starry-aqua/hand.svg"
  8446. }
  8447. },
  8448. foot: {
  8449. height: math.unit(9 * 0.18, "feet"),
  8450. name: "Foot",
  8451. image: {
  8452. source: "./media/characters/starry-aqua/foot.svg"
  8453. }
  8454. }
  8455. },
  8456. [
  8457. {
  8458. name: "Micro",
  8459. height: math.unit(3, "inches")
  8460. },
  8461. {
  8462. name: "Normal",
  8463. height: math.unit(9, "feet")
  8464. },
  8465. {
  8466. name: "Macro",
  8467. height: math.unit(300, "feet"),
  8468. default: true
  8469. },
  8470. {
  8471. name: "Megamacro",
  8472. height: math.unit(3200, "feet")
  8473. }
  8474. ]
  8475. ))
  8476. characterMakers.push(() => makeCharacter(
  8477. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8478. {
  8479. front: {
  8480. height: math.unit(6, "feet"),
  8481. weight: math.unit(230, "lb"),
  8482. name: "Front",
  8483. image: {
  8484. source: "./media/characters/luka/front.svg",
  8485. extra: 1,
  8486. bottom: 0.025
  8487. }
  8488. },
  8489. },
  8490. [
  8491. {
  8492. name: "Normal",
  8493. height: math.unit(12 + 8 / 12, "feet"),
  8494. default: true
  8495. },
  8496. {
  8497. name: "Minimacro",
  8498. height: math.unit(20, "feet")
  8499. },
  8500. {
  8501. name: "Macro",
  8502. height: math.unit(250, "feet")
  8503. },
  8504. {
  8505. name: "Megamacro",
  8506. height: math.unit(5, "miles")
  8507. },
  8508. {
  8509. name: "Gigamacro",
  8510. height: math.unit(8000, "miles")
  8511. },
  8512. ]
  8513. ))
  8514. characterMakers.push(() => makeCharacter(
  8515. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8516. {
  8517. front: {
  8518. height: math.unit(6, "feet"),
  8519. weight: math.unit(150, "lb"),
  8520. name: "Front",
  8521. image: {
  8522. source: "./media/characters/natalie-nightring/front.svg",
  8523. extra: 1,
  8524. bottom: 0.06
  8525. }
  8526. },
  8527. },
  8528. [
  8529. {
  8530. name: "Uh Oh",
  8531. height: math.unit(0.1, "mm")
  8532. },
  8533. {
  8534. name: "Small",
  8535. height: math.unit(3, "inches")
  8536. },
  8537. {
  8538. name: "Human Scale",
  8539. height: math.unit(6, "feet")
  8540. },
  8541. {
  8542. name: "Librarian",
  8543. height: math.unit(50, "feet"),
  8544. default: true
  8545. },
  8546. {
  8547. name: "Immense",
  8548. height: math.unit(200, "miles")
  8549. },
  8550. ]
  8551. ))
  8552. characterMakers.push(() => makeCharacter(
  8553. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8554. {
  8555. front: {
  8556. height: math.unit(6, "feet"),
  8557. weight: math.unit(180, "lbs"),
  8558. name: "Front",
  8559. image: {
  8560. source: "./media/characters/danni-rosie/front.svg",
  8561. extra: 1260 / 1128,
  8562. bottom: 0.022
  8563. }
  8564. },
  8565. },
  8566. [
  8567. {
  8568. name: "Micro",
  8569. height: math.unit(2, "inches"),
  8570. default: true
  8571. },
  8572. ]
  8573. ))
  8574. characterMakers.push(() => makeCharacter(
  8575. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8576. {
  8577. front: {
  8578. height: math.unit(5 + 9 / 12, "feet"),
  8579. weight: math.unit(220, "lb"),
  8580. name: "Front",
  8581. image: {
  8582. source: "./media/characters/samantha-kruse/front.svg",
  8583. extra: (985 / 935),
  8584. bottom: 0.03
  8585. }
  8586. },
  8587. frontUndressed: {
  8588. height: math.unit(5 + 9 / 12, "feet"),
  8589. weight: math.unit(220, "lb"),
  8590. name: "Front (Undressed)",
  8591. image: {
  8592. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8593. extra: (973 / 923),
  8594. bottom: 0.025
  8595. }
  8596. },
  8597. fat: {
  8598. height: math.unit(5 + 9 / 12, "feet"),
  8599. weight: math.unit(900, "lb"),
  8600. name: "Front (Fat)",
  8601. image: {
  8602. source: "./media/characters/samantha-kruse/fat.svg",
  8603. extra: 2688 / 2561
  8604. }
  8605. },
  8606. },
  8607. [
  8608. {
  8609. name: "Normal",
  8610. height: math.unit(5 + 9 / 12, "feet"),
  8611. default: true
  8612. }
  8613. ]
  8614. ))
  8615. characterMakers.push(() => makeCharacter(
  8616. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8617. {
  8618. back: {
  8619. height: math.unit(5 + 4 / 12, "feet"),
  8620. weight: math.unit(4963, "lb"),
  8621. name: "Back",
  8622. image: {
  8623. source: "./media/characters/amelia-rosie/back.svg",
  8624. extra: 1113 / 963,
  8625. bottom: 0.01
  8626. }
  8627. },
  8628. },
  8629. [
  8630. {
  8631. name: "Level 0",
  8632. height: math.unit(5 + 4 / 12, "feet")
  8633. },
  8634. {
  8635. name: "Level 1",
  8636. height: math.unit(164597, "feet"),
  8637. default: true
  8638. },
  8639. {
  8640. name: "Level 2",
  8641. height: math.unit(956243, "miles")
  8642. },
  8643. {
  8644. name: "Level 3",
  8645. height: math.unit(29421709423, "miles")
  8646. },
  8647. {
  8648. name: "Level 4",
  8649. height: math.unit(154, "lightyears")
  8650. },
  8651. {
  8652. name: "Level 5",
  8653. height: math.unit(4738272, "lightyears")
  8654. },
  8655. {
  8656. name: "Level 6",
  8657. height: math.unit(145787152896, "lightyears")
  8658. },
  8659. ]
  8660. ))
  8661. characterMakers.push(() => makeCharacter(
  8662. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8663. {
  8664. front: {
  8665. height: math.unit(5 + 11 / 12, "feet"),
  8666. weight: math.unit(65, "kg"),
  8667. name: "Front",
  8668. image: {
  8669. source: "./media/characters/rook-kitara/front.svg",
  8670. extra: 1347 / 1274,
  8671. bottom: 0.005
  8672. }
  8673. },
  8674. },
  8675. [
  8676. {
  8677. name: "Totally Unfair",
  8678. height: math.unit(1.8, "mm")
  8679. },
  8680. {
  8681. name: "Lap Rookie",
  8682. height: math.unit(1.4, "feet")
  8683. },
  8684. {
  8685. name: "Normal",
  8686. height: math.unit(5 + 11 / 12, "feet"),
  8687. default: true
  8688. },
  8689. {
  8690. name: "How Did This Happen",
  8691. height: math.unit(80, "miles")
  8692. }
  8693. ]
  8694. ))
  8695. characterMakers.push(() => makeCharacter(
  8696. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8697. {
  8698. front: {
  8699. height: math.unit(7, "feet"),
  8700. weight: math.unit(300, "lb"),
  8701. name: "Front",
  8702. image: {
  8703. source: "./media/characters/pisces/front.svg",
  8704. extra: 2255 / 2115,
  8705. bottom: 0.03
  8706. }
  8707. },
  8708. back: {
  8709. height: math.unit(7, "feet"),
  8710. weight: math.unit(300, "lb"),
  8711. name: "Back",
  8712. image: {
  8713. source: "./media/characters/pisces/back.svg",
  8714. extra: 2146 / 2055,
  8715. bottom: 0.04
  8716. }
  8717. },
  8718. },
  8719. [
  8720. {
  8721. name: "Normal",
  8722. height: math.unit(7, "feet"),
  8723. default: true
  8724. },
  8725. {
  8726. name: "Swimming Pool",
  8727. height: math.unit(12.2, "meters")
  8728. },
  8729. {
  8730. name: "Olympic Swimming Pool",
  8731. height: math.unit(56.3, "meters")
  8732. },
  8733. {
  8734. name: "Lake Superior",
  8735. height: math.unit(93900, "meters")
  8736. },
  8737. {
  8738. name: "Mediterranean Sea",
  8739. height: math.unit(644457, "meters")
  8740. },
  8741. {
  8742. name: "World's Oceans",
  8743. height: math.unit(4567491, "meters")
  8744. },
  8745. ]
  8746. ))
  8747. characterMakers.push(() => makeCharacter(
  8748. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8749. {
  8750. front: {
  8751. height: math.unit(2.3, "meters"),
  8752. weight: math.unit(120, "kg"),
  8753. name: "Front",
  8754. image: {
  8755. source: "./media/characters/zelas/front.svg"
  8756. }
  8757. },
  8758. side: {
  8759. height: math.unit(2.3, "meters"),
  8760. weight: math.unit(120, "kg"),
  8761. name: "Side",
  8762. image: {
  8763. source: "./media/characters/zelas/side.svg"
  8764. }
  8765. },
  8766. back: {
  8767. height: math.unit(2.3, "meters"),
  8768. weight: math.unit(120, "kg"),
  8769. name: "Back",
  8770. image: {
  8771. source: "./media/characters/zelas/back.svg"
  8772. }
  8773. },
  8774. foot: {
  8775. height: math.unit(1.116, "feet"),
  8776. name: "Foot",
  8777. image: {
  8778. source: "./media/characters/zelas/foot.svg"
  8779. }
  8780. },
  8781. },
  8782. [
  8783. {
  8784. name: "Normal",
  8785. height: math.unit(2.3, "meters")
  8786. },
  8787. {
  8788. name: "Macro",
  8789. height: math.unit(30, "meters"),
  8790. default: true
  8791. },
  8792. ]
  8793. ))
  8794. characterMakers.push(() => makeCharacter(
  8795. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8796. {
  8797. front: {
  8798. height: math.unit(1, "inch"),
  8799. weight: math.unit(0.21, "grams"),
  8800. name: "Front",
  8801. image: {
  8802. source: "./media/characters/talbot/front.svg",
  8803. extra: 594 / 544
  8804. }
  8805. },
  8806. },
  8807. [
  8808. {
  8809. name: "Micro",
  8810. height: math.unit(1, "inch"),
  8811. default: true
  8812. },
  8813. ]
  8814. ))
  8815. characterMakers.push(() => makeCharacter(
  8816. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8817. {
  8818. front: {
  8819. height: math.unit(3 + 3 / 12, "feet"),
  8820. weight: math.unit(51.8, "lb"),
  8821. name: "Front",
  8822. image: {
  8823. source: "./media/characters/fliss/front.svg",
  8824. extra: 840 / 640
  8825. }
  8826. },
  8827. },
  8828. [
  8829. {
  8830. name: "Teeny Tiny",
  8831. height: math.unit(1, "mm")
  8832. },
  8833. {
  8834. name: "Small",
  8835. height: math.unit(1, "inch"),
  8836. default: true
  8837. },
  8838. {
  8839. name: "Standard Sylveon",
  8840. height: math.unit(3 + 3 / 12, "feet")
  8841. },
  8842. {
  8843. name: "Large Nuisance",
  8844. height: math.unit(33, "feet")
  8845. },
  8846. {
  8847. name: "City Filler",
  8848. height: math.unit(3000, "feet")
  8849. },
  8850. {
  8851. name: "New Horizon",
  8852. height: math.unit(6000, "miles")
  8853. },
  8854. ]
  8855. ))
  8856. characterMakers.push(() => makeCharacter(
  8857. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8858. {
  8859. front: {
  8860. height: math.unit(5, "cm"),
  8861. weight: math.unit(1.94, "g"),
  8862. name: "Front",
  8863. image: {
  8864. source: "./media/characters/fleta/front.svg",
  8865. extra: 835 / 803
  8866. }
  8867. },
  8868. back: {
  8869. height: math.unit(5, "cm"),
  8870. weight: math.unit(1.94, "g"),
  8871. name: "Back",
  8872. image: {
  8873. source: "./media/characters/fleta/back.svg",
  8874. extra: 835 / 803
  8875. }
  8876. },
  8877. },
  8878. [
  8879. {
  8880. name: "Micro",
  8881. height: math.unit(5, "cm"),
  8882. default: true
  8883. },
  8884. ]
  8885. ))
  8886. characterMakers.push(() => makeCharacter(
  8887. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8888. {
  8889. front: {
  8890. height: math.unit(6, "feet"),
  8891. weight: math.unit(225, "lb"),
  8892. name: "Front",
  8893. image: {
  8894. source: "./media/characters/dominic/front.svg",
  8895. extra: 1770 / 1620,
  8896. bottom: 0.025
  8897. }
  8898. },
  8899. back: {
  8900. height: math.unit(6, "feet"),
  8901. weight: math.unit(225, "lb"),
  8902. name: "Back",
  8903. image: {
  8904. source: "./media/characters/dominic/back.svg",
  8905. extra: 1745 / 1620,
  8906. bottom: 0.065
  8907. }
  8908. },
  8909. },
  8910. [
  8911. {
  8912. name: "Nano",
  8913. height: math.unit(0.1, "mm")
  8914. },
  8915. {
  8916. name: "Micro-",
  8917. height: math.unit(1, "mm")
  8918. },
  8919. {
  8920. name: "Micro",
  8921. height: math.unit(4, "inches")
  8922. },
  8923. {
  8924. name: "Normal",
  8925. height: math.unit(6 + 4 / 12, "feet"),
  8926. default: true
  8927. },
  8928. {
  8929. name: "Macro",
  8930. height: math.unit(115, "feet")
  8931. },
  8932. {
  8933. name: "Macro+",
  8934. height: math.unit(955, "feet")
  8935. },
  8936. {
  8937. name: "Megamacro",
  8938. height: math.unit(8990, "feet")
  8939. },
  8940. {
  8941. name: "Gigmacro",
  8942. height: math.unit(9310, "miles")
  8943. },
  8944. {
  8945. name: "Teramacro",
  8946. height: math.unit(1567005010, "miles")
  8947. },
  8948. {
  8949. name: "Examacro",
  8950. height: math.unit(1425, "parsecs")
  8951. },
  8952. ]
  8953. ))
  8954. characterMakers.push(() => makeCharacter(
  8955. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8956. {
  8957. front: {
  8958. height: math.unit(400, "feet"),
  8959. weight: math.unit(44444444, "lb"),
  8960. name: "Front",
  8961. image: {
  8962. source: "./media/characters/major-colonel/front.svg"
  8963. }
  8964. },
  8965. back: {
  8966. height: math.unit(400, "feet"),
  8967. weight: math.unit(44444444, "lb"),
  8968. name: "Back",
  8969. image: {
  8970. source: "./media/characters/major-colonel/back.svg"
  8971. }
  8972. },
  8973. },
  8974. [
  8975. {
  8976. name: "Macro",
  8977. height: math.unit(400, "feet"),
  8978. default: true
  8979. },
  8980. ]
  8981. ))
  8982. characterMakers.push(() => makeCharacter(
  8983. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8984. {
  8985. catFront: {
  8986. height: math.unit(6, "feet"),
  8987. weight: math.unit(120, "lb"),
  8988. name: "Front (Cat Side)",
  8989. image: {
  8990. source: "./media/characters/axel-lycan/cat-front.svg",
  8991. extra: 430 / 402,
  8992. bottom: 43 / 472.35
  8993. }
  8994. },
  8995. catBack: {
  8996. height: math.unit(6, "feet"),
  8997. weight: math.unit(120, "lb"),
  8998. name: "Back (Cat Side)",
  8999. image: {
  9000. source: "./media/characters/axel-lycan/cat-back.svg",
  9001. extra: 447 / 419,
  9002. bottom: 23.3 / 469
  9003. }
  9004. },
  9005. wolfFront: {
  9006. height: math.unit(6, "feet"),
  9007. weight: math.unit(120, "lb"),
  9008. name: "Front (Wolf Side)",
  9009. image: {
  9010. source: "./media/characters/axel-lycan/wolf-front.svg",
  9011. extra: 485 / 456,
  9012. bottom: 19 / 504
  9013. }
  9014. },
  9015. wolfBack: {
  9016. height: math.unit(6, "feet"),
  9017. weight: math.unit(120, "lb"),
  9018. name: "Back (Wolf Side)",
  9019. image: {
  9020. source: "./media/characters/axel-lycan/wolf-back.svg",
  9021. extra: 475 / 438,
  9022. bottom: 39.2 / 514
  9023. }
  9024. },
  9025. },
  9026. [
  9027. {
  9028. name: "Macro",
  9029. height: math.unit(1, "km"),
  9030. default: true
  9031. },
  9032. ]
  9033. ))
  9034. characterMakers.push(() => makeCharacter(
  9035. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9036. {
  9037. front: {
  9038. height: math.unit(5 + 9 / 12, "feet"),
  9039. weight: math.unit(175, "lb"),
  9040. name: "Front",
  9041. image: {
  9042. source: "./media/characters/vanrel-hyena/front.svg",
  9043. extra: 1086 / 1010,
  9044. bottom: 0.04
  9045. }
  9046. },
  9047. },
  9048. [
  9049. {
  9050. name: "Normal",
  9051. height: math.unit(5 + 9 / 12, "feet"),
  9052. default: true
  9053. },
  9054. ]
  9055. ))
  9056. characterMakers.push(() => makeCharacter(
  9057. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9058. {
  9059. front: {
  9060. height: math.unit(6, "feet"),
  9061. weight: math.unit(103, "lb"),
  9062. name: "Front",
  9063. image: {
  9064. source: "./media/characters/abbott-absol/front.svg",
  9065. extra: 2010 / 1842
  9066. }
  9067. },
  9068. },
  9069. [
  9070. {
  9071. name: "Megamicro",
  9072. height: math.unit(0.1, "mm")
  9073. },
  9074. {
  9075. name: "Micro",
  9076. height: math.unit(1, "inch")
  9077. },
  9078. {
  9079. name: "Normal",
  9080. height: math.unit(6, "feet"),
  9081. default: true
  9082. },
  9083. ]
  9084. ))
  9085. characterMakers.push(() => makeCharacter(
  9086. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9087. {
  9088. front: {
  9089. height: math.unit(6, "feet"),
  9090. weight: math.unit(264, "lb"),
  9091. name: "Front",
  9092. image: {
  9093. source: "./media/characters/hector/front.svg",
  9094. extra: 2280 / 2130,
  9095. bottom: 0.07
  9096. }
  9097. },
  9098. },
  9099. [
  9100. {
  9101. name: "Normal",
  9102. height: math.unit(12.25, "foot"),
  9103. default: true
  9104. },
  9105. {
  9106. name: "Macro",
  9107. height: math.unit(160, "feet")
  9108. },
  9109. ]
  9110. ))
  9111. characterMakers.push(() => makeCharacter(
  9112. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9113. {
  9114. front: {
  9115. height: math.unit(6, "feet"),
  9116. weight: math.unit(150, "lb"),
  9117. name: "Front",
  9118. image: {
  9119. source: "./media/characters/sal/front.svg",
  9120. extra: 1846 / 1699,
  9121. bottom: 0.04
  9122. }
  9123. },
  9124. },
  9125. [
  9126. {
  9127. name: "Megamacro",
  9128. height: math.unit(10, "miles"),
  9129. default: true
  9130. },
  9131. ]
  9132. ))
  9133. characterMakers.push(() => makeCharacter(
  9134. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9135. {
  9136. front: {
  9137. height: math.unit(3, "meters"),
  9138. weight: math.unit(450, "kg"),
  9139. name: "front",
  9140. image: {
  9141. source: "./media/characters/ranger/front.svg",
  9142. extra: 2401 / 2243,
  9143. bottom: 0.05
  9144. }
  9145. },
  9146. },
  9147. [
  9148. {
  9149. name: "Normal",
  9150. height: math.unit(3, "meters"),
  9151. default: true
  9152. },
  9153. ]
  9154. ))
  9155. characterMakers.push(() => makeCharacter(
  9156. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9157. {
  9158. front: {
  9159. height: math.unit(14, "feet"),
  9160. weight: math.unit(800, "kg"),
  9161. name: "Front",
  9162. image: {
  9163. source: "./media/characters/theresa/front.svg",
  9164. extra: 3575 / 3346,
  9165. bottom: 0.03
  9166. }
  9167. },
  9168. },
  9169. [
  9170. {
  9171. name: "Normal",
  9172. height: math.unit(14, "feet"),
  9173. default: true
  9174. },
  9175. ]
  9176. ))
  9177. characterMakers.push(() => makeCharacter(
  9178. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9179. {
  9180. front: {
  9181. height: math.unit(6, "feet"),
  9182. weight: math.unit(3, "kg"),
  9183. name: "Front",
  9184. image: {
  9185. source: "./media/characters/ine/front.svg",
  9186. extra: 678 / 539,
  9187. bottom: 0.023
  9188. }
  9189. },
  9190. },
  9191. [
  9192. {
  9193. name: "Normal",
  9194. height: math.unit(2.265, "feet"),
  9195. default: true
  9196. },
  9197. ]
  9198. ))
  9199. characterMakers.push(() => makeCharacter(
  9200. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9201. {
  9202. front: {
  9203. height: math.unit(5, "feet"),
  9204. weight: math.unit(30, "kg"),
  9205. name: "Front",
  9206. image: {
  9207. source: "./media/characters/vial/front.svg",
  9208. extra: 1365 / 1277,
  9209. bottom: 0.04
  9210. }
  9211. },
  9212. },
  9213. [
  9214. {
  9215. name: "Normal",
  9216. height: math.unit(5, "feet"),
  9217. default: true
  9218. },
  9219. ]
  9220. ))
  9221. characterMakers.push(() => makeCharacter(
  9222. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9223. {
  9224. side: {
  9225. height: math.unit(3.4, "meters"),
  9226. weight: math.unit(1000, "lb"),
  9227. name: "Side",
  9228. image: {
  9229. source: "./media/characters/rovoska/side.svg",
  9230. extra: 4403 / 1515
  9231. }
  9232. },
  9233. },
  9234. [
  9235. {
  9236. name: "Normal",
  9237. height: math.unit(3.4, "meters"),
  9238. default: true
  9239. },
  9240. ]
  9241. ))
  9242. characterMakers.push(() => makeCharacter(
  9243. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9244. {
  9245. front: {
  9246. height: math.unit(8, "feet"),
  9247. weight: math.unit(315, "lb"),
  9248. name: "Front",
  9249. image: {
  9250. source: "./media/characters/gunner-rotthbauer/front.svg"
  9251. }
  9252. },
  9253. back: {
  9254. height: math.unit(8, "feet"),
  9255. weight: math.unit(315, "lb"),
  9256. name: "Back",
  9257. image: {
  9258. source: "./media/characters/gunner-rotthbauer/back.svg"
  9259. }
  9260. },
  9261. },
  9262. [
  9263. {
  9264. name: "Micro",
  9265. height: math.unit(3.5, "inches")
  9266. },
  9267. {
  9268. name: "Normal",
  9269. height: math.unit(8, "feet"),
  9270. default: true
  9271. },
  9272. {
  9273. name: "Macro",
  9274. height: math.unit(250, "feet")
  9275. },
  9276. {
  9277. name: "Megamacro",
  9278. height: math.unit(1, "AU")
  9279. },
  9280. ]
  9281. ))
  9282. characterMakers.push(() => makeCharacter(
  9283. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9284. {
  9285. front: {
  9286. height: math.unit(5 + 5 / 12, "feet"),
  9287. weight: math.unit(140, "lb"),
  9288. name: "Front",
  9289. image: {
  9290. source: "./media/characters/allatia/front.svg",
  9291. extra: 1227 / 1180,
  9292. bottom: 0.027
  9293. }
  9294. },
  9295. },
  9296. [
  9297. {
  9298. name: "Normal",
  9299. height: math.unit(5 + 5 / 12, "feet")
  9300. },
  9301. {
  9302. name: "Macro",
  9303. height: math.unit(250, "feet"),
  9304. default: true
  9305. },
  9306. {
  9307. name: "Megamacro",
  9308. height: math.unit(8, "miles")
  9309. }
  9310. ]
  9311. ))
  9312. characterMakers.push(() => makeCharacter(
  9313. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9314. {
  9315. front: {
  9316. height: math.unit(6, "feet"),
  9317. weight: math.unit(120, "lb"),
  9318. name: "Front",
  9319. image: {
  9320. source: "./media/characters/tene/front.svg",
  9321. extra: 1728 / 1578,
  9322. bottom: 0.022
  9323. }
  9324. },
  9325. stomping: {
  9326. height: math.unit(2.025, "meters"),
  9327. weight: math.unit(120, "lb"),
  9328. name: "Stomping",
  9329. image: {
  9330. source: "./media/characters/tene/stomping.svg",
  9331. extra: 938 / 873,
  9332. bottom: 0.01
  9333. }
  9334. },
  9335. sitting: {
  9336. height: math.unit(1, "meter"),
  9337. weight: math.unit(120, "lb"),
  9338. name: "Sitting",
  9339. image: {
  9340. source: "./media/characters/tene/sitting.svg",
  9341. extra: 437 / 415,
  9342. bottom: 0.1
  9343. }
  9344. },
  9345. feral: {
  9346. height: math.unit(3.9, "feet"),
  9347. weight: math.unit(250, "lb"),
  9348. name: "Feral",
  9349. image: {
  9350. source: "./media/characters/tene/feral.svg",
  9351. extra: 717 / 458,
  9352. bottom: 0.179
  9353. }
  9354. },
  9355. },
  9356. [
  9357. {
  9358. name: "Normal",
  9359. height: math.unit(6, "feet")
  9360. },
  9361. {
  9362. name: "Macro",
  9363. height: math.unit(300, "feet"),
  9364. default: true
  9365. },
  9366. {
  9367. name: "Megamacro",
  9368. height: math.unit(5, "miles")
  9369. },
  9370. ]
  9371. ))
  9372. characterMakers.push(() => makeCharacter(
  9373. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9374. {
  9375. side: {
  9376. height: math.unit(6, "feet"),
  9377. name: "Side",
  9378. image: {
  9379. source: "./media/characters/evander/side.svg",
  9380. extra: 877 / 477
  9381. }
  9382. },
  9383. },
  9384. [
  9385. {
  9386. name: "Normal",
  9387. height: math.unit(0.83, "meters"),
  9388. default: true
  9389. },
  9390. ]
  9391. ))
  9392. characterMakers.push(() => makeCharacter(
  9393. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9394. {
  9395. front: {
  9396. height: math.unit(12, "feet"),
  9397. weight: math.unit(1000, "lb"),
  9398. name: "Front",
  9399. image: {
  9400. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9401. extra: 1762 / 1611
  9402. }
  9403. },
  9404. back: {
  9405. height: math.unit(12, "feet"),
  9406. weight: math.unit(1000, "lb"),
  9407. name: "Back",
  9408. image: {
  9409. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9410. extra: 1762 / 1611
  9411. }
  9412. },
  9413. },
  9414. [
  9415. {
  9416. name: "Normal",
  9417. height: math.unit(12, "feet"),
  9418. default: true
  9419. },
  9420. {
  9421. name: "Kaiju",
  9422. height: math.unit(150, "feet")
  9423. },
  9424. ]
  9425. ))
  9426. characterMakers.push(() => makeCharacter(
  9427. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9428. {
  9429. front: {
  9430. height: math.unit(6, "feet"),
  9431. weight: math.unit(150, "lb"),
  9432. name: "Front",
  9433. image: {
  9434. source: "./media/characters/zero-alurus/front.svg"
  9435. }
  9436. },
  9437. back: {
  9438. height: math.unit(6, "feet"),
  9439. weight: math.unit(150, "lb"),
  9440. name: "Back",
  9441. image: {
  9442. source: "./media/characters/zero-alurus/back.svg"
  9443. }
  9444. },
  9445. },
  9446. [
  9447. {
  9448. name: "Normal",
  9449. height: math.unit(5 + 10 / 12, "feet")
  9450. },
  9451. {
  9452. name: "Macro",
  9453. height: math.unit(60, "feet"),
  9454. default: true
  9455. },
  9456. {
  9457. name: "Macro+",
  9458. height: math.unit(450, "feet")
  9459. },
  9460. ]
  9461. ))
  9462. characterMakers.push(() => makeCharacter(
  9463. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9464. {
  9465. front: {
  9466. height: math.unit(6, "feet"),
  9467. weight: math.unit(200, "lb"),
  9468. name: "Front",
  9469. image: {
  9470. source: "./media/characters/mega-shi/front.svg",
  9471. extra: 1279 / 1250,
  9472. bottom: 0.02
  9473. }
  9474. },
  9475. back: {
  9476. height: math.unit(6, "feet"),
  9477. weight: math.unit(200, "lb"),
  9478. name: "Back",
  9479. image: {
  9480. source: "./media/characters/mega-shi/back.svg",
  9481. extra: 1279 / 1250,
  9482. bottom: 0.02
  9483. }
  9484. },
  9485. },
  9486. [
  9487. {
  9488. name: "Micro",
  9489. height: math.unit(16 + 6 / 12, "feet")
  9490. },
  9491. {
  9492. name: "Third Dimension",
  9493. height: math.unit(40, "meters")
  9494. },
  9495. {
  9496. name: "Normal",
  9497. height: math.unit(660, "feet"),
  9498. default: true
  9499. },
  9500. {
  9501. name: "Megamacro",
  9502. height: math.unit(10, "miles")
  9503. },
  9504. {
  9505. name: "Planetary Launch",
  9506. height: math.unit(500, "miles")
  9507. },
  9508. {
  9509. name: "Interstellar",
  9510. height: math.unit(1e9, "miles")
  9511. },
  9512. {
  9513. name: "Leaving the Universe",
  9514. height: math.unit(1, "gigaparsec")
  9515. },
  9516. {
  9517. name: "Travelling Universes",
  9518. height: math.unit(30e15, "parsecs")
  9519. },
  9520. ]
  9521. ))
  9522. characterMakers.push(() => makeCharacter(
  9523. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9524. {
  9525. front: {
  9526. height: math.unit(6, "feet"),
  9527. weight: math.unit(150, "lb"),
  9528. name: "Front",
  9529. image: {
  9530. source: "./media/characters/odyssey/front.svg",
  9531. extra: 1782 / 1582,
  9532. bottom: 0.01
  9533. }
  9534. },
  9535. side: {
  9536. height: math.unit(5.7, "feet"),
  9537. weight: math.unit(140, "lb"),
  9538. name: "Side",
  9539. image: {
  9540. source: "./media/characters/odyssey/side.svg",
  9541. extra: 6462 / 5700
  9542. }
  9543. },
  9544. },
  9545. [
  9546. {
  9547. name: "Normal",
  9548. height: math.unit(5 + 4 / 12, "feet")
  9549. },
  9550. {
  9551. name: "Macro",
  9552. height: math.unit(1, "km")
  9553. },
  9554. {
  9555. name: "Megamacro",
  9556. height: math.unit(3000, "km")
  9557. },
  9558. {
  9559. name: "Gigamacro",
  9560. height: math.unit(1, "AU"),
  9561. default: true
  9562. },
  9563. {
  9564. name: "Omniversal",
  9565. height: math.unit(100e14, "lightyears")
  9566. },
  9567. ]
  9568. ))
  9569. characterMakers.push(() => makeCharacter(
  9570. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9571. {
  9572. front: {
  9573. height: math.unit(6, "feet"),
  9574. weight: math.unit(300, "lb"),
  9575. name: "Front",
  9576. image: {
  9577. source: "./media/characters/mekuto/front.svg",
  9578. extra: 921 / 832,
  9579. bottom: 0.03
  9580. }
  9581. },
  9582. hand: {
  9583. height: math.unit(6 / 10.24, "feet"),
  9584. name: "Hand",
  9585. image: {
  9586. source: "./media/characters/mekuto/hand.svg"
  9587. }
  9588. },
  9589. foot: {
  9590. height: math.unit(6 / 5.05, "feet"),
  9591. name: "Foot",
  9592. image: {
  9593. source: "./media/characters/mekuto/foot.svg"
  9594. }
  9595. },
  9596. },
  9597. [
  9598. {
  9599. name: "Minimicro",
  9600. height: math.unit(0.2, "inches")
  9601. },
  9602. {
  9603. name: "Micro",
  9604. height: math.unit(1.5, "inches")
  9605. },
  9606. {
  9607. name: "Normal",
  9608. height: math.unit(5 + 11 / 12, "feet"),
  9609. default: true
  9610. },
  9611. {
  9612. name: "Minimacro",
  9613. height: math.unit(17 + 9 / 12, "feet")
  9614. },
  9615. {
  9616. name: "Macro",
  9617. height: math.unit(177.5, "feet")
  9618. },
  9619. {
  9620. name: "Megamacro",
  9621. height: math.unit(152, "miles")
  9622. },
  9623. ]
  9624. ))
  9625. characterMakers.push(() => makeCharacter(
  9626. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9627. {
  9628. front: {
  9629. height: math.unit(6.5, "inches"),
  9630. weight: math.unit(13, "oz"),
  9631. name: "Front",
  9632. image: {
  9633. source: "./media/characters/dafydd-tomos/front.svg",
  9634. extra: 2990 / 2603,
  9635. bottom: 0.03
  9636. }
  9637. },
  9638. },
  9639. [
  9640. {
  9641. name: "Micro",
  9642. height: math.unit(6.5, "inches"),
  9643. default: true
  9644. },
  9645. ]
  9646. ))
  9647. characterMakers.push(() => makeCharacter(
  9648. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9649. {
  9650. front: {
  9651. height: math.unit(6, "feet"),
  9652. weight: math.unit(150, "lb"),
  9653. name: "Front",
  9654. image: {
  9655. source: "./media/characters/splinter/front.svg",
  9656. extra: 2990 / 2882,
  9657. bottom: 0.04
  9658. }
  9659. },
  9660. back: {
  9661. height: math.unit(6, "feet"),
  9662. weight: math.unit(150, "lb"),
  9663. name: "Back",
  9664. image: {
  9665. source: "./media/characters/splinter/back.svg",
  9666. extra: 2990 / 2882,
  9667. bottom: 0.04
  9668. }
  9669. },
  9670. },
  9671. [
  9672. {
  9673. name: "Normal",
  9674. height: math.unit(6, "feet")
  9675. },
  9676. {
  9677. name: "Macro",
  9678. height: math.unit(230, "meters"),
  9679. default: true
  9680. },
  9681. ]
  9682. ))
  9683. characterMakers.push(() => makeCharacter(
  9684. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9685. {
  9686. front: {
  9687. height: math.unit(4 + 10 / 12, "feet"),
  9688. weight: math.unit(480, "lb"),
  9689. name: "Front",
  9690. image: {
  9691. source: "./media/characters/snow-gabumon/front.svg",
  9692. extra: 1140 / 963,
  9693. bottom: 0.058
  9694. }
  9695. },
  9696. back: {
  9697. height: math.unit(4 + 10 / 12, "feet"),
  9698. weight: math.unit(480, "lb"),
  9699. name: "Back",
  9700. image: {
  9701. source: "./media/characters/snow-gabumon/back.svg",
  9702. extra: 1115 / 962,
  9703. bottom: 0.041
  9704. }
  9705. },
  9706. frontUndresed: {
  9707. height: math.unit(4 + 10 / 12, "feet"),
  9708. weight: math.unit(480, "lb"),
  9709. name: "Front (Undressed)",
  9710. image: {
  9711. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9712. extra: 1061 / 960,
  9713. bottom: 0.045
  9714. }
  9715. },
  9716. },
  9717. [
  9718. {
  9719. name: "Micro",
  9720. height: math.unit(1, "inch")
  9721. },
  9722. {
  9723. name: "Normal",
  9724. height: math.unit(4 + 10 / 12, "feet"),
  9725. default: true
  9726. },
  9727. {
  9728. name: "Macro",
  9729. height: math.unit(200, "feet")
  9730. },
  9731. {
  9732. name: "Megamacro",
  9733. height: math.unit(120, "miles")
  9734. },
  9735. {
  9736. name: "Gigamacro",
  9737. height: math.unit(9800, "miles")
  9738. },
  9739. ]
  9740. ))
  9741. characterMakers.push(() => makeCharacter(
  9742. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9743. {
  9744. front: {
  9745. height: math.unit(1.7, "meters"),
  9746. weight: math.unit(140, "lb"),
  9747. name: "Front",
  9748. image: {
  9749. source: "./media/characters/moody/front.svg",
  9750. extra: 3226 / 3007,
  9751. bottom: 0.087
  9752. }
  9753. },
  9754. },
  9755. [
  9756. {
  9757. name: "Micro",
  9758. height: math.unit(1, "mm")
  9759. },
  9760. {
  9761. name: "Normal",
  9762. height: math.unit(1.7, "meters"),
  9763. default: true
  9764. },
  9765. {
  9766. name: "Macro",
  9767. height: math.unit(80, "meters")
  9768. },
  9769. {
  9770. name: "Macro+",
  9771. height: math.unit(500, "meters")
  9772. },
  9773. ]
  9774. ))
  9775. characterMakers.push(() => makeCharacter(
  9776. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9777. {
  9778. front: {
  9779. height: math.unit(6, "feet"),
  9780. weight: math.unit(150, "lb"),
  9781. name: "Front",
  9782. image: {
  9783. source: "./media/characters/zyas/front.svg",
  9784. extra: 1180 / 1120,
  9785. bottom: 0.045
  9786. }
  9787. },
  9788. },
  9789. [
  9790. {
  9791. name: "Normal",
  9792. height: math.unit(10, "feet"),
  9793. default: true
  9794. },
  9795. {
  9796. name: "Macro",
  9797. height: math.unit(500, "feet")
  9798. },
  9799. {
  9800. name: "Megamacro",
  9801. height: math.unit(5, "miles")
  9802. },
  9803. {
  9804. name: "Teramacro",
  9805. height: math.unit(150000, "miles")
  9806. },
  9807. ]
  9808. ))
  9809. characterMakers.push(() => makeCharacter(
  9810. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9811. {
  9812. front: {
  9813. height: math.unit(6, "feet"),
  9814. weight: math.unit(150, "lb"),
  9815. name: "Front",
  9816. image: {
  9817. source: "./media/characters/cuon/front.svg",
  9818. extra: 1390 / 1320,
  9819. bottom: 0.008
  9820. }
  9821. },
  9822. },
  9823. [
  9824. {
  9825. name: "Micro",
  9826. height: math.unit(3, "inches")
  9827. },
  9828. {
  9829. name: "Normal",
  9830. height: math.unit(18 + 9 / 12, "feet"),
  9831. default: true
  9832. },
  9833. {
  9834. name: "Macro",
  9835. height: math.unit(360, "feet")
  9836. },
  9837. {
  9838. name: "Megamacro",
  9839. height: math.unit(360, "miles")
  9840. },
  9841. ]
  9842. ))
  9843. characterMakers.push(() => makeCharacter(
  9844. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9845. {
  9846. front: {
  9847. height: math.unit(2.4, "meters"),
  9848. weight: math.unit(70, "kg"),
  9849. name: "Front",
  9850. image: {
  9851. source: "./media/characters/nyanuxk/front.svg",
  9852. extra: 1172 / 1084,
  9853. bottom: 0.065
  9854. }
  9855. },
  9856. side: {
  9857. height: math.unit(2.4, "meters"),
  9858. weight: math.unit(70, "kg"),
  9859. name: "Side",
  9860. image: {
  9861. source: "./media/characters/nyanuxk/side.svg",
  9862. extra: 1190 / 1132,
  9863. bottom: 0.007
  9864. }
  9865. },
  9866. back: {
  9867. height: math.unit(2.4, "meters"),
  9868. weight: math.unit(70, "kg"),
  9869. name: "Back",
  9870. image: {
  9871. source: "./media/characters/nyanuxk/back.svg",
  9872. extra: 1200 / 1141,
  9873. bottom: 0.015
  9874. }
  9875. },
  9876. foot: {
  9877. height: math.unit(0.52, "meters"),
  9878. name: "Foot",
  9879. image: {
  9880. source: "./media/characters/nyanuxk/foot.svg"
  9881. }
  9882. },
  9883. },
  9884. [
  9885. {
  9886. name: "Micro",
  9887. height: math.unit(2, "cm")
  9888. },
  9889. {
  9890. name: "Normal",
  9891. height: math.unit(2.4, "meters"),
  9892. default: true
  9893. },
  9894. {
  9895. name: "Smaller Macro",
  9896. height: math.unit(120, "meters")
  9897. },
  9898. {
  9899. name: "Bigger Macro",
  9900. height: math.unit(1.2, "km")
  9901. },
  9902. {
  9903. name: "Megamacro",
  9904. height: math.unit(15, "kilometers")
  9905. },
  9906. {
  9907. name: "Gigamacro",
  9908. height: math.unit(2000, "km")
  9909. },
  9910. {
  9911. name: "Teramacro",
  9912. height: math.unit(500000, "km")
  9913. },
  9914. ]
  9915. ))
  9916. characterMakers.push(() => makeCharacter(
  9917. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9918. {
  9919. side: {
  9920. height: math.unit(6, "feet"),
  9921. name: "Side",
  9922. image: {
  9923. source: "./media/characters/ailbhe/side.svg",
  9924. extra: 757 / 464,
  9925. bottom: 0.041
  9926. }
  9927. },
  9928. },
  9929. [
  9930. {
  9931. name: "Normal",
  9932. height: math.unit(1.07, "meters"),
  9933. default: true
  9934. },
  9935. ]
  9936. ))
  9937. characterMakers.push(() => makeCharacter(
  9938. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9939. {
  9940. front: {
  9941. height: math.unit(6, "feet"),
  9942. weight: math.unit(120, "kg"),
  9943. name: "Front",
  9944. image: {
  9945. source: "./media/characters/zevulfius/front.svg",
  9946. extra: 965 / 903
  9947. }
  9948. },
  9949. side: {
  9950. height: math.unit(6, "feet"),
  9951. weight: math.unit(120, "kg"),
  9952. name: "Side",
  9953. image: {
  9954. source: "./media/characters/zevulfius/side.svg",
  9955. extra: 939 / 900
  9956. }
  9957. },
  9958. back: {
  9959. height: math.unit(6, "feet"),
  9960. weight: math.unit(120, "kg"),
  9961. name: "Back",
  9962. image: {
  9963. source: "./media/characters/zevulfius/back.svg",
  9964. extra: 918 / 854,
  9965. bottom: 0.005
  9966. }
  9967. },
  9968. foot: {
  9969. height: math.unit(6 / 3.72, "feet"),
  9970. name: "Foot",
  9971. image: {
  9972. source: "./media/characters/zevulfius/foot.svg"
  9973. }
  9974. },
  9975. },
  9976. [
  9977. {
  9978. name: "Macro",
  9979. height: math.unit(750, "meters")
  9980. },
  9981. {
  9982. name: "Megamacro",
  9983. height: math.unit(20, "km"),
  9984. default: true
  9985. },
  9986. {
  9987. name: "Gigamacro",
  9988. height: math.unit(2000, "km")
  9989. },
  9990. {
  9991. name: "Teramacro",
  9992. height: math.unit(250000, "km")
  9993. },
  9994. ]
  9995. ))
  9996. characterMakers.push(() => makeCharacter(
  9997. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9998. {
  9999. front: {
  10000. height: math.unit(100, "feet"),
  10001. weight: math.unit(350, "kg"),
  10002. name: "Front",
  10003. image: {
  10004. source: "./media/characters/rikes/front.svg",
  10005. extra: 1565 / 1483,
  10006. bottom: 0.017
  10007. }
  10008. },
  10009. },
  10010. [
  10011. {
  10012. name: "Macro",
  10013. height: math.unit(100, "feet"),
  10014. default: true
  10015. },
  10016. ]
  10017. ))
  10018. characterMakers.push(() => makeCharacter(
  10019. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10020. {
  10021. anthro: {
  10022. height: math.unit(8, "feet"),
  10023. weight: math.unit(120, "kg"),
  10024. name: "Anthro",
  10025. image: {
  10026. source: "./media/characters/adam-silver-mane/anthro.svg",
  10027. extra: 5743 / 5339,
  10028. bottom: 0.07
  10029. }
  10030. },
  10031. taur: {
  10032. height: math.unit(16, "feet"),
  10033. weight: math.unit(1500, "kg"),
  10034. name: "Taur",
  10035. image: {
  10036. source: "./media/characters/adam-silver-mane/taur.svg",
  10037. extra: 1713 / 1571,
  10038. bottom: 0.01
  10039. }
  10040. },
  10041. },
  10042. [
  10043. {
  10044. name: "Normal",
  10045. height: math.unit(8, "feet")
  10046. },
  10047. {
  10048. name: "Minimacro",
  10049. height: math.unit(80, "feet")
  10050. },
  10051. {
  10052. name: "Macro",
  10053. height: math.unit(800, "feet"),
  10054. default: true
  10055. },
  10056. {
  10057. name: "Megamacro",
  10058. height: math.unit(8000, "feet")
  10059. },
  10060. {
  10061. name: "Gigamacro",
  10062. height: math.unit(800, "miles")
  10063. },
  10064. {
  10065. name: "Teramacro",
  10066. height: math.unit(80000, "miles")
  10067. },
  10068. {
  10069. name: "Celestial",
  10070. height: math.unit(8e6, "miles")
  10071. },
  10072. {
  10073. name: "Star Dragon",
  10074. height: math.unit(800000, "parsecs")
  10075. },
  10076. {
  10077. name: "Godly",
  10078. height: math.unit(800, "teraparsecs")
  10079. },
  10080. ]
  10081. ))
  10082. characterMakers.push(() => makeCharacter(
  10083. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10084. {
  10085. front: {
  10086. height: math.unit(6, "feet"),
  10087. weight: math.unit(150, "lb"),
  10088. name: "Front",
  10089. image: {
  10090. source: "./media/characters/ky'owin/front.svg",
  10091. extra: 3888 / 3068,
  10092. bottom: 0.015
  10093. }
  10094. },
  10095. },
  10096. [
  10097. {
  10098. name: "Normal",
  10099. height: math.unit(6 + 8 / 12, "feet")
  10100. },
  10101. {
  10102. name: "Large",
  10103. height: math.unit(68, "feet")
  10104. },
  10105. {
  10106. name: "Macro",
  10107. height: math.unit(132, "feet")
  10108. },
  10109. {
  10110. name: "Macro+",
  10111. height: math.unit(340, "feet")
  10112. },
  10113. {
  10114. name: "Macro++",
  10115. height: math.unit(680, "feet"),
  10116. default: true
  10117. },
  10118. {
  10119. name: "Megamacro",
  10120. height: math.unit(1, "mile")
  10121. },
  10122. {
  10123. name: "Megamacro+",
  10124. height: math.unit(10, "miles")
  10125. },
  10126. ]
  10127. ))
  10128. characterMakers.push(() => makeCharacter(
  10129. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10130. {
  10131. front: {
  10132. height: math.unit(4, "feet"),
  10133. weight: math.unit(50, "lb"),
  10134. name: "Front",
  10135. image: {
  10136. source: "./media/characters/mal/front.svg",
  10137. extra: 785 / 724,
  10138. bottom: 0.07
  10139. }
  10140. },
  10141. },
  10142. [
  10143. {
  10144. name: "Micro",
  10145. height: math.unit(4, "inches")
  10146. },
  10147. {
  10148. name: "Normal",
  10149. height: math.unit(4, "feet"),
  10150. default: true
  10151. },
  10152. {
  10153. name: "Macro",
  10154. height: math.unit(200, "feet")
  10155. },
  10156. ]
  10157. ))
  10158. characterMakers.push(() => makeCharacter(
  10159. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10160. {
  10161. front: {
  10162. height: math.unit(6, "feet"),
  10163. weight: math.unit(150, "lb"),
  10164. name: "Front",
  10165. image: {
  10166. source: "./media/characters/jordan-deware/front.svg",
  10167. extra: 1191 / 1012
  10168. }
  10169. },
  10170. },
  10171. [
  10172. {
  10173. name: "Nano",
  10174. height: math.unit(0.01, "mm")
  10175. },
  10176. {
  10177. name: "Minimicro",
  10178. height: math.unit(1, "mm")
  10179. },
  10180. {
  10181. name: "Micro",
  10182. height: math.unit(0.5, "inches")
  10183. },
  10184. {
  10185. name: "Normal",
  10186. height: math.unit(4, "feet"),
  10187. default: true
  10188. },
  10189. {
  10190. name: "Minimacro",
  10191. height: math.unit(40, "meters")
  10192. },
  10193. {
  10194. name: "Small Macro",
  10195. height: math.unit(400, "meters")
  10196. },
  10197. {
  10198. name: "Macro",
  10199. height: math.unit(4, "miles")
  10200. },
  10201. {
  10202. name: "Megamacro",
  10203. height: math.unit(40, "miles")
  10204. },
  10205. {
  10206. name: "Megamacro+",
  10207. height: math.unit(400, "miles")
  10208. },
  10209. {
  10210. name: "Gigamacro",
  10211. height: math.unit(400000, "miles")
  10212. },
  10213. ]
  10214. ))
  10215. characterMakers.push(() => makeCharacter(
  10216. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10217. {
  10218. side: {
  10219. height: math.unit(6, "feet"),
  10220. weight: math.unit(150, "lb"),
  10221. name: "Side",
  10222. image: {
  10223. source: "./media/characters/kimiko/side.svg",
  10224. extra: 600 / 358
  10225. }
  10226. },
  10227. },
  10228. [
  10229. {
  10230. name: "Normal",
  10231. height: math.unit(15, "feet"),
  10232. default: true
  10233. },
  10234. {
  10235. name: "Macro",
  10236. height: math.unit(220, "feet")
  10237. },
  10238. {
  10239. name: "Macro+",
  10240. height: math.unit(1450, "feet")
  10241. },
  10242. {
  10243. name: "Megamacro",
  10244. height: math.unit(11500, "feet")
  10245. },
  10246. {
  10247. name: "Gigamacro",
  10248. height: math.unit(9500, "miles")
  10249. },
  10250. {
  10251. name: "Teramacro",
  10252. height: math.unit(2208005005, "miles")
  10253. },
  10254. {
  10255. name: "Examacro",
  10256. height: math.unit(2750, "parsecs")
  10257. },
  10258. {
  10259. name: "Zettamacro",
  10260. height: math.unit(101500, "parsecs")
  10261. },
  10262. ]
  10263. ))
  10264. characterMakers.push(() => makeCharacter(
  10265. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10266. {
  10267. front: {
  10268. height: math.unit(6, "feet"),
  10269. weight: math.unit(70, "kg"),
  10270. name: "Front",
  10271. image: {
  10272. source: "./media/characters/andrew-sleepy/front.svg"
  10273. }
  10274. },
  10275. side: {
  10276. height: math.unit(6, "feet"),
  10277. weight: math.unit(70, "kg"),
  10278. name: "Side",
  10279. image: {
  10280. source: "./media/characters/andrew-sleepy/side.svg"
  10281. }
  10282. },
  10283. },
  10284. [
  10285. {
  10286. name: "Micro",
  10287. height: math.unit(1, "mm"),
  10288. default: true
  10289. },
  10290. ]
  10291. ))
  10292. characterMakers.push(() => makeCharacter(
  10293. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10294. {
  10295. front: {
  10296. height: math.unit(6, "feet"),
  10297. weight: math.unit(150, "lb"),
  10298. name: "Front",
  10299. image: {
  10300. source: "./media/characters/judio/front.svg",
  10301. extra: 1258 / 1110
  10302. }
  10303. },
  10304. },
  10305. [
  10306. {
  10307. name: "Normal",
  10308. height: math.unit(5 + 6 / 12, "feet")
  10309. },
  10310. {
  10311. name: "Macro",
  10312. height: math.unit(1000, "feet"),
  10313. default: true
  10314. },
  10315. {
  10316. name: "Megamacro",
  10317. height: math.unit(10, "miles")
  10318. },
  10319. ]
  10320. ))
  10321. characterMakers.push(() => makeCharacter(
  10322. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10323. {
  10324. front: {
  10325. height: math.unit(6, "feet"),
  10326. weight: math.unit(68, "kg"),
  10327. name: "Front",
  10328. image: {
  10329. source: "./media/characters/nomaxice/front.svg",
  10330. extra: 1498 / 1073,
  10331. bottom: 0.075
  10332. }
  10333. },
  10334. foot: {
  10335. height: math.unit(1.1, "feet"),
  10336. name: "Foot",
  10337. image: {
  10338. source: "./media/characters/nomaxice/foot.svg"
  10339. }
  10340. },
  10341. },
  10342. [
  10343. {
  10344. name: "Micro",
  10345. height: math.unit(8, "cm")
  10346. },
  10347. {
  10348. name: "Norm",
  10349. height: math.unit(1.82, "m")
  10350. },
  10351. {
  10352. name: "Norm+",
  10353. height: math.unit(8.8, "feet")
  10354. },
  10355. {
  10356. name: "Big",
  10357. height: math.unit(8, "meters"),
  10358. default: true
  10359. },
  10360. {
  10361. name: "Macro",
  10362. height: math.unit(18, "meters")
  10363. },
  10364. {
  10365. name: "Macro+",
  10366. height: math.unit(88, "meters")
  10367. },
  10368. ]
  10369. ))
  10370. characterMakers.push(() => makeCharacter(
  10371. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10372. {
  10373. front: {
  10374. height: math.unit(12, "feet"),
  10375. weight: math.unit(1.5, "tons"),
  10376. name: "Front",
  10377. image: {
  10378. source: "./media/characters/dydros/front.svg",
  10379. extra: 863 / 800,
  10380. bottom: 0.015
  10381. }
  10382. },
  10383. back: {
  10384. height: math.unit(12, "feet"),
  10385. weight: math.unit(1.5, "tons"),
  10386. name: "Back",
  10387. image: {
  10388. source: "./media/characters/dydros/back.svg",
  10389. extra: 900 / 843,
  10390. bottom: 0.005
  10391. }
  10392. },
  10393. },
  10394. [
  10395. {
  10396. name: "Normal",
  10397. height: math.unit(12, "feet"),
  10398. default: true
  10399. },
  10400. ]
  10401. ))
  10402. characterMakers.push(() => makeCharacter(
  10403. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10404. {
  10405. front: {
  10406. height: math.unit(6, "feet"),
  10407. weight: math.unit(100, "kg"),
  10408. name: "Front",
  10409. image: {
  10410. source: "./media/characters/riggi/front.svg",
  10411. extra: 5787 / 5303
  10412. }
  10413. },
  10414. hyper: {
  10415. height: math.unit(6 * 5 / 3, "feet"),
  10416. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10417. name: "Hyper",
  10418. image: {
  10419. source: "./media/characters/riggi/hyper.svg",
  10420. extra: 3595 / 3485
  10421. }
  10422. },
  10423. },
  10424. [
  10425. {
  10426. name: "Small Macro",
  10427. height: math.unit(50, "feet")
  10428. },
  10429. {
  10430. name: "Default",
  10431. height: math.unit(200, "feet"),
  10432. default: true
  10433. },
  10434. {
  10435. name: "Loom",
  10436. height: math.unit(10000, "feet")
  10437. },
  10438. {
  10439. name: "Cruising Altitude",
  10440. height: math.unit(30000, "feet")
  10441. },
  10442. {
  10443. name: "Megamacro",
  10444. height: math.unit(100, "miles")
  10445. },
  10446. {
  10447. name: "Continent Sized",
  10448. height: math.unit(2800, "miles")
  10449. },
  10450. {
  10451. name: "Earth Sized",
  10452. height: math.unit(8000, "miles")
  10453. },
  10454. ]
  10455. ))
  10456. characterMakers.push(() => makeCharacter(
  10457. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10458. {
  10459. front: {
  10460. height: math.unit(6, "feet"),
  10461. weight: math.unit(250, "lb"),
  10462. name: "Front",
  10463. image: {
  10464. source: "./media/characters/alexi/front.svg",
  10465. extra: 3483 / 3291,
  10466. bottom: 0.04
  10467. }
  10468. },
  10469. back: {
  10470. height: math.unit(6, "feet"),
  10471. weight: math.unit(250, "lb"),
  10472. name: "Back",
  10473. image: {
  10474. source: "./media/characters/alexi/back.svg",
  10475. extra: 3533 / 3356,
  10476. bottom: 0.021
  10477. }
  10478. },
  10479. frontTransforming: {
  10480. height: math.unit(8.58, "feet"),
  10481. weight: math.unit(1300, "lb"),
  10482. name: "Transforming",
  10483. image: {
  10484. source: "./media/characters/alexi/front-transforming.svg",
  10485. extra: 437 / 409,
  10486. bottom: 19 / 458.66
  10487. }
  10488. },
  10489. frontTransformed: {
  10490. height: math.unit(12.5, "feet"),
  10491. weight: math.unit(4000, "lb"),
  10492. name: "Transformed",
  10493. image: {
  10494. source: "./media/characters/alexi/front-transformed.svg",
  10495. extra: 639 / 614,
  10496. bottom: 30.55 / 671
  10497. }
  10498. },
  10499. },
  10500. [
  10501. {
  10502. name: "Normal",
  10503. height: math.unit(14, "feet"),
  10504. default: true
  10505. },
  10506. {
  10507. name: "Minimacro",
  10508. height: math.unit(30, "meters")
  10509. },
  10510. {
  10511. name: "Macro",
  10512. height: math.unit(500, "meters")
  10513. },
  10514. {
  10515. name: "Megamacro",
  10516. height: math.unit(9000, "km")
  10517. },
  10518. {
  10519. name: "Teramacro",
  10520. height: math.unit(384000, "km")
  10521. },
  10522. ]
  10523. ))
  10524. characterMakers.push(() => makeCharacter(
  10525. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10526. {
  10527. front: {
  10528. height: math.unit(6, "feet"),
  10529. weight: math.unit(150, "lb"),
  10530. name: "Front",
  10531. image: {
  10532. source: "./media/characters/kayroo/front.svg",
  10533. extra: 1153 / 1038,
  10534. bottom: 0.06
  10535. }
  10536. },
  10537. foot: {
  10538. height: math.unit(6, "feet"),
  10539. weight: math.unit(150, "lb"),
  10540. name: "Foot",
  10541. image: {
  10542. source: "./media/characters/kayroo/foot.svg"
  10543. }
  10544. },
  10545. },
  10546. [
  10547. {
  10548. name: "Normal",
  10549. height: math.unit(8, "feet"),
  10550. default: true
  10551. },
  10552. {
  10553. name: "Minimacro",
  10554. height: math.unit(250, "feet")
  10555. },
  10556. {
  10557. name: "Macro",
  10558. height: math.unit(2800, "feet")
  10559. },
  10560. {
  10561. name: "Megamacro",
  10562. height: math.unit(5200, "feet")
  10563. },
  10564. {
  10565. name: "Gigamacro",
  10566. height: math.unit(27000, "feet")
  10567. },
  10568. {
  10569. name: "Omega",
  10570. height: math.unit(45000, "feet")
  10571. },
  10572. ]
  10573. ))
  10574. characterMakers.push(() => makeCharacter(
  10575. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10576. {
  10577. front: {
  10578. height: math.unit(18, "feet"),
  10579. weight: math.unit(5800, "lb"),
  10580. name: "Front",
  10581. image: {
  10582. source: "./media/characters/rhys/front.svg",
  10583. extra: 3386 / 3090,
  10584. bottom: 0.07
  10585. }
  10586. },
  10587. },
  10588. [
  10589. {
  10590. name: "Normal",
  10591. height: math.unit(18, "feet"),
  10592. default: true
  10593. },
  10594. {
  10595. name: "Working Size",
  10596. height: math.unit(200, "feet")
  10597. },
  10598. {
  10599. name: "Demolition Size",
  10600. height: math.unit(2000, "feet")
  10601. },
  10602. {
  10603. name: "Maximum Licensed Size",
  10604. height: math.unit(5, "miles")
  10605. },
  10606. {
  10607. name: "Maximum Observed Size",
  10608. height: math.unit(10, "yottameters")
  10609. },
  10610. ]
  10611. ))
  10612. characterMakers.push(() => makeCharacter(
  10613. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10614. {
  10615. front: {
  10616. height: math.unit(6, "feet"),
  10617. weight: math.unit(250, "lb"),
  10618. name: "Front",
  10619. image: {
  10620. source: "./media/characters/toto/front.svg",
  10621. extra: 527 / 479,
  10622. bottom: 0.05
  10623. }
  10624. },
  10625. },
  10626. [
  10627. {
  10628. name: "Micro",
  10629. height: math.unit(3, "feet")
  10630. },
  10631. {
  10632. name: "Normal",
  10633. height: math.unit(10, "feet")
  10634. },
  10635. {
  10636. name: "Macro",
  10637. height: math.unit(150, "feet"),
  10638. default: true
  10639. },
  10640. {
  10641. name: "Megamacro",
  10642. height: math.unit(1200, "feet")
  10643. },
  10644. ]
  10645. ))
  10646. characterMakers.push(() => makeCharacter(
  10647. { name: "King", species: ["lion"], tags: ["anthro"] },
  10648. {
  10649. back: {
  10650. height: math.unit(6, "feet"),
  10651. weight: math.unit(150, "lb"),
  10652. name: "Back",
  10653. image: {
  10654. source: "./media/characters/king/back.svg"
  10655. }
  10656. },
  10657. },
  10658. [
  10659. {
  10660. name: "Micro",
  10661. height: math.unit(2, "inches")
  10662. },
  10663. {
  10664. name: "Normal",
  10665. height: math.unit(8, "feet")
  10666. },
  10667. {
  10668. name: "Macro",
  10669. height: math.unit(200, "feet"),
  10670. default: true
  10671. },
  10672. {
  10673. name: "Megamacro",
  10674. height: math.unit(50, "miles")
  10675. },
  10676. ]
  10677. ))
  10678. characterMakers.push(() => makeCharacter(
  10679. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10680. {
  10681. anthro: {
  10682. height: math.unit(6 + 5 / 12, "feet"),
  10683. weight: math.unit(280, "lb"),
  10684. name: "Anthro",
  10685. image: {
  10686. source: "./media/characters/cordite/anthro.svg",
  10687. extra: 1986 / 1905,
  10688. bottom: 0.025
  10689. }
  10690. },
  10691. feral: {
  10692. height: math.unit(2, "feet"),
  10693. weight: math.unit(90, "lb"),
  10694. name: "Feral",
  10695. image: {
  10696. source: "./media/characters/cordite/feral.svg",
  10697. extra: 1260 / 755,
  10698. bottom: 0.05
  10699. }
  10700. },
  10701. },
  10702. [
  10703. {
  10704. name: "Normal",
  10705. height: math.unit(6 + 5 / 12, "feet"),
  10706. default: true
  10707. },
  10708. ]
  10709. ))
  10710. characterMakers.push(() => makeCharacter(
  10711. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10712. {
  10713. front: {
  10714. height: math.unit(6, "feet"),
  10715. weight: math.unit(150, "lb"),
  10716. name: "Front",
  10717. image: {
  10718. source: "./media/characters/pianostrong/front.svg",
  10719. extra: 6577 / 6254,
  10720. bottom: 0.02
  10721. }
  10722. },
  10723. side: {
  10724. height: math.unit(6, "feet"),
  10725. weight: math.unit(150, "lb"),
  10726. name: "Side",
  10727. image: {
  10728. source: "./media/characters/pianostrong/side.svg",
  10729. extra: 6106 / 5730
  10730. }
  10731. },
  10732. back: {
  10733. height: math.unit(6, "feet"),
  10734. weight: math.unit(150, "lb"),
  10735. name: "Back",
  10736. image: {
  10737. source: "./media/characters/pianostrong/back.svg",
  10738. extra: 6085 / 5733,
  10739. bottom: 0.01
  10740. }
  10741. },
  10742. },
  10743. [
  10744. {
  10745. name: "Macro",
  10746. height: math.unit(100, "feet")
  10747. },
  10748. {
  10749. name: "Macro+",
  10750. height: math.unit(300, "feet"),
  10751. default: true
  10752. },
  10753. {
  10754. name: "Macro++",
  10755. height: math.unit(1000, "feet")
  10756. },
  10757. ]
  10758. ))
  10759. characterMakers.push(() => makeCharacter(
  10760. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10761. {
  10762. front: {
  10763. height: math.unit(6, "feet"),
  10764. weight: math.unit(150, "lb"),
  10765. name: "Front",
  10766. image: {
  10767. source: "./media/characters/kona/front.svg",
  10768. extra: 2960 / 2629,
  10769. bottom: 0.005
  10770. }
  10771. },
  10772. },
  10773. [
  10774. {
  10775. name: "Normal",
  10776. height: math.unit(11 + 8 / 12, "feet")
  10777. },
  10778. {
  10779. name: "Macro",
  10780. height: math.unit(850, "feet"),
  10781. default: true
  10782. },
  10783. {
  10784. name: "Macro+",
  10785. height: math.unit(1.5, "km"),
  10786. default: true
  10787. },
  10788. {
  10789. name: "Megamacro",
  10790. height: math.unit(80, "miles")
  10791. },
  10792. {
  10793. name: "Gigamacro",
  10794. height: math.unit(3500, "miles")
  10795. },
  10796. ]
  10797. ))
  10798. characterMakers.push(() => makeCharacter(
  10799. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10800. {
  10801. side: {
  10802. height: math.unit(1.9, "meters"),
  10803. weight: math.unit(326, "kg"),
  10804. name: "Side",
  10805. image: {
  10806. source: "./media/characters/levi/side.svg",
  10807. extra: 1704 / 1334,
  10808. bottom: 0.02
  10809. }
  10810. },
  10811. },
  10812. [
  10813. {
  10814. name: "Normal",
  10815. height: math.unit(1.9, "meters"),
  10816. default: true
  10817. },
  10818. {
  10819. name: "Macro",
  10820. height: math.unit(20, "meters")
  10821. },
  10822. {
  10823. name: "Macro+",
  10824. height: math.unit(200, "meters")
  10825. },
  10826. {
  10827. name: "Megamacro",
  10828. height: math.unit(2, "km")
  10829. },
  10830. {
  10831. name: "Megamacro+",
  10832. height: math.unit(20, "km")
  10833. },
  10834. {
  10835. name: "Gigamacro",
  10836. height: math.unit(2500, "km")
  10837. },
  10838. {
  10839. name: "Gigamacro+",
  10840. height: math.unit(120000, "km")
  10841. },
  10842. {
  10843. name: "Teramacro",
  10844. height: math.unit(7.77e6, "km")
  10845. },
  10846. ]
  10847. ))
  10848. characterMakers.push(() => makeCharacter(
  10849. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10850. {
  10851. front: {
  10852. height: math.unit(6 + 4 / 12, "feet"),
  10853. weight: math.unit(188, "lb"),
  10854. name: "Front",
  10855. image: {
  10856. source: "./media/characters/bmc/front.svg",
  10857. extra: 1067 / 1022,
  10858. bottom: 0.047
  10859. }
  10860. },
  10861. },
  10862. [
  10863. {
  10864. name: "Human-sized",
  10865. height: math.unit(6 + 4 / 12, "feet")
  10866. },
  10867. {
  10868. name: "Small",
  10869. height: math.unit(250, "feet")
  10870. },
  10871. {
  10872. name: "Normal",
  10873. height: math.unit(1250, "feet"),
  10874. default: true
  10875. },
  10876. {
  10877. name: "Good Day",
  10878. height: math.unit(88, "miles")
  10879. },
  10880. {
  10881. name: "Largest Measured Size",
  10882. height: math.unit(11.2e6, "lightyears")
  10883. },
  10884. ]
  10885. ))
  10886. characterMakers.push(() => makeCharacter(
  10887. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10888. {
  10889. front: {
  10890. height: math.unit(20, "feet"),
  10891. weight: math.unit(2016, "kg"),
  10892. name: "Front",
  10893. image: {
  10894. source: "./media/characters/sven-the-kaiju/front.svg",
  10895. extra: 1479 / 1449,
  10896. bottom: 0.05
  10897. }
  10898. },
  10899. },
  10900. [
  10901. {
  10902. name: "Fairy",
  10903. height: math.unit(6, "inches")
  10904. },
  10905. {
  10906. name: "Normal",
  10907. height: math.unit(20, "feet"),
  10908. default: true
  10909. },
  10910. {
  10911. name: "Rampage",
  10912. height: math.unit(200, "feet")
  10913. },
  10914. {
  10915. name: "Archfey Forest Guardian",
  10916. height: math.unit(1, "mile")
  10917. },
  10918. ]
  10919. ))
  10920. characterMakers.push(() => makeCharacter(
  10921. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10922. {
  10923. front: {
  10924. height: math.unit(4, "meters"),
  10925. weight: math.unit(2, "tons"),
  10926. name: "Front",
  10927. image: {
  10928. source: "./media/characters/marik/front.svg",
  10929. extra: 1057 / 1003,
  10930. bottom: 0.08
  10931. }
  10932. },
  10933. },
  10934. [
  10935. {
  10936. name: "Normal",
  10937. height: math.unit(4, "meters"),
  10938. default: true
  10939. },
  10940. {
  10941. name: "Macro",
  10942. height: math.unit(20, "meters")
  10943. },
  10944. {
  10945. name: "Megamacro",
  10946. height: math.unit(50, "km")
  10947. },
  10948. {
  10949. name: "Gigamacro",
  10950. height: math.unit(100, "km")
  10951. },
  10952. {
  10953. name: "Alpha Macro",
  10954. height: math.unit(7.88e7, "yottameters")
  10955. },
  10956. ]
  10957. ))
  10958. characterMakers.push(() => makeCharacter(
  10959. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10960. {
  10961. front: {
  10962. height: math.unit(6, "feet"),
  10963. weight: math.unit(110, "lb"),
  10964. name: "Front",
  10965. image: {
  10966. source: "./media/characters/mel/front.svg",
  10967. extra: 736 / 617,
  10968. bottom: 0.017
  10969. }
  10970. },
  10971. },
  10972. [
  10973. {
  10974. name: "Pico",
  10975. height: math.unit(3, "pm")
  10976. },
  10977. {
  10978. name: "Nano",
  10979. height: math.unit(3, "nm")
  10980. },
  10981. {
  10982. name: "Micro",
  10983. height: math.unit(0.3, "mm"),
  10984. default: true
  10985. },
  10986. {
  10987. name: "Micro+",
  10988. height: math.unit(3, "mm")
  10989. },
  10990. {
  10991. name: "Normal",
  10992. height: math.unit(5 + 10.5 / 12, "feet")
  10993. },
  10994. ]
  10995. ))
  10996. characterMakers.push(() => makeCharacter(
  10997. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10998. {
  10999. kaiju: {
  11000. height: math.unit(1.75, "meters"),
  11001. weight: math.unit(55, "kg"),
  11002. name: "Kaiju",
  11003. image: {
  11004. source: "./media/characters/lykonous/kaiju.svg",
  11005. extra: 1055 / 946,
  11006. bottom: 0.135
  11007. }
  11008. },
  11009. },
  11010. [
  11011. {
  11012. name: "Normal",
  11013. height: math.unit(2.5, "meters"),
  11014. default: true
  11015. },
  11016. {
  11017. name: "Kaiju Dragon",
  11018. height: math.unit(60, "meters")
  11019. },
  11020. {
  11021. name: "Mega Kaiju",
  11022. height: math.unit(120, "km")
  11023. },
  11024. {
  11025. name: "Giga Kaiju",
  11026. height: math.unit(200, "megameters")
  11027. },
  11028. {
  11029. name: "Terra Kaiju",
  11030. height: math.unit(400, "gigameters")
  11031. },
  11032. {
  11033. name: "Kaiju Dragon God",
  11034. height: math.unit(13000, "exaparsecs")
  11035. },
  11036. ]
  11037. ))
  11038. characterMakers.push(() => makeCharacter(
  11039. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11040. {
  11041. front: {
  11042. height: math.unit(6, "feet"),
  11043. weight: math.unit(150, "lb"),
  11044. name: "Front",
  11045. image: {
  11046. source: "./media/characters/blü/front.svg",
  11047. extra: 1883 / 1564,
  11048. bottom: 0.031
  11049. }
  11050. },
  11051. },
  11052. [
  11053. {
  11054. name: "Normal",
  11055. height: math.unit(13, "feet"),
  11056. default: true
  11057. },
  11058. {
  11059. name: "Big Boi",
  11060. height: math.unit(150, "meters")
  11061. },
  11062. {
  11063. name: "Mini Stomper",
  11064. height: math.unit(300, "meters")
  11065. },
  11066. {
  11067. name: "Macro",
  11068. height: math.unit(1000, "meters")
  11069. },
  11070. {
  11071. name: "Megamacro",
  11072. height: math.unit(11000, "meters")
  11073. },
  11074. {
  11075. name: "Gigamacro",
  11076. height: math.unit(11000, "km")
  11077. },
  11078. {
  11079. name: "Teramacro",
  11080. height: math.unit(420000, "km")
  11081. },
  11082. {
  11083. name: "Examacro",
  11084. height: math.unit(120, "parsecs")
  11085. },
  11086. {
  11087. name: "God Tho",
  11088. height: math.unit(98000000000, "parsecs")
  11089. },
  11090. ]
  11091. ))
  11092. characterMakers.push(() => makeCharacter(
  11093. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11094. {
  11095. taurFront: {
  11096. height: math.unit(6, "feet"),
  11097. weight: math.unit(200, "lb"),
  11098. name: "Taur (Front)",
  11099. image: {
  11100. source: "./media/characters/scales/taur-front.svg",
  11101. extra: 1,
  11102. bottom: 0.05
  11103. }
  11104. },
  11105. taurBack: {
  11106. height: math.unit(6, "feet"),
  11107. weight: math.unit(200, "lb"),
  11108. name: "Taur (Back)",
  11109. image: {
  11110. source: "./media/characters/scales/taur-back.svg",
  11111. extra: 1,
  11112. bottom: 0.08
  11113. }
  11114. },
  11115. anthro: {
  11116. height: math.unit(6 * 7 / 12, "feet"),
  11117. weight: math.unit(100, "lb"),
  11118. name: "Anthro",
  11119. image: {
  11120. source: "./media/characters/scales/anthro.svg",
  11121. extra: 1,
  11122. bottom: 0.06
  11123. }
  11124. },
  11125. },
  11126. [
  11127. {
  11128. name: "Normal",
  11129. height: math.unit(12, "feet"),
  11130. default: true
  11131. },
  11132. ]
  11133. ))
  11134. characterMakers.push(() => makeCharacter(
  11135. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11136. {
  11137. front: {
  11138. height: math.unit(6, "feet"),
  11139. weight: math.unit(150, "lb"),
  11140. name: "Front",
  11141. image: {
  11142. source: "./media/characters/koragos/front.svg",
  11143. extra: 841 / 794,
  11144. bottom: 0.035
  11145. }
  11146. },
  11147. back: {
  11148. height: math.unit(6, "feet"),
  11149. weight: math.unit(150, "lb"),
  11150. name: "Back",
  11151. image: {
  11152. source: "./media/characters/koragos/back.svg",
  11153. extra: 841 / 810,
  11154. bottom: 0.022
  11155. }
  11156. },
  11157. },
  11158. [
  11159. {
  11160. name: "Normal",
  11161. height: math.unit(6 + 11 / 12, "feet"),
  11162. default: true
  11163. },
  11164. {
  11165. name: "Macro",
  11166. height: math.unit(490, "feet")
  11167. },
  11168. {
  11169. name: "Megamacro",
  11170. height: math.unit(10, "miles")
  11171. },
  11172. {
  11173. name: "Gigamacro",
  11174. height: math.unit(50, "miles")
  11175. },
  11176. ]
  11177. ))
  11178. characterMakers.push(() => makeCharacter(
  11179. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11180. {
  11181. front: {
  11182. height: math.unit(6, "feet"),
  11183. weight: math.unit(250, "lb"),
  11184. name: "Front",
  11185. image: {
  11186. source: "./media/characters/xylrem/front.svg",
  11187. extra: 3323 / 3050,
  11188. bottom: 0.065
  11189. }
  11190. },
  11191. },
  11192. [
  11193. {
  11194. name: "Micro",
  11195. height: math.unit(4, "feet")
  11196. },
  11197. {
  11198. name: "Normal",
  11199. height: math.unit(16, "feet"),
  11200. default: true
  11201. },
  11202. {
  11203. name: "Macro",
  11204. height: math.unit(2720, "feet")
  11205. },
  11206. {
  11207. name: "Megamacro",
  11208. height: math.unit(25000, "miles")
  11209. },
  11210. ]
  11211. ))
  11212. characterMakers.push(() => makeCharacter(
  11213. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11214. {
  11215. front: {
  11216. height: math.unit(8, "feet"),
  11217. weight: math.unit(250, "kg"),
  11218. name: "Front",
  11219. image: {
  11220. source: "./media/characters/ikideru/front.svg",
  11221. extra: 930 / 870,
  11222. bottom: 0.087
  11223. }
  11224. },
  11225. back: {
  11226. height: math.unit(8, "feet"),
  11227. weight: math.unit(250, "kg"),
  11228. name: "Back",
  11229. image: {
  11230. source: "./media/characters/ikideru/back.svg",
  11231. extra: 919 / 852,
  11232. bottom: 0.055
  11233. }
  11234. },
  11235. },
  11236. [
  11237. {
  11238. name: "Rare",
  11239. height: math.unit(8, "feet"),
  11240. default: true
  11241. },
  11242. {
  11243. name: "Playful Loom",
  11244. height: math.unit(80, "feet")
  11245. },
  11246. {
  11247. name: "City Leaner",
  11248. height: math.unit(230, "feet")
  11249. },
  11250. {
  11251. name: "Megamacro",
  11252. height: math.unit(2500, "feet")
  11253. },
  11254. {
  11255. name: "Gigamacro",
  11256. height: math.unit(26400, "feet")
  11257. },
  11258. {
  11259. name: "Tectonic Shifter",
  11260. height: math.unit(1.7, "megameters")
  11261. },
  11262. {
  11263. name: "Planet Carer",
  11264. height: math.unit(21, "megameters")
  11265. },
  11266. {
  11267. name: "God",
  11268. height: math.unit(11157.22, "parsecs")
  11269. },
  11270. ]
  11271. ))
  11272. characterMakers.push(() => makeCharacter(
  11273. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11274. {
  11275. front: {
  11276. height: math.unit(6, "feet"),
  11277. weight: math.unit(120, "lb"),
  11278. name: "Front",
  11279. image: {
  11280. source: "./media/characters/neo/front.svg"
  11281. }
  11282. },
  11283. },
  11284. [
  11285. {
  11286. name: "Micro",
  11287. height: math.unit(2, "inches"),
  11288. default: true
  11289. },
  11290. {
  11291. name: "Human Size",
  11292. height: math.unit(5 + 8 / 12, "feet")
  11293. },
  11294. ]
  11295. ))
  11296. characterMakers.push(() => makeCharacter(
  11297. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11298. {
  11299. front: {
  11300. height: math.unit(13 + 10 / 12, "feet"),
  11301. weight: math.unit(5320, "lb"),
  11302. name: "Front",
  11303. image: {
  11304. source: "./media/characters/chauncey-chantz/front.svg",
  11305. extra: 1587 / 1435,
  11306. bottom: 0.02
  11307. }
  11308. },
  11309. },
  11310. [
  11311. {
  11312. name: "Normal",
  11313. height: math.unit(13 + 10 / 12, "feet"),
  11314. default: true
  11315. },
  11316. {
  11317. name: "Macro",
  11318. height: math.unit(45, "feet")
  11319. },
  11320. {
  11321. name: "Megamacro",
  11322. height: math.unit(250, "miles")
  11323. },
  11324. {
  11325. name: "Planetary",
  11326. height: math.unit(10000, "miles")
  11327. },
  11328. {
  11329. name: "Galactic",
  11330. height: math.unit(40000, "parsecs")
  11331. },
  11332. {
  11333. name: "Universal",
  11334. height: math.unit(1, "yottameter")
  11335. },
  11336. ]
  11337. ))
  11338. characterMakers.push(() => makeCharacter(
  11339. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11340. {
  11341. front: {
  11342. height: math.unit(6, "feet"),
  11343. weight: math.unit(150, "lb"),
  11344. name: "Front",
  11345. image: {
  11346. source: "./media/characters/epifox/front.svg",
  11347. extra: 1,
  11348. bottom: 0.075
  11349. }
  11350. },
  11351. },
  11352. [
  11353. {
  11354. name: "Micro",
  11355. height: math.unit(6, "inches")
  11356. },
  11357. {
  11358. name: "Normal",
  11359. height: math.unit(12, "feet"),
  11360. default: true
  11361. },
  11362. {
  11363. name: "Macro",
  11364. height: math.unit(3810, "feet")
  11365. },
  11366. {
  11367. name: "Megamacro",
  11368. height: math.unit(500, "miles")
  11369. },
  11370. ]
  11371. ))
  11372. characterMakers.push(() => makeCharacter(
  11373. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11374. {
  11375. front: {
  11376. height: math.unit(1.8796, "m"),
  11377. weight: math.unit(230, "lb"),
  11378. name: "Front",
  11379. image: {
  11380. source: "./media/characters/colin-t/front.svg",
  11381. extra: 1272 / 1193,
  11382. bottom: 0.07
  11383. }
  11384. },
  11385. },
  11386. [
  11387. {
  11388. name: "Micro",
  11389. height: math.unit(0.571, "meters")
  11390. },
  11391. {
  11392. name: "Normal",
  11393. height: math.unit(1.8796, "meters"),
  11394. default: true
  11395. },
  11396. {
  11397. name: "Tall",
  11398. height: math.unit(4, "meters")
  11399. },
  11400. {
  11401. name: "Macro",
  11402. height: math.unit(67.241, "meters")
  11403. },
  11404. {
  11405. name: "Megamacro",
  11406. height: math.unit(371.856, "meters")
  11407. },
  11408. {
  11409. name: "Planetary",
  11410. height: math.unit(12631.5689, "km")
  11411. },
  11412. ]
  11413. ))
  11414. characterMakers.push(() => makeCharacter(
  11415. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11416. {
  11417. front: {
  11418. height: math.unit(1.85, "meters"),
  11419. weight: math.unit(80, "kg"),
  11420. name: "Front",
  11421. image: {
  11422. source: "./media/characters/matvei/front.svg",
  11423. extra: 614 / 594,
  11424. bottom: 0.01
  11425. }
  11426. },
  11427. },
  11428. [
  11429. {
  11430. name: "Normal",
  11431. height: math.unit(1.85, "meters"),
  11432. default: true
  11433. },
  11434. ]
  11435. ))
  11436. characterMakers.push(() => makeCharacter(
  11437. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11438. {
  11439. front: {
  11440. height: math.unit(5 + 9 / 12, "feet"),
  11441. weight: math.unit(70, "lb"),
  11442. name: "Front",
  11443. image: {
  11444. source: "./media/characters/quincy/front.svg",
  11445. extra: 3041 / 2751
  11446. }
  11447. },
  11448. back: {
  11449. height: math.unit(5 + 9 / 12, "feet"),
  11450. weight: math.unit(70, "lb"),
  11451. name: "Back",
  11452. image: {
  11453. source: "./media/characters/quincy/back.svg",
  11454. extra: 3041 / 2751
  11455. }
  11456. },
  11457. flying: {
  11458. height: math.unit(5 + 4 / 12, "feet"),
  11459. weight: math.unit(70, "lb"),
  11460. name: "Flying",
  11461. image: {
  11462. source: "./media/characters/quincy/flying.svg",
  11463. extra: 1044 / 930
  11464. }
  11465. },
  11466. },
  11467. [
  11468. {
  11469. name: "Micro",
  11470. height: math.unit(3, "cm")
  11471. },
  11472. {
  11473. name: "Normal",
  11474. height: math.unit(5 + 9 / 12, "feet")
  11475. },
  11476. {
  11477. name: "Macro",
  11478. height: math.unit(200, "meters"),
  11479. default: true
  11480. },
  11481. {
  11482. name: "Megamacro",
  11483. height: math.unit(1000, "meters")
  11484. },
  11485. ]
  11486. ))
  11487. characterMakers.push(() => makeCharacter(
  11488. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11489. {
  11490. front: {
  11491. height: math.unit(4 + 7 / 12, "feet"),
  11492. weight: math.unit(50, "lb"),
  11493. name: "Front",
  11494. image: {
  11495. source: "./media/characters/vanrel/front.svg",
  11496. extra: 1,
  11497. bottom: 0.02
  11498. }
  11499. },
  11500. frontAlt: {
  11501. height: math.unit(4 + 7 / 12, "feet"),
  11502. weight: math.unit(50, "lb"),
  11503. name: "Front-alt",
  11504. image: {
  11505. source: "./media/characters/vanrel/front-alt.svg",
  11506. extra: 1,
  11507. bottom: 15 / 1511
  11508. }
  11509. },
  11510. elemental: {
  11511. height: math.unit(3, "feet"),
  11512. weight: math.unit(50, "lb"),
  11513. name: "Elemental",
  11514. image: {
  11515. source: "./media/characters/vanrel/elemental.svg",
  11516. extra: 192.3 / 162.8,
  11517. bottom: 1.79 / 194.17
  11518. }
  11519. },
  11520. side: {
  11521. height: math.unit(4 + 7 / 12, "feet"),
  11522. weight: math.unit(50, "lb"),
  11523. name: "Side",
  11524. image: {
  11525. source: "./media/characters/vanrel/side.svg",
  11526. extra: 1,
  11527. bottom: 0.025
  11528. }
  11529. },
  11530. tome: {
  11531. height: math.unit(1.35, "feet"),
  11532. weight: math.unit(10, "lb"),
  11533. name: "Vanrel's Tome",
  11534. rename: true,
  11535. image: {
  11536. source: "./media/characters/vanrel/tome.svg"
  11537. }
  11538. },
  11539. beans: {
  11540. height: math.unit(0.89, "feet"),
  11541. name: "Beans",
  11542. image: {
  11543. source: "./media/characters/vanrel/beans.svg"
  11544. }
  11545. },
  11546. },
  11547. [
  11548. {
  11549. name: "Normal",
  11550. height: math.unit(4 + 7 / 12, "feet"),
  11551. default: true
  11552. },
  11553. ]
  11554. ))
  11555. characterMakers.push(() => makeCharacter(
  11556. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11557. {
  11558. front: {
  11559. height: math.unit(7 + 5 / 12, "feet"),
  11560. weight: math.unit(150, "lb"),
  11561. name: "Front",
  11562. image: {
  11563. source: "./media/characters/kuiper-vanrel/front.svg",
  11564. extra: 1118 / 1068,
  11565. bottom: 0.09
  11566. }
  11567. },
  11568. foot: {
  11569. height: math.unit(0.55, "meters"),
  11570. name: "Foot",
  11571. image: {
  11572. source: "./media/characters/kuiper-vanrel/foot.svg",
  11573. }
  11574. },
  11575. battle: {
  11576. height: math.unit(6.824, "feet"),
  11577. weight: math.unit(150, "lb"),
  11578. name: "Battle",
  11579. image: {
  11580. source: "./media/characters/kuiper-vanrel/battle.svg",
  11581. extra: 1466 / 1327,
  11582. bottom: 29 / 1492.5
  11583. }
  11584. },
  11585. battleAlt: {
  11586. height: math.unit(6.824, "feet"),
  11587. weight: math.unit(150, "lb"),
  11588. name: "Battle (Alt)",
  11589. image: {
  11590. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11591. extra: 2081 / 1965,
  11592. bottom: 40 / 2121
  11593. }
  11594. },
  11595. },
  11596. [
  11597. {
  11598. name: "Normal",
  11599. height: math.unit(7 + 5 / 12, "feet"),
  11600. default: true
  11601. },
  11602. ]
  11603. ))
  11604. characterMakers.push(() => makeCharacter(
  11605. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11606. {
  11607. front: {
  11608. height: math.unit(8 + 5 / 12, "feet"),
  11609. weight: math.unit(150, "lb"),
  11610. name: "Front",
  11611. image: {
  11612. source: "./media/characters/keset-vanrel/front.svg",
  11613. extra: 1150 / 1084,
  11614. bottom: 0.05
  11615. }
  11616. },
  11617. hand: {
  11618. height: math.unit(0.6, "meters"),
  11619. name: "Hand",
  11620. image: {
  11621. source: "./media/characters/keset-vanrel/hand.svg"
  11622. }
  11623. },
  11624. foot: {
  11625. height: math.unit(0.94978, "meters"),
  11626. name: "Foot",
  11627. image: {
  11628. source: "./media/characters/keset-vanrel/foot.svg"
  11629. }
  11630. },
  11631. battle: {
  11632. height: math.unit(7.408, "feet"),
  11633. weight: math.unit(150, "lb"),
  11634. name: "Battle",
  11635. image: {
  11636. source: "./media/characters/keset-vanrel/battle.svg",
  11637. extra: 1890 / 1386,
  11638. bottom: 73.28 / 1970
  11639. }
  11640. },
  11641. },
  11642. [
  11643. {
  11644. name: "Normal",
  11645. height: math.unit(8 + 5 / 12, "feet"),
  11646. default: true
  11647. },
  11648. ]
  11649. ))
  11650. characterMakers.push(() => makeCharacter(
  11651. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11652. {
  11653. front: {
  11654. height: math.unit(6, "feet"),
  11655. weight: math.unit(150, "lb"),
  11656. name: "Front",
  11657. image: {
  11658. source: "./media/characters/neos/front.svg",
  11659. extra: 1696 / 992,
  11660. bottom: 0.14
  11661. }
  11662. },
  11663. },
  11664. [
  11665. {
  11666. name: "Normal",
  11667. height: math.unit(54, "cm"),
  11668. default: true
  11669. },
  11670. {
  11671. name: "Macro",
  11672. height: math.unit(100, "m")
  11673. },
  11674. {
  11675. name: "Megamacro",
  11676. height: math.unit(10, "km")
  11677. },
  11678. {
  11679. name: "Megamacro+",
  11680. height: math.unit(100, "km")
  11681. },
  11682. {
  11683. name: "Gigamacro",
  11684. height: math.unit(100, "Mm")
  11685. },
  11686. {
  11687. name: "Teramacro",
  11688. height: math.unit(100, "Gm")
  11689. },
  11690. {
  11691. name: "Examacro",
  11692. height: math.unit(100, "Em")
  11693. },
  11694. {
  11695. name: "Godly",
  11696. height: math.unit(10000, "Ym")
  11697. },
  11698. {
  11699. name: "Beyond Godly",
  11700. height: math.unit(25, "multiverses")
  11701. },
  11702. ]
  11703. ))
  11704. characterMakers.push(() => makeCharacter(
  11705. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11706. {
  11707. feminine: {
  11708. height: math.unit(5, "feet"),
  11709. weight: math.unit(100, "lb"),
  11710. name: "Feminine",
  11711. image: {
  11712. source: "./media/characters/sammy-mouse/feminine.svg",
  11713. extra: 2526 / 2425,
  11714. bottom: 0.123
  11715. }
  11716. },
  11717. masculine: {
  11718. height: math.unit(5, "feet"),
  11719. weight: math.unit(100, "lb"),
  11720. name: "Masculine",
  11721. image: {
  11722. source: "./media/characters/sammy-mouse/masculine.svg",
  11723. extra: 2526 / 2425,
  11724. bottom: 0.123
  11725. }
  11726. },
  11727. },
  11728. [
  11729. {
  11730. name: "Micro",
  11731. height: math.unit(5, "inches")
  11732. },
  11733. {
  11734. name: "Normal",
  11735. height: math.unit(5, "feet"),
  11736. default: true
  11737. },
  11738. {
  11739. name: "Macro",
  11740. height: math.unit(60, "feet")
  11741. },
  11742. ]
  11743. ))
  11744. characterMakers.push(() => makeCharacter(
  11745. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11746. {
  11747. front: {
  11748. height: math.unit(4, "feet"),
  11749. weight: math.unit(50, "lb"),
  11750. name: "Front",
  11751. image: {
  11752. source: "./media/characters/kole/front.svg",
  11753. extra: 1423 / 1303,
  11754. bottom: 0.025
  11755. }
  11756. },
  11757. back: {
  11758. height: math.unit(4, "feet"),
  11759. weight: math.unit(50, "lb"),
  11760. name: "Back",
  11761. image: {
  11762. source: "./media/characters/kole/back.svg",
  11763. extra: 1426 / 1280,
  11764. bottom: 0.02
  11765. }
  11766. },
  11767. },
  11768. [
  11769. {
  11770. name: "Normal",
  11771. height: math.unit(4, "feet"),
  11772. default: true
  11773. },
  11774. ]
  11775. ))
  11776. characterMakers.push(() => makeCharacter(
  11777. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11778. {
  11779. front: {
  11780. height: math.unit(2 + 6 / 12, "feet"),
  11781. weight: math.unit(20, "lb"),
  11782. name: "Front",
  11783. image: {
  11784. source: "./media/characters/rufran/front.svg",
  11785. extra: 2041 / 1839,
  11786. bottom: 0.055
  11787. }
  11788. },
  11789. back: {
  11790. height: math.unit(2 + 6 / 12, "feet"),
  11791. weight: math.unit(20, "lb"),
  11792. name: "Back",
  11793. image: {
  11794. source: "./media/characters/rufran/back.svg",
  11795. extra: 2054 / 1839,
  11796. bottom: 0.01
  11797. }
  11798. },
  11799. hand: {
  11800. height: math.unit(0.2166, "meters"),
  11801. name: "Hand",
  11802. image: {
  11803. source: "./media/characters/rufran/hand.svg"
  11804. }
  11805. },
  11806. foot: {
  11807. height: math.unit(0.185, "meters"),
  11808. name: "Foot",
  11809. image: {
  11810. source: "./media/characters/rufran/foot.svg"
  11811. }
  11812. },
  11813. },
  11814. [
  11815. {
  11816. name: "Micro",
  11817. height: math.unit(1, "inch")
  11818. },
  11819. {
  11820. name: "Normal",
  11821. height: math.unit(2 + 6 / 12, "feet"),
  11822. default: true
  11823. },
  11824. {
  11825. name: "Big",
  11826. height: math.unit(60, "feet")
  11827. },
  11828. {
  11829. name: "Macro",
  11830. height: math.unit(325, "feet")
  11831. },
  11832. ]
  11833. ))
  11834. characterMakers.push(() => makeCharacter(
  11835. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11836. {
  11837. front: {
  11838. height: math.unit(0.3, "meters"),
  11839. weight: math.unit(3.5, "kg"),
  11840. name: "Front",
  11841. image: {
  11842. source: "./media/characters/chip/front.svg",
  11843. extra: 748 / 674
  11844. }
  11845. },
  11846. },
  11847. [
  11848. {
  11849. name: "Micro",
  11850. height: math.unit(1, "inch"),
  11851. default: true
  11852. },
  11853. ]
  11854. ))
  11855. characterMakers.push(() => makeCharacter(
  11856. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11857. {
  11858. side: {
  11859. height: math.unit(2.3, "meters"),
  11860. weight: math.unit(3500, "lb"),
  11861. name: "Side",
  11862. image: {
  11863. source: "./media/characters/torvid/side.svg",
  11864. extra: 1972 / 722,
  11865. bottom: 0.035
  11866. }
  11867. },
  11868. },
  11869. [
  11870. {
  11871. name: "Normal",
  11872. height: math.unit(2.3, "meters"),
  11873. default: true
  11874. },
  11875. ]
  11876. ))
  11877. characterMakers.push(() => makeCharacter(
  11878. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11879. {
  11880. front: {
  11881. height: math.unit(2, "meters"),
  11882. weight: math.unit(150.5, "kg"),
  11883. name: "Front",
  11884. image: {
  11885. source: "./media/characters/susan/front.svg",
  11886. extra: 693 / 635,
  11887. bottom: 0.05
  11888. }
  11889. },
  11890. },
  11891. [
  11892. {
  11893. name: "Megamacro",
  11894. height: math.unit(505, "miles"),
  11895. default: true
  11896. },
  11897. ]
  11898. ))
  11899. characterMakers.push(() => makeCharacter(
  11900. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11901. {
  11902. front: {
  11903. height: math.unit(6, "feet"),
  11904. weight: math.unit(150, "lb"),
  11905. name: "Front",
  11906. image: {
  11907. source: "./media/characters/raindrops/front.svg",
  11908. extra: 2655 / 2461,
  11909. bottom: 49 / 2705
  11910. }
  11911. },
  11912. back: {
  11913. height: math.unit(6, "feet"),
  11914. weight: math.unit(150, "lb"),
  11915. name: "Back",
  11916. image: {
  11917. source: "./media/characters/raindrops/back.svg",
  11918. extra: 2574 / 2400,
  11919. bottom: 65 / 2634
  11920. }
  11921. },
  11922. },
  11923. [
  11924. {
  11925. name: "Micro",
  11926. height: math.unit(6, "inches")
  11927. },
  11928. {
  11929. name: "Normal",
  11930. height: math.unit(6 + 2 / 12, "feet")
  11931. },
  11932. {
  11933. name: "Macro",
  11934. height: math.unit(131, "feet"),
  11935. default: true
  11936. },
  11937. {
  11938. name: "Megamacro",
  11939. height: math.unit(15, "miles")
  11940. },
  11941. {
  11942. name: "Gigamacro",
  11943. height: math.unit(4000, "miles")
  11944. },
  11945. {
  11946. name: "Teramacro",
  11947. height: math.unit(315000, "miles")
  11948. },
  11949. ]
  11950. ))
  11951. characterMakers.push(() => makeCharacter(
  11952. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11953. {
  11954. front: {
  11955. height: math.unit(2.794, "meters"),
  11956. weight: math.unit(325, "kg"),
  11957. name: "Front",
  11958. image: {
  11959. source: "./media/characters/tezwa/front.svg",
  11960. extra: 2083 / 1906,
  11961. bottom: 0.031
  11962. }
  11963. },
  11964. foot: {
  11965. height: math.unit(0.687, "meters"),
  11966. name: "Foot",
  11967. image: {
  11968. source: "./media/characters/tezwa/foot.svg"
  11969. }
  11970. },
  11971. },
  11972. [
  11973. {
  11974. name: "Normal",
  11975. height: math.unit(9 + 2 / 12, "feet"),
  11976. default: true
  11977. },
  11978. ]
  11979. ))
  11980. characterMakers.push(() => makeCharacter(
  11981. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11982. {
  11983. front: {
  11984. height: math.unit(58, "feet"),
  11985. weight: math.unit(89000, "lb"),
  11986. name: "Front",
  11987. image: {
  11988. source: "./media/characters/typhus/front.svg",
  11989. extra: 816 / 800,
  11990. bottom: 0.065
  11991. }
  11992. },
  11993. },
  11994. [
  11995. {
  11996. name: "Macro",
  11997. height: math.unit(58, "feet"),
  11998. default: true
  11999. },
  12000. ]
  12001. ))
  12002. characterMakers.push(() => makeCharacter(
  12003. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12004. {
  12005. front: {
  12006. height: math.unit(12, "feet"),
  12007. weight: math.unit(6, "tonnes"),
  12008. name: "Front",
  12009. image: {
  12010. source: "./media/characters/lyra-von-wulf/front.svg",
  12011. extra: 1,
  12012. bottom: 0.10
  12013. }
  12014. },
  12015. frontMecha: {
  12016. height: math.unit(12, "feet"),
  12017. weight: math.unit(12, "tonnes"),
  12018. name: "Front (Mecha)",
  12019. image: {
  12020. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12021. extra: 1,
  12022. bottom: 0.042
  12023. }
  12024. },
  12025. maw: {
  12026. height: math.unit(2.2, "feet"),
  12027. name: "Maw",
  12028. image: {
  12029. source: "./media/characters/lyra-von-wulf/maw.svg"
  12030. }
  12031. },
  12032. },
  12033. [
  12034. {
  12035. name: "Normal",
  12036. height: math.unit(12, "feet"),
  12037. default: true
  12038. },
  12039. {
  12040. name: "Classic",
  12041. height: math.unit(50, "feet")
  12042. },
  12043. {
  12044. name: "Macro",
  12045. height: math.unit(500, "feet")
  12046. },
  12047. {
  12048. name: "Megamacro",
  12049. height: math.unit(1, "mile")
  12050. },
  12051. {
  12052. name: "Gigamacro",
  12053. height: math.unit(400, "miles")
  12054. },
  12055. {
  12056. name: "Teramacro",
  12057. height: math.unit(22000, "miles")
  12058. },
  12059. {
  12060. name: "Solarmacro",
  12061. height: math.unit(8600000, "miles")
  12062. },
  12063. {
  12064. name: "Galactic",
  12065. height: math.unit(1057000, "lightyears")
  12066. },
  12067. ]
  12068. ))
  12069. characterMakers.push(() => makeCharacter(
  12070. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12071. {
  12072. front: {
  12073. height: math.unit(6 + 10 / 12, "feet"),
  12074. weight: math.unit(150, "lb"),
  12075. name: "Front",
  12076. image: {
  12077. source: "./media/characters/dixon/front.svg",
  12078. extra: 3361 / 3209,
  12079. bottom: 0.01
  12080. }
  12081. },
  12082. },
  12083. [
  12084. {
  12085. name: "Normal",
  12086. height: math.unit(6 + 10 / 12, "feet"),
  12087. default: true
  12088. },
  12089. {
  12090. name: "Big",
  12091. height: math.unit(12, "meters")
  12092. },
  12093. {
  12094. name: "Macro",
  12095. height: math.unit(500, "meters")
  12096. },
  12097. {
  12098. name: "Megamacro",
  12099. height: math.unit(2, "km")
  12100. },
  12101. ]
  12102. ))
  12103. characterMakers.push(() => makeCharacter(
  12104. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12105. {
  12106. front: {
  12107. height: math.unit(185, "cm"),
  12108. weight: math.unit(68, "kg"),
  12109. name: "Front",
  12110. image: {
  12111. source: "./media/characters/kauko/front.svg",
  12112. extra: 1455 / 1421,
  12113. bottom: 0.03
  12114. }
  12115. },
  12116. back: {
  12117. height: math.unit(185, "cm"),
  12118. weight: math.unit(68, "kg"),
  12119. name: "Back",
  12120. image: {
  12121. source: "./media/characters/kauko/back.svg",
  12122. extra: 1455 / 1421,
  12123. bottom: 0.004
  12124. }
  12125. },
  12126. },
  12127. [
  12128. {
  12129. name: "Normal",
  12130. height: math.unit(185, "cm"),
  12131. default: true
  12132. },
  12133. ]
  12134. ))
  12135. characterMakers.push(() => makeCharacter(
  12136. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12137. {
  12138. front: {
  12139. height: math.unit(6, "feet"),
  12140. weight: math.unit(150, "kg"),
  12141. name: "Front",
  12142. image: {
  12143. source: "./media/characters/varg/front.svg",
  12144. extra: 1108 / 1018,
  12145. bottom: 0.0375
  12146. }
  12147. },
  12148. },
  12149. [
  12150. {
  12151. name: "Normal",
  12152. height: math.unit(5, "meters")
  12153. },
  12154. {
  12155. name: "Macro",
  12156. height: math.unit(200, "meters")
  12157. },
  12158. {
  12159. name: "Megamacro",
  12160. height: math.unit(20, "kilometers")
  12161. },
  12162. {
  12163. name: "True Size",
  12164. height: math.unit(211, "km"),
  12165. default: true
  12166. },
  12167. {
  12168. name: "Gigamacro",
  12169. height: math.unit(1000, "km")
  12170. },
  12171. {
  12172. name: "Gigamacro+",
  12173. height: math.unit(8000, "km")
  12174. },
  12175. {
  12176. name: "Teramacro",
  12177. height: math.unit(1000000, "km")
  12178. },
  12179. ]
  12180. ))
  12181. characterMakers.push(() => makeCharacter(
  12182. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12183. {
  12184. front: {
  12185. height: math.unit(7 + 7 / 12, "feet"),
  12186. weight: math.unit(267, "lb"),
  12187. name: "Front",
  12188. image: {
  12189. source: "./media/characters/dayza/front.svg",
  12190. extra: 1262 / 1200,
  12191. bottom: 0.035
  12192. }
  12193. },
  12194. side: {
  12195. height: math.unit(7 + 7 / 12, "feet"),
  12196. weight: math.unit(267, "lb"),
  12197. name: "Side",
  12198. image: {
  12199. source: "./media/characters/dayza/side.svg",
  12200. extra: 1295 / 1245,
  12201. bottom: 0.05
  12202. }
  12203. },
  12204. back: {
  12205. height: math.unit(7 + 7 / 12, "feet"),
  12206. weight: math.unit(267, "lb"),
  12207. name: "Back",
  12208. image: {
  12209. source: "./media/characters/dayza/back.svg",
  12210. extra: 1241 / 1170
  12211. }
  12212. },
  12213. },
  12214. [
  12215. {
  12216. name: "Normal",
  12217. height: math.unit(7 + 7 / 12, "feet"),
  12218. default: true
  12219. },
  12220. {
  12221. name: "Macro",
  12222. height: math.unit(155, "feet")
  12223. },
  12224. ]
  12225. ))
  12226. characterMakers.push(() => makeCharacter(
  12227. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12228. {
  12229. front: {
  12230. height: math.unit(6 + 5 / 12, "feet"),
  12231. weight: math.unit(160, "lb"),
  12232. name: "Front",
  12233. image: {
  12234. source: "./media/characters/xanthos/front.svg",
  12235. extra: 1,
  12236. bottom: 0.04
  12237. }
  12238. },
  12239. back: {
  12240. height: math.unit(6 + 5 / 12, "feet"),
  12241. weight: math.unit(160, "lb"),
  12242. name: "Back",
  12243. image: {
  12244. source: "./media/characters/xanthos/back.svg",
  12245. extra: 1,
  12246. bottom: 0.03
  12247. }
  12248. },
  12249. hand: {
  12250. height: math.unit(0.928, "feet"),
  12251. name: "Hand",
  12252. image: {
  12253. source: "./media/characters/xanthos/hand.svg"
  12254. }
  12255. },
  12256. foot: {
  12257. height: math.unit(1.286, "feet"),
  12258. name: "Foot",
  12259. image: {
  12260. source: "./media/characters/xanthos/foot.svg"
  12261. }
  12262. },
  12263. },
  12264. [
  12265. {
  12266. name: "Normal",
  12267. height: math.unit(6 + 5 / 12, "feet"),
  12268. default: true
  12269. },
  12270. {
  12271. name: "Normal+",
  12272. height: math.unit(6, "meters")
  12273. },
  12274. {
  12275. name: "Macro",
  12276. height: math.unit(40, "feet")
  12277. },
  12278. {
  12279. name: "Macro+",
  12280. height: math.unit(200, "meters")
  12281. },
  12282. {
  12283. name: "Megamacro",
  12284. height: math.unit(20, "km")
  12285. },
  12286. {
  12287. name: "Megamacro+",
  12288. height: math.unit(100, "km")
  12289. },
  12290. ]
  12291. ))
  12292. characterMakers.push(() => makeCharacter(
  12293. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12294. {
  12295. front: {
  12296. height: math.unit(6 + 3 / 12, "feet"),
  12297. weight: math.unit(215, "lb"),
  12298. name: "Front",
  12299. image: {
  12300. source: "./media/characters/grynn/front.svg",
  12301. extra: 4627 / 4209,
  12302. bottom: 0.047
  12303. }
  12304. },
  12305. },
  12306. [
  12307. {
  12308. name: "Micro",
  12309. height: math.unit(6, "inches")
  12310. },
  12311. {
  12312. name: "Normal",
  12313. height: math.unit(6 + 3 / 12, "feet"),
  12314. default: true
  12315. },
  12316. {
  12317. name: "Big",
  12318. height: math.unit(104, "feet")
  12319. },
  12320. {
  12321. name: "Macro",
  12322. height: math.unit(944, "feet")
  12323. },
  12324. {
  12325. name: "Macro+",
  12326. height: math.unit(9480, "feet")
  12327. },
  12328. {
  12329. name: "Megamacro",
  12330. height: math.unit(78752, "feet")
  12331. },
  12332. {
  12333. name: "Megamacro+",
  12334. height: math.unit(630128, "feet")
  12335. },
  12336. {
  12337. name: "Megamacro++",
  12338. height: math.unit(3150695, "feet")
  12339. },
  12340. ]
  12341. ))
  12342. characterMakers.push(() => makeCharacter(
  12343. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12344. {
  12345. front: {
  12346. height: math.unit(7 + 5 / 12, "feet"),
  12347. weight: math.unit(450, "lb"),
  12348. name: "Front",
  12349. image: {
  12350. source: "./media/characters/mocha-aura/front.svg",
  12351. extra: 1907 / 1817,
  12352. bottom: 0.04
  12353. }
  12354. },
  12355. back: {
  12356. height: math.unit(7 + 5 / 12, "feet"),
  12357. weight: math.unit(450, "lb"),
  12358. name: "Back",
  12359. image: {
  12360. source: "./media/characters/mocha-aura/back.svg",
  12361. extra: 1900 / 1825,
  12362. bottom: 0.045
  12363. }
  12364. },
  12365. },
  12366. [
  12367. {
  12368. name: "Nano",
  12369. height: math.unit(1, "nm")
  12370. },
  12371. {
  12372. name: "Megamicro",
  12373. height: math.unit(1, "mm")
  12374. },
  12375. {
  12376. name: "Micro",
  12377. height: math.unit(3, "inches")
  12378. },
  12379. {
  12380. name: "Normal",
  12381. height: math.unit(7 + 5 / 12, "feet"),
  12382. default: true
  12383. },
  12384. {
  12385. name: "Macro",
  12386. height: math.unit(30, "feet")
  12387. },
  12388. {
  12389. name: "Megamacro",
  12390. height: math.unit(3500, "feet")
  12391. },
  12392. {
  12393. name: "Teramacro",
  12394. height: math.unit(500000, "miles")
  12395. },
  12396. {
  12397. name: "Petamacro",
  12398. height: math.unit(50000000000000000, "parsecs")
  12399. },
  12400. ]
  12401. ))
  12402. characterMakers.push(() => makeCharacter(
  12403. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12404. {
  12405. front: {
  12406. height: math.unit(6, "feet"),
  12407. weight: math.unit(150, "lb"),
  12408. name: "Front",
  12409. image: {
  12410. source: "./media/characters/ilisha-devya/front.svg",
  12411. extra: 1,
  12412. bottom: 0.175
  12413. }
  12414. },
  12415. back: {
  12416. height: math.unit(6, "feet"),
  12417. weight: math.unit(150, "lb"),
  12418. name: "Back",
  12419. image: {
  12420. source: "./media/characters/ilisha-devya/back.svg",
  12421. extra: 1,
  12422. bottom: 0.015
  12423. }
  12424. },
  12425. },
  12426. [
  12427. {
  12428. name: "Macro",
  12429. height: math.unit(500, "feet"),
  12430. default: true
  12431. },
  12432. {
  12433. name: "Megamacro",
  12434. height: math.unit(10, "miles")
  12435. },
  12436. {
  12437. name: "Gigamacro",
  12438. height: math.unit(100000, "miles")
  12439. },
  12440. {
  12441. name: "Examacro",
  12442. height: math.unit(1e9, "lightyears")
  12443. },
  12444. {
  12445. name: "Omniversal",
  12446. height: math.unit(1e33, "lightyears")
  12447. },
  12448. {
  12449. name: "Beyond Infinite",
  12450. height: math.unit(1e100, "lightyears")
  12451. },
  12452. ]
  12453. ))
  12454. characterMakers.push(() => makeCharacter(
  12455. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12456. {
  12457. Side: {
  12458. height: math.unit(6, "feet"),
  12459. weight: math.unit(150, "lb"),
  12460. name: "Side",
  12461. image: {
  12462. source: "./media/characters/mira/side.svg",
  12463. extra: 900 / 799,
  12464. bottom: 0.02
  12465. }
  12466. },
  12467. },
  12468. [
  12469. {
  12470. name: "Human Size",
  12471. height: math.unit(6, "feet")
  12472. },
  12473. {
  12474. name: "Macro",
  12475. height: math.unit(100, "feet"),
  12476. default: true
  12477. },
  12478. {
  12479. name: "Megamacro",
  12480. height: math.unit(10, "miles")
  12481. },
  12482. {
  12483. name: "Gigamacro",
  12484. height: math.unit(25000, "miles")
  12485. },
  12486. {
  12487. name: "Teramacro",
  12488. height: math.unit(300, "AU")
  12489. },
  12490. {
  12491. name: "Full Size",
  12492. height: math.unit(4.5e10, "lightyears")
  12493. },
  12494. ]
  12495. ))
  12496. characterMakers.push(() => makeCharacter(
  12497. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12498. {
  12499. front: {
  12500. height: math.unit(6, "feet"),
  12501. weight: math.unit(150, "lb"),
  12502. name: "Front",
  12503. image: {
  12504. source: "./media/characters/holly/front.svg",
  12505. extra: 639 / 606
  12506. }
  12507. },
  12508. back: {
  12509. height: math.unit(6, "feet"),
  12510. weight: math.unit(150, "lb"),
  12511. name: "Back",
  12512. image: {
  12513. source: "./media/characters/holly/back.svg",
  12514. extra: 623 / 598
  12515. }
  12516. },
  12517. frontWorking: {
  12518. height: math.unit(6, "feet"),
  12519. weight: math.unit(150, "lb"),
  12520. name: "Front (Working)",
  12521. image: {
  12522. source: "./media/characters/holly/front-working.svg",
  12523. extra: 607 / 577,
  12524. bottom: 0.048
  12525. }
  12526. },
  12527. },
  12528. [
  12529. {
  12530. name: "Normal",
  12531. height: math.unit(12 + 3 / 12, "feet"),
  12532. default: true
  12533. },
  12534. ]
  12535. ))
  12536. characterMakers.push(() => makeCharacter(
  12537. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12538. {
  12539. front: {
  12540. height: math.unit(6, "feet"),
  12541. weight: math.unit(150, "lb"),
  12542. name: "Front",
  12543. image: {
  12544. source: "./media/characters/porter/front.svg",
  12545. extra: 1,
  12546. bottom: 0.01
  12547. }
  12548. },
  12549. frontRobes: {
  12550. height: math.unit(6, "feet"),
  12551. weight: math.unit(150, "lb"),
  12552. name: "Front (Robes)",
  12553. image: {
  12554. source: "./media/characters/porter/front-robes.svg",
  12555. extra: 1.01,
  12556. bottom: 0.01
  12557. }
  12558. },
  12559. },
  12560. [
  12561. {
  12562. name: "Normal",
  12563. height: math.unit(11 + 9 / 12, "feet"),
  12564. default: true
  12565. },
  12566. ]
  12567. ))
  12568. characterMakers.push(() => makeCharacter(
  12569. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12570. {
  12571. legendary: {
  12572. height: math.unit(6, "feet"),
  12573. weight: math.unit(150, "lb"),
  12574. name: "Legendary",
  12575. image: {
  12576. source: "./media/characters/lucy/legendary.svg",
  12577. extra: 1355 / 1100,
  12578. bottom: 0.045
  12579. }
  12580. },
  12581. },
  12582. [
  12583. {
  12584. name: "Legendary",
  12585. height: math.unit(86882 * 2, "miles"),
  12586. default: true
  12587. },
  12588. ]
  12589. ))
  12590. characterMakers.push(() => makeCharacter(
  12591. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12592. {
  12593. front: {
  12594. height: math.unit(6, "feet"),
  12595. weight: math.unit(150, "lb"),
  12596. name: "Front",
  12597. image: {
  12598. source: "./media/characters/drusilla/front.svg",
  12599. extra: 678 / 635,
  12600. bottom: 0.03
  12601. }
  12602. },
  12603. back: {
  12604. height: math.unit(6, "feet"),
  12605. weight: math.unit(150, "lb"),
  12606. name: "Back",
  12607. image: {
  12608. source: "./media/characters/drusilla/back.svg",
  12609. extra: 678 / 635,
  12610. bottom: 0.005
  12611. }
  12612. },
  12613. },
  12614. [
  12615. {
  12616. name: "Macro",
  12617. height: math.unit(100, "feet")
  12618. },
  12619. {
  12620. name: "Canon Height",
  12621. height: math.unit(2000, "feet"),
  12622. default: true
  12623. },
  12624. ]
  12625. ))
  12626. characterMakers.push(() => makeCharacter(
  12627. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12628. {
  12629. front: {
  12630. height: math.unit(6, "feet"),
  12631. weight: math.unit(180, "lb"),
  12632. name: "Front",
  12633. image: {
  12634. source: "./media/characters/renard-thatch/front.svg",
  12635. extra: 2411 / 2275,
  12636. bottom: 0.01
  12637. }
  12638. },
  12639. frontPosing: {
  12640. height: math.unit(6, "feet"),
  12641. weight: math.unit(180, "lb"),
  12642. name: "Front (Posing)",
  12643. image: {
  12644. source: "./media/characters/renard-thatch/front-posing.svg",
  12645. extra: 2381 / 2261,
  12646. bottom: 0.01
  12647. }
  12648. },
  12649. back: {
  12650. height: math.unit(6, "feet"),
  12651. weight: math.unit(180, "lb"),
  12652. name: "Back",
  12653. image: {
  12654. source: "./media/characters/renard-thatch/back.svg",
  12655. extra: 2428 / 2288
  12656. }
  12657. },
  12658. },
  12659. [
  12660. {
  12661. name: "Micro",
  12662. height: math.unit(3, "inches")
  12663. },
  12664. {
  12665. name: "Default",
  12666. height: math.unit(6, "feet"),
  12667. default: true
  12668. },
  12669. {
  12670. name: "Macro",
  12671. height: math.unit(75, "feet")
  12672. },
  12673. ]
  12674. ))
  12675. characterMakers.push(() => makeCharacter(
  12676. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12677. {
  12678. front: {
  12679. height: math.unit(1450, "feet"),
  12680. weight: math.unit(1.21e6, "tons"),
  12681. name: "Front",
  12682. image: {
  12683. source: "./media/characters/sekvra/front.svg",
  12684. extra: 1,
  12685. bottom: 0.03
  12686. }
  12687. },
  12688. frontClothed: {
  12689. height: math.unit(1450, "feet"),
  12690. weight: math.unit(1.21e6, "tons"),
  12691. name: "Front (Clothed)",
  12692. image: {
  12693. source: "./media/characters/sekvra/front-clothed.svg",
  12694. extra: 1,
  12695. bottom: 0.03
  12696. }
  12697. },
  12698. side: {
  12699. height: math.unit(1450, "feet"),
  12700. weight: math.unit(1.21e6, "tons"),
  12701. name: "Side",
  12702. image: {
  12703. source: "./media/characters/sekvra/side.svg",
  12704. extra: 1,
  12705. bottom: 0.025
  12706. }
  12707. },
  12708. back: {
  12709. height: math.unit(1450, "feet"),
  12710. weight: math.unit(1.21e6, "tons"),
  12711. name: "Back",
  12712. image: {
  12713. source: "./media/characters/sekvra/back.svg",
  12714. extra: 1,
  12715. bottom: 0.005
  12716. }
  12717. },
  12718. },
  12719. [
  12720. {
  12721. name: "Macro",
  12722. height: math.unit(1450, "feet"),
  12723. default: true
  12724. },
  12725. {
  12726. name: "Megamacro",
  12727. height: math.unit(15000, "feet")
  12728. },
  12729. ]
  12730. ))
  12731. characterMakers.push(() => makeCharacter(
  12732. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12733. {
  12734. front: {
  12735. height: math.unit(6, "feet"),
  12736. weight: math.unit(150, "lb"),
  12737. name: "Front",
  12738. image: {
  12739. source: "./media/characters/carmine/front.svg",
  12740. extra: 1,
  12741. bottom: 0.035
  12742. }
  12743. },
  12744. frontArmor: {
  12745. height: math.unit(6, "feet"),
  12746. weight: math.unit(150, "lb"),
  12747. name: "Front (Armor)",
  12748. image: {
  12749. source: "./media/characters/carmine/front-armor.svg",
  12750. extra: 1,
  12751. bottom: 0.035
  12752. }
  12753. },
  12754. },
  12755. [
  12756. {
  12757. name: "Large",
  12758. height: math.unit(1, "mile")
  12759. },
  12760. {
  12761. name: "Huge",
  12762. height: math.unit(40, "miles"),
  12763. default: true
  12764. },
  12765. {
  12766. name: "Colossal",
  12767. height: math.unit(2500, "miles")
  12768. },
  12769. ]
  12770. ))
  12771. characterMakers.push(() => makeCharacter(
  12772. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12773. {
  12774. front: {
  12775. height: math.unit(6, "feet"),
  12776. weight: math.unit(150, "lb"),
  12777. name: "Front",
  12778. image: {
  12779. source: "./media/characters/elyssia/front.svg",
  12780. extra: 2201 / 2035,
  12781. bottom: 0.05
  12782. }
  12783. },
  12784. frontClothed: {
  12785. height: math.unit(6, "feet"),
  12786. weight: math.unit(150, "lb"),
  12787. name: "Front (Clothed)",
  12788. image: {
  12789. source: "./media/characters/elyssia/front-clothed.svg",
  12790. extra: 2201 / 2035,
  12791. bottom: 0.05
  12792. }
  12793. },
  12794. back: {
  12795. height: math.unit(6, "feet"),
  12796. weight: math.unit(150, "lb"),
  12797. name: "Back",
  12798. image: {
  12799. source: "./media/characters/elyssia/back.svg",
  12800. extra: 2201 / 2035,
  12801. bottom: 0.013
  12802. }
  12803. },
  12804. },
  12805. [
  12806. {
  12807. name: "Smaller",
  12808. height: math.unit(150, "feet")
  12809. },
  12810. {
  12811. name: "Standard",
  12812. height: math.unit(1400, "feet"),
  12813. default: true
  12814. },
  12815. {
  12816. name: "Distracted",
  12817. height: math.unit(15000, "feet")
  12818. },
  12819. ]
  12820. ))
  12821. characterMakers.push(() => makeCharacter(
  12822. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12823. {
  12824. front: {
  12825. height: math.unit(7 + 4 / 12, "feet"),
  12826. weight: math.unit(500, "lb"),
  12827. name: "Front",
  12828. image: {
  12829. source: "./media/characters/geno-maxwell/front.svg",
  12830. extra: 2207 / 2040,
  12831. bottom: 0.015
  12832. }
  12833. },
  12834. },
  12835. [
  12836. {
  12837. name: "Micro",
  12838. height: math.unit(3, "inches")
  12839. },
  12840. {
  12841. name: "Normal",
  12842. height: math.unit(7 + 4 / 12, "feet"),
  12843. default: true
  12844. },
  12845. {
  12846. name: "Macro",
  12847. height: math.unit(220, "feet")
  12848. },
  12849. {
  12850. name: "Megamacro",
  12851. height: math.unit(11, "miles")
  12852. },
  12853. ]
  12854. ))
  12855. characterMakers.push(() => makeCharacter(
  12856. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12857. {
  12858. front: {
  12859. height: math.unit(7 + 4 / 12, "feet"),
  12860. weight: math.unit(500, "lb"),
  12861. name: "Front",
  12862. image: {
  12863. source: "./media/characters/regena-maxwell/front.svg",
  12864. extra: 3115 / 2770,
  12865. bottom: 0.02
  12866. }
  12867. },
  12868. },
  12869. [
  12870. {
  12871. name: "Normal",
  12872. height: math.unit(7 + 4 / 12, "feet"),
  12873. default: true
  12874. },
  12875. {
  12876. name: "Macro",
  12877. height: math.unit(220, "feet")
  12878. },
  12879. {
  12880. name: "Megamacro",
  12881. height: math.unit(11, "miles")
  12882. },
  12883. ]
  12884. ))
  12885. characterMakers.push(() => makeCharacter(
  12886. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12887. {
  12888. front: {
  12889. height: math.unit(6, "feet"),
  12890. weight: math.unit(150, "lb"),
  12891. name: "Front",
  12892. image: {
  12893. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12894. extra: 860 / 690,
  12895. bottom: 0.03
  12896. }
  12897. },
  12898. },
  12899. [
  12900. {
  12901. name: "Normal",
  12902. height: math.unit(1.7, "meters"),
  12903. default: true
  12904. },
  12905. ]
  12906. ))
  12907. characterMakers.push(() => makeCharacter(
  12908. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12909. {
  12910. front: {
  12911. height: math.unit(6, "feet"),
  12912. weight: math.unit(150, "lb"),
  12913. name: "Front",
  12914. image: {
  12915. source: "./media/characters/quilly/front.svg",
  12916. extra: 890 / 776
  12917. }
  12918. },
  12919. },
  12920. [
  12921. {
  12922. name: "Gigamacro",
  12923. height: math.unit(404090, "miles"),
  12924. default: true
  12925. },
  12926. ]
  12927. ))
  12928. characterMakers.push(() => makeCharacter(
  12929. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12930. {
  12931. front: {
  12932. height: math.unit(7 + 8 / 12, "feet"),
  12933. weight: math.unit(350, "lb"),
  12934. name: "Front",
  12935. image: {
  12936. source: "./media/characters/tempest/front.svg",
  12937. extra: 1175 / 1086,
  12938. bottom: 0.02
  12939. }
  12940. },
  12941. },
  12942. [
  12943. {
  12944. name: "Normal",
  12945. height: math.unit(7 + 8 / 12, "feet"),
  12946. default: true
  12947. },
  12948. ]
  12949. ))
  12950. characterMakers.push(() => makeCharacter(
  12951. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12952. {
  12953. side: {
  12954. height: math.unit(4 + 5 / 12, "feet"),
  12955. weight: math.unit(80, "lb"),
  12956. name: "Side",
  12957. image: {
  12958. source: "./media/characters/rodger/side.svg",
  12959. extra: 1235 / 1118
  12960. }
  12961. },
  12962. },
  12963. [
  12964. {
  12965. name: "Micro",
  12966. height: math.unit(1, "inch")
  12967. },
  12968. {
  12969. name: "Normal",
  12970. height: math.unit(4 + 5 / 12, "feet"),
  12971. default: true
  12972. },
  12973. {
  12974. name: "Macro",
  12975. height: math.unit(120, "feet")
  12976. },
  12977. ]
  12978. ))
  12979. characterMakers.push(() => makeCharacter(
  12980. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12981. {
  12982. front: {
  12983. height: math.unit(6, "feet"),
  12984. weight: math.unit(150, "lb"),
  12985. name: "Front",
  12986. image: {
  12987. source: "./media/characters/danyel/front.svg",
  12988. extra: 1185 / 1123,
  12989. bottom: 0.05
  12990. }
  12991. },
  12992. },
  12993. [
  12994. {
  12995. name: "Shrunken",
  12996. height: math.unit(0.5, "mm")
  12997. },
  12998. {
  12999. name: "Micro",
  13000. height: math.unit(1, "mm"),
  13001. default: true
  13002. },
  13003. {
  13004. name: "Upsized",
  13005. height: math.unit(5 + 5 / 12, "feet")
  13006. },
  13007. ]
  13008. ))
  13009. characterMakers.push(() => makeCharacter(
  13010. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13011. {
  13012. front: {
  13013. height: math.unit(5 + 6 / 12, "feet"),
  13014. weight: math.unit(200, "lb"),
  13015. name: "Front",
  13016. image: {
  13017. source: "./media/characters/vivian-bijoux/front.svg",
  13018. extra: 1,
  13019. bottom: 0.072
  13020. }
  13021. },
  13022. },
  13023. [
  13024. {
  13025. name: "Normal",
  13026. height: math.unit(5 + 6 / 12, "feet"),
  13027. default: true
  13028. },
  13029. {
  13030. name: "Bad Dream",
  13031. height: math.unit(500, "feet")
  13032. },
  13033. {
  13034. name: "Nightmare",
  13035. height: math.unit(500, "miles")
  13036. },
  13037. ]
  13038. ))
  13039. characterMakers.push(() => makeCharacter(
  13040. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13041. {
  13042. front: {
  13043. height: math.unit(6 + 1 / 12, "feet"),
  13044. weight: math.unit(260, "lb"),
  13045. name: "Front",
  13046. image: {
  13047. source: "./media/characters/zeta/front.svg",
  13048. extra: 1968 / 1889,
  13049. bottom: 0.06
  13050. }
  13051. },
  13052. back: {
  13053. height: math.unit(6 + 1 / 12, "feet"),
  13054. weight: math.unit(260, "lb"),
  13055. name: "Back",
  13056. image: {
  13057. source: "./media/characters/zeta/back.svg",
  13058. extra: 1944 / 1858,
  13059. bottom: 0.03
  13060. }
  13061. },
  13062. hand: {
  13063. height: math.unit(1.112, "feet"),
  13064. name: "Hand",
  13065. image: {
  13066. source: "./media/characters/zeta/hand.svg"
  13067. }
  13068. },
  13069. foot: {
  13070. height: math.unit(1.48, "feet"),
  13071. name: "Foot",
  13072. image: {
  13073. source: "./media/characters/zeta/foot.svg"
  13074. }
  13075. },
  13076. },
  13077. [
  13078. {
  13079. name: "Micro",
  13080. height: math.unit(6, "inches")
  13081. },
  13082. {
  13083. name: "Normal",
  13084. height: math.unit(6 + 1 / 12, "feet"),
  13085. default: true
  13086. },
  13087. {
  13088. name: "Macro",
  13089. height: math.unit(20, "feet")
  13090. },
  13091. ]
  13092. ))
  13093. characterMakers.push(() => makeCharacter(
  13094. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13095. {
  13096. front: {
  13097. height: math.unit(6, "feet"),
  13098. weight: math.unit(150, "lb"),
  13099. name: "Front",
  13100. image: {
  13101. source: "./media/characters/jamie-larsen/front.svg",
  13102. extra: 962 / 933,
  13103. bottom: 0.02
  13104. }
  13105. },
  13106. back: {
  13107. height: math.unit(6, "feet"),
  13108. weight: math.unit(150, "lb"),
  13109. name: "Back",
  13110. image: {
  13111. source: "./media/characters/jamie-larsen/back.svg",
  13112. extra: 997 / 946
  13113. }
  13114. },
  13115. },
  13116. [
  13117. {
  13118. name: "Macro",
  13119. height: math.unit(28 + 7 / 12, "feet"),
  13120. default: true
  13121. },
  13122. {
  13123. name: "Macro+",
  13124. height: math.unit(180, "feet")
  13125. },
  13126. {
  13127. name: "Megamacro",
  13128. height: math.unit(10, "miles")
  13129. },
  13130. {
  13131. name: "Gigamacro",
  13132. height: math.unit(200000, "miles")
  13133. },
  13134. ]
  13135. ))
  13136. characterMakers.push(() => makeCharacter(
  13137. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13138. {
  13139. front: {
  13140. height: math.unit(6, "feet"),
  13141. weight: math.unit(120, "lb"),
  13142. name: "Front",
  13143. image: {
  13144. source: "./media/characters/vance/front.svg",
  13145. extra: 1980 / 1890,
  13146. bottom: 0.09
  13147. }
  13148. },
  13149. back: {
  13150. height: math.unit(6, "feet"),
  13151. weight: math.unit(120, "lb"),
  13152. name: "Back",
  13153. image: {
  13154. source: "./media/characters/vance/back.svg",
  13155. extra: 2081 / 1994,
  13156. bottom: 0.014
  13157. }
  13158. },
  13159. hand: {
  13160. height: math.unit(0.88, "feet"),
  13161. name: "Hand",
  13162. image: {
  13163. source: "./media/characters/vance/hand.svg"
  13164. }
  13165. },
  13166. foot: {
  13167. height: math.unit(0.64, "feet"),
  13168. name: "Foot",
  13169. image: {
  13170. source: "./media/characters/vance/foot.svg"
  13171. }
  13172. },
  13173. },
  13174. [
  13175. {
  13176. name: "Small",
  13177. height: math.unit(90, "feet"),
  13178. default: true
  13179. },
  13180. {
  13181. name: "Macro",
  13182. height: math.unit(100, "meters")
  13183. },
  13184. {
  13185. name: "Megamacro",
  13186. height: math.unit(15, "miles")
  13187. },
  13188. ]
  13189. ))
  13190. characterMakers.push(() => makeCharacter(
  13191. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13192. {
  13193. front: {
  13194. height: math.unit(6, "feet"),
  13195. weight: math.unit(180, "lb"),
  13196. name: "Front",
  13197. image: {
  13198. source: "./media/characters/xochitl/front.svg",
  13199. extra: 2297 / 2261,
  13200. bottom: 0.065
  13201. }
  13202. },
  13203. back: {
  13204. height: math.unit(6, "feet"),
  13205. weight: math.unit(180, "lb"),
  13206. name: "Back",
  13207. image: {
  13208. source: "./media/characters/xochitl/back.svg",
  13209. extra: 2386 / 2354,
  13210. bottom: 0.01
  13211. }
  13212. },
  13213. foot: {
  13214. height: math.unit(6 / 5 * 1.15, "feet"),
  13215. weight: math.unit(150, "lb"),
  13216. name: "Foot",
  13217. image: {
  13218. source: "./media/characters/xochitl/foot.svg"
  13219. }
  13220. },
  13221. },
  13222. [
  13223. {
  13224. name: "Macro",
  13225. height: math.unit(80, "feet")
  13226. },
  13227. {
  13228. name: "Macro+",
  13229. height: math.unit(400, "feet"),
  13230. default: true
  13231. },
  13232. {
  13233. name: "Gigamacro",
  13234. height: math.unit(80000, "miles")
  13235. },
  13236. {
  13237. name: "Gigamacro+",
  13238. height: math.unit(400000, "miles")
  13239. },
  13240. {
  13241. name: "Teramacro",
  13242. height: math.unit(300, "AU")
  13243. },
  13244. ]
  13245. ))
  13246. characterMakers.push(() => makeCharacter(
  13247. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13248. {
  13249. front: {
  13250. height: math.unit(6, "feet"),
  13251. weight: math.unit(150, "lb"),
  13252. name: "Front",
  13253. image: {
  13254. source: "./media/characters/vincent/front.svg",
  13255. extra: 1130 / 1080,
  13256. bottom: 0.055
  13257. }
  13258. },
  13259. beak: {
  13260. height: math.unit(6 * 0.1, "feet"),
  13261. name: "Beak",
  13262. image: {
  13263. source: "./media/characters/vincent/beak.svg"
  13264. }
  13265. },
  13266. hand: {
  13267. height: math.unit(6 * 0.85, "feet"),
  13268. weight: math.unit(150, "lb"),
  13269. name: "Hand",
  13270. image: {
  13271. source: "./media/characters/vincent/hand.svg"
  13272. }
  13273. },
  13274. foot: {
  13275. height: math.unit(6 * 0.19, "feet"),
  13276. weight: math.unit(150, "lb"),
  13277. name: "Foot",
  13278. image: {
  13279. source: "./media/characters/vincent/foot.svg"
  13280. }
  13281. },
  13282. },
  13283. [
  13284. {
  13285. name: "Base",
  13286. height: math.unit(6 + 5 / 12, "feet"),
  13287. default: true
  13288. },
  13289. {
  13290. name: "Macro",
  13291. height: math.unit(300, "feet")
  13292. },
  13293. {
  13294. name: "Megamacro",
  13295. height: math.unit(2, "miles")
  13296. },
  13297. {
  13298. name: "Gigamacro",
  13299. height: math.unit(1000, "miles")
  13300. },
  13301. ]
  13302. ))
  13303. characterMakers.push(() => makeCharacter(
  13304. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13305. {
  13306. front: {
  13307. height: math.unit(6 + 2 / 12, "feet"),
  13308. weight: math.unit(265, "lb"),
  13309. name: "Front",
  13310. image: {
  13311. source: "./media/characters/jay/front.svg",
  13312. extra: 1510 / 1430,
  13313. bottom: 0.042
  13314. }
  13315. },
  13316. back: {
  13317. height: math.unit(6 + 2 / 12, "feet"),
  13318. weight: math.unit(265, "lb"),
  13319. name: "Back",
  13320. image: {
  13321. source: "./media/characters/jay/back.svg",
  13322. extra: 1510 / 1430,
  13323. bottom: 0.025
  13324. }
  13325. },
  13326. clothed: {
  13327. height: math.unit(6 + 2 / 12, "feet"),
  13328. weight: math.unit(265, "lb"),
  13329. name: "Front (Clothed)",
  13330. image: {
  13331. source: "./media/characters/jay/clothed.svg",
  13332. extra: 744 / 699,
  13333. bottom: 0.043
  13334. }
  13335. },
  13336. head: {
  13337. height: math.unit(1.772, "feet"),
  13338. name: "Head",
  13339. image: {
  13340. source: "./media/characters/jay/head.svg"
  13341. }
  13342. },
  13343. sizeRay: {
  13344. height: math.unit(1.331, "feet"),
  13345. name: "Size Ray",
  13346. image: {
  13347. source: "./media/characters/jay/size-ray.svg"
  13348. }
  13349. },
  13350. },
  13351. [
  13352. {
  13353. name: "Micro",
  13354. height: math.unit(1, "inch")
  13355. },
  13356. {
  13357. name: "Normal",
  13358. height: math.unit(6 + 2 / 12, "feet"),
  13359. default: true
  13360. },
  13361. {
  13362. name: "Macro",
  13363. height: math.unit(1, "mile")
  13364. },
  13365. {
  13366. name: "Megamacro",
  13367. height: math.unit(100, "miles")
  13368. },
  13369. ]
  13370. ))
  13371. characterMakers.push(() => makeCharacter(
  13372. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13373. {
  13374. front: {
  13375. height: math.unit(2, "meters"),
  13376. weight: math.unit(500, "kg"),
  13377. name: "Front",
  13378. image: {
  13379. source: "./media/characters/coatl/front.svg",
  13380. extra: 3948 / 3500,
  13381. bottom: 0.082
  13382. }
  13383. },
  13384. },
  13385. [
  13386. {
  13387. name: "Normal",
  13388. height: math.unit(4, "meters")
  13389. },
  13390. {
  13391. name: "Macro",
  13392. height: math.unit(100, "meters"),
  13393. default: true
  13394. },
  13395. {
  13396. name: "Macro+",
  13397. height: math.unit(300, "meters")
  13398. },
  13399. {
  13400. name: "Megamacro",
  13401. height: math.unit(3, "gigameters")
  13402. },
  13403. {
  13404. name: "Megamacro+",
  13405. height: math.unit(300, "terameters")
  13406. },
  13407. {
  13408. name: "Megamacro++",
  13409. height: math.unit(3, "lightyears")
  13410. },
  13411. ]
  13412. ))
  13413. characterMakers.push(() => makeCharacter(
  13414. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13415. {
  13416. front: {
  13417. height: math.unit(6, "feet"),
  13418. weight: math.unit(50, "kg"),
  13419. name: "front",
  13420. image: {
  13421. source: "./media/characters/shiroryu/front.svg",
  13422. extra: 1990 / 1935
  13423. }
  13424. },
  13425. },
  13426. [
  13427. {
  13428. name: "Mortal Mingling",
  13429. height: math.unit(3, "meters")
  13430. },
  13431. {
  13432. name: "Kaiju-ish",
  13433. height: math.unit(250, "meters")
  13434. },
  13435. {
  13436. name: "Somewhat Godly",
  13437. height: math.unit(400, "km"),
  13438. default: true
  13439. },
  13440. {
  13441. name: "Planetary",
  13442. height: math.unit(300, "megameters")
  13443. },
  13444. {
  13445. name: "Galaxy-dwarfing",
  13446. height: math.unit(450, "kiloparsecs")
  13447. },
  13448. {
  13449. name: "Universe Eater",
  13450. height: math.unit(150, "gigaparsecs")
  13451. },
  13452. {
  13453. name: "Almost Immeasurable",
  13454. height: math.unit(1.3e266, "yottaparsecs")
  13455. },
  13456. ]
  13457. ))
  13458. characterMakers.push(() => makeCharacter(
  13459. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13460. {
  13461. front: {
  13462. height: math.unit(6, "feet"),
  13463. weight: math.unit(150, "lb"),
  13464. name: "Front",
  13465. image: {
  13466. source: "./media/characters/umeko/front.svg",
  13467. extra: 1,
  13468. bottom: 0.019
  13469. }
  13470. },
  13471. frontArmored: {
  13472. height: math.unit(6, "feet"),
  13473. weight: math.unit(150, "lb"),
  13474. name: "Front (Armored)",
  13475. image: {
  13476. source: "./media/characters/umeko/front-armored.svg",
  13477. extra: 1,
  13478. bottom: 0.021
  13479. }
  13480. },
  13481. },
  13482. [
  13483. {
  13484. name: "Macro",
  13485. height: math.unit(220, "feet"),
  13486. default: true
  13487. },
  13488. {
  13489. name: "Guardian Dragon",
  13490. height: math.unit(50, "miles")
  13491. },
  13492. {
  13493. name: "Cosmic",
  13494. height: math.unit(800000, "miles")
  13495. },
  13496. ]
  13497. ))
  13498. characterMakers.push(() => makeCharacter(
  13499. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13500. {
  13501. front: {
  13502. height: math.unit(6, "feet"),
  13503. weight: math.unit(150, "lb"),
  13504. name: "Front",
  13505. image: {
  13506. source: "./media/characters/cassidy/front.svg",
  13507. extra: 1,
  13508. bottom: 0.043
  13509. }
  13510. },
  13511. },
  13512. [
  13513. {
  13514. name: "Canon Height",
  13515. height: math.unit(120, "feet"),
  13516. default: true
  13517. },
  13518. {
  13519. name: "Macro+",
  13520. height: math.unit(400, "feet")
  13521. },
  13522. {
  13523. name: "Macro++",
  13524. height: math.unit(4000, "feet")
  13525. },
  13526. {
  13527. name: "Megamacro",
  13528. height: math.unit(3, "miles")
  13529. },
  13530. ]
  13531. ))
  13532. characterMakers.push(() => makeCharacter(
  13533. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13534. {
  13535. front: {
  13536. height: math.unit(6, "feet"),
  13537. weight: math.unit(150, "lb"),
  13538. name: "Front",
  13539. image: {
  13540. source: "./media/characters/isaac/front.svg",
  13541. extra: 896 / 815,
  13542. bottom: 0.11
  13543. }
  13544. },
  13545. },
  13546. [
  13547. {
  13548. name: "Human Size",
  13549. height: math.unit(8, "feet"),
  13550. default: true
  13551. },
  13552. {
  13553. name: "Macro",
  13554. height: math.unit(400, "feet")
  13555. },
  13556. {
  13557. name: "Megamacro",
  13558. height: math.unit(50, "miles")
  13559. },
  13560. {
  13561. name: "Canon Height",
  13562. height: math.unit(200, "AU")
  13563. },
  13564. ]
  13565. ))
  13566. characterMakers.push(() => makeCharacter(
  13567. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13568. {
  13569. front: {
  13570. height: math.unit(6, "feet"),
  13571. weight: math.unit(72, "kg"),
  13572. name: "Front",
  13573. image: {
  13574. source: "./media/characters/sleekit/front.svg",
  13575. extra: 4693 / 4487,
  13576. bottom: 0.012
  13577. }
  13578. },
  13579. },
  13580. [
  13581. {
  13582. name: "Minimum Height",
  13583. height: math.unit(10, "meters")
  13584. },
  13585. {
  13586. name: "Smaller",
  13587. height: math.unit(25, "meters")
  13588. },
  13589. {
  13590. name: "Larger",
  13591. height: math.unit(38, "meters"),
  13592. default: true
  13593. },
  13594. {
  13595. name: "Maximum height",
  13596. height: math.unit(100, "meters")
  13597. },
  13598. ]
  13599. ))
  13600. characterMakers.push(() => makeCharacter(
  13601. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13602. {
  13603. front: {
  13604. height: math.unit(6, "feet"),
  13605. weight: math.unit(150, "lb"),
  13606. name: "Front",
  13607. image: {
  13608. source: "./media/characters/nillia/front.svg",
  13609. extra: 2195 / 2037,
  13610. bottom: 0.005
  13611. }
  13612. },
  13613. back: {
  13614. height: math.unit(6, "feet"),
  13615. weight: math.unit(150, "lb"),
  13616. name: "Back",
  13617. image: {
  13618. source: "./media/characters/nillia/back.svg",
  13619. extra: 2195 / 2037,
  13620. bottom: 0.005
  13621. }
  13622. },
  13623. },
  13624. [
  13625. {
  13626. name: "Canon Height",
  13627. height: math.unit(489, "feet"),
  13628. default: true
  13629. }
  13630. ]
  13631. ))
  13632. characterMakers.push(() => makeCharacter(
  13633. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13634. {
  13635. front: {
  13636. height: math.unit(6, "feet"),
  13637. weight: math.unit(150, "lb"),
  13638. name: "Front",
  13639. image: {
  13640. source: "./media/characters/mesmyriza/front.svg",
  13641. extra: 2067 / 1784,
  13642. bottom: 0.035
  13643. }
  13644. },
  13645. foot: {
  13646. height: math.unit(6 / (250 / 35), "feet"),
  13647. name: "Foot",
  13648. image: {
  13649. source: "./media/characters/mesmyriza/foot.svg"
  13650. }
  13651. },
  13652. },
  13653. [
  13654. {
  13655. name: "Macro",
  13656. height: math.unit(457, "meters"),
  13657. default: true
  13658. },
  13659. {
  13660. name: "Megamacro",
  13661. height: math.unit(8, "megameters")
  13662. },
  13663. ]
  13664. ))
  13665. characterMakers.push(() => makeCharacter(
  13666. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13667. {
  13668. front: {
  13669. height: math.unit(6, "feet"),
  13670. weight: math.unit(250, "lb"),
  13671. name: "Front",
  13672. image: {
  13673. source: "./media/characters/saudade/front.svg",
  13674. extra: 1172 / 1139,
  13675. bottom: 0.035
  13676. }
  13677. },
  13678. },
  13679. [
  13680. {
  13681. name: "Micro",
  13682. height: math.unit(3, "inches")
  13683. },
  13684. {
  13685. name: "Normal",
  13686. height: math.unit(6, "feet"),
  13687. default: true
  13688. },
  13689. {
  13690. name: "Macro",
  13691. height: math.unit(50, "feet")
  13692. },
  13693. {
  13694. name: "Megamacro",
  13695. height: math.unit(2800, "feet")
  13696. },
  13697. ]
  13698. ))
  13699. characterMakers.push(() => makeCharacter(
  13700. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13701. {
  13702. front: {
  13703. height: math.unit(5 + 4 / 12, "feet"),
  13704. weight: math.unit(100, "lb"),
  13705. name: "Front",
  13706. image: {
  13707. source: "./media/characters/keireer/front.svg",
  13708. extra: 716 / 666,
  13709. bottom: 0.05
  13710. }
  13711. },
  13712. },
  13713. [
  13714. {
  13715. name: "Normal",
  13716. height: math.unit(5 + 4 / 12, "feet"),
  13717. default: true
  13718. },
  13719. ]
  13720. ))
  13721. characterMakers.push(() => makeCharacter(
  13722. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13723. {
  13724. front: {
  13725. height: math.unit(6, "feet"),
  13726. weight: math.unit(90, "kg"),
  13727. name: "Front",
  13728. image: {
  13729. source: "./media/characters/mirja/front.svg",
  13730. extra: 1789 / 1683,
  13731. bottom: 0.05
  13732. }
  13733. },
  13734. frontDressed: {
  13735. height: math.unit(6, "feet"),
  13736. weight: math.unit(90, "lb"),
  13737. name: "Front (Dressed)",
  13738. image: {
  13739. source: "./media/characters/mirja/front-dressed.svg",
  13740. extra: 1789 / 1683,
  13741. bottom: 0.05
  13742. }
  13743. },
  13744. back: {
  13745. height: math.unit(6, "feet"),
  13746. weight: math.unit(90, "lb"),
  13747. name: "Back",
  13748. image: {
  13749. source: "./media/characters/mirja/back.svg",
  13750. extra: 953 / 917,
  13751. bottom: 0.017
  13752. }
  13753. },
  13754. },
  13755. [
  13756. {
  13757. name: "\"Incognito\"",
  13758. height: math.unit(3, "meters")
  13759. },
  13760. {
  13761. name: "Strolling Size",
  13762. height: math.unit(15, "km")
  13763. },
  13764. {
  13765. name: "Larger Strolling Size",
  13766. height: math.unit(400, "km")
  13767. },
  13768. {
  13769. name: "Preferred Size",
  13770. height: math.unit(5000, "km")
  13771. },
  13772. {
  13773. name: "True Size",
  13774. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13775. default: true
  13776. },
  13777. ]
  13778. ))
  13779. characterMakers.push(() => makeCharacter(
  13780. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13781. {
  13782. front: {
  13783. height: math.unit(15, "feet"),
  13784. weight: math.unit(880, "kg"),
  13785. name: "Front",
  13786. image: {
  13787. source: "./media/characters/nightraver/front.svg",
  13788. extra: 2444 / 2160,
  13789. bottom: 0.027
  13790. }
  13791. },
  13792. back: {
  13793. height: math.unit(15, "feet"),
  13794. weight: math.unit(880, "kg"),
  13795. name: "Back",
  13796. image: {
  13797. source: "./media/characters/nightraver/back.svg",
  13798. extra: 2309 / 2180,
  13799. bottom: 0.005
  13800. }
  13801. },
  13802. sole: {
  13803. height: math.unit(2.878, "feet"),
  13804. name: "Sole",
  13805. image: {
  13806. source: "./media/characters/nightraver/sole.svg"
  13807. }
  13808. },
  13809. foot: {
  13810. height: math.unit(2.285, "feet"),
  13811. name: "Foot",
  13812. image: {
  13813. source: "./media/characters/nightraver/foot.svg"
  13814. }
  13815. },
  13816. maw: {
  13817. height: math.unit(2.67, "feet"),
  13818. name: "Maw",
  13819. image: {
  13820. source: "./media/characters/nightraver/maw.svg"
  13821. }
  13822. },
  13823. },
  13824. [
  13825. {
  13826. name: "Micro",
  13827. height: math.unit(1, "cm")
  13828. },
  13829. {
  13830. name: "Normal",
  13831. height: math.unit(15, "feet"),
  13832. default: true
  13833. },
  13834. {
  13835. name: "Macro",
  13836. height: math.unit(300, "feet")
  13837. },
  13838. {
  13839. name: "Megamacro",
  13840. height: math.unit(300, "miles")
  13841. },
  13842. {
  13843. name: "Gigamacro",
  13844. height: math.unit(10000, "miles")
  13845. },
  13846. ]
  13847. ))
  13848. characterMakers.push(() => makeCharacter(
  13849. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13850. {
  13851. side: {
  13852. height: math.unit(2, "inches"),
  13853. weight: math.unit(5, "grams"),
  13854. name: "Side",
  13855. image: {
  13856. source: "./media/characters/arc/side.svg"
  13857. }
  13858. },
  13859. },
  13860. [
  13861. {
  13862. name: "Micro",
  13863. height: math.unit(2, "inches"),
  13864. default: true
  13865. },
  13866. ]
  13867. ))
  13868. characterMakers.push(() => makeCharacter(
  13869. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13870. {
  13871. front: {
  13872. height: math.unit(1.1938, "meters"),
  13873. weight: math.unit(54, "kg"),
  13874. name: "Front",
  13875. image: {
  13876. source: "./media/characters/nebula-shahar/front.svg",
  13877. extra: 1642 / 1436,
  13878. bottom: 0.06
  13879. }
  13880. },
  13881. },
  13882. [
  13883. {
  13884. name: "Megamicro",
  13885. height: math.unit(0.3, "mm")
  13886. },
  13887. {
  13888. name: "Micro",
  13889. height: math.unit(3, "cm")
  13890. },
  13891. {
  13892. name: "Normal",
  13893. height: math.unit(138, "cm"),
  13894. default: true
  13895. },
  13896. {
  13897. name: "Macro",
  13898. height: math.unit(30, "m")
  13899. },
  13900. ]
  13901. ))
  13902. characterMakers.push(() => makeCharacter(
  13903. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13904. {
  13905. front: {
  13906. height: math.unit(5.24, "feet"),
  13907. weight: math.unit(150, "lb"),
  13908. name: "Front",
  13909. image: {
  13910. source: "./media/characters/shayla/front.svg",
  13911. extra: 1512 / 1414,
  13912. bottom: 0.01
  13913. }
  13914. },
  13915. back: {
  13916. height: math.unit(5.24, "feet"),
  13917. weight: math.unit(150, "lb"),
  13918. name: "Back",
  13919. image: {
  13920. source: "./media/characters/shayla/back.svg",
  13921. extra: 1512 / 1414
  13922. }
  13923. },
  13924. hand: {
  13925. height: math.unit(0.7781496062992126, "feet"),
  13926. name: "Hand",
  13927. image: {
  13928. source: "./media/characters/shayla/hand.svg"
  13929. }
  13930. },
  13931. foot: {
  13932. height: math.unit(1.4206036745406823, "feet"),
  13933. name: "Foot",
  13934. image: {
  13935. source: "./media/characters/shayla/foot.svg"
  13936. }
  13937. },
  13938. },
  13939. [
  13940. {
  13941. name: "Micro",
  13942. height: math.unit(0.32, "feet")
  13943. },
  13944. {
  13945. name: "Normal",
  13946. height: math.unit(5.24, "feet"),
  13947. default: true
  13948. },
  13949. {
  13950. name: "Macro",
  13951. height: math.unit(492.12, "feet")
  13952. },
  13953. {
  13954. name: "Megamacro",
  13955. height: math.unit(186.41, "miles")
  13956. },
  13957. ]
  13958. ))
  13959. characterMakers.push(() => makeCharacter(
  13960. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13961. {
  13962. front: {
  13963. height: math.unit(2.2, "m"),
  13964. weight: math.unit(120, "kg"),
  13965. name: "Front",
  13966. image: {
  13967. source: "./media/characters/pia-jr/front.svg",
  13968. extra: 1000 / 970,
  13969. bottom: 0.035
  13970. }
  13971. },
  13972. hand: {
  13973. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13974. name: "Hand",
  13975. image: {
  13976. source: "./media/characters/pia-jr/hand.svg"
  13977. }
  13978. },
  13979. paw: {
  13980. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13981. name: "Paw",
  13982. image: {
  13983. source: "./media/characters/pia-jr/paw.svg"
  13984. }
  13985. },
  13986. },
  13987. [
  13988. {
  13989. name: "Micro",
  13990. height: math.unit(1.2, "cm")
  13991. },
  13992. {
  13993. name: "Normal",
  13994. height: math.unit(2.2, "m"),
  13995. default: true
  13996. },
  13997. {
  13998. name: "Macro",
  13999. height: math.unit(180, "m")
  14000. },
  14001. {
  14002. name: "Megamacro",
  14003. height: math.unit(420, "km")
  14004. },
  14005. ]
  14006. ))
  14007. characterMakers.push(() => makeCharacter(
  14008. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14009. {
  14010. front: {
  14011. height: math.unit(2, "m"),
  14012. weight: math.unit(115, "kg"),
  14013. name: "Front",
  14014. image: {
  14015. source: "./media/characters/pia-sr/front.svg",
  14016. extra: 760 / 730,
  14017. bottom: 0.015
  14018. }
  14019. },
  14020. back: {
  14021. height: math.unit(2, "m"),
  14022. weight: math.unit(115, "kg"),
  14023. name: "Back",
  14024. image: {
  14025. source: "./media/characters/pia-sr/back.svg",
  14026. extra: 760 / 730,
  14027. bottom: 0.01
  14028. }
  14029. },
  14030. hand: {
  14031. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14032. name: "Hand",
  14033. image: {
  14034. source: "./media/characters/pia-sr/hand.svg"
  14035. }
  14036. },
  14037. foot: {
  14038. height: math.unit(1.83, "feet"),
  14039. name: "Foot",
  14040. image: {
  14041. source: "./media/characters/pia-sr/foot.svg"
  14042. }
  14043. },
  14044. },
  14045. [
  14046. {
  14047. name: "Micro",
  14048. height: math.unit(88, "mm")
  14049. },
  14050. {
  14051. name: "Normal",
  14052. height: math.unit(2, "m"),
  14053. default: true
  14054. },
  14055. {
  14056. name: "Macro",
  14057. height: math.unit(200, "m")
  14058. },
  14059. {
  14060. name: "Megamacro",
  14061. height: math.unit(420, "km")
  14062. },
  14063. ]
  14064. ))
  14065. characterMakers.push(() => makeCharacter(
  14066. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14067. {
  14068. front: {
  14069. height: math.unit(8 + 2 / 12, "feet"),
  14070. weight: math.unit(300, "lb"),
  14071. name: "Front",
  14072. image: {
  14073. source: "./media/characters/kibibyte/front.svg",
  14074. extra: 2221 / 2098,
  14075. bottom: 0.04
  14076. }
  14077. },
  14078. },
  14079. [
  14080. {
  14081. name: "Normal",
  14082. height: math.unit(8 + 2 / 12, "feet"),
  14083. default: true
  14084. },
  14085. {
  14086. name: "Socialable Macro",
  14087. height: math.unit(50, "feet")
  14088. },
  14089. {
  14090. name: "Macro",
  14091. height: math.unit(300, "feet")
  14092. },
  14093. {
  14094. name: "Megamacro",
  14095. height: math.unit(500, "miles")
  14096. },
  14097. ]
  14098. ))
  14099. characterMakers.push(() => makeCharacter(
  14100. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14101. {
  14102. front: {
  14103. height: math.unit(6, "feet"),
  14104. weight: math.unit(150, "lb"),
  14105. name: "Front",
  14106. image: {
  14107. source: "./media/characters/felix/front.svg",
  14108. extra: 762 / 722,
  14109. bottom: 0.02
  14110. }
  14111. },
  14112. frontClothed: {
  14113. height: math.unit(6, "feet"),
  14114. weight: math.unit(150, "lb"),
  14115. name: "Front (Clothed)",
  14116. image: {
  14117. source: "./media/characters/felix/front-clothed.svg",
  14118. extra: 762 / 722,
  14119. bottom: 0.02
  14120. }
  14121. },
  14122. },
  14123. [
  14124. {
  14125. name: "Normal",
  14126. height: math.unit(6 + 8 / 12, "feet"),
  14127. default: true
  14128. },
  14129. {
  14130. name: "Macro",
  14131. height: math.unit(2600, "feet")
  14132. },
  14133. {
  14134. name: "Megamacro",
  14135. height: math.unit(450, "miles")
  14136. },
  14137. ]
  14138. ))
  14139. characterMakers.push(() => makeCharacter(
  14140. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14141. {
  14142. front: {
  14143. height: math.unit(6 + 1 / 12, "feet"),
  14144. weight: math.unit(250, "lb"),
  14145. name: "Front",
  14146. image: {
  14147. source: "./media/characters/tobo/front.svg",
  14148. extra: 608 / 586,
  14149. bottom: 0.023
  14150. }
  14151. },
  14152. back: {
  14153. height: math.unit(6 + 1 / 12, "feet"),
  14154. weight: math.unit(250, "lb"),
  14155. name: "Back",
  14156. image: {
  14157. source: "./media/characters/tobo/back.svg",
  14158. extra: 608 / 586
  14159. }
  14160. },
  14161. },
  14162. [
  14163. {
  14164. name: "Nano",
  14165. height: math.unit(2, "nm")
  14166. },
  14167. {
  14168. name: "Megamicro",
  14169. height: math.unit(0.1, "mm")
  14170. },
  14171. {
  14172. name: "Micro",
  14173. height: math.unit(1, "inch"),
  14174. default: true
  14175. },
  14176. {
  14177. name: "Human-sized",
  14178. height: math.unit(6 + 1 / 12, "feet")
  14179. },
  14180. {
  14181. name: "Macro",
  14182. height: math.unit(250, "feet")
  14183. },
  14184. {
  14185. name: "Megamacro",
  14186. height: math.unit(75, "miles")
  14187. },
  14188. {
  14189. name: "Texas-sized",
  14190. height: math.unit(750, "miles")
  14191. },
  14192. {
  14193. name: "Teramacro",
  14194. height: math.unit(50000, "miles")
  14195. },
  14196. ]
  14197. ))
  14198. characterMakers.push(() => makeCharacter(
  14199. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14200. {
  14201. front: {
  14202. height: math.unit(6, "feet"),
  14203. weight: math.unit(269, "lb"),
  14204. name: "Front",
  14205. image: {
  14206. source: "./media/characters/danny-kapowsky/front.svg",
  14207. extra: 766 / 736,
  14208. bottom: 0.044
  14209. }
  14210. },
  14211. back: {
  14212. height: math.unit(6, "feet"),
  14213. weight: math.unit(269, "lb"),
  14214. name: "Back",
  14215. image: {
  14216. source: "./media/characters/danny-kapowsky/back.svg",
  14217. extra: 797 / 760,
  14218. bottom: 0.025
  14219. }
  14220. },
  14221. },
  14222. [
  14223. {
  14224. name: "Macro",
  14225. height: math.unit(150, "feet"),
  14226. default: true
  14227. },
  14228. {
  14229. name: "Macro+",
  14230. height: math.unit(200, "feet")
  14231. },
  14232. {
  14233. name: "Macro++",
  14234. height: math.unit(300, "feet")
  14235. },
  14236. {
  14237. name: "Macro+++",
  14238. height: math.unit(400, "feet")
  14239. },
  14240. ]
  14241. ))
  14242. characterMakers.push(() => makeCharacter(
  14243. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14244. {
  14245. side: {
  14246. height: math.unit(6, "feet"),
  14247. weight: math.unit(170, "lb"),
  14248. name: "Side",
  14249. image: {
  14250. source: "./media/characters/finn/side.svg",
  14251. extra: 1953 / 1807,
  14252. bottom: 0.057
  14253. }
  14254. },
  14255. },
  14256. [
  14257. {
  14258. name: "Megamacro",
  14259. height: math.unit(14445, "feet"),
  14260. default: true
  14261. },
  14262. ]
  14263. ))
  14264. characterMakers.push(() => makeCharacter(
  14265. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14266. {
  14267. front: {
  14268. height: math.unit(5 + 6 / 12, "feet"),
  14269. weight: math.unit(125, "lb"),
  14270. name: "Front",
  14271. image: {
  14272. source: "./media/characters/roy/front.svg",
  14273. extra: 1,
  14274. bottom: 0.11
  14275. }
  14276. },
  14277. },
  14278. [
  14279. {
  14280. name: "Micro",
  14281. height: math.unit(3, "inches"),
  14282. default: true
  14283. },
  14284. {
  14285. name: "Normal",
  14286. height: math.unit(5 + 6 / 12, "feet")
  14287. },
  14288. {
  14289. name: "Lesser Macro",
  14290. height: math.unit(60, "feet")
  14291. },
  14292. {
  14293. name: "Greater Macro",
  14294. height: math.unit(120, "feet")
  14295. },
  14296. ]
  14297. ))
  14298. characterMakers.push(() => makeCharacter(
  14299. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14300. {
  14301. front: {
  14302. height: math.unit(6, "feet"),
  14303. weight: math.unit(100, "lb"),
  14304. name: "Front",
  14305. image: {
  14306. source: "./media/characters/aevsivs/front.svg",
  14307. extra: 1,
  14308. bottom: 0.03
  14309. }
  14310. },
  14311. back: {
  14312. height: math.unit(6, "feet"),
  14313. weight: math.unit(100, "lb"),
  14314. name: "Back",
  14315. image: {
  14316. source: "./media/characters/aevsivs/back.svg"
  14317. }
  14318. },
  14319. },
  14320. [
  14321. {
  14322. name: "Micro",
  14323. height: math.unit(2, "inches"),
  14324. default: true
  14325. },
  14326. {
  14327. name: "Normal",
  14328. height: math.unit(5, "feet")
  14329. },
  14330. ]
  14331. ))
  14332. characterMakers.push(() => makeCharacter(
  14333. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14334. {
  14335. front: {
  14336. height: math.unit(5 + 7 / 12, "feet"),
  14337. weight: math.unit(159, "lb"),
  14338. name: "Front",
  14339. image: {
  14340. source: "./media/characters/hildegard/front.svg",
  14341. extra: 289 / 269,
  14342. bottom: 7.63 / 297.8
  14343. }
  14344. },
  14345. back: {
  14346. height: math.unit(5 + 7 / 12, "feet"),
  14347. weight: math.unit(159, "lb"),
  14348. name: "Back",
  14349. image: {
  14350. source: "./media/characters/hildegard/back.svg",
  14351. extra: 280 / 260,
  14352. bottom: 2.3 / 282
  14353. }
  14354. },
  14355. },
  14356. [
  14357. {
  14358. name: "Normal",
  14359. height: math.unit(5 + 7 / 12, "feet"),
  14360. default: true
  14361. },
  14362. ]
  14363. ))
  14364. characterMakers.push(() => makeCharacter(
  14365. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14366. {
  14367. bernard: {
  14368. height: math.unit(2 + 7 / 12, "feet"),
  14369. weight: math.unit(66, "lb"),
  14370. name: "Bernard",
  14371. rename: true,
  14372. image: {
  14373. source: "./media/characters/bernard-wilder/bernard.svg",
  14374. extra: 192 / 128,
  14375. bottom: 0.05
  14376. }
  14377. },
  14378. wilder: {
  14379. height: math.unit(5 + 8 / 12, "feet"),
  14380. weight: math.unit(143, "lb"),
  14381. name: "Wilder",
  14382. rename: true,
  14383. image: {
  14384. source: "./media/characters/bernard-wilder/wilder.svg",
  14385. extra: 361 / 312,
  14386. bottom: 0.02
  14387. }
  14388. },
  14389. },
  14390. [
  14391. {
  14392. name: "Normal",
  14393. height: math.unit(2 + 7 / 12, "feet"),
  14394. default: true
  14395. },
  14396. ]
  14397. ))
  14398. characterMakers.push(() => makeCharacter(
  14399. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14400. {
  14401. anthro: {
  14402. height: math.unit(6 + 1 / 12, "feet"),
  14403. weight: math.unit(155, "lb"),
  14404. name: "Anthro",
  14405. image: {
  14406. source: "./media/characters/hearth/anthro.svg",
  14407. extra: 260 / 250,
  14408. bottom: 0.02
  14409. }
  14410. },
  14411. feral: {
  14412. height: math.unit(3.78, "feet"),
  14413. weight: math.unit(35, "kg"),
  14414. name: "Feral",
  14415. image: {
  14416. source: "./media/characters/hearth/feral.svg",
  14417. extra: 153 / 135,
  14418. bottom: 0.03
  14419. }
  14420. },
  14421. },
  14422. [
  14423. {
  14424. name: "Normal",
  14425. height: math.unit(6 + 1 / 12, "feet"),
  14426. default: true
  14427. },
  14428. ]
  14429. ))
  14430. characterMakers.push(() => makeCharacter(
  14431. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14432. {
  14433. front: {
  14434. height: math.unit(6, "feet"),
  14435. weight: math.unit(182, "lb"),
  14436. name: "Front",
  14437. image: {
  14438. source: "./media/characters/ingrid/front.svg",
  14439. extra: 294 / 268,
  14440. bottom: 0.027
  14441. }
  14442. },
  14443. },
  14444. [
  14445. {
  14446. name: "Normal",
  14447. height: math.unit(6, "feet"),
  14448. default: true
  14449. },
  14450. ]
  14451. ))
  14452. characterMakers.push(() => makeCharacter(
  14453. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14454. {
  14455. eevee: {
  14456. height: math.unit(2 + 10 / 12, "feet"),
  14457. weight: math.unit(86, "lb"),
  14458. name: "Malgam",
  14459. image: {
  14460. source: "./media/characters/malgam/eevee.svg",
  14461. extra: 218 / 180,
  14462. bottom: 0.2
  14463. }
  14464. },
  14465. sylveon: {
  14466. height: math.unit(4, "feet"),
  14467. weight: math.unit(101, "lb"),
  14468. name: "Future Malgam",
  14469. rename: true,
  14470. image: {
  14471. source: "./media/characters/malgam/sylveon.svg",
  14472. extra: 371 / 325,
  14473. bottom: 0.015
  14474. }
  14475. },
  14476. gigantamax: {
  14477. height: math.unit(50, "feet"),
  14478. name: "Gigantamax Malgam",
  14479. rename: true,
  14480. image: {
  14481. source: "./media/characters/malgam/gigantamax.svg"
  14482. }
  14483. },
  14484. },
  14485. [
  14486. {
  14487. name: "Normal",
  14488. height: math.unit(2 + 10 / 12, "feet"),
  14489. default: true
  14490. },
  14491. ]
  14492. ))
  14493. characterMakers.push(() => makeCharacter(
  14494. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14495. {
  14496. front: {
  14497. height: math.unit(5 + 11 / 12, "feet"),
  14498. weight: math.unit(188, "lb"),
  14499. name: "Front",
  14500. image: {
  14501. source: "./media/characters/fleur/front.svg",
  14502. extra: 309 / 283,
  14503. bottom: 0.007
  14504. }
  14505. },
  14506. },
  14507. [
  14508. {
  14509. name: "Normal",
  14510. height: math.unit(5 + 11 / 12, "feet"),
  14511. default: true
  14512. },
  14513. ]
  14514. ))
  14515. characterMakers.push(() => makeCharacter(
  14516. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14517. {
  14518. front: {
  14519. height: math.unit(5 + 4 / 12, "feet"),
  14520. weight: math.unit(122, "lb"),
  14521. name: "Front",
  14522. image: {
  14523. source: "./media/characters/jude/front.svg",
  14524. extra: 288 / 273,
  14525. bottom: 0.03
  14526. }
  14527. },
  14528. },
  14529. [
  14530. {
  14531. name: "Normal",
  14532. height: math.unit(5 + 4 / 12, "feet"),
  14533. default: true
  14534. },
  14535. ]
  14536. ))
  14537. characterMakers.push(() => makeCharacter(
  14538. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14539. {
  14540. front: {
  14541. height: math.unit(5 + 11 / 12, "feet"),
  14542. weight: math.unit(190, "lb"),
  14543. name: "Front",
  14544. image: {
  14545. source: "./media/characters/seara/front.svg",
  14546. extra: 1,
  14547. bottom: 0.05
  14548. }
  14549. },
  14550. },
  14551. [
  14552. {
  14553. name: "Normal",
  14554. height: math.unit(5 + 11 / 12, "feet"),
  14555. default: true
  14556. },
  14557. ]
  14558. ))
  14559. characterMakers.push(() => makeCharacter(
  14560. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14561. {
  14562. front: {
  14563. height: math.unit(16 + 5 / 12, "feet"),
  14564. weight: math.unit(524, "lb"),
  14565. name: "Front",
  14566. image: {
  14567. source: "./media/characters/caspian/front.svg",
  14568. extra: 1,
  14569. bottom: 0.04
  14570. }
  14571. },
  14572. },
  14573. [
  14574. {
  14575. name: "Normal",
  14576. height: math.unit(16 + 5 / 12, "feet"),
  14577. default: true
  14578. },
  14579. ]
  14580. ))
  14581. characterMakers.push(() => makeCharacter(
  14582. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14583. {
  14584. front: {
  14585. height: math.unit(5 + 7 / 12, "feet"),
  14586. weight: math.unit(170, "lb"),
  14587. name: "Front",
  14588. image: {
  14589. source: "./media/characters/mika/front.svg",
  14590. extra: 1,
  14591. bottom: 0.016
  14592. }
  14593. },
  14594. },
  14595. [
  14596. {
  14597. name: "Normal",
  14598. height: math.unit(5 + 7 / 12, "feet"),
  14599. default: true
  14600. },
  14601. ]
  14602. ))
  14603. characterMakers.push(() => makeCharacter(
  14604. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14605. {
  14606. front: {
  14607. height: math.unit(6 + 2 / 12, "feet"),
  14608. weight: math.unit(268, "lb"),
  14609. name: "Front",
  14610. image: {
  14611. source: "./media/characters/sol/front.svg",
  14612. extra: 247 / 231,
  14613. bottom: 0.05
  14614. }
  14615. },
  14616. },
  14617. [
  14618. {
  14619. name: "Normal",
  14620. height: math.unit(6 + 2 / 12, "feet"),
  14621. default: true
  14622. },
  14623. ]
  14624. ))
  14625. characterMakers.push(() => makeCharacter(
  14626. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14627. {
  14628. buizel: {
  14629. height: math.unit(2 + 5 / 12, "feet"),
  14630. weight: math.unit(87, "lb"),
  14631. name: "Buizel",
  14632. image: {
  14633. source: "./media/characters/umiko/buizel.svg",
  14634. extra: 172 / 157,
  14635. bottom: 0.01
  14636. }
  14637. },
  14638. floatzel: {
  14639. height: math.unit(5 + 9 / 12, "feet"),
  14640. weight: math.unit(250, "lb"),
  14641. name: "Floatzel",
  14642. image: {
  14643. source: "./media/characters/umiko/floatzel.svg",
  14644. extra: 262 / 248
  14645. }
  14646. },
  14647. },
  14648. [
  14649. {
  14650. name: "Normal",
  14651. height: math.unit(2 + 5 / 12, "feet"),
  14652. default: true
  14653. },
  14654. ]
  14655. ))
  14656. characterMakers.push(() => makeCharacter(
  14657. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14658. {
  14659. front: {
  14660. height: math.unit(6 + 2 / 12, "feet"),
  14661. weight: math.unit(146, "lb"),
  14662. name: "Front",
  14663. image: {
  14664. source: "./media/characters/iliac/front.svg",
  14665. extra: 389 / 365,
  14666. bottom: 0.035
  14667. }
  14668. },
  14669. },
  14670. [
  14671. {
  14672. name: "Normal",
  14673. height: math.unit(6 + 2 / 12, "feet"),
  14674. default: true
  14675. },
  14676. ]
  14677. ))
  14678. characterMakers.push(() => makeCharacter(
  14679. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14680. {
  14681. front: {
  14682. height: math.unit(6, "feet"),
  14683. weight: math.unit(170, "lb"),
  14684. name: "Front",
  14685. image: {
  14686. source: "./media/characters/topaz/front.svg",
  14687. extra: 317 / 303,
  14688. bottom: 0.055
  14689. }
  14690. },
  14691. },
  14692. [
  14693. {
  14694. name: "Normal",
  14695. height: math.unit(6, "feet"),
  14696. default: true
  14697. },
  14698. ]
  14699. ))
  14700. characterMakers.push(() => makeCharacter(
  14701. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14702. {
  14703. front: {
  14704. height: math.unit(5 + 11 / 12, "feet"),
  14705. weight: math.unit(144, "lb"),
  14706. name: "Front",
  14707. image: {
  14708. source: "./media/characters/gabriel/front.svg",
  14709. extra: 285 / 262,
  14710. bottom: 0.004
  14711. }
  14712. },
  14713. },
  14714. [
  14715. {
  14716. name: "Normal",
  14717. height: math.unit(5 + 11 / 12, "feet"),
  14718. default: true
  14719. },
  14720. ]
  14721. ))
  14722. characterMakers.push(() => makeCharacter(
  14723. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14724. {
  14725. side: {
  14726. height: math.unit(6 + 5 / 12, "feet"),
  14727. weight: math.unit(300, "lb"),
  14728. name: "Side",
  14729. image: {
  14730. source: "./media/characters/tempest-suicune/side.svg",
  14731. extra: 195 / 154,
  14732. bottom: 0.04
  14733. }
  14734. },
  14735. },
  14736. [
  14737. {
  14738. name: "Normal",
  14739. height: math.unit(6 + 5 / 12, "feet"),
  14740. default: true
  14741. },
  14742. ]
  14743. ))
  14744. characterMakers.push(() => makeCharacter(
  14745. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14746. {
  14747. front: {
  14748. height: math.unit(7 + 2 / 12, "feet"),
  14749. weight: math.unit(322, "lb"),
  14750. name: "Front",
  14751. image: {
  14752. source: "./media/characters/vulcan/front.svg",
  14753. extra: 154 / 147,
  14754. bottom: 0.04
  14755. }
  14756. },
  14757. },
  14758. [
  14759. {
  14760. name: "Normal",
  14761. height: math.unit(7 + 2 / 12, "feet"),
  14762. default: true
  14763. },
  14764. ]
  14765. ))
  14766. characterMakers.push(() => makeCharacter(
  14767. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14768. {
  14769. front: {
  14770. height: math.unit(5 + 10 / 12, "feet"),
  14771. weight: math.unit(264, "lb"),
  14772. name: "Front",
  14773. image: {
  14774. source: "./media/characters/gault/front.svg",
  14775. extra: 161 / 140,
  14776. bottom: 0.028
  14777. }
  14778. },
  14779. },
  14780. [
  14781. {
  14782. name: "Normal",
  14783. height: math.unit(5 + 10 / 12, "feet"),
  14784. default: true
  14785. },
  14786. ]
  14787. ))
  14788. characterMakers.push(() => makeCharacter(
  14789. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14790. {
  14791. front: {
  14792. height: math.unit(6, "feet"),
  14793. weight: math.unit(150, "lb"),
  14794. name: "Front",
  14795. image: {
  14796. source: "./media/characters/shard/front.svg",
  14797. extra: 273 / 238,
  14798. bottom: 0.02
  14799. }
  14800. },
  14801. },
  14802. [
  14803. {
  14804. name: "Normal",
  14805. height: math.unit(3 + 6 / 12, "feet"),
  14806. default: true
  14807. },
  14808. ]
  14809. ))
  14810. characterMakers.push(() => makeCharacter(
  14811. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14812. {
  14813. front: {
  14814. height: math.unit(5 + 11 / 12, "feet"),
  14815. weight: math.unit(146, "lb"),
  14816. name: "Front",
  14817. image: {
  14818. source: "./media/characters/ashe/front.svg",
  14819. extra: 400 / 373,
  14820. bottom: 0.01
  14821. }
  14822. },
  14823. },
  14824. [
  14825. {
  14826. name: "Normal",
  14827. height: math.unit(5 + 11 / 12, "feet"),
  14828. default: true
  14829. },
  14830. ]
  14831. ))
  14832. characterMakers.push(() => makeCharacter(
  14833. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14834. {
  14835. front: {
  14836. height: math.unit(5 + 5 / 12, "feet"),
  14837. weight: math.unit(135, "lb"),
  14838. name: "Front",
  14839. image: {
  14840. source: "./media/characters/beatrix/front.svg",
  14841. extra: 392 / 379,
  14842. bottom: 0.01
  14843. }
  14844. },
  14845. },
  14846. [
  14847. {
  14848. name: "Normal",
  14849. height: math.unit(6, "feet"),
  14850. default: true
  14851. },
  14852. ]
  14853. ))
  14854. characterMakers.push(() => makeCharacter(
  14855. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14856. {
  14857. front: {
  14858. height: math.unit(6, "feet"),
  14859. weight: math.unit(150, "lb"),
  14860. name: "Front",
  14861. image: {
  14862. source: "./media/characters/ignatius/front.svg",
  14863. extra: 245 / 222,
  14864. bottom: 0.01
  14865. }
  14866. },
  14867. },
  14868. [
  14869. {
  14870. name: "Normal",
  14871. height: math.unit(5 + 5 / 12, "feet"),
  14872. default: true
  14873. },
  14874. ]
  14875. ))
  14876. characterMakers.push(() => makeCharacter(
  14877. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14878. {
  14879. front: {
  14880. height: math.unit(6 + 2 / 12, "feet"),
  14881. weight: math.unit(138, "lb"),
  14882. name: "Front",
  14883. image: {
  14884. source: "./media/characters/mei-li/front.svg",
  14885. extra: 237 / 229,
  14886. bottom: 0.03
  14887. }
  14888. },
  14889. },
  14890. [
  14891. {
  14892. name: "Normal",
  14893. height: math.unit(6 + 2 / 12, "feet"),
  14894. default: true
  14895. },
  14896. ]
  14897. ))
  14898. characterMakers.push(() => makeCharacter(
  14899. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14900. {
  14901. front: {
  14902. height: math.unit(2 + 4 / 12, "feet"),
  14903. weight: math.unit(62, "lb"),
  14904. name: "Front",
  14905. image: {
  14906. source: "./media/characters/puru/front.svg",
  14907. extra: 206 / 149,
  14908. bottom: 0.06
  14909. }
  14910. },
  14911. },
  14912. [
  14913. {
  14914. name: "Normal",
  14915. height: math.unit(2 + 4 / 12, "feet"),
  14916. default: true
  14917. },
  14918. ]
  14919. ))
  14920. characterMakers.push(() => makeCharacter(
  14921. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14922. {
  14923. taur: {
  14924. height: math.unit(11, "feet"),
  14925. weight: math.unit(500, "lb"),
  14926. name: "Taur",
  14927. image: {
  14928. source: "./media/characters/kee/taur.svg",
  14929. extra: 1,
  14930. bottom: 0.04
  14931. }
  14932. },
  14933. },
  14934. [
  14935. {
  14936. name: "Normal",
  14937. height: math.unit(11, "feet"),
  14938. default: true
  14939. },
  14940. ]
  14941. ))
  14942. characterMakers.push(() => makeCharacter(
  14943. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14944. {
  14945. anthro: {
  14946. height: math.unit(7, "feet"),
  14947. weight: math.unit(190, "lb"),
  14948. name: "Anthro",
  14949. image: {
  14950. source: "./media/characters/cobalt-dracha/anthro.svg",
  14951. extra: 231 / 225,
  14952. bottom: 0.04
  14953. }
  14954. },
  14955. feral: {
  14956. height: math.unit(9 + 7 / 12, "feet"),
  14957. weight: math.unit(294, "lb"),
  14958. name: "Feral",
  14959. image: {
  14960. source: "./media/characters/cobalt-dracha/feral.svg",
  14961. extra: 692 / 633,
  14962. bottom: 0.05
  14963. }
  14964. },
  14965. },
  14966. [
  14967. {
  14968. name: "Normal",
  14969. height: math.unit(7, "feet"),
  14970. default: true
  14971. },
  14972. ]
  14973. ))
  14974. characterMakers.push(() => makeCharacter(
  14975. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14976. {
  14977. fallen: {
  14978. height: math.unit(11 + 8 / 12, "feet"),
  14979. weight: math.unit(485, "lb"),
  14980. name: "Java (Fallen)",
  14981. rename: true,
  14982. image: {
  14983. source: "./media/characters/java/fallen.svg",
  14984. extra: 226 / 208,
  14985. bottom: 0.005
  14986. }
  14987. },
  14988. godkin: {
  14989. height: math.unit(10 + 6 / 12, "feet"),
  14990. weight: math.unit(328, "lb"),
  14991. name: "Java (Godkin)",
  14992. rename: true,
  14993. image: {
  14994. source: "./media/characters/java/godkin.svg",
  14995. extra: 270 / 262,
  14996. bottom: 0.02
  14997. }
  14998. },
  14999. },
  15000. [
  15001. {
  15002. name: "Normal",
  15003. height: math.unit(11 + 8 / 12, "feet"),
  15004. default: true
  15005. },
  15006. ]
  15007. ))
  15008. characterMakers.push(() => makeCharacter(
  15009. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15010. {
  15011. front: {
  15012. height: math.unit(7 + 8 / 12, "feet"),
  15013. weight: math.unit(320, "lb"),
  15014. name: "Front",
  15015. image: {
  15016. source: "./media/characters/skoll/front.svg",
  15017. extra: 232 / 220,
  15018. bottom: 0.02
  15019. }
  15020. },
  15021. },
  15022. [
  15023. {
  15024. name: "Normal",
  15025. height: math.unit(7 + 8 / 12, "feet"),
  15026. default: true
  15027. },
  15028. ]
  15029. ))
  15030. characterMakers.push(() => makeCharacter(
  15031. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15032. {
  15033. front: {
  15034. height: math.unit(5 + 9 / 12, "feet"),
  15035. weight: math.unit(170, "lb"),
  15036. name: "Front",
  15037. image: {
  15038. source: "./media/characters/purna/front.svg",
  15039. extra: 239 / 229,
  15040. bottom: 0.01
  15041. }
  15042. },
  15043. },
  15044. [
  15045. {
  15046. name: "Normal",
  15047. height: math.unit(5 + 9 / 12, "feet"),
  15048. default: true
  15049. },
  15050. ]
  15051. ))
  15052. characterMakers.push(() => makeCharacter(
  15053. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15054. {
  15055. front: {
  15056. height: math.unit(5 + 9 / 12, "feet"),
  15057. weight: math.unit(142, "lb"),
  15058. name: "Front",
  15059. image: {
  15060. source: "./media/characters/kuva/front.svg",
  15061. extra: 281 / 271,
  15062. bottom: 0.006
  15063. }
  15064. },
  15065. },
  15066. [
  15067. {
  15068. name: "Normal",
  15069. height: math.unit(5 + 9 / 12, "feet"),
  15070. default: true
  15071. },
  15072. ]
  15073. ))
  15074. characterMakers.push(() => makeCharacter(
  15075. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15076. {
  15077. anthro: {
  15078. height: math.unit(9 + 2 / 12, "feet"),
  15079. weight: math.unit(270, "lb"),
  15080. name: "Anthro",
  15081. image: {
  15082. source: "./media/characters/embra/anthro.svg",
  15083. extra: 200 / 187,
  15084. bottom: 0.02
  15085. }
  15086. },
  15087. feral: {
  15088. height: math.unit(18 + 8 / 12, "feet"),
  15089. weight: math.unit(576, "lb"),
  15090. name: "Feral",
  15091. image: {
  15092. source: "./media/characters/embra/feral.svg",
  15093. extra: 152 / 137,
  15094. bottom: 0.037
  15095. }
  15096. },
  15097. },
  15098. [
  15099. {
  15100. name: "Normal",
  15101. height: math.unit(9 + 2 / 12, "feet"),
  15102. default: true
  15103. },
  15104. ]
  15105. ))
  15106. characterMakers.push(() => makeCharacter(
  15107. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15108. {
  15109. anthro: {
  15110. height: math.unit(10 + 9 / 12, "feet"),
  15111. weight: math.unit(224, "lb"),
  15112. name: "Anthro",
  15113. image: {
  15114. source: "./media/characters/grottos/anthro.svg",
  15115. extra: 350 / 332,
  15116. bottom: 0.045
  15117. }
  15118. },
  15119. feral: {
  15120. height: math.unit(20 + 7 / 12, "feet"),
  15121. weight: math.unit(629, "lb"),
  15122. name: "Feral",
  15123. image: {
  15124. source: "./media/characters/grottos/feral.svg",
  15125. extra: 207 / 190,
  15126. bottom: 0.05
  15127. }
  15128. },
  15129. },
  15130. [
  15131. {
  15132. name: "Normal",
  15133. height: math.unit(10 + 9 / 12, "feet"),
  15134. default: true
  15135. },
  15136. ]
  15137. ))
  15138. characterMakers.push(() => makeCharacter(
  15139. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15140. {
  15141. anthro: {
  15142. height: math.unit(9 + 6 / 12, "feet"),
  15143. weight: math.unit(298, "lb"),
  15144. name: "Anthro",
  15145. image: {
  15146. source: "./media/characters/frifna/anthro.svg",
  15147. extra: 282 / 269,
  15148. bottom: 0.015
  15149. }
  15150. },
  15151. feral: {
  15152. height: math.unit(16 + 2 / 12, "feet"),
  15153. weight: math.unit(624, "lb"),
  15154. name: "Feral",
  15155. image: {
  15156. source: "./media/characters/frifna/feral.svg"
  15157. }
  15158. },
  15159. },
  15160. [
  15161. {
  15162. name: "Normal",
  15163. height: math.unit(9 + 6 / 12, "feet"),
  15164. default: true
  15165. },
  15166. ]
  15167. ))
  15168. characterMakers.push(() => makeCharacter(
  15169. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15170. {
  15171. front: {
  15172. height: math.unit(6 + 2 / 12, "feet"),
  15173. weight: math.unit(168, "lb"),
  15174. name: "Front",
  15175. image: {
  15176. source: "./media/characters/elise/front.svg",
  15177. extra: 276 / 271
  15178. }
  15179. },
  15180. },
  15181. [
  15182. {
  15183. name: "Normal",
  15184. height: math.unit(6 + 2 / 12, "feet"),
  15185. default: true
  15186. },
  15187. ]
  15188. ))
  15189. characterMakers.push(() => makeCharacter(
  15190. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15191. {
  15192. front: {
  15193. height: math.unit(5 + 10 / 12, "feet"),
  15194. weight: math.unit(210, "lb"),
  15195. name: "Front",
  15196. image: {
  15197. source: "./media/characters/glade/front.svg",
  15198. extra: 258 / 247,
  15199. bottom: 0.008
  15200. }
  15201. },
  15202. },
  15203. [
  15204. {
  15205. name: "Normal",
  15206. height: math.unit(5 + 10 / 12, "feet"),
  15207. default: true
  15208. },
  15209. ]
  15210. ))
  15211. characterMakers.push(() => makeCharacter(
  15212. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15213. {
  15214. front: {
  15215. height: math.unit(5 + 10 / 12, "feet"),
  15216. weight: math.unit(129, "lb"),
  15217. name: "Front",
  15218. image: {
  15219. source: "./media/characters/rina/front.svg",
  15220. extra: 266 / 255,
  15221. bottom: 0.005
  15222. }
  15223. },
  15224. },
  15225. [
  15226. {
  15227. name: "Normal",
  15228. height: math.unit(5 + 10 / 12, "feet"),
  15229. default: true
  15230. },
  15231. ]
  15232. ))
  15233. characterMakers.push(() => makeCharacter(
  15234. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15235. {
  15236. front: {
  15237. height: math.unit(6 + 1 / 12, "feet"),
  15238. weight: math.unit(192, "lb"),
  15239. name: "Front",
  15240. image: {
  15241. source: "./media/characters/veronica/front.svg",
  15242. extra: 319 / 309,
  15243. bottom: 0.005
  15244. }
  15245. },
  15246. },
  15247. [
  15248. {
  15249. name: "Normal",
  15250. height: math.unit(6 + 1 / 12, "feet"),
  15251. default: true
  15252. },
  15253. ]
  15254. ))
  15255. characterMakers.push(() => makeCharacter(
  15256. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15257. {
  15258. front: {
  15259. height: math.unit(9 + 3 / 12, "feet"),
  15260. weight: math.unit(1100, "lb"),
  15261. name: "Front",
  15262. image: {
  15263. source: "./media/characters/braxton/front.svg",
  15264. extra: 1057 / 984,
  15265. bottom: 0.05
  15266. }
  15267. },
  15268. },
  15269. [
  15270. {
  15271. name: "Normal",
  15272. height: math.unit(9 + 3 / 12, "feet")
  15273. },
  15274. {
  15275. name: "Giant",
  15276. height: math.unit(300, "feet"),
  15277. default: true
  15278. },
  15279. {
  15280. name: "Macro",
  15281. height: math.unit(700, "feet")
  15282. },
  15283. {
  15284. name: "Megamacro",
  15285. height: math.unit(6000, "feet")
  15286. },
  15287. ]
  15288. ))
  15289. characterMakers.push(() => makeCharacter(
  15290. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15291. {
  15292. front: {
  15293. height: math.unit(6 + 7 / 12, "feet"),
  15294. weight: math.unit(150, "lb"),
  15295. name: "Front",
  15296. image: {
  15297. source: "./media/characters/blue-feyonics/front.svg",
  15298. extra: 1403 / 1306,
  15299. bottom: 0.047
  15300. }
  15301. },
  15302. },
  15303. [
  15304. {
  15305. name: "Normal",
  15306. height: math.unit(6 + 7 / 12, "feet"),
  15307. default: true
  15308. },
  15309. ]
  15310. ))
  15311. characterMakers.push(() => makeCharacter(
  15312. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15313. {
  15314. front: {
  15315. height: math.unit(1.8, "meters"),
  15316. weight: math.unit(60, "kg"),
  15317. name: "Front",
  15318. image: {
  15319. source: "./media/characters/maxwell/front.svg",
  15320. extra: 2060 / 1873
  15321. }
  15322. },
  15323. },
  15324. [
  15325. {
  15326. name: "Micro",
  15327. height: math.unit(1, "mm")
  15328. },
  15329. {
  15330. name: "Normal",
  15331. height: math.unit(1.8, "meter"),
  15332. default: true
  15333. },
  15334. {
  15335. name: "Macro",
  15336. height: math.unit(30, "meters")
  15337. },
  15338. {
  15339. name: "Megamacro",
  15340. height: math.unit(10, "km")
  15341. },
  15342. ]
  15343. ))
  15344. characterMakers.push(() => makeCharacter(
  15345. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15346. {
  15347. front: {
  15348. height: math.unit(6, "feet"),
  15349. weight: math.unit(150, "lb"),
  15350. name: "Front",
  15351. image: {
  15352. source: "./media/characters/jack/front.svg",
  15353. extra: 1754 / 1640,
  15354. bottom: 0.01
  15355. }
  15356. },
  15357. },
  15358. [
  15359. {
  15360. name: "Normal",
  15361. height: math.unit(80000, "feet"),
  15362. default: true
  15363. },
  15364. {
  15365. name: "Max size",
  15366. height: math.unit(10, "lightyears")
  15367. },
  15368. ]
  15369. ))
  15370. characterMakers.push(() => makeCharacter(
  15371. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15372. {
  15373. upright: {
  15374. height: math.unit(7, "feet"),
  15375. weight: math.unit(170, "lb"),
  15376. name: "Upright",
  15377. image: {
  15378. source: "./media/characters/cafat/upright.svg",
  15379. bottom: 0.01
  15380. }
  15381. },
  15382. uprightFull: {
  15383. height: math.unit(7, "feet"),
  15384. weight: math.unit(170, "lb"),
  15385. name: "Upright (Full)",
  15386. image: {
  15387. source: "./media/characters/cafat/upright-full.svg",
  15388. bottom: 0.01
  15389. }
  15390. },
  15391. side: {
  15392. height: math.unit(5, "feet"),
  15393. weight: math.unit(150, "lb"),
  15394. name: "Side",
  15395. image: {
  15396. source: "./media/characters/cafat/side.svg"
  15397. }
  15398. },
  15399. },
  15400. [
  15401. {
  15402. name: "Small",
  15403. height: math.unit(7, "feet"),
  15404. default: true
  15405. },
  15406. {
  15407. name: "Large",
  15408. height: math.unit(15.5, "feet")
  15409. },
  15410. ]
  15411. ))
  15412. characterMakers.push(() => makeCharacter(
  15413. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15414. {
  15415. front: {
  15416. height: math.unit(6, "feet"),
  15417. weight: math.unit(150, "lb"),
  15418. name: "Front",
  15419. image: {
  15420. source: "./media/characters/verin-raharra/front.svg",
  15421. extra: 5019 / 4835,
  15422. bottom: 0.023
  15423. }
  15424. },
  15425. },
  15426. [
  15427. {
  15428. name: "Normal",
  15429. height: math.unit(7 + 5 / 12, "feet"),
  15430. default: true
  15431. },
  15432. {
  15433. name: "Upsized",
  15434. height: math.unit(20, "feet")
  15435. },
  15436. ]
  15437. ))
  15438. characterMakers.push(() => makeCharacter(
  15439. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15440. {
  15441. front: {
  15442. height: math.unit(7, "feet"),
  15443. weight: math.unit(230, "lb"),
  15444. name: "Front",
  15445. image: {
  15446. source: "./media/characters/nakata/front.svg",
  15447. extra: 1.005,
  15448. bottom: 0.01
  15449. }
  15450. },
  15451. },
  15452. [
  15453. {
  15454. name: "Normal",
  15455. height: math.unit(7, "feet"),
  15456. default: true
  15457. },
  15458. {
  15459. name: "Big",
  15460. height: math.unit(14, "feet")
  15461. },
  15462. {
  15463. name: "Macro",
  15464. height: math.unit(400, "feet")
  15465. },
  15466. ]
  15467. ))
  15468. characterMakers.push(() => makeCharacter(
  15469. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15470. {
  15471. front: {
  15472. height: math.unit(4.91, "feet"),
  15473. weight: math.unit(100, "lb"),
  15474. name: "Front",
  15475. image: {
  15476. source: "./media/characters/lily/front.svg",
  15477. extra: 1585 / 1415,
  15478. bottom: 0.02
  15479. }
  15480. },
  15481. },
  15482. [
  15483. {
  15484. name: "Normal",
  15485. height: math.unit(4.91, "feet"),
  15486. default: true
  15487. },
  15488. ]
  15489. ))
  15490. characterMakers.push(() => makeCharacter(
  15491. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15492. {
  15493. laying: {
  15494. height: math.unit(4 + 4 / 12, "feet"),
  15495. weight: math.unit(600, "lb"),
  15496. name: "Laying",
  15497. image: {
  15498. source: "./media/characters/sheila/laying.svg",
  15499. extra: 1333 / 1265,
  15500. bottom: 0.16
  15501. }
  15502. },
  15503. },
  15504. [
  15505. {
  15506. name: "Normal",
  15507. height: math.unit(4 + 4 / 12, "feet"),
  15508. default: true
  15509. },
  15510. ]
  15511. ))
  15512. characterMakers.push(() => makeCharacter(
  15513. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15514. {
  15515. front: {
  15516. height: math.unit(6, "feet"),
  15517. weight: math.unit(190, "lb"),
  15518. name: "Front",
  15519. image: {
  15520. source: "./media/characters/sax/front.svg",
  15521. extra: 1187 / 973,
  15522. bottom: 0.042
  15523. }
  15524. },
  15525. },
  15526. [
  15527. {
  15528. name: "Micro",
  15529. height: math.unit(4, "inches"),
  15530. default: true
  15531. },
  15532. ]
  15533. ))
  15534. characterMakers.push(() => makeCharacter(
  15535. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15536. {
  15537. front: {
  15538. height: math.unit(6, "feet"),
  15539. weight: math.unit(150, "lb"),
  15540. name: "Front",
  15541. image: {
  15542. source: "./media/characters/pandora/front.svg",
  15543. extra: 2720 / 2556,
  15544. bottom: 0.015
  15545. }
  15546. },
  15547. back: {
  15548. height: math.unit(6, "feet"),
  15549. weight: math.unit(150, "lb"),
  15550. name: "Back",
  15551. image: {
  15552. source: "./media/characters/pandora/back.svg",
  15553. extra: 2720 / 2556,
  15554. bottom: 0.01
  15555. }
  15556. },
  15557. beans: {
  15558. height: math.unit(6 / 8, "feet"),
  15559. name: "Beans",
  15560. image: {
  15561. source: "./media/characters/pandora/beans.svg"
  15562. }
  15563. },
  15564. skirt: {
  15565. height: math.unit(6, "feet"),
  15566. weight: math.unit(150, "lb"),
  15567. name: "Skirt",
  15568. image: {
  15569. source: "./media/characters/pandora/skirt.svg",
  15570. extra: 1622 / 1525,
  15571. bottom: 0.015
  15572. }
  15573. },
  15574. hoodie: {
  15575. height: math.unit(6, "feet"),
  15576. weight: math.unit(150, "lb"),
  15577. name: "Hoodie",
  15578. image: {
  15579. source: "./media/characters/pandora/hoodie.svg",
  15580. extra: 1622 / 1525,
  15581. bottom: 0.015
  15582. }
  15583. },
  15584. casual: {
  15585. height: math.unit(6, "feet"),
  15586. weight: math.unit(150, "lb"),
  15587. name: "Casual",
  15588. image: {
  15589. source: "./media/characters/pandora/casual.svg",
  15590. extra: 1622 / 1525,
  15591. bottom: 0.015
  15592. }
  15593. },
  15594. },
  15595. [
  15596. {
  15597. name: "Normal",
  15598. height: math.unit(6, "feet")
  15599. },
  15600. {
  15601. name: "Big Steppy",
  15602. height: math.unit(1, "km"),
  15603. default: true
  15604. },
  15605. ]
  15606. ))
  15607. characterMakers.push(() => makeCharacter(
  15608. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15609. {
  15610. side: {
  15611. height: math.unit(10, "feet"),
  15612. weight: math.unit(800, "kg"),
  15613. name: "Side",
  15614. image: {
  15615. source: "./media/characters/venio-darcony/side.svg",
  15616. extra: 1373 / 1003,
  15617. bottom: 0.037
  15618. }
  15619. },
  15620. front: {
  15621. height: math.unit(19, "feet"),
  15622. weight: math.unit(800, "kg"),
  15623. name: "Front",
  15624. image: {
  15625. source: "./media/characters/venio-darcony/front.svg"
  15626. }
  15627. },
  15628. back: {
  15629. height: math.unit(19, "feet"),
  15630. weight: math.unit(800, "kg"),
  15631. name: "Back",
  15632. image: {
  15633. source: "./media/characters/venio-darcony/back.svg"
  15634. }
  15635. },
  15636. sideNsfw: {
  15637. height: math.unit(10, "feet"),
  15638. weight: math.unit(800, "kg"),
  15639. name: "Side (NSFW)",
  15640. image: {
  15641. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15642. extra: 1373 / 1003,
  15643. bottom: 0.037
  15644. }
  15645. },
  15646. frontNsfw: {
  15647. height: math.unit(19, "feet"),
  15648. weight: math.unit(800, "kg"),
  15649. name: "Front (NSFW)",
  15650. image: {
  15651. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15652. }
  15653. },
  15654. backNsfw: {
  15655. height: math.unit(19, "feet"),
  15656. weight: math.unit(800, "kg"),
  15657. name: "Back (NSFW)",
  15658. image: {
  15659. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15660. }
  15661. },
  15662. sideArmored: {
  15663. height: math.unit(10, "feet"),
  15664. weight: math.unit(800, "kg"),
  15665. name: "Side (Armored)",
  15666. image: {
  15667. source: "./media/characters/venio-darcony/side-armored.svg",
  15668. extra: 1373 / 1003,
  15669. bottom: 0.037
  15670. }
  15671. },
  15672. frontArmored: {
  15673. height: math.unit(19, "feet"),
  15674. weight: math.unit(900, "kg"),
  15675. name: "Front (Armored)",
  15676. image: {
  15677. source: "./media/characters/venio-darcony/front-armored.svg"
  15678. }
  15679. },
  15680. backArmored: {
  15681. height: math.unit(19, "feet"),
  15682. weight: math.unit(900, "kg"),
  15683. name: "Back (Armored)",
  15684. image: {
  15685. source: "./media/characters/venio-darcony/back-armored.svg"
  15686. }
  15687. },
  15688. sword: {
  15689. height: math.unit(10, "feet"),
  15690. weight: math.unit(50, "lb"),
  15691. name: "Sword",
  15692. image: {
  15693. source: "./media/characters/venio-darcony/sword.svg"
  15694. }
  15695. },
  15696. },
  15697. [
  15698. {
  15699. name: "Normal",
  15700. height: math.unit(10, "feet")
  15701. },
  15702. {
  15703. name: "Macro",
  15704. height: math.unit(130, "feet"),
  15705. default: true
  15706. },
  15707. {
  15708. name: "Macro+",
  15709. height: math.unit(240, "feet")
  15710. },
  15711. ]
  15712. ))
  15713. characterMakers.push(() => makeCharacter(
  15714. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15715. {
  15716. front: {
  15717. height: math.unit(6, "feet"),
  15718. weight: math.unit(150, "lb"),
  15719. name: "Front",
  15720. image: {
  15721. source: "./media/characters/veski/front.svg",
  15722. extra: 1299 / 1225,
  15723. bottom: 0.04
  15724. }
  15725. },
  15726. back: {
  15727. height: math.unit(6, "feet"),
  15728. weight: math.unit(150, "lb"),
  15729. name: "Back",
  15730. image: {
  15731. source: "./media/characters/veski/back.svg",
  15732. extra: 1299 / 1225,
  15733. bottom: 0.008
  15734. }
  15735. },
  15736. maw: {
  15737. height: math.unit(1.5 * 1.21, "feet"),
  15738. name: "Maw",
  15739. image: {
  15740. source: "./media/characters/veski/maw.svg"
  15741. }
  15742. },
  15743. },
  15744. [
  15745. {
  15746. name: "Macro",
  15747. height: math.unit(2, "km"),
  15748. default: true
  15749. },
  15750. ]
  15751. ))
  15752. characterMakers.push(() => makeCharacter(
  15753. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15754. {
  15755. front: {
  15756. height: math.unit(5 + 7 / 12, "feet"),
  15757. name: "Front",
  15758. image: {
  15759. source: "./media/characters/isabelle/front.svg",
  15760. extra: 2130 / 1976,
  15761. bottom: 0.05
  15762. }
  15763. },
  15764. },
  15765. [
  15766. {
  15767. name: "Supermicro",
  15768. height: math.unit(10, "micrometers")
  15769. },
  15770. {
  15771. name: "Micro",
  15772. height: math.unit(1, "inch")
  15773. },
  15774. {
  15775. name: "Tiny",
  15776. height: math.unit(5, "inches")
  15777. },
  15778. {
  15779. name: "Standard",
  15780. height: math.unit(5 + 7 / 12, "inches")
  15781. },
  15782. {
  15783. name: "Macro",
  15784. height: math.unit(80, "meters"),
  15785. default: true
  15786. },
  15787. {
  15788. name: "Megamacro",
  15789. height: math.unit(250, "meters")
  15790. },
  15791. {
  15792. name: "Gigamacro",
  15793. height: math.unit(5, "km")
  15794. },
  15795. {
  15796. name: "Cosmic",
  15797. height: math.unit(2.5e6, "miles")
  15798. },
  15799. ]
  15800. ))
  15801. characterMakers.push(() => makeCharacter(
  15802. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15803. {
  15804. front: {
  15805. height: math.unit(6, "feet"),
  15806. weight: math.unit(150, "lb"),
  15807. name: "Front",
  15808. image: {
  15809. source: "./media/characters/hanzo/front.svg",
  15810. extra: 374 / 344,
  15811. bottom: 0.02
  15812. }
  15813. },
  15814. },
  15815. [
  15816. {
  15817. name: "Normal",
  15818. height: math.unit(8, "feet"),
  15819. default: true
  15820. },
  15821. ]
  15822. ))
  15823. characterMakers.push(() => makeCharacter(
  15824. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15825. {
  15826. front: {
  15827. height: math.unit(7, "feet"),
  15828. weight: math.unit(130, "lb"),
  15829. name: "Front",
  15830. image: {
  15831. source: "./media/characters/anna/front.svg",
  15832. extra: 169 / 145,
  15833. bottom: 0.06
  15834. }
  15835. },
  15836. full: {
  15837. height: math.unit(4.96, "feet"),
  15838. weight: math.unit(220, "lb"),
  15839. name: "Full",
  15840. image: {
  15841. source: "./media/characters/anna/full.svg",
  15842. extra: 138 / 114,
  15843. bottom: 0.15
  15844. }
  15845. },
  15846. tongue: {
  15847. height: math.unit(2.53, "feet"),
  15848. name: "Tongue",
  15849. image: {
  15850. source: "./media/characters/anna/tongue.svg"
  15851. }
  15852. },
  15853. },
  15854. [
  15855. {
  15856. name: "Normal",
  15857. height: math.unit(7, "feet"),
  15858. default: true
  15859. },
  15860. ]
  15861. ))
  15862. characterMakers.push(() => makeCharacter(
  15863. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15864. {
  15865. front: {
  15866. height: math.unit(7, "feet"),
  15867. weight: math.unit(150, "lb"),
  15868. name: "Front",
  15869. image: {
  15870. source: "./media/characters/ian-corvid/front.svg",
  15871. extra: 150 / 142,
  15872. bottom: 0.02
  15873. }
  15874. },
  15875. back: {
  15876. height: math.unit(7, "feet"),
  15877. weight: math.unit(150, "lb"),
  15878. name: "Back",
  15879. image: {
  15880. source: "./media/characters/ian-corvid/back.svg",
  15881. extra: 150 / 143,
  15882. bottom: 0.01
  15883. }
  15884. },
  15885. stomping: {
  15886. height: math.unit(7, "feet"),
  15887. weight: math.unit(150, "lb"),
  15888. name: "Stomping",
  15889. image: {
  15890. source: "./media/characters/ian-corvid/stomping.svg",
  15891. extra: 76 / 72
  15892. }
  15893. },
  15894. sitting: {
  15895. height: math.unit(7 / 1.8, "feet"),
  15896. weight: math.unit(150, "lb"),
  15897. name: "Sitting",
  15898. image: {
  15899. source: "./media/characters/ian-corvid/sitting.svg",
  15900. extra: 1400 / 1269,
  15901. bottom: 0.15
  15902. }
  15903. },
  15904. },
  15905. [
  15906. {
  15907. name: "Tiny Microw",
  15908. height: math.unit(1, "inch")
  15909. },
  15910. {
  15911. name: "Microw",
  15912. height: math.unit(6, "inches")
  15913. },
  15914. {
  15915. name: "Crow",
  15916. height: math.unit(7 + 1 / 12, "feet"),
  15917. default: true
  15918. },
  15919. {
  15920. name: "Macrow",
  15921. height: math.unit(176, "feet")
  15922. },
  15923. ]
  15924. ))
  15925. characterMakers.push(() => makeCharacter(
  15926. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15927. {
  15928. front: {
  15929. height: math.unit(5 + 7 / 12, "feet"),
  15930. weight: math.unit(147, "lb"),
  15931. name: "Front",
  15932. image: {
  15933. source: "./media/characters/natalie-kellon/front.svg",
  15934. extra: 1214 / 1141,
  15935. bottom: 0.02
  15936. }
  15937. },
  15938. },
  15939. [
  15940. {
  15941. name: "Micro",
  15942. height: math.unit(1 / 16, "inch")
  15943. },
  15944. {
  15945. name: "Tiny",
  15946. height: math.unit(4, "inches")
  15947. },
  15948. {
  15949. name: "Normal",
  15950. height: math.unit(5 + 7 / 12, "feet"),
  15951. default: true
  15952. },
  15953. {
  15954. name: "Amazon",
  15955. height: math.unit(12, "feet")
  15956. },
  15957. {
  15958. name: "Giantess",
  15959. height: math.unit(160, "meters")
  15960. },
  15961. {
  15962. name: "Titaness",
  15963. height: math.unit(800, "meters")
  15964. },
  15965. ]
  15966. ))
  15967. characterMakers.push(() => makeCharacter(
  15968. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15969. {
  15970. front: {
  15971. height: math.unit(6, "feet"),
  15972. weight: math.unit(150, "lb"),
  15973. name: "Front",
  15974. image: {
  15975. source: "./media/characters/alluria/front.svg",
  15976. extra: 806 / 738,
  15977. bottom: 0.01
  15978. }
  15979. },
  15980. side: {
  15981. height: math.unit(6, "feet"),
  15982. weight: math.unit(150, "lb"),
  15983. name: "Side",
  15984. image: {
  15985. source: "./media/characters/alluria/side.svg",
  15986. extra: 800 / 750,
  15987. }
  15988. },
  15989. back: {
  15990. height: math.unit(6, "feet"),
  15991. weight: math.unit(150, "lb"),
  15992. name: "Back",
  15993. image: {
  15994. source: "./media/characters/alluria/back.svg",
  15995. extra: 806 / 738,
  15996. }
  15997. },
  15998. frontMaid: {
  15999. height: math.unit(6, "feet"),
  16000. weight: math.unit(150, "lb"),
  16001. name: "Front (Maid)",
  16002. image: {
  16003. source: "./media/characters/alluria/front-maid.svg",
  16004. extra: 806 / 738,
  16005. bottom: 0.01
  16006. }
  16007. },
  16008. sideMaid: {
  16009. height: math.unit(6, "feet"),
  16010. weight: math.unit(150, "lb"),
  16011. name: "Side (Maid)",
  16012. image: {
  16013. source: "./media/characters/alluria/side-maid.svg",
  16014. extra: 800 / 750,
  16015. bottom: 0.005
  16016. }
  16017. },
  16018. backMaid: {
  16019. height: math.unit(6, "feet"),
  16020. weight: math.unit(150, "lb"),
  16021. name: "Back (Maid)",
  16022. image: {
  16023. source: "./media/characters/alluria/back-maid.svg",
  16024. extra: 806 / 738,
  16025. }
  16026. },
  16027. },
  16028. [
  16029. {
  16030. name: "Micro",
  16031. height: math.unit(6, "inches"),
  16032. default: true
  16033. },
  16034. ]
  16035. ))
  16036. characterMakers.push(() => makeCharacter(
  16037. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16038. {
  16039. front: {
  16040. height: math.unit(6, "feet"),
  16041. weight: math.unit(150, "lb"),
  16042. name: "Front",
  16043. image: {
  16044. source: "./media/characters/kyle/front.svg",
  16045. extra: 1069 / 962,
  16046. bottom: 77.228 / 1727.45
  16047. }
  16048. },
  16049. },
  16050. [
  16051. {
  16052. name: "Macro",
  16053. height: math.unit(150, "feet"),
  16054. default: true
  16055. },
  16056. ]
  16057. ))
  16058. characterMakers.push(() => makeCharacter(
  16059. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16060. {
  16061. front: {
  16062. height: math.unit(6, "feet"),
  16063. weight: math.unit(300, "lb"),
  16064. name: "Front",
  16065. image: {
  16066. source: "./media/characters/duncan/front.svg",
  16067. extra: 1650 / 1482,
  16068. bottom: 0.05
  16069. }
  16070. },
  16071. },
  16072. [
  16073. {
  16074. name: "Macro",
  16075. height: math.unit(100, "feet"),
  16076. default: true
  16077. },
  16078. ]
  16079. ))
  16080. characterMakers.push(() => makeCharacter(
  16081. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16082. {
  16083. front: {
  16084. height: math.unit(5 + 4 / 12, "feet"),
  16085. weight: math.unit(220, "lb"),
  16086. name: "Front",
  16087. image: {
  16088. source: "./media/characters/memory/front.svg",
  16089. extra: 3641 / 3545,
  16090. bottom: 0.03
  16091. }
  16092. },
  16093. back: {
  16094. height: math.unit(5 + 4 / 12, "feet"),
  16095. weight: math.unit(220, "lb"),
  16096. name: "Back",
  16097. image: {
  16098. source: "./media/characters/memory/back.svg",
  16099. extra: 3641 / 3545,
  16100. bottom: 0.025
  16101. }
  16102. },
  16103. frontSkirt: {
  16104. height: math.unit(5 + 4 / 12, "feet"),
  16105. weight: math.unit(220, "lb"),
  16106. name: "Front (Skirt)",
  16107. image: {
  16108. source: "./media/characters/memory/front-skirt.svg",
  16109. extra: 3641 / 3545,
  16110. bottom: 0.03
  16111. }
  16112. },
  16113. frontDress: {
  16114. height: math.unit(5 + 4 / 12, "feet"),
  16115. weight: math.unit(220, "lb"),
  16116. name: "Front (Dress)",
  16117. image: {
  16118. source: "./media/characters/memory/front-dress.svg",
  16119. extra: 3641 / 3545,
  16120. bottom: 0.03
  16121. }
  16122. },
  16123. },
  16124. [
  16125. {
  16126. name: "Micro",
  16127. height: math.unit(6, "inches"),
  16128. default: true
  16129. },
  16130. {
  16131. name: "Normal",
  16132. height: math.unit(5 + 4 / 12, "feet")
  16133. },
  16134. ]
  16135. ))
  16136. characterMakers.push(() => makeCharacter(
  16137. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16138. {
  16139. front: {
  16140. height: math.unit(4 + 11 / 12, "feet"),
  16141. weight: math.unit(100, "lb"),
  16142. name: "Front",
  16143. image: {
  16144. source: "./media/characters/luno/front.svg",
  16145. extra: 1535 / 1487,
  16146. bottom: 0.03
  16147. }
  16148. },
  16149. },
  16150. [
  16151. {
  16152. name: "Micro",
  16153. height: math.unit(3, "inches")
  16154. },
  16155. {
  16156. name: "Normal",
  16157. height: math.unit(4 + 11 / 12, "feet"),
  16158. default: true
  16159. },
  16160. {
  16161. name: "Macro",
  16162. height: math.unit(300, "feet")
  16163. },
  16164. {
  16165. name: "Megamacro",
  16166. height: math.unit(700, "miles")
  16167. },
  16168. ]
  16169. ))
  16170. characterMakers.push(() => makeCharacter(
  16171. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16172. {
  16173. front: {
  16174. height: math.unit(6 + 2 / 12, "feet"),
  16175. weight: math.unit(170, "lb"),
  16176. name: "Front",
  16177. image: {
  16178. source: "./media/characters/jamesy/front.svg",
  16179. extra: 440 / 382,
  16180. bottom: 0.005
  16181. }
  16182. },
  16183. },
  16184. [
  16185. {
  16186. name: "Micro",
  16187. height: math.unit(3, "inches")
  16188. },
  16189. {
  16190. name: "Normal",
  16191. height: math.unit(6 + 2 / 12, "feet"),
  16192. default: true
  16193. },
  16194. {
  16195. name: "Macro",
  16196. height: math.unit(300, "feet")
  16197. },
  16198. {
  16199. name: "Megamacro",
  16200. height: math.unit(700, "miles")
  16201. },
  16202. ]
  16203. ))
  16204. characterMakers.push(() => makeCharacter(
  16205. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16206. {
  16207. front: {
  16208. height: math.unit(6, "feet"),
  16209. weight: math.unit(160, "lb"),
  16210. name: "Front",
  16211. image: {
  16212. source: "./media/characters/mark/front.svg",
  16213. extra: 3300 / 3100,
  16214. bottom: 136.42 / 3440.47
  16215. }
  16216. },
  16217. },
  16218. [
  16219. {
  16220. name: "Macro",
  16221. height: math.unit(120, "meters")
  16222. },
  16223. {
  16224. name: "Bigger Macro",
  16225. height: math.unit(350, "meters")
  16226. },
  16227. {
  16228. name: "Megamacro",
  16229. height: math.unit(8, "km"),
  16230. default: true
  16231. },
  16232. {
  16233. name: "Continental",
  16234. height: math.unit(4550, "km")
  16235. },
  16236. {
  16237. name: "Planetary",
  16238. height: math.unit(65000, "km")
  16239. },
  16240. ]
  16241. ))
  16242. characterMakers.push(() => makeCharacter(
  16243. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16244. {
  16245. front: {
  16246. height: math.unit(6, "feet"),
  16247. weight: math.unit(400, "lb"),
  16248. name: "Front",
  16249. image: {
  16250. source: "./media/characters/mac/front.svg",
  16251. extra: 1048 / 987.7,
  16252. bottom: 60 / 1107.6,
  16253. }
  16254. },
  16255. },
  16256. [
  16257. {
  16258. name: "Macro",
  16259. height: math.unit(500, "feet"),
  16260. default: true
  16261. },
  16262. ]
  16263. ))
  16264. characterMakers.push(() => makeCharacter(
  16265. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16266. {
  16267. front: {
  16268. height: math.unit(5 + 2 / 12, "feet"),
  16269. weight: math.unit(190, "lb"),
  16270. name: "Front",
  16271. image: {
  16272. source: "./media/characters/bari/front.svg",
  16273. extra: 3156 / 2880,
  16274. bottom: 0.03
  16275. }
  16276. },
  16277. back: {
  16278. height: math.unit(5 + 2 / 12, "feet"),
  16279. weight: math.unit(190, "lb"),
  16280. name: "Back",
  16281. image: {
  16282. source: "./media/characters/bari/back.svg",
  16283. extra: 3260 / 2834,
  16284. bottom: 0.025
  16285. }
  16286. },
  16287. frontPlush: {
  16288. height: math.unit(5 + 2 / 12, "feet"),
  16289. weight: math.unit(190, "lb"),
  16290. name: "Front (Plush)",
  16291. image: {
  16292. source: "./media/characters/bari/front-plush.svg",
  16293. extra: 1112 / 1061,
  16294. bottom: 0.002
  16295. }
  16296. },
  16297. },
  16298. [
  16299. {
  16300. name: "Micro",
  16301. height: math.unit(3, "inches")
  16302. },
  16303. {
  16304. name: "Normal",
  16305. height: math.unit(5 + 2 / 12, "feet"),
  16306. default: true
  16307. },
  16308. {
  16309. name: "Macro",
  16310. height: math.unit(20, "feet")
  16311. },
  16312. ]
  16313. ))
  16314. characterMakers.push(() => makeCharacter(
  16315. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16316. {
  16317. front: {
  16318. height: math.unit(6 + 1 / 12, "feet"),
  16319. weight: math.unit(275, "lb"),
  16320. name: "Front",
  16321. image: {
  16322. source: "./media/characters/hunter-misha-raven/front.svg"
  16323. }
  16324. },
  16325. },
  16326. [
  16327. {
  16328. name: "Mortal",
  16329. height: math.unit(6 + 1 / 12, "feet")
  16330. },
  16331. {
  16332. name: "Divine",
  16333. height: math.unit(1.12134e34, "parsecs"),
  16334. default: true
  16335. },
  16336. ]
  16337. ))
  16338. characterMakers.push(() => makeCharacter(
  16339. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16340. {
  16341. front: {
  16342. height: math.unit(6 + 3 / 12, "feet"),
  16343. weight: math.unit(220, "lb"),
  16344. name: "Front",
  16345. image: {
  16346. source: "./media/characters/max-calore/front.svg",
  16347. extra: 1700 / 1648,
  16348. bottom: 0.01
  16349. }
  16350. },
  16351. back: {
  16352. height: math.unit(6 + 3 / 12, "feet"),
  16353. weight: math.unit(220, "lb"),
  16354. name: "Back",
  16355. image: {
  16356. source: "./media/characters/max-calore/back.svg",
  16357. extra: 1700 / 1648,
  16358. bottom: 0.01
  16359. }
  16360. },
  16361. },
  16362. [
  16363. {
  16364. name: "Normal",
  16365. height: math.unit(6 + 3 / 12, "feet"),
  16366. default: true
  16367. },
  16368. ]
  16369. ))
  16370. characterMakers.push(() => makeCharacter(
  16371. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16372. {
  16373. side: {
  16374. height: math.unit(2 + 8 / 12, "feet"),
  16375. weight: math.unit(99, "lb"),
  16376. name: "Side",
  16377. image: {
  16378. source: "./media/characters/aspen/side.svg",
  16379. extra: 152 / 138,
  16380. bottom: 0.032
  16381. }
  16382. },
  16383. },
  16384. [
  16385. {
  16386. name: "Normal",
  16387. height: math.unit(2 + 8 / 12, "feet"),
  16388. default: true
  16389. },
  16390. ]
  16391. ))
  16392. characterMakers.push(() => makeCharacter(
  16393. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16394. {
  16395. side: {
  16396. height: math.unit(3 + 2 / 12, "feet"),
  16397. weight: math.unit(224, "lb"),
  16398. name: "Side",
  16399. image: {
  16400. source: "./media/characters/sheila-feral-wolf/side.svg",
  16401. extra: 179 / 166,
  16402. bottom: 0.03
  16403. }
  16404. },
  16405. },
  16406. [
  16407. {
  16408. name: "Normal",
  16409. height: math.unit(3 + 2 / 12, "feet"),
  16410. default: true
  16411. },
  16412. ]
  16413. ))
  16414. characterMakers.push(() => makeCharacter(
  16415. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16416. {
  16417. side: {
  16418. height: math.unit(1 + 9 / 12, "feet"),
  16419. weight: math.unit(38, "lb"),
  16420. name: "Side",
  16421. image: {
  16422. source: "./media/characters/michelle/side.svg",
  16423. extra: 147 / 136.7,
  16424. bottom: 0.03
  16425. }
  16426. },
  16427. },
  16428. [
  16429. {
  16430. name: "Normal",
  16431. height: math.unit(1 + 9 / 12, "feet"),
  16432. default: true
  16433. },
  16434. ]
  16435. ))
  16436. characterMakers.push(() => makeCharacter(
  16437. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16438. {
  16439. front: {
  16440. height: math.unit(1 + 1 / 12, "feet"),
  16441. weight: math.unit(18, "lb"),
  16442. name: "Front",
  16443. image: {
  16444. source: "./media/characters/nino/front.svg"
  16445. }
  16446. },
  16447. },
  16448. [
  16449. {
  16450. name: "Normal",
  16451. height: math.unit(1 + 1 / 12, "feet"),
  16452. default: true
  16453. },
  16454. ]
  16455. ))
  16456. characterMakers.push(() => makeCharacter(
  16457. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16458. {
  16459. front: {
  16460. height: math.unit(1, "feet"),
  16461. weight: math.unit(16, "lb"),
  16462. name: "Front",
  16463. image: {
  16464. source: "./media/characters/viola/front.svg"
  16465. }
  16466. },
  16467. },
  16468. [
  16469. {
  16470. name: "Normal",
  16471. height: math.unit(1, "feet"),
  16472. default: true
  16473. },
  16474. ]
  16475. ))
  16476. characterMakers.push(() => makeCharacter(
  16477. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16478. {
  16479. front: {
  16480. height: math.unit(6 + 5 / 12, "feet"),
  16481. weight: math.unit(580, "lb"),
  16482. name: "Front",
  16483. image: {
  16484. source: "./media/characters/atlas/front.svg",
  16485. extra: 298.5 / 290,
  16486. bottom: 0.015
  16487. }
  16488. },
  16489. },
  16490. [
  16491. {
  16492. name: "Normal",
  16493. height: math.unit(6 + 5 / 12, "feet"),
  16494. default: true
  16495. },
  16496. ]
  16497. ))
  16498. characterMakers.push(() => makeCharacter(
  16499. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16500. {
  16501. side: {
  16502. height: math.unit(1 + 10 / 12, "feet"),
  16503. weight: math.unit(25, "lb"),
  16504. name: "Side",
  16505. image: {
  16506. source: "./media/characters/davy/side.svg",
  16507. extra: 200 / 170,
  16508. bottom: 0.01
  16509. }
  16510. },
  16511. },
  16512. [
  16513. {
  16514. name: "Normal",
  16515. height: math.unit(1 + 10 / 12, "feet"),
  16516. default: true
  16517. },
  16518. ]
  16519. ))
  16520. characterMakers.push(() => makeCharacter(
  16521. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16522. {
  16523. side: {
  16524. height: math.unit(4 + 8 / 12, "feet"),
  16525. weight: math.unit(166, "lb"),
  16526. name: "Side",
  16527. image: {
  16528. source: "./media/characters/fiona/side.svg",
  16529. extra: 232 / 220,
  16530. bottom: 0.03
  16531. }
  16532. },
  16533. },
  16534. [
  16535. {
  16536. name: "Normal",
  16537. height: math.unit(4 + 8 / 12, "feet"),
  16538. default: true
  16539. },
  16540. ]
  16541. ))
  16542. characterMakers.push(() => makeCharacter(
  16543. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16544. {
  16545. front: {
  16546. height: math.unit(2, "feet"),
  16547. weight: math.unit(62, "lb"),
  16548. name: "Front",
  16549. image: {
  16550. source: "./media/characters/lyla/front.svg",
  16551. bottom: 0.1
  16552. }
  16553. },
  16554. },
  16555. [
  16556. {
  16557. name: "Normal",
  16558. height: math.unit(2, "feet"),
  16559. default: true
  16560. },
  16561. ]
  16562. ))
  16563. characterMakers.push(() => makeCharacter(
  16564. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16565. {
  16566. side: {
  16567. height: math.unit(1.8, "feet"),
  16568. weight: math.unit(44, "lb"),
  16569. name: "Side",
  16570. image: {
  16571. source: "./media/characters/perseus/side.svg",
  16572. bottom: 0.21
  16573. }
  16574. },
  16575. },
  16576. [
  16577. {
  16578. name: "Normal",
  16579. height: math.unit(1.8, "feet"),
  16580. default: true
  16581. },
  16582. ]
  16583. ))
  16584. characterMakers.push(() => makeCharacter(
  16585. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16586. {
  16587. side: {
  16588. height: math.unit(4 + 2 / 12, "feet"),
  16589. weight: math.unit(20, "lb"),
  16590. name: "Side",
  16591. image: {
  16592. source: "./media/characters/remus/side.svg"
  16593. }
  16594. },
  16595. },
  16596. [
  16597. {
  16598. name: "Normal",
  16599. height: math.unit(4 + 2 / 12, "feet"),
  16600. default: true
  16601. },
  16602. ]
  16603. ))
  16604. characterMakers.push(() => makeCharacter(
  16605. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16606. {
  16607. front: {
  16608. height: math.unit(4 + 11 / 12, "feet"),
  16609. weight: math.unit(114, "lb"),
  16610. name: "Front",
  16611. image: {
  16612. source: "./media/characters/raf/front.svg",
  16613. bottom: 20.5 / 1863
  16614. }
  16615. },
  16616. side: {
  16617. height: math.unit(4 + 11 / 12, "feet"),
  16618. weight: math.unit(114, "lb"),
  16619. name: "Side",
  16620. image: {
  16621. source: "./media/characters/raf/side.svg",
  16622. bottom: 22 / 1822
  16623. }
  16624. },
  16625. },
  16626. [
  16627. {
  16628. name: "Micro",
  16629. height: math.unit(2, "inches")
  16630. },
  16631. {
  16632. name: "Normal",
  16633. height: math.unit(4 + 11 / 12, "feet"),
  16634. default: true
  16635. },
  16636. {
  16637. name: "Macro",
  16638. height: math.unit(70, "feet")
  16639. },
  16640. ]
  16641. ))
  16642. characterMakers.push(() => makeCharacter(
  16643. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16644. {
  16645. front: {
  16646. height: math.unit(1.5, "meters"),
  16647. weight: math.unit(68, "kg"),
  16648. name: "Front",
  16649. image: {
  16650. source: "./media/characters/liam-einarr/front.svg",
  16651. extra: 2822 / 2666
  16652. }
  16653. },
  16654. back: {
  16655. height: math.unit(1.5, "meters"),
  16656. weight: math.unit(68, "kg"),
  16657. name: "Back",
  16658. image: {
  16659. source: "./media/characters/liam-einarr/back.svg",
  16660. extra: 2822 / 2666,
  16661. bottom: 0.015
  16662. }
  16663. },
  16664. },
  16665. [
  16666. {
  16667. name: "Normal",
  16668. height: math.unit(1.5, "meters"),
  16669. default: true
  16670. },
  16671. {
  16672. name: "Macro",
  16673. height: math.unit(150, "meters")
  16674. },
  16675. {
  16676. name: "Megamacro",
  16677. height: math.unit(35, "km")
  16678. },
  16679. ]
  16680. ))
  16681. characterMakers.push(() => makeCharacter(
  16682. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16683. {
  16684. front: {
  16685. height: math.unit(6, "feet"),
  16686. weight: math.unit(75, "kg"),
  16687. name: "Front",
  16688. image: {
  16689. source: "./media/characters/linda/front.svg",
  16690. extra: 930 / 874,
  16691. bottom: 0.004
  16692. }
  16693. },
  16694. },
  16695. [
  16696. {
  16697. name: "Normal",
  16698. height: math.unit(6, "feet"),
  16699. default: true
  16700. },
  16701. ]
  16702. ))
  16703. characterMakers.push(() => makeCharacter(
  16704. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16705. {
  16706. front: {
  16707. height: math.unit(6 + 8 / 12, "feet"),
  16708. weight: math.unit(220, "lb"),
  16709. name: "Front",
  16710. image: {
  16711. source: "./media/characters/caylex/front.svg",
  16712. extra: 821 / 772,
  16713. bottom: 0.07
  16714. }
  16715. },
  16716. back: {
  16717. height: math.unit(6 + 8 / 12, "feet"),
  16718. weight: math.unit(220, "lb"),
  16719. name: "Back",
  16720. image: {
  16721. source: "./media/characters/caylex/back.svg",
  16722. extra: 821 / 772,
  16723. bottom: 0.022
  16724. }
  16725. },
  16726. hand: {
  16727. height: math.unit(1.25, "feet"),
  16728. name: "Hand",
  16729. image: {
  16730. source: "./media/characters/caylex/hand.svg"
  16731. }
  16732. },
  16733. foot: {
  16734. height: math.unit(1.6, "feet"),
  16735. name: "Foot",
  16736. image: {
  16737. source: "./media/characters/caylex/foot.svg"
  16738. }
  16739. },
  16740. armored: {
  16741. height: math.unit(6 + 8 / 12, "feet"),
  16742. weight: math.unit(250, "lb"),
  16743. name: "Armored",
  16744. image: {
  16745. source: "./media/characters/caylex/armored.svg",
  16746. extra: 1420 / 1310,
  16747. bottom: 0.045
  16748. }
  16749. },
  16750. },
  16751. [
  16752. {
  16753. name: "Normal",
  16754. height: math.unit(6 + 8 / 12, "feet"),
  16755. default: true
  16756. },
  16757. {
  16758. name: "Normal+",
  16759. height: math.unit(12, "feet")
  16760. },
  16761. ]
  16762. ))
  16763. characterMakers.push(() => makeCharacter(
  16764. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16765. {
  16766. front: {
  16767. height: math.unit(7 + 6 / 12, "feet"),
  16768. weight: math.unit(288, "lb"),
  16769. name: "Front",
  16770. image: {
  16771. source: "./media/characters/alana/front.svg",
  16772. extra: 679 / 653,
  16773. bottom: 22.5 / 701
  16774. }
  16775. },
  16776. },
  16777. [
  16778. {
  16779. name: "Normal",
  16780. height: math.unit(7 + 6 / 12, "feet")
  16781. },
  16782. {
  16783. name: "Large",
  16784. height: math.unit(50, "feet")
  16785. },
  16786. {
  16787. name: "Macro",
  16788. height: math.unit(100, "feet"),
  16789. default: true
  16790. },
  16791. {
  16792. name: "Macro+",
  16793. height: math.unit(200, "feet")
  16794. },
  16795. ]
  16796. ))
  16797. characterMakers.push(() => makeCharacter(
  16798. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16799. {
  16800. front: {
  16801. height: math.unit(6 + 1 / 12, "feet"),
  16802. weight: math.unit(210, "lb"),
  16803. name: "Front",
  16804. image: {
  16805. source: "./media/characters/hasani/front.svg",
  16806. extra: 244 / 232,
  16807. bottom: 0.01
  16808. }
  16809. },
  16810. back: {
  16811. height: math.unit(6 + 1 / 12, "feet"),
  16812. weight: math.unit(210, "lb"),
  16813. name: "Back",
  16814. image: {
  16815. source: "./media/characters/hasani/back.svg",
  16816. extra: 244 / 232,
  16817. bottom: 0.01
  16818. }
  16819. },
  16820. },
  16821. [
  16822. {
  16823. name: "Normal",
  16824. height: math.unit(6 + 1 / 12, "feet")
  16825. },
  16826. {
  16827. name: "Macro",
  16828. height: math.unit(175, "feet"),
  16829. default: true
  16830. },
  16831. ]
  16832. ))
  16833. characterMakers.push(() => makeCharacter(
  16834. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16835. {
  16836. front: {
  16837. height: math.unit(1.82, "meters"),
  16838. weight: math.unit(140, "lb"),
  16839. name: "Front",
  16840. image: {
  16841. source: "./media/characters/nita/front.svg",
  16842. extra: 2473 / 2363,
  16843. bottom: 0.01
  16844. }
  16845. },
  16846. },
  16847. [
  16848. {
  16849. name: "Normal",
  16850. height: math.unit(1.82, "m")
  16851. },
  16852. {
  16853. name: "Macro",
  16854. height: math.unit(300, "m")
  16855. },
  16856. {
  16857. name: "Mistake Canon",
  16858. height: math.unit(0.5, "miles"),
  16859. default: true
  16860. },
  16861. {
  16862. name: "Big Mistake",
  16863. height: math.unit(13, "miles")
  16864. },
  16865. {
  16866. name: "Playing God",
  16867. height: math.unit(2450, "miles")
  16868. },
  16869. ]
  16870. ))
  16871. characterMakers.push(() => makeCharacter(
  16872. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16873. {
  16874. front: {
  16875. height: math.unit(4, "feet"),
  16876. weight: math.unit(120, "lb"),
  16877. name: "Front",
  16878. image: {
  16879. source: "./media/characters/shiriko/front.svg",
  16880. extra: 195 / 188
  16881. }
  16882. },
  16883. },
  16884. [
  16885. {
  16886. name: "Normal",
  16887. height: math.unit(4, "feet"),
  16888. default: true
  16889. },
  16890. ]
  16891. ))
  16892. characterMakers.push(() => makeCharacter(
  16893. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16894. {
  16895. front: {
  16896. height: math.unit(6, "feet"),
  16897. name: "front",
  16898. image: {
  16899. source: "./media/characters/deja/front.svg",
  16900. extra: 926 / 840,
  16901. bottom: 0.07
  16902. }
  16903. },
  16904. },
  16905. [
  16906. {
  16907. name: "Planck Length",
  16908. height: math.unit(1.6e-35, "meters")
  16909. },
  16910. {
  16911. name: "Normal",
  16912. height: math.unit(30.48, "meters"),
  16913. default: true
  16914. },
  16915. {
  16916. name: "Universal",
  16917. height: math.unit(8.8e26, "meters")
  16918. },
  16919. ]
  16920. ))
  16921. characterMakers.push(() => makeCharacter(
  16922. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16923. {
  16924. side: {
  16925. height: math.unit(8, "feet"),
  16926. weight: math.unit(6300, "lb"),
  16927. name: "Side",
  16928. image: {
  16929. source: "./media/characters/anima/side.svg",
  16930. bottom: 0.035
  16931. }
  16932. },
  16933. },
  16934. [
  16935. {
  16936. name: "Normal",
  16937. height: math.unit(8, "feet"),
  16938. default: true
  16939. },
  16940. ]
  16941. ))
  16942. characterMakers.push(() => makeCharacter(
  16943. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16944. {
  16945. front: {
  16946. height: math.unit(8, "feet"),
  16947. weight: math.unit(350, "lb"),
  16948. name: "Front",
  16949. image: {
  16950. source: "./media/characters/bianca/front.svg",
  16951. extra: 234 / 225,
  16952. bottom: 0.03
  16953. }
  16954. },
  16955. },
  16956. [
  16957. {
  16958. name: "Normal",
  16959. height: math.unit(8, "feet"),
  16960. default: true
  16961. },
  16962. ]
  16963. ))
  16964. characterMakers.push(() => makeCharacter(
  16965. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16966. {
  16967. front: {
  16968. height: math.unit(6, "feet"),
  16969. weight: math.unit(150, "lb"),
  16970. name: "Front",
  16971. image: {
  16972. source: "./media/characters/adinia/front.svg",
  16973. extra: 1845 / 1672,
  16974. bottom: 0.02
  16975. }
  16976. },
  16977. back: {
  16978. height: math.unit(6, "feet"),
  16979. weight: math.unit(150, "lb"),
  16980. name: "Back",
  16981. image: {
  16982. source: "./media/characters/adinia/back.svg",
  16983. extra: 1845 / 1672,
  16984. bottom: 0.002
  16985. }
  16986. },
  16987. },
  16988. [
  16989. {
  16990. name: "Normal",
  16991. height: math.unit(11 + 5 / 12, "feet"),
  16992. default: true
  16993. },
  16994. ]
  16995. ))
  16996. characterMakers.push(() => makeCharacter(
  16997. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16998. {
  16999. front: {
  17000. height: math.unit(3, "meters"),
  17001. weight: math.unit(200, "kg"),
  17002. name: "Front",
  17003. image: {
  17004. source: "./media/characters/lykasa/front.svg",
  17005. extra: 1076 / 976,
  17006. bottom: 0.06
  17007. }
  17008. },
  17009. },
  17010. [
  17011. {
  17012. name: "Normal",
  17013. height: math.unit(3, "meters")
  17014. },
  17015. {
  17016. name: "Kaiju",
  17017. height: math.unit(120, "meters"),
  17018. default: true
  17019. },
  17020. {
  17021. name: "Mega Kaiju",
  17022. height: math.unit(240, "km")
  17023. },
  17024. {
  17025. name: "Giga Kaiju",
  17026. height: math.unit(400, "megameters")
  17027. },
  17028. {
  17029. name: "Tera Kaiju",
  17030. height: math.unit(800, "gigameters")
  17031. },
  17032. {
  17033. name: "Kaiju Dragon Goddess",
  17034. height: math.unit(26, "zettaparsecs")
  17035. },
  17036. ]
  17037. ))
  17038. characterMakers.push(() => makeCharacter(
  17039. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17040. {
  17041. side: {
  17042. height: math.unit(283 / 124 * 6, "feet"),
  17043. weight: math.unit(35000, "lb"),
  17044. name: "Side",
  17045. image: {
  17046. source: "./media/characters/malfaren/side.svg",
  17047. extra: 2500 / 1010,
  17048. bottom: 0.01
  17049. }
  17050. },
  17051. front: {
  17052. height: math.unit(22.36, "feet"),
  17053. weight: math.unit(35000, "lb"),
  17054. name: "Front",
  17055. image: {
  17056. source: "./media/characters/malfaren/front.svg",
  17057. extra: 1631 / 1476,
  17058. bottom: 0.01
  17059. }
  17060. },
  17061. maw: {
  17062. height: math.unit(6.9, "feet"),
  17063. name: "Maw",
  17064. image: {
  17065. source: "./media/characters/malfaren/maw.svg"
  17066. }
  17067. },
  17068. },
  17069. [
  17070. {
  17071. name: "Big",
  17072. height: math.unit(283 / 162 * 6, "feet"),
  17073. },
  17074. {
  17075. name: "Bigger",
  17076. height: math.unit(283 / 124 * 6, "feet")
  17077. },
  17078. {
  17079. name: "Massive",
  17080. height: math.unit(283 / 92 * 6, "feet"),
  17081. default: true
  17082. },
  17083. {
  17084. name: "👀💦",
  17085. height: math.unit(283 / 73 * 6, "feet"),
  17086. },
  17087. ]
  17088. ))
  17089. characterMakers.push(() => makeCharacter(
  17090. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17091. {
  17092. front: {
  17093. height: math.unit(1.7, "m"),
  17094. weight: math.unit(70, "kg"),
  17095. name: "Front",
  17096. image: {
  17097. source: "./media/characters/kernel/front.svg",
  17098. extra: 222 / 210,
  17099. bottom: 0.007
  17100. }
  17101. },
  17102. },
  17103. [
  17104. {
  17105. name: "Nano",
  17106. height: math.unit(17, "micrometers")
  17107. },
  17108. {
  17109. name: "Micro",
  17110. height: math.unit(1.7, "mm")
  17111. },
  17112. {
  17113. name: "Small",
  17114. height: math.unit(1.7, "cm")
  17115. },
  17116. {
  17117. name: "Normal",
  17118. height: math.unit(1.7, "m"),
  17119. default: true
  17120. },
  17121. ]
  17122. ))
  17123. characterMakers.push(() => makeCharacter(
  17124. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17125. {
  17126. front: {
  17127. height: math.unit(1.75, "meters"),
  17128. weight: math.unit(65, "kg"),
  17129. name: "Front",
  17130. image: {
  17131. source: "./media/characters/jayne-folest/front.svg",
  17132. extra: 2115 / 2007,
  17133. bottom: 0.02
  17134. }
  17135. },
  17136. back: {
  17137. height: math.unit(1.75, "meters"),
  17138. weight: math.unit(65, "kg"),
  17139. name: "Back",
  17140. image: {
  17141. source: "./media/characters/jayne-folest/back.svg",
  17142. extra: 2115 / 2007,
  17143. bottom: 0.005
  17144. }
  17145. },
  17146. frontClothed: {
  17147. height: math.unit(1.75, "meters"),
  17148. weight: math.unit(65, "kg"),
  17149. name: "Front (Clothed)",
  17150. image: {
  17151. source: "./media/characters/jayne-folest/front-clothed.svg",
  17152. extra: 2115 / 2007,
  17153. bottom: 0.035
  17154. }
  17155. },
  17156. hand: {
  17157. height: math.unit(1 / 1.260, "feet"),
  17158. name: "Hand",
  17159. image: {
  17160. source: "./media/characters/jayne-folest/hand.svg"
  17161. }
  17162. },
  17163. foot: {
  17164. height: math.unit(1 / 0.918, "feet"),
  17165. name: "Foot",
  17166. image: {
  17167. source: "./media/characters/jayne-folest/foot.svg"
  17168. }
  17169. },
  17170. },
  17171. [
  17172. {
  17173. name: "Micro",
  17174. height: math.unit(4, "cm")
  17175. },
  17176. {
  17177. name: "Normal",
  17178. height: math.unit(1.75, "meters")
  17179. },
  17180. {
  17181. name: "Macro",
  17182. height: math.unit(47.5, "meters"),
  17183. default: true
  17184. },
  17185. ]
  17186. ))
  17187. characterMakers.push(() => makeCharacter(
  17188. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17189. {
  17190. front: {
  17191. height: math.unit(180, "cm"),
  17192. weight: math.unit(70, "kg"),
  17193. name: "Front",
  17194. image: {
  17195. source: "./media/characters/algier/front.svg",
  17196. extra: 596 / 572,
  17197. bottom: 0.04
  17198. }
  17199. },
  17200. back: {
  17201. height: math.unit(180, "cm"),
  17202. weight: math.unit(70, "kg"),
  17203. name: "Back",
  17204. image: {
  17205. source: "./media/characters/algier/back.svg",
  17206. extra: 596 / 572,
  17207. bottom: 0.025
  17208. }
  17209. },
  17210. frontdressed: {
  17211. height: math.unit(180, "cm"),
  17212. weight: math.unit(150, "kg"),
  17213. name: "Front-dressed",
  17214. image: {
  17215. source: "./media/characters/algier/front-dressed.svg",
  17216. extra: 596 / 572,
  17217. bottom: 0.038
  17218. }
  17219. },
  17220. },
  17221. [
  17222. {
  17223. name: "Micro",
  17224. height: math.unit(5, "cm")
  17225. },
  17226. {
  17227. name: "Normal",
  17228. height: math.unit(180, "cm"),
  17229. default: true
  17230. },
  17231. {
  17232. name: "Macro",
  17233. height: math.unit(64, "m")
  17234. },
  17235. ]
  17236. ))
  17237. characterMakers.push(() => makeCharacter(
  17238. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17239. {
  17240. upright: {
  17241. height: math.unit(7, "feet"),
  17242. weight: math.unit(300, "lb"),
  17243. name: "Upright",
  17244. image: {
  17245. source: "./media/characters/pretzel/upright.svg",
  17246. extra: 534 / 522,
  17247. bottom: 0.065
  17248. }
  17249. },
  17250. sprawling: {
  17251. height: math.unit(3.75, "feet"),
  17252. weight: math.unit(300, "lb"),
  17253. name: "Sprawling",
  17254. image: {
  17255. source: "./media/characters/pretzel/sprawling.svg",
  17256. extra: 314 / 281,
  17257. bottom: 0.1
  17258. }
  17259. },
  17260. tongue: {
  17261. height: math.unit(2, "feet"),
  17262. name: "Tongue",
  17263. image: {
  17264. source: "./media/characters/pretzel/tongue.svg"
  17265. }
  17266. },
  17267. },
  17268. [
  17269. {
  17270. name: "Normal",
  17271. height: math.unit(7, "feet"),
  17272. default: true
  17273. },
  17274. {
  17275. name: "Oversized",
  17276. height: math.unit(15, "feet")
  17277. },
  17278. {
  17279. name: "Huge",
  17280. height: math.unit(30, "feet")
  17281. },
  17282. {
  17283. name: "Macro",
  17284. height: math.unit(250, "feet")
  17285. },
  17286. ]
  17287. ))
  17288. characterMakers.push(() => makeCharacter(
  17289. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17290. {
  17291. sideFront: {
  17292. height: math.unit(5 + 2 / 12, "feet"),
  17293. weight: math.unit(120, "lb"),
  17294. name: "Front Side",
  17295. image: {
  17296. source: "./media/characters/roxi/side-front.svg",
  17297. extra: 2924 / 2717,
  17298. bottom: 0.08
  17299. }
  17300. },
  17301. sideBack: {
  17302. height: math.unit(5 + 2 / 12, "feet"),
  17303. weight: math.unit(120, "lb"),
  17304. name: "Back Side",
  17305. image: {
  17306. source: "./media/characters/roxi/side-back.svg",
  17307. extra: 2904 / 2693,
  17308. bottom: 0.06
  17309. }
  17310. },
  17311. front: {
  17312. height: math.unit(5 + 2 / 12, "feet"),
  17313. weight: math.unit(120, "lb"),
  17314. name: "Front",
  17315. image: {
  17316. source: "./media/characters/roxi/front.svg",
  17317. extra: 2028 / 1907,
  17318. bottom: 0.01
  17319. }
  17320. },
  17321. frontAlt: {
  17322. height: math.unit(5 + 2 / 12, "feet"),
  17323. weight: math.unit(120, "lb"),
  17324. name: "Front (Alt)",
  17325. image: {
  17326. source: "./media/characters/roxi/front-alt.svg",
  17327. extra: 1828 / 1798,
  17328. bottom: 0.01
  17329. }
  17330. },
  17331. sitting: {
  17332. height: math.unit(2.8, "feet"),
  17333. weight: math.unit(120, "lb"),
  17334. name: "Sitting",
  17335. image: {
  17336. source: "./media/characters/roxi/sitting.svg",
  17337. extra: 2660 / 2462,
  17338. bottom: 0.1
  17339. }
  17340. },
  17341. },
  17342. [
  17343. {
  17344. name: "Normal",
  17345. height: math.unit(5 + 2 / 12, "feet"),
  17346. default: true
  17347. },
  17348. ]
  17349. ))
  17350. characterMakers.push(() => makeCharacter(
  17351. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17352. {
  17353. side: {
  17354. height: math.unit(55, "feet"),
  17355. weight: math.unit(153, "tons"),
  17356. name: "Side",
  17357. image: {
  17358. source: "./media/characters/shadow/side.svg",
  17359. extra: 701 / 628,
  17360. bottom: 0.02
  17361. }
  17362. },
  17363. flying: {
  17364. height: math.unit(145, "feet"),
  17365. weight: math.unit(153, "tons"),
  17366. name: "Flying",
  17367. image: {
  17368. source: "./media/characters/shadow/flying.svg"
  17369. }
  17370. },
  17371. },
  17372. [
  17373. {
  17374. name: "Normal",
  17375. height: math.unit(55, "feet"),
  17376. default: true
  17377. },
  17378. ]
  17379. ))
  17380. characterMakers.push(() => makeCharacter(
  17381. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17382. {
  17383. front: {
  17384. height: math.unit(6, "feet"),
  17385. weight: math.unit(200, "lb"),
  17386. name: "Front",
  17387. image: {
  17388. source: "./media/characters/marcie/front.svg",
  17389. extra: 960 / 876,
  17390. bottom: 58 / 1017.87
  17391. }
  17392. },
  17393. },
  17394. [
  17395. {
  17396. name: "Macro",
  17397. height: math.unit(1, "mile"),
  17398. default: true
  17399. },
  17400. ]
  17401. ))
  17402. characterMakers.push(() => makeCharacter(
  17403. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17404. {
  17405. front: {
  17406. height: math.unit(7, "feet"),
  17407. weight: math.unit(200, "lb"),
  17408. name: "Front",
  17409. image: {
  17410. source: "./media/characters/kachina/front.svg",
  17411. extra: 1290.68 / 1119,
  17412. bottom: 36.5 / 1327.18
  17413. }
  17414. },
  17415. },
  17416. [
  17417. {
  17418. name: "Normal",
  17419. height: math.unit(7, "feet"),
  17420. default: true
  17421. },
  17422. ]
  17423. ))
  17424. characterMakers.push(() => makeCharacter(
  17425. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17426. {
  17427. looking: {
  17428. height: math.unit(2, "meters"),
  17429. weight: math.unit(300, "kg"),
  17430. name: "Looking",
  17431. image: {
  17432. source: "./media/characters/kash/looking.svg",
  17433. extra: 474 / 344,
  17434. bottom: 0.03
  17435. }
  17436. },
  17437. side: {
  17438. height: math.unit(2, "meters"),
  17439. weight: math.unit(300, "kg"),
  17440. name: "Side",
  17441. image: {
  17442. source: "./media/characters/kash/side.svg",
  17443. extra: 302 / 251,
  17444. bottom: 0.03
  17445. }
  17446. },
  17447. front: {
  17448. height: math.unit(2, "meters"),
  17449. weight: math.unit(300, "kg"),
  17450. name: "Front",
  17451. image: {
  17452. source: "./media/characters/kash/front.svg",
  17453. extra: 495 / 360,
  17454. bottom: 0.015
  17455. }
  17456. },
  17457. },
  17458. [
  17459. {
  17460. name: "Normal",
  17461. height: math.unit(2, "meters"),
  17462. default: true
  17463. },
  17464. {
  17465. name: "Big",
  17466. height: math.unit(3, "meters")
  17467. },
  17468. {
  17469. name: "Large",
  17470. height: math.unit(5, "meters")
  17471. },
  17472. ]
  17473. ))
  17474. characterMakers.push(() => makeCharacter(
  17475. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17476. {
  17477. feeding: {
  17478. height: math.unit(6.7, "feet"),
  17479. weight: math.unit(350, "lb"),
  17480. name: "Feeding",
  17481. image: {
  17482. source: "./media/characters/lalim/feeding.svg",
  17483. }
  17484. },
  17485. },
  17486. [
  17487. {
  17488. name: "Normal",
  17489. height: math.unit(6.7, "feet"),
  17490. default: true
  17491. },
  17492. ]
  17493. ))
  17494. characterMakers.push(() => makeCharacter(
  17495. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17496. {
  17497. front: {
  17498. height: math.unit(9.5, "feet"),
  17499. weight: math.unit(600, "lb"),
  17500. name: "Front",
  17501. image: {
  17502. source: "./media/characters/de'vout/front.svg",
  17503. extra: 1443 / 1328,
  17504. bottom: 0.025
  17505. }
  17506. },
  17507. back: {
  17508. height: math.unit(9.5, "feet"),
  17509. weight: math.unit(600, "lb"),
  17510. name: "Back",
  17511. image: {
  17512. source: "./media/characters/de'vout/back.svg",
  17513. extra: 1443 / 1328
  17514. }
  17515. },
  17516. frontDressed: {
  17517. height: math.unit(9.5, "feet"),
  17518. weight: math.unit(600, "lb"),
  17519. name: "Front (Dressed",
  17520. image: {
  17521. source: "./media/characters/de'vout/front-dressed.svg",
  17522. extra: 1443 / 1328,
  17523. bottom: 0.025
  17524. }
  17525. },
  17526. backDressed: {
  17527. height: math.unit(9.5, "feet"),
  17528. weight: math.unit(600, "lb"),
  17529. name: "Back (Dressed",
  17530. image: {
  17531. source: "./media/characters/de'vout/back-dressed.svg",
  17532. extra: 1443 / 1328
  17533. }
  17534. },
  17535. },
  17536. [
  17537. {
  17538. name: "Normal",
  17539. height: math.unit(9.5, "feet"),
  17540. default: true
  17541. },
  17542. ]
  17543. ))
  17544. characterMakers.push(() => makeCharacter(
  17545. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17546. {
  17547. front: {
  17548. height: math.unit(8, "feet"),
  17549. weight: math.unit(225, "lb"),
  17550. name: "Front",
  17551. image: {
  17552. source: "./media/characters/talana/front.svg",
  17553. extra: 1410 / 1300,
  17554. bottom: 0.015
  17555. }
  17556. },
  17557. frontDressed: {
  17558. height: math.unit(8, "feet"),
  17559. weight: math.unit(225, "lb"),
  17560. name: "Front (Dressed",
  17561. image: {
  17562. source: "./media/characters/talana/front-dressed.svg",
  17563. extra: 1410 / 1300,
  17564. bottom: 0.015
  17565. }
  17566. },
  17567. },
  17568. [
  17569. {
  17570. name: "Normal",
  17571. height: math.unit(8, "feet"),
  17572. default: true
  17573. },
  17574. ]
  17575. ))
  17576. characterMakers.push(() => makeCharacter(
  17577. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17578. {
  17579. side: {
  17580. height: math.unit(7.2, "feet"),
  17581. weight: math.unit(150, "lb"),
  17582. name: "Side",
  17583. image: {
  17584. source: "./media/characters/xeauvok/side.svg",
  17585. extra: 1975 / 1523,
  17586. bottom: 0.07
  17587. }
  17588. },
  17589. },
  17590. [
  17591. {
  17592. name: "Normal",
  17593. height: math.unit(7.2, "feet"),
  17594. default: true
  17595. },
  17596. ]
  17597. ))
  17598. characterMakers.push(() => makeCharacter(
  17599. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17600. {
  17601. side: {
  17602. height: math.unit(10, "feet"),
  17603. weight: math.unit(900, "kg"),
  17604. name: "Side",
  17605. image: {
  17606. source: "./media/characters/zara/side.svg",
  17607. extra: 504 / 498
  17608. }
  17609. },
  17610. },
  17611. [
  17612. {
  17613. name: "Normal",
  17614. height: math.unit(10, "feet"),
  17615. default: true
  17616. },
  17617. ]
  17618. ))
  17619. characterMakers.push(() => makeCharacter(
  17620. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17621. {
  17622. side: {
  17623. height: math.unit(6, "feet"),
  17624. weight: math.unit(150, "lb"),
  17625. name: "Side",
  17626. image: {
  17627. source: "./media/characters/richard-dragon/side.svg",
  17628. extra: 845 / 340,
  17629. bottom: 0.017
  17630. }
  17631. },
  17632. maw: {
  17633. height: math.unit(2.97, "feet"),
  17634. name: "Maw",
  17635. image: {
  17636. source: "./media/characters/richard-dragon/maw.svg"
  17637. }
  17638. },
  17639. },
  17640. [
  17641. ]
  17642. ))
  17643. characterMakers.push(() => makeCharacter(
  17644. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17645. {
  17646. front: {
  17647. height: math.unit(4, "feet"),
  17648. weight: math.unit(100, "lb"),
  17649. name: "Front",
  17650. image: {
  17651. source: "./media/characters/richard-smeargle/front.svg",
  17652. extra: 2952 / 2820,
  17653. bottom: 0.028
  17654. }
  17655. },
  17656. },
  17657. [
  17658. {
  17659. name: "Normal",
  17660. height: math.unit(4, "feet"),
  17661. default: true
  17662. },
  17663. {
  17664. name: "Dynamax",
  17665. height: math.unit(20, "meters")
  17666. },
  17667. ]
  17668. ))
  17669. characterMakers.push(() => makeCharacter(
  17670. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17671. {
  17672. front: {
  17673. height: math.unit(6, "feet"),
  17674. weight: math.unit(110, "lb"),
  17675. name: "Front",
  17676. image: {
  17677. source: "./media/characters/klay/front.svg",
  17678. extra: 962 / 883,
  17679. bottom: 0.04
  17680. }
  17681. },
  17682. back: {
  17683. height: math.unit(6, "feet"),
  17684. weight: math.unit(110, "lb"),
  17685. name: "Back",
  17686. image: {
  17687. source: "./media/characters/klay/back.svg",
  17688. extra: 962 / 883
  17689. }
  17690. },
  17691. beans: {
  17692. height: math.unit(1.15, "feet"),
  17693. name: "Beans",
  17694. image: {
  17695. source: "./media/characters/klay/beans.svg"
  17696. }
  17697. },
  17698. },
  17699. [
  17700. {
  17701. name: "Micro",
  17702. height: math.unit(6, "inches")
  17703. },
  17704. {
  17705. name: "Mini",
  17706. height: math.unit(3, "feet")
  17707. },
  17708. {
  17709. name: "Normal",
  17710. height: math.unit(6, "feet"),
  17711. default: true
  17712. },
  17713. {
  17714. name: "Big",
  17715. height: math.unit(25, "feet")
  17716. },
  17717. {
  17718. name: "Macro",
  17719. height: math.unit(100, "feet")
  17720. },
  17721. {
  17722. name: "Megamacro",
  17723. height: math.unit(400, "feet")
  17724. },
  17725. ]
  17726. ))
  17727. characterMakers.push(() => makeCharacter(
  17728. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17729. {
  17730. front: {
  17731. height: math.unit(6, "feet"),
  17732. weight: math.unit(160, "lb"),
  17733. name: "Front",
  17734. image: {
  17735. source: "./media/characters/marcus/front.svg",
  17736. extra: 734 / 676,
  17737. bottom: 0.03
  17738. }
  17739. },
  17740. },
  17741. [
  17742. {
  17743. name: "Little",
  17744. height: math.unit(6, "feet")
  17745. },
  17746. {
  17747. name: "Normal",
  17748. height: math.unit(110, "feet"),
  17749. default: true
  17750. },
  17751. {
  17752. name: "Macro",
  17753. height: math.unit(250, "feet")
  17754. },
  17755. {
  17756. name: "Megamacro",
  17757. height: math.unit(1000, "feet")
  17758. },
  17759. ]
  17760. ))
  17761. characterMakers.push(() => makeCharacter(
  17762. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17763. {
  17764. front: {
  17765. height: math.unit(7, "feet"),
  17766. weight: math.unit(275, "lb"),
  17767. name: "Front",
  17768. image: {
  17769. source: "./media/characters/claude-delroute/front.svg",
  17770. extra: 230 / 214,
  17771. bottom: 0.007
  17772. }
  17773. },
  17774. side: {
  17775. height: math.unit(7, "feet"),
  17776. weight: math.unit(275, "lb"),
  17777. name: "Side",
  17778. image: {
  17779. source: "./media/characters/claude-delroute/side.svg",
  17780. extra: 222 / 214,
  17781. bottom: 0.01
  17782. }
  17783. },
  17784. back: {
  17785. height: math.unit(7, "feet"),
  17786. weight: math.unit(275, "lb"),
  17787. name: "Back",
  17788. image: {
  17789. source: "./media/characters/claude-delroute/back.svg",
  17790. extra: 230 / 214,
  17791. bottom: 0.015
  17792. }
  17793. },
  17794. maw: {
  17795. height: math.unit(0.6407, "meters"),
  17796. name: "Maw",
  17797. image: {
  17798. source: "./media/characters/claude-delroute/maw.svg"
  17799. }
  17800. },
  17801. },
  17802. [
  17803. {
  17804. name: "Normal",
  17805. height: math.unit(7, "feet"),
  17806. default: true
  17807. },
  17808. {
  17809. name: "Lorge",
  17810. height: math.unit(20, "feet")
  17811. },
  17812. ]
  17813. ))
  17814. characterMakers.push(() => makeCharacter(
  17815. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17816. {
  17817. front: {
  17818. height: math.unit(8 + 4 / 12, "feet"),
  17819. weight: math.unit(600, "lb"),
  17820. name: "Front",
  17821. image: {
  17822. source: "./media/characters/dragonien/front.svg",
  17823. extra: 100 / 94,
  17824. bottom: 3.3 / 103.3445
  17825. }
  17826. },
  17827. back: {
  17828. height: math.unit(8 + 4 / 12, "feet"),
  17829. weight: math.unit(600, "lb"),
  17830. name: "Back",
  17831. image: {
  17832. source: "./media/characters/dragonien/back.svg",
  17833. extra: 776 / 746,
  17834. bottom: 6.4 / 782.0616
  17835. }
  17836. },
  17837. foot: {
  17838. height: math.unit(1.54, "feet"),
  17839. name: "Foot",
  17840. image: {
  17841. source: "./media/characters/dragonien/foot.svg",
  17842. }
  17843. },
  17844. },
  17845. [
  17846. {
  17847. name: "Normal",
  17848. height: math.unit(8 + 4 / 12, "feet"),
  17849. default: true
  17850. },
  17851. {
  17852. name: "Macro",
  17853. height: math.unit(200, "feet")
  17854. },
  17855. {
  17856. name: "Megamacro",
  17857. height: math.unit(1, "mile")
  17858. },
  17859. {
  17860. name: "Gigamacro",
  17861. height: math.unit(1000, "miles")
  17862. },
  17863. ]
  17864. ))
  17865. characterMakers.push(() => makeCharacter(
  17866. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17867. {
  17868. front: {
  17869. height: math.unit(5 + 2 / 12, "feet"),
  17870. weight: math.unit(110, "lb"),
  17871. name: "Front",
  17872. image: {
  17873. source: "./media/characters/desta/front.svg",
  17874. extra: 767 / 726,
  17875. bottom: 11.7 / 779
  17876. }
  17877. },
  17878. back: {
  17879. height: math.unit(5 + 2 / 12, "feet"),
  17880. weight: math.unit(110, "lb"),
  17881. name: "Back",
  17882. image: {
  17883. source: "./media/characters/desta/back.svg",
  17884. extra: 777 / 728,
  17885. bottom: 6 / 784
  17886. }
  17887. },
  17888. frontAlt: {
  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-alt.svg",
  17894. extra: 1482 / 1417
  17895. }
  17896. },
  17897. side: {
  17898. height: math.unit(5 + 2 / 12, "feet"),
  17899. weight: math.unit(110, "lb"),
  17900. name: "Side",
  17901. image: {
  17902. source: "./media/characters/desta/side.svg",
  17903. extra: 2579 / 2491,
  17904. bottom: 0.053
  17905. }
  17906. },
  17907. },
  17908. [
  17909. {
  17910. name: "Micro",
  17911. height: math.unit(6, "inches")
  17912. },
  17913. {
  17914. name: "Normal",
  17915. height: math.unit(5 + 2 / 12, "feet"),
  17916. default: true
  17917. },
  17918. {
  17919. name: "Macro",
  17920. height: math.unit(62, "feet")
  17921. },
  17922. {
  17923. name: "Megamacro",
  17924. height: math.unit(1800, "feet")
  17925. },
  17926. ]
  17927. ))
  17928. characterMakers.push(() => makeCharacter(
  17929. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17930. {
  17931. front: {
  17932. height: math.unit(10, "feet"),
  17933. weight: math.unit(700, "lb"),
  17934. name: "Front",
  17935. image: {
  17936. source: "./media/characters/storm-alystar/front.svg",
  17937. extra: 2112 / 1898,
  17938. bottom: 0.034
  17939. }
  17940. },
  17941. },
  17942. [
  17943. {
  17944. name: "Micro",
  17945. height: math.unit(3.5, "inches")
  17946. },
  17947. {
  17948. name: "Normal",
  17949. height: math.unit(10, "feet"),
  17950. default: true
  17951. },
  17952. {
  17953. name: "Macro",
  17954. height: math.unit(400, "feet")
  17955. },
  17956. {
  17957. name: "Deific",
  17958. height: math.unit(60, "miles")
  17959. },
  17960. ]
  17961. ))
  17962. characterMakers.push(() => makeCharacter(
  17963. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17964. {
  17965. front: {
  17966. height: math.unit(2.35, "meters"),
  17967. weight: math.unit(119, "kg"),
  17968. name: "Front",
  17969. image: {
  17970. source: "./media/characters/ilia/front.svg",
  17971. extra: 1285 / 1255,
  17972. bottom: 0.06
  17973. }
  17974. },
  17975. },
  17976. [
  17977. {
  17978. name: "Normal",
  17979. height: math.unit(2.35, "meters")
  17980. },
  17981. {
  17982. name: "Macro",
  17983. height: math.unit(140, "meters"),
  17984. default: true
  17985. },
  17986. {
  17987. name: "Megamacro",
  17988. height: math.unit(100, "miles")
  17989. },
  17990. ]
  17991. ))
  17992. characterMakers.push(() => makeCharacter(
  17993. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17994. {
  17995. front: {
  17996. height: math.unit(6 + 5 / 12, "feet"),
  17997. weight: math.unit(190, "lb"),
  17998. name: "Front",
  17999. image: {
  18000. source: "./media/characters/kingdead/front.svg",
  18001. extra: 1228 / 1177
  18002. }
  18003. },
  18004. },
  18005. [
  18006. {
  18007. name: "Micro",
  18008. height: math.unit(7, "inches")
  18009. },
  18010. {
  18011. name: "Normal",
  18012. height: math.unit(6 + 5 / 12, "feet")
  18013. },
  18014. {
  18015. name: "Macro",
  18016. height: math.unit(150, "feet"),
  18017. default: true
  18018. },
  18019. {
  18020. name: "Megamacro",
  18021. height: math.unit(200, "miles")
  18022. },
  18023. ]
  18024. ))
  18025. characterMakers.push(() => makeCharacter(
  18026. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18027. {
  18028. front: {
  18029. height: math.unit(8, "feet"),
  18030. weight: math.unit(600, "lb"),
  18031. name: "Front",
  18032. image: {
  18033. source: "./media/characters/kyrehx/front.svg",
  18034. extra: 1195 / 1095,
  18035. bottom: 0.034
  18036. }
  18037. },
  18038. },
  18039. [
  18040. {
  18041. name: "Micro",
  18042. height: math.unit(2, "inches")
  18043. },
  18044. {
  18045. name: "Normal",
  18046. height: math.unit(8, "feet"),
  18047. default: true
  18048. },
  18049. {
  18050. name: "Macro",
  18051. height: math.unit(255, "feet")
  18052. },
  18053. ]
  18054. ))
  18055. characterMakers.push(() => makeCharacter(
  18056. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18057. {
  18058. front: {
  18059. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18060. weight: math.unit(184, "lb"),
  18061. name: "Front",
  18062. image: {
  18063. source: "./media/characters/xang/front.svg",
  18064. extra: 845 / 755
  18065. }
  18066. },
  18067. },
  18068. [
  18069. {
  18070. name: "Normal",
  18071. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18072. default: true
  18073. },
  18074. {
  18075. name: "Macro",
  18076. height: math.unit(0.935 * 146, "feet")
  18077. },
  18078. {
  18079. name: "Megamacro",
  18080. height: math.unit(0.935 * 3, "miles")
  18081. },
  18082. ]
  18083. ))
  18084. characterMakers.push(() => makeCharacter(
  18085. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18086. {
  18087. frontDressed: {
  18088. height: math.unit(5 + 7 / 12, "feet"),
  18089. weight: math.unit(140, "lb"),
  18090. name: "Front (Dressed)",
  18091. image: {
  18092. source: "./media/characters/doc-weardno/front-dressed.svg",
  18093. extra: 263 / 234
  18094. }
  18095. },
  18096. backDressed: {
  18097. height: math.unit(5 + 7 / 12, "feet"),
  18098. weight: math.unit(140, "lb"),
  18099. name: "Back (Dressed)",
  18100. image: {
  18101. source: "./media/characters/doc-weardno/back-dressed.svg",
  18102. extra: 266 / 238
  18103. }
  18104. },
  18105. front: {
  18106. height: math.unit(5 + 7 / 12, "feet"),
  18107. weight: math.unit(140, "lb"),
  18108. name: "Front",
  18109. image: {
  18110. source: "./media/characters/doc-weardno/front.svg",
  18111. extra: 254 / 233
  18112. }
  18113. },
  18114. },
  18115. [
  18116. {
  18117. name: "Micro",
  18118. height: math.unit(3, "inches")
  18119. },
  18120. {
  18121. name: "Normal",
  18122. height: math.unit(5 + 7 / 12, "feet"),
  18123. default: true
  18124. },
  18125. {
  18126. name: "Macro",
  18127. height: math.unit(25, "feet")
  18128. },
  18129. {
  18130. name: "Megamacro",
  18131. height: math.unit(2, "miles")
  18132. },
  18133. ]
  18134. ))
  18135. characterMakers.push(() => makeCharacter(
  18136. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18137. {
  18138. front: {
  18139. height: math.unit(6 + 2 / 12, "feet"),
  18140. weight: math.unit(153, "lb"),
  18141. name: "Front",
  18142. image: {
  18143. source: "./media/characters/seth-whilst/front.svg",
  18144. bottom: 0.07
  18145. }
  18146. },
  18147. },
  18148. [
  18149. {
  18150. name: "Micro",
  18151. height: math.unit(5, "inches")
  18152. },
  18153. {
  18154. name: "Normal",
  18155. height: math.unit(6 + 2 / 12, "feet"),
  18156. default: true
  18157. },
  18158. ]
  18159. ))
  18160. characterMakers.push(() => makeCharacter(
  18161. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18162. {
  18163. front: {
  18164. height: math.unit(3, "inches"),
  18165. weight: math.unit(8, "grams"),
  18166. name: "Front",
  18167. image: {
  18168. source: "./media/characters/pocket-jabari/front.svg",
  18169. extra: 1024 / 974,
  18170. bottom: 0.039
  18171. }
  18172. },
  18173. },
  18174. [
  18175. {
  18176. name: "Minimicro",
  18177. height: math.unit(8, "mm")
  18178. },
  18179. {
  18180. name: "Micro",
  18181. height: math.unit(3, "inches"),
  18182. default: true
  18183. },
  18184. {
  18185. name: "Normal",
  18186. height: math.unit(3, "feet")
  18187. },
  18188. ]
  18189. ))
  18190. characterMakers.push(() => makeCharacter(
  18191. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18192. {
  18193. front: {
  18194. height: math.unit(15, "feet"),
  18195. weight: math.unit(3280, "lb"),
  18196. name: "Front",
  18197. image: {
  18198. source: "./media/characters/sapphy/front.svg",
  18199. extra: 671 / 577,
  18200. bottom: 0.085
  18201. }
  18202. },
  18203. back: {
  18204. height: math.unit(15, "feet"),
  18205. weight: math.unit(3280, "lb"),
  18206. name: "Back",
  18207. image: {
  18208. source: "./media/characters/sapphy/back.svg",
  18209. extra: 631 / 607,
  18210. bottom: 0.045
  18211. }
  18212. },
  18213. },
  18214. [
  18215. {
  18216. name: "Normal",
  18217. height: math.unit(15, "feet")
  18218. },
  18219. {
  18220. name: "Casual Macro",
  18221. height: math.unit(120, "feet")
  18222. },
  18223. {
  18224. name: "Macro",
  18225. height: math.unit(2150, "feet"),
  18226. default: true
  18227. },
  18228. {
  18229. name: "Megamacro",
  18230. height: math.unit(8, "miles")
  18231. },
  18232. {
  18233. name: "Galaxy Mom",
  18234. height: math.unit(6, "megalightyears")
  18235. },
  18236. ]
  18237. ))
  18238. characterMakers.push(() => makeCharacter(
  18239. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18240. {
  18241. front: {
  18242. height: math.unit(6, "feet"),
  18243. weight: math.unit(170, "lb"),
  18244. name: "Front",
  18245. image: {
  18246. source: "./media/characters/kiro/front.svg",
  18247. extra: 1064 / 1012,
  18248. bottom: 0.052
  18249. }
  18250. },
  18251. },
  18252. [
  18253. {
  18254. name: "Micro",
  18255. height: math.unit(6, "inches")
  18256. },
  18257. {
  18258. name: "Normal",
  18259. height: math.unit(6, "feet"),
  18260. default: true
  18261. },
  18262. {
  18263. name: "Macro",
  18264. height: math.unit(72, "feet")
  18265. },
  18266. ]
  18267. ))
  18268. characterMakers.push(() => makeCharacter(
  18269. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18270. {
  18271. front: {
  18272. height: math.unit(5 + 9 / 12, "feet"),
  18273. weight: math.unit(175, "lb"),
  18274. name: "Front",
  18275. image: {
  18276. source: "./media/characters/irishfox/front.svg",
  18277. extra: 1912 / 1680,
  18278. bottom: 0.02
  18279. }
  18280. },
  18281. },
  18282. [
  18283. {
  18284. name: "Nano",
  18285. height: math.unit(1, "mm")
  18286. },
  18287. {
  18288. name: "Micro",
  18289. height: math.unit(2, "inches")
  18290. },
  18291. {
  18292. name: "Normal",
  18293. height: math.unit(5 + 9 / 12, "feet"),
  18294. default: true
  18295. },
  18296. {
  18297. name: "Macro",
  18298. height: math.unit(45, "feet")
  18299. },
  18300. ]
  18301. ))
  18302. characterMakers.push(() => makeCharacter(
  18303. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18304. {
  18305. front: {
  18306. height: math.unit(6 + 1 / 12, "feet"),
  18307. weight: math.unit(75, "lb"),
  18308. name: "Front",
  18309. image: {
  18310. source: "./media/characters/aronai-sieyes/front.svg",
  18311. extra: 1556 / 1480,
  18312. bottom: 0.015
  18313. }
  18314. },
  18315. side: {
  18316. height: math.unit(6 + 1 / 12, "feet"),
  18317. weight: math.unit(75, "lb"),
  18318. name: "Side",
  18319. image: {
  18320. source: "./media/characters/aronai-sieyes/side.svg",
  18321. extra: 1433 / 1390,
  18322. bottom: 0.0393
  18323. }
  18324. },
  18325. back: {
  18326. height: math.unit(6 + 1 / 12, "feet"),
  18327. weight: math.unit(75, "lb"),
  18328. name: "Back",
  18329. image: {
  18330. source: "./media/characters/aronai-sieyes/back.svg",
  18331. extra: 1544 / 1494,
  18332. bottom: 0.02
  18333. }
  18334. },
  18335. frontClothed: {
  18336. height: math.unit(6 + 1 / 12, "feet"),
  18337. weight: math.unit(75, "lb"),
  18338. name: "Front (Clothed)",
  18339. image: {
  18340. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18341. extra: 1582 / 1527
  18342. }
  18343. },
  18344. feral: {
  18345. height: math.unit(18, "feet"),
  18346. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18347. name: "Feral",
  18348. image: {
  18349. source: "./media/characters/aronai-sieyes/feral.svg",
  18350. extra: 1530 / 1240,
  18351. bottom: 0.035
  18352. }
  18353. },
  18354. },
  18355. [
  18356. {
  18357. name: "Micro",
  18358. height: math.unit(2, "inches")
  18359. },
  18360. {
  18361. name: "Normal",
  18362. height: math.unit(6 + 1 / 12, "feet"),
  18363. default: true
  18364. }
  18365. ]
  18366. ))
  18367. characterMakers.push(() => makeCharacter(
  18368. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18369. {
  18370. front: {
  18371. height: math.unit(12, "feet"),
  18372. weight: math.unit(410, "kg"),
  18373. name: "Front",
  18374. image: {
  18375. source: "./media/characters/xuna/front.svg",
  18376. extra: 2184 / 1980
  18377. }
  18378. },
  18379. side: {
  18380. height: math.unit(12, "feet"),
  18381. weight: math.unit(410, "kg"),
  18382. name: "Side",
  18383. image: {
  18384. source: "./media/characters/xuna/side.svg",
  18385. extra: 2184 / 1980
  18386. }
  18387. },
  18388. back: {
  18389. height: math.unit(12, "feet"),
  18390. weight: math.unit(410, "kg"),
  18391. name: "Back",
  18392. image: {
  18393. source: "./media/characters/xuna/back.svg",
  18394. extra: 2184 / 1980
  18395. }
  18396. },
  18397. },
  18398. [
  18399. {
  18400. name: "Nano glow",
  18401. height: math.unit(10, "nm")
  18402. },
  18403. {
  18404. name: "Micro floof",
  18405. height: math.unit(0.3, "m")
  18406. },
  18407. {
  18408. name: "Huggable softy boi",
  18409. height: math.unit(3.6576, "m"),
  18410. default: true
  18411. },
  18412. {
  18413. name: "Admirable floof",
  18414. height: math.unit(80, "meters")
  18415. },
  18416. {
  18417. name: "Gentle macro",
  18418. height: math.unit(300, "meters")
  18419. },
  18420. {
  18421. name: "Very careful floof",
  18422. height: math.unit(3200, "meters")
  18423. },
  18424. {
  18425. name: "The mega floof",
  18426. height: math.unit(36000, "meters")
  18427. },
  18428. {
  18429. name: "Giga-fur-Wicker",
  18430. height: math.unit(4800000, "meters")
  18431. },
  18432. {
  18433. name: "Licky world",
  18434. height: math.unit(20000000, "meters")
  18435. },
  18436. {
  18437. name: "Floofy cyan sun",
  18438. height: math.unit(1500000000, "meters")
  18439. },
  18440. {
  18441. name: "Milky Wicker",
  18442. height: math.unit(1000000000000000000000, "meters")
  18443. },
  18444. {
  18445. name: "The observing Wicker",
  18446. height: math.unit(999999999999999999999999999, "meters")
  18447. },
  18448. ]
  18449. ))
  18450. characterMakers.push(() => makeCharacter(
  18451. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18452. {
  18453. front: {
  18454. height: math.unit(5 + 9 / 12, "feet"),
  18455. weight: math.unit(150, "lb"),
  18456. name: "Front",
  18457. image: {
  18458. source: "./media/characters/arokha-sieyes/front.svg",
  18459. extra: 1425 / 1284,
  18460. bottom: 0.05
  18461. }
  18462. },
  18463. },
  18464. [
  18465. {
  18466. name: "Normal",
  18467. height: math.unit(5 + 9 / 12, "feet")
  18468. },
  18469. {
  18470. name: "Macro",
  18471. height: math.unit(30, "meters"),
  18472. default: true
  18473. },
  18474. ]
  18475. ))
  18476. characterMakers.push(() => makeCharacter(
  18477. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18478. {
  18479. front: {
  18480. height: math.unit(6, "feet"),
  18481. weight: math.unit(180, "lb"),
  18482. name: "Front",
  18483. image: {
  18484. source: "./media/characters/arokh-sieyes/front.svg",
  18485. extra: 1830 / 1769,
  18486. bottom: 0.01
  18487. }
  18488. },
  18489. },
  18490. [
  18491. {
  18492. name: "Normal",
  18493. height: math.unit(6, "feet")
  18494. },
  18495. {
  18496. name: "Macro",
  18497. height: math.unit(30, "meters"),
  18498. default: true
  18499. },
  18500. ]
  18501. ))
  18502. characterMakers.push(() => makeCharacter(
  18503. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18504. {
  18505. side: {
  18506. height: math.unit(13 + 1 / 12, "feet"),
  18507. weight: math.unit(8.5, "tonnes"),
  18508. name: "Side",
  18509. image: {
  18510. source: "./media/characters/goldeneye/side.svg",
  18511. extra: 1182 / 778,
  18512. bottom: 0.067
  18513. }
  18514. },
  18515. paw: {
  18516. height: math.unit(3.4, "feet"),
  18517. name: "Paw",
  18518. image: {
  18519. source: "./media/characters/goldeneye/paw.svg"
  18520. }
  18521. },
  18522. },
  18523. [
  18524. {
  18525. name: "Normal",
  18526. height: math.unit(13 + 1 / 12, "feet"),
  18527. default: true
  18528. },
  18529. ]
  18530. ))
  18531. characterMakers.push(() => makeCharacter(
  18532. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18533. {
  18534. front: {
  18535. height: math.unit(6 + 1 / 12, "feet"),
  18536. weight: math.unit(210, "lb"),
  18537. name: "Front",
  18538. image: {
  18539. source: "./media/characters/leonardo-lycheborne/front.svg",
  18540. extra: 390 / 365,
  18541. bottom: 0.032
  18542. }
  18543. },
  18544. side: {
  18545. height: math.unit(6 + 1 / 12, "feet"),
  18546. weight: math.unit(210, "lb"),
  18547. name: "Side",
  18548. image: {
  18549. source: "./media/characters/leonardo-lycheborne/side.svg",
  18550. extra: 390 / 365,
  18551. bottom: 0.005
  18552. }
  18553. },
  18554. back: {
  18555. height: math.unit(6 + 1 / 12, "feet"),
  18556. weight: math.unit(210, "lb"),
  18557. name: "Back",
  18558. image: {
  18559. source: "./media/characters/leonardo-lycheborne/back.svg",
  18560. extra: 392 / 366,
  18561. bottom: 0.01
  18562. }
  18563. },
  18564. hand: {
  18565. height: math.unit(1.08, "feet"),
  18566. name: "Hand",
  18567. image: {
  18568. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18569. }
  18570. },
  18571. foot: {
  18572. height: math.unit(1.32, "feet"),
  18573. name: "Foot",
  18574. image: {
  18575. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18576. }
  18577. },
  18578. were: {
  18579. height: math.unit(20, "feet"),
  18580. weight: math.unit(7800, "lb"),
  18581. name: "Were",
  18582. image: {
  18583. source: "./media/characters/leonardo-lycheborne/were.svg",
  18584. extra: 308 / 294,
  18585. bottom: 0.048
  18586. }
  18587. },
  18588. feral: {
  18589. height: math.unit(7.5, "feet"),
  18590. weight: math.unit(600, "lb"),
  18591. name: "Feral",
  18592. image: {
  18593. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18594. extra: 210 / 186,
  18595. bottom: 0.108
  18596. }
  18597. },
  18598. taur: {
  18599. height: math.unit(11, "feet"),
  18600. weight: math.unit(3300, "lb"),
  18601. name: "Taur",
  18602. image: {
  18603. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18604. extra: 320 / 303,
  18605. bottom: 0.025
  18606. }
  18607. },
  18608. barghest: {
  18609. height: math.unit(11, "feet"),
  18610. weight: math.unit(1300, "lb"),
  18611. name: "Barghest",
  18612. image: {
  18613. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18614. extra: 323 / 302,
  18615. bottom: 0.027
  18616. }
  18617. },
  18618. dick: {
  18619. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18620. name: "Dick",
  18621. image: {
  18622. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18623. }
  18624. },
  18625. dickWere: {
  18626. height: math.unit((20) / 3.8, "feet"),
  18627. name: "Dick (Were)",
  18628. image: {
  18629. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18630. }
  18631. },
  18632. },
  18633. [
  18634. {
  18635. name: "Normal",
  18636. height: math.unit(6 + 1 / 12, "feet"),
  18637. default: true
  18638. },
  18639. ]
  18640. ))
  18641. characterMakers.push(() => makeCharacter(
  18642. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18643. {
  18644. front: {
  18645. height: math.unit(10, "feet"),
  18646. weight: math.unit(350, "lb"),
  18647. name: "Front",
  18648. image: {
  18649. source: "./media/characters/jet/front.svg",
  18650. extra: 2050 / 1980,
  18651. bottom: 0.013
  18652. }
  18653. },
  18654. back: {
  18655. height: math.unit(10, "feet"),
  18656. weight: math.unit(350, "lb"),
  18657. name: "Back",
  18658. image: {
  18659. source: "./media/characters/jet/back.svg",
  18660. extra: 2050 / 1980,
  18661. bottom: 0.013
  18662. }
  18663. },
  18664. },
  18665. [
  18666. {
  18667. name: "Micro",
  18668. height: math.unit(6, "inches")
  18669. },
  18670. {
  18671. name: "Normal",
  18672. height: math.unit(10, "feet"),
  18673. default: true
  18674. },
  18675. {
  18676. name: "Macro",
  18677. height: math.unit(100, "feet")
  18678. },
  18679. ]
  18680. ))
  18681. characterMakers.push(() => makeCharacter(
  18682. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18683. {
  18684. front: {
  18685. height: math.unit(15, "feet"),
  18686. weight: math.unit(2800, "lb"),
  18687. name: "Front",
  18688. image: {
  18689. source: "./media/characters/tanarath/front.svg",
  18690. extra: 2392 / 2220,
  18691. bottom: 0.03
  18692. }
  18693. },
  18694. back: {
  18695. height: math.unit(15, "feet"),
  18696. weight: math.unit(2800, "lb"),
  18697. name: "Back",
  18698. image: {
  18699. source: "./media/characters/tanarath/back.svg",
  18700. extra: 2392 / 2220,
  18701. bottom: 0.03
  18702. }
  18703. },
  18704. },
  18705. [
  18706. {
  18707. name: "Normal",
  18708. height: math.unit(15, "feet"),
  18709. default: true
  18710. },
  18711. ]
  18712. ))
  18713. characterMakers.push(() => makeCharacter(
  18714. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18715. {
  18716. front: {
  18717. height: math.unit(7 + 1 / 12, "feet"),
  18718. weight: math.unit(175, "lb"),
  18719. name: "Front",
  18720. image: {
  18721. source: "./media/characters/patty-cattybatty/front.svg",
  18722. extra: 908 / 874,
  18723. bottom: 0.025
  18724. }
  18725. },
  18726. },
  18727. [
  18728. {
  18729. name: "Micro",
  18730. height: math.unit(1, "inch")
  18731. },
  18732. {
  18733. name: "Normal",
  18734. height: math.unit(7 + 1 / 12, "feet")
  18735. },
  18736. {
  18737. name: "Mini Macro",
  18738. height: math.unit(155, "feet")
  18739. },
  18740. {
  18741. name: "Macro",
  18742. height: math.unit(1077, "feet")
  18743. },
  18744. {
  18745. name: "Mega Macro",
  18746. height: math.unit(47650, "feet"),
  18747. default: true
  18748. },
  18749. {
  18750. name: "Giga Macro",
  18751. height: math.unit(440, "miles")
  18752. },
  18753. {
  18754. name: "Tera Macro",
  18755. height: math.unit(8700, "miles")
  18756. },
  18757. {
  18758. name: "Planetary Macro",
  18759. height: math.unit(32700, "miles")
  18760. },
  18761. {
  18762. name: "Solar Macro",
  18763. height: math.unit(550000, "miles")
  18764. },
  18765. {
  18766. name: "Celestial Macro",
  18767. height: math.unit(2.5, "AU")
  18768. },
  18769. ]
  18770. ))
  18771. characterMakers.push(() => makeCharacter(
  18772. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18773. {
  18774. front: {
  18775. height: math.unit(4 + 5 / 12, "feet"),
  18776. weight: math.unit(90, "lb"),
  18777. name: "Front",
  18778. image: {
  18779. source: "./media/characters/cappu/front.svg",
  18780. extra: 1247 / 1152,
  18781. bottom: 0.012
  18782. }
  18783. },
  18784. },
  18785. [
  18786. {
  18787. name: "Normal",
  18788. height: math.unit(4 + 5 / 12, "feet"),
  18789. default: true
  18790. },
  18791. ]
  18792. ))
  18793. characterMakers.push(() => makeCharacter(
  18794. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18795. {
  18796. frontDressed: {
  18797. height: math.unit(70, "cm"),
  18798. weight: math.unit(6, "kg"),
  18799. name: "Front (Dressed)",
  18800. image: {
  18801. source: "./media/characters/sebi/front-dressed.svg",
  18802. extra: 713.5 / 686.5,
  18803. bottom: 0.003
  18804. }
  18805. },
  18806. front: {
  18807. height: math.unit(70, "cm"),
  18808. weight: math.unit(5, "kg"),
  18809. name: "Front",
  18810. image: {
  18811. source: "./media/characters/sebi/front.svg",
  18812. extra: 713.5 / 686.5,
  18813. bottom: 0.003
  18814. }
  18815. }
  18816. },
  18817. [
  18818. {
  18819. name: "Normal",
  18820. height: math.unit(70, "cm"),
  18821. default: true
  18822. },
  18823. {
  18824. name: "Macro",
  18825. height: math.unit(8, "meters")
  18826. },
  18827. ]
  18828. ))
  18829. characterMakers.push(() => makeCharacter(
  18830. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18831. {
  18832. front: {
  18833. height: math.unit(6, "feet"),
  18834. weight: math.unit(150, "lb"),
  18835. name: "Front",
  18836. image: {
  18837. source: "./media/characters/typhek/front.svg",
  18838. extra: 1948 / 1929,
  18839. bottom: 0.025
  18840. }
  18841. },
  18842. side: {
  18843. height: math.unit(6, "feet"),
  18844. weight: math.unit(150, "lb"),
  18845. name: "Side",
  18846. image: {
  18847. source: "./media/characters/typhek/side.svg",
  18848. extra: 2034 / 2010,
  18849. bottom: 0.003
  18850. }
  18851. },
  18852. back: {
  18853. height: math.unit(6, "feet"),
  18854. weight: math.unit(150, "lb"),
  18855. name: "Back",
  18856. image: {
  18857. source: "./media/characters/typhek/back.svg",
  18858. extra: 2005 / 1978,
  18859. bottom: 0.004
  18860. }
  18861. },
  18862. palm: {
  18863. height: math.unit(1.2, "feet"),
  18864. name: "Palm",
  18865. image: {
  18866. source: "./media/characters/typhek/palm.svg"
  18867. }
  18868. },
  18869. fist: {
  18870. height: math.unit(1.1, "feet"),
  18871. name: "Fist",
  18872. image: {
  18873. source: "./media/characters/typhek/fist.svg"
  18874. }
  18875. },
  18876. foot: {
  18877. height: math.unit(1.57, "feet"),
  18878. name: "Foot",
  18879. image: {
  18880. source: "./media/characters/typhek/foot.svg"
  18881. }
  18882. },
  18883. sole: {
  18884. height: math.unit(2.05, "feet"),
  18885. name: "Sole",
  18886. image: {
  18887. source: "./media/characters/typhek/sole.svg"
  18888. }
  18889. },
  18890. },
  18891. [
  18892. {
  18893. name: "Macro",
  18894. height: math.unit(40, "stories"),
  18895. default: true
  18896. },
  18897. {
  18898. name: "Megamacro",
  18899. height: math.unit(1, "mile")
  18900. },
  18901. {
  18902. name: "Gigamacro",
  18903. height: math.unit(4000, "solarradii")
  18904. },
  18905. {
  18906. name: "Universal",
  18907. height: math.unit(1.1, "universes")
  18908. }
  18909. ]
  18910. ))
  18911. characterMakers.push(() => makeCharacter(
  18912. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18913. {
  18914. side: {
  18915. height: math.unit(5 + 7 / 12, "feet"),
  18916. weight: math.unit(150, "lb"),
  18917. name: "Side",
  18918. image: {
  18919. source: "./media/characters/kassy/side.svg",
  18920. extra: 1280 / 1225,
  18921. bottom: 0.002
  18922. }
  18923. },
  18924. front: {
  18925. height: math.unit(5 + 7 / 12, "feet"),
  18926. weight: math.unit(150, "lb"),
  18927. name: "Front",
  18928. image: {
  18929. source: "./media/characters/kassy/front.svg",
  18930. extra: 1280 / 1225,
  18931. bottom: 0.025
  18932. }
  18933. },
  18934. back: {
  18935. height: math.unit(5 + 7 / 12, "feet"),
  18936. weight: math.unit(150, "lb"),
  18937. name: "Back",
  18938. image: {
  18939. source: "./media/characters/kassy/back.svg",
  18940. extra: 1280 / 1225,
  18941. bottom: 0.002
  18942. }
  18943. },
  18944. foot: {
  18945. height: math.unit(1.266, "feet"),
  18946. name: "Foot",
  18947. image: {
  18948. source: "./media/characters/kassy/foot.svg"
  18949. }
  18950. },
  18951. },
  18952. [
  18953. {
  18954. name: "Normal",
  18955. height: math.unit(5 + 7 / 12, "feet")
  18956. },
  18957. {
  18958. name: "Macro",
  18959. height: math.unit(137, "feet"),
  18960. default: true
  18961. },
  18962. {
  18963. name: "Megamacro",
  18964. height: math.unit(1, "mile")
  18965. },
  18966. ]
  18967. ))
  18968. characterMakers.push(() => makeCharacter(
  18969. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18970. {
  18971. front: {
  18972. height: math.unit(6 + 1 / 12, "feet"),
  18973. weight: math.unit(200, "lb"),
  18974. name: "Front",
  18975. image: {
  18976. source: "./media/characters/neil/front.svg",
  18977. extra: 1326 / 1250,
  18978. bottom: 0.023
  18979. }
  18980. },
  18981. },
  18982. [
  18983. {
  18984. name: "Normal",
  18985. height: math.unit(6 + 1 / 12, "feet"),
  18986. default: true
  18987. },
  18988. {
  18989. name: "Macro",
  18990. height: math.unit(200, "feet")
  18991. },
  18992. ]
  18993. ))
  18994. characterMakers.push(() => makeCharacter(
  18995. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18996. {
  18997. front: {
  18998. height: math.unit(5 + 9 / 12, "feet"),
  18999. weight: math.unit(190, "lb"),
  19000. name: "Front",
  19001. image: {
  19002. source: "./media/characters/atticus/front.svg",
  19003. extra: 2934 / 2785,
  19004. bottom: 0.025
  19005. }
  19006. },
  19007. },
  19008. [
  19009. {
  19010. name: "Normal",
  19011. height: math.unit(5 + 9 / 12, "feet"),
  19012. default: true
  19013. },
  19014. {
  19015. name: "Macro",
  19016. height: math.unit(180, "feet")
  19017. },
  19018. ]
  19019. ))
  19020. characterMakers.push(() => makeCharacter(
  19021. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19022. {
  19023. side: {
  19024. height: math.unit(9, "feet"),
  19025. weight: math.unit(650, "lb"),
  19026. name: "Side",
  19027. image: {
  19028. source: "./media/characters/milo/side.svg",
  19029. extra: 2644 / 2310,
  19030. bottom: 0.032
  19031. }
  19032. },
  19033. },
  19034. [
  19035. {
  19036. name: "Normal",
  19037. height: math.unit(9, "feet"),
  19038. default: true
  19039. },
  19040. {
  19041. name: "Macro",
  19042. height: math.unit(300, "feet")
  19043. },
  19044. ]
  19045. ))
  19046. characterMakers.push(() => makeCharacter(
  19047. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19048. {
  19049. side: {
  19050. height: math.unit(8, "meters"),
  19051. weight: math.unit(90000, "kg"),
  19052. name: "Side",
  19053. image: {
  19054. source: "./media/characters/ijzer/side.svg",
  19055. extra: 2756 / 1600,
  19056. bottom: 0.01
  19057. }
  19058. },
  19059. },
  19060. [
  19061. {
  19062. name: "Small",
  19063. height: math.unit(3, "meters")
  19064. },
  19065. {
  19066. name: "Normal",
  19067. height: math.unit(8, "meters"),
  19068. default: true
  19069. },
  19070. {
  19071. name: "Normal+",
  19072. height: math.unit(10, "meters")
  19073. },
  19074. {
  19075. name: "Bigger",
  19076. height: math.unit(24, "meters")
  19077. },
  19078. {
  19079. name: "Huge",
  19080. height: math.unit(80, "meters")
  19081. },
  19082. ]
  19083. ))
  19084. characterMakers.push(() => makeCharacter(
  19085. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19086. {
  19087. front: {
  19088. height: math.unit(6 + 2 / 12, "feet"),
  19089. weight: math.unit(153, "lb"),
  19090. name: "Front",
  19091. image: {
  19092. source: "./media/characters/luca-cervicum/front.svg",
  19093. extra: 370 / 327,
  19094. bottom: 0.015
  19095. }
  19096. },
  19097. back: {
  19098. height: math.unit(6 + 2 / 12, "feet"),
  19099. weight: math.unit(153, "lb"),
  19100. name: "Back",
  19101. image: {
  19102. source: "./media/characters/luca-cervicum/back.svg",
  19103. extra: 367 / 333,
  19104. bottom: 0.005
  19105. }
  19106. },
  19107. frontGear: {
  19108. height: math.unit(6 + 2 / 12, "feet"),
  19109. weight: math.unit(173, "lb"),
  19110. name: "Front (Gear)",
  19111. image: {
  19112. source: "./media/characters/luca-cervicum/front-gear.svg",
  19113. extra: 377 / 333,
  19114. bottom: 0.006
  19115. }
  19116. },
  19117. },
  19118. [
  19119. {
  19120. name: "Normal",
  19121. height: math.unit(6 + 2 / 12, "feet"),
  19122. default: true
  19123. },
  19124. ]
  19125. ))
  19126. characterMakers.push(() => makeCharacter(
  19127. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19128. {
  19129. front: {
  19130. height: math.unit(6 + 1 / 12, "feet"),
  19131. weight: math.unit(304, "lb"),
  19132. name: "Front",
  19133. image: {
  19134. source: "./media/characters/oliver/front.svg",
  19135. extra: 157 / 143,
  19136. bottom: 0.08
  19137. }
  19138. },
  19139. },
  19140. [
  19141. {
  19142. name: "Normal",
  19143. height: math.unit(6 + 1 / 12, "feet"),
  19144. default: true
  19145. },
  19146. ]
  19147. ))
  19148. characterMakers.push(() => makeCharacter(
  19149. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19150. {
  19151. front: {
  19152. height: math.unit(5 + 7 / 12, "feet"),
  19153. weight: math.unit(140, "lb"),
  19154. name: "Front",
  19155. image: {
  19156. source: "./media/characters/shane/front.svg",
  19157. extra: 304 / 289,
  19158. bottom: 0.005
  19159. }
  19160. },
  19161. },
  19162. [
  19163. {
  19164. name: "Normal",
  19165. height: math.unit(5 + 7 / 12, "feet"),
  19166. default: true
  19167. },
  19168. ]
  19169. ))
  19170. characterMakers.push(() => makeCharacter(
  19171. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19172. {
  19173. front: {
  19174. height: math.unit(5 + 9 / 12, "feet"),
  19175. weight: math.unit(178, "lb"),
  19176. name: "Front",
  19177. image: {
  19178. source: "./media/characters/shin/front.svg",
  19179. extra: 159 / 151,
  19180. bottom: 0.015
  19181. }
  19182. },
  19183. },
  19184. [
  19185. {
  19186. name: "Normal",
  19187. height: math.unit(5 + 9 / 12, "feet"),
  19188. default: true
  19189. },
  19190. ]
  19191. ))
  19192. characterMakers.push(() => makeCharacter(
  19193. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19194. {
  19195. front: {
  19196. height: math.unit(5 + 10 / 12, "feet"),
  19197. weight: math.unit(168, "lb"),
  19198. name: "Front",
  19199. image: {
  19200. source: "./media/characters/xerxes/front.svg",
  19201. extra: 282 / 260,
  19202. bottom: 0.045
  19203. }
  19204. },
  19205. },
  19206. [
  19207. {
  19208. name: "Normal",
  19209. height: math.unit(5 + 10 / 12, "feet"),
  19210. default: true
  19211. },
  19212. ]
  19213. ))
  19214. characterMakers.push(() => makeCharacter(
  19215. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19216. {
  19217. front: {
  19218. height: math.unit(6 + 7 / 12, "feet"),
  19219. weight: math.unit(208, "lb"),
  19220. name: "Front",
  19221. image: {
  19222. source: "./media/characters/chaska/front.svg",
  19223. extra: 332 / 319,
  19224. bottom: 0.015
  19225. }
  19226. },
  19227. },
  19228. [
  19229. {
  19230. name: "Normal",
  19231. height: math.unit(6 + 7 / 12, "feet"),
  19232. default: true
  19233. },
  19234. ]
  19235. ))
  19236. characterMakers.push(() => makeCharacter(
  19237. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19238. {
  19239. front: {
  19240. height: math.unit(5 + 8 / 12, "feet"),
  19241. weight: math.unit(208, "lb"),
  19242. name: "Front",
  19243. image: {
  19244. source: "./media/characters/enuk/front.svg",
  19245. extra: 437 / 406,
  19246. bottom: 0.02
  19247. }
  19248. },
  19249. },
  19250. [
  19251. {
  19252. name: "Normal",
  19253. height: math.unit(5 + 8 / 12, "feet"),
  19254. default: true
  19255. },
  19256. ]
  19257. ))
  19258. characterMakers.push(() => makeCharacter(
  19259. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19260. {
  19261. front: {
  19262. height: math.unit(5 + 10 / 12, "feet"),
  19263. weight: math.unit(252, "lb"),
  19264. name: "Front",
  19265. image: {
  19266. source: "./media/characters/bruun/front.svg",
  19267. extra: 197 / 187,
  19268. bottom: 0.012
  19269. }
  19270. },
  19271. },
  19272. [
  19273. {
  19274. name: "Normal",
  19275. height: math.unit(5 + 10 / 12, "feet"),
  19276. default: true
  19277. },
  19278. ]
  19279. ))
  19280. characterMakers.push(() => makeCharacter(
  19281. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19282. {
  19283. front: {
  19284. height: math.unit(6 + 10 / 12, "feet"),
  19285. weight: math.unit(255, "lb"),
  19286. name: "Front",
  19287. image: {
  19288. source: "./media/characters/alexeev/front.svg",
  19289. extra: 213 / 200,
  19290. bottom: 0.05
  19291. }
  19292. },
  19293. },
  19294. [
  19295. {
  19296. name: "Normal",
  19297. height: math.unit(6 + 10 / 12, "feet"),
  19298. default: true
  19299. },
  19300. ]
  19301. ))
  19302. characterMakers.push(() => makeCharacter(
  19303. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19304. {
  19305. front: {
  19306. height: math.unit(2 + 8 / 12, "feet"),
  19307. weight: math.unit(22, "lb"),
  19308. name: "Front",
  19309. image: {
  19310. source: "./media/characters/evelyn/front.svg",
  19311. extra: 208 / 180
  19312. }
  19313. },
  19314. },
  19315. [
  19316. {
  19317. name: "Normal",
  19318. height: math.unit(2 + 8 / 12, "feet"),
  19319. default: true
  19320. },
  19321. ]
  19322. ))
  19323. characterMakers.push(() => makeCharacter(
  19324. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19325. {
  19326. front: {
  19327. height: math.unit(5 + 9 / 12, "feet"),
  19328. weight: math.unit(139, "lb"),
  19329. name: "Front",
  19330. image: {
  19331. source: "./media/characters/inca/front.svg",
  19332. extra: 294 / 291,
  19333. bottom: 0.03
  19334. }
  19335. },
  19336. },
  19337. [
  19338. {
  19339. name: "Normal",
  19340. height: math.unit(5 + 9 / 12, "feet"),
  19341. default: true
  19342. },
  19343. ]
  19344. ))
  19345. characterMakers.push(() => makeCharacter(
  19346. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19347. {
  19348. front: {
  19349. height: math.unit(5 + 1 / 12, "feet"),
  19350. weight: math.unit(84, "lb"),
  19351. name: "Front",
  19352. image: {
  19353. source: "./media/characters/magdalene/front.svg",
  19354. extra: 293 / 273
  19355. }
  19356. },
  19357. },
  19358. [
  19359. {
  19360. name: "Normal",
  19361. height: math.unit(5 + 1 / 12, "feet"),
  19362. default: true
  19363. },
  19364. ]
  19365. ))
  19366. characterMakers.push(() => makeCharacter(
  19367. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19368. {
  19369. front: {
  19370. height: math.unit(6 + 3 / 12, "feet"),
  19371. weight: math.unit(185, "lb"),
  19372. name: "Front",
  19373. image: {
  19374. source: "./media/characters/mera/front.svg",
  19375. extra: 291 / 277,
  19376. bottom: 0.03
  19377. }
  19378. },
  19379. },
  19380. [
  19381. {
  19382. name: "Normal",
  19383. height: math.unit(6 + 3 / 12, "feet"),
  19384. default: true
  19385. },
  19386. ]
  19387. ))
  19388. characterMakers.push(() => makeCharacter(
  19389. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19390. {
  19391. front: {
  19392. height: math.unit(6 + 7 / 12, "feet"),
  19393. weight: math.unit(160, "lb"),
  19394. name: "Front",
  19395. image: {
  19396. source: "./media/characters/ceres/front.svg",
  19397. extra: 1023 / 950,
  19398. bottom: 0.027
  19399. }
  19400. },
  19401. back: {
  19402. height: math.unit(6 + 7 / 12, "feet"),
  19403. weight: math.unit(160, "lb"),
  19404. name: "Back",
  19405. image: {
  19406. source: "./media/characters/ceres/back.svg",
  19407. extra: 1023 / 950
  19408. }
  19409. },
  19410. },
  19411. [
  19412. {
  19413. name: "Normal",
  19414. height: math.unit(6 + 7 / 12, "feet"),
  19415. default: true
  19416. },
  19417. ]
  19418. ))
  19419. characterMakers.push(() => makeCharacter(
  19420. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19421. {
  19422. front: {
  19423. height: math.unit(5 + 10 / 12, "feet"),
  19424. weight: math.unit(150, "lb"),
  19425. name: "Front",
  19426. image: {
  19427. source: "./media/characters/kris/front.svg",
  19428. extra: 885 / 803,
  19429. bottom: 0.03
  19430. }
  19431. },
  19432. },
  19433. [
  19434. {
  19435. name: "Normal",
  19436. height: math.unit(5 + 10 / 12, "feet"),
  19437. default: true
  19438. },
  19439. ]
  19440. ))
  19441. characterMakers.push(() => makeCharacter(
  19442. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19443. {
  19444. front: {
  19445. height: math.unit(7, "feet"),
  19446. weight: math.unit(120, "kg"),
  19447. name: "Front",
  19448. image: {
  19449. source: "./media/characters/taluthus/front.svg",
  19450. extra: 903 / 833,
  19451. bottom: 0.015
  19452. }
  19453. },
  19454. },
  19455. [
  19456. {
  19457. name: "Normal",
  19458. height: math.unit(7, "feet"),
  19459. default: true
  19460. },
  19461. {
  19462. name: "Macro",
  19463. height: math.unit(300, "feet")
  19464. },
  19465. ]
  19466. ))
  19467. characterMakers.push(() => makeCharacter(
  19468. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19469. {
  19470. front: {
  19471. height: math.unit(5 + 9 / 12, "feet"),
  19472. weight: math.unit(145, "lb"),
  19473. name: "Front",
  19474. image: {
  19475. source: "./media/characters/dawn/front.svg",
  19476. extra: 2094 / 2016,
  19477. bottom: 0.025
  19478. }
  19479. },
  19480. back: {
  19481. height: math.unit(5 + 9 / 12, "feet"),
  19482. weight: math.unit(160, "lb"),
  19483. name: "Back",
  19484. image: {
  19485. source: "./media/characters/dawn/back.svg",
  19486. extra: 2112 / 2080,
  19487. bottom: 0.005
  19488. }
  19489. },
  19490. },
  19491. [
  19492. {
  19493. name: "Normal",
  19494. height: math.unit(6 + 7 / 12, "feet"),
  19495. default: true
  19496. },
  19497. ]
  19498. ))
  19499. characterMakers.push(() => makeCharacter(
  19500. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19501. {
  19502. anthro: {
  19503. height: math.unit(8 + 3 / 12, "feet"),
  19504. weight: math.unit(450, "lb"),
  19505. name: "Anthro",
  19506. image: {
  19507. source: "./media/characters/arador/anthro.svg",
  19508. extra: 1835 / 1718,
  19509. bottom: 0.025
  19510. }
  19511. },
  19512. feral: {
  19513. height: math.unit(4, "feet"),
  19514. weight: math.unit(200, "lb"),
  19515. name: "Feral",
  19516. image: {
  19517. source: "./media/characters/arador/feral.svg",
  19518. extra: 1683 / 1514,
  19519. bottom: 0.07
  19520. }
  19521. },
  19522. },
  19523. [
  19524. {
  19525. name: "Normal",
  19526. height: math.unit(8 + 3 / 12, "feet")
  19527. },
  19528. {
  19529. name: "Macro",
  19530. height: math.unit(82.5, "feet"),
  19531. default: true
  19532. },
  19533. ]
  19534. ))
  19535. characterMakers.push(() => makeCharacter(
  19536. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19537. {
  19538. front: {
  19539. height: math.unit(5 + 10 / 12, "feet"),
  19540. weight: math.unit(125, "lb"),
  19541. name: "Front",
  19542. image: {
  19543. source: "./media/characters/dharsi/front.svg",
  19544. extra: 716 / 630,
  19545. bottom: 0.035
  19546. }
  19547. },
  19548. },
  19549. [
  19550. {
  19551. name: "Nano",
  19552. height: math.unit(100, "nm")
  19553. },
  19554. {
  19555. name: "Micro",
  19556. height: math.unit(2, "inches")
  19557. },
  19558. {
  19559. name: "Normal",
  19560. height: math.unit(5 + 10 / 12, "feet"),
  19561. default: true
  19562. },
  19563. {
  19564. name: "Macro",
  19565. height: math.unit(1000, "feet")
  19566. },
  19567. {
  19568. name: "Megamacro",
  19569. height: math.unit(10, "miles")
  19570. },
  19571. {
  19572. name: "Gigamacro",
  19573. height: math.unit(3000, "miles")
  19574. },
  19575. {
  19576. name: "Teramacro",
  19577. height: math.unit(500000, "miles")
  19578. },
  19579. {
  19580. name: "Teramacro+",
  19581. height: math.unit(30, "galaxies")
  19582. },
  19583. ]
  19584. ))
  19585. characterMakers.push(() => makeCharacter(
  19586. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19587. {
  19588. front: {
  19589. height: math.unit(6, "feet"),
  19590. weight: math.unit(150, "lb"),
  19591. name: "Front",
  19592. image: {
  19593. source: "./media/characters/deathy/front.svg",
  19594. extra: 1552 / 1463,
  19595. bottom: 0.025
  19596. }
  19597. },
  19598. side: {
  19599. height: math.unit(6, "feet"),
  19600. weight: math.unit(150, "lb"),
  19601. name: "Side",
  19602. image: {
  19603. source: "./media/characters/deathy/side.svg",
  19604. extra: 1604 / 1455,
  19605. bottom: 0.025
  19606. }
  19607. },
  19608. back: {
  19609. height: math.unit(6, "feet"),
  19610. weight: math.unit(150, "lb"),
  19611. name: "Back",
  19612. image: {
  19613. source: "./media/characters/deathy/back.svg",
  19614. extra: 1580 / 1463,
  19615. bottom: 0.005
  19616. }
  19617. },
  19618. },
  19619. [
  19620. {
  19621. name: "Micro",
  19622. height: math.unit(5, "millimeters")
  19623. },
  19624. {
  19625. name: "Normal",
  19626. height: math.unit(6 + 5 / 12, "feet"),
  19627. default: true
  19628. },
  19629. ]
  19630. ))
  19631. characterMakers.push(() => makeCharacter(
  19632. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19633. {
  19634. front: {
  19635. height: math.unit(16, "feet"),
  19636. weight: math.unit(4000, "lb"),
  19637. name: "Front",
  19638. image: {
  19639. source: "./media/characters/juniper/front.svg",
  19640. bottom: 0.04
  19641. }
  19642. },
  19643. },
  19644. [
  19645. {
  19646. name: "Normal",
  19647. height: math.unit(16, "feet"),
  19648. default: true
  19649. },
  19650. ]
  19651. ))
  19652. characterMakers.push(() => makeCharacter(
  19653. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19654. {
  19655. front: {
  19656. height: math.unit(6, "feet"),
  19657. weight: math.unit(150, "lb"),
  19658. name: "Front",
  19659. image: {
  19660. source: "./media/characters/hipster/front.svg",
  19661. extra: 1312 / 1209,
  19662. bottom: 0.025
  19663. }
  19664. },
  19665. back: {
  19666. height: math.unit(6, "feet"),
  19667. weight: math.unit(150, "lb"),
  19668. name: "Back",
  19669. image: {
  19670. source: "./media/characters/hipster/back.svg",
  19671. extra: 1281 / 1196,
  19672. bottom: 0.01
  19673. }
  19674. },
  19675. },
  19676. [
  19677. {
  19678. name: "Micro",
  19679. height: math.unit(1, "mm")
  19680. },
  19681. {
  19682. name: "Normal",
  19683. height: math.unit(4, "inches"),
  19684. default: true
  19685. },
  19686. {
  19687. name: "Macro",
  19688. height: math.unit(500, "feet")
  19689. },
  19690. {
  19691. name: "Megamacro",
  19692. height: math.unit(1000, "miles")
  19693. },
  19694. ]
  19695. ))
  19696. characterMakers.push(() => makeCharacter(
  19697. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19698. {
  19699. front: {
  19700. height: math.unit(6, "feet"),
  19701. weight: math.unit(150, "lb"),
  19702. name: "Front",
  19703. image: {
  19704. source: "./media/characters/tendirmuldr/front.svg",
  19705. extra: 1878 / 1772,
  19706. bottom: 0.015
  19707. }
  19708. },
  19709. },
  19710. [
  19711. {
  19712. name: "Megamacro",
  19713. height: math.unit(1500, "miles"),
  19714. default: true
  19715. },
  19716. ]
  19717. ))
  19718. characterMakers.push(() => makeCharacter(
  19719. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19720. {
  19721. front: {
  19722. height: math.unit(14, "feet"),
  19723. weight: math.unit(12000, "lb"),
  19724. name: "Front",
  19725. image: {
  19726. source: "./media/characters/mort/front.svg",
  19727. extra: 365 / 318,
  19728. bottom: 0.01
  19729. }
  19730. },
  19731. side: {
  19732. height: math.unit(14, "feet"),
  19733. weight: math.unit(12000, "lb"),
  19734. name: "Side",
  19735. image: {
  19736. source: "./media/characters/mort/side.svg",
  19737. extra: 365 / 318,
  19738. bottom: 0.052
  19739. },
  19740. default: true
  19741. },
  19742. back: {
  19743. height: math.unit(14, "feet"),
  19744. weight: math.unit(12000, "lb"),
  19745. name: "Back",
  19746. image: {
  19747. source: "./media/characters/mort/back.svg",
  19748. extra: 371 / 332,
  19749. bottom: 0.18
  19750. }
  19751. },
  19752. },
  19753. [
  19754. {
  19755. name: "Normal",
  19756. height: math.unit(14, "feet"),
  19757. default: true
  19758. },
  19759. ]
  19760. ))
  19761. characterMakers.push(() => makeCharacter(
  19762. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19763. {
  19764. front: {
  19765. height: math.unit(8, "feet"),
  19766. weight: math.unit(1, "ton"),
  19767. name: "Front",
  19768. image: {
  19769. source: "./media/characters/lycoa/front.svg",
  19770. extra: 1875 / 1789,
  19771. bottom: 0.022
  19772. }
  19773. },
  19774. back: {
  19775. height: math.unit(8, "feet"),
  19776. weight: math.unit(1, "ton"),
  19777. name: "Back",
  19778. image: {
  19779. source: "./media/characters/lycoa/back.svg",
  19780. extra: 1835 / 1781,
  19781. bottom: 0.03
  19782. }
  19783. },
  19784. head: {
  19785. height: math.unit(2.1, "feet"),
  19786. name: "Head",
  19787. image: {
  19788. source: "./media/characters/lycoa/head.svg"
  19789. }
  19790. },
  19791. tailmaw: {
  19792. height: math.unit(1.9, "feet"),
  19793. name: "Tailmaw",
  19794. image: {
  19795. source: "./media/characters/lycoa/tailmaw.svg"
  19796. }
  19797. },
  19798. tentacles: {
  19799. height: math.unit(2.1, "feet"),
  19800. name: "Tentacles",
  19801. image: {
  19802. source: "./media/characters/lycoa/tentacles.svg"
  19803. }
  19804. },
  19805. dick: {
  19806. height: math.unit(1.73, "feet"),
  19807. name: "Dick",
  19808. image: {
  19809. source: "./media/characters/lycoa/dick.svg"
  19810. }
  19811. },
  19812. },
  19813. [
  19814. {
  19815. name: "Normal",
  19816. height: math.unit(8, "feet"),
  19817. default: true
  19818. },
  19819. {
  19820. name: "Macro",
  19821. height: math.unit(30, "feet")
  19822. },
  19823. ]
  19824. ))
  19825. characterMakers.push(() => makeCharacter(
  19826. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19827. {
  19828. front: {
  19829. height: math.unit(4 + 2 / 12, "feet"),
  19830. weight: math.unit(70, "lb"),
  19831. name: "Front",
  19832. image: {
  19833. source: "./media/characters/naldara/front.svg",
  19834. extra: 841 / 720,
  19835. bottom: 0.04
  19836. }
  19837. },
  19838. naga: {
  19839. height: math.unit(23, "feet"),
  19840. weight: math.unit(15000, "kg"),
  19841. name: "Naga",
  19842. image: {
  19843. source: "./media/characters/naldara/naga.svg",
  19844. extra: 3290 / 2959,
  19845. bottom: 124 / 3432
  19846. }
  19847. },
  19848. },
  19849. [
  19850. {
  19851. name: "Normal",
  19852. height: math.unit(4 + 2 / 12, "feet"),
  19853. default: true
  19854. },
  19855. ]
  19856. ))
  19857. characterMakers.push(() => makeCharacter(
  19858. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19859. {
  19860. front: {
  19861. height: math.unit(13 + 7 / 12, "feet"),
  19862. weight: math.unit(1500, "lb"),
  19863. name: "Front",
  19864. image: {
  19865. source: "./media/characters/briar/front.svg",
  19866. extra: 626 / 596,
  19867. bottom: 0.08
  19868. }
  19869. },
  19870. },
  19871. [
  19872. {
  19873. name: "Normal",
  19874. height: math.unit(13 + 7 / 12, "feet"),
  19875. default: true
  19876. },
  19877. ]
  19878. ))
  19879. characterMakers.push(() => makeCharacter(
  19880. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19881. {
  19882. side: {
  19883. height: math.unit(10, "feet"),
  19884. weight: math.unit(500, "lb"),
  19885. name: "Side",
  19886. image: {
  19887. source: "./media/characters/vanguard/side.svg",
  19888. extra: 502 / 425,
  19889. bottom: 0.087
  19890. }
  19891. },
  19892. },
  19893. [
  19894. {
  19895. name: "Normal",
  19896. height: math.unit(10, "feet"),
  19897. default: true
  19898. },
  19899. ]
  19900. ))
  19901. characterMakers.push(() => makeCharacter(
  19902. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19903. {
  19904. front: {
  19905. height: math.unit(7.5, "feet"),
  19906. weight: math.unit(2, "lb"),
  19907. name: "Front",
  19908. image: {
  19909. source: "./media/characters/artemis/front.svg",
  19910. extra: 1192 / 1075,
  19911. bottom: 0.07
  19912. }
  19913. },
  19914. frontNsfw: {
  19915. height: math.unit(7.5, "feet"),
  19916. weight: math.unit(2, "lb"),
  19917. name: "Front (NSFW)",
  19918. image: {
  19919. source: "./media/characters/artemis/front-nsfw.svg",
  19920. extra: 1192 / 1075,
  19921. bottom: 0.07
  19922. }
  19923. },
  19924. frontNsfwer: {
  19925. height: math.unit(7.5, "feet"),
  19926. weight: math.unit(2, "lb"),
  19927. name: "Front (NSFW-er)",
  19928. image: {
  19929. source: "./media/characters/artemis/front-nsfwer.svg",
  19930. extra: 1192 / 1075,
  19931. bottom: 0.07
  19932. }
  19933. },
  19934. side: {
  19935. height: math.unit(7.5, "feet"),
  19936. weight: math.unit(2, "lb"),
  19937. name: "Side",
  19938. image: {
  19939. source: "./media/characters/artemis/side.svg",
  19940. extra: 1192 / 1075,
  19941. bottom: 0.07
  19942. }
  19943. },
  19944. sideNsfw: {
  19945. height: math.unit(7.5, "feet"),
  19946. weight: math.unit(2, "lb"),
  19947. name: "Side (NSFW)",
  19948. image: {
  19949. source: "./media/characters/artemis/side-nsfw.svg",
  19950. extra: 1192 / 1075,
  19951. bottom: 0.07
  19952. }
  19953. },
  19954. sideNsfwer: {
  19955. height: math.unit(7.5, "feet"),
  19956. weight: math.unit(2, "lb"),
  19957. name: "Side (NSFW-er)",
  19958. image: {
  19959. source: "./media/characters/artemis/side-nsfwer.svg",
  19960. extra: 1192 / 1075,
  19961. bottom: 0.07
  19962. }
  19963. },
  19964. maw: {
  19965. height: math.unit(1.1, "feet"),
  19966. name: "Maw",
  19967. image: {
  19968. source: "./media/characters/artemis/maw.svg"
  19969. }
  19970. },
  19971. stomach: {
  19972. height: math.unit(0.95, "feet"),
  19973. name: "Stomach",
  19974. image: {
  19975. source: "./media/characters/artemis/stomach.svg"
  19976. }
  19977. },
  19978. dickCanine: {
  19979. height: math.unit(1, "feet"),
  19980. name: "Dick (Canine)",
  19981. image: {
  19982. source: "./media/characters/artemis/dick-canine.svg"
  19983. }
  19984. },
  19985. dickEquine: {
  19986. height: math.unit(0.85, "feet"),
  19987. name: "Dick (Equine)",
  19988. image: {
  19989. source: "./media/characters/artemis/dick-equine.svg"
  19990. }
  19991. },
  19992. dickExotic: {
  19993. height: math.unit(0.85, "feet"),
  19994. name: "Dick (Exotic)",
  19995. image: {
  19996. source: "./media/characters/artemis/dick-exotic.svg"
  19997. }
  19998. },
  19999. },
  20000. [
  20001. {
  20002. name: "Normal",
  20003. height: math.unit(7.5, "feet"),
  20004. default: true
  20005. },
  20006. {
  20007. name: "Enlarged",
  20008. height: math.unit(12, "feet")
  20009. },
  20010. ]
  20011. ))
  20012. characterMakers.push(() => makeCharacter(
  20013. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20014. {
  20015. front: {
  20016. height: math.unit(5 + 3 / 12, "feet"),
  20017. weight: math.unit(160, "lb"),
  20018. name: "Front",
  20019. image: {
  20020. source: "./media/characters/kira/front.svg",
  20021. extra: 906 / 786,
  20022. bottom: 0.01
  20023. }
  20024. },
  20025. back: {
  20026. height: math.unit(5 + 3 / 12, "feet"),
  20027. weight: math.unit(160, "lb"),
  20028. name: "Back",
  20029. image: {
  20030. source: "./media/characters/kira/back.svg",
  20031. extra: 882 / 757,
  20032. bottom: 0.005
  20033. }
  20034. },
  20035. frontDressed: {
  20036. height: math.unit(5 + 3 / 12, "feet"),
  20037. weight: math.unit(160, "lb"),
  20038. name: "Front (Dressed)",
  20039. image: {
  20040. source: "./media/characters/kira/front-dressed.svg",
  20041. extra: 906 / 786,
  20042. bottom: 0.01
  20043. }
  20044. },
  20045. beans: {
  20046. height: math.unit(0.92, "feet"),
  20047. name: "Beans",
  20048. image: {
  20049. source: "./media/characters/kira/beans.svg"
  20050. }
  20051. },
  20052. },
  20053. [
  20054. {
  20055. name: "Normal",
  20056. height: math.unit(5 + 3 / 12, "feet"),
  20057. default: true
  20058. },
  20059. ]
  20060. ))
  20061. characterMakers.push(() => makeCharacter(
  20062. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20063. {
  20064. front: {
  20065. height: math.unit(5 + 4 / 12, "feet"),
  20066. weight: math.unit(145, "lb"),
  20067. name: "Front",
  20068. image: {
  20069. source: "./media/characters/scramble/front.svg",
  20070. extra: 763 / 727,
  20071. bottom: 0.05
  20072. }
  20073. },
  20074. back: {
  20075. height: math.unit(5 + 4 / 12, "feet"),
  20076. weight: math.unit(145, "lb"),
  20077. name: "Back",
  20078. image: {
  20079. source: "./media/characters/scramble/back.svg",
  20080. extra: 826 / 737,
  20081. bottom: 0.002
  20082. }
  20083. },
  20084. },
  20085. [
  20086. {
  20087. name: "Normal",
  20088. height: math.unit(5 + 4 / 12, "feet"),
  20089. default: true
  20090. },
  20091. ]
  20092. ))
  20093. characterMakers.push(() => makeCharacter(
  20094. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20095. {
  20096. side: {
  20097. height: math.unit(6 + 2 / 12, "feet"),
  20098. weight: math.unit(190, "lb"),
  20099. name: "Side",
  20100. image: {
  20101. source: "./media/characters/biscuit/side.svg",
  20102. extra: 858 / 791,
  20103. bottom: 0.044
  20104. }
  20105. },
  20106. },
  20107. [
  20108. {
  20109. name: "Normal",
  20110. height: math.unit(6 + 2 / 12, "feet"),
  20111. default: true
  20112. },
  20113. ]
  20114. ))
  20115. characterMakers.push(() => makeCharacter(
  20116. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20117. {
  20118. front: {
  20119. height: math.unit(5 + 2 / 12, "feet"),
  20120. weight: math.unit(120, "lb"),
  20121. name: "Front",
  20122. image: {
  20123. source: "./media/characters/poffin/front.svg",
  20124. extra: 786 / 680,
  20125. bottom: 0.005
  20126. }
  20127. },
  20128. },
  20129. [
  20130. {
  20131. name: "Normal",
  20132. height: math.unit(5 + 2 / 12, "feet"),
  20133. default: true
  20134. },
  20135. ]
  20136. ))
  20137. characterMakers.push(() => makeCharacter(
  20138. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20139. {
  20140. front: {
  20141. height: math.unit(6 + 3 / 12, "feet"),
  20142. weight: math.unit(519, "lb"),
  20143. name: "Front",
  20144. image: {
  20145. source: "./media/characters/dhari/front.svg",
  20146. extra: 1048 / 946,
  20147. bottom: 0.015
  20148. }
  20149. },
  20150. back: {
  20151. height: math.unit(6 + 3 / 12, "feet"),
  20152. weight: math.unit(519, "lb"),
  20153. name: "Back",
  20154. image: {
  20155. source: "./media/characters/dhari/back.svg",
  20156. extra: 1048 / 931,
  20157. bottom: 0.005
  20158. }
  20159. },
  20160. frontDressed: {
  20161. height: math.unit(6 + 3 / 12, "feet"),
  20162. weight: math.unit(519, "lb"),
  20163. name: "Front (Dressed)",
  20164. image: {
  20165. source: "./media/characters/dhari/front-dressed.svg",
  20166. extra: 1713 / 1546,
  20167. bottom: 0.02
  20168. }
  20169. },
  20170. backDressed: {
  20171. height: math.unit(6 + 3 / 12, "feet"),
  20172. weight: math.unit(519, "lb"),
  20173. name: "Back (Dressed)",
  20174. image: {
  20175. source: "./media/characters/dhari/back-dressed.svg",
  20176. extra: 1699 / 1537,
  20177. bottom: 0.01
  20178. }
  20179. },
  20180. maw: {
  20181. height: math.unit(0.95, "feet"),
  20182. name: "Maw",
  20183. image: {
  20184. source: "./media/characters/dhari/maw.svg"
  20185. }
  20186. },
  20187. wereFront: {
  20188. height: math.unit(12 + 8 / 12, "feet"),
  20189. weight: math.unit(4000, "lb"),
  20190. name: "Front (Were)",
  20191. image: {
  20192. source: "./media/characters/dhari/were-front.svg",
  20193. extra: 1065 / 969,
  20194. bottom: 0.015
  20195. }
  20196. },
  20197. wereBack: {
  20198. height: math.unit(12 + 8 / 12, "feet"),
  20199. weight: math.unit(4000, "lb"),
  20200. name: "Back (Were)",
  20201. image: {
  20202. source: "./media/characters/dhari/were-back.svg",
  20203. extra: 1065 / 969,
  20204. bottom: 0.012
  20205. }
  20206. },
  20207. wereMaw: {
  20208. height: math.unit(0.625, "meters"),
  20209. name: "Maw (Were)",
  20210. image: {
  20211. source: "./media/characters/dhari/were-maw.svg"
  20212. }
  20213. },
  20214. },
  20215. [
  20216. {
  20217. name: "Normal",
  20218. height: math.unit(6 + 3 / 12, "feet"),
  20219. default: true
  20220. },
  20221. ]
  20222. ))
  20223. characterMakers.push(() => makeCharacter(
  20224. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20225. {
  20226. anthro: {
  20227. height: math.unit(5 + 7 / 12, "feet"),
  20228. weight: math.unit(175, "lb"),
  20229. name: "Anthro",
  20230. image: {
  20231. source: "./media/characters/rena-dyne/anthro.svg",
  20232. extra: 1849 / 1785,
  20233. bottom: 0.005
  20234. }
  20235. },
  20236. taur: {
  20237. height: math.unit(15 + 6 / 12, "feet"),
  20238. weight: math.unit(8000, "lb"),
  20239. name: "Taur",
  20240. image: {
  20241. source: "./media/characters/rena-dyne/taur.svg",
  20242. extra: 2315 / 2234,
  20243. bottom: 0.033
  20244. }
  20245. },
  20246. },
  20247. [
  20248. {
  20249. name: "Normal",
  20250. height: math.unit(5 + 7 / 12, "feet"),
  20251. default: true
  20252. },
  20253. ]
  20254. ))
  20255. characterMakers.push(() => makeCharacter(
  20256. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20257. {
  20258. front: {
  20259. height: math.unit(8, "feet"),
  20260. weight: math.unit(600, "lb"),
  20261. name: "Front",
  20262. image: {
  20263. source: "./media/characters/weremeep/front.svg",
  20264. extra: 967 / 862,
  20265. bottom: 0.01
  20266. }
  20267. },
  20268. },
  20269. [
  20270. {
  20271. name: "Normal",
  20272. height: math.unit(8, "feet"),
  20273. default: true
  20274. },
  20275. {
  20276. name: "Lorg",
  20277. height: math.unit(12, "feet")
  20278. },
  20279. {
  20280. name: "Oh Lawd She Comin'",
  20281. height: math.unit(20, "feet")
  20282. },
  20283. ]
  20284. ))
  20285. characterMakers.push(() => makeCharacter(
  20286. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20287. {
  20288. front: {
  20289. height: math.unit(4, "feet"),
  20290. weight: math.unit(90, "lb"),
  20291. name: "Front",
  20292. image: {
  20293. source: "./media/characters/reza/front.svg",
  20294. extra: 1183 / 1111,
  20295. bottom: 0.017
  20296. }
  20297. },
  20298. back: {
  20299. height: math.unit(4, "feet"),
  20300. weight: math.unit(90, "lb"),
  20301. name: "Back",
  20302. image: {
  20303. source: "./media/characters/reza/back.svg",
  20304. extra: 1183 / 1111,
  20305. bottom: 0.01
  20306. }
  20307. },
  20308. drake: {
  20309. height: math.unit(30, "feet"),
  20310. weight: math.unit(246960, "lb"),
  20311. name: "Drake",
  20312. image: {
  20313. source: "./media/characters/reza/drake.svg",
  20314. extra: 2350 / 2024,
  20315. bottom: 60.7 / 2403
  20316. }
  20317. },
  20318. },
  20319. [
  20320. {
  20321. name: "Normal",
  20322. height: math.unit(4, "feet"),
  20323. default: true
  20324. },
  20325. ]
  20326. ))
  20327. characterMakers.push(() => makeCharacter(
  20328. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20329. {
  20330. side: {
  20331. height: math.unit(15, "feet"),
  20332. weight: math.unit(14, "tons"),
  20333. name: "Side",
  20334. image: {
  20335. source: "./media/characters/athea/side.svg",
  20336. extra: 960 / 540,
  20337. bottom: 0.003
  20338. }
  20339. },
  20340. sitting: {
  20341. height: math.unit(6 * 2.85, "feet"),
  20342. weight: math.unit(14, "tons"),
  20343. name: "Sitting",
  20344. image: {
  20345. source: "./media/characters/athea/sitting.svg",
  20346. extra: 621 / 581,
  20347. bottom: 0.075
  20348. }
  20349. },
  20350. maw: {
  20351. height: math.unit(7.59498031496063, "feet"),
  20352. name: "Maw",
  20353. image: {
  20354. source: "./media/characters/athea/maw.svg"
  20355. }
  20356. },
  20357. },
  20358. [
  20359. {
  20360. name: "Lap Cat",
  20361. height: math.unit(2.5, "feet")
  20362. },
  20363. {
  20364. name: "Minimacro",
  20365. height: math.unit(15, "feet"),
  20366. default: true
  20367. },
  20368. {
  20369. name: "Macro",
  20370. height: math.unit(120, "feet")
  20371. },
  20372. {
  20373. name: "Macro+",
  20374. height: math.unit(640, "feet")
  20375. },
  20376. {
  20377. name: "Colossus",
  20378. height: math.unit(2.2, "miles")
  20379. },
  20380. ]
  20381. ))
  20382. characterMakers.push(() => makeCharacter(
  20383. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20384. {
  20385. front: {
  20386. height: math.unit(8 + 8 / 12, "feet"),
  20387. weight: math.unit(130, "kg"),
  20388. name: "Front",
  20389. image: {
  20390. source: "./media/characters/seroko/front.svg",
  20391. extra: 1385 / 1280,
  20392. bottom: 0.025
  20393. }
  20394. },
  20395. back: {
  20396. height: math.unit(8 + 8 / 12, "feet"),
  20397. weight: math.unit(130, "kg"),
  20398. name: "Back",
  20399. image: {
  20400. source: "./media/characters/seroko/back.svg",
  20401. extra: 1369 / 1238,
  20402. bottom: 0.018
  20403. }
  20404. },
  20405. frontDressed: {
  20406. height: math.unit(8 + 8 / 12, "feet"),
  20407. weight: math.unit(130, "kg"),
  20408. name: "Front (Dressed)",
  20409. image: {
  20410. source: "./media/characters/seroko/front-dressed.svg",
  20411. extra: 1366 / 1275,
  20412. bottom: 0.03
  20413. }
  20414. },
  20415. },
  20416. [
  20417. {
  20418. name: "Normal",
  20419. height: math.unit(8 + 8 / 12, "feet"),
  20420. default: true
  20421. },
  20422. ]
  20423. ))
  20424. characterMakers.push(() => makeCharacter(
  20425. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20426. {
  20427. front: {
  20428. height: math.unit(5.5, "feet"),
  20429. weight: math.unit(160, "lb"),
  20430. name: "Front",
  20431. image: {
  20432. source: "./media/characters/quatzi/front.svg",
  20433. extra: 2346 / 2242,
  20434. bottom: 0.015
  20435. }
  20436. },
  20437. },
  20438. [
  20439. {
  20440. name: "Normal",
  20441. height: math.unit(5.5, "feet"),
  20442. default: true
  20443. },
  20444. {
  20445. name: "Big",
  20446. height: math.unit(7.7, "feet")
  20447. },
  20448. ]
  20449. ))
  20450. characterMakers.push(() => makeCharacter(
  20451. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20452. {
  20453. front: {
  20454. height: math.unit(5 + 11 / 12, "feet"),
  20455. weight: math.unit(180, "lb"),
  20456. name: "Front",
  20457. image: {
  20458. source: "./media/characters/sen/front.svg",
  20459. extra: 1321 / 1254,
  20460. bottom: 0.015
  20461. }
  20462. },
  20463. side: {
  20464. height: math.unit(5 + 11 / 12, "feet"),
  20465. weight: math.unit(180, "lb"),
  20466. name: "Side",
  20467. image: {
  20468. source: "./media/characters/sen/side.svg",
  20469. extra: 1321 / 1254,
  20470. bottom: 0.007
  20471. }
  20472. },
  20473. back: {
  20474. height: math.unit(5 + 11 / 12, "feet"),
  20475. weight: math.unit(180, "lb"),
  20476. name: "Back",
  20477. image: {
  20478. source: "./media/characters/sen/back.svg",
  20479. extra: 1321 / 1254
  20480. }
  20481. },
  20482. },
  20483. [
  20484. {
  20485. name: "Normal",
  20486. height: math.unit(5 + 11 / 12, "feet"),
  20487. default: true
  20488. },
  20489. ]
  20490. ))
  20491. characterMakers.push(() => makeCharacter(
  20492. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20493. {
  20494. front: {
  20495. height: math.unit(166.6, "cm"),
  20496. weight: math.unit(66.6, "kg"),
  20497. name: "Front",
  20498. image: {
  20499. source: "./media/characters/fruity/front.svg",
  20500. extra: 1510 / 1386,
  20501. bottom: 0.04
  20502. }
  20503. },
  20504. back: {
  20505. height: math.unit(166.6, "cm"),
  20506. weight: math.unit(66.6, "lb"),
  20507. name: "Back",
  20508. image: {
  20509. source: "./media/characters/fruity/back.svg",
  20510. extra: 1563 / 1435,
  20511. bottom: 0.005
  20512. }
  20513. },
  20514. },
  20515. [
  20516. {
  20517. name: "Normal",
  20518. height: math.unit(166.6, "cm"),
  20519. default: true
  20520. },
  20521. {
  20522. name: "Demonic",
  20523. height: math.unit(166.6, "feet")
  20524. },
  20525. ]
  20526. ))
  20527. characterMakers.push(() => makeCharacter(
  20528. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20529. {
  20530. side: {
  20531. height: math.unit(10, "feet"),
  20532. weight: math.unit(500, "lb"),
  20533. name: "Side",
  20534. image: {
  20535. source: "./media/characters/zost/side.svg",
  20536. extra: 966 / 880,
  20537. bottom: 0.075
  20538. }
  20539. },
  20540. mawFront: {
  20541. height: math.unit(1.08, "meters"),
  20542. name: "Maw (Front)",
  20543. image: {
  20544. source: "./media/characters/zost/maw-front.svg"
  20545. }
  20546. },
  20547. mawSide: {
  20548. height: math.unit(2.66, "feet"),
  20549. name: "Maw (Side)",
  20550. image: {
  20551. source: "./media/characters/zost/maw-side.svg"
  20552. }
  20553. },
  20554. },
  20555. [
  20556. {
  20557. name: "Normal",
  20558. height: math.unit(10, "feet"),
  20559. default: true
  20560. },
  20561. ]
  20562. ))
  20563. characterMakers.push(() => makeCharacter(
  20564. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20565. {
  20566. front: {
  20567. height: math.unit(5 + 4 / 12, "feet"),
  20568. weight: math.unit(120, "lb"),
  20569. name: "Front",
  20570. image: {
  20571. source: "./media/characters/luci/front.svg",
  20572. extra: 1985 / 1884,
  20573. bottom: 0.04
  20574. }
  20575. },
  20576. back: {
  20577. height: math.unit(5 + 4 / 12, "feet"),
  20578. weight: math.unit(120, "lb"),
  20579. name: "Back",
  20580. image: {
  20581. source: "./media/characters/luci/back.svg",
  20582. extra: 1892 / 1791,
  20583. bottom: 0.002
  20584. }
  20585. },
  20586. },
  20587. [
  20588. {
  20589. name: "Normal",
  20590. height: math.unit(5 + 4 / 12, "feet"),
  20591. default: true
  20592. },
  20593. ]
  20594. ))
  20595. characterMakers.push(() => makeCharacter(
  20596. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20597. {
  20598. front: {
  20599. height: math.unit(1500, "feet"),
  20600. weight: math.unit(3.8e6, "tons"),
  20601. name: "Front",
  20602. image: {
  20603. source: "./media/characters/2th/front.svg",
  20604. extra: 3489 / 3350,
  20605. bottom: 0.1
  20606. }
  20607. },
  20608. foot: {
  20609. height: math.unit(461, "feet"),
  20610. name: "Foot",
  20611. image: {
  20612. source: "./media/characters/2th/foot.svg"
  20613. }
  20614. },
  20615. },
  20616. [
  20617. {
  20618. name: "\"Micro\"",
  20619. height: math.unit(15 + 7 / 12, "feet")
  20620. },
  20621. {
  20622. name: "Normal",
  20623. height: math.unit(1500, "feet"),
  20624. default: true
  20625. },
  20626. {
  20627. name: "Macro",
  20628. height: math.unit(5000, "feet")
  20629. },
  20630. {
  20631. name: "Megamacro",
  20632. height: math.unit(15, "miles")
  20633. },
  20634. {
  20635. name: "Gigamacro",
  20636. height: math.unit(4000, "miles")
  20637. },
  20638. {
  20639. name: "Galactic",
  20640. height: math.unit(50, "AU")
  20641. },
  20642. ]
  20643. ))
  20644. characterMakers.push(() => makeCharacter(
  20645. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20646. {
  20647. front: {
  20648. height: math.unit(5 + 6 / 12, "feet"),
  20649. weight: math.unit(220, "lb"),
  20650. name: "Front",
  20651. image: {
  20652. source: "./media/characters/amethyst/front.svg",
  20653. extra: 2078 / 2040,
  20654. bottom: 0.045
  20655. }
  20656. },
  20657. back: {
  20658. height: math.unit(5 + 6 / 12, "feet"),
  20659. weight: math.unit(220, "lb"),
  20660. name: "Back",
  20661. image: {
  20662. source: "./media/characters/amethyst/back.svg",
  20663. extra: 2021 / 1989,
  20664. bottom: 0.02
  20665. }
  20666. },
  20667. },
  20668. [
  20669. {
  20670. name: "Normal",
  20671. height: math.unit(5 + 6 / 12, "feet"),
  20672. default: true
  20673. },
  20674. ]
  20675. ))
  20676. characterMakers.push(() => makeCharacter(
  20677. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20678. {
  20679. front: {
  20680. height: math.unit(4 + 11 / 12, "feet"),
  20681. weight: math.unit(120, "lb"),
  20682. name: "Front",
  20683. image: {
  20684. source: "./media/characters/yumi-akiyama/front.svg",
  20685. extra: 1327 / 1235,
  20686. bottom: 0.02
  20687. }
  20688. },
  20689. back: {
  20690. height: math.unit(4 + 11 / 12, "feet"),
  20691. weight: math.unit(120, "lb"),
  20692. name: "Back",
  20693. image: {
  20694. source: "./media/characters/yumi-akiyama/back.svg",
  20695. extra: 1287 / 1245,
  20696. bottom: 0.002
  20697. }
  20698. },
  20699. },
  20700. [
  20701. {
  20702. name: "Galactic",
  20703. height: math.unit(50, "galaxies"),
  20704. default: true
  20705. },
  20706. {
  20707. name: "Universal",
  20708. height: math.unit(100, "universes")
  20709. },
  20710. ]
  20711. ))
  20712. characterMakers.push(() => makeCharacter(
  20713. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20714. {
  20715. front: {
  20716. height: math.unit(8, "feet"),
  20717. weight: math.unit(500, "lb"),
  20718. name: "Front",
  20719. image: {
  20720. source: "./media/characters/rifter-yrmori/front.svg",
  20721. extra: 1180 / 1125,
  20722. bottom: 0.02
  20723. }
  20724. },
  20725. back: {
  20726. height: math.unit(8, "feet"),
  20727. weight: math.unit(500, "lb"),
  20728. name: "Back",
  20729. image: {
  20730. source: "./media/characters/rifter-yrmori/back.svg",
  20731. extra: 1190 / 1145,
  20732. bottom: 0.001
  20733. }
  20734. },
  20735. wings: {
  20736. height: math.unit(7.75, "feet"),
  20737. weight: math.unit(500, "lb"),
  20738. name: "Wings",
  20739. image: {
  20740. source: "./media/characters/rifter-yrmori/wings.svg",
  20741. extra: 1357 / 1285
  20742. }
  20743. },
  20744. maw: {
  20745. height: math.unit(0.8, "feet"),
  20746. name: "Maw",
  20747. image: {
  20748. source: "./media/characters/rifter-yrmori/maw.svg"
  20749. }
  20750. },
  20751. mawfront: {
  20752. height: math.unit(1.45, "feet"),
  20753. name: "Maw (Front)",
  20754. image: {
  20755. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20756. }
  20757. },
  20758. },
  20759. [
  20760. {
  20761. name: "Normal",
  20762. height: math.unit(8, "feet"),
  20763. default: true
  20764. },
  20765. {
  20766. name: "Macro",
  20767. height: math.unit(42, "meters")
  20768. },
  20769. ]
  20770. ))
  20771. characterMakers.push(() => makeCharacter(
  20772. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20773. {
  20774. were: {
  20775. height: math.unit(25 + 6 / 12, "feet"),
  20776. weight: math.unit(10000, "lb"),
  20777. name: "Were",
  20778. image: {
  20779. source: "./media/characters/tahajin/were.svg",
  20780. extra: 801 / 770,
  20781. bottom: 0.042
  20782. }
  20783. },
  20784. aquatic: {
  20785. height: math.unit(6 + 4 / 12, "feet"),
  20786. weight: math.unit(160, "lb"),
  20787. name: "Aquatic",
  20788. image: {
  20789. source: "./media/characters/tahajin/aquatic.svg",
  20790. extra: 572 / 542,
  20791. bottom: 0.04
  20792. }
  20793. },
  20794. chow: {
  20795. height: math.unit(8 + 11 / 12, "feet"),
  20796. weight: math.unit(450, "lb"),
  20797. name: "Chow",
  20798. image: {
  20799. source: "./media/characters/tahajin/chow.svg",
  20800. extra: 660 / 640,
  20801. bottom: 0.015
  20802. }
  20803. },
  20804. demiNaga: {
  20805. height: math.unit(6 + 8 / 12, "feet"),
  20806. weight: math.unit(300, "lb"),
  20807. name: "Demi Naga",
  20808. image: {
  20809. source: "./media/characters/tahajin/demi-naga.svg",
  20810. extra: 643 / 615,
  20811. bottom: 0.1
  20812. }
  20813. },
  20814. data: {
  20815. height: math.unit(5, "inches"),
  20816. weight: math.unit(0.1, "lb"),
  20817. name: "Data",
  20818. image: {
  20819. source: "./media/characters/tahajin/data.svg"
  20820. }
  20821. },
  20822. fluu: {
  20823. height: math.unit(5 + 7 / 12, "feet"),
  20824. weight: math.unit(140, "lb"),
  20825. name: "Fluu",
  20826. image: {
  20827. source: "./media/characters/tahajin/fluu.svg",
  20828. extra: 628 / 592,
  20829. bottom: 0.02
  20830. }
  20831. },
  20832. starWarrior: {
  20833. height: math.unit(4 + 5 / 12, "feet"),
  20834. weight: math.unit(50, "lb"),
  20835. name: "Star Warrior",
  20836. image: {
  20837. source: "./media/characters/tahajin/star-warrior.svg"
  20838. }
  20839. },
  20840. },
  20841. [
  20842. {
  20843. name: "Normal",
  20844. height: math.unit(25 + 6 / 12, "feet"),
  20845. default: true
  20846. },
  20847. ]
  20848. ))
  20849. characterMakers.push(() => makeCharacter(
  20850. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20851. {
  20852. front: {
  20853. height: math.unit(8, "feet"),
  20854. weight: math.unit(350, "lb"),
  20855. name: "Front",
  20856. image: {
  20857. source: "./media/characters/gabira/front.svg",
  20858. extra: 608 / 580,
  20859. bottom: 0.03
  20860. }
  20861. },
  20862. back: {
  20863. height: math.unit(8, "feet"),
  20864. weight: math.unit(350, "lb"),
  20865. name: "Back",
  20866. image: {
  20867. source: "./media/characters/gabira/back.svg",
  20868. extra: 608 / 580,
  20869. bottom: 0.03
  20870. }
  20871. },
  20872. },
  20873. [
  20874. {
  20875. name: "Normal",
  20876. height: math.unit(8, "feet"),
  20877. default: true
  20878. },
  20879. ]
  20880. ))
  20881. characterMakers.push(() => makeCharacter(
  20882. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20883. {
  20884. front: {
  20885. height: math.unit(5 + 3 / 12, "feet"),
  20886. weight: math.unit(137, "lb"),
  20887. name: "Front",
  20888. image: {
  20889. source: "./media/characters/sasha-katraine/front.svg",
  20890. bottom: 0.045
  20891. }
  20892. },
  20893. },
  20894. [
  20895. {
  20896. name: "Micro",
  20897. height: math.unit(5, "inches")
  20898. },
  20899. {
  20900. name: "Normal",
  20901. height: math.unit(5 + 3 / 12, "feet"),
  20902. default: true
  20903. },
  20904. ]
  20905. ))
  20906. characterMakers.push(() => makeCharacter(
  20907. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20908. {
  20909. side: {
  20910. height: math.unit(4, "inches"),
  20911. weight: math.unit(200, "grams"),
  20912. name: "Side",
  20913. image: {
  20914. source: "./media/characters/der/side.svg",
  20915. extra: 719 / 400,
  20916. bottom: 30.6 / 749.9187
  20917. }
  20918. },
  20919. },
  20920. [
  20921. {
  20922. name: "Micro",
  20923. height: math.unit(4, "inches"),
  20924. default: true
  20925. },
  20926. ]
  20927. ))
  20928. characterMakers.push(() => makeCharacter(
  20929. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20930. {
  20931. side: {
  20932. height: math.unit(30, "meters"),
  20933. weight: math.unit(700, "tonnes"),
  20934. name: "Side",
  20935. image: {
  20936. source: "./media/characters/fixerdragon/side.svg",
  20937. extra: (1293.0514 - 116.03) / 1106.86,
  20938. bottom: 116.03 / 1293.0514
  20939. }
  20940. },
  20941. },
  20942. [
  20943. {
  20944. name: "Planck",
  20945. height: math.unit(1.6e-35, "meters")
  20946. },
  20947. {
  20948. name: "Micro",
  20949. height: math.unit(0.4, "meters")
  20950. },
  20951. {
  20952. name: "Normal",
  20953. height: math.unit(30, "meters"),
  20954. default: true
  20955. },
  20956. {
  20957. name: "Megamacro",
  20958. height: math.unit(1.2, "megameters")
  20959. },
  20960. {
  20961. name: "Teramacro",
  20962. height: math.unit(130, "terameters")
  20963. },
  20964. {
  20965. name: "Yottamacro",
  20966. height: math.unit(6200, "yottameters")
  20967. },
  20968. ]
  20969. ));
  20970. characterMakers.push(() => makeCharacter(
  20971. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20972. {
  20973. front: {
  20974. height: math.unit(8, "feet"),
  20975. weight: math.unit(250, "lb"),
  20976. name: "Front",
  20977. image: {
  20978. source: "./media/characters/kite/front.svg",
  20979. extra: 2796 / 2659,
  20980. bottom: 0.002
  20981. }
  20982. },
  20983. },
  20984. [
  20985. {
  20986. name: "Normal",
  20987. height: math.unit(8, "feet"),
  20988. default: true
  20989. },
  20990. {
  20991. name: "Macro",
  20992. height: math.unit(360, "feet")
  20993. },
  20994. {
  20995. name: "Megamacro",
  20996. height: math.unit(1500, "feet")
  20997. },
  20998. ]
  20999. ))
  21000. characterMakers.push(() => makeCharacter(
  21001. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  21002. {
  21003. front: {
  21004. height: math.unit(5 + 10 / 12, "feet"),
  21005. weight: math.unit(150, "lb"),
  21006. name: "Front",
  21007. image: {
  21008. source: "./media/characters/poojawa-vynar/front.svg",
  21009. extra: (1506.1547 - 55) / 1356.6,
  21010. bottom: 55 / 1506.1547
  21011. }
  21012. },
  21013. frontTailless: {
  21014. height: math.unit(5 + 10 / 12, "feet"),
  21015. weight: math.unit(150, "lb"),
  21016. name: "Front (Tailless)",
  21017. image: {
  21018. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21019. extra: (1506.1547 - 55) / 1356.6,
  21020. bottom: 55 / 1506.1547
  21021. }
  21022. },
  21023. },
  21024. [
  21025. {
  21026. name: "Normal",
  21027. height: math.unit(5 + 10 / 12, "feet"),
  21028. default: true
  21029. },
  21030. ]
  21031. ))
  21032. characterMakers.push(() => makeCharacter(
  21033. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21034. {
  21035. front: {
  21036. height: math.unit(293, "meters"),
  21037. weight: math.unit(70400, "tons"),
  21038. name: "Front",
  21039. image: {
  21040. source: "./media/characters/violette/front.svg",
  21041. extra: 1227 / 1180,
  21042. bottom: 0.005
  21043. }
  21044. },
  21045. back: {
  21046. height: math.unit(293, "meters"),
  21047. weight: math.unit(70400, "tons"),
  21048. name: "Back",
  21049. image: {
  21050. source: "./media/characters/violette/back.svg",
  21051. extra: 1227 / 1180,
  21052. bottom: 0.005
  21053. }
  21054. },
  21055. },
  21056. [
  21057. {
  21058. name: "Macro",
  21059. height: math.unit(293, "meters"),
  21060. default: true
  21061. },
  21062. ]
  21063. ))
  21064. characterMakers.push(() => makeCharacter(
  21065. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21066. {
  21067. front: {
  21068. height: math.unit(1050, "feet"),
  21069. weight: math.unit(200000, "tons"),
  21070. name: "Front",
  21071. image: {
  21072. source: "./media/characters/alessandra/front.svg",
  21073. extra: 960 / 912,
  21074. bottom: 0.06
  21075. }
  21076. },
  21077. },
  21078. [
  21079. {
  21080. name: "Macro",
  21081. height: math.unit(1050, "feet")
  21082. },
  21083. {
  21084. name: "Macro+",
  21085. height: math.unit(900, "meters"),
  21086. default: true
  21087. },
  21088. ]
  21089. ))
  21090. characterMakers.push(() => makeCharacter(
  21091. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21092. {
  21093. front: {
  21094. height: math.unit(5, "feet"),
  21095. weight: math.unit(187, "lb"),
  21096. name: "Front",
  21097. image: {
  21098. source: "./media/characters/person/front.svg",
  21099. extra: 3087 / 2945,
  21100. bottom: 91 / 3181
  21101. }
  21102. },
  21103. },
  21104. [
  21105. {
  21106. name: "Micro",
  21107. height: math.unit(3, "inches")
  21108. },
  21109. {
  21110. name: "Normal",
  21111. height: math.unit(5, "feet"),
  21112. default: true
  21113. },
  21114. {
  21115. name: "Macro",
  21116. height: math.unit(90, "feet")
  21117. },
  21118. {
  21119. name: "Max Size",
  21120. height: math.unit(280, "feet")
  21121. },
  21122. ]
  21123. ))
  21124. characterMakers.push(() => makeCharacter(
  21125. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21126. {
  21127. front: {
  21128. height: math.unit(4.5, "meters"),
  21129. weight: math.unit(3200, "lb"),
  21130. name: "Front",
  21131. image: {
  21132. source: "./media/characters/ty/front.svg",
  21133. extra: 1038 / 960,
  21134. bottom: 31.156 / 1068
  21135. }
  21136. },
  21137. back: {
  21138. height: math.unit(4.5, "meters"),
  21139. weight: math.unit(3200, "lb"),
  21140. name: "Back",
  21141. image: {
  21142. source: "./media/characters/ty/back.svg",
  21143. extra: 1044 / 966,
  21144. bottom: 7.48 / 1049
  21145. }
  21146. },
  21147. },
  21148. [
  21149. {
  21150. name: "Normal",
  21151. height: math.unit(4.5, "meters"),
  21152. default: true
  21153. },
  21154. ]
  21155. ))
  21156. characterMakers.push(() => makeCharacter(
  21157. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21158. {
  21159. front: {
  21160. height: math.unit(5 + 4 / 12, "feet"),
  21161. weight: math.unit(115, "lb"),
  21162. name: "Front",
  21163. image: {
  21164. source: "./media/characters/rocky/front.svg",
  21165. extra: 1012 / 975,
  21166. bottom: 54 / 1066
  21167. }
  21168. },
  21169. },
  21170. [
  21171. {
  21172. name: "Normal",
  21173. height: math.unit(5 + 4 / 12, "feet"),
  21174. default: true
  21175. },
  21176. ]
  21177. ))
  21178. characterMakers.push(() => makeCharacter(
  21179. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21180. {
  21181. upright: {
  21182. height: math.unit(6, "meters"),
  21183. weight: math.unit(4000, "kg"),
  21184. name: "Upright",
  21185. image: {
  21186. source: "./media/characters/ruin/upright.svg",
  21187. extra: 668 / 661,
  21188. bottom: 42 / 799.8396
  21189. }
  21190. },
  21191. },
  21192. [
  21193. {
  21194. name: "Normal",
  21195. height: math.unit(6, "meters"),
  21196. default: true
  21197. },
  21198. ]
  21199. ))
  21200. characterMakers.push(() => makeCharacter(
  21201. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21202. {
  21203. front: {
  21204. height: math.unit(5, "feet"),
  21205. weight: math.unit(106, "lb"),
  21206. name: "Front",
  21207. image: {
  21208. source: "./media/characters/robin/front.svg",
  21209. extra: 862 / 799,
  21210. bottom: 42.4 / 914.8856
  21211. }
  21212. },
  21213. },
  21214. [
  21215. {
  21216. name: "Normal",
  21217. height: math.unit(5, "feet"),
  21218. default: true
  21219. },
  21220. ]
  21221. ))
  21222. characterMakers.push(() => makeCharacter(
  21223. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21224. {
  21225. side: {
  21226. height: math.unit(3, "feet"),
  21227. weight: math.unit(225, "lb"),
  21228. name: "Side",
  21229. image: {
  21230. source: "./media/characters/saian/side.svg",
  21231. extra: 566 / 356,
  21232. bottom: 79.7 / 643
  21233. }
  21234. },
  21235. maw: {
  21236. height: math.unit(2.85, "feet"),
  21237. name: "Maw",
  21238. image: {
  21239. source: "./media/characters/saian/maw.svg"
  21240. }
  21241. },
  21242. },
  21243. [
  21244. {
  21245. name: "Normal",
  21246. height: math.unit(3, "feet"),
  21247. default: true
  21248. },
  21249. ]
  21250. ))
  21251. characterMakers.push(() => makeCharacter(
  21252. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21253. {
  21254. side: {
  21255. height: math.unit(8, "feet"),
  21256. weight: math.unit(300, "lb"),
  21257. name: "Side",
  21258. image: {
  21259. source: "./media/characters/equus-silvermane/side.svg",
  21260. extra: 2176 / 2050,
  21261. bottom: 65.7 / 2245
  21262. }
  21263. },
  21264. front: {
  21265. height: math.unit(8, "feet"),
  21266. weight: math.unit(300, "lb"),
  21267. name: "Front",
  21268. image: {
  21269. source: "./media/characters/equus-silvermane/front.svg",
  21270. extra: 4633 / 4400,
  21271. bottom: 71.3 / 4706.915
  21272. }
  21273. },
  21274. sideStepping: {
  21275. height: math.unit(8, "feet"),
  21276. weight: math.unit(300, "lb"),
  21277. name: "Side (Stepping)",
  21278. image: {
  21279. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21280. extra: 1968 / 1860,
  21281. bottom: 16.4 / 1989
  21282. }
  21283. },
  21284. },
  21285. [
  21286. {
  21287. name: "Normal",
  21288. height: math.unit(8, "feet")
  21289. },
  21290. {
  21291. name: "Minimacro",
  21292. height: math.unit(75, "feet"),
  21293. default: true
  21294. },
  21295. {
  21296. name: "Macro",
  21297. height: math.unit(150, "feet")
  21298. },
  21299. {
  21300. name: "Macro+",
  21301. height: math.unit(1000, "feet")
  21302. },
  21303. {
  21304. name: "Megamacro",
  21305. height: math.unit(1, "mile")
  21306. },
  21307. ]
  21308. ))
  21309. characterMakers.push(() => makeCharacter(
  21310. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21311. {
  21312. side: {
  21313. height: math.unit(20, "feet"),
  21314. weight: math.unit(30000, "kg"),
  21315. name: "Side",
  21316. image: {
  21317. source: "./media/characters/windar/side.svg",
  21318. extra: 1491 / 1248,
  21319. bottom: 82.56 / 1568
  21320. }
  21321. },
  21322. },
  21323. [
  21324. {
  21325. name: "Normal",
  21326. height: math.unit(20, "feet"),
  21327. default: true
  21328. },
  21329. ]
  21330. ))
  21331. characterMakers.push(() => makeCharacter(
  21332. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21333. {
  21334. side: {
  21335. height: math.unit(15.66, "feet"),
  21336. weight: math.unit(150, "lb"),
  21337. name: "Side",
  21338. image: {
  21339. source: "./media/characters/melody/side.svg",
  21340. extra: 1097 / 944,
  21341. bottom: 11.8 / 1109
  21342. }
  21343. },
  21344. sideOutfit: {
  21345. height: math.unit(15.66, "feet"),
  21346. weight: math.unit(150, "lb"),
  21347. name: "Side (Outfit)",
  21348. image: {
  21349. source: "./media/characters/melody/side-outfit.svg",
  21350. extra: 1097 / 944,
  21351. bottom: 11.8 / 1109
  21352. }
  21353. },
  21354. },
  21355. [
  21356. {
  21357. name: "Normal",
  21358. height: math.unit(15.66, "feet"),
  21359. default: true
  21360. },
  21361. ]
  21362. ))
  21363. characterMakers.push(() => makeCharacter(
  21364. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21365. {
  21366. front: {
  21367. height: math.unit(8, "feet"),
  21368. weight: math.unit(325, "lb"),
  21369. name: "Front",
  21370. image: {
  21371. source: "./media/characters/windera/front.svg",
  21372. extra: 3180 / 2845,
  21373. bottom: 178 / 3365
  21374. }
  21375. },
  21376. },
  21377. [
  21378. {
  21379. name: "Normal",
  21380. height: math.unit(8, "feet"),
  21381. default: true
  21382. },
  21383. ]
  21384. ))
  21385. characterMakers.push(() => makeCharacter(
  21386. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21387. {
  21388. front: {
  21389. height: math.unit(28.75, "feet"),
  21390. weight: math.unit(2000, "kg"),
  21391. name: "Front",
  21392. image: {
  21393. source: "./media/characters/sonear/front.svg",
  21394. extra: 1041.1 / 964.9,
  21395. bottom: 53.7 / 1096.6
  21396. }
  21397. },
  21398. },
  21399. [
  21400. {
  21401. name: "Normal",
  21402. height: math.unit(28.75, "feet"),
  21403. default: true
  21404. },
  21405. ]
  21406. ))
  21407. characterMakers.push(() => makeCharacter(
  21408. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21409. {
  21410. side: {
  21411. height: math.unit(25.5, "feet"),
  21412. weight: math.unit(23000, "kg"),
  21413. name: "Side",
  21414. image: {
  21415. source: "./media/characters/kanara/side.svg"
  21416. }
  21417. },
  21418. },
  21419. [
  21420. {
  21421. name: "Normal",
  21422. height: math.unit(25.5, "feet"),
  21423. default: true
  21424. },
  21425. ]
  21426. ))
  21427. characterMakers.push(() => makeCharacter(
  21428. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21429. {
  21430. side: {
  21431. height: math.unit(10, "feet"),
  21432. weight: math.unit(1000, "kg"),
  21433. name: "Side",
  21434. image: {
  21435. source: "./media/characters/ereus/side.svg",
  21436. extra: 1157 / 959,
  21437. bottom: 153 / 1312.5
  21438. }
  21439. },
  21440. },
  21441. [
  21442. {
  21443. name: "Normal",
  21444. height: math.unit(10, "feet"),
  21445. default: true
  21446. },
  21447. ]
  21448. ))
  21449. characterMakers.push(() => makeCharacter(
  21450. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21451. {
  21452. side: {
  21453. height: math.unit(4.5, "feet"),
  21454. weight: math.unit(500, "lb"),
  21455. name: "Side",
  21456. image: {
  21457. source: "./media/characters/e-ter/side.svg",
  21458. extra: 1550 / 1248,
  21459. bottom: 146 / 1694
  21460. }
  21461. },
  21462. },
  21463. [
  21464. {
  21465. name: "Normal",
  21466. height: math.unit(4.5, "feet"),
  21467. default: true
  21468. },
  21469. ]
  21470. ))
  21471. characterMakers.push(() => makeCharacter(
  21472. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21473. {
  21474. side: {
  21475. height: math.unit(9.7, "feet"),
  21476. weight: math.unit(4000, "kg"),
  21477. name: "Side",
  21478. image: {
  21479. source: "./media/characters/yamie/side.svg"
  21480. }
  21481. },
  21482. },
  21483. [
  21484. {
  21485. name: "Normal",
  21486. height: math.unit(9.7, "feet"),
  21487. default: true
  21488. },
  21489. ]
  21490. ))
  21491. characterMakers.push(() => makeCharacter(
  21492. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21493. {
  21494. front: {
  21495. height: math.unit(50, "feet"),
  21496. weight: math.unit(50000, "kg"),
  21497. name: "Front",
  21498. image: {
  21499. source: "./media/characters/anders/front.svg",
  21500. extra: 570 / 539,
  21501. bottom: 14.7 / 586.7
  21502. }
  21503. },
  21504. },
  21505. [
  21506. {
  21507. name: "Large",
  21508. height: math.unit(50, "feet")
  21509. },
  21510. {
  21511. name: "Macro",
  21512. height: math.unit(2000, "feet"),
  21513. default: true
  21514. },
  21515. {
  21516. name: "Megamacro",
  21517. height: math.unit(12, "miles")
  21518. },
  21519. ]
  21520. ))
  21521. characterMakers.push(() => makeCharacter(
  21522. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21523. {
  21524. front: {
  21525. height: math.unit(7 + 2 / 12, "feet"),
  21526. weight: math.unit(300, "lb"),
  21527. name: "Front",
  21528. image: {
  21529. source: "./media/characters/reban/front.svg",
  21530. extra: 516 / 487,
  21531. bottom: 42.82 / 558.356
  21532. }
  21533. },
  21534. dick: {
  21535. height: math.unit(7 / 5, "feet"),
  21536. name: "Dick",
  21537. image: {
  21538. source: "./media/characters/reban/dick.svg"
  21539. }
  21540. },
  21541. },
  21542. [
  21543. {
  21544. name: "Natural Height",
  21545. height: math.unit(7 + 2 / 12, "feet")
  21546. },
  21547. {
  21548. name: "Macro",
  21549. height: math.unit(500, "feet"),
  21550. default: true
  21551. },
  21552. {
  21553. name: "Canon Height",
  21554. height: math.unit(50, "AU")
  21555. },
  21556. ]
  21557. ))
  21558. characterMakers.push(() => makeCharacter(
  21559. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21560. {
  21561. front: {
  21562. height: math.unit(6, "feet"),
  21563. weight: math.unit(150, "lb"),
  21564. name: "Front",
  21565. image: {
  21566. source: "./media/characters/terrance-keayes/front.svg",
  21567. extra: 1.005,
  21568. bottom: 151 / 1615
  21569. }
  21570. },
  21571. side: {
  21572. height: math.unit(6, "feet"),
  21573. weight: math.unit(150, "lb"),
  21574. name: "Side",
  21575. image: {
  21576. source: "./media/characters/terrance-keayes/side.svg",
  21577. extra: 1.005,
  21578. bottom: 129.4 / 1544
  21579. }
  21580. },
  21581. back: {
  21582. height: math.unit(6, "feet"),
  21583. weight: math.unit(150, "lb"),
  21584. name: "Back",
  21585. image: {
  21586. source: "./media/characters/terrance-keayes/back.svg",
  21587. extra: 1.005,
  21588. bottom: 58.4 / 1557.3
  21589. }
  21590. },
  21591. dick: {
  21592. height: math.unit(6 * 0.208, "feet"),
  21593. name: "Dick",
  21594. image: {
  21595. source: "./media/characters/terrance-keayes/dick.svg"
  21596. }
  21597. },
  21598. },
  21599. [
  21600. {
  21601. name: "Canon Height",
  21602. height: math.unit(35, "miles"),
  21603. default: true
  21604. },
  21605. ]
  21606. ))
  21607. characterMakers.push(() => makeCharacter(
  21608. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21609. {
  21610. front: {
  21611. height: math.unit(6, "feet"),
  21612. weight: math.unit(150, "lb"),
  21613. name: "Front",
  21614. image: {
  21615. source: "./media/characters/ofelia/front.svg",
  21616. extra: 546 / 541,
  21617. bottom: 39 / 583
  21618. }
  21619. },
  21620. back: {
  21621. height: math.unit(6, "feet"),
  21622. weight: math.unit(150, "lb"),
  21623. name: "Back",
  21624. image: {
  21625. source: "./media/characters/ofelia/back.svg",
  21626. extra: 564 / 559.5,
  21627. bottom: 8.69 / 573.02
  21628. }
  21629. },
  21630. maw: {
  21631. height: math.unit(1, "feet"),
  21632. name: "Maw",
  21633. image: {
  21634. source: "./media/characters/ofelia/maw.svg"
  21635. }
  21636. },
  21637. foot: {
  21638. height: math.unit(1.949, "feet"),
  21639. name: "Foot",
  21640. image: {
  21641. source: "./media/characters/ofelia/foot.svg"
  21642. }
  21643. },
  21644. },
  21645. [
  21646. {
  21647. name: "Canon Height",
  21648. height: math.unit(2000, "miles"),
  21649. default: true
  21650. },
  21651. ]
  21652. ))
  21653. characterMakers.push(() => makeCharacter(
  21654. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21655. {
  21656. front: {
  21657. height: math.unit(6, "feet"),
  21658. weight: math.unit(150, "lb"),
  21659. name: "Front",
  21660. image: {
  21661. source: "./media/characters/samuel/front.svg",
  21662. extra: 265 / 258,
  21663. bottom: 2 / 266.1566
  21664. }
  21665. },
  21666. },
  21667. [
  21668. {
  21669. name: "Macro",
  21670. height: math.unit(100, "feet"),
  21671. default: true
  21672. },
  21673. {
  21674. name: "Full Size",
  21675. height: math.unit(1000, "miles")
  21676. },
  21677. ]
  21678. ))
  21679. characterMakers.push(() => makeCharacter(
  21680. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21681. {
  21682. front: {
  21683. height: math.unit(6, "feet"),
  21684. weight: math.unit(300, "lb"),
  21685. name: "Front",
  21686. image: {
  21687. source: "./media/characters/beishir-kiel/front.svg",
  21688. extra: 569 / 547,
  21689. bottom: 41.9 / 609
  21690. }
  21691. },
  21692. maw: {
  21693. height: math.unit(6 * 0.202, "feet"),
  21694. name: "Maw",
  21695. image: {
  21696. source: "./media/characters/beishir-kiel/maw.svg"
  21697. }
  21698. },
  21699. },
  21700. [
  21701. {
  21702. name: "Macro",
  21703. height: math.unit(300, "feet"),
  21704. default: true
  21705. },
  21706. ]
  21707. ))
  21708. characterMakers.push(() => makeCharacter(
  21709. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21710. {
  21711. front: {
  21712. height: math.unit(5 + 8 / 12, "feet"),
  21713. weight: math.unit(120, "lb"),
  21714. name: "Front",
  21715. image: {
  21716. source: "./media/characters/logan-grey/front.svg",
  21717. extra: 2539 / 2393,
  21718. bottom: 97.6 / 2636.37
  21719. }
  21720. },
  21721. frontAlt: {
  21722. height: math.unit(5 + 8 / 12, "feet"),
  21723. weight: math.unit(120, "lb"),
  21724. name: "Front (Alt)",
  21725. image: {
  21726. source: "./media/characters/logan-grey/front-alt.svg",
  21727. extra: 958 / 893,
  21728. bottom: 15 / 970.768
  21729. }
  21730. },
  21731. back: {
  21732. height: math.unit(5 + 8 / 12, "feet"),
  21733. weight: math.unit(120, "lb"),
  21734. name: "Back",
  21735. image: {
  21736. source: "./media/characters/logan-grey/back.svg",
  21737. extra: 958 / 893,
  21738. bottom: 2.1881 / 970.9788
  21739. }
  21740. },
  21741. dick: {
  21742. height: math.unit(1.437, "feet"),
  21743. name: "Dick",
  21744. image: {
  21745. source: "./media/characters/logan-grey/dick.svg"
  21746. }
  21747. },
  21748. },
  21749. [
  21750. {
  21751. name: "Normal",
  21752. height: math.unit(5 + 8 / 12, "feet")
  21753. },
  21754. {
  21755. name: "The 500 Foot Femboy",
  21756. height: math.unit(500, "feet"),
  21757. default: true
  21758. },
  21759. {
  21760. name: "Megmacro",
  21761. height: math.unit(20, "miles")
  21762. },
  21763. ]
  21764. ))
  21765. characterMakers.push(() => makeCharacter(
  21766. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21767. {
  21768. front: {
  21769. height: math.unit(8 + 2 / 12, "feet"),
  21770. weight: math.unit(275, "lb"),
  21771. name: "Front",
  21772. image: {
  21773. source: "./media/characters/draganta/front.svg",
  21774. extra: 1177 / 1135,
  21775. bottom: 33.46 / 1212.1
  21776. }
  21777. },
  21778. },
  21779. [
  21780. {
  21781. name: "Normal",
  21782. height: math.unit(8 + 6 / 12, "feet"),
  21783. default: true
  21784. },
  21785. {
  21786. name: "Macro",
  21787. height: math.unit(150, "feet")
  21788. },
  21789. {
  21790. name: "Megamacro",
  21791. height: math.unit(1000, "miles")
  21792. },
  21793. ]
  21794. ))
  21795. characterMakers.push(() => makeCharacter(
  21796. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21797. {
  21798. front: {
  21799. height: math.unit(1.72, "m"),
  21800. weight: math.unit(80, "lb"),
  21801. name: "Front",
  21802. image: {
  21803. source: "./media/characters/voski/front.svg",
  21804. extra: 2076.22 / 2022.4,
  21805. bottom: 102.7 / 2177.3866
  21806. }
  21807. },
  21808. frontNsfw: {
  21809. height: math.unit(1.72, "m"),
  21810. weight: math.unit(80, "lb"),
  21811. name: "Front (NSFW)",
  21812. image: {
  21813. source: "./media/characters/voski/front-nsfw.svg",
  21814. extra: 2076.22 / 2022.4,
  21815. bottom: 102.7 / 2177.3866
  21816. }
  21817. },
  21818. back: {
  21819. height: math.unit(1.72, "m"),
  21820. weight: math.unit(80, "lb"),
  21821. name: "Back",
  21822. image: {
  21823. source: "./media/characters/voski/back.svg",
  21824. extra: 2104 / 2051,
  21825. bottom: 10.45 / 2113.63
  21826. }
  21827. },
  21828. },
  21829. [
  21830. {
  21831. name: "Normal",
  21832. height: math.unit(1.72, "m")
  21833. },
  21834. {
  21835. name: "Macro",
  21836. height: math.unit(55, "m"),
  21837. default: true
  21838. },
  21839. {
  21840. name: "Macro+",
  21841. height: math.unit(300, "m")
  21842. },
  21843. {
  21844. name: "Macro++",
  21845. height: math.unit(700, "m")
  21846. },
  21847. {
  21848. name: "Macro+++",
  21849. height: math.unit(4500, "m")
  21850. },
  21851. {
  21852. name: "Macro++++",
  21853. height: math.unit(45, "km")
  21854. },
  21855. {
  21856. name: "Macro+++++",
  21857. height: math.unit(1220, "km")
  21858. },
  21859. ]
  21860. ))
  21861. characterMakers.push(() => makeCharacter(
  21862. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21863. {
  21864. front: {
  21865. height: math.unit(2.3, "m"),
  21866. weight: math.unit(304, "kg"),
  21867. name: "Front",
  21868. image: {
  21869. source: "./media/characters/icowom-lee/front.svg",
  21870. extra: 985 / 955,
  21871. bottom: 25.4 / 1012
  21872. }
  21873. },
  21874. fronttentacles: {
  21875. height: math.unit(2.3, "m"),
  21876. weight: math.unit(304, "kg"),
  21877. name: "Front-tentacles",
  21878. image: {
  21879. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21880. extra: 985 / 955,
  21881. bottom: 25.4 / 1012
  21882. }
  21883. },
  21884. back: {
  21885. height: math.unit(2.3, "m"),
  21886. weight: math.unit(304, "kg"),
  21887. name: "Back",
  21888. image: {
  21889. source: "./media/characters/icowom-lee/back.svg",
  21890. extra: 975 / 954,
  21891. bottom: 9.5 / 985
  21892. }
  21893. },
  21894. backtentacles: {
  21895. height: math.unit(2.3, "m"),
  21896. weight: math.unit(304, "kg"),
  21897. name: "Back-tentacles",
  21898. image: {
  21899. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21900. extra: 975 / 954,
  21901. bottom: 9.5 / 985
  21902. }
  21903. },
  21904. frontDressed: {
  21905. height: math.unit(2.3, "m"),
  21906. weight: math.unit(304, "kg"),
  21907. name: "Front (Dressed)",
  21908. image: {
  21909. source: "./media/characters/icowom-lee/front-dressed.svg",
  21910. extra: 3076 / 2933,
  21911. bottom: 51.4 / 3125.1889
  21912. }
  21913. },
  21914. rump: {
  21915. height: math.unit(0.776, "meters"),
  21916. name: "Rump",
  21917. image: {
  21918. source: "./media/characters/icowom-lee/rump.svg"
  21919. }
  21920. },
  21921. genitals: {
  21922. height: math.unit(0.78, "meters"),
  21923. name: "Genitals",
  21924. image: {
  21925. source: "./media/characters/icowom-lee/genitals.svg"
  21926. }
  21927. },
  21928. },
  21929. [
  21930. {
  21931. name: "Normal",
  21932. height: math.unit(2.3, "meters"),
  21933. default: true
  21934. },
  21935. {
  21936. name: "Macro",
  21937. height: math.unit(94, "meters"),
  21938. default: true
  21939. },
  21940. ]
  21941. ))
  21942. characterMakers.push(() => makeCharacter(
  21943. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21944. {
  21945. front: {
  21946. height: math.unit(22, "meters"),
  21947. weight: math.unit(21000, "kg"),
  21948. name: "Front",
  21949. image: {
  21950. source: "./media/characters/shock-diamond/front.svg",
  21951. extra: 2204 / 2053,
  21952. bottom: 65 / 2239.47
  21953. }
  21954. },
  21955. frontNude: {
  21956. height: math.unit(22, "meters"),
  21957. weight: math.unit(21000, "kg"),
  21958. name: "Front (Nude)",
  21959. image: {
  21960. source: "./media/characters/shock-diamond/front-nude.svg",
  21961. extra: 2514 / 2285,
  21962. bottom: 13 / 2527.56
  21963. }
  21964. },
  21965. },
  21966. [
  21967. {
  21968. name: "Normal",
  21969. height: math.unit(3, "meters")
  21970. },
  21971. {
  21972. name: "Macro",
  21973. height: math.unit(22, "meters"),
  21974. default: true
  21975. },
  21976. ]
  21977. ))
  21978. characterMakers.push(() => makeCharacter(
  21979. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21980. {
  21981. front: {
  21982. height: math.unit(5 + 4 / 12, "feet"),
  21983. weight: math.unit(120, "lb"),
  21984. name: "Front",
  21985. image: {
  21986. source: "./media/characters/rory/front.svg",
  21987. extra: 589 / 556,
  21988. bottom: 45.7 / 635.76
  21989. }
  21990. },
  21991. frontNude: {
  21992. height: math.unit(5 + 4 / 12, "feet"),
  21993. weight: math.unit(120, "lb"),
  21994. name: "Front (Nude)",
  21995. image: {
  21996. source: "./media/characters/rory/front-nude.svg",
  21997. extra: 589 / 556,
  21998. bottom: 45.7 / 635.76
  21999. }
  22000. },
  22001. side: {
  22002. height: math.unit(5 + 4 / 12, "feet"),
  22003. weight: math.unit(120, "lb"),
  22004. name: "Side",
  22005. image: {
  22006. source: "./media/characters/rory/side.svg",
  22007. extra: 597 / 564,
  22008. bottom: 55 / 653
  22009. }
  22010. },
  22011. back: {
  22012. height: math.unit(5 + 4 / 12, "feet"),
  22013. weight: math.unit(120, "lb"),
  22014. name: "Back",
  22015. image: {
  22016. source: "./media/characters/rory/back.svg",
  22017. extra: 620 / 585,
  22018. bottom: 8.86 / 630.43
  22019. }
  22020. },
  22021. dick: {
  22022. height: math.unit(0.86, "feet"),
  22023. name: "Dick",
  22024. image: {
  22025. source: "./media/characters/rory/dick.svg"
  22026. }
  22027. },
  22028. },
  22029. [
  22030. {
  22031. name: "Normal",
  22032. height: math.unit(5 + 4 / 12, "feet"),
  22033. default: true
  22034. },
  22035. {
  22036. name: "Macro",
  22037. height: math.unit(100, "feet")
  22038. },
  22039. {
  22040. name: "Macro+",
  22041. height: math.unit(140, "feet")
  22042. },
  22043. {
  22044. name: "Macro++",
  22045. height: math.unit(300, "feet")
  22046. },
  22047. ]
  22048. ))
  22049. characterMakers.push(() => makeCharacter(
  22050. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22051. {
  22052. front: {
  22053. height: math.unit(5 + 9 / 12, "feet"),
  22054. weight: math.unit(190, "lb"),
  22055. name: "Front",
  22056. image: {
  22057. source: "./media/characters/sprisk/front.svg",
  22058. extra: 1225 / 1180,
  22059. bottom: 42.7 / 1266.4
  22060. }
  22061. },
  22062. frontNsfw: {
  22063. height: math.unit(5 + 9 / 12, "feet"),
  22064. weight: math.unit(190, "lb"),
  22065. name: "Front (NSFW)",
  22066. image: {
  22067. source: "./media/characters/sprisk/front-nsfw.svg",
  22068. extra: 1225 / 1180,
  22069. bottom: 42.7 / 1266.4
  22070. }
  22071. },
  22072. back: {
  22073. height: math.unit(5 + 9 / 12, "feet"),
  22074. weight: math.unit(190, "lb"),
  22075. name: "Back",
  22076. image: {
  22077. source: "./media/characters/sprisk/back.svg",
  22078. extra: 1247 / 1200,
  22079. bottom: 5.6 / 1253.04
  22080. }
  22081. },
  22082. },
  22083. [
  22084. {
  22085. name: "Tiny",
  22086. height: math.unit(2, "inches")
  22087. },
  22088. {
  22089. name: "Normal",
  22090. height: math.unit(5 + 9 / 12, "feet"),
  22091. default: true
  22092. },
  22093. {
  22094. name: "Mini Macro",
  22095. height: math.unit(18, "feet")
  22096. },
  22097. {
  22098. name: "Macro",
  22099. height: math.unit(100, "feet")
  22100. },
  22101. {
  22102. name: "MACRO",
  22103. height: math.unit(50, "miles")
  22104. },
  22105. {
  22106. name: "M A C R O",
  22107. height: math.unit(300, "miles")
  22108. },
  22109. ]
  22110. ))
  22111. characterMakers.push(() => makeCharacter(
  22112. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22113. {
  22114. side: {
  22115. height: math.unit(15.6, "meters"),
  22116. weight: math.unit(700000, "kg"),
  22117. name: "Side",
  22118. image: {
  22119. source: "./media/characters/bunsen/side.svg",
  22120. extra: 1644 / 358
  22121. }
  22122. },
  22123. foot: {
  22124. height: math.unit(1.611 * 1644 / 358, "meter"),
  22125. name: "Foot",
  22126. image: {
  22127. source: "./media/characters/bunsen/foot.svg"
  22128. }
  22129. },
  22130. },
  22131. [
  22132. {
  22133. name: "Small",
  22134. height: math.unit(10, "feet")
  22135. },
  22136. {
  22137. name: "Normal",
  22138. height: math.unit(15.6, "meters"),
  22139. default: true
  22140. },
  22141. ]
  22142. ))
  22143. characterMakers.push(() => makeCharacter(
  22144. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22145. {
  22146. front: {
  22147. height: math.unit(4 + 11 / 12, "feet"),
  22148. weight: math.unit(140, "lb"),
  22149. name: "Front",
  22150. image: {
  22151. source: "./media/characters/sesh/front.svg",
  22152. extra: 3420 / 3231,
  22153. bottom: 72 / 3949.5
  22154. }
  22155. },
  22156. },
  22157. [
  22158. {
  22159. name: "Normal",
  22160. height: math.unit(4 + 11 / 12, "feet")
  22161. },
  22162. {
  22163. name: "Grown",
  22164. height: math.unit(15, "feet"),
  22165. default: true
  22166. },
  22167. {
  22168. name: "Macro",
  22169. height: math.unit(1500, "feet")
  22170. },
  22171. {
  22172. name: "Megamacro",
  22173. height: math.unit(30, "miles")
  22174. },
  22175. {
  22176. name: "Continental",
  22177. height: math.unit(3000, "miles")
  22178. },
  22179. {
  22180. name: "Gravity Mass",
  22181. height: math.unit(300000, "miles")
  22182. },
  22183. {
  22184. name: "Planet Buster",
  22185. height: math.unit(30000000, "miles")
  22186. },
  22187. {
  22188. name: "Big",
  22189. height: math.unit(3000000000, "miles")
  22190. },
  22191. ]
  22192. ))
  22193. characterMakers.push(() => makeCharacter(
  22194. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22195. {
  22196. front: {
  22197. height: math.unit(9, "feet"),
  22198. weight: math.unit(350, "lb"),
  22199. name: "Front",
  22200. image: {
  22201. source: "./media/characters/pepper/front.svg",
  22202. extra: 1448 / 1312,
  22203. bottom: 9.4 / 1457.88
  22204. }
  22205. },
  22206. back: {
  22207. height: math.unit(9, "feet"),
  22208. weight: math.unit(350, "lb"),
  22209. name: "Back",
  22210. image: {
  22211. source: "./media/characters/pepper/back.svg",
  22212. extra: 1423 / 1300,
  22213. bottom: 4.6 / 1429
  22214. }
  22215. },
  22216. maw: {
  22217. height: math.unit(0.932, "feet"),
  22218. name: "Maw",
  22219. image: {
  22220. source: "./media/characters/pepper/maw.svg"
  22221. }
  22222. },
  22223. },
  22224. [
  22225. {
  22226. name: "Normal",
  22227. height: math.unit(9, "feet"),
  22228. default: true
  22229. },
  22230. ]
  22231. ))
  22232. characterMakers.push(() => makeCharacter(
  22233. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22234. {
  22235. front: {
  22236. height: math.unit(6, "feet"),
  22237. weight: math.unit(150, "lb"),
  22238. name: "Front",
  22239. image: {
  22240. source: "./media/characters/maelstrom/front.svg",
  22241. extra: 2100 / 1883,
  22242. bottom: 94 / 2196.7
  22243. }
  22244. },
  22245. },
  22246. [
  22247. {
  22248. name: "Less Kaiju",
  22249. height: math.unit(200, "feet")
  22250. },
  22251. {
  22252. name: "Kaiju",
  22253. height: math.unit(400, "feet"),
  22254. default: true
  22255. },
  22256. {
  22257. name: "Kaiju-er",
  22258. height: math.unit(600, "feet")
  22259. },
  22260. ]
  22261. ))
  22262. characterMakers.push(() => makeCharacter(
  22263. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22264. {
  22265. front: {
  22266. height: math.unit(6 + 5 / 12, "feet"),
  22267. weight: math.unit(180, "lb"),
  22268. name: "Front",
  22269. image: {
  22270. source: "./media/characters/lexir/front.svg",
  22271. extra: 180 / 172,
  22272. bottom: 12 / 192
  22273. }
  22274. },
  22275. back: {
  22276. height: math.unit(6 + 5 / 12, "feet"),
  22277. weight: math.unit(180, "lb"),
  22278. name: "Back",
  22279. image: {
  22280. source: "./media/characters/lexir/back.svg",
  22281. extra: 183.84 / 175.5,
  22282. bottom: 3.1 / 187
  22283. }
  22284. },
  22285. },
  22286. [
  22287. {
  22288. name: "Very Smal",
  22289. height: math.unit(1, "nm")
  22290. },
  22291. {
  22292. name: "Normal",
  22293. height: math.unit(6 + 5 / 12, "feet"),
  22294. default: true
  22295. },
  22296. {
  22297. name: "Macro",
  22298. height: math.unit(1, "mile")
  22299. },
  22300. {
  22301. name: "Megamacro",
  22302. height: math.unit(50, "miles")
  22303. },
  22304. ]
  22305. ))
  22306. characterMakers.push(() => makeCharacter(
  22307. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22308. {
  22309. front: {
  22310. height: math.unit(1.5, "meters"),
  22311. weight: math.unit(100, "lb"),
  22312. name: "Front",
  22313. image: {
  22314. source: "./media/characters/maksio/front.svg",
  22315. extra: 1549 / 1531,
  22316. bottom: 123.7 / 1674.5429
  22317. }
  22318. },
  22319. back: {
  22320. height: math.unit(1.5, "meters"),
  22321. weight: math.unit(100, "lb"),
  22322. name: "Back",
  22323. image: {
  22324. source: "./media/characters/maksio/back.svg",
  22325. extra: 1541 / 1509,
  22326. bottom: 97 / 1639
  22327. }
  22328. },
  22329. hand: {
  22330. height: math.unit(0.621, "feet"),
  22331. name: "Hand",
  22332. image: {
  22333. source: "./media/characters/maksio/hand.svg"
  22334. }
  22335. },
  22336. foot: {
  22337. height: math.unit(1.611, "feet"),
  22338. name: "Foot",
  22339. image: {
  22340. source: "./media/characters/maksio/foot.svg"
  22341. }
  22342. },
  22343. },
  22344. [
  22345. {
  22346. name: "Shrunken",
  22347. height: math.unit(10, "cm")
  22348. },
  22349. {
  22350. name: "Normal",
  22351. height: math.unit(150, "cm"),
  22352. default: true
  22353. },
  22354. ]
  22355. ))
  22356. characterMakers.push(() => makeCharacter(
  22357. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22358. {
  22359. front: {
  22360. height: math.unit(100, "feet"),
  22361. name: "Front",
  22362. image: {
  22363. source: "./media/characters/erza-bear/front.svg",
  22364. extra: 2449 / 2390,
  22365. bottom: 46 / 2494
  22366. }
  22367. },
  22368. back: {
  22369. height: math.unit(100, "feet"),
  22370. name: "Back",
  22371. image: {
  22372. source: "./media/characters/erza-bear/back.svg",
  22373. extra: 2489 / 2430,
  22374. bottom: 85.4 / 2480
  22375. }
  22376. },
  22377. tail: {
  22378. height: math.unit(42, "feet"),
  22379. name: "Tail",
  22380. image: {
  22381. source: "./media/characters/erza-bear/tail.svg"
  22382. }
  22383. },
  22384. tongue: {
  22385. height: math.unit(8, "feet"),
  22386. name: "Tongue",
  22387. image: {
  22388. source: "./media/characters/erza-bear/tongue.svg"
  22389. }
  22390. },
  22391. dick: {
  22392. height: math.unit(10.5, "feet"),
  22393. name: "Dick",
  22394. image: {
  22395. source: "./media/characters/erza-bear/dick.svg"
  22396. }
  22397. },
  22398. dickVertical: {
  22399. height: math.unit(16.9, "feet"),
  22400. name: "Dick (Vertical)",
  22401. image: {
  22402. source: "./media/characters/erza-bear/dick-vertical.svg"
  22403. }
  22404. },
  22405. },
  22406. [
  22407. {
  22408. name: "Macro",
  22409. height: math.unit(100, "feet"),
  22410. default: true
  22411. },
  22412. ]
  22413. ))
  22414. characterMakers.push(() => makeCharacter(
  22415. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22416. {
  22417. front: {
  22418. height: math.unit(172, "cm"),
  22419. weight: math.unit(73, "kg"),
  22420. name: "Front",
  22421. image: {
  22422. source: "./media/characters/violet-flor/front.svg",
  22423. extra: 1530 / 1442,
  22424. bottom: 61.9 / 1588.8
  22425. }
  22426. },
  22427. back: {
  22428. height: math.unit(180, "cm"),
  22429. weight: math.unit(73, "kg"),
  22430. name: "Back",
  22431. image: {
  22432. source: "./media/characters/violet-flor/back.svg",
  22433. extra: 1692 / 1630,
  22434. bottom: 20 / 1712
  22435. }
  22436. },
  22437. },
  22438. [
  22439. {
  22440. name: "Normal",
  22441. height: math.unit(172, "cm"),
  22442. default: true
  22443. },
  22444. ]
  22445. ))
  22446. characterMakers.push(() => makeCharacter(
  22447. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22448. {
  22449. front: {
  22450. height: math.unit(6, "feet"),
  22451. weight: math.unit(220, "lb"),
  22452. name: "Front",
  22453. image: {
  22454. source: "./media/characters/lynn-rhea/front.svg",
  22455. extra: 310 / 273
  22456. }
  22457. },
  22458. back: {
  22459. height: math.unit(6, "feet"),
  22460. weight: math.unit(220, "lb"),
  22461. name: "Back",
  22462. image: {
  22463. source: "./media/characters/lynn-rhea/back.svg",
  22464. extra: 310 / 273
  22465. }
  22466. },
  22467. dicks: {
  22468. height: math.unit(0.9, "feet"),
  22469. name: "Dicks",
  22470. image: {
  22471. source: "./media/characters/lynn-rhea/dicks.svg"
  22472. }
  22473. },
  22474. slit: {
  22475. height: math.unit(0.4, "feet"),
  22476. name: "Slit",
  22477. image: {
  22478. source: "./media/characters/lynn-rhea/slit.svg"
  22479. }
  22480. },
  22481. },
  22482. [
  22483. {
  22484. name: "Micro",
  22485. height: math.unit(1, "inch")
  22486. },
  22487. {
  22488. name: "Macro",
  22489. height: math.unit(60, "feet"),
  22490. default: true
  22491. },
  22492. {
  22493. name: "Megamacro",
  22494. height: math.unit(2, "miles")
  22495. },
  22496. {
  22497. name: "Gigamacro",
  22498. height: math.unit(3, "earths")
  22499. },
  22500. {
  22501. name: "Galactic",
  22502. height: math.unit(0.8, "galaxies")
  22503. },
  22504. ]
  22505. ))
  22506. characterMakers.push(() => makeCharacter(
  22507. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22508. {
  22509. front: {
  22510. height: math.unit(1600, "feet"),
  22511. weight: math.unit(85758785169, "kg"),
  22512. name: "Front",
  22513. image: {
  22514. source: "./media/characters/valathos/front.svg",
  22515. extra: 1451 / 1339
  22516. }
  22517. },
  22518. },
  22519. [
  22520. {
  22521. name: "Macro",
  22522. height: math.unit(1600, "feet"),
  22523. default: true
  22524. },
  22525. ]
  22526. ))
  22527. characterMakers.push(() => makeCharacter(
  22528. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22529. {
  22530. front: {
  22531. height: math.unit(7 + 5 / 12, "feet"),
  22532. weight: math.unit(300, "lb"),
  22533. name: "Front",
  22534. image: {
  22535. source: "./media/characters/azula/front.svg",
  22536. extra: 3208 / 2880,
  22537. bottom: 80.2 / 3277
  22538. }
  22539. },
  22540. back: {
  22541. height: math.unit(7 + 5 / 12, "feet"),
  22542. weight: math.unit(300, "lb"),
  22543. name: "Back",
  22544. image: {
  22545. source: "./media/characters/azula/back.svg",
  22546. extra: 3169 / 2822,
  22547. bottom: 150.6 / 3321
  22548. }
  22549. },
  22550. },
  22551. [
  22552. {
  22553. name: "Normal",
  22554. height: math.unit(7 + 5 / 12, "feet"),
  22555. default: true
  22556. },
  22557. {
  22558. name: "Big",
  22559. height: math.unit(20, "feet")
  22560. },
  22561. ]
  22562. ))
  22563. characterMakers.push(() => makeCharacter(
  22564. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22565. {
  22566. front: {
  22567. height: math.unit(5 + 1 / 12, "feet"),
  22568. weight: math.unit(110, "lb"),
  22569. name: "Front",
  22570. image: {
  22571. source: "./media/characters/rupert/front.svg",
  22572. extra: 1549 / 1495,
  22573. bottom: 54.2 / 1604.4
  22574. }
  22575. },
  22576. },
  22577. [
  22578. {
  22579. name: "Normal",
  22580. height: math.unit(5 + 1 / 12, "feet"),
  22581. default: true
  22582. },
  22583. ]
  22584. ))
  22585. characterMakers.push(() => makeCharacter(
  22586. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22587. {
  22588. front: {
  22589. height: math.unit(8 + 4 / 12, "feet"),
  22590. weight: math.unit(350, "lb"),
  22591. name: "Front",
  22592. image: {
  22593. source: "./media/characters/sheera-castellar/front.svg",
  22594. extra: 1957 / 1894,
  22595. bottom: 26.97 / 1975.017
  22596. }
  22597. },
  22598. side: {
  22599. height: math.unit(8 + 4 / 12, "feet"),
  22600. weight: math.unit(350, "lb"),
  22601. name: "Side",
  22602. image: {
  22603. source: "./media/characters/sheera-castellar/side.svg",
  22604. extra: 1957 / 1894
  22605. }
  22606. },
  22607. back: {
  22608. height: math.unit(8 + 4 / 12, "feet"),
  22609. weight: math.unit(350, "lb"),
  22610. name: "Back",
  22611. image: {
  22612. source: "./media/characters/sheera-castellar/back.svg",
  22613. extra: 1957 / 1894
  22614. }
  22615. },
  22616. angled: {
  22617. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22618. weight: math.unit(350, "lb"),
  22619. name: "Angled",
  22620. image: {
  22621. source: "./media/characters/sheera-castellar/angled.svg",
  22622. extra: 1807 / 1707,
  22623. bottom: 68 / 1875
  22624. }
  22625. },
  22626. genitals: {
  22627. height: math.unit(2.2, "feet"),
  22628. name: "Genitals",
  22629. image: {
  22630. source: "./media/characters/sheera-castellar/genitals.svg"
  22631. }
  22632. },
  22633. },
  22634. [
  22635. {
  22636. name: "Normal",
  22637. height: math.unit(8 + 4 / 12, "feet")
  22638. },
  22639. {
  22640. name: "Macro",
  22641. height: math.unit(150, "feet"),
  22642. default: true
  22643. },
  22644. {
  22645. name: "Macro+",
  22646. height: math.unit(800, "feet")
  22647. },
  22648. ]
  22649. ))
  22650. characterMakers.push(() => makeCharacter(
  22651. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22652. {
  22653. front: {
  22654. height: math.unit(6, "feet"),
  22655. weight: math.unit(150, "lb"),
  22656. name: "Front",
  22657. image: {
  22658. source: "./media/characters/jaipur/front.svg",
  22659. extra: 3860 / 3731,
  22660. bottom: 287 / 4140
  22661. }
  22662. },
  22663. back: {
  22664. height: math.unit(6, "feet"),
  22665. weight: math.unit(150, "lb"),
  22666. name: "Back",
  22667. image: {
  22668. source: "./media/characters/jaipur/back.svg",
  22669. extra: 4060 / 3930,
  22670. bottom: 151 / 4200
  22671. }
  22672. },
  22673. },
  22674. [
  22675. {
  22676. name: "Normal",
  22677. height: math.unit(1.85, "meters"),
  22678. default: true
  22679. },
  22680. {
  22681. name: "Macro",
  22682. height: math.unit(150, "meters")
  22683. },
  22684. {
  22685. name: "Macro+",
  22686. height: math.unit(0.5, "miles")
  22687. },
  22688. {
  22689. name: "Macro++",
  22690. height: math.unit(2.5, "miles")
  22691. },
  22692. {
  22693. name: "Macro+++",
  22694. height: math.unit(12, "miles")
  22695. },
  22696. {
  22697. name: "Macro++++",
  22698. height: math.unit(120, "miles")
  22699. },
  22700. {
  22701. name: "Macro+++++",
  22702. height: math.unit(1200, "miles")
  22703. },
  22704. ]
  22705. ))
  22706. characterMakers.push(() => makeCharacter(
  22707. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22708. {
  22709. front: {
  22710. height: math.unit(6, "feet"),
  22711. weight: math.unit(150, "lb"),
  22712. name: "Front",
  22713. image: {
  22714. source: "./media/characters/sheila-wolf/front.svg",
  22715. extra: 1931 / 1808,
  22716. bottom: 29.5 / 1960
  22717. }
  22718. },
  22719. dick: {
  22720. height: math.unit(1.464, "feet"),
  22721. name: "Dick",
  22722. image: {
  22723. source: "./media/characters/sheila-wolf/dick.svg"
  22724. }
  22725. },
  22726. muzzle: {
  22727. height: math.unit(0.513, "feet"),
  22728. name: "Muzzle",
  22729. image: {
  22730. source: "./media/characters/sheila-wolf/muzzle.svg"
  22731. }
  22732. },
  22733. },
  22734. [
  22735. {
  22736. name: "Macro",
  22737. height: math.unit(70, "feet"),
  22738. default: true
  22739. },
  22740. ]
  22741. ))
  22742. characterMakers.push(() => makeCharacter(
  22743. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22744. {
  22745. front: {
  22746. height: math.unit(32, "meters"),
  22747. weight: math.unit(300000, "kg"),
  22748. name: "Front",
  22749. image: {
  22750. source: "./media/characters/almor/front.svg",
  22751. extra: 1408 / 1322,
  22752. bottom: 94.6 / 1506.5
  22753. }
  22754. },
  22755. },
  22756. [
  22757. {
  22758. name: "Macro",
  22759. height: math.unit(32, "meters"),
  22760. default: true
  22761. },
  22762. ]
  22763. ))
  22764. characterMakers.push(() => makeCharacter(
  22765. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22766. {
  22767. front: {
  22768. height: math.unit(7, "feet"),
  22769. weight: math.unit(200, "lb"),
  22770. name: "Front",
  22771. image: {
  22772. source: "./media/characters/silver/front.svg",
  22773. extra: 472.1 / 450.5,
  22774. bottom: 26.5 / 499.424
  22775. }
  22776. },
  22777. },
  22778. [
  22779. {
  22780. name: "Normal",
  22781. height: math.unit(7, "feet"),
  22782. default: true
  22783. },
  22784. {
  22785. name: "Macro",
  22786. height: math.unit(800, "feet")
  22787. },
  22788. {
  22789. name: "Megamacro",
  22790. height: math.unit(250, "miles")
  22791. },
  22792. ]
  22793. ))
  22794. characterMakers.push(() => makeCharacter(
  22795. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22796. {
  22797. front: {
  22798. height: math.unit(6, "feet"),
  22799. weight: math.unit(150, "lb"),
  22800. name: "Front",
  22801. image: {
  22802. source: "./media/characters/pliskin/front.svg",
  22803. extra: 1469 / 1359,
  22804. bottom: 70 / 1540
  22805. }
  22806. },
  22807. },
  22808. [
  22809. {
  22810. name: "Micro",
  22811. height: math.unit(3, "inches")
  22812. },
  22813. {
  22814. name: "Normal",
  22815. height: math.unit(5 + 11 / 12, "feet"),
  22816. default: true
  22817. },
  22818. {
  22819. name: "Macro",
  22820. height: math.unit(120, "feet")
  22821. },
  22822. ]
  22823. ))
  22824. characterMakers.push(() => makeCharacter(
  22825. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22826. {
  22827. front: {
  22828. height: math.unit(6, "feet"),
  22829. weight: math.unit(150, "lb"),
  22830. name: "Front",
  22831. image: {
  22832. source: "./media/characters/sammy/front.svg",
  22833. extra: 1193 / 1089,
  22834. bottom: 30.5 / 1226
  22835. }
  22836. },
  22837. },
  22838. [
  22839. {
  22840. name: "Macro",
  22841. height: math.unit(1700, "feet"),
  22842. default: true
  22843. },
  22844. {
  22845. name: "Examacro",
  22846. height: math.unit(2.5e9, "lightyears")
  22847. },
  22848. ]
  22849. ))
  22850. characterMakers.push(() => makeCharacter(
  22851. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22852. {
  22853. front: {
  22854. height: math.unit(21, "meters"),
  22855. weight: math.unit(12, "tonnes"),
  22856. name: "Front",
  22857. image: {
  22858. source: "./media/characters/kuru/front.svg",
  22859. extra: 4301 / 3785,
  22860. bottom: 371.3 / 4691
  22861. }
  22862. },
  22863. },
  22864. [
  22865. {
  22866. name: "Macro",
  22867. height: math.unit(21, "meters"),
  22868. default: true
  22869. },
  22870. ]
  22871. ))
  22872. characterMakers.push(() => makeCharacter(
  22873. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22874. {
  22875. front: {
  22876. height: math.unit(23, "meters"),
  22877. weight: math.unit(12.2, "tonnes"),
  22878. name: "Front",
  22879. image: {
  22880. source: "./media/characters/rakka/front.svg",
  22881. extra: 4670 / 4169,
  22882. bottom: 301 / 4968.7
  22883. }
  22884. },
  22885. },
  22886. [
  22887. {
  22888. name: "Macro",
  22889. height: math.unit(23, "meters"),
  22890. default: true
  22891. },
  22892. ]
  22893. ))
  22894. characterMakers.push(() => makeCharacter(
  22895. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22896. {
  22897. front: {
  22898. height: math.unit(6, "feet"),
  22899. weight: math.unit(150, "lb"),
  22900. name: "Front",
  22901. image: {
  22902. source: "./media/characters/rhys-feline/front.svg",
  22903. extra: 2488 / 2308,
  22904. bottom: 35.67 / 2519.19
  22905. }
  22906. },
  22907. },
  22908. [
  22909. {
  22910. name: "Really Small",
  22911. height: math.unit(1, "nm")
  22912. },
  22913. {
  22914. name: "Micro",
  22915. height: math.unit(4, "inches")
  22916. },
  22917. {
  22918. name: "Normal",
  22919. height: math.unit(4 + 10 / 12, "feet"),
  22920. default: true
  22921. },
  22922. {
  22923. name: "Macro",
  22924. height: math.unit(100, "feet")
  22925. },
  22926. {
  22927. name: "Megamacto",
  22928. height: math.unit(50, "miles")
  22929. },
  22930. ]
  22931. ))
  22932. characterMakers.push(() => makeCharacter(
  22933. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22934. {
  22935. side: {
  22936. height: math.unit(30, "feet"),
  22937. weight: math.unit(35000, "kg"),
  22938. name: "Side",
  22939. image: {
  22940. source: "./media/characters/alydar/side.svg",
  22941. extra: 234 / 222,
  22942. bottom: 6.5 / 241
  22943. }
  22944. },
  22945. front: {
  22946. height: math.unit(30, "feet"),
  22947. weight: math.unit(35000, "kg"),
  22948. name: "Front",
  22949. image: {
  22950. source: "./media/characters/alydar/front.svg",
  22951. extra: 223.37 / 210.2,
  22952. bottom: 22.3 / 246.76
  22953. }
  22954. },
  22955. top: {
  22956. height: math.unit(64.54, "feet"),
  22957. weight: math.unit(35000, "kg"),
  22958. name: "Top",
  22959. image: {
  22960. source: "./media/characters/alydar/top.svg"
  22961. }
  22962. },
  22963. anthro: {
  22964. height: math.unit(30, "feet"),
  22965. weight: math.unit(9000, "kg"),
  22966. name: "Anthro",
  22967. image: {
  22968. source: "./media/characters/alydar/anthro.svg",
  22969. extra: 432 / 421,
  22970. bottom: 7.18 / 440
  22971. }
  22972. },
  22973. maw: {
  22974. height: math.unit(11.693, "feet"),
  22975. name: "Maw",
  22976. image: {
  22977. source: "./media/characters/alydar/maw.svg"
  22978. }
  22979. },
  22980. head: {
  22981. height: math.unit(11.693, "feet"),
  22982. name: "Head",
  22983. image: {
  22984. source: "./media/characters/alydar/head.svg"
  22985. }
  22986. },
  22987. headAlt: {
  22988. height: math.unit(12.861, "feet"),
  22989. name: "Head (Alt)",
  22990. image: {
  22991. source: "./media/characters/alydar/head-alt.svg"
  22992. }
  22993. },
  22994. wing: {
  22995. height: math.unit(20.712, "feet"),
  22996. name: "Wing",
  22997. image: {
  22998. source: "./media/characters/alydar/wing.svg"
  22999. }
  23000. },
  23001. wingFeather: {
  23002. height: math.unit(9.662, "feet"),
  23003. name: "Wing Feather",
  23004. image: {
  23005. source: "./media/characters/alydar/wing-feather.svg"
  23006. }
  23007. },
  23008. countourFeather: {
  23009. height: math.unit(4.154, "feet"),
  23010. name: "Contour Feather",
  23011. image: {
  23012. source: "./media/characters/alydar/contour-feather.svg"
  23013. }
  23014. },
  23015. },
  23016. [
  23017. {
  23018. name: "Diplomatic",
  23019. height: math.unit(13, "feet"),
  23020. default: true
  23021. },
  23022. {
  23023. name: "Small",
  23024. height: math.unit(30, "feet")
  23025. },
  23026. {
  23027. name: "Normal",
  23028. height: math.unit(95, "feet"),
  23029. default: true
  23030. },
  23031. {
  23032. name: "Large",
  23033. height: math.unit(285, "feet")
  23034. },
  23035. {
  23036. name: "Incomprehensible",
  23037. height: math.unit(450, "megameters")
  23038. },
  23039. ]
  23040. ))
  23041. characterMakers.push(() => makeCharacter(
  23042. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23043. {
  23044. side: {
  23045. height: math.unit(11, "feet"),
  23046. weight: math.unit(1750, "kg"),
  23047. name: "Side",
  23048. image: {
  23049. source: "./media/characters/selicia/side.svg",
  23050. extra: 440 / 396,
  23051. bottom: 24.8 / 465.979
  23052. }
  23053. },
  23054. maw: {
  23055. height: math.unit(4.665, "feet"),
  23056. name: "Maw",
  23057. image: {
  23058. source: "./media/characters/selicia/maw.svg"
  23059. }
  23060. },
  23061. },
  23062. [
  23063. {
  23064. name: "Normal",
  23065. height: math.unit(11, "feet"),
  23066. default: true
  23067. },
  23068. ]
  23069. ))
  23070. characterMakers.push(() => makeCharacter(
  23071. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23072. {
  23073. side: {
  23074. height: math.unit(2 + 6 / 12, "feet"),
  23075. weight: math.unit(30, "lb"),
  23076. name: "Side",
  23077. image: {
  23078. source: "./media/characters/layla/side.svg",
  23079. extra: 244 / 188,
  23080. bottom: 18.2 / 262.1
  23081. }
  23082. },
  23083. back: {
  23084. height: math.unit(2 + 6 / 12, "feet"),
  23085. weight: math.unit(30, "lb"),
  23086. name: "Back",
  23087. image: {
  23088. source: "./media/characters/layla/back.svg",
  23089. extra: 308 / 241.5,
  23090. bottom: 8.9 / 316.8
  23091. }
  23092. },
  23093. cumming: {
  23094. height: math.unit(2 + 6 / 12, "feet"),
  23095. weight: math.unit(30, "lb"),
  23096. name: "Cumming",
  23097. image: {
  23098. source: "./media/characters/layla/cumming.svg",
  23099. extra: 342 / 279,
  23100. bottom: 595 / 938
  23101. }
  23102. },
  23103. dickFlaccid: {
  23104. height: math.unit(2.595, "feet"),
  23105. name: "Flaccid Genitals",
  23106. image: {
  23107. source: "./media/characters/layla/dick-flaccid.svg"
  23108. }
  23109. },
  23110. dickErect: {
  23111. height: math.unit(2.359, "feet"),
  23112. name: "Erect Genitals",
  23113. image: {
  23114. source: "./media/characters/layla/dick-erect.svg"
  23115. }
  23116. },
  23117. },
  23118. [
  23119. {
  23120. name: "Micro",
  23121. height: math.unit(1, "inch")
  23122. },
  23123. {
  23124. name: "Small",
  23125. height: math.unit(1, "foot")
  23126. },
  23127. {
  23128. name: "Normal",
  23129. height: math.unit(2 + 6 / 12, "feet"),
  23130. default: true
  23131. },
  23132. {
  23133. name: "Macro",
  23134. height: math.unit(200, "feet")
  23135. },
  23136. {
  23137. name: "Megamacro",
  23138. height: math.unit(1000, "miles")
  23139. },
  23140. {
  23141. name: "Planetary",
  23142. height: math.unit(8000, "miles")
  23143. },
  23144. {
  23145. name: "True Layla",
  23146. height: math.unit(200000 * 7, "multiverses")
  23147. },
  23148. ]
  23149. ))
  23150. characterMakers.push(() => makeCharacter(
  23151. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23152. {
  23153. back: {
  23154. height: math.unit(10.5, "feet"),
  23155. weight: math.unit(800, "lb"),
  23156. name: "Back",
  23157. image: {
  23158. source: "./media/characters/knox/back.svg",
  23159. extra: 1486 / 1089,
  23160. bottom: 107 / 1601.4
  23161. }
  23162. },
  23163. side: {
  23164. height: math.unit(10.5, "feet"),
  23165. weight: math.unit(800, "lb"),
  23166. name: "Side",
  23167. image: {
  23168. source: "./media/characters/knox/side.svg",
  23169. extra: 244 / 218,
  23170. bottom: 14 / 260
  23171. }
  23172. },
  23173. },
  23174. [
  23175. {
  23176. name: "Compact",
  23177. height: math.unit(10.5, "feet"),
  23178. default: true
  23179. },
  23180. {
  23181. name: "Dynamax",
  23182. height: math.unit(210, "feet")
  23183. },
  23184. {
  23185. name: "Full Macro",
  23186. height: math.unit(850, "feet")
  23187. },
  23188. ]
  23189. ))
  23190. characterMakers.push(() => makeCharacter(
  23191. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23192. {
  23193. front: {
  23194. height: math.unit(6, "feet"),
  23195. weight: math.unit(152, "lb"),
  23196. name: "Front",
  23197. image: {
  23198. source: "./media/characters/shin-pikachu/front.svg",
  23199. extra: 1574 / 1480,
  23200. bottom: 53.3 / 1626
  23201. }
  23202. },
  23203. hand: {
  23204. height: math.unit(1.055, "feet"),
  23205. name: "Hand",
  23206. image: {
  23207. source: "./media/characters/shin-pikachu/hand.svg"
  23208. }
  23209. },
  23210. foot: {
  23211. height: math.unit(1.1, "feet"),
  23212. name: "Foot",
  23213. image: {
  23214. source: "./media/characters/shin-pikachu/foot.svg"
  23215. }
  23216. },
  23217. collar: {
  23218. height: math.unit(0.386, "feet"),
  23219. name: "Collar",
  23220. image: {
  23221. source: "./media/characters/shin-pikachu/collar.svg"
  23222. }
  23223. },
  23224. },
  23225. [
  23226. {
  23227. name: "Smallest",
  23228. height: math.unit(0.5, "inches")
  23229. },
  23230. {
  23231. name: "Micro",
  23232. height: math.unit(6, "inches")
  23233. },
  23234. {
  23235. name: "Normal",
  23236. height: math.unit(6, "feet"),
  23237. default: true
  23238. },
  23239. {
  23240. name: "Macro",
  23241. height: math.unit(150, "feet")
  23242. },
  23243. ]
  23244. ))
  23245. characterMakers.push(() => makeCharacter(
  23246. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23247. {
  23248. front: {
  23249. height: math.unit(28, "feet"),
  23250. weight: math.unit(10500, "lb"),
  23251. name: "Front",
  23252. image: {
  23253. source: "./media/characters/kayda/front.svg",
  23254. extra: 1536 / 1428,
  23255. bottom: 68.7 / 1603
  23256. }
  23257. },
  23258. back: {
  23259. height: math.unit(28, "feet"),
  23260. weight: math.unit(10500, "lb"),
  23261. name: "Back",
  23262. image: {
  23263. source: "./media/characters/kayda/back.svg",
  23264. extra: 1557 / 1464,
  23265. bottom: 39.5 / 1597.49
  23266. }
  23267. },
  23268. dick: {
  23269. height: math.unit(3.858, "feet"),
  23270. name: "Dick",
  23271. image: {
  23272. source: "./media/characters/kayda/dick.svg"
  23273. }
  23274. },
  23275. },
  23276. [
  23277. {
  23278. name: "Macro",
  23279. height: math.unit(28, "feet"),
  23280. default: true
  23281. },
  23282. ]
  23283. ))
  23284. characterMakers.push(() => makeCharacter(
  23285. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23286. {
  23287. front: {
  23288. height: math.unit(10 + 11 / 12, "feet"),
  23289. weight: math.unit(1400, "lb"),
  23290. name: "Front",
  23291. image: {
  23292. source: "./media/characters/brian/front.svg",
  23293. extra: 737 / 692,
  23294. bottom: 55.4 / 785
  23295. }
  23296. },
  23297. },
  23298. [
  23299. {
  23300. name: "Normal",
  23301. height: math.unit(10 + 11 / 12, "feet"),
  23302. default: true
  23303. },
  23304. ]
  23305. ))
  23306. characterMakers.push(() => makeCharacter(
  23307. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23308. {
  23309. front: {
  23310. height: math.unit(5 + 8 / 12, "feet"),
  23311. weight: math.unit(140, "lb"),
  23312. name: "Front",
  23313. image: {
  23314. source: "./media/characters/khemri/front.svg",
  23315. extra: 4780 / 4059,
  23316. bottom: 80.1 / 4859.25
  23317. }
  23318. },
  23319. },
  23320. [
  23321. {
  23322. name: "Micro",
  23323. height: math.unit(6, "inches")
  23324. },
  23325. {
  23326. name: "Normal",
  23327. height: math.unit(5 + 8 / 12, "feet"),
  23328. default: true
  23329. },
  23330. ]
  23331. ))
  23332. characterMakers.push(() => makeCharacter(
  23333. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23334. {
  23335. front: {
  23336. height: math.unit(13, "feet"),
  23337. weight: math.unit(1700, "lb"),
  23338. name: "Front",
  23339. image: {
  23340. source: "./media/characters/felix-braveheart/front.svg",
  23341. extra: 1222 / 1157,
  23342. bottom: 53.2 / 1280
  23343. }
  23344. },
  23345. back: {
  23346. height: math.unit(13, "feet"),
  23347. weight: math.unit(1700, "lb"),
  23348. name: "Back",
  23349. image: {
  23350. source: "./media/characters/felix-braveheart/back.svg",
  23351. extra: 1277 / 1203,
  23352. bottom: 50.2 / 1327
  23353. }
  23354. },
  23355. feral: {
  23356. height: math.unit(6, "feet"),
  23357. weight: math.unit(400, "lb"),
  23358. name: "Feral",
  23359. image: {
  23360. source: "./media/characters/felix-braveheart/feral.svg",
  23361. extra: 682 / 625,
  23362. bottom: 6.9 / 688
  23363. }
  23364. },
  23365. },
  23366. [
  23367. {
  23368. name: "Normal",
  23369. height: math.unit(13, "feet"),
  23370. default: true
  23371. },
  23372. ]
  23373. ))
  23374. characterMakers.push(() => makeCharacter(
  23375. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23376. {
  23377. side: {
  23378. height: math.unit(5 + 11 / 12, "feet"),
  23379. weight: math.unit(1400, "lb"),
  23380. name: "Side",
  23381. image: {
  23382. source: "./media/characters/shadow-blade/side.svg",
  23383. extra: 1726 / 1267,
  23384. bottom: 58.4 / 1785
  23385. }
  23386. },
  23387. },
  23388. [
  23389. {
  23390. name: "Normal",
  23391. height: math.unit(5 + 11 / 12, "feet"),
  23392. default: true
  23393. },
  23394. ]
  23395. ))
  23396. characterMakers.push(() => makeCharacter(
  23397. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23398. {
  23399. front: {
  23400. height: math.unit(1 + 6 / 12, "feet"),
  23401. weight: math.unit(25, "lb"),
  23402. name: "Front",
  23403. image: {
  23404. source: "./media/characters/karla-halldor/front.svg",
  23405. extra: 1459 / 1383,
  23406. bottom: 12 / 1472
  23407. }
  23408. },
  23409. },
  23410. [
  23411. {
  23412. name: "Normal",
  23413. height: math.unit(1 + 6 / 12, "feet"),
  23414. default: true
  23415. },
  23416. ]
  23417. ))
  23418. characterMakers.push(() => makeCharacter(
  23419. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23420. {
  23421. front: {
  23422. height: math.unit(6 + 2 / 12, "feet"),
  23423. weight: math.unit(160, "lb"),
  23424. name: "Front",
  23425. image: {
  23426. source: "./media/characters/ariam/front.svg",
  23427. extra: 714 / 617,
  23428. bottom: 23.4 / 737,
  23429. }
  23430. },
  23431. squatting: {
  23432. height: math.unit(4.1, "feet"),
  23433. weight: math.unit(160, "lb"),
  23434. name: "Squatting",
  23435. image: {
  23436. source: "./media/characters/ariam/squatting.svg",
  23437. extra: 2617 / 2112,
  23438. bottom: 61.2 / 2681,
  23439. }
  23440. },
  23441. },
  23442. [
  23443. {
  23444. name: "Normal",
  23445. height: math.unit(6 + 2 / 12, "feet"),
  23446. default: true
  23447. },
  23448. {
  23449. name: "Normal+",
  23450. height: math.unit(4, "meters")
  23451. },
  23452. {
  23453. name: "Macro",
  23454. height: math.unit(50, "meters")
  23455. },
  23456. {
  23457. name: "Macro+",
  23458. height: math.unit(100, "meters")
  23459. },
  23460. {
  23461. name: "Megamacro",
  23462. height: math.unit(20, "km")
  23463. },
  23464. ]
  23465. ))
  23466. characterMakers.push(() => makeCharacter(
  23467. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23468. {
  23469. front: {
  23470. height: math.unit(1.67, "meters"),
  23471. weight: math.unit(140, "lb"),
  23472. name: "Front",
  23473. image: {
  23474. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23475. extra: 438 / 410,
  23476. bottom: 0.75 / 439
  23477. }
  23478. },
  23479. },
  23480. [
  23481. {
  23482. name: "Shrunken",
  23483. height: math.unit(7.6, "cm")
  23484. },
  23485. {
  23486. name: "Human Scale",
  23487. height: math.unit(1.67, "meters")
  23488. },
  23489. {
  23490. name: "Wolxi Scale",
  23491. height: math.unit(36.7, "meters"),
  23492. default: true
  23493. },
  23494. ]
  23495. ))
  23496. characterMakers.push(() => makeCharacter(
  23497. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23498. {
  23499. front: {
  23500. height: math.unit(1.73, "meters"),
  23501. weight: math.unit(240, "lb"),
  23502. name: "Front",
  23503. image: {
  23504. source: "./media/characters/izue-two-mothers/front.svg",
  23505. extra: 469 / 437,
  23506. bottom: 1.24 / 470.6
  23507. }
  23508. },
  23509. },
  23510. [
  23511. {
  23512. name: "Shrunken",
  23513. height: math.unit(7.86, "cm")
  23514. },
  23515. {
  23516. name: "Human Scale",
  23517. height: math.unit(1.73, "meters")
  23518. },
  23519. {
  23520. name: "Wolxi Scale",
  23521. height: math.unit(38, "meters"),
  23522. default: true
  23523. },
  23524. ]
  23525. ))
  23526. characterMakers.push(() => makeCharacter(
  23527. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23528. {
  23529. front: {
  23530. height: math.unit(1.55, "meters"),
  23531. weight: math.unit(120, "lb"),
  23532. name: "Front",
  23533. image: {
  23534. source: "./media/characters/teeku-love-shack/front.svg",
  23535. extra: 387 / 362,
  23536. bottom: 1.51 / 388
  23537. }
  23538. },
  23539. },
  23540. [
  23541. {
  23542. name: "Shrunken",
  23543. height: math.unit(7, "cm")
  23544. },
  23545. {
  23546. name: "Human Scale",
  23547. height: math.unit(1.55, "meters")
  23548. },
  23549. {
  23550. name: "Wolxi Scale",
  23551. height: math.unit(34.1, "meters"),
  23552. default: true
  23553. },
  23554. ]
  23555. ))
  23556. characterMakers.push(() => makeCharacter(
  23557. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23558. {
  23559. front: {
  23560. height: math.unit(1.83, "meters"),
  23561. weight: math.unit(135, "lb"),
  23562. name: "Front",
  23563. image: {
  23564. source: "./media/characters/dejma-the-red/front.svg",
  23565. extra: 480 / 458,
  23566. bottom: 1.8 / 482
  23567. }
  23568. },
  23569. },
  23570. [
  23571. {
  23572. name: "Shrunken",
  23573. height: math.unit(8.3, "cm")
  23574. },
  23575. {
  23576. name: "Human Scale",
  23577. height: math.unit(1.83, "meters")
  23578. },
  23579. {
  23580. name: "Wolxi Scale",
  23581. height: math.unit(40, "meters"),
  23582. default: true
  23583. },
  23584. ]
  23585. ))
  23586. characterMakers.push(() => makeCharacter(
  23587. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23588. {
  23589. front: {
  23590. height: math.unit(1.78, "meters"),
  23591. weight: math.unit(65, "kg"),
  23592. name: "Front",
  23593. image: {
  23594. source: "./media/characters/aki/front.svg",
  23595. extra: 452 / 415
  23596. }
  23597. },
  23598. frontNsfw: {
  23599. height: math.unit(1.78, "meters"),
  23600. weight: math.unit(65, "kg"),
  23601. name: "Front (NSFW)",
  23602. image: {
  23603. source: "./media/characters/aki/front-nsfw.svg",
  23604. extra: 452 / 415
  23605. }
  23606. },
  23607. back: {
  23608. height: math.unit(1.78, "meters"),
  23609. weight: math.unit(65, "kg"),
  23610. name: "Back",
  23611. image: {
  23612. source: "./media/characters/aki/back.svg",
  23613. extra: 452 / 415
  23614. }
  23615. },
  23616. rump: {
  23617. height: math.unit(2.05, "feet"),
  23618. name: "Rump",
  23619. image: {
  23620. source: "./media/characters/aki/rump.svg"
  23621. }
  23622. },
  23623. dick: {
  23624. height: math.unit(0.95, "feet"),
  23625. name: "Dick",
  23626. image: {
  23627. source: "./media/characters/aki/dick.svg"
  23628. }
  23629. },
  23630. },
  23631. [
  23632. {
  23633. name: "Micro",
  23634. height: math.unit(15, "cm")
  23635. },
  23636. {
  23637. name: "Normal",
  23638. height: math.unit(178, "cm"),
  23639. default: true
  23640. },
  23641. {
  23642. name: "Macro",
  23643. height: math.unit(214, "m")
  23644. },
  23645. {
  23646. name: "Macro+",
  23647. height: math.unit(534, "m")
  23648. },
  23649. ]
  23650. ))
  23651. characterMakers.push(() => makeCharacter(
  23652. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23653. {
  23654. front: {
  23655. height: math.unit(5 + 5 / 12, "feet"),
  23656. weight: math.unit(120, "lb"),
  23657. name: "Front",
  23658. image: {
  23659. source: "./media/characters/ari/front.svg",
  23660. extra: 714.5 / 682,
  23661. bottom: 8 / 722.5
  23662. }
  23663. },
  23664. },
  23665. [
  23666. {
  23667. name: "Normal",
  23668. height: math.unit(5 + 5 / 12, "feet")
  23669. },
  23670. {
  23671. name: "Macro",
  23672. height: math.unit(100, "feet"),
  23673. default: true
  23674. },
  23675. {
  23676. name: "Megamacro",
  23677. height: math.unit(100, "miles")
  23678. },
  23679. {
  23680. name: "Gigamacro",
  23681. height: math.unit(80000, "miles")
  23682. },
  23683. ]
  23684. ))
  23685. characterMakers.push(() => makeCharacter(
  23686. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23687. {
  23688. side: {
  23689. height: math.unit(9, "feet"),
  23690. weight: math.unit(400, "kg"),
  23691. name: "Side",
  23692. image: {
  23693. source: "./media/characters/bolt/side.svg",
  23694. extra: 1126 / 896,
  23695. bottom: 60 / 1187.3,
  23696. }
  23697. },
  23698. },
  23699. [
  23700. {
  23701. name: "Micro",
  23702. height: math.unit(5, "inches")
  23703. },
  23704. {
  23705. name: "Normal",
  23706. height: math.unit(9, "feet"),
  23707. default: true
  23708. },
  23709. {
  23710. name: "Macro",
  23711. height: math.unit(700, "feet")
  23712. },
  23713. {
  23714. name: "Max Size",
  23715. height: math.unit(1.52e22, "yottameters")
  23716. },
  23717. ]
  23718. ))
  23719. characterMakers.push(() => makeCharacter(
  23720. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23721. {
  23722. front: {
  23723. height: math.unit(4.53, "meters"),
  23724. weight: math.unit(3, "tons"),
  23725. name: "Front",
  23726. image: {
  23727. source: "./media/characters/draekon-sylviar/front.svg",
  23728. extra: 1228 / 1068,
  23729. bottom: 41 / 1270
  23730. }
  23731. },
  23732. tail: {
  23733. height: math.unit(1.772, "meter"),
  23734. name: "Tail",
  23735. image: {
  23736. source: "./media/characters/draekon-sylviar/tail.svg"
  23737. }
  23738. },
  23739. head: {
  23740. height: math.unit(1.331, "meter"),
  23741. name: "Head",
  23742. image: {
  23743. source: "./media/characters/draekon-sylviar/head.svg"
  23744. }
  23745. },
  23746. hand: {
  23747. height: math.unit(0.564, "meter"),
  23748. name: "Hand",
  23749. image: {
  23750. source: "./media/characters/draekon-sylviar/hand.svg"
  23751. }
  23752. },
  23753. foot: {
  23754. height: math.unit(0.621, "meter"),
  23755. name: "Foot",
  23756. image: {
  23757. source: "./media/characters/draekon-sylviar/foot.svg",
  23758. bottom: 32 / 324
  23759. }
  23760. },
  23761. dick: {
  23762. height: math.unit(61, "cm"),
  23763. name: "Dick",
  23764. image: {
  23765. source: "./media/characters/draekon-sylviar/dick.svg"
  23766. }
  23767. },
  23768. dickseparated: {
  23769. height: math.unit(61, "cm"),
  23770. name: "Dick-separated",
  23771. image: {
  23772. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23773. }
  23774. },
  23775. },
  23776. [
  23777. {
  23778. name: "Small",
  23779. height: math.unit(4.53 / 2, "meters"),
  23780. default: true
  23781. },
  23782. {
  23783. name: "Normal",
  23784. height: math.unit(4.53, "meters"),
  23785. default: true
  23786. },
  23787. {
  23788. name: "Large",
  23789. height: math.unit(4.53 * 2, "meters"),
  23790. },
  23791. ]
  23792. ))
  23793. characterMakers.push(() => makeCharacter(
  23794. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23795. {
  23796. front: {
  23797. height: math.unit(6 + 2 / 12, "feet"),
  23798. weight: math.unit(180, "lb"),
  23799. name: "Front",
  23800. image: {
  23801. source: "./media/characters/brawler/front.svg",
  23802. extra: 3301 / 3027,
  23803. bottom: 138 / 3439
  23804. }
  23805. },
  23806. },
  23807. [
  23808. {
  23809. name: "Normal",
  23810. height: math.unit(6 + 2 / 12, "feet"),
  23811. default: true
  23812. },
  23813. ]
  23814. ))
  23815. characterMakers.push(() => makeCharacter(
  23816. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23817. {
  23818. front: {
  23819. height: math.unit(11, "feet"),
  23820. weight: math.unit(1000, "lb"),
  23821. name: "Front",
  23822. image: {
  23823. source: "./media/characters/alex/front.svg",
  23824. bottom: 44.5 / 620
  23825. }
  23826. },
  23827. },
  23828. [
  23829. {
  23830. name: "Micro",
  23831. height: math.unit(5, "inches")
  23832. },
  23833. {
  23834. name: "Normal",
  23835. height: math.unit(11, "feet"),
  23836. default: true
  23837. },
  23838. {
  23839. name: "Macro",
  23840. height: math.unit(9.5e9, "feet")
  23841. },
  23842. {
  23843. name: "Max Size",
  23844. height: math.unit(1.4e283, "yottameters")
  23845. },
  23846. ]
  23847. ))
  23848. characterMakers.push(() => makeCharacter(
  23849. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23850. {
  23851. female: {
  23852. height: math.unit(29.9, "m"),
  23853. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23854. name: "Female",
  23855. image: {
  23856. source: "./media/characters/zenari/female.svg",
  23857. extra: 3281.6 / 3217,
  23858. bottom: 72.2 / 3353
  23859. }
  23860. },
  23861. male: {
  23862. height: math.unit(27.7, "m"),
  23863. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23864. name: "Male",
  23865. image: {
  23866. source: "./media/characters/zenari/male.svg",
  23867. extra: 3008 / 2991,
  23868. bottom: 54.6 / 3069
  23869. }
  23870. },
  23871. },
  23872. [
  23873. {
  23874. name: "Macro",
  23875. height: math.unit(29.7, "meters"),
  23876. default: true
  23877. },
  23878. ]
  23879. ))
  23880. characterMakers.push(() => makeCharacter(
  23881. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23882. {
  23883. female: {
  23884. height: math.unit(23.8, "m"),
  23885. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23886. name: "Female",
  23887. image: {
  23888. source: "./media/characters/mactarian/female.svg",
  23889. extra: 2662 / 2569,
  23890. bottom: 73 / 2736
  23891. }
  23892. },
  23893. male: {
  23894. height: math.unit(23.8, "m"),
  23895. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23896. name: "Male",
  23897. image: {
  23898. source: "./media/characters/mactarian/male.svg",
  23899. extra: 2673 / 2600,
  23900. bottom: 76 / 2750
  23901. }
  23902. },
  23903. },
  23904. [
  23905. {
  23906. name: "Macro",
  23907. height: math.unit(23.8, "meters"),
  23908. default: true
  23909. },
  23910. ]
  23911. ))
  23912. characterMakers.push(() => makeCharacter(
  23913. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23914. {
  23915. female: {
  23916. height: math.unit(19.3, "m"),
  23917. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23918. name: "Female",
  23919. image: {
  23920. source: "./media/characters/umok/female.svg",
  23921. extra: 2186 / 2078,
  23922. bottom: 87 / 2277
  23923. }
  23924. },
  23925. male: {
  23926. height: math.unit(19.5, "m"),
  23927. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23928. name: "Male",
  23929. image: {
  23930. source: "./media/characters/umok/male.svg",
  23931. extra: 2233 / 2140,
  23932. bottom: 24.4 / 2258
  23933. }
  23934. },
  23935. },
  23936. [
  23937. {
  23938. name: "Macro",
  23939. height: math.unit(19.3, "meters"),
  23940. default: true
  23941. },
  23942. ]
  23943. ))
  23944. characterMakers.push(() => makeCharacter(
  23945. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23946. {
  23947. female: {
  23948. height: math.unit(26.15, "m"),
  23949. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23950. name: "Female",
  23951. image: {
  23952. source: "./media/characters/joraxian/female.svg",
  23953. extra: 2912 / 2824,
  23954. bottom: 36 / 2956
  23955. }
  23956. },
  23957. male: {
  23958. height: math.unit(25.4, "m"),
  23959. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23960. name: "Male",
  23961. image: {
  23962. source: "./media/characters/joraxian/male.svg",
  23963. extra: 2877 / 2721,
  23964. bottom: 82 / 2967
  23965. }
  23966. },
  23967. },
  23968. [
  23969. {
  23970. name: "Macro",
  23971. height: math.unit(26.15, "meters"),
  23972. default: true
  23973. },
  23974. ]
  23975. ))
  23976. characterMakers.push(() => makeCharacter(
  23977. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23978. {
  23979. female: {
  23980. height: math.unit(21.6, "m"),
  23981. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23982. name: "Female",
  23983. image: {
  23984. source: "./media/characters/sthara/female.svg",
  23985. extra: 2516 / 2347,
  23986. bottom: 21.5 / 2537
  23987. }
  23988. },
  23989. male: {
  23990. height: math.unit(24, "m"),
  23991. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23992. name: "Male",
  23993. image: {
  23994. source: "./media/characters/sthara/male.svg",
  23995. extra: 2732 / 2607,
  23996. bottom: 23 / 2732
  23997. }
  23998. },
  23999. },
  24000. [
  24001. {
  24002. name: "Macro",
  24003. height: math.unit(21.6, "meters"),
  24004. default: true
  24005. },
  24006. ]
  24007. ))
  24008. characterMakers.push(() => makeCharacter(
  24009. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24010. {
  24011. front: {
  24012. height: math.unit(6 + 4 / 12, "feet"),
  24013. weight: math.unit(175, "lb"),
  24014. name: "Front",
  24015. image: {
  24016. source: "./media/characters/luka-bryzant/front.svg",
  24017. extra: 311 / 289,
  24018. bottom: 4 / 315
  24019. }
  24020. },
  24021. back: {
  24022. height: math.unit(6 + 4 / 12, "feet"),
  24023. weight: math.unit(175, "lb"),
  24024. name: "Back",
  24025. image: {
  24026. source: "./media/characters/luka-bryzant/back.svg",
  24027. extra: 311 / 289,
  24028. bottom: 3.8 / 313.7
  24029. }
  24030. },
  24031. },
  24032. [
  24033. {
  24034. name: "Micro",
  24035. height: math.unit(10, "inches")
  24036. },
  24037. {
  24038. name: "Normal",
  24039. height: math.unit(6 + 4 / 12, "feet"),
  24040. default: true
  24041. },
  24042. {
  24043. name: "Large",
  24044. height: math.unit(12, "feet")
  24045. },
  24046. ]
  24047. ))
  24048. characterMakers.push(() => makeCharacter(
  24049. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24050. {
  24051. front: {
  24052. height: math.unit(5 + 7 / 12, "feet"),
  24053. weight: math.unit(185, "lb"),
  24054. name: "Front",
  24055. image: {
  24056. source: "./media/characters/aman-aquila/front.svg",
  24057. extra: 1013 / 976,
  24058. bottom: 45.6 / 1057
  24059. }
  24060. },
  24061. side: {
  24062. height: math.unit(5 + 7 / 12, "feet"),
  24063. weight: math.unit(185, "lb"),
  24064. name: "Side",
  24065. image: {
  24066. source: "./media/characters/aman-aquila/side.svg",
  24067. extra: 1054 / 1011,
  24068. bottom: 15 / 1070
  24069. }
  24070. },
  24071. back: {
  24072. height: math.unit(5 + 7 / 12, "feet"),
  24073. weight: math.unit(185, "lb"),
  24074. name: "Back",
  24075. image: {
  24076. source: "./media/characters/aman-aquila/back.svg",
  24077. extra: 1026 / 970,
  24078. bottom: 12 / 1039
  24079. }
  24080. },
  24081. head: {
  24082. height: math.unit(1.211, "feet"),
  24083. name: "Head",
  24084. image: {
  24085. source: "./media/characters/aman-aquila/head.svg",
  24086. }
  24087. },
  24088. },
  24089. [
  24090. {
  24091. name: "Minimicro",
  24092. height: math.unit(0.057, "inches")
  24093. },
  24094. {
  24095. name: "Micro",
  24096. height: math.unit(7, "inches")
  24097. },
  24098. {
  24099. name: "Mini",
  24100. height: math.unit(3 + 7 / 12, "feet")
  24101. },
  24102. {
  24103. name: "Normal",
  24104. height: math.unit(5 + 7 / 12, "feet"),
  24105. default: true
  24106. },
  24107. {
  24108. name: "Macro",
  24109. height: math.unit(157 + 7 / 12, "feet")
  24110. },
  24111. {
  24112. name: "Megamacro",
  24113. height: math.unit(1557 + 7 / 12, "feet")
  24114. },
  24115. {
  24116. name: "Gigamacro",
  24117. height: math.unit(15557 + 7 / 12, "feet")
  24118. },
  24119. ]
  24120. ))
  24121. characterMakers.push(() => makeCharacter(
  24122. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24123. {
  24124. front: {
  24125. height: math.unit(3 + 2 / 12, "inches"),
  24126. weight: math.unit(0.3, "ounces"),
  24127. name: "Front",
  24128. image: {
  24129. source: "./media/characters/hiphae/front.svg",
  24130. extra: 1931 / 1683,
  24131. bottom: 24 / 1955
  24132. }
  24133. },
  24134. },
  24135. [
  24136. {
  24137. name: "Normal",
  24138. height: math.unit(3 + 1 / 2, "inches"),
  24139. default: true
  24140. },
  24141. ]
  24142. ))
  24143. characterMakers.push(() => makeCharacter(
  24144. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24145. {
  24146. front: {
  24147. height: math.unit(5 + 10 / 12, "feet"),
  24148. weight: math.unit(165, "lb"),
  24149. name: "Front",
  24150. image: {
  24151. source: "./media/characters/nicky/front.svg",
  24152. extra: 3144 / 2886,
  24153. bottom: 45.6 / 3192
  24154. }
  24155. },
  24156. back: {
  24157. height: math.unit(5 + 10 / 12, "feet"),
  24158. weight: math.unit(165, "lb"),
  24159. name: "Back",
  24160. image: {
  24161. source: "./media/characters/nicky/back.svg",
  24162. extra: 3055 / 2804,
  24163. bottom: 28.4 / 3087
  24164. }
  24165. },
  24166. frontclothed: {
  24167. height: math.unit(5 + 10 / 12, "feet"),
  24168. weight: math.unit(165, "lb"),
  24169. name: "Front-clothed",
  24170. image: {
  24171. source: "./media/characters/nicky/front-clothed.svg",
  24172. extra: 3184.9 / 2926.9,
  24173. bottom: 86.5 / 3239.9
  24174. }
  24175. },
  24176. foot: {
  24177. height: math.unit(1.16, "feet"),
  24178. name: "Foot",
  24179. image: {
  24180. source: "./media/characters/nicky/foot.svg"
  24181. }
  24182. },
  24183. feet: {
  24184. height: math.unit(1.34, "feet"),
  24185. name: "Feet",
  24186. image: {
  24187. source: "./media/characters/nicky/feet.svg"
  24188. }
  24189. },
  24190. maw: {
  24191. height: math.unit(0.9, "feet"),
  24192. name: "Maw",
  24193. image: {
  24194. source: "./media/characters/nicky/maw.svg"
  24195. }
  24196. },
  24197. },
  24198. [
  24199. {
  24200. name: "Normal",
  24201. height: math.unit(5 + 10 / 12, "feet"),
  24202. default: true
  24203. },
  24204. {
  24205. name: "Macro",
  24206. height: math.unit(60, "feet")
  24207. },
  24208. {
  24209. name: "Megamacro",
  24210. height: math.unit(1, "mile")
  24211. },
  24212. ]
  24213. ))
  24214. characterMakers.push(() => makeCharacter(
  24215. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24216. {
  24217. side: {
  24218. height: math.unit(10, "feet"),
  24219. weight: math.unit(600, "lb"),
  24220. name: "Side",
  24221. image: {
  24222. source: "./media/characters/blair/side.svg",
  24223. bottom: 16.6 / 475,
  24224. extra: 458 / 431
  24225. }
  24226. },
  24227. },
  24228. [
  24229. {
  24230. name: "Micro",
  24231. height: math.unit(8, "inches")
  24232. },
  24233. {
  24234. name: "Normal",
  24235. height: math.unit(10, "feet"),
  24236. default: true
  24237. },
  24238. {
  24239. name: "Macro",
  24240. height: math.unit(180, "feet")
  24241. },
  24242. ]
  24243. ))
  24244. characterMakers.push(() => makeCharacter(
  24245. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24246. {
  24247. front: {
  24248. height: math.unit(5 + 4 / 12, "feet"),
  24249. weight: math.unit(125, "lb"),
  24250. name: "Front",
  24251. image: {
  24252. source: "./media/characters/fisher/front.svg",
  24253. extra: 444 / 390,
  24254. bottom: 2 / 444.8
  24255. }
  24256. },
  24257. },
  24258. [
  24259. {
  24260. name: "Micro",
  24261. height: math.unit(4, "inches")
  24262. },
  24263. {
  24264. name: "Normal",
  24265. height: math.unit(5 + 4 / 12, "feet"),
  24266. default: true
  24267. },
  24268. {
  24269. name: "Macro",
  24270. height: math.unit(100, "feet")
  24271. },
  24272. ]
  24273. ))
  24274. characterMakers.push(() => makeCharacter(
  24275. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24276. {
  24277. front: {
  24278. height: math.unit(6.71, "feet"),
  24279. weight: math.unit(200, "lb"),
  24280. capacity: math.unit(1000000, "people"),
  24281. name: "Front",
  24282. image: {
  24283. source: "./media/characters/gliss/front.svg",
  24284. extra: 2347 / 2231,
  24285. bottom: 113 / 2462
  24286. }
  24287. },
  24288. hammerspaceSize: {
  24289. height: math.unit(6.71 * 717, "feet"),
  24290. weight: math.unit(200, "lb"),
  24291. capacity: math.unit(1000000, "people"),
  24292. name: "Hammerspace Size",
  24293. image: {
  24294. source: "./media/characters/gliss/front.svg",
  24295. extra: 2347 / 2231,
  24296. bottom: 113 / 2462
  24297. }
  24298. },
  24299. },
  24300. [
  24301. {
  24302. name: "Normal",
  24303. height: math.unit(6.71, "feet"),
  24304. default: true
  24305. },
  24306. ]
  24307. ))
  24308. characterMakers.push(() => makeCharacter(
  24309. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24310. {
  24311. side: {
  24312. height: math.unit(1.44, "m"),
  24313. weight: math.unit(80, "kg"),
  24314. name: "Side",
  24315. image: {
  24316. source: "./media/characters/dune-anderson/side.svg",
  24317. bottom: 49 / 1426
  24318. }
  24319. },
  24320. },
  24321. [
  24322. {
  24323. name: "Wolf-sized",
  24324. height: math.unit(1.44, "meters")
  24325. },
  24326. {
  24327. name: "Normal",
  24328. height: math.unit(5.05, "meters"),
  24329. default: true
  24330. },
  24331. {
  24332. name: "Big",
  24333. height: math.unit(14.4, "meters")
  24334. },
  24335. {
  24336. name: "Huge",
  24337. height: math.unit(144, "meters")
  24338. },
  24339. ]
  24340. ))
  24341. characterMakers.push(() => makeCharacter(
  24342. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24343. {
  24344. front: {
  24345. height: math.unit(7, "feet"),
  24346. weight: math.unit(425, "lb"),
  24347. name: "Front",
  24348. image: {
  24349. source: "./media/characters/hind/front.svg",
  24350. extra: 2091 / 1860,
  24351. bottom: 129 / 2220
  24352. }
  24353. },
  24354. back: {
  24355. height: math.unit(7, "feet"),
  24356. weight: math.unit(425, "lb"),
  24357. name: "Back",
  24358. image: {
  24359. source: "./media/characters/hind/back.svg",
  24360. extra: 2091 / 1860,
  24361. bottom: 24.6 / 2309
  24362. }
  24363. },
  24364. tail: {
  24365. height: math.unit(2.8, "feet"),
  24366. name: "Tail",
  24367. image: {
  24368. source: "./media/characters/hind/tail.svg"
  24369. }
  24370. },
  24371. head: {
  24372. height: math.unit(2.55, "feet"),
  24373. name: "Head",
  24374. image: {
  24375. source: "./media/characters/hind/head.svg"
  24376. }
  24377. },
  24378. },
  24379. [
  24380. {
  24381. name: "XS",
  24382. height: math.unit(0.7, "feet")
  24383. },
  24384. {
  24385. name: "Normal",
  24386. height: math.unit(7, "feet"),
  24387. default: true
  24388. },
  24389. {
  24390. name: "XL",
  24391. height: math.unit(70, "feet")
  24392. },
  24393. ]
  24394. ))
  24395. characterMakers.push(() => makeCharacter(
  24396. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24397. {
  24398. front: {
  24399. height: math.unit(6, "feet"),
  24400. weight: math.unit(150, "lb"),
  24401. name: "Front",
  24402. image: {
  24403. source: "./media/characters/dylan-skaven/front.svg",
  24404. extra: 2318 / 2063,
  24405. bottom: 93.4 / 2410
  24406. }
  24407. },
  24408. },
  24409. [
  24410. {
  24411. name: "Nano",
  24412. height: math.unit(1, "mm")
  24413. },
  24414. {
  24415. name: "Micro",
  24416. height: math.unit(1, "cm")
  24417. },
  24418. {
  24419. name: "Normal",
  24420. height: math.unit(2.1, "meters"),
  24421. default: true
  24422. },
  24423. ]
  24424. ))
  24425. characterMakers.push(() => makeCharacter(
  24426. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24427. {
  24428. front: {
  24429. height: math.unit(7 + 5 / 12, "feet"),
  24430. weight: math.unit(357, "lb"),
  24431. name: "Front",
  24432. image: {
  24433. source: "./media/characters/solex-draconov/front.svg",
  24434. extra: 1993 / 1865,
  24435. bottom: 117 / 2111
  24436. }
  24437. },
  24438. },
  24439. [
  24440. {
  24441. name: "Natural Height",
  24442. height: math.unit(7 + 5 / 12, "feet"),
  24443. default: true
  24444. },
  24445. {
  24446. name: "Macro",
  24447. height: math.unit(350, "feet")
  24448. },
  24449. {
  24450. name: "Macro+",
  24451. height: math.unit(1000, "feet")
  24452. },
  24453. {
  24454. name: "Megamacro",
  24455. height: math.unit(20, "km")
  24456. },
  24457. {
  24458. name: "Megamacro+",
  24459. height: math.unit(1000, "km")
  24460. },
  24461. {
  24462. name: "Gigamacro",
  24463. height: math.unit(2.5, "Gm")
  24464. },
  24465. {
  24466. name: "Teramacro",
  24467. height: math.unit(15, "Tm")
  24468. },
  24469. {
  24470. name: "Galactic",
  24471. height: math.unit(30, "Zm")
  24472. },
  24473. {
  24474. name: "Universal",
  24475. height: math.unit(21000, "Ym")
  24476. },
  24477. {
  24478. name: "Omniversal",
  24479. height: math.unit(9.861e50, "Ym")
  24480. },
  24481. {
  24482. name: "Existential",
  24483. height: math.unit(1e300, "meters")
  24484. },
  24485. ]
  24486. ))
  24487. characterMakers.push(() => makeCharacter(
  24488. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24489. {
  24490. side: {
  24491. height: math.unit(25, "feet"),
  24492. weight: math.unit(90000, "lb"),
  24493. name: "Side",
  24494. image: {
  24495. source: "./media/characters/mandarax/side.svg",
  24496. extra: 614 / 332,
  24497. bottom: 55 / 630
  24498. }
  24499. },
  24500. head: {
  24501. height: math.unit(11.4, "feet"),
  24502. name: "Head",
  24503. image: {
  24504. source: "./media/characters/mandarax/head.svg"
  24505. }
  24506. },
  24507. belly: {
  24508. height: math.unit(33, "feet"),
  24509. name: "Belly",
  24510. capacity: math.unit(500, "people"),
  24511. image: {
  24512. source: "./media/characters/mandarax/belly.svg"
  24513. }
  24514. },
  24515. dick: {
  24516. height: math.unit(8.46, "feet"),
  24517. name: "Dick",
  24518. image: {
  24519. source: "./media/characters/mandarax/dick.svg"
  24520. }
  24521. },
  24522. top: {
  24523. height: math.unit(28, "meters"),
  24524. name: "Top",
  24525. image: {
  24526. source: "./media/characters/mandarax/top.svg"
  24527. }
  24528. },
  24529. },
  24530. [
  24531. {
  24532. name: "Normal",
  24533. height: math.unit(25, "feet"),
  24534. default: true
  24535. },
  24536. ]
  24537. ))
  24538. characterMakers.push(() => makeCharacter(
  24539. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24540. {
  24541. front: {
  24542. height: math.unit(5, "feet"),
  24543. weight: math.unit(90, "lb"),
  24544. name: "Front",
  24545. image: {
  24546. source: "./media/characters/pixil/front.svg",
  24547. extra: 2000 / 1618,
  24548. bottom: 12.3 / 2011
  24549. }
  24550. },
  24551. },
  24552. [
  24553. {
  24554. name: "Normal",
  24555. height: math.unit(5, "feet"),
  24556. default: true
  24557. },
  24558. {
  24559. name: "Megamacro",
  24560. height: math.unit(10, "miles"),
  24561. },
  24562. ]
  24563. ))
  24564. characterMakers.push(() => makeCharacter(
  24565. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24566. {
  24567. front: {
  24568. height: math.unit(7 + 2 / 12, "feet"),
  24569. weight: math.unit(200, "lb"),
  24570. name: "Front",
  24571. image: {
  24572. source: "./media/characters/angel/front.svg",
  24573. extra: 1830 / 1737,
  24574. bottom: 22.6 / 1854,
  24575. }
  24576. },
  24577. },
  24578. [
  24579. {
  24580. name: "Normal",
  24581. height: math.unit(7 + 2 / 12, "feet"),
  24582. default: true
  24583. },
  24584. {
  24585. name: "Macro",
  24586. height: math.unit(1000, "feet")
  24587. },
  24588. {
  24589. name: "Megamacro",
  24590. height: math.unit(2, "miles")
  24591. },
  24592. {
  24593. name: "Gigamacro",
  24594. height: math.unit(20, "earths")
  24595. },
  24596. ]
  24597. ))
  24598. characterMakers.push(() => makeCharacter(
  24599. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24600. {
  24601. front: {
  24602. height: math.unit(5, "feet"),
  24603. weight: math.unit(180, "lb"),
  24604. name: "Front",
  24605. image: {
  24606. source: "./media/characters/mekana/front.svg",
  24607. extra: 1671 / 1605,
  24608. bottom: 3.5 / 1691
  24609. }
  24610. },
  24611. side: {
  24612. height: math.unit(5, "feet"),
  24613. weight: math.unit(180, "lb"),
  24614. name: "Side",
  24615. image: {
  24616. source: "./media/characters/mekana/side.svg",
  24617. extra: 1671 / 1605,
  24618. bottom: 3.5 / 1691
  24619. }
  24620. },
  24621. back: {
  24622. height: math.unit(5, "feet"),
  24623. weight: math.unit(180, "lb"),
  24624. name: "Back",
  24625. image: {
  24626. source: "./media/characters/mekana/back.svg",
  24627. extra: 1671 / 1605,
  24628. bottom: 3.5 / 1691
  24629. }
  24630. },
  24631. },
  24632. [
  24633. {
  24634. name: "Normal",
  24635. height: math.unit(5, "feet"),
  24636. default: true
  24637. },
  24638. ]
  24639. ))
  24640. characterMakers.push(() => makeCharacter(
  24641. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24642. {
  24643. front: {
  24644. height: math.unit(4 + 6 / 12, "feet"),
  24645. weight: math.unit(80, "lb"),
  24646. name: "Front",
  24647. image: {
  24648. source: "./media/characters/pixie/front.svg",
  24649. extra: 1924 / 1825,
  24650. bottom: 22.4 / 1946
  24651. }
  24652. },
  24653. },
  24654. [
  24655. {
  24656. name: "Normal",
  24657. height: math.unit(4 + 6 / 12, "feet"),
  24658. default: true
  24659. },
  24660. {
  24661. name: "Macro",
  24662. height: math.unit(40, "feet")
  24663. },
  24664. ]
  24665. ))
  24666. characterMakers.push(() => makeCharacter(
  24667. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24668. {
  24669. front: {
  24670. height: math.unit(2.1, "meters"),
  24671. weight: math.unit(200, "lb"),
  24672. name: "Front",
  24673. image: {
  24674. source: "./media/characters/the-lascivious/front.svg",
  24675. extra: 1 / 0.893,
  24676. bottom: 3.5 / 573.7
  24677. }
  24678. },
  24679. },
  24680. [
  24681. {
  24682. name: "Human Scale",
  24683. height: math.unit(2.1, "meters")
  24684. },
  24685. {
  24686. name: "Wolxi Scale",
  24687. height: math.unit(46.2, "m"),
  24688. default: true
  24689. },
  24690. {
  24691. name: "Boinker of Buildings",
  24692. height: math.unit(10, "km")
  24693. },
  24694. {
  24695. name: "Shagger of Skyscrapers",
  24696. height: math.unit(40, "km")
  24697. },
  24698. {
  24699. name: "Banger of Boroughs",
  24700. height: math.unit(4000, "km")
  24701. },
  24702. {
  24703. name: "Screwer of States",
  24704. height: math.unit(100000, "km")
  24705. },
  24706. {
  24707. name: "Pounder of Planets",
  24708. height: math.unit(2000000, "km")
  24709. },
  24710. ]
  24711. ))
  24712. characterMakers.push(() => makeCharacter(
  24713. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24714. {
  24715. front: {
  24716. height: math.unit(6, "feet"),
  24717. weight: math.unit(150, "lb"),
  24718. name: "Front",
  24719. image: {
  24720. source: "./media/characters/aj/front.svg",
  24721. extra: 2039 / 1562,
  24722. bottom: 40 / 2079
  24723. }
  24724. },
  24725. },
  24726. [
  24727. {
  24728. name: "Normal",
  24729. height: math.unit(11 + 6 / 12, "feet"),
  24730. default: true
  24731. },
  24732. {
  24733. name: "Megamacro",
  24734. height: math.unit(60, "megameters")
  24735. },
  24736. ]
  24737. ))
  24738. characterMakers.push(() => makeCharacter(
  24739. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24740. {
  24741. side: {
  24742. height: math.unit(31 + 8 / 12, "feet"),
  24743. weight: math.unit(75000, "kg"),
  24744. name: "Side",
  24745. image: {
  24746. source: "./media/characters/koros/side.svg",
  24747. extra: 1442 / 1297,
  24748. bottom: 122.7 / 1562
  24749. }
  24750. },
  24751. dicksKingsCrown: {
  24752. height: math.unit(6, "feet"),
  24753. name: "Dicks (King's Crown)",
  24754. image: {
  24755. source: "./media/characters/koros/dicks-kings-crown.svg"
  24756. }
  24757. },
  24758. dicksTailSet: {
  24759. height: math.unit(3, "feet"),
  24760. name: "Dicks (Tail Set)",
  24761. image: {
  24762. source: "./media/characters/koros/dicks-tail-set.svg"
  24763. }
  24764. },
  24765. dickCumming: {
  24766. height: math.unit(7.98, "feet"),
  24767. name: "Dick (Cumming)",
  24768. image: {
  24769. source: "./media/characters/koros/dick-cumming.svg"
  24770. }
  24771. },
  24772. dicksBack: {
  24773. height: math.unit(5.9, "feet"),
  24774. name: "Dicks (Back)",
  24775. image: {
  24776. source: "./media/characters/koros/dicks-back.svg"
  24777. }
  24778. },
  24779. dicksFront: {
  24780. height: math.unit(3.72, "feet"),
  24781. name: "Dicks (Front)",
  24782. image: {
  24783. source: "./media/characters/koros/dicks-front.svg"
  24784. }
  24785. },
  24786. dicksPeeking: {
  24787. height: math.unit(3.0, "feet"),
  24788. name: "Dicks (Peeking)",
  24789. image: {
  24790. source: "./media/characters/koros/dicks-peeking.svg"
  24791. }
  24792. },
  24793. eye: {
  24794. height: math.unit(1.7, "feet"),
  24795. name: "Eye",
  24796. image: {
  24797. source: "./media/characters/koros/eye.svg"
  24798. }
  24799. },
  24800. headFront: {
  24801. height: math.unit(11.69, "feet"),
  24802. name: "Head (Front)",
  24803. image: {
  24804. source: "./media/characters/koros/head-front.svg"
  24805. }
  24806. },
  24807. headSide: {
  24808. height: math.unit(14, "feet"),
  24809. name: "Head (Side)",
  24810. image: {
  24811. source: "./media/characters/koros/head-side.svg"
  24812. }
  24813. },
  24814. leg: {
  24815. height: math.unit(17, "feet"),
  24816. name: "Leg",
  24817. image: {
  24818. source: "./media/characters/koros/leg.svg"
  24819. }
  24820. },
  24821. mawSide: {
  24822. height: math.unit(12.8, "feet"),
  24823. name: "Maw (Side)",
  24824. image: {
  24825. source: "./media/characters/koros/maw-side.svg"
  24826. }
  24827. },
  24828. mawSpitting: {
  24829. height: math.unit(17, "feet"),
  24830. name: "Maw (Spitting)",
  24831. image: {
  24832. source: "./media/characters/koros/maw-spitting.svg"
  24833. }
  24834. },
  24835. slit: {
  24836. height: math.unit(2.8, "feet"),
  24837. name: "Slit",
  24838. image: {
  24839. source: "./media/characters/koros/slit.svg"
  24840. }
  24841. },
  24842. stomach: {
  24843. height: math.unit(6.8, "feet"),
  24844. capacity: math.unit(20, "people"),
  24845. name: "Stomach",
  24846. image: {
  24847. source: "./media/characters/koros/stomach.svg"
  24848. }
  24849. },
  24850. wingspanBottom: {
  24851. height: math.unit(114, "feet"),
  24852. name: "Wingspan (Bottom)",
  24853. image: {
  24854. source: "./media/characters/koros/wingspan-bottom.svg"
  24855. }
  24856. },
  24857. wingspanTop: {
  24858. height: math.unit(104, "feet"),
  24859. name: "Wingspan (Top)",
  24860. image: {
  24861. source: "./media/characters/koros/wingspan-top.svg"
  24862. }
  24863. },
  24864. },
  24865. [
  24866. {
  24867. name: "Normal",
  24868. height: math.unit(31 + 8 / 12, "feet"),
  24869. default: true
  24870. },
  24871. ]
  24872. ))
  24873. characterMakers.push(() => makeCharacter(
  24874. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24875. {
  24876. front: {
  24877. height: math.unit(18 + 5 / 12, "feet"),
  24878. weight: math.unit(3750, "kg"),
  24879. name: "Front",
  24880. image: {
  24881. source: "./media/characters/vexx/front.svg",
  24882. extra: 426 / 396,
  24883. bottom: 31.5 / 458
  24884. }
  24885. },
  24886. maw: {
  24887. height: math.unit(6, "feet"),
  24888. name: "Maw",
  24889. image: {
  24890. source: "./media/characters/vexx/maw.svg"
  24891. }
  24892. },
  24893. },
  24894. [
  24895. {
  24896. name: "Normal",
  24897. height: math.unit(18 + 5 / 12, "feet"),
  24898. default: true
  24899. },
  24900. ]
  24901. ))
  24902. characterMakers.push(() => makeCharacter(
  24903. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24904. {
  24905. front: {
  24906. height: math.unit(17 + 6 / 12, "feet"),
  24907. weight: math.unit(150, "lb"),
  24908. name: "Front",
  24909. image: {
  24910. source: "./media/characters/baadra/front.svg",
  24911. extra: 3137 / 2890,
  24912. bottom: 168.4 / 3305
  24913. }
  24914. },
  24915. back: {
  24916. height: math.unit(17 + 6 / 12, "feet"),
  24917. weight: math.unit(150, "lb"),
  24918. name: "Back",
  24919. image: {
  24920. source: "./media/characters/baadra/back.svg",
  24921. extra: 3142 / 2890,
  24922. bottom: 220 / 3371
  24923. }
  24924. },
  24925. head: {
  24926. height: math.unit(5.45, "feet"),
  24927. name: "Head",
  24928. image: {
  24929. source: "./media/characters/baadra/head.svg"
  24930. }
  24931. },
  24932. headAngry: {
  24933. height: math.unit(4.95, "feet"),
  24934. name: "Head (Angry)",
  24935. image: {
  24936. source: "./media/characters/baadra/head-angry.svg"
  24937. }
  24938. },
  24939. headOpen: {
  24940. height: math.unit(6, "feet"),
  24941. name: "Head (Open)",
  24942. image: {
  24943. source: "./media/characters/baadra/head-open.svg"
  24944. }
  24945. },
  24946. },
  24947. [
  24948. {
  24949. name: "Normal",
  24950. height: math.unit(17 + 6 / 12, "feet"),
  24951. default: true
  24952. },
  24953. ]
  24954. ))
  24955. characterMakers.push(() => makeCharacter(
  24956. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24957. {
  24958. front: {
  24959. height: math.unit(7 + 3 / 12, "feet"),
  24960. weight: math.unit(180, "lb"),
  24961. name: "Front",
  24962. image: {
  24963. source: "./media/characters/juri/front.svg",
  24964. extra: 1401 / 1237,
  24965. bottom: 18.5 / 1418
  24966. }
  24967. },
  24968. side: {
  24969. height: math.unit(7 + 3 / 12, "feet"),
  24970. weight: math.unit(180, "lb"),
  24971. name: "Side",
  24972. image: {
  24973. source: "./media/characters/juri/side.svg",
  24974. extra: 1424 / 1242,
  24975. bottom: 18.5 / 1447
  24976. }
  24977. },
  24978. sitting: {
  24979. height: math.unit(6, "feet"),
  24980. weight: math.unit(180, "lb"),
  24981. name: "Sitting",
  24982. image: {
  24983. source: "./media/characters/juri/sitting.svg",
  24984. extra: 1270 / 1143,
  24985. bottom: 100 / 1343
  24986. }
  24987. },
  24988. back: {
  24989. height: math.unit(7 + 3 / 12, "feet"),
  24990. weight: math.unit(180, "lb"),
  24991. name: "Back",
  24992. image: {
  24993. source: "./media/characters/juri/back.svg",
  24994. extra: 1377 / 1240,
  24995. bottom: 23.7 / 1405
  24996. }
  24997. },
  24998. maw: {
  24999. height: math.unit(2.8, "feet"),
  25000. name: "Maw",
  25001. image: {
  25002. source: "./media/characters/juri/maw.svg"
  25003. }
  25004. },
  25005. stomach: {
  25006. height: math.unit(0.89, "feet"),
  25007. capacity: math.unit(4, "liters"),
  25008. name: "Stomach",
  25009. image: {
  25010. source: "./media/characters/juri/stomach.svg"
  25011. }
  25012. },
  25013. },
  25014. [
  25015. {
  25016. name: "Normal",
  25017. height: math.unit(7 + 3 / 12, "feet"),
  25018. default: true
  25019. },
  25020. ]
  25021. ))
  25022. characterMakers.push(() => makeCharacter(
  25023. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25024. {
  25025. fox: {
  25026. height: math.unit(5 + 6 / 12, "feet"),
  25027. weight: math.unit(140, "lb"),
  25028. name: "Fox",
  25029. image: {
  25030. source: "./media/characters/maxene-sita/fox.svg",
  25031. extra: 146 / 138,
  25032. bottom: 2.1 / 148.19
  25033. }
  25034. },
  25035. foxLaying: {
  25036. height: math.unit(1.70, "feet"),
  25037. weight: math.unit(140, "lb"),
  25038. name: "Fox (Laying)",
  25039. image: {
  25040. source: "./media/characters/maxene-sita/fox-laying.svg",
  25041. extra: 910 / 572,
  25042. bottom: 71 / 981
  25043. }
  25044. },
  25045. kitsune: {
  25046. height: math.unit(10, "feet"),
  25047. weight: math.unit(800, "lb"),
  25048. name: "Kitsune",
  25049. image: {
  25050. source: "./media/characters/maxene-sita/kitsune.svg",
  25051. extra: 185 / 176,
  25052. bottom: 4.7 / 189.9
  25053. }
  25054. },
  25055. hellhound: {
  25056. height: math.unit(10, "feet"),
  25057. weight: math.unit(700, "lb"),
  25058. name: "Hellhound",
  25059. image: {
  25060. source: "./media/characters/maxene-sita/hellhound.svg",
  25061. extra: 1600 / 1545,
  25062. bottom: 81 / 1681
  25063. }
  25064. },
  25065. },
  25066. [
  25067. {
  25068. name: "Normal",
  25069. height: math.unit(5 + 6 / 12, "feet"),
  25070. default: true
  25071. },
  25072. ]
  25073. ))
  25074. characterMakers.push(() => makeCharacter(
  25075. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25076. {
  25077. front: {
  25078. height: math.unit(3 + 4 / 12, "feet"),
  25079. weight: math.unit(70, "lb"),
  25080. name: "Front",
  25081. image: {
  25082. source: "./media/characters/maia/front.svg",
  25083. extra: 227 / 219.5,
  25084. bottom: 40 / 267
  25085. }
  25086. },
  25087. back: {
  25088. height: math.unit(3 + 4 / 12, "feet"),
  25089. weight: math.unit(70, "lb"),
  25090. name: "Back",
  25091. image: {
  25092. source: "./media/characters/maia/back.svg",
  25093. extra: 237 / 225
  25094. }
  25095. },
  25096. },
  25097. [
  25098. {
  25099. name: "Normal",
  25100. height: math.unit(3 + 4 / 12, "feet"),
  25101. default: true
  25102. },
  25103. ]
  25104. ))
  25105. characterMakers.push(() => makeCharacter(
  25106. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25107. {
  25108. front: {
  25109. height: math.unit(5 + 10 / 12, "feet"),
  25110. weight: math.unit(197, "lb"),
  25111. name: "Front",
  25112. image: {
  25113. source: "./media/characters/jabaro/front.svg",
  25114. extra: 225 / 216,
  25115. bottom: 5.06 / 230
  25116. }
  25117. },
  25118. back: {
  25119. height: math.unit(5 + 10 / 12, "feet"),
  25120. weight: math.unit(197, "lb"),
  25121. name: "Back",
  25122. image: {
  25123. source: "./media/characters/jabaro/back.svg",
  25124. extra: 225 / 219,
  25125. bottom: 1.9 / 227
  25126. }
  25127. },
  25128. },
  25129. [
  25130. {
  25131. name: "Normal",
  25132. height: math.unit(5 + 10 / 12, "feet"),
  25133. default: true
  25134. },
  25135. ]
  25136. ))
  25137. characterMakers.push(() => makeCharacter(
  25138. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25139. {
  25140. front: {
  25141. height: math.unit(5 + 8 / 12, "feet"),
  25142. weight: math.unit(139, "lb"),
  25143. name: "Front",
  25144. image: {
  25145. source: "./media/characters/risa/front.svg",
  25146. extra: 270 / 260,
  25147. bottom: 11.2 / 282
  25148. }
  25149. },
  25150. back: {
  25151. height: math.unit(5 + 8 / 12, "feet"),
  25152. weight: math.unit(139, "lb"),
  25153. name: "Back",
  25154. image: {
  25155. source: "./media/characters/risa/back.svg",
  25156. extra: 264 / 255,
  25157. bottom: 4 / 268
  25158. }
  25159. },
  25160. },
  25161. [
  25162. {
  25163. name: "Normal",
  25164. height: math.unit(5 + 8 / 12, "feet"),
  25165. default: true
  25166. },
  25167. ]
  25168. ))
  25169. characterMakers.push(() => makeCharacter(
  25170. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25171. {
  25172. front: {
  25173. height: math.unit(2 + 11 / 12, "feet"),
  25174. weight: math.unit(30, "lb"),
  25175. name: "Front",
  25176. image: {
  25177. source: "./media/characters/weatley/front.svg",
  25178. bottom: 10.7 / 414,
  25179. extra: 403.5 / 362
  25180. }
  25181. },
  25182. back: {
  25183. height: math.unit(2 + 11 / 12, "feet"),
  25184. weight: math.unit(30, "lb"),
  25185. name: "Back",
  25186. image: {
  25187. source: "./media/characters/weatley/back.svg",
  25188. bottom: 10.7 / 414,
  25189. extra: 403.5 / 362
  25190. }
  25191. },
  25192. },
  25193. [
  25194. {
  25195. name: "Normal",
  25196. height: math.unit(2 + 11 / 12, "feet"),
  25197. default: true
  25198. },
  25199. ]
  25200. ))
  25201. characterMakers.push(() => makeCharacter(
  25202. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25203. {
  25204. front: {
  25205. height: math.unit(5 + 2 / 12, "feet"),
  25206. weight: math.unit(50, "kg"),
  25207. name: "Front",
  25208. image: {
  25209. source: "./media/characters/mercury-crescent/front.svg",
  25210. extra: 1088 / 1033,
  25211. bottom: 18.9 / 1109
  25212. }
  25213. },
  25214. },
  25215. [
  25216. {
  25217. name: "Normal",
  25218. height: math.unit(5 + 2 / 12, "feet"),
  25219. default: true
  25220. },
  25221. ]
  25222. ))
  25223. characterMakers.push(() => makeCharacter(
  25224. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25225. {
  25226. front: {
  25227. height: math.unit(2, "feet"),
  25228. weight: math.unit(15, "kg"),
  25229. name: "Front",
  25230. image: {
  25231. source: "./media/characters/diamond-jones/front.svg",
  25232. bottom: 16 / 568
  25233. }
  25234. },
  25235. },
  25236. [
  25237. {
  25238. name: "Normal",
  25239. height: math.unit(2, "feet"),
  25240. default: true
  25241. },
  25242. ]
  25243. ))
  25244. characterMakers.push(() => makeCharacter(
  25245. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25246. {
  25247. front: {
  25248. height: math.unit(3, "feet"),
  25249. weight: math.unit(30, "kg"),
  25250. name: "Front",
  25251. image: {
  25252. source: "./media/characters/sweet-bit/front.svg",
  25253. extra: 675 / 567,
  25254. bottom: 27.7 / 703
  25255. }
  25256. },
  25257. },
  25258. [
  25259. {
  25260. name: "Normal",
  25261. height: math.unit(3, "feet"),
  25262. default: true
  25263. },
  25264. ]
  25265. ))
  25266. characterMakers.push(() => makeCharacter(
  25267. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25268. {
  25269. side: {
  25270. height: math.unit(9.178, "feet"),
  25271. weight: math.unit(500, "lb"),
  25272. name: "Side",
  25273. image: {
  25274. source: "./media/characters/umbrazen/side.svg",
  25275. extra: 1730 / 1473,
  25276. bottom: 34.6 / 1765
  25277. }
  25278. },
  25279. },
  25280. [
  25281. {
  25282. name: "Normal",
  25283. height: math.unit(9.178, "feet"),
  25284. default: true
  25285. },
  25286. ]
  25287. ))
  25288. characterMakers.push(() => makeCharacter(
  25289. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25290. {
  25291. front: {
  25292. height: math.unit(10, "feet"),
  25293. weight: math.unit(750, "lb"),
  25294. name: "Front",
  25295. image: {
  25296. source: "./media/characters/arlist/front.svg",
  25297. extra: 961 / 778,
  25298. bottom: 6.2 / 986
  25299. }
  25300. },
  25301. },
  25302. [
  25303. {
  25304. name: "Normal",
  25305. height: math.unit(10, "feet"),
  25306. default: true
  25307. },
  25308. ]
  25309. ))
  25310. characterMakers.push(() => makeCharacter(
  25311. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25312. {
  25313. front: {
  25314. height: math.unit(5 + 1 / 12, "feet"),
  25315. weight: math.unit(110, "lb"),
  25316. name: "Front",
  25317. image: {
  25318. source: "./media/characters/aradel/front.svg",
  25319. extra: 324 / 303,
  25320. bottom: 3.6 / 329.4
  25321. }
  25322. },
  25323. },
  25324. [
  25325. {
  25326. name: "Normal",
  25327. height: math.unit(5 + 1 / 12, "feet"),
  25328. default: true
  25329. },
  25330. ]
  25331. ))
  25332. characterMakers.push(() => makeCharacter(
  25333. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25334. {
  25335. front: {
  25336. height: math.unit(3 + 8 / 12, "feet"),
  25337. weight: math.unit(50, "lb"),
  25338. name: "Front",
  25339. image: {
  25340. source: "./media/characters/serryn/front.svg",
  25341. extra: 1792 / 1656,
  25342. bottom: 43.5 / 1840
  25343. }
  25344. },
  25345. },
  25346. [
  25347. {
  25348. name: "Normal",
  25349. height: math.unit(3 + 8 / 12, "feet"),
  25350. default: true
  25351. },
  25352. ]
  25353. ))
  25354. characterMakers.push(() => makeCharacter(
  25355. { name: "Xavier Thyme" },
  25356. {
  25357. front: {
  25358. height: math.unit(7 + 10 / 12, "feet"),
  25359. weight: math.unit(255, "lb"),
  25360. name: "Front",
  25361. image: {
  25362. source: "./media/characters/xavier-thyme/front.svg",
  25363. extra: 3733 / 3642,
  25364. bottom: 131 / 3869
  25365. }
  25366. },
  25367. frontRaven: {
  25368. height: math.unit(7 + 10 / 12, "feet"),
  25369. weight: math.unit(255, "lb"),
  25370. name: "Front (Raven)",
  25371. image: {
  25372. source: "./media/characters/xavier-thyme/front-raven.svg",
  25373. extra: 4385 / 3642,
  25374. bottom: 131 / 4517
  25375. }
  25376. },
  25377. },
  25378. [
  25379. {
  25380. name: "Normal",
  25381. height: math.unit(7 + 10 / 12, "feet"),
  25382. default: true
  25383. },
  25384. ]
  25385. ))
  25386. characterMakers.push(() => makeCharacter(
  25387. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25388. {
  25389. front: {
  25390. height: math.unit(1.6, "m"),
  25391. weight: math.unit(50, "kg"),
  25392. name: "Front",
  25393. image: {
  25394. source: "./media/characters/kiki/front.svg",
  25395. extra: 4682 / 3610,
  25396. bottom: 115 / 4777
  25397. }
  25398. },
  25399. },
  25400. [
  25401. {
  25402. name: "Normal",
  25403. height: math.unit(1.6, "meters"),
  25404. default: true
  25405. },
  25406. ]
  25407. ))
  25408. characterMakers.push(() => makeCharacter(
  25409. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25410. {
  25411. front: {
  25412. height: math.unit(50, "m"),
  25413. weight: math.unit(500, "tonnes"),
  25414. name: "Front",
  25415. image: {
  25416. source: "./media/characters/ryoko/front.svg",
  25417. extra: 4632 / 3926,
  25418. bottom: 193 / 4823
  25419. }
  25420. },
  25421. },
  25422. [
  25423. {
  25424. name: "Normal",
  25425. height: math.unit(50, "meters"),
  25426. default: true
  25427. },
  25428. ]
  25429. ))
  25430. characterMakers.push(() => makeCharacter(
  25431. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25432. {
  25433. front: {
  25434. height: math.unit(30, "m"),
  25435. weight: math.unit(22, "tonnes"),
  25436. name: "Front",
  25437. image: {
  25438. source: "./media/characters/elio/front.svg",
  25439. extra: 4582 / 3720,
  25440. bottom: 236 / 4828
  25441. }
  25442. },
  25443. },
  25444. [
  25445. {
  25446. name: "Normal",
  25447. height: math.unit(30, "meters"),
  25448. default: true
  25449. },
  25450. ]
  25451. ))
  25452. characterMakers.push(() => makeCharacter(
  25453. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25454. {
  25455. front: {
  25456. height: math.unit(6 + 3 / 12, "feet"),
  25457. weight: math.unit(120, "lb"),
  25458. name: "Front",
  25459. image: {
  25460. source: "./media/characters/azura/front.svg",
  25461. extra: 1149 / 1135,
  25462. bottom: 45 / 1194
  25463. }
  25464. },
  25465. frontClothed: {
  25466. height: math.unit(6 + 3 / 12, "feet"),
  25467. weight: math.unit(120, "lb"),
  25468. name: "Front (Clothed)",
  25469. image: {
  25470. source: "./media/characters/azura/front-clothed.svg",
  25471. extra: 1149 / 1135,
  25472. bottom: 45 / 1194
  25473. }
  25474. },
  25475. },
  25476. [
  25477. {
  25478. name: "Normal",
  25479. height: math.unit(6 + 3 / 12, "feet"),
  25480. default: true
  25481. },
  25482. {
  25483. name: "Macro",
  25484. height: math.unit(20 + 6 / 12, "feet")
  25485. },
  25486. {
  25487. name: "Megamacro",
  25488. height: math.unit(12, "miles")
  25489. },
  25490. {
  25491. name: "Gigamacro",
  25492. height: math.unit(10000, "miles")
  25493. },
  25494. {
  25495. name: "Teramacro",
  25496. height: math.unit(900000, "miles")
  25497. },
  25498. ]
  25499. ))
  25500. characterMakers.push(() => makeCharacter(
  25501. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25502. {
  25503. front: {
  25504. height: math.unit(12, "feet"),
  25505. weight: math.unit(1, "ton"),
  25506. capacity: math.unit(660000, "gallons"),
  25507. name: "Front",
  25508. image: {
  25509. source: "./media/characters/zeus/front.svg",
  25510. extra: 5005 / 4717,
  25511. bottom: 363 / 5388
  25512. }
  25513. },
  25514. },
  25515. [
  25516. {
  25517. name: "Normal",
  25518. height: math.unit(12, "feet")
  25519. },
  25520. {
  25521. name: "Preferred Size",
  25522. height: math.unit(0.5, "miles"),
  25523. default: true
  25524. },
  25525. {
  25526. name: "Giga Horse",
  25527. height: math.unit(300, "miles")
  25528. },
  25529. {
  25530. name: "Riding Planets",
  25531. height: math.unit(30, "megameters")
  25532. },
  25533. {
  25534. name: "Cosmic Giant",
  25535. height: math.unit(3, "zettameters")
  25536. },
  25537. {
  25538. name: "Breeding God",
  25539. height: math.unit(9.92e22, "yottameters")
  25540. },
  25541. ]
  25542. ))
  25543. characterMakers.push(() => makeCharacter(
  25544. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25545. {
  25546. side: {
  25547. height: math.unit(9, "feet"),
  25548. weight: math.unit(1500, "kg"),
  25549. name: "Side",
  25550. image: {
  25551. source: "./media/characters/fang/side.svg",
  25552. extra: 924 / 866,
  25553. bottom: 47.5 / 972.3
  25554. }
  25555. },
  25556. },
  25557. [
  25558. {
  25559. name: "Normal",
  25560. height: math.unit(9, "feet"),
  25561. default: true
  25562. },
  25563. {
  25564. name: "Macro",
  25565. height: math.unit(75 + 6 / 12, "feet")
  25566. },
  25567. {
  25568. name: "Teramacro",
  25569. height: math.unit(50000, "miles")
  25570. },
  25571. ]
  25572. ))
  25573. characterMakers.push(() => makeCharacter(
  25574. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25575. {
  25576. front: {
  25577. height: math.unit(10, "feet"),
  25578. weight: math.unit(2, "tons"),
  25579. name: "Front",
  25580. image: {
  25581. source: "./media/characters/rekhit/front.svg",
  25582. extra: 2796 / 2590,
  25583. bottom: 225 / 3022
  25584. }
  25585. },
  25586. },
  25587. [
  25588. {
  25589. name: "Normal",
  25590. height: math.unit(10, "feet"),
  25591. default: true
  25592. },
  25593. {
  25594. name: "Macro",
  25595. height: math.unit(500, "feet")
  25596. },
  25597. ]
  25598. ))
  25599. characterMakers.push(() => makeCharacter(
  25600. { name: "Dahlia Verrick" },
  25601. {
  25602. front: {
  25603. height: math.unit(7 + 6.451 / 12, "feet"),
  25604. weight: math.unit(310, "lb"),
  25605. name: "Front",
  25606. image: {
  25607. source: "./media/characters/dahlia-verrick/front.svg",
  25608. extra: 1488 / 1365,
  25609. bottom: 6.2 / 1495
  25610. }
  25611. },
  25612. back: {
  25613. height: math.unit(7 + 6.451 / 12, "feet"),
  25614. weight: math.unit(310, "lb"),
  25615. name: "Back",
  25616. image: {
  25617. source: "./media/characters/dahlia-verrick/back.svg",
  25618. extra: 1472 / 1351,
  25619. bottom: 5.28 / 1477
  25620. }
  25621. },
  25622. frontBusiness: {
  25623. height: math.unit(7 + 6.451 / 12, "feet"),
  25624. weight: math.unit(200, "lb"),
  25625. name: "Front (Business)",
  25626. image: {
  25627. source: "./media/characters/dahlia-verrick/front-business.svg",
  25628. extra: 1478 / 1381,
  25629. bottom: 5.5 / 1484
  25630. }
  25631. },
  25632. frontCasual: {
  25633. height: math.unit(7 + 6.451 / 12, "feet"),
  25634. weight: math.unit(200, "lb"),
  25635. name: "Front (Casual)",
  25636. image: {
  25637. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25638. extra: 1478 / 1381,
  25639. bottom: 5.5 / 1484
  25640. }
  25641. },
  25642. },
  25643. [
  25644. {
  25645. name: "Travel-Sized",
  25646. height: math.unit(7.45, "inches")
  25647. },
  25648. {
  25649. name: "Normal",
  25650. height: math.unit(7 + 6.451 / 12, "feet"),
  25651. default: true
  25652. },
  25653. {
  25654. name: "Hitting the Town",
  25655. height: math.unit(37 + 8 / 12, "feet")
  25656. },
  25657. {
  25658. name: "Stomp in the Suburbs",
  25659. height: math.unit(964 + 9.728 / 12, "feet")
  25660. },
  25661. {
  25662. name: "Sit on the City",
  25663. height: math.unit(61747 + 10.592 / 12, "feet")
  25664. },
  25665. {
  25666. name: "Glomp the Globe",
  25667. height: math.unit(252919327 + 4.832 / 12, "feet")
  25668. },
  25669. ]
  25670. ))
  25671. characterMakers.push(() => makeCharacter(
  25672. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25673. {
  25674. front: {
  25675. height: math.unit(6 + 4 / 12, "feet"),
  25676. weight: math.unit(320, "lb"),
  25677. name: "Front",
  25678. image: {
  25679. source: "./media/characters/balina-mahigan/front.svg",
  25680. extra: 447 / 428,
  25681. bottom: 18 / 466
  25682. }
  25683. },
  25684. back: {
  25685. height: math.unit(6 + 4 / 12, "feet"),
  25686. weight: math.unit(320, "lb"),
  25687. name: "Back",
  25688. image: {
  25689. source: "./media/characters/balina-mahigan/back.svg",
  25690. extra: 445 / 428,
  25691. bottom: 4.07 / 448
  25692. }
  25693. },
  25694. arm: {
  25695. height: math.unit(1.88, "feet"),
  25696. name: "Arm",
  25697. image: {
  25698. source: "./media/characters/balina-mahigan/arm.svg"
  25699. }
  25700. },
  25701. backPort: {
  25702. height: math.unit(0.685, "feet"),
  25703. name: "Back Port",
  25704. image: {
  25705. source: "./media/characters/balina-mahigan/back-port.svg"
  25706. }
  25707. },
  25708. hoofpaw: {
  25709. height: math.unit(1.41, "feet"),
  25710. name: "Hoofpaw",
  25711. image: {
  25712. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25713. }
  25714. },
  25715. leftHandBack: {
  25716. height: math.unit(0.938, "feet"),
  25717. name: "Left Hand (Back)",
  25718. image: {
  25719. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25720. }
  25721. },
  25722. leftHandFront: {
  25723. height: math.unit(0.938, "feet"),
  25724. name: "Left Hand (Front)",
  25725. image: {
  25726. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25727. }
  25728. },
  25729. rightHandBack: {
  25730. height: math.unit(0.95, "feet"),
  25731. name: "Right Hand (Back)",
  25732. image: {
  25733. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25734. }
  25735. },
  25736. rightHandFront: {
  25737. height: math.unit(0.95, "feet"),
  25738. name: "Right Hand (Front)",
  25739. image: {
  25740. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25741. }
  25742. },
  25743. },
  25744. [
  25745. {
  25746. name: "Normal",
  25747. height: math.unit(6 + 4 / 12, "feet"),
  25748. default: true
  25749. },
  25750. ]
  25751. ))
  25752. characterMakers.push(() => makeCharacter(
  25753. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25754. {
  25755. front: {
  25756. height: math.unit(6, "feet"),
  25757. weight: math.unit(320, "lb"),
  25758. name: "Front",
  25759. image: {
  25760. source: "./media/characters/balina-mejeri/front.svg",
  25761. extra: 517 / 488,
  25762. bottom: 44.2 / 561
  25763. }
  25764. },
  25765. },
  25766. [
  25767. {
  25768. name: "Normal",
  25769. height: math.unit(6 + 4 / 12, "feet")
  25770. },
  25771. {
  25772. name: "Business",
  25773. height: math.unit(155, "feet"),
  25774. default: true
  25775. },
  25776. ]
  25777. ))
  25778. characterMakers.push(() => makeCharacter(
  25779. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25780. {
  25781. kneeling: {
  25782. height: math.unit(6 + 4 / 12, "feet"),
  25783. weight: math.unit(300 * 20, "lb"),
  25784. name: "Kneeling",
  25785. image: {
  25786. source: "./media/characters/balbarian/kneeling.svg",
  25787. extra: 922 / 862,
  25788. bottom: 42.4 / 965
  25789. }
  25790. },
  25791. },
  25792. [
  25793. {
  25794. name: "Normal",
  25795. height: math.unit(6 + 4 / 12, "feet")
  25796. },
  25797. {
  25798. name: "Treasured",
  25799. height: math.unit(18 + 9 / 12, "feet"),
  25800. default: true
  25801. },
  25802. {
  25803. name: "Macro",
  25804. height: math.unit(900, "feet")
  25805. },
  25806. ]
  25807. ))
  25808. characterMakers.push(() => makeCharacter(
  25809. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25810. {
  25811. front: {
  25812. height: math.unit(6 + 4 / 12, "feet"),
  25813. weight: math.unit(325, "lb"),
  25814. name: "Front",
  25815. image: {
  25816. source: "./media/characters/balina-amarini/front.svg",
  25817. extra: 415 / 403,
  25818. bottom: 19 / 433.4
  25819. }
  25820. },
  25821. back: {
  25822. height: math.unit(6 + 4 / 12, "feet"),
  25823. weight: math.unit(325, "lb"),
  25824. name: "Back",
  25825. image: {
  25826. source: "./media/characters/balina-amarini/back.svg",
  25827. extra: 415 / 403,
  25828. bottom: 13.5 / 432
  25829. }
  25830. },
  25831. overdrive: {
  25832. height: math.unit(6 + 4 / 12, "feet"),
  25833. weight: math.unit(400, "lb"),
  25834. name: "Overdrive",
  25835. image: {
  25836. source: "./media/characters/balina-amarini/overdrive.svg",
  25837. extra: 269 / 259,
  25838. bottom: 12 / 282
  25839. }
  25840. },
  25841. },
  25842. [
  25843. {
  25844. name: "Boom",
  25845. height: math.unit(9 + 10 / 12, "feet"),
  25846. default: true
  25847. },
  25848. {
  25849. name: "Macro",
  25850. height: math.unit(280, "feet")
  25851. },
  25852. ]
  25853. ))
  25854. characterMakers.push(() => makeCharacter(
  25855. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25856. {
  25857. goddess: {
  25858. height: math.unit(600, "feet"),
  25859. weight: math.unit(2000000, "tons"),
  25860. name: "Goddess",
  25861. image: {
  25862. source: "./media/characters/lady-kubwa/goddess.svg",
  25863. extra: 1240.5 / 1223,
  25864. bottom: 22 / 1263
  25865. }
  25866. },
  25867. goddesser: {
  25868. height: math.unit(900, "feet"),
  25869. weight: math.unit(20000000, "lb"),
  25870. name: "Goddess-er",
  25871. image: {
  25872. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25873. extra: 899 / 888,
  25874. bottom: 12.6 / 912
  25875. }
  25876. },
  25877. },
  25878. [
  25879. {
  25880. name: "Macro",
  25881. height: math.unit(600, "feet"),
  25882. default: true
  25883. },
  25884. {
  25885. name: "Megamacro",
  25886. height: math.unit(250, "miles")
  25887. },
  25888. ]
  25889. ))
  25890. characterMakers.push(() => makeCharacter(
  25891. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25892. {
  25893. front: {
  25894. height: math.unit(7 + 7 / 12, "feet"),
  25895. weight: math.unit(250, "lb"),
  25896. name: "Front",
  25897. image: {
  25898. source: "./media/characters/tala-grovehorn/front.svg",
  25899. extra: 2636 / 2525,
  25900. bottom: 147 / 2781
  25901. }
  25902. },
  25903. back: {
  25904. height: math.unit(7 + 7 / 12, "feet"),
  25905. weight: math.unit(250, "lb"),
  25906. name: "Back",
  25907. image: {
  25908. source: "./media/characters/tala-grovehorn/back.svg",
  25909. extra: 2635 / 2539,
  25910. bottom: 100 / 2732.8
  25911. }
  25912. },
  25913. mouth: {
  25914. height: math.unit(1.15, "feet"),
  25915. name: "Mouth",
  25916. image: {
  25917. source: "./media/characters/tala-grovehorn/mouth.svg"
  25918. }
  25919. },
  25920. dick: {
  25921. height: math.unit(2.36, "feet"),
  25922. name: "Dick",
  25923. image: {
  25924. source: "./media/characters/tala-grovehorn/dick.svg"
  25925. }
  25926. },
  25927. slit: {
  25928. height: math.unit(0.61, "feet"),
  25929. name: "Slit",
  25930. image: {
  25931. source: "./media/characters/tala-grovehorn/slit.svg"
  25932. }
  25933. },
  25934. },
  25935. [
  25936. ]
  25937. ))
  25938. characterMakers.push(() => makeCharacter(
  25939. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25940. {
  25941. front: {
  25942. height: math.unit(7 + 7 / 12, "feet"),
  25943. weight: math.unit(225, "lb"),
  25944. name: "Front",
  25945. image: {
  25946. source: "./media/characters/epona/front.svg",
  25947. extra: 2445 / 2290,
  25948. bottom: 251 / 2696
  25949. }
  25950. },
  25951. back: {
  25952. height: math.unit(7 + 7 / 12, "feet"),
  25953. weight: math.unit(225, "lb"),
  25954. name: "Back",
  25955. image: {
  25956. source: "./media/characters/epona/back.svg",
  25957. extra: 2546 / 2408,
  25958. bottom: 44 / 2589
  25959. }
  25960. },
  25961. genitals: {
  25962. height: math.unit(1.5, "feet"),
  25963. name: "Genitals",
  25964. image: {
  25965. source: "./media/characters/epona/genitals.svg"
  25966. }
  25967. },
  25968. },
  25969. [
  25970. {
  25971. name: "Normal",
  25972. height: math.unit(7 + 7 / 12, "feet"),
  25973. default: true
  25974. },
  25975. ]
  25976. ))
  25977. characterMakers.push(() => makeCharacter(
  25978. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25979. {
  25980. front: {
  25981. height: math.unit(7, "feet"),
  25982. weight: math.unit(518, "lb"),
  25983. name: "Front",
  25984. image: {
  25985. source: "./media/characters/avia-bloodbourn/front.svg",
  25986. extra: 1466 / 1350,
  25987. bottom: 65 / 1527
  25988. }
  25989. },
  25990. },
  25991. [
  25992. ]
  25993. ))
  25994. characterMakers.push(() => makeCharacter(
  25995. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25996. {
  25997. front: {
  25998. height: math.unit(9.35, "feet"),
  25999. weight: math.unit(600, "lb"),
  26000. name: "Front",
  26001. image: {
  26002. source: "./media/characters/amera/front.svg",
  26003. extra: 891 / 818,
  26004. bottom: 30 / 922.7
  26005. }
  26006. },
  26007. back: {
  26008. height: math.unit(9.35, "feet"),
  26009. weight: math.unit(600, "lb"),
  26010. name: "Back",
  26011. image: {
  26012. source: "./media/characters/amera/back.svg",
  26013. extra: 876 / 824,
  26014. bottom: 6.8 / 884
  26015. }
  26016. },
  26017. dick: {
  26018. height: math.unit(2.14, "feet"),
  26019. name: "Dick",
  26020. image: {
  26021. source: "./media/characters/amera/dick.svg"
  26022. }
  26023. },
  26024. },
  26025. [
  26026. {
  26027. name: "Normal",
  26028. height: math.unit(9.35, "feet"),
  26029. default: true
  26030. },
  26031. ]
  26032. ))
  26033. characterMakers.push(() => makeCharacter(
  26034. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26035. {
  26036. kneeling: {
  26037. height: math.unit(3 + 4 / 12, "feet"),
  26038. weight: math.unit(90, "lb"),
  26039. name: "Kneeling",
  26040. image: {
  26041. source: "./media/characters/rosewen/kneeling.svg",
  26042. extra: 1835 / 1571,
  26043. bottom: 27.7 / 1862
  26044. }
  26045. },
  26046. },
  26047. [
  26048. {
  26049. name: "Normal",
  26050. height: math.unit(3 + 4 / 12, "feet"),
  26051. default: true
  26052. },
  26053. ]
  26054. ))
  26055. characterMakers.push(() => makeCharacter(
  26056. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26057. {
  26058. front: {
  26059. height: math.unit(5 + 10 / 12, "feet"),
  26060. weight: math.unit(200, "lb"),
  26061. name: "Front",
  26062. image: {
  26063. source: "./media/characters/sabah/front.svg",
  26064. extra: 849 / 763,
  26065. bottom: 33.9 / 881
  26066. }
  26067. },
  26068. },
  26069. [
  26070. {
  26071. name: "Normal",
  26072. height: math.unit(5 + 10 / 12, "feet"),
  26073. default: true
  26074. },
  26075. ]
  26076. ))
  26077. characterMakers.push(() => makeCharacter(
  26078. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26079. {
  26080. front: {
  26081. height: math.unit(3 + 5 / 12, "feet"),
  26082. weight: math.unit(40, "kg"),
  26083. name: "Front",
  26084. image: {
  26085. source: "./media/characters/purple-flame/front.svg",
  26086. extra: 1577 / 1412,
  26087. bottom: 97 / 1694
  26088. }
  26089. },
  26090. frontDressed: {
  26091. height: math.unit(3 + 5 / 12, "feet"),
  26092. weight: math.unit(40, "kg"),
  26093. name: "Front (Dressed)",
  26094. image: {
  26095. source: "./media/characters/purple-flame/front-dressed.svg",
  26096. extra: 1577 / 1412,
  26097. bottom: 97 / 1694
  26098. }
  26099. },
  26100. headphones: {
  26101. height: math.unit(0.85, "feet"),
  26102. name: "Headphones",
  26103. image: {
  26104. source: "./media/characters/purple-flame/headphones.svg"
  26105. }
  26106. },
  26107. },
  26108. [
  26109. {
  26110. name: "Really Small",
  26111. height: math.unit(5, "cm")
  26112. },
  26113. {
  26114. name: "Micro",
  26115. height: math.unit(1 + 5 / 12, "feet")
  26116. },
  26117. {
  26118. name: "Normal",
  26119. height: math.unit(3 + 5 / 12, "feet"),
  26120. default: true
  26121. },
  26122. {
  26123. name: "Minimacro",
  26124. height: math.unit(125, "feet")
  26125. },
  26126. {
  26127. name: "Macro",
  26128. height: math.unit(0.5, "miles")
  26129. },
  26130. {
  26131. name: "Megamacro",
  26132. height: math.unit(50, "miles")
  26133. },
  26134. {
  26135. name: "Gigantic",
  26136. height: math.unit(750, "miles")
  26137. },
  26138. {
  26139. name: "Planetary",
  26140. height: math.unit(15000, "miles")
  26141. },
  26142. ]
  26143. ))
  26144. characterMakers.push(() => makeCharacter(
  26145. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26146. {
  26147. front: {
  26148. height: math.unit(14, "feet"),
  26149. weight: math.unit(959, "lb"),
  26150. name: "Front",
  26151. image: {
  26152. source: "./media/characters/arsenal/front.svg",
  26153. extra: 2357 / 2157,
  26154. bottom: 93 / 2458
  26155. }
  26156. },
  26157. },
  26158. [
  26159. {
  26160. name: "Normal",
  26161. height: math.unit(14, "feet"),
  26162. default: true
  26163. },
  26164. ]
  26165. ))
  26166. characterMakers.push(() => makeCharacter(
  26167. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26168. {
  26169. front: {
  26170. height: math.unit(6, "feet"),
  26171. weight: math.unit(150, "lb"),
  26172. name: "Front",
  26173. image: {
  26174. source: "./media/characters/adira/front.svg",
  26175. extra: 1078 / 1029,
  26176. bottom: 87 / 1166
  26177. }
  26178. },
  26179. },
  26180. [
  26181. {
  26182. name: "Micro",
  26183. height: math.unit(4, "inches"),
  26184. default: true
  26185. },
  26186. {
  26187. name: "Macro",
  26188. height: math.unit(50, "feet")
  26189. },
  26190. ]
  26191. ))
  26192. characterMakers.push(() => makeCharacter(
  26193. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26194. {
  26195. front: {
  26196. height: math.unit(16, "feet"),
  26197. weight: math.unit(1000, "lb"),
  26198. name: "Front",
  26199. image: {
  26200. source: "./media/characters/grim/front.svg",
  26201. extra: 622 / 614,
  26202. bottom: 18.1 / 642
  26203. }
  26204. },
  26205. back: {
  26206. height: math.unit(16, "feet"),
  26207. weight: math.unit(1000, "lb"),
  26208. name: "Back",
  26209. image: {
  26210. source: "./media/characters/grim/back.svg",
  26211. extra: 610.6 / 602,
  26212. bottom: 40.8 / 652
  26213. }
  26214. },
  26215. hunched: {
  26216. height: math.unit(9.75, "feet"),
  26217. weight: math.unit(1000, "lb"),
  26218. name: "Hunched",
  26219. image: {
  26220. source: "./media/characters/grim/hunched.svg",
  26221. extra: 304 / 297,
  26222. bottom: 35.4 / 394
  26223. }
  26224. },
  26225. },
  26226. [
  26227. {
  26228. name: "Normal",
  26229. height: math.unit(16, "feet"),
  26230. default: true
  26231. },
  26232. ]
  26233. ))
  26234. characterMakers.push(() => makeCharacter(
  26235. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26236. {
  26237. front: {
  26238. height: math.unit(2.3, "meters"),
  26239. weight: math.unit(300, "lb"),
  26240. name: "Front",
  26241. image: {
  26242. source: "./media/characters/sinja/front-sfw.svg",
  26243. extra: 1393 / 1294,
  26244. bottom: 70 / 1463
  26245. }
  26246. },
  26247. frontNsfw: {
  26248. height: math.unit(2.3, "meters"),
  26249. weight: math.unit(300, "lb"),
  26250. name: "Front (NSFW)",
  26251. image: {
  26252. source: "./media/characters/sinja/front-nsfw.svg",
  26253. extra: 1393 / 1294,
  26254. bottom: 70 / 1463
  26255. }
  26256. },
  26257. back: {
  26258. height: math.unit(2.3, "meters"),
  26259. weight: math.unit(300, "lb"),
  26260. name: "Back",
  26261. image: {
  26262. source: "./media/characters/sinja/back.svg",
  26263. extra: 1393 / 1294,
  26264. bottom: 70 / 1463
  26265. }
  26266. },
  26267. head: {
  26268. height: math.unit(1.771, "feet"),
  26269. name: "Head",
  26270. image: {
  26271. source: "./media/characters/sinja/head.svg"
  26272. }
  26273. },
  26274. slit: {
  26275. height: math.unit(0.8, "feet"),
  26276. name: "Slit",
  26277. image: {
  26278. source: "./media/characters/sinja/slit.svg"
  26279. }
  26280. },
  26281. },
  26282. [
  26283. {
  26284. name: "Normal",
  26285. height: math.unit(2.3, "meters")
  26286. },
  26287. {
  26288. name: "Macro",
  26289. height: math.unit(91, "meters"),
  26290. default: true
  26291. },
  26292. {
  26293. name: "Megamacro",
  26294. height: math.unit(91440, "meters")
  26295. },
  26296. {
  26297. name: "Gigamacro",
  26298. height: math.unit(60960000, "meters")
  26299. },
  26300. {
  26301. name: "Teramacro",
  26302. height: math.unit(9144000000, "meters")
  26303. },
  26304. ]
  26305. ))
  26306. characterMakers.push(() => makeCharacter(
  26307. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26308. {
  26309. front: {
  26310. height: math.unit(1.7, "meters"),
  26311. weight: math.unit(130, "lb"),
  26312. name: "Front",
  26313. image: {
  26314. source: "./media/characters/kyu/front.svg",
  26315. extra: 415 / 395,
  26316. bottom: 5 / 420
  26317. }
  26318. },
  26319. head: {
  26320. height: math.unit(1.75, "feet"),
  26321. name: "Head",
  26322. image: {
  26323. source: "./media/characters/kyu/head.svg"
  26324. }
  26325. },
  26326. foot: {
  26327. height: math.unit(0.81, "feet"),
  26328. name: "Foot",
  26329. image: {
  26330. source: "./media/characters/kyu/foot.svg"
  26331. }
  26332. },
  26333. },
  26334. [
  26335. {
  26336. name: "Normal",
  26337. height: math.unit(1.7, "meters")
  26338. },
  26339. {
  26340. name: "Macro",
  26341. height: math.unit(131, "feet"),
  26342. default: true
  26343. },
  26344. {
  26345. name: "Megamacro",
  26346. height: math.unit(91440, "meters")
  26347. },
  26348. {
  26349. name: "Gigamacro",
  26350. height: math.unit(60960000, "meters")
  26351. },
  26352. {
  26353. name: "Teramacro",
  26354. height: math.unit(9144000000, "meters")
  26355. },
  26356. ]
  26357. ))
  26358. characterMakers.push(() => makeCharacter(
  26359. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26360. {
  26361. front: {
  26362. height: math.unit(7 + 1 / 12, "feet"),
  26363. weight: math.unit(250, "lb"),
  26364. name: "Front",
  26365. image: {
  26366. source: "./media/characters/joey/front.svg",
  26367. extra: 1791 / 1537,
  26368. bottom: 28 / 1816
  26369. }
  26370. },
  26371. },
  26372. [
  26373. {
  26374. name: "Micro",
  26375. height: math.unit(3, "inches")
  26376. },
  26377. {
  26378. name: "Normal",
  26379. height: math.unit(7 + 1 / 12, "feet"),
  26380. default: true
  26381. },
  26382. ]
  26383. ))
  26384. characterMakers.push(() => makeCharacter(
  26385. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26386. {
  26387. front: {
  26388. height: math.unit(165, "cm"),
  26389. weight: math.unit(140, "lb"),
  26390. name: "Front",
  26391. image: {
  26392. source: "./media/characters/sam-evans/front.svg",
  26393. extra: 3417 / 3230,
  26394. bottom: 41.3 / 3417
  26395. }
  26396. },
  26397. frontSixTails: {
  26398. height: math.unit(165, "cm"),
  26399. weight: math.unit(140, "lb"),
  26400. name: "Front-six-tails",
  26401. image: {
  26402. source: "./media/characters/sam-evans/front-six-tails.svg",
  26403. extra: 3417 / 3230,
  26404. bottom: 41.3 / 3417
  26405. }
  26406. },
  26407. back: {
  26408. height: math.unit(165, "cm"),
  26409. weight: math.unit(140, "lb"),
  26410. name: "Back",
  26411. image: {
  26412. source: "./media/characters/sam-evans/back.svg",
  26413. extra: 3227 / 3032,
  26414. bottom: 6.8 / 3234
  26415. }
  26416. },
  26417. face: {
  26418. height: math.unit(0.68, "feet"),
  26419. name: "Face",
  26420. image: {
  26421. source: "./media/characters/sam-evans/face.svg"
  26422. }
  26423. },
  26424. },
  26425. [
  26426. {
  26427. name: "Normal",
  26428. height: math.unit(165, "cm"),
  26429. default: true
  26430. },
  26431. {
  26432. name: "Macro",
  26433. height: math.unit(100, "meters")
  26434. },
  26435. {
  26436. name: "Macro+",
  26437. height: math.unit(800, "meters")
  26438. },
  26439. {
  26440. name: "Macro++",
  26441. height: math.unit(3, "km")
  26442. },
  26443. {
  26444. name: "Macro+++",
  26445. height: math.unit(30, "km")
  26446. },
  26447. ]
  26448. ))
  26449. characterMakers.push(() => makeCharacter(
  26450. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26451. {
  26452. front: {
  26453. height: math.unit(10, "feet"),
  26454. weight: math.unit(750, "lb"),
  26455. name: "Front",
  26456. image: {
  26457. source: "./media/characters/juliet-a/front.svg",
  26458. extra: 1766 / 1720,
  26459. bottom: 43 / 1809
  26460. }
  26461. },
  26462. back: {
  26463. height: math.unit(10, "feet"),
  26464. weight: math.unit(750, "lb"),
  26465. name: "Back",
  26466. image: {
  26467. source: "./media/characters/juliet-a/back.svg",
  26468. extra: 1781 / 1734,
  26469. bottom: 35 / 1810,
  26470. }
  26471. },
  26472. },
  26473. [
  26474. {
  26475. name: "Normal",
  26476. height: math.unit(10, "feet"),
  26477. default: true
  26478. },
  26479. {
  26480. name: "Dragon Form",
  26481. height: math.unit(250, "feet")
  26482. },
  26483. {
  26484. name: "Macro",
  26485. height: math.unit(1000, "feet")
  26486. },
  26487. {
  26488. name: "Megamacro",
  26489. height: math.unit(10000, "feet")
  26490. }
  26491. ]
  26492. ))
  26493. characterMakers.push(() => makeCharacter(
  26494. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26495. {
  26496. regular: {
  26497. height: math.unit(7 + 3 / 12, "feet"),
  26498. weight: math.unit(260, "lb"),
  26499. name: "Regular",
  26500. image: {
  26501. source: "./media/characters/wild/regular.svg",
  26502. extra: 97.45 / 92,
  26503. bottom: 6.8 / 104.3
  26504. }
  26505. },
  26506. biggums: {
  26507. height: math.unit(8 + 6 / 12, "feet"),
  26508. weight: math.unit(425, "lb"),
  26509. name: "Biggums",
  26510. image: {
  26511. source: "./media/characters/wild/biggums.svg",
  26512. extra: 97.45 / 92,
  26513. bottom: 7.5 / 132.34
  26514. }
  26515. },
  26516. mawRegular: {
  26517. height: math.unit(1.24, "feet"),
  26518. name: "Maw (Regular)",
  26519. image: {
  26520. source: "./media/characters/wild/maw.svg"
  26521. }
  26522. },
  26523. mawBiggums: {
  26524. height: math.unit(1.47, "feet"),
  26525. name: "Maw (Biggums)",
  26526. image: {
  26527. source: "./media/characters/wild/maw.svg"
  26528. }
  26529. },
  26530. },
  26531. [
  26532. {
  26533. name: "Normal",
  26534. height: math.unit(7 + 3 / 12, "feet"),
  26535. default: true
  26536. },
  26537. ]
  26538. ))
  26539. characterMakers.push(() => makeCharacter(
  26540. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26541. {
  26542. front: {
  26543. height: math.unit(2.5, "meters"),
  26544. weight: math.unit(200, "kg"),
  26545. name: "Front",
  26546. image: {
  26547. source: "./media/characters/vidar/front.svg",
  26548. extra: 2994 / 2795,
  26549. bottom: 56 / 3061
  26550. }
  26551. },
  26552. back: {
  26553. height: math.unit(2.5, "meters"),
  26554. weight: math.unit(200, "kg"),
  26555. name: "Back",
  26556. image: {
  26557. source: "./media/characters/vidar/back.svg",
  26558. extra: 3131 / 2928,
  26559. bottom: 13.5 / 3141.5
  26560. }
  26561. },
  26562. feral: {
  26563. height: math.unit(2.5, "meters"),
  26564. weight: math.unit(2000, "kg"),
  26565. name: "Feral",
  26566. image: {
  26567. source: "./media/characters/vidar/feral.svg",
  26568. extra: 2790 / 1765,
  26569. bottom: 6 / 2796
  26570. }
  26571. },
  26572. },
  26573. [
  26574. {
  26575. name: "Normal",
  26576. height: math.unit(2.5, "meters"),
  26577. default: true
  26578. },
  26579. {
  26580. name: "Macro",
  26581. height: math.unit(100, "meters")
  26582. },
  26583. ]
  26584. ))
  26585. characterMakers.push(() => makeCharacter(
  26586. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26587. {
  26588. front: {
  26589. height: math.unit(5 + 9 / 12, "feet"),
  26590. weight: math.unit(120, "lb"),
  26591. name: "Front",
  26592. image: {
  26593. source: "./media/characters/ash/front.svg",
  26594. extra: 2189 / 1961,
  26595. bottom: 5.2 / 2194
  26596. }
  26597. },
  26598. },
  26599. [
  26600. {
  26601. name: "Normal",
  26602. height: math.unit(5 + 9 / 12, "feet"),
  26603. default: true
  26604. },
  26605. ]
  26606. ))
  26607. characterMakers.push(() => makeCharacter(
  26608. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26609. {
  26610. front: {
  26611. height: math.unit(9, "feet"),
  26612. weight: math.unit(10000, "lb"),
  26613. name: "Front",
  26614. image: {
  26615. source: "./media/characters/gygabite/front.svg",
  26616. bottom: 31.7 / 537.8,
  26617. extra: 505 / 370
  26618. }
  26619. },
  26620. },
  26621. [
  26622. {
  26623. name: "Normal",
  26624. height: math.unit(9, "feet"),
  26625. default: true
  26626. },
  26627. ]
  26628. ))
  26629. characterMakers.push(() => makeCharacter(
  26630. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26631. {
  26632. front: {
  26633. height: math.unit(12, "feet"),
  26634. weight: math.unit(35000, "lb"),
  26635. name: "Front",
  26636. image: {
  26637. source: "./media/characters/p0tat0/front.svg",
  26638. extra: 1065 / 921,
  26639. bottom: 55.7 / 1121.25
  26640. }
  26641. },
  26642. },
  26643. [
  26644. {
  26645. name: "Normal",
  26646. height: math.unit(12, "feet"),
  26647. default: true
  26648. },
  26649. ]
  26650. ))
  26651. characterMakers.push(() => makeCharacter(
  26652. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26653. {
  26654. side: {
  26655. height: math.unit(6.5, "feet"),
  26656. weight: math.unit(800, "lb"),
  26657. name: "Side",
  26658. image: {
  26659. source: "./media/characters/dusk/side.svg",
  26660. extra: 615 / 373,
  26661. bottom: 53 / 664
  26662. }
  26663. },
  26664. sitting: {
  26665. height: math.unit(7, "feet"),
  26666. weight: math.unit(800, "lb"),
  26667. name: "Sitting",
  26668. image: {
  26669. source: "./media/characters/dusk/sitting.svg",
  26670. extra: 753 / 425,
  26671. bottom: 33 / 774
  26672. }
  26673. },
  26674. head: {
  26675. height: math.unit(6.1, "feet"),
  26676. name: "Head",
  26677. image: {
  26678. source: "./media/characters/dusk/head.svg"
  26679. }
  26680. },
  26681. },
  26682. [
  26683. {
  26684. name: "Normal",
  26685. height: math.unit(7, "feet"),
  26686. default: true
  26687. },
  26688. ]
  26689. ))
  26690. characterMakers.push(() => makeCharacter(
  26691. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26692. {
  26693. front: {
  26694. height: math.unit(15, "feet"),
  26695. weight: math.unit(7000, "lb"),
  26696. name: "Front",
  26697. image: {
  26698. source: "./media/characters/jay-direwolf/front.svg",
  26699. extra: 1810 / 1732,
  26700. bottom: 66 / 1892
  26701. }
  26702. },
  26703. },
  26704. [
  26705. {
  26706. name: "Normal",
  26707. height: math.unit(15, "feet"),
  26708. default: true
  26709. },
  26710. ]
  26711. ))
  26712. characterMakers.push(() => makeCharacter(
  26713. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26714. {
  26715. front: {
  26716. height: math.unit(4 + 9 / 12, "feet"),
  26717. weight: math.unit(130, "lb"),
  26718. name: "Front",
  26719. image: {
  26720. source: "./media/characters/anchovie/front.svg",
  26721. extra: 382 / 350,
  26722. bottom: 25 / 409
  26723. }
  26724. },
  26725. back: {
  26726. height: math.unit(4 + 9 / 12, "feet"),
  26727. weight: math.unit(130, "lb"),
  26728. name: "Back",
  26729. image: {
  26730. source: "./media/characters/anchovie/back.svg",
  26731. extra: 385 / 352,
  26732. bottom: 16.6 / 402
  26733. }
  26734. },
  26735. frontDressed: {
  26736. height: math.unit(4 + 9 / 12, "feet"),
  26737. weight: math.unit(130, "lb"),
  26738. name: "Front (Dressed)",
  26739. image: {
  26740. source: "./media/characters/anchovie/front-dressed.svg",
  26741. extra: 382 / 350,
  26742. bottom: 25 / 409
  26743. }
  26744. },
  26745. backDressed: {
  26746. height: math.unit(4 + 9 / 12, "feet"),
  26747. weight: math.unit(130, "lb"),
  26748. name: "Back (Dressed)",
  26749. image: {
  26750. source: "./media/characters/anchovie/back-dressed.svg",
  26751. extra: 385 / 352,
  26752. bottom: 16.6 / 402
  26753. }
  26754. },
  26755. },
  26756. [
  26757. {
  26758. name: "Micro",
  26759. height: math.unit(6.4, "inches")
  26760. },
  26761. {
  26762. name: "Normal",
  26763. height: math.unit(4 + 9 / 12, "feet"),
  26764. default: true
  26765. },
  26766. ]
  26767. ))
  26768. characterMakers.push(() => makeCharacter(
  26769. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26770. {
  26771. front: {
  26772. height: math.unit(2, "meters"),
  26773. weight: math.unit(180, "lb"),
  26774. name: "Front",
  26775. image: {
  26776. source: "./media/characters/acidrenamon/front.svg",
  26777. extra: 987 / 890,
  26778. bottom: 22.8 / 1009
  26779. }
  26780. },
  26781. back: {
  26782. height: math.unit(2, "meters"),
  26783. weight: math.unit(180, "lb"),
  26784. name: "Back",
  26785. image: {
  26786. source: "./media/characters/acidrenamon/back.svg",
  26787. extra: 983 / 891,
  26788. bottom: 8.4 / 992
  26789. }
  26790. },
  26791. head: {
  26792. height: math.unit(1.92, "feet"),
  26793. name: "Head",
  26794. image: {
  26795. source: "./media/characters/acidrenamon/head.svg"
  26796. }
  26797. },
  26798. rump: {
  26799. height: math.unit(1.72, "feet"),
  26800. name: "Rump",
  26801. image: {
  26802. source: "./media/characters/acidrenamon/rump.svg"
  26803. }
  26804. },
  26805. tail: {
  26806. height: math.unit(4.2, "feet"),
  26807. name: "Tail",
  26808. image: {
  26809. source: "./media/characters/acidrenamon/tail.svg"
  26810. }
  26811. },
  26812. },
  26813. [
  26814. {
  26815. name: "Normal",
  26816. height: math.unit(2, "meters"),
  26817. default: true
  26818. },
  26819. {
  26820. name: "Minimacro",
  26821. height: math.unit(7, "meters")
  26822. },
  26823. {
  26824. name: "Macro",
  26825. height: math.unit(200, "meters")
  26826. },
  26827. {
  26828. name: "Gigamacro",
  26829. height: math.unit(0.2, "earths")
  26830. },
  26831. ]
  26832. ))
  26833. characterMakers.push(() => makeCharacter(
  26834. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26835. {
  26836. front: {
  26837. height: math.unit(6, "feet"),
  26838. weight: math.unit(150, "lb"),
  26839. name: "Front",
  26840. image: {
  26841. source: "./media/characters/kenzie-lee/front.svg",
  26842. extra: 1525 / 1465,
  26843. bottom: 45 / 1570
  26844. }
  26845. },
  26846. side: {
  26847. height: math.unit(6, "feet"),
  26848. weight: math.unit(150, "lb"),
  26849. name: "Side",
  26850. image: {
  26851. source: "./media/characters/kenzie-lee/side.svg",
  26852. extra: 5505 / 5383,
  26853. bottom: 60 / 5573
  26854. }
  26855. },
  26856. paw: {
  26857. height: math.unit(0.57, "feet"),
  26858. name: "Paw",
  26859. image: {
  26860. source: "./media/characters/kenzie-lee/paw.svg"
  26861. }
  26862. },
  26863. },
  26864. [
  26865. {
  26866. name: "Normal",
  26867. height: math.unit(152, "feet"),
  26868. default: true
  26869. },
  26870. {
  26871. name: "Megamacro",
  26872. height: math.unit(7, "miles")
  26873. },
  26874. {
  26875. name: "Gigamacro",
  26876. height: math.unit(8000, "miles")
  26877. },
  26878. ]
  26879. ))
  26880. characterMakers.push(() => makeCharacter(
  26881. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26882. {
  26883. side: {
  26884. height: math.unit(6, "feet"),
  26885. weight: math.unit(150, "lb"),
  26886. name: "Side",
  26887. image: {
  26888. source: "./media/characters/withers/side.svg",
  26889. extra: 1830 / 1728,
  26890. bottom: 96 / 1927
  26891. }
  26892. },
  26893. front: {
  26894. height: math.unit(6, "feet"),
  26895. weight: math.unit(150, "lb"),
  26896. name: "Front",
  26897. image: {
  26898. source: "./media/characters/withers/front.svg",
  26899. extra: 1514 / 1438,
  26900. bottom: 118 / 1632
  26901. }
  26902. },
  26903. },
  26904. [
  26905. {
  26906. name: "Macro",
  26907. height: math.unit(168, "feet"),
  26908. default: true
  26909. },
  26910. {
  26911. name: "Megamacro",
  26912. height: math.unit(15, "miles")
  26913. }
  26914. ]
  26915. ))
  26916. characterMakers.push(() => makeCharacter(
  26917. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26918. {
  26919. front: {
  26920. height: math.unit(6 + 7 / 12, "feet"),
  26921. weight: math.unit(250, "lb"),
  26922. name: "Front",
  26923. image: {
  26924. source: "./media/characters/nemoskii/front.svg",
  26925. extra: 2270 / 1734,
  26926. bottom: 86 / 2354
  26927. }
  26928. },
  26929. back: {
  26930. height: math.unit(6 + 7 / 12, "feet"),
  26931. weight: math.unit(250, "lb"),
  26932. name: "Back",
  26933. image: {
  26934. source: "./media/characters/nemoskii/back.svg",
  26935. extra: 1845 / 1788,
  26936. bottom: 10.5 / 1852
  26937. }
  26938. },
  26939. head: {
  26940. height: math.unit(1.31, "feet"),
  26941. name: "Head",
  26942. image: {
  26943. source: "./media/characters/nemoskii/head.svg"
  26944. }
  26945. },
  26946. },
  26947. [
  26948. {
  26949. name: "Micro",
  26950. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26951. },
  26952. {
  26953. name: "Normal",
  26954. height: math.unit(6 + 7 / 12, "feet"),
  26955. default: true
  26956. },
  26957. {
  26958. name: "Macro",
  26959. height: math.unit((6 + 7 / 12) * 150, "feet")
  26960. },
  26961. {
  26962. name: "Macro+",
  26963. height: math.unit((6 + 7 / 12) * 500, "feet")
  26964. },
  26965. {
  26966. name: "Megamacro",
  26967. height: math.unit((6 + 7 / 12) * 100000, "feet")
  26968. },
  26969. ]
  26970. ))
  26971. characterMakers.push(() => makeCharacter(
  26972. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26973. {
  26974. front: {
  26975. height: math.unit(1, "mile"),
  26976. weight: math.unit(265261.9, "lb"),
  26977. name: "Front",
  26978. image: {
  26979. source: "./media/characters/shui/front.svg",
  26980. extra: 1633 / 1564,
  26981. bottom: 91.5 / 1726
  26982. }
  26983. },
  26984. },
  26985. [
  26986. {
  26987. name: "Macro",
  26988. height: math.unit(1, "mile"),
  26989. default: true
  26990. },
  26991. ]
  26992. ))
  26993. characterMakers.push(() => makeCharacter(
  26994. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26995. {
  26996. front: {
  26997. height: math.unit(12 + 6 / 12, "feet"),
  26998. weight: math.unit(1342, "lb"),
  26999. name: "Front",
  27000. image: {
  27001. source: "./media/characters/arokh-takakura/front.svg",
  27002. extra: 1089 / 1043,
  27003. bottom: 77.4 / 1176.7
  27004. }
  27005. },
  27006. back: {
  27007. height: math.unit(12 + 6 / 12, "feet"),
  27008. weight: math.unit(1342, "lb"),
  27009. name: "Back",
  27010. image: {
  27011. source: "./media/characters/arokh-takakura/back.svg",
  27012. extra: 1046 / 1019,
  27013. bottom: 102 / 1150
  27014. }
  27015. },
  27016. },
  27017. [
  27018. {
  27019. name: "Big",
  27020. height: math.unit(12 + 6 / 12, "feet"),
  27021. default: true
  27022. },
  27023. ]
  27024. ))
  27025. characterMakers.push(() => makeCharacter(
  27026. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27027. {
  27028. front: {
  27029. height: math.unit(5 + 6 / 12, "feet"),
  27030. weight: math.unit(150, "lb"),
  27031. name: "Front",
  27032. image: {
  27033. source: "./media/characters/theo/front.svg",
  27034. extra: 1184 / 1131,
  27035. bottom: 7.4 / 1191
  27036. }
  27037. },
  27038. },
  27039. [
  27040. {
  27041. name: "Micro",
  27042. height: math.unit(5, "inches")
  27043. },
  27044. {
  27045. name: "Normal",
  27046. height: math.unit(5 + 6 / 12, "feet"),
  27047. default: true
  27048. },
  27049. ]
  27050. ))
  27051. characterMakers.push(() => makeCharacter(
  27052. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27053. {
  27054. front: {
  27055. height: math.unit(5 + 9 / 12, "feet"),
  27056. weight: math.unit(130, "lb"),
  27057. name: "Front",
  27058. image: {
  27059. source: "./media/characters/cecelia-swift/front.svg",
  27060. extra: 502 / 484,
  27061. bottom: 23 / 523
  27062. }
  27063. },
  27064. back: {
  27065. height: math.unit(5 + 9 / 12, "feet"),
  27066. weight: math.unit(130, "lb"),
  27067. name: "Back",
  27068. image: {
  27069. source: "./media/characters/cecelia-swift/back.svg",
  27070. extra: 499 / 485,
  27071. bottom: 12 / 511
  27072. }
  27073. },
  27074. head: {
  27075. height: math.unit(0.90, "feet"),
  27076. name: "Head",
  27077. image: {
  27078. source: "./media/characters/cecelia-swift/head.svg"
  27079. }
  27080. },
  27081. rump: {
  27082. height: math.unit(1.75, "feet"),
  27083. name: "Rump",
  27084. image: {
  27085. source: "./media/characters/cecelia-swift/rump.svg"
  27086. }
  27087. },
  27088. },
  27089. [
  27090. {
  27091. name: "Normal",
  27092. height: math.unit(5 + 9 / 12, "feet"),
  27093. default: true
  27094. },
  27095. {
  27096. name: "Big",
  27097. height: math.unit(50, "feet")
  27098. },
  27099. {
  27100. name: "Macro",
  27101. height: math.unit(100, "feet")
  27102. },
  27103. {
  27104. name: "Macro+",
  27105. height: math.unit(500, "feet")
  27106. },
  27107. {
  27108. name: "Macro++",
  27109. height: math.unit(1000, "feet")
  27110. },
  27111. ]
  27112. ))
  27113. characterMakers.push(() => makeCharacter(
  27114. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27115. {
  27116. front: {
  27117. height: math.unit(6, "feet"),
  27118. weight: math.unit(150, "lb"),
  27119. name: "Front",
  27120. image: {
  27121. source: "./media/characters/kaunan/front.svg",
  27122. extra: 2890 / 2523,
  27123. bottom: 49 / 2939
  27124. }
  27125. },
  27126. },
  27127. [
  27128. {
  27129. name: "Macro",
  27130. height: math.unit(150, "feet"),
  27131. default: true
  27132. },
  27133. ]
  27134. ))
  27135. characterMakers.push(() => makeCharacter(
  27136. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27137. {
  27138. front: {
  27139. height: math.unit(175, "cm"),
  27140. weight: math.unit(60, "kg"),
  27141. name: "Front",
  27142. image: {
  27143. source: "./media/characters/fei/front.svg",
  27144. extra: 2581 / 2400,
  27145. bottom: 82.2 / 2663
  27146. }
  27147. },
  27148. },
  27149. [
  27150. {
  27151. name: "Mortal",
  27152. height: math.unit(175, "cm")
  27153. },
  27154. {
  27155. name: "Normal",
  27156. height: math.unit(3500, "m"),
  27157. default: true
  27158. },
  27159. {
  27160. name: "Stroll",
  27161. height: math.unit(17.5, "km")
  27162. },
  27163. {
  27164. name: "Showoff",
  27165. height: math.unit(175, "km")
  27166. },
  27167. ]
  27168. ))
  27169. characterMakers.push(() => makeCharacter(
  27170. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27171. {
  27172. front: {
  27173. height: math.unit(7, "feet"),
  27174. weight: math.unit(1000, "kg"),
  27175. name: "Front",
  27176. image: {
  27177. source: "./media/characters/edrax/front.svg",
  27178. extra: 2838 / 2550,
  27179. bottom: 130 / 2968
  27180. }
  27181. },
  27182. },
  27183. [
  27184. {
  27185. name: "Small",
  27186. height: math.unit(7, "feet")
  27187. },
  27188. {
  27189. name: "Normal",
  27190. height: math.unit(1500, "meters")
  27191. },
  27192. {
  27193. name: "Mega",
  27194. height: math.unit(12000000, "km"),
  27195. default: true
  27196. },
  27197. {
  27198. name: "Megamacro",
  27199. height: math.unit(10600000, "lightyears")
  27200. },
  27201. {
  27202. name: "Hypermacro",
  27203. height: math.unit(256, "yottameters")
  27204. },
  27205. ]
  27206. ))
  27207. characterMakers.push(() => makeCharacter(
  27208. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27209. {
  27210. front: {
  27211. height: math.unit(10, "feet"),
  27212. weight: math.unit(750, "lb"),
  27213. name: "Front",
  27214. image: {
  27215. source: "./media/characters/clove/front.svg",
  27216. extra: 2031 / 1860,
  27217. bottom: 47.8 / 2080
  27218. }
  27219. },
  27220. back: {
  27221. height: math.unit(10, "feet"),
  27222. weight: math.unit(750, "lb"),
  27223. name: "Back",
  27224. image: {
  27225. source: "./media/characters/clove/back.svg",
  27226. extra: 2025 / 1859,
  27227. bottom: 46 / 2071
  27228. }
  27229. },
  27230. },
  27231. [
  27232. {
  27233. name: "Normal",
  27234. height: math.unit(10, "feet"),
  27235. default: true
  27236. },
  27237. ]
  27238. ))
  27239. characterMakers.push(() => makeCharacter(
  27240. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27241. {
  27242. front: {
  27243. height: math.unit(4, "feet"),
  27244. weight: math.unit(50, "lb"),
  27245. name: "Front",
  27246. image: {
  27247. source: "./media/characters/alex-rabbit/front.svg",
  27248. extra: 507 / 458,
  27249. bottom: 18.5 / 527
  27250. }
  27251. },
  27252. back: {
  27253. height: math.unit(4, "feet"),
  27254. weight: math.unit(50, "lb"),
  27255. name: "Back",
  27256. image: {
  27257. source: "./media/characters/alex-rabbit/back.svg",
  27258. extra: 502 / 460,
  27259. bottom: 18.9 / 521
  27260. }
  27261. },
  27262. },
  27263. [
  27264. {
  27265. name: "Normal",
  27266. height: math.unit(4, "feet"),
  27267. default: true
  27268. },
  27269. ]
  27270. ))
  27271. characterMakers.push(() => makeCharacter(
  27272. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27273. {
  27274. front: {
  27275. height: math.unit(1 + 3 / 12, "feet"),
  27276. weight: math.unit(80, "lb"),
  27277. name: "Front",
  27278. image: {
  27279. source: "./media/characters/zander-rose/front.svg",
  27280. extra: 916 / 797,
  27281. bottom: 17 / 933
  27282. }
  27283. },
  27284. back: {
  27285. height: math.unit(1 + 3 / 12, "feet"),
  27286. weight: math.unit(80, "lb"),
  27287. name: "Back",
  27288. image: {
  27289. source: "./media/characters/zander-rose/back.svg",
  27290. extra: 903 / 779,
  27291. bottom: 31 / 934
  27292. }
  27293. },
  27294. },
  27295. [
  27296. {
  27297. name: "Normal",
  27298. height: math.unit(1 + 3 / 12, "feet"),
  27299. default: true
  27300. },
  27301. ]
  27302. ))
  27303. characterMakers.push(() => makeCharacter(
  27304. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27305. {
  27306. anthro: {
  27307. height: math.unit(6, "feet"),
  27308. weight: math.unit(150, "lb"),
  27309. name: "Anthro",
  27310. image: {
  27311. source: "./media/characters/razz/anthro.svg",
  27312. extra: 1437 / 1343,
  27313. bottom: 48 / 1485
  27314. }
  27315. },
  27316. feral: {
  27317. height: math.unit(6, "feet"),
  27318. weight: math.unit(150, "lb"),
  27319. name: "Feral",
  27320. image: {
  27321. source: "./media/characters/razz/feral.svg",
  27322. extra: 2569 / 1385,
  27323. bottom: 95 / 2664
  27324. }
  27325. },
  27326. },
  27327. [
  27328. {
  27329. name: "Normal",
  27330. height: math.unit(6, "feet"),
  27331. default: true
  27332. },
  27333. ]
  27334. ))
  27335. characterMakers.push(() => makeCharacter(
  27336. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27337. {
  27338. front: {
  27339. height: math.unit(9 + 4 / 12, "feet"),
  27340. weight: math.unit(500, "lb"),
  27341. name: "Front",
  27342. image: {
  27343. source: "./media/characters/morrigan/front.svg",
  27344. extra: 2707 / 2579,
  27345. bottom: 156 / 2863
  27346. }
  27347. },
  27348. },
  27349. [
  27350. {
  27351. name: "Normal",
  27352. height: math.unit(9 + 4 / 12, "feet"),
  27353. default: true
  27354. },
  27355. ]
  27356. ))
  27357. characterMakers.push(() => makeCharacter(
  27358. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27359. {
  27360. front: {
  27361. height: math.unit(5, "stories"),
  27362. weight: math.unit(4000, "lb"),
  27363. name: "Front",
  27364. image: {
  27365. source: "./media/characters/jenene/front.svg",
  27366. extra: 1780 / 1710,
  27367. bottom: 57 / 1837
  27368. }
  27369. },
  27370. },
  27371. [
  27372. {
  27373. name: "Normal",
  27374. height: math.unit(5, "stories"),
  27375. default: true
  27376. },
  27377. ]
  27378. ))
  27379. characterMakers.push(() => makeCharacter(
  27380. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27381. {
  27382. front: {
  27383. height: math.unit(6, "feet"),
  27384. weight: math.unit(150, "lb"),
  27385. name: "Front",
  27386. image: {
  27387. source: "./media/characters/vix-archaser/front.svg",
  27388. extra: 2767 / 2562,
  27389. bottom: 36 / 2803
  27390. }
  27391. },
  27392. },
  27393. [
  27394. {
  27395. name: "Micro",
  27396. height: math.unit(1, "foot")
  27397. },
  27398. {
  27399. name: "Normal",
  27400. height: math.unit(6 + 5 / 12, "feet")
  27401. },
  27402. {
  27403. name: "Minimacro",
  27404. height: math.unit(500, "feet")
  27405. },
  27406. {
  27407. name: "Macro",
  27408. height: math.unit(4, "miles")
  27409. },
  27410. {
  27411. name: "Megamacro",
  27412. height: math.unit(250, "miles"),
  27413. default: true
  27414. },
  27415. {
  27416. name: "Gigamacro",
  27417. height: math.unit(1, "universe")
  27418. },
  27419. {
  27420. name: "Endgame",
  27421. height: math.unit(100, "multiverses")
  27422. }
  27423. ]
  27424. ))
  27425. characterMakers.push(() => makeCharacter(
  27426. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27427. {
  27428. taurSfw: {
  27429. height: math.unit(10, "meters"),
  27430. weight: math.unit(17500, "kg"),
  27431. name: "Taur",
  27432. image: {
  27433. source: "./media/characters/faey/taur-sfw.svg",
  27434. extra: 1200 / 968,
  27435. bottom: 41 / 1241
  27436. }
  27437. },
  27438. chestmaw: {
  27439. height: math.unit(2.01, "meters"),
  27440. name: "Chestmaw",
  27441. image: {
  27442. source: "./media/characters/faey/chestmaw.svg"
  27443. }
  27444. },
  27445. foot: {
  27446. height: math.unit(2.43, "meters"),
  27447. name: "Foot",
  27448. image: {
  27449. source: "./media/characters/faey/foot.svg"
  27450. }
  27451. },
  27452. jaws: {
  27453. height: math.unit(1.66, "meters"),
  27454. name: "Jaws",
  27455. image: {
  27456. source: "./media/characters/faey/jaws.svg"
  27457. }
  27458. },
  27459. tongues: {
  27460. height: math.unit(2.01, "meters"),
  27461. name: "Tongues",
  27462. image: {
  27463. source: "./media/characters/faey/tongues.svg"
  27464. }
  27465. },
  27466. },
  27467. [
  27468. {
  27469. name: "Small",
  27470. height: math.unit(10, "meters"),
  27471. default: true
  27472. },
  27473. {
  27474. name: "Big",
  27475. height: math.unit(500000, "km")
  27476. },
  27477. ]
  27478. ))
  27479. characterMakers.push(() => makeCharacter(
  27480. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27481. {
  27482. front: {
  27483. height: math.unit(7, "feet"),
  27484. weight: math.unit(275, "lb"),
  27485. name: "Front",
  27486. image: {
  27487. source: "./media/characters/roku/front.svg",
  27488. extra: 903 / 878,
  27489. bottom: 37 / 940
  27490. }
  27491. },
  27492. },
  27493. [
  27494. {
  27495. name: "Normal",
  27496. height: math.unit(7, "feet"),
  27497. default: true
  27498. },
  27499. {
  27500. name: "Macro",
  27501. height: math.unit(500, "feet")
  27502. },
  27503. {
  27504. name: "Megamacro",
  27505. height: math.unit(200, "miles")
  27506. },
  27507. ]
  27508. ))
  27509. characterMakers.push(() => makeCharacter(
  27510. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27511. {
  27512. front: {
  27513. height: math.unit(6 + 2 / 12, "feet"),
  27514. weight: math.unit(150, "lb"),
  27515. name: "Front",
  27516. image: {
  27517. source: "./media/characters/lira/front.svg",
  27518. extra: 1727 / 1605,
  27519. bottom: 26 / 1753
  27520. }
  27521. },
  27522. back: {
  27523. height: math.unit(6 + 2 / 12, "feet"),
  27524. weight: math.unit(150, "lb"),
  27525. name: "Back",
  27526. image: {
  27527. source: "./media/characters/lira/back.svg",
  27528. extra: 1713 / 159,
  27529. bottom: 20 / 1733
  27530. }
  27531. },
  27532. hand: {
  27533. height: math.unit(0.75, "feet"),
  27534. name: "Hand",
  27535. image: {
  27536. source: "./media/characters/lira/hand.svg"
  27537. }
  27538. },
  27539. maw: {
  27540. height: math.unit(0.65, "feet"),
  27541. name: "Maw",
  27542. image: {
  27543. source: "./media/characters/lira/maw.svg"
  27544. }
  27545. },
  27546. pawDigi: {
  27547. height: math.unit(1.6, "feet"),
  27548. name: "Paw Digi",
  27549. image: {
  27550. source: "./media/characters/lira/paw-digi.svg"
  27551. }
  27552. },
  27553. pawPlanti: {
  27554. height: math.unit(1.4, "feet"),
  27555. name: "Paw Planti",
  27556. image: {
  27557. source: "./media/characters/lira/paw-planti.svg"
  27558. }
  27559. },
  27560. },
  27561. [
  27562. {
  27563. name: "Normal",
  27564. height: math.unit(6 + 2 / 12, "feet"),
  27565. default: true
  27566. },
  27567. {
  27568. name: "Macro",
  27569. height: math.unit(100, "feet")
  27570. },
  27571. {
  27572. name: "Macro²",
  27573. height: math.unit(1600, "feet")
  27574. },
  27575. {
  27576. name: "Planetary",
  27577. height: math.unit(20, "earths")
  27578. },
  27579. ]
  27580. ))
  27581. characterMakers.push(() => makeCharacter(
  27582. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27583. {
  27584. front: {
  27585. height: math.unit(6, "feet"),
  27586. weight: math.unit(150, "lb"),
  27587. name: "Front",
  27588. image: {
  27589. source: "./media/characters/hadjet/front.svg",
  27590. extra: 1480 / 1346,
  27591. bottom: 26 / 1506
  27592. }
  27593. },
  27594. frontNsfw: {
  27595. height: math.unit(6, "feet"),
  27596. weight: math.unit(150, "lb"),
  27597. name: "Front (NSFW)",
  27598. image: {
  27599. source: "./media/characters/hadjet/front-nsfw.svg",
  27600. extra: 1440 / 1358,
  27601. bottom: 52 / 1492
  27602. }
  27603. },
  27604. },
  27605. [
  27606. {
  27607. name: "Macro",
  27608. height: math.unit(10, "stories"),
  27609. default: true
  27610. },
  27611. {
  27612. name: "Megamacro",
  27613. height: math.unit(1.5, "miles")
  27614. },
  27615. {
  27616. name: "Megamacro+",
  27617. height: math.unit(5, "miles")
  27618. },
  27619. ]
  27620. ))
  27621. characterMakers.push(() => makeCharacter(
  27622. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27623. {
  27624. side: {
  27625. height: math.unit(106, "feet"),
  27626. weight: math.unit(500, "tonnes"),
  27627. name: "Side",
  27628. image: {
  27629. source: "./media/characters/kodran/side.svg",
  27630. extra: 553 / 480,
  27631. bottom: 33 / 586
  27632. }
  27633. },
  27634. front: {
  27635. height: math.unit(132, "feet"),
  27636. weight: math.unit(500, "tonnes"),
  27637. name: "Front",
  27638. image: {
  27639. source: "./media/characters/kodran/front.svg",
  27640. extra: 667 / 643,
  27641. bottom: 42 / 709
  27642. }
  27643. },
  27644. flying: {
  27645. height: math.unit(350, "feet"),
  27646. weight: math.unit(500, "tonnes"),
  27647. name: "Flying",
  27648. image: {
  27649. source: "./media/characters/kodran/flying.svg"
  27650. }
  27651. },
  27652. foot: {
  27653. height: math.unit(33, "feet"),
  27654. name: "Foot",
  27655. image: {
  27656. source: "./media/characters/kodran/foot.svg"
  27657. }
  27658. },
  27659. footFront: {
  27660. height: math.unit(19, "feet"),
  27661. name: "Foot (Front)",
  27662. image: {
  27663. source: "./media/characters/kodran/foot-front.svg",
  27664. extra: 261 / 261,
  27665. bottom: 91 / 352
  27666. }
  27667. },
  27668. headFront: {
  27669. height: math.unit(53, "feet"),
  27670. name: "Head (Front)",
  27671. image: {
  27672. source: "./media/characters/kodran/head-front.svg"
  27673. }
  27674. },
  27675. headSide: {
  27676. height: math.unit(65, "feet"),
  27677. name: "Head (Side)",
  27678. image: {
  27679. source: "./media/characters/kodran/head-side.svg"
  27680. }
  27681. },
  27682. throat: {
  27683. height: math.unit(79, "feet"),
  27684. name: "Throat",
  27685. image: {
  27686. source: "./media/characters/kodran/throat.svg"
  27687. }
  27688. },
  27689. },
  27690. [
  27691. {
  27692. name: "Large",
  27693. height: math.unit(106, "feet"),
  27694. default: true
  27695. },
  27696. ]
  27697. ))
  27698. characterMakers.push(() => makeCharacter(
  27699. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27700. {
  27701. side: {
  27702. height: math.unit(11, "feet"),
  27703. weight: math.unit(150, "lb"),
  27704. name: "Side",
  27705. image: {
  27706. source: "./media/characters/pyxaron/side.svg",
  27707. extra: 305 / 195,
  27708. bottom: 17 / 322
  27709. }
  27710. },
  27711. },
  27712. [
  27713. {
  27714. name: "Normal",
  27715. height: math.unit(11, "feet"),
  27716. default: true
  27717. },
  27718. ]
  27719. ))
  27720. characterMakers.push(() => makeCharacter(
  27721. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27722. {
  27723. front: {
  27724. height: math.unit(6, "feet"),
  27725. weight: math.unit(150, "lb"),
  27726. name: "Front",
  27727. image: {
  27728. source: "./media/characters/meep/front.svg",
  27729. extra: 88 / 80,
  27730. bottom: 6 / 94
  27731. }
  27732. },
  27733. },
  27734. [
  27735. {
  27736. name: "Fun Sized",
  27737. height: math.unit(2, "inches"),
  27738. default: true
  27739. },
  27740. {
  27741. name: "Friend Sized",
  27742. height: math.unit(8, "inches")
  27743. },
  27744. ]
  27745. ))
  27746. characterMakers.push(() => makeCharacter(
  27747. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27748. {
  27749. front: {
  27750. height: math.unit(15, "feet"),
  27751. weight: math.unit(2500, "lb"),
  27752. name: "Front",
  27753. image: {
  27754. source: "./media/characters/holly-rabbit/front.svg",
  27755. extra: 1433 / 1233,
  27756. bottom: 125 / 1558
  27757. }
  27758. },
  27759. dick: {
  27760. height: math.unit(4.6, "feet"),
  27761. name: "Dick",
  27762. image: {
  27763. source: "./media/characters/holly-rabbit/dick.svg"
  27764. }
  27765. },
  27766. },
  27767. [
  27768. {
  27769. name: "Normal",
  27770. height: math.unit(15, "feet"),
  27771. default: true
  27772. },
  27773. {
  27774. name: "Macro",
  27775. height: math.unit(250, "feet")
  27776. },
  27777. {
  27778. name: "Macro+",
  27779. height: math.unit(2500, "feet")
  27780. },
  27781. ]
  27782. ))
  27783. characterMakers.push(() => makeCharacter(
  27784. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27785. {
  27786. front: {
  27787. height: math.unit(3.02, "meters"),
  27788. weight: math.unit(500, "kg"),
  27789. name: "Front",
  27790. image: {
  27791. source: "./media/characters/drena/front.svg",
  27792. extra: 282 / 243,
  27793. bottom: 8 / 290
  27794. }
  27795. },
  27796. side: {
  27797. height: math.unit(3.02, "meters"),
  27798. weight: math.unit(500, "kg"),
  27799. name: "Side",
  27800. image: {
  27801. source: "./media/characters/drena/side.svg",
  27802. extra: 280 / 245,
  27803. bottom: 10 / 290
  27804. }
  27805. },
  27806. back: {
  27807. height: math.unit(3.02, "meters"),
  27808. weight: math.unit(500, "kg"),
  27809. name: "Back",
  27810. image: {
  27811. source: "./media/characters/drena/back.svg",
  27812. extra: 278 / 243,
  27813. bottom: 2 / 280
  27814. }
  27815. },
  27816. foot: {
  27817. height: math.unit(0.75, "meters"),
  27818. name: "Foot",
  27819. image: {
  27820. source: "./media/characters/drena/foot.svg"
  27821. }
  27822. },
  27823. maw: {
  27824. height: math.unit(0.82, "meters"),
  27825. name: "Maw",
  27826. image: {
  27827. source: "./media/characters/drena/maw.svg"
  27828. }
  27829. },
  27830. rump: {
  27831. height: math.unit(0.93, "meters"),
  27832. name: "Rump",
  27833. image: {
  27834. source: "./media/characters/drena/rump.svg"
  27835. }
  27836. },
  27837. },
  27838. [
  27839. {
  27840. name: "Normal",
  27841. height: math.unit(3.02, "meters"),
  27842. default: true
  27843. },
  27844. ]
  27845. ))
  27846. characterMakers.push(() => makeCharacter(
  27847. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27848. {
  27849. front: {
  27850. height: math.unit(6 + 4 / 12, "feet"),
  27851. weight: math.unit(250, "lb"),
  27852. name: "Front",
  27853. image: {
  27854. source: "./media/characters/remmyzilla/front.svg",
  27855. extra: 4033 / 3588,
  27856. bottom: 123 / 4156
  27857. }
  27858. },
  27859. back: {
  27860. height: math.unit(6 + 4 / 12, "feet"),
  27861. weight: math.unit(250, "lb"),
  27862. name: "Back",
  27863. image: {
  27864. source: "./media/characters/remmyzilla/back.svg",
  27865. extra: 2687 / 2555,
  27866. bottom: 48 / 2735
  27867. }
  27868. },
  27869. frontFancy: {
  27870. height: math.unit(6 + 4 / 12, "feet"),
  27871. weight: math.unit(250, "lb"),
  27872. name: "Front (Fancy)",
  27873. image: {
  27874. source: "./media/characters/remmyzilla/front-fancy.svg",
  27875. extra: 4119 / 3419,
  27876. bottom: 237 / 4356
  27877. }
  27878. },
  27879. paw: {
  27880. height: math.unit(1.73, "feet"),
  27881. name: "Paw",
  27882. image: {
  27883. source: "./media/characters/remmyzilla/paw.svg"
  27884. }
  27885. },
  27886. maw: {
  27887. height: math.unit(1.73, "feet"),
  27888. name: "Maw",
  27889. image: {
  27890. source: "./media/characters/remmyzilla/maw.svg"
  27891. }
  27892. },
  27893. },
  27894. [
  27895. {
  27896. name: "Normal",
  27897. height: math.unit(6 + 4 / 12, "feet")
  27898. },
  27899. {
  27900. name: "Minimacro",
  27901. height: math.unit(12 + 8 / 12, "feet")
  27902. },
  27903. {
  27904. name: "Normal",
  27905. height: math.unit(640, "feet"),
  27906. default: true
  27907. },
  27908. {
  27909. name: "Megamacro",
  27910. height: math.unit(6400, "feet")
  27911. },
  27912. {
  27913. name: "Gigamacro",
  27914. height: math.unit(64000, "miles")
  27915. },
  27916. ]
  27917. ))
  27918. characterMakers.push(() => makeCharacter(
  27919. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27920. {
  27921. front: {
  27922. height: math.unit(2.5, "meters"),
  27923. weight: math.unit(300, "lb"),
  27924. name: "Front",
  27925. image: {
  27926. source: "./media/characters/lawrence/front.svg",
  27927. extra: 357 / 335,
  27928. bottom: 30 / 387
  27929. }
  27930. },
  27931. back: {
  27932. height: math.unit(2.5, "meters"),
  27933. weight: math.unit(300, "lb"),
  27934. name: "Back",
  27935. image: {
  27936. source: "./media/characters/lawrence/back.svg",
  27937. extra: 357 / 338,
  27938. bottom: 16 / 373
  27939. }
  27940. },
  27941. head: {
  27942. height: math.unit(0.9, "meter"),
  27943. name: "Head",
  27944. image: {
  27945. source: "./media/characters/lawrence/head.svg"
  27946. }
  27947. },
  27948. maw: {
  27949. height: math.unit(0.7, "meter"),
  27950. name: "Maw",
  27951. image: {
  27952. source: "./media/characters/lawrence/maw.svg"
  27953. }
  27954. },
  27955. footBottom: {
  27956. height: math.unit(0.5, "meter"),
  27957. name: "Foot (Bottom)",
  27958. image: {
  27959. source: "./media/characters/lawrence/foot-bottom.svg"
  27960. }
  27961. },
  27962. footTop: {
  27963. height: math.unit(0.5, "meter"),
  27964. name: "Foot (Top)",
  27965. image: {
  27966. source: "./media/characters/lawrence/foot-top.svg"
  27967. }
  27968. },
  27969. },
  27970. [
  27971. {
  27972. name: "Normal",
  27973. height: math.unit(2.5, "meters"),
  27974. default: true
  27975. },
  27976. {
  27977. name: "Macro",
  27978. height: math.unit(95, "meters")
  27979. },
  27980. {
  27981. name: "Megamacro",
  27982. height: math.unit(150, "km")
  27983. },
  27984. ]
  27985. ))
  27986. characterMakers.push(() => makeCharacter(
  27987. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27988. {
  27989. front: {
  27990. height: math.unit(4.2, "meters"),
  27991. name: "Front",
  27992. image: {
  27993. source: "./media/characters/sydney/front.svg",
  27994. extra: 1323 / 1277,
  27995. bottom: 111 / 1434
  27996. }
  27997. },
  27998. },
  27999. [
  28000. {
  28001. name: "Normal",
  28002. height: math.unit(4.2, "meters"),
  28003. default: true
  28004. },
  28005. ]
  28006. ))
  28007. characterMakers.push(() => makeCharacter(
  28008. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28009. {
  28010. back: {
  28011. height: math.unit(201, "feet"),
  28012. name: "Back",
  28013. image: {
  28014. source: "./media/characters/jessica/back.svg",
  28015. extra: 273 / 259,
  28016. bottom: 7 / 280
  28017. }
  28018. },
  28019. },
  28020. [
  28021. {
  28022. name: "Normal",
  28023. height: math.unit(201, "feet"),
  28024. default: true
  28025. },
  28026. {
  28027. name: "Megamacro",
  28028. height: math.unit(8, "miles")
  28029. },
  28030. ]
  28031. ))
  28032. characterMakers.push(() => makeCharacter(
  28033. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28034. {
  28035. side: {
  28036. height: math.unit(320, "cm"),
  28037. name: "Side",
  28038. image: {
  28039. source: "./media/characters/victoria/side.svg",
  28040. extra: 778 / 346,
  28041. bottom: 56 / 834
  28042. }
  28043. },
  28044. maw: {
  28045. height: math.unit(5.9, "feet"),
  28046. name: "Maw",
  28047. image: {
  28048. source: "./media/characters/victoria/maw.svg"
  28049. }
  28050. },
  28051. },
  28052. [
  28053. {
  28054. name: "Normal",
  28055. height: math.unit(320, "cm"),
  28056. default: true
  28057. },
  28058. ]
  28059. ))
  28060. characterMakers.push(() => makeCharacter(
  28061. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28062. {
  28063. front: {
  28064. height: math.unit(5 + 6 / 12, "feet"),
  28065. name: "Front",
  28066. image: {
  28067. source: "./media/characters/cat/front.svg",
  28068. extra: 1374 / 1257,
  28069. bottom: 59 / 1433
  28070. }
  28071. },
  28072. back: {
  28073. height: math.unit(5 + 6 / 12, "feet"),
  28074. name: "Back",
  28075. image: {
  28076. source: "./media/characters/cat/back.svg",
  28077. extra: 1337 / 1226,
  28078. bottom: 34 / 1371
  28079. }
  28080. },
  28081. taur: {
  28082. height: math.unit(7, "feet"),
  28083. name: "Taur",
  28084. image: {
  28085. source: "./media/characters/cat/taur.svg",
  28086. extra: 1345 / 1231,
  28087. bottom: 66 / 1411
  28088. }
  28089. },
  28090. lucario: {
  28091. height: math.unit(4, "feet"),
  28092. name: "Lucario",
  28093. image: {
  28094. source: "./media/characters/cat/lucario.svg",
  28095. extra: 1470 / 1318,
  28096. bottom: 65 / 1535
  28097. }
  28098. },
  28099. megaLucario: {
  28100. height: math.unit(4, "feet"),
  28101. name: "Mega Lucario",
  28102. image: {
  28103. source: "./media/characters/cat/mega-lucario.svg",
  28104. extra: 1515 / 1319,
  28105. bottom: 63 / 1578
  28106. }
  28107. },
  28108. nickit: {
  28109. height: math.unit(2, "feet"),
  28110. name: "Nickit",
  28111. image: {
  28112. source: "./media/characters/cat/nickit.svg",
  28113. extra: 1980 / 1585,
  28114. bottom: 102 / 2082
  28115. }
  28116. },
  28117. lopunnyFront: {
  28118. height: math.unit(5, "feet"),
  28119. name: "Lopunny (Front)",
  28120. image: {
  28121. source: "./media/characters/cat/lopunny-front.svg",
  28122. extra: 1782 / 1469,
  28123. bottom: 38 / 1820
  28124. }
  28125. },
  28126. lopunnyBack: {
  28127. height: math.unit(5, "feet"),
  28128. name: "Lopunny (Back)",
  28129. image: {
  28130. source: "./media/characters/cat/lopunny-back.svg",
  28131. extra: 1660 / 1490,
  28132. bottom: 25 / 1685
  28133. }
  28134. },
  28135. },
  28136. [
  28137. {
  28138. name: "Really small",
  28139. height: math.unit(1, "nm")
  28140. },
  28141. {
  28142. name: "Micro",
  28143. height: math.unit(5, "inches")
  28144. },
  28145. {
  28146. name: "Normal",
  28147. height: math.unit(5 + 6 / 12, "feet"),
  28148. default: true
  28149. },
  28150. {
  28151. name: "Macro",
  28152. height: math.unit(50, "feet")
  28153. },
  28154. {
  28155. name: "Macro+",
  28156. height: math.unit(150, "feet")
  28157. },
  28158. {
  28159. name: "Megamacro",
  28160. height: math.unit(100, "miles")
  28161. },
  28162. ]
  28163. ))
  28164. characterMakers.push(() => makeCharacter(
  28165. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28166. {
  28167. front: {
  28168. height: math.unit(63.4, "meters"),
  28169. weight: math.unit(3.28349e+6, "kilograms"),
  28170. name: "Front",
  28171. image: {
  28172. source: "./media/characters/kirina-violet/front.svg",
  28173. extra: 2812 / 2725,
  28174. bottom: 0 / 2812
  28175. }
  28176. },
  28177. back: {
  28178. height: math.unit(63.4, "meters"),
  28179. weight: math.unit(3.28349e+6, "kilograms"),
  28180. name: "Back",
  28181. image: {
  28182. source: "./media/characters/kirina-violet/back.svg",
  28183. extra: 2812 / 2725,
  28184. bottom: 0 / 2812
  28185. }
  28186. },
  28187. mouth: {
  28188. height: math.unit(4.35, "meters"),
  28189. name: "Mouth",
  28190. image: {
  28191. source: "./media/characters/kirina-violet/mouth.svg"
  28192. }
  28193. },
  28194. paw: {
  28195. height: math.unit(5.6, "meters"),
  28196. name: "Paw",
  28197. image: {
  28198. source: "./media/characters/kirina-violet/paw.svg"
  28199. }
  28200. },
  28201. tail: {
  28202. height: math.unit(18, "meters"),
  28203. name: "Tail",
  28204. image: {
  28205. source: "./media/characters/kirina-violet/tail.svg"
  28206. }
  28207. },
  28208. },
  28209. [
  28210. {
  28211. name: "Macro",
  28212. height: math.unit(63.4, "meters"),
  28213. default: true
  28214. },
  28215. ]
  28216. ))
  28217. characterMakers.push(() => makeCharacter(
  28218. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28219. {
  28220. front: {
  28221. height: math.unit(60, "feet"),
  28222. name: "Front",
  28223. image: {
  28224. source: "./media/characters/cat-gigachu/front.svg",
  28225. extra: 1024 / 780,
  28226. bottom: 23 / 1047
  28227. }
  28228. },
  28229. back: {
  28230. height: math.unit(60, "feet"),
  28231. name: "Back",
  28232. image: {
  28233. source: "./media/characters/cat-gigachu/back.svg",
  28234. extra: 1024 / 780,
  28235. bottom: 23 / 1047
  28236. }
  28237. },
  28238. },
  28239. [
  28240. {
  28241. name: "Dynamax",
  28242. height: math.unit(60, "feet"),
  28243. default: true
  28244. },
  28245. ]
  28246. ))
  28247. characterMakers.push(() => makeCharacter(
  28248. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28249. {
  28250. front: {
  28251. height: math.unit(6, "feet"),
  28252. weight: math.unit(150, "lb"),
  28253. name: "Front",
  28254. image: {
  28255. source: "./media/characters/sfaiyan/front.svg",
  28256. extra: 999 / 978,
  28257. bottom: 5 / 1004
  28258. }
  28259. },
  28260. },
  28261. [
  28262. {
  28263. name: "Normal",
  28264. height: math.unit(1.82, "meters")
  28265. },
  28266. {
  28267. name: "Giant",
  28268. height: math.unit(2.27, "km"),
  28269. default: true
  28270. },
  28271. ]
  28272. ))
  28273. characterMakers.push(() => makeCharacter(
  28274. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28275. {
  28276. front: {
  28277. height: math.unit(179, "cm"),
  28278. weight: math.unit(100, "kg"),
  28279. name: "Front",
  28280. image: {
  28281. source: "./media/characters/raunehkeli/front.svg",
  28282. extra: 1934 / 1926,
  28283. bottom: 0 / 1934
  28284. }
  28285. },
  28286. },
  28287. [
  28288. {
  28289. name: "Normal",
  28290. height: math.unit(179, "cm")
  28291. },
  28292. {
  28293. name: "Maximum",
  28294. height: math.unit(575, "meters"),
  28295. default: true
  28296. },
  28297. ]
  28298. ))
  28299. characterMakers.push(() => makeCharacter(
  28300. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28301. {
  28302. front: {
  28303. height: math.unit(6, "feet"),
  28304. weight: math.unit(150, "lb"),
  28305. name: "Front",
  28306. image: {
  28307. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28308. extra: 2625 / 2518,
  28309. bottom: 60 / 2685
  28310. }
  28311. },
  28312. },
  28313. [
  28314. {
  28315. name: "Normal",
  28316. height: math.unit(6 + 2 / 12, "feet")
  28317. },
  28318. {
  28319. name: "Macro",
  28320. height: math.unit(1180, "feet"),
  28321. default: true
  28322. },
  28323. ]
  28324. ))
  28325. characterMakers.push(() => makeCharacter(
  28326. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28327. {
  28328. front: {
  28329. height: math.unit(5 + 6 / 12, "feet"),
  28330. weight: math.unit(108, "lb"),
  28331. name: "Front",
  28332. image: {
  28333. source: "./media/characters/lilith-zott/front.svg",
  28334. extra: 2510 / 2238,
  28335. bottom: 100 / 2610
  28336. }
  28337. },
  28338. frontDressed: {
  28339. height: math.unit(5 + 6 / 12, "feet"),
  28340. weight: math.unit(108, "lb"),
  28341. name: "Front (Dressed)",
  28342. image: {
  28343. source: "./media/characters/lilith-zott/front-dressed.svg",
  28344. extra: 2510 / 2238,
  28345. bottom: 100 / 2610
  28346. }
  28347. },
  28348. },
  28349. [
  28350. {
  28351. name: "Normal",
  28352. height: math.unit(5 + 6 / 12, "feet")
  28353. },
  28354. {
  28355. name: "Macro",
  28356. height: math.unit(1030, "feet"),
  28357. default: true
  28358. },
  28359. ]
  28360. ))
  28361. characterMakers.push(() => makeCharacter(
  28362. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28363. {
  28364. front: {
  28365. height: math.unit(6, "feet"),
  28366. weight: math.unit(150, "lb"),
  28367. name: "Front",
  28368. image: {
  28369. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28370. extra: 2567 / 2435,
  28371. bottom: 39 / 2606
  28372. }
  28373. },
  28374. frontSuper: {
  28375. height: math.unit(6, "feet"),
  28376. name: "Front (Super)",
  28377. image: {
  28378. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28379. extra: 2567 / 2435,
  28380. bottom: 39 / 2606
  28381. }
  28382. },
  28383. },
  28384. [
  28385. {
  28386. name: "Normal",
  28387. height: math.unit(5 + 10 / 12, "feet")
  28388. },
  28389. {
  28390. name: "Macro",
  28391. height: math.unit(1100, "feet"),
  28392. default: true
  28393. },
  28394. ]
  28395. ))
  28396. characterMakers.push(() => makeCharacter(
  28397. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28398. {
  28399. front: {
  28400. height: math.unit(100, "miles"),
  28401. name: "Front",
  28402. image: {
  28403. source: "./media/characters/sona/front.svg",
  28404. extra: 2433 / 2201,
  28405. bottom: 53 / 2486
  28406. }
  28407. },
  28408. foot: {
  28409. height: math.unit(16.1, "miles"),
  28410. name: "Foot",
  28411. image: {
  28412. source: "./media/characters/sona/foot.svg"
  28413. }
  28414. },
  28415. },
  28416. [
  28417. {
  28418. name: "Macro",
  28419. height: math.unit(100, "miles"),
  28420. default: true
  28421. },
  28422. ]
  28423. ))
  28424. characterMakers.push(() => makeCharacter(
  28425. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28426. {
  28427. front: {
  28428. height: math.unit(6, "feet"),
  28429. weight: math.unit(150, "lb"),
  28430. name: "Front",
  28431. image: {
  28432. source: "./media/characters/bailey/front.svg",
  28433. extra: 1778 / 1724,
  28434. bottom: 30 / 1808
  28435. }
  28436. },
  28437. },
  28438. [
  28439. {
  28440. name: "Micro",
  28441. height: math.unit(4, "inches")
  28442. },
  28443. {
  28444. name: "Normal",
  28445. height: math.unit(5 + 5 / 12, "feet"),
  28446. default: true
  28447. },
  28448. {
  28449. name: "Macro",
  28450. height: math.unit(250, "feet")
  28451. },
  28452. {
  28453. name: "Megamacro",
  28454. height: math.unit(100, "miles")
  28455. },
  28456. ]
  28457. ))
  28458. characterMakers.push(() => makeCharacter(
  28459. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28460. {
  28461. front: {
  28462. height: math.unit(5 + 2 / 12, "feet"),
  28463. weight: math.unit(120, "lb"),
  28464. name: "Front",
  28465. image: {
  28466. source: "./media/characters/snaps/front.svg",
  28467. extra: 2370 / 2177,
  28468. bottom: 48 / 2418
  28469. }
  28470. },
  28471. back: {
  28472. height: math.unit(5 + 2 / 12, "feet"),
  28473. weight: math.unit(120, "lb"),
  28474. name: "Back",
  28475. image: {
  28476. source: "./media/characters/snaps/back.svg",
  28477. extra: 2408 / 2258,
  28478. bottom: 15 / 2423
  28479. }
  28480. },
  28481. },
  28482. [
  28483. {
  28484. name: "Micro",
  28485. height: math.unit(9, "inches")
  28486. },
  28487. {
  28488. name: "Normal",
  28489. height: math.unit(5 + 2 / 12, "feet"),
  28490. default: true
  28491. },
  28492. {
  28493. name: "Mini Macro",
  28494. height: math.unit(10, "feet")
  28495. },
  28496. ]
  28497. ))
  28498. characterMakers.push(() => makeCharacter(
  28499. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28500. {
  28501. front: {
  28502. height: math.unit(1.8, "meters"),
  28503. weight: math.unit(85, "kg"),
  28504. name: "Front",
  28505. image: {
  28506. source: "./media/characters/azteck/front.svg",
  28507. extra: 2815 / 2625,
  28508. bottom: 89 / 2904
  28509. }
  28510. },
  28511. back: {
  28512. height: math.unit(1.8, "meters"),
  28513. weight: math.unit(85, "kg"),
  28514. name: "Back",
  28515. image: {
  28516. source: "./media/characters/azteck/back.svg",
  28517. extra: 2856 / 2648,
  28518. bottom: 85 / 2941
  28519. }
  28520. },
  28521. frontDressed: {
  28522. height: math.unit(1.8, "meters"),
  28523. weight: math.unit(85, "kg"),
  28524. name: "Front (Dressed)",
  28525. image: {
  28526. source: "./media/characters/azteck/front-dressed.svg",
  28527. extra: 2147 / 2003,
  28528. bottom: 68 / 2215
  28529. }
  28530. },
  28531. head: {
  28532. height: math.unit(0.47, "meters"),
  28533. weight: math.unit(85, "kg"),
  28534. name: "Head",
  28535. image: {
  28536. source: "./media/characters/azteck/head.svg"
  28537. }
  28538. },
  28539. },
  28540. [
  28541. {
  28542. name: "Bite sized",
  28543. height: math.unit(16, "cm")
  28544. },
  28545. {
  28546. name: "Normal",
  28547. height: math.unit(1.8, "meters"),
  28548. default: true
  28549. },
  28550. ]
  28551. ))
  28552. characterMakers.push(() => makeCharacter(
  28553. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28554. {
  28555. front: {
  28556. height: math.unit(6, "feet"),
  28557. weight: math.unit(150, "lb"),
  28558. name: "Front",
  28559. image: {
  28560. source: "./media/characters/pidge/front.svg",
  28561. extra: 620 / 588,
  28562. bottom: 9 / 629
  28563. }
  28564. },
  28565. back: {
  28566. height: math.unit(6, "feet"),
  28567. weight: math.unit(150, "lb"),
  28568. name: "Back",
  28569. image: {
  28570. source: "./media/characters/pidge/back.svg",
  28571. extra: 620 / 588,
  28572. bottom: 9 / 629
  28573. }
  28574. },
  28575. },
  28576. [
  28577. {
  28578. name: "Macro",
  28579. height: math.unit(1, "mile"),
  28580. default: true
  28581. },
  28582. ]
  28583. ))
  28584. characterMakers.push(() => makeCharacter(
  28585. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28586. {
  28587. front: {
  28588. height: math.unit(6, "feet"),
  28589. weight: math.unit(150, "lb"),
  28590. name: "Front",
  28591. image: {
  28592. source: "./media/characters/en/front.svg",
  28593. extra: 1697 / 1563,
  28594. bottom: 103 / 1800
  28595. }
  28596. },
  28597. back: {
  28598. height: math.unit(6, "feet"),
  28599. weight: math.unit(150, "lb"),
  28600. name: "Back",
  28601. image: {
  28602. source: "./media/characters/en/back.svg",
  28603. extra: 1700 / 1570,
  28604. bottom: 51 / 1751
  28605. }
  28606. },
  28607. frontDressed: {
  28608. height: math.unit(6, "feet"),
  28609. weight: math.unit(150, "lb"),
  28610. name: "Front (Dressed)",
  28611. image: {
  28612. source: "./media/characters/en/front-dressed.svg",
  28613. extra: 1697 / 1563,
  28614. bottom: 103 / 1800
  28615. }
  28616. },
  28617. backDressed: {
  28618. height: math.unit(6, "feet"),
  28619. weight: math.unit(150, "lb"),
  28620. name: "Back (Dressed)",
  28621. image: {
  28622. source: "./media/characters/en/back-dressed.svg",
  28623. extra: 1700 / 1570,
  28624. bottom: 51 / 1751
  28625. }
  28626. },
  28627. },
  28628. [
  28629. {
  28630. name: "Macro",
  28631. height: math.unit(210, "feet"),
  28632. default: true
  28633. },
  28634. ]
  28635. ))
  28636. characterMakers.push(() => makeCharacter(
  28637. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28638. {
  28639. front: {
  28640. height: math.unit(6, "feet"),
  28641. weight: math.unit(150, "lb"),
  28642. name: "Front",
  28643. image: {
  28644. source: "./media/characters/haze-orris/front.svg",
  28645. extra: 3975 / 3525,
  28646. bottom: 137 / 4112
  28647. }
  28648. },
  28649. },
  28650. [
  28651. {
  28652. name: "Micro",
  28653. height: math.unit(150, "mm"),
  28654. default: true
  28655. },
  28656. ]
  28657. ))
  28658. characterMakers.push(() => makeCharacter(
  28659. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28660. {
  28661. front: {
  28662. height: math.unit(6, "feet"),
  28663. weight: math.unit(150, "lb"),
  28664. name: "Front",
  28665. image: {
  28666. source: "./media/characters/casselene-yaro/front.svg",
  28667. extra: 4721 / 4541,
  28668. bottom: 82 / 4803
  28669. }
  28670. },
  28671. back: {
  28672. height: math.unit(6, "feet"),
  28673. weight: math.unit(150, "lb"),
  28674. name: "Back",
  28675. image: {
  28676. source: "./media/characters/casselene-yaro/back.svg",
  28677. extra: 4569 / 4377,
  28678. bottom: 69 / 4638
  28679. }
  28680. },
  28681. frontDressed: {
  28682. height: math.unit(6, "feet"),
  28683. weight: math.unit(150, "lb"),
  28684. name: "Front-dressed",
  28685. image: {
  28686. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28687. extra: 4721 / 4541,
  28688. bottom: 82 / 4803
  28689. }
  28690. },
  28691. },
  28692. [
  28693. {
  28694. name: "Macro",
  28695. height: math.unit(190, "feet"),
  28696. default: true
  28697. },
  28698. ]
  28699. ))
  28700. characterMakers.push(() => makeCharacter(
  28701. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28702. {
  28703. front: {
  28704. height: math.unit(6, "feet"),
  28705. weight: math.unit(150, "lb"),
  28706. name: "Front",
  28707. image: {
  28708. source: "./media/characters/myra-rue-delore/front.svg",
  28709. extra: 1340 / 1308,
  28710. bottom: 67 / 1407
  28711. }
  28712. },
  28713. back: {
  28714. height: math.unit(6, "feet"),
  28715. weight: math.unit(150, "lb"),
  28716. name: "Back",
  28717. image: {
  28718. source: "./media/characters/myra-rue-delore/back.svg",
  28719. extra: 1341 / 1310,
  28720. bottom: 40 / 1381
  28721. }
  28722. },
  28723. frontDressed: {
  28724. height: math.unit(6, "feet"),
  28725. weight: math.unit(150, "lb"),
  28726. name: "Front (Dressed)",
  28727. image: {
  28728. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28729. extra: 1340 / 1308,
  28730. bottom: 67 / 1407
  28731. }
  28732. },
  28733. },
  28734. [
  28735. {
  28736. name: "Macro",
  28737. height: math.unit(150, "feet"),
  28738. default: true
  28739. },
  28740. ]
  28741. ))
  28742. characterMakers.push(() => makeCharacter(
  28743. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28744. {
  28745. front: {
  28746. height: math.unit(10, "feet"),
  28747. weight: math.unit(15015, "lb"),
  28748. name: "Front",
  28749. image: {
  28750. source: "./media/characters/fem!plat/front.svg",
  28751. extra: 2799 / 2604,
  28752. bottom: 149 / 2948
  28753. }
  28754. },
  28755. },
  28756. [
  28757. {
  28758. name: "Normal",
  28759. height: math.unit(10, "feet"),
  28760. default: true
  28761. },
  28762. {
  28763. name: "Macro",
  28764. height: math.unit(100, "feet")
  28765. },
  28766. {
  28767. name: "Megamacro",
  28768. height: math.unit(1000, "feet")
  28769. },
  28770. ]
  28771. ))
  28772. characterMakers.push(() => makeCharacter(
  28773. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28774. {
  28775. front: {
  28776. height: math.unit(15 + 5 / 12, "feet"),
  28777. weight: math.unit(4600, "lb"),
  28778. name: "Front",
  28779. image: {
  28780. source: "./media/characters/neapolitan-ananassa/front.svg",
  28781. extra: 2903 / 2736,
  28782. bottom: 0 / 2903
  28783. }
  28784. },
  28785. side: {
  28786. height: math.unit(15 + 5 / 12, "feet"),
  28787. weight: math.unit(4600, "lb"),
  28788. name: "Side",
  28789. image: {
  28790. source: "./media/characters/neapolitan-ananassa/side.svg",
  28791. extra: 2925 / 2719,
  28792. bottom: 0 / 2925
  28793. }
  28794. },
  28795. back: {
  28796. height: math.unit(15 + 5 / 12, "feet"),
  28797. weight: math.unit(4600, "lb"),
  28798. name: "Back",
  28799. image: {
  28800. source: "./media/characters/neapolitan-ananassa/back.svg",
  28801. extra: 2903 / 2736,
  28802. bottom: 0 / 2903
  28803. }
  28804. },
  28805. },
  28806. [
  28807. {
  28808. name: "Normal",
  28809. height: math.unit(15 + 5 / 12, "feet"),
  28810. default: true
  28811. },
  28812. {
  28813. name: "Post-Millenium",
  28814. height: math.unit(35 + 5 / 12, "feet")
  28815. },
  28816. {
  28817. name: "Post-Era",
  28818. height: math.unit(450 + 5 / 12, "feet")
  28819. },
  28820. ]
  28821. ))
  28822. characterMakers.push(() => makeCharacter(
  28823. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28824. {
  28825. front: {
  28826. height: math.unit(300, "meters"),
  28827. weight: math.unit(125000, "tonnes"),
  28828. name: "Front",
  28829. image: {
  28830. source: "./media/characters/pazuzu/front.svg",
  28831. extra: 877 / 794,
  28832. bottom: 47 / 924
  28833. }
  28834. },
  28835. },
  28836. [
  28837. {
  28838. name: "Macro",
  28839. height: math.unit(300, "meters"),
  28840. default: true
  28841. },
  28842. ]
  28843. ))
  28844. characterMakers.push(() => makeCharacter(
  28845. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28846. {
  28847. side: {
  28848. height: math.unit(10 + 7 / 12, "feet"),
  28849. weight: math.unit(2.5, "tons"),
  28850. name: "Side",
  28851. image: {
  28852. source: "./media/characters/aasha/side.svg",
  28853. extra: 1345 / 1245,
  28854. bottom: 111 / 1456
  28855. }
  28856. },
  28857. back: {
  28858. height: math.unit(10 + 7 / 12, "feet"),
  28859. weight: math.unit(2.5, "tons"),
  28860. name: "Back",
  28861. image: {
  28862. source: "./media/characters/aasha/back.svg",
  28863. extra: 1133 / 1057,
  28864. bottom: 257 / 1390
  28865. }
  28866. },
  28867. },
  28868. [
  28869. {
  28870. name: "Normal",
  28871. height: math.unit(10 + 7 / 12, "feet"),
  28872. default: true
  28873. },
  28874. ]
  28875. ))
  28876. characterMakers.push(() => makeCharacter(
  28877. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28878. {
  28879. front: {
  28880. height: math.unit(6 + 3 / 12, "feet"),
  28881. name: "Front",
  28882. image: {
  28883. source: "./media/characters/nevan/front.svg",
  28884. extra: 704 / 704,
  28885. bottom: 28 / 732
  28886. }
  28887. },
  28888. back: {
  28889. height: math.unit(6 + 3 / 12, "feet"),
  28890. name: "Back",
  28891. image: {
  28892. source: "./media/characters/nevan/back.svg",
  28893. extra: 714 / 714,
  28894. bottom: 21 / 735
  28895. }
  28896. },
  28897. frontFlaccid: {
  28898. height: math.unit(6 + 3 / 12, "feet"),
  28899. name: "Front (Flaccid)",
  28900. image: {
  28901. source: "./media/characters/nevan/front-flaccid.svg",
  28902. extra: 704 / 704,
  28903. bottom: 28 / 732
  28904. }
  28905. },
  28906. frontErect: {
  28907. height: math.unit(6 + 3 / 12, "feet"),
  28908. name: "Front (Erect)",
  28909. image: {
  28910. source: "./media/characters/nevan/front-erect.svg",
  28911. extra: 704 / 704,
  28912. bottom: 28 / 732
  28913. }
  28914. },
  28915. backFlaccid: {
  28916. height: math.unit(6 + 3 / 12, "feet"),
  28917. name: "Back (Flaccid)",
  28918. image: {
  28919. source: "./media/characters/nevan/back-flaccid.svg",
  28920. extra: 714 / 714,
  28921. bottom: 21 / 735
  28922. }
  28923. },
  28924. },
  28925. [
  28926. {
  28927. name: "Normal",
  28928. height: math.unit(6 + 3 / 12, "feet"),
  28929. default: true
  28930. },
  28931. ]
  28932. ))
  28933. characterMakers.push(() => makeCharacter(
  28934. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28935. {
  28936. front: {
  28937. height: math.unit(4, "feet"),
  28938. name: "Front",
  28939. image: {
  28940. source: "./media/characters/arhan/front.svg",
  28941. extra: 3368 / 3133,
  28942. bottom: 0 / 3368
  28943. }
  28944. },
  28945. side: {
  28946. height: math.unit(4, "feet"),
  28947. name: "Side",
  28948. image: {
  28949. source: "./media/characters/arhan/side.svg",
  28950. extra: 3347 / 3105,
  28951. bottom: 0 / 3347
  28952. }
  28953. },
  28954. tongue: {
  28955. height: math.unit(1.42, "feet"),
  28956. name: "Tongue",
  28957. image: {
  28958. source: "./media/characters/arhan/tongue.svg"
  28959. }
  28960. },
  28961. head: {
  28962. height: math.unit(0.85, "feet"),
  28963. name: "Head",
  28964. image: {
  28965. source: "./media/characters/arhan/head.svg"
  28966. }
  28967. },
  28968. },
  28969. [
  28970. {
  28971. name: "Normal",
  28972. height: math.unit(4, "feet"),
  28973. default: true
  28974. },
  28975. ]
  28976. ))
  28977. characterMakers.push(() => makeCharacter(
  28978. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28979. {
  28980. front: {
  28981. height: math.unit(5 + 7.5 / 12, "feet"),
  28982. weight: math.unit(120, "lb"),
  28983. name: "Front",
  28984. image: {
  28985. source: "./media/characters/digi-duncan/front.svg",
  28986. extra: 330 / 326,
  28987. bottom: 16 / 346
  28988. }
  28989. },
  28990. side: {
  28991. height: math.unit(5 + 7.5 / 12, "feet"),
  28992. weight: math.unit(120, "lb"),
  28993. name: "Side",
  28994. image: {
  28995. source: "./media/characters/digi-duncan/side.svg",
  28996. extra: 341 / 337,
  28997. bottom: 1 / 342
  28998. }
  28999. },
  29000. back: {
  29001. height: math.unit(5 + 7.5 / 12, "feet"),
  29002. weight: math.unit(120, "lb"),
  29003. name: "Back",
  29004. image: {
  29005. source: "./media/characters/digi-duncan/back.svg",
  29006. extra: 330 / 326,
  29007. bottom: 12 / 342
  29008. }
  29009. },
  29010. },
  29011. [
  29012. {
  29013. name: "Speck",
  29014. height: math.unit(0.25, "mm")
  29015. },
  29016. {
  29017. name: "Micro",
  29018. height: math.unit(5, "mm")
  29019. },
  29020. {
  29021. name: "Tiny",
  29022. height: math.unit(0.5, "inches"),
  29023. default: true
  29024. },
  29025. {
  29026. name: "Human",
  29027. height: math.unit(5 + 7.5 / 12, "feet")
  29028. },
  29029. {
  29030. name: "Minigiant",
  29031. height: math.unit(8 + 5.25, "feet")
  29032. },
  29033. {
  29034. name: "Giant",
  29035. height: math.unit(2000, "feet")
  29036. },
  29037. {
  29038. name: "Mega",
  29039. height: math.unit(371.1, "miles")
  29040. },
  29041. ]
  29042. ))
  29043. characterMakers.push(() => makeCharacter(
  29044. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29045. {
  29046. front: {
  29047. height: math.unit(2, "meters"),
  29048. weight: math.unit(350, "kg"),
  29049. name: "Front",
  29050. image: {
  29051. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29052. extra: 898 / 838,
  29053. bottom: 9 / 907
  29054. }
  29055. },
  29056. },
  29057. [
  29058. {
  29059. name: "Micro",
  29060. height: math.unit(8, "meters")
  29061. },
  29062. {
  29063. name: "Normal",
  29064. height: math.unit(50, "meters"),
  29065. default: true
  29066. },
  29067. {
  29068. name: "Macro",
  29069. height: math.unit(500, "meters")
  29070. },
  29071. ]
  29072. ))
  29073. characterMakers.push(() => makeCharacter(
  29074. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29075. {
  29076. front: {
  29077. height: math.unit(6 + 6 / 12, "feet"),
  29078. name: "Front",
  29079. image: {
  29080. source: "./media/characters/khardesh/front.svg",
  29081. extra: 888 / 797,
  29082. bottom: 25 / 913
  29083. }
  29084. },
  29085. },
  29086. [
  29087. {
  29088. name: "Normal",
  29089. height: math.unit(6 + 6 / 12, "feet"),
  29090. default: true
  29091. },
  29092. {
  29093. name: "Normal+",
  29094. height: math.unit(4, "meters")
  29095. },
  29096. {
  29097. name: "Macro",
  29098. height: math.unit(50, "meters")
  29099. },
  29100. {
  29101. name: "Macro+",
  29102. height: math.unit(100, "meters")
  29103. },
  29104. {
  29105. name: "Megamacro",
  29106. height: math.unit(20, "km")
  29107. },
  29108. ]
  29109. ))
  29110. characterMakers.push(() => makeCharacter(
  29111. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29112. {
  29113. front: {
  29114. height: math.unit(6, "feet"),
  29115. weight: math.unit(150, "lb"),
  29116. name: "Front",
  29117. image: {
  29118. source: "./media/characters/kosho/front.svg",
  29119. extra: 1847 / 1847,
  29120. bottom: 86 / 1933
  29121. }
  29122. },
  29123. },
  29124. [
  29125. {
  29126. name: "Second-stage micro",
  29127. height: math.unit(0.5, "inches")
  29128. },
  29129. {
  29130. name: "First-stage micro",
  29131. height: math.unit(6, "inches")
  29132. },
  29133. {
  29134. name: "Normal",
  29135. height: math.unit(6, "feet"),
  29136. default: true
  29137. },
  29138. {
  29139. name: "First-stage macro",
  29140. height: math.unit(72, "feet")
  29141. },
  29142. {
  29143. name: "Second-stage macro",
  29144. height: math.unit(864, "feet")
  29145. },
  29146. ]
  29147. ))
  29148. characterMakers.push(() => makeCharacter(
  29149. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29150. {
  29151. normal: {
  29152. height: math.unit(4 + 6 / 12, "feet"),
  29153. name: "Normal",
  29154. image: {
  29155. source: "./media/characters/hydra/normal.svg",
  29156. extra: 2833 / 2634,
  29157. bottom: 68 / 2901
  29158. }
  29159. },
  29160. smol: {
  29161. height: math.unit(0.705, "inches"),
  29162. name: "Smol",
  29163. image: {
  29164. source: "./media/characters/hydra/smol.svg",
  29165. extra: 2715 / 2540,
  29166. bottom: 0 / 2715
  29167. }
  29168. },
  29169. },
  29170. [
  29171. {
  29172. name: "Normal",
  29173. height: math.unit(4 + 6 / 12, "feet"),
  29174. default: true
  29175. }
  29176. ]
  29177. ))
  29178. characterMakers.push(() => makeCharacter(
  29179. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29180. {
  29181. front: {
  29182. height: math.unit(0.6, "cm"),
  29183. name: "Front",
  29184. image: {
  29185. source: "./media/characters/daz/front.svg",
  29186. extra: 1682 / 1164,
  29187. bottom: 42 / 1724
  29188. }
  29189. },
  29190. },
  29191. [
  29192. {
  29193. name: "Normal",
  29194. height: math.unit(0.6, "cm"),
  29195. default: true
  29196. },
  29197. ]
  29198. ))
  29199. characterMakers.push(() => makeCharacter(
  29200. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29201. {
  29202. front: {
  29203. height: math.unit(6, "feet"),
  29204. weight: math.unit(235, "lb"),
  29205. name: "Front",
  29206. image: {
  29207. source: "./media/characters/theo-pangolin/front.svg",
  29208. extra: 1996 / 1969,
  29209. bottom: 115 / 2111
  29210. }
  29211. },
  29212. back: {
  29213. height: math.unit(6, "feet"),
  29214. weight: math.unit(235, "lb"),
  29215. name: "Back",
  29216. image: {
  29217. source: "./media/characters/theo-pangolin/back.svg",
  29218. extra: 1979 / 1979,
  29219. bottom: 40 / 2019
  29220. }
  29221. },
  29222. feral: {
  29223. height: math.unit(2, "feet"),
  29224. weight: math.unit(30, "lb"),
  29225. name: "Feral",
  29226. image: {
  29227. source: "./media/characters/theo-pangolin/feral.svg",
  29228. extra: 803 / 791,
  29229. bottom: 181 / 984
  29230. }
  29231. },
  29232. footFive: {
  29233. height: math.unit(1.43, "feet"),
  29234. name: "Foot (Five Toes)",
  29235. image: {
  29236. source: "./media/characters/theo-pangolin/foot-five.svg"
  29237. }
  29238. },
  29239. footFour: {
  29240. height: math.unit(1.43, "feet"),
  29241. name: "Foot (Four Toes)",
  29242. image: {
  29243. source: "./media/characters/theo-pangolin/foot-four.svg"
  29244. }
  29245. },
  29246. handFour: {
  29247. height: math.unit(0.81, "feet"),
  29248. name: "Hand (Four Fingers)",
  29249. image: {
  29250. source: "./media/characters/theo-pangolin/hand-four.svg"
  29251. }
  29252. },
  29253. handThree: {
  29254. height: math.unit(0.81, "feet"),
  29255. name: "Hand (Three Fingers)",
  29256. image: {
  29257. source: "./media/characters/theo-pangolin/hand-three.svg"
  29258. }
  29259. },
  29260. headFront: {
  29261. height: math.unit(1.37, "feet"),
  29262. name: "Head (Front)",
  29263. image: {
  29264. source: "./media/characters/theo-pangolin/head-front.svg"
  29265. }
  29266. },
  29267. headSide: {
  29268. height: math.unit(1.43, "feet"),
  29269. name: "Head (Side)",
  29270. image: {
  29271. source: "./media/characters/theo-pangolin/head-side.svg"
  29272. }
  29273. },
  29274. tongue: {
  29275. height: math.unit(2.29, "feet"),
  29276. name: "Tongue",
  29277. image: {
  29278. source: "./media/characters/theo-pangolin/tongue.svg"
  29279. }
  29280. },
  29281. },
  29282. [
  29283. {
  29284. name: "Normal",
  29285. height: math.unit(6, "feet")
  29286. },
  29287. {
  29288. name: "Macro",
  29289. height: math.unit(400, "feet"),
  29290. default: true
  29291. },
  29292. ]
  29293. ))
  29294. characterMakers.push(() => makeCharacter(
  29295. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29296. {
  29297. front: {
  29298. height: math.unit(6, "inches"),
  29299. weight: math.unit(0.036, "kg"),
  29300. name: "Front",
  29301. image: {
  29302. source: "./media/characters/renée/front.svg",
  29303. extra: 900 / 886,
  29304. bottom: 8 / 908
  29305. }
  29306. },
  29307. },
  29308. [
  29309. {
  29310. name: "Nano",
  29311. height: math.unit(1, "nm")
  29312. },
  29313. {
  29314. name: "Micro",
  29315. height: math.unit(1, "mm")
  29316. },
  29317. {
  29318. name: "Normal",
  29319. height: math.unit(6, "inches")
  29320. },
  29321. {
  29322. name: "Macro",
  29323. height: math.unit(2000, "feet"),
  29324. default: true
  29325. },
  29326. {
  29327. name: "Megamacro",
  29328. height: math.unit(2, "km")
  29329. },
  29330. {
  29331. name: "Gigamacro",
  29332. height: math.unit(2000, "km")
  29333. },
  29334. {
  29335. name: "Teramacro",
  29336. height: math.unit(250000, "km")
  29337. },
  29338. ]
  29339. ))
  29340. characterMakers.push(() => makeCharacter(
  29341. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29342. {
  29343. front: {
  29344. height: math.unit(4, "meters"),
  29345. weight: math.unit(150, "kg"),
  29346. name: "Front",
  29347. image: {
  29348. source: "./media/characters/caledvwlch/front.svg",
  29349. extra: 1760 / 1551,
  29350. bottom: 28 / 1788
  29351. }
  29352. },
  29353. side: {
  29354. height: math.unit(4, "meters"),
  29355. weight: math.unit(150, "kg"),
  29356. name: "Side",
  29357. image: {
  29358. source: "./media/characters/caledvwlch/side.svg",
  29359. extra: 1605 / 1536,
  29360. bottom: 31 / 1636
  29361. }
  29362. },
  29363. back: {
  29364. height: math.unit(4, "meters"),
  29365. weight: math.unit(150, "kg"),
  29366. name: "Back",
  29367. image: {
  29368. source: "./media/characters/caledvwlch/back.svg",
  29369. extra: 1635 / 1565,
  29370. bottom: 27 / 1662
  29371. }
  29372. },
  29373. },
  29374. [
  29375. {
  29376. name: "\"Incognito\"",
  29377. height: math.unit(4, "meters")
  29378. },
  29379. {
  29380. name: "Small rampage",
  29381. height: math.unit(600, "meters")
  29382. },
  29383. {
  29384. name: "Mega",
  29385. height: math.unit(30, "km")
  29386. },
  29387. {
  29388. name: "Home-size",
  29389. height: math.unit(50, "km"),
  29390. default: true
  29391. },
  29392. {
  29393. name: "Giga",
  29394. height: math.unit(300, "km")
  29395. },
  29396. {
  29397. name: "Lounging",
  29398. height: math.unit(11000, "km")
  29399. },
  29400. {
  29401. name: "Planet snacking",
  29402. height: math.unit(2000000, "km")
  29403. },
  29404. ]
  29405. ))
  29406. characterMakers.push(() => makeCharacter(
  29407. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29408. {
  29409. front: {
  29410. height: math.unit(6, "feet"),
  29411. weight: math.unit(215, "lb"),
  29412. name: "Front",
  29413. image: {
  29414. source: "./media/characters/sapphire-svell/front.svg",
  29415. extra: 495 / 455,
  29416. bottom: 20 / 515
  29417. }
  29418. },
  29419. back: {
  29420. height: math.unit(6, "feet"),
  29421. weight: math.unit(216, "lb"),
  29422. name: "Back",
  29423. image: {
  29424. source: "./media/characters/sapphire-svell/back.svg",
  29425. extra: 497 / 477,
  29426. bottom: 7 / 504
  29427. }
  29428. },
  29429. maw: {
  29430. height: math.unit(1.57, "feet"),
  29431. name: "Maw",
  29432. image: {
  29433. source: "./media/characters/sapphire-svell/maw.svg"
  29434. }
  29435. },
  29436. foot: {
  29437. height: math.unit(1.07, "feet"),
  29438. name: "Foot",
  29439. image: {
  29440. source: "./media/characters/sapphire-svell/foot.svg"
  29441. }
  29442. },
  29443. toering: {
  29444. height: math.unit(1.7, "inch"),
  29445. name: "Toering",
  29446. image: {
  29447. source: "./media/characters/sapphire-svell/toering.svg"
  29448. }
  29449. },
  29450. },
  29451. [
  29452. {
  29453. name: "Normal",
  29454. height: math.unit(300, "feet"),
  29455. default: true
  29456. },
  29457. {
  29458. name: "Augmented",
  29459. height: math.unit(1250, "feet")
  29460. },
  29461. {
  29462. name: "Unleashed",
  29463. height: math.unit(3000, "feet")
  29464. },
  29465. ]
  29466. ))
  29467. characterMakers.push(() => makeCharacter(
  29468. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29469. {
  29470. side: {
  29471. height: math.unit(2 + 3 / 12, "feet"),
  29472. weight: math.unit(110, "lb"),
  29473. name: "Side",
  29474. image: {
  29475. source: "./media/characters/glitch-flux/side.svg",
  29476. extra: 997 / 805,
  29477. bottom: 20 / 1017
  29478. }
  29479. },
  29480. },
  29481. [
  29482. {
  29483. name: "Normal",
  29484. height: math.unit(2 + 3 / 12, "feet"),
  29485. default: true
  29486. },
  29487. ]
  29488. ))
  29489. characterMakers.push(() => makeCharacter(
  29490. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29491. {
  29492. front: {
  29493. height: math.unit(4, "meters"),
  29494. name: "Front",
  29495. image: {
  29496. source: "./media/characters/mid/front.svg",
  29497. extra: 507 / 476,
  29498. bottom: 17 / 524
  29499. }
  29500. },
  29501. back: {
  29502. height: math.unit(4, "meters"),
  29503. name: "Back",
  29504. image: {
  29505. source: "./media/characters/mid/back.svg",
  29506. extra: 519 / 487,
  29507. bottom: 7 / 526
  29508. }
  29509. },
  29510. stuck: {
  29511. height: math.unit(2.2, "meters"),
  29512. name: "Stuck",
  29513. image: {
  29514. source: "./media/characters/mid/stuck.svg",
  29515. extra: 1951 / 1869,
  29516. bottom: 88 / 2039
  29517. }
  29518. }
  29519. },
  29520. [
  29521. {
  29522. name: "Normal",
  29523. height: math.unit(4, "meters"),
  29524. default: true
  29525. },
  29526. {
  29527. name: "Big",
  29528. height: math.unit(10, "meters")
  29529. },
  29530. {
  29531. name: "Macro",
  29532. height: math.unit(800, "meters")
  29533. },
  29534. {
  29535. name: "Megamacro",
  29536. height: math.unit(100, "km")
  29537. },
  29538. {
  29539. name: "Overgrown",
  29540. height: math.unit(1, "parsec")
  29541. },
  29542. ]
  29543. ))
  29544. characterMakers.push(() => makeCharacter(
  29545. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29546. {
  29547. front: {
  29548. height: math.unit(2.5, "meters"),
  29549. weight: math.unit(225, "kg"),
  29550. name: "Front",
  29551. image: {
  29552. source: "./media/characters/iris/front.svg",
  29553. extra: 3348 / 3251,
  29554. bottom: 205 / 3553
  29555. }
  29556. },
  29557. maw: {
  29558. height: math.unit(0.56, "meter"),
  29559. name: "Maw",
  29560. image: {
  29561. source: "./media/characters/iris/maw.svg"
  29562. }
  29563. },
  29564. },
  29565. [
  29566. {
  29567. name: "Mewter cat",
  29568. height: math.unit(1.2, "meters")
  29569. },
  29570. {
  29571. name: "Minimacro",
  29572. height: math.unit(2.5, "meters"),
  29573. default: true
  29574. },
  29575. {
  29576. name: "Macro",
  29577. height: math.unit(180, "meters")
  29578. },
  29579. {
  29580. name: "Megamacro",
  29581. height: math.unit(2746, "meters")
  29582. },
  29583. ]
  29584. ))
  29585. characterMakers.push(() => makeCharacter(
  29586. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29587. {
  29588. front: {
  29589. height: math.unit(6, "feet"),
  29590. weight: math.unit(135, "lb"),
  29591. name: "Front",
  29592. image: {
  29593. source: "./media/characters/axel/front.svg",
  29594. extra: 908 / 908,
  29595. bottom: 58 / 966
  29596. }
  29597. },
  29598. side: {
  29599. height: math.unit(6, "feet"),
  29600. weight: math.unit(135, "lb"),
  29601. name: "Side",
  29602. image: {
  29603. source: "./media/characters/axel/side.svg",
  29604. extra: 958 / 958,
  29605. bottom: 11 / 969
  29606. }
  29607. },
  29608. back: {
  29609. height: math.unit(6, "feet"),
  29610. weight: math.unit(135, "lb"),
  29611. name: "Back",
  29612. image: {
  29613. source: "./media/characters/axel/back.svg",
  29614. extra: 887 / 887,
  29615. bottom: 34 / 921
  29616. }
  29617. },
  29618. head: {
  29619. height: math.unit(1.07, "feet"),
  29620. name: "Head",
  29621. image: {
  29622. source: "./media/characters/axel/head.svg"
  29623. }
  29624. },
  29625. beak: {
  29626. height: math.unit(1.4, "feet"),
  29627. name: "Beak",
  29628. image: {
  29629. source: "./media/characters/axel/beak.svg"
  29630. }
  29631. },
  29632. beakSide: {
  29633. height: math.unit(1.4, "feet"),
  29634. name: "Beak Side",
  29635. image: {
  29636. source: "./media/characters/axel/beak-side.svg"
  29637. }
  29638. },
  29639. sheath: {
  29640. height: math.unit(0.5, "feet"),
  29641. name: "Sheath",
  29642. image: {
  29643. source: "./media/characters/axel/sheath.svg"
  29644. }
  29645. },
  29646. dick: {
  29647. height: math.unit(0.98, "feet"),
  29648. name: "Dick",
  29649. image: {
  29650. source: "./media/characters/axel/dick.svg"
  29651. }
  29652. },
  29653. },
  29654. [
  29655. {
  29656. name: "Macro",
  29657. height: math.unit(68, "meters"),
  29658. default: true
  29659. },
  29660. ]
  29661. ))
  29662. characterMakers.push(() => makeCharacter(
  29663. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29664. {
  29665. front: {
  29666. height: math.unit(3.5, "meters"),
  29667. weight: math.unit(1200, "kg"),
  29668. name: "Front",
  29669. image: {
  29670. source: "./media/characters/joanna/front.svg",
  29671. extra: 1596 / 1488,
  29672. bottom: 29 / 1625
  29673. }
  29674. },
  29675. back: {
  29676. height: math.unit(3.5, "meters"),
  29677. weight: math.unit(1200, "kg"),
  29678. name: "Back",
  29679. image: {
  29680. source: "./media/characters/joanna/back.svg",
  29681. extra: 1594 / 1495,
  29682. bottom: 26 / 1620
  29683. }
  29684. },
  29685. frontShorts: {
  29686. height: math.unit(3.5, "meters"),
  29687. weight: math.unit(1200, "kg"),
  29688. name: "Front (Shorts)",
  29689. image: {
  29690. source: "./media/characters/joanna/front-shorts.svg",
  29691. extra: 1596 / 1488,
  29692. bottom: 29 / 1625
  29693. }
  29694. },
  29695. frontBiker: {
  29696. height: math.unit(3.5, "meters"),
  29697. weight: math.unit(1200, "kg"),
  29698. name: "Front (Biker)",
  29699. image: {
  29700. source: "./media/characters/joanna/front-biker.svg",
  29701. extra: 1596 / 1488,
  29702. bottom: 29 / 1625
  29703. }
  29704. },
  29705. backBiker: {
  29706. height: math.unit(3.5, "meters"),
  29707. weight: math.unit(1200, "kg"),
  29708. name: "Back (Biker)",
  29709. image: {
  29710. source: "./media/characters/joanna/back-biker.svg",
  29711. extra: 1594 / 1495,
  29712. bottom: 88 / 1682
  29713. }
  29714. },
  29715. bikeLeft: {
  29716. height: math.unit(2.4, "meters"),
  29717. weight: math.unit(1600, "kg"),
  29718. name: "Bike (Left)",
  29719. image: {
  29720. source: "./media/characters/joanna/bike-left.svg",
  29721. extra: 720 / 720,
  29722. bottom: 8 / 728
  29723. }
  29724. },
  29725. bikeRight: {
  29726. height: math.unit(2.4, "meters"),
  29727. weight: math.unit(1600, "kg"),
  29728. name: "Bike (Right)",
  29729. image: {
  29730. source: "./media/characters/joanna/bike-right.svg",
  29731. extra: 720 / 720,
  29732. bottom: 8 / 728
  29733. }
  29734. },
  29735. },
  29736. [
  29737. {
  29738. name: "Incognito",
  29739. height: math.unit(3.5, "meters")
  29740. },
  29741. {
  29742. name: "Casual Big",
  29743. height: math.unit(200, "meters")
  29744. },
  29745. {
  29746. name: "Macro",
  29747. height: math.unit(600, "meters")
  29748. },
  29749. {
  29750. name: "Original",
  29751. height: math.unit(20, "km"),
  29752. default: true
  29753. },
  29754. {
  29755. name: "Giga",
  29756. height: math.unit(400, "km")
  29757. },
  29758. {
  29759. name: "Lounging",
  29760. height: math.unit(1500, "km")
  29761. },
  29762. {
  29763. name: "Planetary",
  29764. height: math.unit(200000, "km")
  29765. },
  29766. ]
  29767. ))
  29768. characterMakers.push(() => makeCharacter(
  29769. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29770. {
  29771. front: {
  29772. height: math.unit(6, "feet"),
  29773. weight: math.unit(150, "lb"),
  29774. name: "Front",
  29775. image: {
  29776. source: "./media/characters/hugo-sigil/front.svg",
  29777. extra: 522 / 500,
  29778. bottom: 2 / 524
  29779. }
  29780. },
  29781. back: {
  29782. height: math.unit(6, "feet"),
  29783. weight: math.unit(150, "lb"),
  29784. name: "Back",
  29785. image: {
  29786. source: "./media/characters/hugo-sigil/back.svg",
  29787. extra: 519 / 495,
  29788. bottom: 5 / 524
  29789. }
  29790. },
  29791. maw: {
  29792. height: math.unit(1.4, "feet"),
  29793. weight: math.unit(150, "lb"),
  29794. name: "Maw",
  29795. image: {
  29796. source: "./media/characters/hugo-sigil/maw.svg"
  29797. }
  29798. },
  29799. feet: {
  29800. height: math.unit(1.56, "feet"),
  29801. weight: math.unit(150, "lb"),
  29802. name: "Feet",
  29803. image: {
  29804. source: "./media/characters/hugo-sigil/feet.svg",
  29805. extra: 177 / 177,
  29806. bottom: 12 / 189
  29807. }
  29808. },
  29809. },
  29810. [
  29811. {
  29812. name: "Normal",
  29813. height: math.unit(6, "feet")
  29814. },
  29815. {
  29816. name: "Macro",
  29817. height: math.unit(200, "feet"),
  29818. default: true
  29819. },
  29820. ]
  29821. ))
  29822. characterMakers.push(() => makeCharacter(
  29823. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29824. {
  29825. front: {
  29826. height: math.unit(6, "feet"),
  29827. weight: math.unit(150, "lb"),
  29828. name: "Front",
  29829. image: {
  29830. source: "./media/characters/peri/front.svg",
  29831. extra: 2354 / 2233,
  29832. bottom: 49 / 2403
  29833. }
  29834. },
  29835. },
  29836. [
  29837. {
  29838. name: "Really Small",
  29839. height: math.unit(1, "nm")
  29840. },
  29841. {
  29842. name: "Micro",
  29843. height: math.unit(4, "inches")
  29844. },
  29845. {
  29846. name: "Normal",
  29847. height: math.unit(7, "inches"),
  29848. default: true
  29849. },
  29850. {
  29851. name: "Macro",
  29852. height: math.unit(400, "feet")
  29853. },
  29854. {
  29855. name: "Megamacro",
  29856. height: math.unit(100, "miles")
  29857. },
  29858. ]
  29859. ))
  29860. characterMakers.push(() => makeCharacter(
  29861. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29862. {
  29863. frontSlim: {
  29864. height: math.unit(7, "feet"),
  29865. name: "Front (Slim)",
  29866. image: {
  29867. source: "./media/characters/issilora/front-slim.svg",
  29868. extra: 529 / 449,
  29869. bottom: 53 / 582
  29870. }
  29871. },
  29872. sideSlim: {
  29873. height: math.unit(7, "feet"),
  29874. name: "Side (Slim)",
  29875. image: {
  29876. source: "./media/characters/issilora/side-slim.svg",
  29877. extra: 570 / 480,
  29878. bottom: 30 / 600
  29879. }
  29880. },
  29881. backSlim: {
  29882. height: math.unit(7, "feet"),
  29883. name: "Back (Slim)",
  29884. image: {
  29885. source: "./media/characters/issilora/back-slim.svg",
  29886. extra: 537 / 455,
  29887. bottom: 46 / 583
  29888. }
  29889. },
  29890. frontBuff: {
  29891. height: math.unit(7, "feet"),
  29892. name: "Front (Buff)",
  29893. image: {
  29894. source: "./media/characters/issilora/front-buff.svg",
  29895. extra: 2310 / 2035,
  29896. bottom: 335 / 2645
  29897. }
  29898. },
  29899. head: {
  29900. height: math.unit(1.94, "feet"),
  29901. name: "Head",
  29902. image: {
  29903. source: "./media/characters/issilora/head.svg"
  29904. }
  29905. },
  29906. },
  29907. [
  29908. {
  29909. name: "Minimum",
  29910. height: math.unit(7, "feet")
  29911. },
  29912. {
  29913. name: "Comfortable",
  29914. height: math.unit(17, "feet")
  29915. },
  29916. {
  29917. name: "Fun Size",
  29918. height: math.unit(47, "feet")
  29919. },
  29920. {
  29921. name: "Natural Macro",
  29922. height: math.unit(137, "feet"),
  29923. default: true
  29924. },
  29925. {
  29926. name: "Maximum Kaiju",
  29927. height: math.unit(397, "feet")
  29928. },
  29929. ]
  29930. ))
  29931. characterMakers.push(() => makeCharacter(
  29932. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29933. {
  29934. front: {
  29935. height: math.unit(50 + 9/12, "feet"),
  29936. weight: math.unit(32.8, "tons"),
  29937. name: "Front",
  29938. image: {
  29939. source: "./media/characters/irb'iiritaahn/front.svg",
  29940. extra: 1878/1826,
  29941. bottom: 326/2204
  29942. }
  29943. },
  29944. back: {
  29945. height: math.unit(50 + 9/12, "feet"),
  29946. weight: math.unit(32.8, "tons"),
  29947. name: "Back",
  29948. image: {
  29949. source: "./media/characters/irb'iiritaahn/back.svg",
  29950. extra: 2052/2018,
  29951. bottom: 152/2204
  29952. }
  29953. },
  29954. head: {
  29955. height: math.unit(12.86, "feet"),
  29956. name: "Head",
  29957. image: {
  29958. source: "./media/characters/irb'iiritaahn/head.svg"
  29959. }
  29960. },
  29961. maw: {
  29962. height: math.unit(9.66, "feet"),
  29963. name: "Maw",
  29964. image: {
  29965. source: "./media/characters/irb'iiritaahn/maw.svg"
  29966. }
  29967. },
  29968. frontDick: {
  29969. height: math.unit(8.78461, "feet"),
  29970. name: "Front Dick",
  29971. image: {
  29972. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29973. }
  29974. },
  29975. rearDick: {
  29976. height: math.unit(8.78461, "feet"),
  29977. name: "Rear Dick",
  29978. image: {
  29979. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29980. }
  29981. },
  29982. rearDickUnfolded: {
  29983. height: math.unit(8.78, "feet"),
  29984. name: "Rear Dick (Unfolded)",
  29985. image: {
  29986. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29987. }
  29988. },
  29989. wings: {
  29990. height: math.unit(43, "feet"),
  29991. name: "Wings",
  29992. image: {
  29993. source: "./media/characters/irb'iiritaahn/wings.svg"
  29994. }
  29995. },
  29996. },
  29997. [
  29998. {
  29999. name: "Macro",
  30000. height: math.unit(50 + 9/12, "feet"),
  30001. default: true
  30002. },
  30003. ]
  30004. ))
  30005. characterMakers.push(() => makeCharacter(
  30006. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30007. {
  30008. front: {
  30009. height: math.unit(205, "cm"),
  30010. weight: math.unit(102, "kg"),
  30011. name: "Front",
  30012. image: {
  30013. source: "./media/characters/irbisgreif/front.svg",
  30014. extra: 785/706,
  30015. bottom: 13/798
  30016. }
  30017. },
  30018. back: {
  30019. height: math.unit(205, "cm"),
  30020. weight: math.unit(102, "kg"),
  30021. name: "Back",
  30022. image: {
  30023. source: "./media/characters/irbisgreif/back.svg",
  30024. extra: 713/701,
  30025. bottom: 26/739
  30026. }
  30027. },
  30028. frontDressed: {
  30029. height: math.unit(216, "cm"),
  30030. weight: math.unit(102, "kg"),
  30031. name: "Front-dressed",
  30032. image: {
  30033. source: "./media/characters/irbisgreif/front-dressed.svg",
  30034. extra: 902/776,
  30035. bottom: 14/916
  30036. }
  30037. },
  30038. sideDressed: {
  30039. height: math.unit(195, "cm"),
  30040. weight: math.unit(102, "kg"),
  30041. name: "Side-dressed",
  30042. image: {
  30043. source: "./media/characters/irbisgreif/side-dressed.svg",
  30044. extra: 788/688,
  30045. bottom: 21/809
  30046. }
  30047. },
  30048. backDressed: {
  30049. height: math.unit(216, "cm"),
  30050. weight: math.unit(102, "kg"),
  30051. name: "Back-dressed",
  30052. image: {
  30053. source: "./media/characters/irbisgreif/back-dressed.svg",
  30054. extra: 901/783,
  30055. bottom: 10/911
  30056. }
  30057. },
  30058. dick: {
  30059. height: math.unit(0.49, "feet"),
  30060. name: "Dick",
  30061. image: {
  30062. source: "./media/characters/irbisgreif/dick.svg"
  30063. }
  30064. },
  30065. wingTop: {
  30066. height: math.unit(1.93 , "feet"),
  30067. name: "Wing-top",
  30068. image: {
  30069. source: "./media/characters/irbisgreif/wing-top.svg"
  30070. }
  30071. },
  30072. wingBottom: {
  30073. height: math.unit(1.93 , "feet"),
  30074. name: "Wing-bottom",
  30075. image: {
  30076. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30077. }
  30078. },
  30079. },
  30080. [
  30081. {
  30082. name: "Normal",
  30083. height: math.unit(216, "cm"),
  30084. default: true
  30085. },
  30086. ]
  30087. ))
  30088. characterMakers.push(() => makeCharacter(
  30089. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30090. {
  30091. front: {
  30092. height: math.unit(6, "feet"),
  30093. weight: math.unit(150, "lb"),
  30094. name: "Front",
  30095. image: {
  30096. source: "./media/characters/pride/front.svg",
  30097. extra: 1299/1230,
  30098. bottom: 18/1317
  30099. }
  30100. },
  30101. },
  30102. [
  30103. {
  30104. name: "Normal",
  30105. height: math.unit(7, "feet")
  30106. },
  30107. {
  30108. name: "Mini-macro",
  30109. height: math.unit(11, "feet")
  30110. },
  30111. {
  30112. name: "Macro",
  30113. height: math.unit(15, "meters"),
  30114. default: true
  30115. },
  30116. {
  30117. name: "Macro+",
  30118. height: math.unit(40, "meters")
  30119. },
  30120. ]
  30121. ))
  30122. characterMakers.push(() => makeCharacter(
  30123. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30124. {
  30125. front: {
  30126. height: math.unit(4 + 2 / 12, "feet"),
  30127. weight: math.unit(95, "lb"),
  30128. name: "Front",
  30129. image: {
  30130. source: "./media/characters/vaelophis-nyx/front.svg",
  30131. extra: 2532/2330,
  30132. bottom: 0/2532
  30133. }
  30134. },
  30135. back: {
  30136. height: math.unit(4 + 2 / 12, "feet"),
  30137. weight: math.unit(95, "lb"),
  30138. name: "Back",
  30139. image: {
  30140. source: "./media/characters/vaelophis-nyx/back.svg",
  30141. extra: 2484/2361,
  30142. bottom: 0/2484
  30143. }
  30144. },
  30145. feralSide: {
  30146. height: math.unit(2 + 1/12, "feet"),
  30147. weight: math.unit(20, "lb"),
  30148. name: "Feral (Side)",
  30149. image: {
  30150. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30151. extra: 1721/1581,
  30152. bottom: 70/1791
  30153. }
  30154. },
  30155. feralLazing: {
  30156. height: math.unit(1.08, "feet"),
  30157. weight: math.unit(20, "lb"),
  30158. name: "Feral (Lazing)",
  30159. image: {
  30160. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30161. extra: 822/822,
  30162. bottom: 248/1070
  30163. }
  30164. },
  30165. ear: {
  30166. height: math.unit(0.416, "feet"),
  30167. name: "Ear",
  30168. image: {
  30169. source: "./media/characters/vaelophis-nyx/ear.svg"
  30170. }
  30171. },
  30172. eye: {
  30173. height: math.unit(0.0748, "feet"),
  30174. name: "Eye",
  30175. image: {
  30176. source: "./media/characters/vaelophis-nyx/eye.svg"
  30177. }
  30178. },
  30179. mouth: {
  30180. height: math.unit(0.378, "feet"),
  30181. name: "Mouth",
  30182. image: {
  30183. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30184. }
  30185. },
  30186. spade: {
  30187. height: math.unit(0.55, "feet"),
  30188. name: "Spade",
  30189. image: {
  30190. source: "./media/characters/vaelophis-nyx/spade.svg"
  30191. }
  30192. },
  30193. },
  30194. [
  30195. {
  30196. name: "Normal",
  30197. height: math.unit(4 + 2/12, "feet"),
  30198. default: true
  30199. },
  30200. ]
  30201. ))
  30202. characterMakers.push(() => makeCharacter(
  30203. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30204. {
  30205. front: {
  30206. height: math.unit(7, "feet"),
  30207. weight: math.unit(231, "lb"),
  30208. name: "Front",
  30209. image: {
  30210. source: "./media/characters/flux/front.svg",
  30211. extra: 919/871,
  30212. bottom: 0/919
  30213. }
  30214. },
  30215. back: {
  30216. height: math.unit(7, "feet"),
  30217. weight: math.unit(231, "lb"),
  30218. name: "Back",
  30219. image: {
  30220. source: "./media/characters/flux/back.svg",
  30221. extra: 1040/992,
  30222. bottom: 0/1040
  30223. }
  30224. },
  30225. frontDressed: {
  30226. height: math.unit(7, "feet"),
  30227. weight: math.unit(231, "lb"),
  30228. name: "Front (Dressed)",
  30229. image: {
  30230. source: "./media/characters/flux/front-dressed.svg",
  30231. extra: 919/871,
  30232. bottom: 0/919
  30233. }
  30234. },
  30235. feralSide: {
  30236. height: math.unit(5, "feet"),
  30237. weight: math.unit(150, "lb"),
  30238. name: "Feral (Side)",
  30239. image: {
  30240. source: "./media/characters/flux/feral-side.svg",
  30241. extra: 598/528,
  30242. bottom: 28/626
  30243. }
  30244. },
  30245. head: {
  30246. height: math.unit(1.585, "feet"),
  30247. name: "Head",
  30248. image: {
  30249. source: "./media/characters/flux/head.svg"
  30250. }
  30251. },
  30252. headSide: {
  30253. height: math.unit(1.74, "feet"),
  30254. name: "Head (Side)",
  30255. image: {
  30256. source: "./media/characters/flux/head-side.svg"
  30257. }
  30258. },
  30259. headSideFire: {
  30260. height: math.unit(1.76, "feet"),
  30261. name: "Head (Side, Fire)",
  30262. image: {
  30263. source: "./media/characters/flux/head-side-fire.svg"
  30264. }
  30265. },
  30266. },
  30267. [
  30268. {
  30269. name: "Normal",
  30270. height: math.unit(7, "feet"),
  30271. default: true
  30272. },
  30273. ]
  30274. ))
  30275. characterMakers.push(() => makeCharacter(
  30276. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30277. {
  30278. front: {
  30279. height: math.unit(9, "feet"),
  30280. weight: math.unit(1012, "lb"),
  30281. name: "Front",
  30282. image: {
  30283. source: "./media/characters/ulfra-lupae/front.svg",
  30284. extra: 1083/1011,
  30285. bottom: 67/1150
  30286. }
  30287. },
  30288. },
  30289. [
  30290. {
  30291. name: "Micro",
  30292. height: math.unit(6, "inches")
  30293. },
  30294. {
  30295. name: "Socializing",
  30296. height: math.unit(6 + 5/12, "feet")
  30297. },
  30298. {
  30299. name: "Normal",
  30300. height: math.unit(9, "feet"),
  30301. default: true
  30302. },
  30303. {
  30304. name: "Macro",
  30305. height: math.unit(150, "feet")
  30306. },
  30307. ]
  30308. ))
  30309. characterMakers.push(() => makeCharacter(
  30310. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30311. {
  30312. front: {
  30313. height: math.unit(5 + 2/12, "feet"),
  30314. weight: math.unit(120, "lb"),
  30315. name: "Front",
  30316. image: {
  30317. source: "./media/characters/timber/front.svg",
  30318. extra: 2814/2705,
  30319. bottom: 181/2995
  30320. }
  30321. },
  30322. },
  30323. [
  30324. {
  30325. name: "Normal",
  30326. height: math.unit(5 + 2/12, "feet"),
  30327. default: true
  30328. },
  30329. ]
  30330. ))
  30331. characterMakers.push(() => makeCharacter(
  30332. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30333. {
  30334. front: {
  30335. height: math.unit(5 + 7/12, "feet"),
  30336. weight: math.unit(220, "lb"),
  30337. name: "Front",
  30338. image: {
  30339. source: "./media/characters/nicki/front.svg",
  30340. extra: 453/419,
  30341. bottom: 7/460
  30342. }
  30343. },
  30344. frontAlt: {
  30345. height: math.unit(5 + 7/12, "feet"),
  30346. weight: math.unit(220, "lb"),
  30347. name: "Front-alt",
  30348. image: {
  30349. source: "./media/characters/nicki/front-alt.svg",
  30350. extra: 435/411,
  30351. bottom: 12/447
  30352. }
  30353. },
  30354. back: {
  30355. height: math.unit(5 + 7/12, "feet"),
  30356. weight: math.unit(220, "lb"),
  30357. name: "Back",
  30358. image: {
  30359. source: "./media/characters/nicki/back.svg",
  30360. extra: 440/413,
  30361. bottom: 19/459
  30362. }
  30363. },
  30364. taur: {
  30365. height: math.unit(7 + 6/12, "feet"),
  30366. weight: math.unit(700, "lb"),
  30367. name: "Taur",
  30368. image: {
  30369. source: "./media/characters/nicki/taur.svg",
  30370. extra: 975/773,
  30371. bottom: 0/975
  30372. }
  30373. },
  30374. frontNsfw: {
  30375. height: math.unit(5 + 7/12, "feet"),
  30376. weight: math.unit(220, "lb"),
  30377. name: "Front (NSFW)",
  30378. image: {
  30379. source: "./media/characters/nicki/front-nsfw.svg",
  30380. extra: 453/419,
  30381. bottom: 7/460
  30382. }
  30383. },
  30384. frontNsfwAlt: {
  30385. height: math.unit(5 + 7/12, "feet"),
  30386. weight: math.unit(220, "lb"),
  30387. name: "Front (Alt, NSFW)",
  30388. image: {
  30389. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30390. extra: 435/411,
  30391. bottom: 12/447
  30392. }
  30393. },
  30394. backNsfw: {
  30395. height: math.unit(5 + 7/12, "feet"),
  30396. weight: math.unit(220, "lb"),
  30397. name: "Back (NSFW)",
  30398. image: {
  30399. source: "./media/characters/nicki/back-nsfw.svg",
  30400. extra: 440/413,
  30401. bottom: 19/459
  30402. }
  30403. },
  30404. head: {
  30405. height: math.unit(2.1, "feet"),
  30406. name: "Head",
  30407. image: {
  30408. source: "./media/characters/nicki/head.svg"
  30409. }
  30410. },
  30411. paw: {
  30412. height: math.unit(1.88, "feet"),
  30413. name: "Paw",
  30414. image: {
  30415. source: "./media/characters/nicki/paw.svg"
  30416. }
  30417. },
  30418. },
  30419. [
  30420. {
  30421. name: "Normal",
  30422. height: math.unit(5 + 7/12, "feet"),
  30423. default: true
  30424. },
  30425. ]
  30426. ))
  30427. characterMakers.push(() => makeCharacter(
  30428. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30429. {
  30430. front: {
  30431. height: math.unit(7 + 10/12, "feet"),
  30432. weight: math.unit(3.5, "tons"),
  30433. name: "Front",
  30434. image: {
  30435. source: "./media/characters/lee/front.svg",
  30436. extra: 1773/1615,
  30437. bottom: 86/1859
  30438. }
  30439. },
  30440. hand: {
  30441. height: math.unit(1.78, "feet"),
  30442. name: "Hand",
  30443. image: {
  30444. source: "./media/characters/lee/hand.svg"
  30445. }
  30446. },
  30447. maw: {
  30448. height: math.unit(1.18, "feet"),
  30449. name: "Maw",
  30450. image: {
  30451. source: "./media/characters/lee/maw.svg"
  30452. }
  30453. },
  30454. },
  30455. [
  30456. {
  30457. name: "Normal",
  30458. height: math.unit(7 + 10/12, "feet"),
  30459. default: true
  30460. },
  30461. ]
  30462. ))
  30463. characterMakers.push(() => makeCharacter(
  30464. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30465. {
  30466. front: {
  30467. height: math.unit(9, "feet"),
  30468. name: "Front",
  30469. image: {
  30470. source: "./media/characters/guti/front.svg",
  30471. extra: 4551/4355,
  30472. bottom: 123/4674
  30473. }
  30474. },
  30475. tongue: {
  30476. height: math.unit(1, "feet"),
  30477. name: "Tongue",
  30478. image: {
  30479. source: "./media/characters/guti/tongue.svg"
  30480. }
  30481. },
  30482. paw: {
  30483. height: math.unit(1.18, "feet"),
  30484. name: "Paw",
  30485. image: {
  30486. source: "./media/characters/guti/paw.svg"
  30487. }
  30488. },
  30489. },
  30490. [
  30491. {
  30492. name: "Normal",
  30493. height: math.unit(9, "feet"),
  30494. default: true
  30495. },
  30496. ]
  30497. ))
  30498. characterMakers.push(() => makeCharacter(
  30499. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30500. {
  30501. side: {
  30502. height: math.unit(5, "meters"),
  30503. name: "Side",
  30504. image: {
  30505. source: "./media/characters/vesper/side.svg",
  30506. extra: 1605/1518,
  30507. bottom: 0/1605
  30508. }
  30509. },
  30510. },
  30511. [
  30512. {
  30513. name: "Small",
  30514. height: math.unit(5, "meters")
  30515. },
  30516. {
  30517. name: "Sage",
  30518. height: math.unit(100, "meters"),
  30519. default: true
  30520. },
  30521. {
  30522. name: "Fun Size",
  30523. height: math.unit(600, "meters")
  30524. },
  30525. {
  30526. name: "Goddess",
  30527. height: math.unit(20000, "km")
  30528. },
  30529. {
  30530. name: "Maximum",
  30531. height: math.unit(5, "galaxies")
  30532. },
  30533. ]
  30534. ))
  30535. characterMakers.push(() => makeCharacter(
  30536. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30537. {
  30538. front: {
  30539. height: math.unit(6 + 3/12, "feet"),
  30540. weight: math.unit(190, "lb"),
  30541. name: "Front",
  30542. image: {
  30543. source: "./media/characters/gawain/front.svg",
  30544. extra: 2222/2139,
  30545. bottom: 90/2312
  30546. }
  30547. },
  30548. back: {
  30549. height: math.unit(6 + 3/12, "feet"),
  30550. weight: math.unit(190, "lb"),
  30551. name: "Back",
  30552. image: {
  30553. source: "./media/characters/gawain/back.svg",
  30554. extra: 2199/2111,
  30555. bottom: 73/2272
  30556. }
  30557. },
  30558. },
  30559. [
  30560. {
  30561. name: "Normal",
  30562. height: math.unit(6 + 3/12, "feet"),
  30563. default: true
  30564. },
  30565. ]
  30566. ))
  30567. characterMakers.push(() => makeCharacter(
  30568. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30569. {
  30570. side: {
  30571. height: math.unit(3.5, "meters"),
  30572. weight: math.unit(16000, "lb"),
  30573. name: "Side",
  30574. image: {
  30575. source: "./media/characters/dascalti/side.svg",
  30576. extra: 392/273,
  30577. bottom: 47/439
  30578. }
  30579. },
  30580. breath: {
  30581. height: math.unit(7.4, "feet"),
  30582. name: "Breath",
  30583. image: {
  30584. source: "./media/characters/dascalti/breath.svg"
  30585. }
  30586. },
  30587. fed: {
  30588. height: math.unit(3.6, "meters"),
  30589. weight: math.unit(16000, "lb"),
  30590. name: "Fed",
  30591. image: {
  30592. source: "./media/characters/dascalti/fed.svg",
  30593. extra: 1419/820,
  30594. bottom: 95/1514
  30595. }
  30596. },
  30597. },
  30598. [
  30599. {
  30600. name: "Normal",
  30601. height: math.unit(3.5, "meters"),
  30602. default: true
  30603. },
  30604. ]
  30605. ))
  30606. characterMakers.push(() => makeCharacter(
  30607. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30608. {
  30609. front: {
  30610. height: math.unit(3 + 5/12, "feet"),
  30611. name: "Front",
  30612. image: {
  30613. source: "./media/characters/mauve/front.svg",
  30614. extra: 1126/1033,
  30615. bottom: 65/1191
  30616. }
  30617. },
  30618. side: {
  30619. height: math.unit(3 + 5/12, "feet"),
  30620. name: "Side",
  30621. image: {
  30622. source: "./media/characters/mauve/side.svg",
  30623. extra: 1089/1001,
  30624. bottom: 29/1118
  30625. }
  30626. },
  30627. back: {
  30628. height: math.unit(3 + 5/12, "feet"),
  30629. name: "Back",
  30630. image: {
  30631. source: "./media/characters/mauve/back.svg",
  30632. extra: 1173/1053,
  30633. bottom: 109/1282
  30634. }
  30635. },
  30636. },
  30637. [
  30638. {
  30639. name: "Normal",
  30640. height: math.unit(3 + 5/12, "feet"),
  30641. default: true
  30642. },
  30643. ]
  30644. ))
  30645. characterMakers.push(() => makeCharacter(
  30646. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30647. {
  30648. front: {
  30649. height: math.unit(6 + 3/12, "feet"),
  30650. weight: math.unit(430, "lb"),
  30651. name: "Front",
  30652. image: {
  30653. source: "./media/characters/carlos/front.svg",
  30654. extra: 1964/1913,
  30655. bottom: 70/2034
  30656. }
  30657. },
  30658. },
  30659. [
  30660. {
  30661. name: "Normal",
  30662. height: math.unit(6 + 3/12, "feet"),
  30663. default: true
  30664. },
  30665. ]
  30666. ))
  30667. characterMakers.push(() => makeCharacter(
  30668. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30669. {
  30670. back: {
  30671. height: math.unit(5 + 10/12, "feet"),
  30672. weight: math.unit(200, "lb"),
  30673. name: "Back",
  30674. image: {
  30675. source: "./media/characters/jax/back.svg",
  30676. extra: 764/739,
  30677. bottom: 25/789
  30678. }
  30679. },
  30680. },
  30681. [
  30682. {
  30683. name: "Normal",
  30684. height: math.unit(5 + 10/12, "feet"),
  30685. default: true
  30686. },
  30687. ]
  30688. ))
  30689. characterMakers.push(() => makeCharacter(
  30690. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30691. {
  30692. front: {
  30693. height: math.unit(8, "feet"),
  30694. weight: math.unit(250, "lb"),
  30695. name: "Front",
  30696. image: {
  30697. source: "./media/characters/eikthynir/front.svg",
  30698. extra: 1332/1166,
  30699. bottom: 82/1414
  30700. }
  30701. },
  30702. back: {
  30703. height: math.unit(8, "feet"),
  30704. weight: math.unit(250, "lb"),
  30705. name: "Back",
  30706. image: {
  30707. source: "./media/characters/eikthynir/back.svg",
  30708. extra: 1342/1190,
  30709. bottom: 19/1361
  30710. }
  30711. },
  30712. dick: {
  30713. height: math.unit(2.35, "feet"),
  30714. name: "Dick",
  30715. image: {
  30716. source: "./media/characters/eikthynir/dick.svg"
  30717. }
  30718. },
  30719. },
  30720. [
  30721. {
  30722. name: "Normal",
  30723. height: math.unit(8, "feet"),
  30724. default: true
  30725. },
  30726. ]
  30727. ))
  30728. characterMakers.push(() => makeCharacter(
  30729. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30730. {
  30731. front: {
  30732. height: math.unit(99, "meters"),
  30733. weight: math.unit(13000, "tons"),
  30734. name: "Front",
  30735. image: {
  30736. source: "./media/characters/zlmos/front.svg",
  30737. extra: 2202/1992,
  30738. bottom: 315/2517
  30739. }
  30740. },
  30741. },
  30742. [
  30743. {
  30744. name: "Macro",
  30745. height: math.unit(99, "meters"),
  30746. default: true
  30747. },
  30748. ]
  30749. ))
  30750. characterMakers.push(() => makeCharacter(
  30751. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30752. {
  30753. front: {
  30754. height: math.unit(6 + 5/12, "feet"),
  30755. name: "Front",
  30756. image: {
  30757. source: "./media/characters/purri/front.svg",
  30758. extra: 1698/1610,
  30759. bottom: 32/1730
  30760. }
  30761. },
  30762. frontAlt: {
  30763. height: math.unit(6 + 5/12, "feet"),
  30764. name: "Front (Alt)",
  30765. image: {
  30766. source: "./media/characters/purri/front-alt.svg",
  30767. extra: 450/420,
  30768. bottom: 26/476
  30769. }
  30770. },
  30771. boots: {
  30772. height: math.unit(5.5, "feet"),
  30773. name: "Boots",
  30774. image: {
  30775. source: "./media/characters/purri/boots.svg",
  30776. extra: 905/853,
  30777. bottom: 18/923
  30778. }
  30779. },
  30780. lying: {
  30781. height: math.unit(2, "feet"),
  30782. name: "Lying",
  30783. image: {
  30784. source: "./media/characters/purri/lying.svg",
  30785. extra: 940/843,
  30786. bottom: 146/1086
  30787. }
  30788. },
  30789. devious: {
  30790. height: math.unit(1.77, "feet"),
  30791. name: "Devious",
  30792. image: {
  30793. source: "./media/characters/purri/devious.svg",
  30794. extra: 1440/1155,
  30795. bottom: 147/1587
  30796. }
  30797. },
  30798. bean: {
  30799. height: math.unit(1.94, "feet"),
  30800. name: "Bean",
  30801. image: {
  30802. source: "./media/characters/purri/bean.svg"
  30803. }
  30804. },
  30805. },
  30806. [
  30807. {
  30808. name: "Micro",
  30809. height: math.unit(1, "mm")
  30810. },
  30811. {
  30812. name: "Normal",
  30813. height: math.unit(6 + 5/12, "feet"),
  30814. default: true
  30815. },
  30816. {
  30817. name: "Macro :3c",
  30818. height: math.unit(2, "miles")
  30819. },
  30820. ]
  30821. ))
  30822. characterMakers.push(() => makeCharacter(
  30823. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30824. {
  30825. front: {
  30826. height: math.unit(6 + 2/12, "feet"),
  30827. weight: math.unit(250, "lb"),
  30828. name: "Front",
  30829. image: {
  30830. source: "./media/characters/moonlight/front.svg",
  30831. extra: 1044/908,
  30832. bottom: 56/1100
  30833. }
  30834. },
  30835. feral: {
  30836. height: math.unit(3 + 1/12, "feet"),
  30837. weight: math.unit(50, "kg"),
  30838. name: "Feral",
  30839. image: {
  30840. source: "./media/characters/moonlight/feral.svg",
  30841. extra: 3705/2791,
  30842. bottom: 145/3850
  30843. }
  30844. },
  30845. paw: {
  30846. height: math.unit(1, "feet"),
  30847. name: "Paw",
  30848. image: {
  30849. source: "./media/characters/moonlight/paw.svg"
  30850. }
  30851. },
  30852. paws: {
  30853. height: math.unit(0.98, "feet"),
  30854. name: "Paws",
  30855. image: {
  30856. source: "./media/characters/moonlight/paws.svg",
  30857. extra: 939/939,
  30858. bottom: 50/989
  30859. }
  30860. },
  30861. mouth: {
  30862. height: math.unit(0.48, "feet"),
  30863. name: "Mouth",
  30864. image: {
  30865. source: "./media/characters/moonlight/mouth.svg"
  30866. }
  30867. },
  30868. dick: {
  30869. height: math.unit(1.46, "feet"),
  30870. name: "Dick",
  30871. image: {
  30872. source: "./media/characters/moonlight/dick.svg"
  30873. }
  30874. },
  30875. },
  30876. [
  30877. {
  30878. name: "Normal",
  30879. height: math.unit(6 + 2/12, "feet"),
  30880. default: true
  30881. },
  30882. {
  30883. name: "Macro",
  30884. height: math.unit(300, "feet")
  30885. },
  30886. {
  30887. name: "Macro+",
  30888. height: math.unit(1, "mile")
  30889. },
  30890. {
  30891. name: "Mt. Moon",
  30892. height: math.unit(5, "miles")
  30893. },
  30894. {
  30895. name: "Megamacro",
  30896. height: math.unit(15, "miles")
  30897. },
  30898. ]
  30899. ))
  30900. characterMakers.push(() => makeCharacter(
  30901. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30902. {
  30903. back: {
  30904. height: math.unit(6, "feet"),
  30905. weight: math.unit(150, "lb"),
  30906. name: "Back",
  30907. image: {
  30908. source: "./media/characters/sylen/back.svg",
  30909. extra: 1335/1273,
  30910. bottom: 107/1442
  30911. }
  30912. },
  30913. },
  30914. [
  30915. {
  30916. name: "Normal",
  30917. height: math.unit(5 + 5/12, "feet")
  30918. },
  30919. {
  30920. name: "Megamacro",
  30921. height: math.unit(3, "miles"),
  30922. default: true
  30923. },
  30924. ]
  30925. ))
  30926. characterMakers.push(() => makeCharacter(
  30927. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30928. {
  30929. front: {
  30930. height: math.unit(6, "feet"),
  30931. weight: math.unit(190, "lb"),
  30932. name: "Front",
  30933. image: {
  30934. source: "./media/characters/huttser/front.svg",
  30935. extra: 1152/1058,
  30936. bottom: 23/1175
  30937. }
  30938. },
  30939. side: {
  30940. height: math.unit(6, "feet"),
  30941. weight: math.unit(190, "lb"),
  30942. name: "Side",
  30943. image: {
  30944. source: "./media/characters/huttser/side.svg",
  30945. extra: 1174/1065,
  30946. bottom: 18/1192
  30947. }
  30948. },
  30949. back: {
  30950. height: math.unit(6, "feet"),
  30951. weight: math.unit(190, "lb"),
  30952. name: "Back",
  30953. image: {
  30954. source: "./media/characters/huttser/back.svg",
  30955. extra: 1158/1056,
  30956. bottom: 12/1170
  30957. }
  30958. },
  30959. },
  30960. [
  30961. ]
  30962. ))
  30963. characterMakers.push(() => makeCharacter(
  30964. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30965. {
  30966. side: {
  30967. height: math.unit(12 + 9/12, "feet"),
  30968. weight: math.unit(15000, "lb"),
  30969. name: "Side",
  30970. image: {
  30971. source: "./media/characters/faan/side.svg",
  30972. extra: 2747/2697,
  30973. bottom: 0/2747
  30974. }
  30975. },
  30976. front: {
  30977. height: math.unit(12 + 9/12, "feet"),
  30978. weight: math.unit(15000, "lb"),
  30979. name: "Front",
  30980. image: {
  30981. source: "./media/characters/faan/front.svg",
  30982. extra: 607/571,
  30983. bottom: 24/631
  30984. }
  30985. },
  30986. head: {
  30987. height: math.unit(2.85, "feet"),
  30988. name: "Head",
  30989. image: {
  30990. source: "./media/characters/faan/head.svg"
  30991. }
  30992. },
  30993. headAlt: {
  30994. height: math.unit(3.13, "feet"),
  30995. name: "Head-alt",
  30996. image: {
  30997. source: "./media/characters/faan/head-alt.svg"
  30998. }
  30999. },
  31000. },
  31001. [
  31002. {
  31003. name: "Normal",
  31004. height: math.unit(12 + 9/12, "feet"),
  31005. default: true
  31006. },
  31007. ]
  31008. ))
  31009. characterMakers.push(() => makeCharacter(
  31010. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31011. {
  31012. front: {
  31013. height: math.unit(6, "feet"),
  31014. weight: math.unit(300, "lb"),
  31015. name: "Front",
  31016. image: {
  31017. source: "./media/characters/tanio/front.svg",
  31018. extra: 711/673,
  31019. bottom: 25/736
  31020. }
  31021. },
  31022. },
  31023. [
  31024. {
  31025. name: "Normal",
  31026. height: math.unit(6, "feet"),
  31027. default: true
  31028. },
  31029. ]
  31030. ))
  31031. characterMakers.push(() => makeCharacter(
  31032. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31033. {
  31034. front: {
  31035. height: math.unit(3, "inches"),
  31036. name: "Front",
  31037. image: {
  31038. source: "./media/characters/noboru/front.svg",
  31039. extra: 1039/932,
  31040. bottom: 18/1057
  31041. }
  31042. },
  31043. },
  31044. [
  31045. {
  31046. name: "Micro",
  31047. height: math.unit(3, "inches"),
  31048. default: true
  31049. },
  31050. ]
  31051. ))
  31052. characterMakers.push(() => makeCharacter(
  31053. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31054. {
  31055. front: {
  31056. height: math.unit(1.85, "meters"),
  31057. weight: math.unit(80, "kg"),
  31058. name: "Front",
  31059. image: {
  31060. source: "./media/characters/daniel-barrett/front.svg",
  31061. extra: 355/337,
  31062. bottom: 9/364
  31063. }
  31064. },
  31065. },
  31066. [
  31067. {
  31068. name: "Pico",
  31069. height: math.unit(0.0433, "mm")
  31070. },
  31071. {
  31072. name: "Nano",
  31073. height: math.unit(1.5, "mm")
  31074. },
  31075. {
  31076. name: "Micro",
  31077. height: math.unit(5.3, "cm"),
  31078. default: true
  31079. },
  31080. {
  31081. name: "Normal",
  31082. height: math.unit(1.85, "meters")
  31083. },
  31084. {
  31085. name: "Macro",
  31086. height: math.unit(64.7, "meters")
  31087. },
  31088. {
  31089. name: "Megamacro",
  31090. height: math.unit(2.26, "km")
  31091. },
  31092. {
  31093. name: "Gigamacro",
  31094. height: math.unit(79, "km")
  31095. },
  31096. {
  31097. name: "Teramacro",
  31098. height: math.unit(2765, "km")
  31099. },
  31100. {
  31101. name: "Petamacro",
  31102. height: math.unit(96678, "km")
  31103. },
  31104. ]
  31105. ))
  31106. characterMakers.push(() => makeCharacter(
  31107. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31108. {
  31109. front: {
  31110. height: math.unit(30, "meters"),
  31111. weight: math.unit(400, "tons"),
  31112. name: "Front",
  31113. image: {
  31114. source: "./media/characters/zeel/front.svg",
  31115. extra: 2599/2599,
  31116. bottom: 226/2825
  31117. }
  31118. },
  31119. },
  31120. [
  31121. {
  31122. name: "Macro",
  31123. height: math.unit(30, "meters"),
  31124. default: true
  31125. },
  31126. ]
  31127. ))
  31128. characterMakers.push(() => makeCharacter(
  31129. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31130. {
  31131. front: {
  31132. height: math.unit(6 + 7/12, "feet"),
  31133. weight: math.unit(210, "lb"),
  31134. name: "Front",
  31135. image: {
  31136. source: "./media/characters/tarn/front.svg",
  31137. extra: 3517/3220,
  31138. bottom: 91/3608
  31139. }
  31140. },
  31141. back: {
  31142. height: math.unit(6 + 7/12, "feet"),
  31143. weight: math.unit(210, "lb"),
  31144. name: "Back",
  31145. image: {
  31146. source: "./media/characters/tarn/back.svg",
  31147. extra: 3566/3241,
  31148. bottom: 34/3600
  31149. }
  31150. },
  31151. dick: {
  31152. height: math.unit(1.65, "feet"),
  31153. name: "Dick",
  31154. image: {
  31155. source: "./media/characters/tarn/dick.svg"
  31156. }
  31157. },
  31158. paw: {
  31159. height: math.unit(1.80, "feet"),
  31160. name: "Paw",
  31161. image: {
  31162. source: "./media/characters/tarn/paw.svg"
  31163. }
  31164. },
  31165. tongue: {
  31166. height: math.unit(0.97, "feet"),
  31167. name: "Tongue",
  31168. image: {
  31169. source: "./media/characters/tarn/tongue.svg"
  31170. }
  31171. },
  31172. },
  31173. [
  31174. {
  31175. name: "Micro",
  31176. height: math.unit(4, "inches")
  31177. },
  31178. {
  31179. name: "Normal",
  31180. height: math.unit(6 + 7/12, "feet"),
  31181. default: true
  31182. },
  31183. {
  31184. name: "Macro",
  31185. height: math.unit(300, "feet")
  31186. },
  31187. ]
  31188. ))
  31189. characterMakers.push(() => makeCharacter(
  31190. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31191. {
  31192. front: {
  31193. height: math.unit(5 + 7/12, "feet"),
  31194. weight: math.unit(80, "kg"),
  31195. name: "Front",
  31196. image: {
  31197. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31198. extra: 3023/2865,
  31199. bottom: 33/3056
  31200. }
  31201. },
  31202. back: {
  31203. height: math.unit(5 + 7/12, "feet"),
  31204. weight: math.unit(80, "kg"),
  31205. name: "Back",
  31206. image: {
  31207. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31208. extra: 3020/2886,
  31209. bottom: 30/3050
  31210. }
  31211. },
  31212. dick: {
  31213. height: math.unit(0.98, "feet"),
  31214. name: "Dick",
  31215. image: {
  31216. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31217. }
  31218. },
  31219. anatomy: {
  31220. height: math.unit(2.86, "feet"),
  31221. name: "Anatomy",
  31222. image: {
  31223. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31224. }
  31225. },
  31226. },
  31227. [
  31228. {
  31229. name: "Really Small",
  31230. height: math.unit(2, "inches")
  31231. },
  31232. {
  31233. name: "Micro",
  31234. height: math.unit(5.583, "inches")
  31235. },
  31236. {
  31237. name: "Normal",
  31238. height: math.unit(5 + 7/12, "feet"),
  31239. default: true
  31240. },
  31241. {
  31242. name: "Macro",
  31243. height: math.unit(67, "feet")
  31244. },
  31245. {
  31246. name: "Megamacro",
  31247. height: math.unit(134, "feet")
  31248. },
  31249. ]
  31250. ))
  31251. characterMakers.push(() => makeCharacter(
  31252. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31253. {
  31254. front: {
  31255. height: math.unit(9, "feet"),
  31256. weight: math.unit(120, "lb"),
  31257. name: "Front",
  31258. image: {
  31259. source: "./media/characters/sally/front.svg",
  31260. extra: 1506/1349,
  31261. bottom: 66/1572
  31262. }
  31263. },
  31264. },
  31265. [
  31266. {
  31267. name: "Normal",
  31268. height: math.unit(9, "feet"),
  31269. default: true
  31270. },
  31271. ]
  31272. ))
  31273. characterMakers.push(() => makeCharacter(
  31274. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31275. {
  31276. front: {
  31277. height: math.unit(8, "feet"),
  31278. weight: math.unit(900, "lb"),
  31279. name: "Front",
  31280. image: {
  31281. source: "./media/characters/owen/front.svg",
  31282. extra: 1761/1657,
  31283. bottom: 74/1835
  31284. }
  31285. },
  31286. side: {
  31287. height: math.unit(8, "feet"),
  31288. weight: math.unit(900, "lb"),
  31289. name: "Side",
  31290. image: {
  31291. source: "./media/characters/owen/side.svg",
  31292. extra: 1797/1734,
  31293. bottom: 30/1827
  31294. }
  31295. },
  31296. back: {
  31297. height: math.unit(8, "feet"),
  31298. weight: math.unit(900, "lb"),
  31299. name: "Back",
  31300. image: {
  31301. source: "./media/characters/owen/back.svg",
  31302. extra: 1796/1706,
  31303. bottom: 59/1855
  31304. }
  31305. },
  31306. maw: {
  31307. height: math.unit(1.76, "feet"),
  31308. name: "Maw",
  31309. image: {
  31310. source: "./media/characters/owen/maw.svg"
  31311. }
  31312. },
  31313. },
  31314. [
  31315. {
  31316. name: "Normal",
  31317. height: math.unit(8, "feet"),
  31318. default: true
  31319. },
  31320. ]
  31321. ))
  31322. characterMakers.push(() => makeCharacter(
  31323. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31324. {
  31325. front: {
  31326. height: math.unit(4, "feet"),
  31327. weight: math.unit(400, "lb"),
  31328. name: "Front",
  31329. image: {
  31330. source: "./media/characters/ryth/front.svg",
  31331. extra: 876/691,
  31332. bottom: 25/901
  31333. }
  31334. },
  31335. },
  31336. [
  31337. {
  31338. name: "Normal",
  31339. height: math.unit(4, "feet"),
  31340. default: true
  31341. },
  31342. ]
  31343. ))
  31344. characterMakers.push(() => makeCharacter(
  31345. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31346. {
  31347. front: {
  31348. height: math.unit(7, "feet"),
  31349. weight: math.unit(180, "lb"),
  31350. name: "Front",
  31351. image: {
  31352. source: "./media/characters/necrolance/front.svg",
  31353. extra: 1062/947,
  31354. bottom: 41/1103
  31355. }
  31356. },
  31357. back: {
  31358. height: math.unit(7, "feet"),
  31359. weight: math.unit(180, "lb"),
  31360. name: "Back",
  31361. image: {
  31362. source: "./media/characters/necrolance/back.svg",
  31363. extra: 1045/984,
  31364. bottom: 14/1059
  31365. }
  31366. },
  31367. wing: {
  31368. height: math.unit(2.67, "feet"),
  31369. name: "Wing",
  31370. image: {
  31371. source: "./media/characters/necrolance/wing.svg"
  31372. }
  31373. },
  31374. },
  31375. [
  31376. {
  31377. name: "Normal",
  31378. height: math.unit(7, "feet"),
  31379. default: true
  31380. },
  31381. ]
  31382. ))
  31383. characterMakers.push(() => makeCharacter(
  31384. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31385. {
  31386. front: {
  31387. height: math.unit(76, "meters"),
  31388. weight: math.unit(30000, "tons"),
  31389. name: "Front",
  31390. image: {
  31391. source: "./media/characters/tyler/front.svg",
  31392. extra: 1640/1640,
  31393. bottom: 114/1754
  31394. }
  31395. },
  31396. },
  31397. [
  31398. {
  31399. name: "Macro",
  31400. height: math.unit(76, "meters"),
  31401. default: true
  31402. },
  31403. ]
  31404. ))
  31405. characterMakers.push(() => makeCharacter(
  31406. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31407. {
  31408. front: {
  31409. height: math.unit(4 + 11/12, "feet"),
  31410. weight: math.unit(132, "lb"),
  31411. name: "Front",
  31412. image: {
  31413. source: "./media/characters/icey/front.svg",
  31414. extra: 2750/2550,
  31415. bottom: 33/2783
  31416. }
  31417. },
  31418. back: {
  31419. height: math.unit(4 + 11/12, "feet"),
  31420. weight: math.unit(132, "lb"),
  31421. name: "Back",
  31422. image: {
  31423. source: "./media/characters/icey/back.svg",
  31424. extra: 2624/2481,
  31425. bottom: 35/2659
  31426. }
  31427. },
  31428. },
  31429. [
  31430. {
  31431. name: "Normal",
  31432. height: math.unit(4 + 11/12, "feet"),
  31433. default: true
  31434. },
  31435. ]
  31436. ))
  31437. characterMakers.push(() => makeCharacter(
  31438. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31439. {
  31440. front: {
  31441. height: math.unit(100, "feet"),
  31442. weight: math.unit(0, "lb"),
  31443. name: "Front",
  31444. image: {
  31445. source: "./media/characters/smile/front.svg",
  31446. extra: 2983/2912,
  31447. bottom: 162/3145
  31448. }
  31449. },
  31450. back: {
  31451. height: math.unit(100, "feet"),
  31452. weight: math.unit(0, "lb"),
  31453. name: "Back",
  31454. image: {
  31455. source: "./media/characters/smile/back.svg",
  31456. extra: 3143/3031,
  31457. bottom: 91/3234
  31458. }
  31459. },
  31460. head: {
  31461. height: math.unit(26.3, "feet"),
  31462. weight: math.unit(0, "lb"),
  31463. name: "Head",
  31464. image: {
  31465. source: "./media/characters/smile/head.svg"
  31466. }
  31467. },
  31468. collar: {
  31469. height: math.unit(5.3, "feet"),
  31470. weight: math.unit(0, "lb"),
  31471. name: "Collar",
  31472. image: {
  31473. source: "./media/characters/smile/collar.svg"
  31474. }
  31475. },
  31476. },
  31477. [
  31478. {
  31479. name: "Macro",
  31480. height: math.unit(100, "feet"),
  31481. default: true
  31482. },
  31483. ]
  31484. ))
  31485. characterMakers.push(() => makeCharacter(
  31486. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31487. {
  31488. dragon: {
  31489. height: math.unit(26, "feet"),
  31490. weight: math.unit(36, "tons"),
  31491. name: "Dragon",
  31492. image: {
  31493. source: "./media/characters/arimphae/dragon.svg",
  31494. extra: 1574/983,
  31495. bottom: 357/1931
  31496. }
  31497. },
  31498. drake: {
  31499. height: math.unit(9, "feet"),
  31500. weight: math.unit(1.5, "tons"),
  31501. name: "Drake",
  31502. image: {
  31503. source: "./media/characters/arimphae/drake.svg",
  31504. extra: 1120/925,
  31505. bottom: 435/1555
  31506. }
  31507. },
  31508. },
  31509. [
  31510. {
  31511. name: "Small",
  31512. height: math.unit(26*5/9, "feet")
  31513. },
  31514. {
  31515. name: "Normal",
  31516. height: math.unit(26, "feet"),
  31517. default: true
  31518. },
  31519. ]
  31520. ))
  31521. characterMakers.push(() => makeCharacter(
  31522. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31523. {
  31524. front: {
  31525. height: math.unit(8 + 9/12, "feet"),
  31526. name: "Front",
  31527. image: {
  31528. source: "./media/characters/xander/front.svg",
  31529. extra: 848/673,
  31530. bottom: 62/910
  31531. }
  31532. },
  31533. },
  31534. [
  31535. {
  31536. name: "Normal",
  31537. height: math.unit(8 + 9/12, "feet"),
  31538. default: true
  31539. },
  31540. {
  31541. name: "Gaze Grabber",
  31542. height: math.unit(13 + 8/12, "feet")
  31543. },
  31544. {
  31545. name: "Jaw Dropper",
  31546. height: math.unit(27, "feet")
  31547. },
  31548. {
  31549. name: "Show Stopper",
  31550. height: math.unit(136, "feet")
  31551. },
  31552. {
  31553. name: "Superstar",
  31554. height: math.unit(1.9e6, "miles")
  31555. },
  31556. ]
  31557. ))
  31558. characterMakers.push(() => makeCharacter(
  31559. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31560. {
  31561. side: {
  31562. height: math.unit(2100, "feet"),
  31563. name: "Side",
  31564. image: {
  31565. source: "./media/characters/osiris/side.svg",
  31566. extra: 1105/939,
  31567. bottom: 167/1272
  31568. }
  31569. },
  31570. },
  31571. [
  31572. {
  31573. name: "Macro",
  31574. height: math.unit(2100, "feet"),
  31575. default: true
  31576. },
  31577. ]
  31578. ))
  31579. characterMakers.push(() => makeCharacter(
  31580. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31581. {
  31582. front: {
  31583. height: math.unit(6 + 8/12, "feet"),
  31584. weight: math.unit(225, "lb"),
  31585. name: "Front",
  31586. image: {
  31587. source: "./media/characters/rhys-londe/front.svg",
  31588. extra: 2258/2141,
  31589. bottom: 188/2446
  31590. }
  31591. },
  31592. back: {
  31593. height: math.unit(6 + 8/12, "feet"),
  31594. weight: math.unit(225, "lb"),
  31595. name: "Back",
  31596. image: {
  31597. source: "./media/characters/rhys-londe/back.svg",
  31598. extra: 2237/2137,
  31599. bottom: 63/2300
  31600. }
  31601. },
  31602. frontNsfw: {
  31603. height: math.unit(6 + 8/12, "feet"),
  31604. weight: math.unit(225, "lb"),
  31605. name: "Front (NSFW)",
  31606. image: {
  31607. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31608. extra: 2258/2141,
  31609. bottom: 188/2446
  31610. }
  31611. },
  31612. backNsfw: {
  31613. height: math.unit(6 + 8/12, "feet"),
  31614. weight: math.unit(225, "lb"),
  31615. name: "Back (NSFW)",
  31616. image: {
  31617. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31618. extra: 2237/2137,
  31619. bottom: 63/2300
  31620. }
  31621. },
  31622. dick: {
  31623. height: math.unit(30, "inches"),
  31624. name: "Dick",
  31625. image: {
  31626. source: "./media/characters/rhys-londe/dick.svg"
  31627. }
  31628. },
  31629. maw: {
  31630. height: math.unit(1.6, "feet"),
  31631. name: "Maw",
  31632. image: {
  31633. source: "./media/characters/rhys-londe/maw.svg"
  31634. }
  31635. },
  31636. },
  31637. [
  31638. {
  31639. name: "Normal",
  31640. height: math.unit(6 + 8/12, "feet"),
  31641. default: true
  31642. },
  31643. ]
  31644. ))
  31645. characterMakers.push(() => makeCharacter(
  31646. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31647. {
  31648. front: {
  31649. height: math.unit(3 + 10/12, "feet"),
  31650. weight: math.unit(90, "lb"),
  31651. name: "Front",
  31652. image: {
  31653. source: "./media/characters/taivas-ensim/front.svg",
  31654. extra: 1327/1216,
  31655. bottom: 96/1423
  31656. }
  31657. },
  31658. back: {
  31659. height: math.unit(3 + 10/12, "feet"),
  31660. weight: math.unit(90, "lb"),
  31661. name: "Back",
  31662. image: {
  31663. source: "./media/characters/taivas-ensim/back.svg",
  31664. extra: 1355/1247,
  31665. bottom: 11/1366
  31666. }
  31667. },
  31668. frontNsfw: {
  31669. height: math.unit(3 + 10/12, "feet"),
  31670. weight: math.unit(90, "lb"),
  31671. name: "Front (NSFW)",
  31672. image: {
  31673. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31674. extra: 1327/1216,
  31675. bottom: 96/1423
  31676. }
  31677. },
  31678. backNsfw: {
  31679. height: math.unit(3 + 10/12, "feet"),
  31680. weight: math.unit(90, "lb"),
  31681. name: "Back (NSFW)",
  31682. image: {
  31683. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31684. extra: 1355/1247,
  31685. bottom: 11/1366
  31686. }
  31687. },
  31688. },
  31689. [
  31690. {
  31691. name: "Normal",
  31692. height: math.unit(3 + 10/12, "feet"),
  31693. default: true
  31694. },
  31695. ]
  31696. ))
  31697. characterMakers.push(() => makeCharacter(
  31698. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31699. {
  31700. front: {
  31701. height: math.unit(9 + 6/12, "feet"),
  31702. weight: math.unit(940, "lb"),
  31703. name: "Front",
  31704. image: {
  31705. source: "./media/characters/byliss/front.svg",
  31706. extra: 1327/1290,
  31707. bottom: 82/1409
  31708. }
  31709. },
  31710. back: {
  31711. height: math.unit(9 + 6/12, "feet"),
  31712. weight: math.unit(940, "lb"),
  31713. name: "Back",
  31714. image: {
  31715. source: "./media/characters/byliss/back.svg",
  31716. extra: 1376/1349,
  31717. bottom: 9/1385
  31718. }
  31719. },
  31720. frontNsfw: {
  31721. height: math.unit(9 + 6/12, "feet"),
  31722. weight: math.unit(940, "lb"),
  31723. name: "Front (NSFW)",
  31724. image: {
  31725. source: "./media/characters/byliss/front-nsfw.svg",
  31726. extra: 1327/1290,
  31727. bottom: 82/1409
  31728. }
  31729. },
  31730. backNsfw: {
  31731. height: math.unit(9 + 6/12, "feet"),
  31732. weight: math.unit(940, "lb"),
  31733. name: "Back (NSFW)",
  31734. image: {
  31735. source: "./media/characters/byliss/back-nsfw.svg",
  31736. extra: 1376/1349,
  31737. bottom: 9/1385
  31738. }
  31739. },
  31740. },
  31741. [
  31742. {
  31743. name: "Normal",
  31744. height: math.unit(9 + 6/12, "feet"),
  31745. default: true
  31746. },
  31747. ]
  31748. ))
  31749. characterMakers.push(() => makeCharacter(
  31750. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31751. {
  31752. front: {
  31753. height: math.unit(5 + 2/12, "feet"),
  31754. weight: math.unit(200, "lb"),
  31755. name: "Front",
  31756. image: {
  31757. source: "./media/characters/noraly/front.svg",
  31758. extra: 4985/4773,
  31759. bottom: 150/5135
  31760. }
  31761. },
  31762. full: {
  31763. height: math.unit(5 + 2/12, "feet"),
  31764. weight: math.unit(164, "lb"),
  31765. name: "Full",
  31766. image: {
  31767. source: "./media/characters/noraly/full.svg",
  31768. extra: 1114/1059,
  31769. bottom: 35/1149
  31770. }
  31771. },
  31772. fuller: {
  31773. height: math.unit(5 + 2/12, "feet"),
  31774. weight: math.unit(230, "lb"),
  31775. name: "Fuller",
  31776. image: {
  31777. source: "./media/characters/noraly/fuller.svg",
  31778. extra: 1114/1059,
  31779. bottom: 35/1149
  31780. }
  31781. },
  31782. fullest: {
  31783. height: math.unit(5 + 2/12, "feet"),
  31784. weight: math.unit(300, "lb"),
  31785. name: "Fullest",
  31786. image: {
  31787. source: "./media/characters/noraly/fullest.svg",
  31788. extra: 1114/1059,
  31789. bottom: 35/1149
  31790. }
  31791. },
  31792. },
  31793. [
  31794. {
  31795. name: "Normal",
  31796. height: math.unit(5 + 2/12, "feet"),
  31797. default: true
  31798. },
  31799. ]
  31800. ))
  31801. characterMakers.push(() => makeCharacter(
  31802. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31803. {
  31804. front: {
  31805. height: math.unit(5 + 2/12, "feet"),
  31806. weight: math.unit(210, "lb"),
  31807. name: "Front",
  31808. image: {
  31809. source: "./media/characters/pera/front.svg",
  31810. extra: 1560/1531,
  31811. bottom: 165/1725
  31812. }
  31813. },
  31814. back: {
  31815. height: math.unit(5 + 2/12, "feet"),
  31816. weight: math.unit(210, "lb"),
  31817. name: "Back",
  31818. image: {
  31819. source: "./media/characters/pera/back.svg",
  31820. extra: 1523/1493,
  31821. bottom: 152/1675
  31822. }
  31823. },
  31824. dick: {
  31825. height: math.unit(2.4, "feet"),
  31826. name: "Dick",
  31827. image: {
  31828. source: "./media/characters/pera/dick.svg"
  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: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31842. {
  31843. front: {
  31844. height: math.unit(12, "feet"),
  31845. weight: math.unit(3200, "lb"),
  31846. name: "Front",
  31847. image: {
  31848. source: "./media/characters/julian/front.svg",
  31849. extra: 2962/2701,
  31850. bottom: 184/3146
  31851. }
  31852. },
  31853. maw: {
  31854. height: math.unit(5.35, "feet"),
  31855. name: "Maw",
  31856. image: {
  31857. source: "./media/characters/julian/maw.svg"
  31858. }
  31859. },
  31860. paw: {
  31861. height: math.unit(3.07, "feet"),
  31862. name: "Paw",
  31863. image: {
  31864. source: "./media/characters/julian/paw.svg"
  31865. }
  31866. },
  31867. },
  31868. [
  31869. {
  31870. name: "Default",
  31871. height: math.unit(12, "feet"),
  31872. default: true
  31873. },
  31874. {
  31875. name: "Big",
  31876. height: math.unit(50, "feet")
  31877. },
  31878. {
  31879. name: "Really Big",
  31880. height: math.unit(1, "mile")
  31881. },
  31882. {
  31883. name: "Extremely Big",
  31884. height: math.unit(100, "miles")
  31885. },
  31886. {
  31887. name: "Planet Hugger",
  31888. height: math.unit(200, "megameters")
  31889. },
  31890. {
  31891. name: "Unreasonably Big",
  31892. height: math.unit(1e300, "meters")
  31893. },
  31894. ]
  31895. ))
  31896. characterMakers.push(() => makeCharacter(
  31897. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31898. {
  31899. solgooleo: {
  31900. height: math.unit(4, "meters"),
  31901. weight: math.unit(6000*1.5, "kg"),
  31902. volume: math.unit(6000, "liters"),
  31903. name: "Solgooleo",
  31904. image: {
  31905. source: "./media/characters/pi/solgooleo.svg",
  31906. extra: 388/331,
  31907. bottom: 29/417
  31908. }
  31909. },
  31910. },
  31911. [
  31912. {
  31913. name: "Normal",
  31914. height: math.unit(4, "meters"),
  31915. default: true
  31916. },
  31917. ]
  31918. ))
  31919. characterMakers.push(() => makeCharacter(
  31920. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31921. {
  31922. front: {
  31923. height: math.unit(8 + 2/12, "feet"),
  31924. weight: math.unit(4, "tons"),
  31925. name: "Front",
  31926. image: {
  31927. source: "./media/characters/shaun/front.svg",
  31928. extra: 1550/1505,
  31929. bottom: 353/1903
  31930. }
  31931. },
  31932. },
  31933. [
  31934. {
  31935. name: "Lorg",
  31936. height: math.unit(8 + 2/12, "feet"),
  31937. default: true
  31938. },
  31939. ]
  31940. ))
  31941. characterMakers.push(() => makeCharacter(
  31942. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31943. {
  31944. front: {
  31945. height: math.unit(7, "feet"),
  31946. name: "Front",
  31947. image: {
  31948. source: "./media/characters/sini/front.svg",
  31949. extra: 726/678,
  31950. bottom: 35/761
  31951. }
  31952. },
  31953. back: {
  31954. height: math.unit(7, "feet"),
  31955. name: "Back",
  31956. image: {
  31957. source: "./media/characters/sini/back.svg",
  31958. extra: 743/701,
  31959. bottom: 12/755
  31960. }
  31961. },
  31962. mawAnthro: {
  31963. height: math.unit(2.14, "feet"),
  31964. name: "Maw (Anthro)",
  31965. image: {
  31966. source: "./media/characters/sini/maw-anthro.svg"
  31967. }
  31968. },
  31969. dick: {
  31970. height: math.unit(1.45, "feet"),
  31971. name: "Dick (Anthro)",
  31972. image: {
  31973. source: "./media/characters/sini/dick-anthro.svg"
  31974. }
  31975. },
  31976. feral: {
  31977. height: math.unit(13, "feet"),
  31978. name: "Feral",
  31979. image: {
  31980. source: "./media/characters/sini/feral.svg",
  31981. extra: 814/605,
  31982. bottom: 11/825
  31983. }
  31984. },
  31985. mawFeral: {
  31986. height: math.unit(4.6, "feet"),
  31987. name: "Maw-feral",
  31988. image: {
  31989. source: "./media/characters/sini/maw-feral.svg"
  31990. }
  31991. },
  31992. footFeral: {
  31993. height: math.unit(4.2, "feet"),
  31994. name: "Foot-feral",
  31995. image: {
  31996. source: "./media/characters/sini/foot-feral.svg"
  31997. }
  31998. },
  31999. },
  32000. [
  32001. {
  32002. name: "Normal",
  32003. height: math.unit(7, "feet"),
  32004. default: true
  32005. },
  32006. ]
  32007. ))
  32008. characterMakers.push(() => makeCharacter(
  32009. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32010. {
  32011. side: {
  32012. height: math.unit(13, "meters"),
  32013. weight: math.unit(9072, "kg"),
  32014. name: "Side",
  32015. image: {
  32016. source: "./media/characters/raylldo/side.svg",
  32017. extra: 403/344,
  32018. bottom: 42/445
  32019. }
  32020. },
  32021. leaping: {
  32022. height: math.unit(12.3, "meters"),
  32023. weight: math.unit(9072, "kg"),
  32024. name: "Leaping",
  32025. image: {
  32026. source: "./media/characters/raylldo/leaping.svg",
  32027. extra: 470/249,
  32028. bottom: 13/483
  32029. }
  32030. },
  32031. flying: {
  32032. height: math.unit(18, "meters"),
  32033. weight: math.unit(9072, "kg"),
  32034. name: "Flying",
  32035. image: {
  32036. source: "./media/characters/raylldo/flying.svg"
  32037. }
  32038. },
  32039. head: {
  32040. height: math.unit(5.85, "meters"),
  32041. name: "Head",
  32042. image: {
  32043. source: "./media/characters/raylldo/head.svg"
  32044. }
  32045. },
  32046. maw: {
  32047. height: math.unit(5.32, "meters"),
  32048. name: "Maw",
  32049. image: {
  32050. source: "./media/characters/raylldo/maw.svg"
  32051. }
  32052. },
  32053. eye: {
  32054. height: math.unit(0.54, "meters"),
  32055. name: "Eye",
  32056. image: {
  32057. source: "./media/characters/raylldo/eye.svg"
  32058. }
  32059. },
  32060. },
  32061. [
  32062. {
  32063. name: "Normal",
  32064. height: math.unit(13, "meters"),
  32065. default: true
  32066. },
  32067. ]
  32068. ))
  32069. characterMakers.push(() => makeCharacter(
  32070. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32071. {
  32072. anthroFront: {
  32073. height: math.unit(9, "feet"),
  32074. weight: math.unit(600, "lb"),
  32075. name: "Anthro (Front)",
  32076. image: {
  32077. source: "./media/characters/glint/anthro-front.svg",
  32078. extra: 1097/1018,
  32079. bottom: 28/1125
  32080. }
  32081. },
  32082. anthroBack: {
  32083. height: math.unit(9, "feet"),
  32084. weight: math.unit(600, "lb"),
  32085. name: "Anthro (Back)",
  32086. image: {
  32087. source: "./media/characters/glint/anthro-back.svg",
  32088. extra: 1154/997,
  32089. bottom: 36/1190
  32090. }
  32091. },
  32092. feral: {
  32093. height: math.unit(11, "feet"),
  32094. weight: math.unit(50000, "lb"),
  32095. name: "Feral",
  32096. image: {
  32097. source: "./media/characters/glint/feral.svg",
  32098. extra: 3035/1585,
  32099. bottom: 1169/4204
  32100. }
  32101. },
  32102. dickAnthro: {
  32103. height: math.unit(0.7, "meters"),
  32104. name: "Dick (Anthro)",
  32105. image: {
  32106. source: "./media/characters/glint/dick-anthro.svg"
  32107. }
  32108. },
  32109. dickFeral: {
  32110. height: math.unit(2.65, "meters"),
  32111. name: "Dick (Feral)",
  32112. image: {
  32113. source: "./media/characters/glint/dick-feral.svg"
  32114. }
  32115. },
  32116. slitHidden: {
  32117. height: math.unit(5.85, "meters"),
  32118. name: "Slit (Hidden)",
  32119. image: {
  32120. source: "./media/characters/glint/slit-hidden.svg"
  32121. }
  32122. },
  32123. slitErect: {
  32124. height: math.unit(5.85, "meters"),
  32125. name: "Slit (Erect)",
  32126. image: {
  32127. source: "./media/characters/glint/slit-erect.svg"
  32128. }
  32129. },
  32130. mawAnthro: {
  32131. height: math.unit(0.63, "meters"),
  32132. name: "Maw (Anthro)",
  32133. image: {
  32134. source: "./media/characters/glint/maw.svg"
  32135. }
  32136. },
  32137. mawFeral: {
  32138. height: math.unit(2.89, "meters"),
  32139. name: "Maw (Feral)",
  32140. image: {
  32141. source: "./media/characters/glint/maw.svg"
  32142. }
  32143. },
  32144. },
  32145. [
  32146. {
  32147. name: "Normal",
  32148. height: math.unit(9, "feet"),
  32149. default: true
  32150. },
  32151. ]
  32152. ))
  32153. characterMakers.push(() => makeCharacter(
  32154. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32155. {
  32156. side: {
  32157. height: math.unit(15, "feet"),
  32158. weight: math.unit(5000, "kg"),
  32159. name: "Side",
  32160. image: {
  32161. source: "./media/characters/kairne/side.svg",
  32162. extra: 979/811,
  32163. bottom: 13/992
  32164. }
  32165. },
  32166. front: {
  32167. height: math.unit(15, "feet"),
  32168. weight: math.unit(5000, "kg"),
  32169. name: "Front",
  32170. image: {
  32171. source: "./media/characters/kairne/front.svg",
  32172. extra: 908/814,
  32173. bottom: 26/934
  32174. }
  32175. },
  32176. sideNsfw: {
  32177. height: math.unit(15, "feet"),
  32178. weight: math.unit(5000, "kg"),
  32179. name: "Side (NSFW)",
  32180. image: {
  32181. source: "./media/characters/kairne/side-nsfw.svg",
  32182. extra: 979/811,
  32183. bottom: 13/992
  32184. }
  32185. },
  32186. frontNsfw: {
  32187. height: math.unit(15, "feet"),
  32188. weight: math.unit(5000, "kg"),
  32189. name: "Front (NSFW)",
  32190. image: {
  32191. source: "./media/characters/kairne/front-nsfw.svg",
  32192. extra: 908/814,
  32193. bottom: 26/934
  32194. }
  32195. },
  32196. dickCaged: {
  32197. height: math.unit(0.65, "meters"),
  32198. name: "Dick-caged",
  32199. image: {
  32200. source: "./media/characters/kairne/dick-caged.svg"
  32201. }
  32202. },
  32203. dick: {
  32204. height: math.unit(0.79, "meters"),
  32205. name: "Dick",
  32206. image: {
  32207. source: "./media/characters/kairne/dick.svg"
  32208. }
  32209. },
  32210. genitals: {
  32211. height: math.unit(1.29, "meters"),
  32212. name: "Genitals",
  32213. image: {
  32214. source: "./media/characters/kairne/genitals.svg"
  32215. }
  32216. },
  32217. maw: {
  32218. height: math.unit(1.73, "meters"),
  32219. name: "Maw",
  32220. image: {
  32221. source: "./media/characters/kairne/maw.svg"
  32222. }
  32223. },
  32224. },
  32225. [
  32226. {
  32227. name: "Normal",
  32228. height: math.unit(15, "feet"),
  32229. default: true
  32230. },
  32231. ]
  32232. ))
  32233. characterMakers.push(() => makeCharacter(
  32234. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32235. {
  32236. front: {
  32237. height: math.unit(5 + 8/12, "feet"),
  32238. weight: math.unit(139, "lb"),
  32239. name: "Front",
  32240. image: {
  32241. source: "./media/characters/biscuit-jackal/front.svg",
  32242. extra: 2106/1961,
  32243. bottom: 58/2164
  32244. }
  32245. },
  32246. back: {
  32247. height: math.unit(5 + 8/12, "feet"),
  32248. weight: math.unit(139, "lb"),
  32249. name: "Back",
  32250. image: {
  32251. source: "./media/characters/biscuit-jackal/back.svg",
  32252. extra: 2132/1976,
  32253. bottom: 57/2189
  32254. }
  32255. },
  32256. werejackal: {
  32257. height: math.unit(6 + 3/12, "feet"),
  32258. weight: math.unit(188, "lb"),
  32259. name: "Werejackal",
  32260. image: {
  32261. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32262. extra: 2373/2178,
  32263. bottom: 53/2426
  32264. }
  32265. },
  32266. },
  32267. [
  32268. {
  32269. name: "Normal",
  32270. height: math.unit(5 + 8/12, "feet"),
  32271. default: true
  32272. },
  32273. ]
  32274. ))
  32275. characterMakers.push(() => makeCharacter(
  32276. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32277. {
  32278. front: {
  32279. height: math.unit(140, "cm"),
  32280. weight: math.unit(45, "kg"),
  32281. name: "Front",
  32282. image: {
  32283. source: "./media/characters/tayra-white/front.svg",
  32284. extra: 2229/2192,
  32285. bottom: 75/2304
  32286. }
  32287. },
  32288. },
  32289. [
  32290. {
  32291. name: "Normal",
  32292. height: math.unit(140, "cm"),
  32293. default: true
  32294. },
  32295. ]
  32296. ))
  32297. characterMakers.push(() => makeCharacter(
  32298. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32299. {
  32300. front: {
  32301. height: math.unit(4 + 5/12, "feet"),
  32302. name: "Front",
  32303. image: {
  32304. source: "./media/characters/scoop/front.svg",
  32305. extra: 1257/1136,
  32306. bottom: 69/1326
  32307. }
  32308. },
  32309. back: {
  32310. height: math.unit(4 + 5/12, "feet"),
  32311. name: "Back",
  32312. image: {
  32313. source: "./media/characters/scoop/back.svg",
  32314. extra: 1321/1152,
  32315. bottom: 32/1353
  32316. }
  32317. },
  32318. maw: {
  32319. height: math.unit(0.68, "feet"),
  32320. name: "Maw",
  32321. image: {
  32322. source: "./media/characters/scoop/maw.svg"
  32323. }
  32324. },
  32325. },
  32326. [
  32327. {
  32328. name: "Really Small",
  32329. height: math.unit(1, "mm")
  32330. },
  32331. {
  32332. name: "Micro",
  32333. height: math.unit(1, "inch")
  32334. },
  32335. {
  32336. name: "Normal",
  32337. height: math.unit(4 + 5/12, "feet"),
  32338. default: true
  32339. },
  32340. {
  32341. name: "Macro",
  32342. height: math.unit(200, "feet")
  32343. },
  32344. {
  32345. name: "Megamacro",
  32346. height: math.unit(3240, "feet")
  32347. },
  32348. {
  32349. name: "Teramacro",
  32350. height: math.unit(2500, "miles")
  32351. },
  32352. ]
  32353. ))
  32354. characterMakers.push(() => makeCharacter(
  32355. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32356. {
  32357. front: {
  32358. height: math.unit(15 + 7/12, "feet"),
  32359. name: "Front",
  32360. image: {
  32361. source: "./media/characters/saphinara/front.svg",
  32362. extra: 604/546,
  32363. bottom: 19/623
  32364. }
  32365. },
  32366. side: {
  32367. height: math.unit(15 + 7/12, "feet"),
  32368. name: "Side",
  32369. image: {
  32370. source: "./media/characters/saphinara/side.svg",
  32371. extra: 605/547,
  32372. bottom: 6/611
  32373. }
  32374. },
  32375. back: {
  32376. height: math.unit(15 + 7/12, "feet"),
  32377. name: "Back",
  32378. image: {
  32379. source: "./media/characters/saphinara/back.svg",
  32380. extra: 591/531,
  32381. bottom: 13/604
  32382. }
  32383. },
  32384. frontTail: {
  32385. height: math.unit(15 + 7/12, "feet"),
  32386. name: "Front (Full Tail)",
  32387. image: {
  32388. source: "./media/characters/saphinara/front-tail.svg",
  32389. extra: 748/547,
  32390. bottom: 66/814
  32391. }
  32392. },
  32393. },
  32394. [
  32395. {
  32396. name: "Normal",
  32397. height: math.unit(15 + 7/12, "feet"),
  32398. default: true
  32399. },
  32400. {
  32401. name: "Angry",
  32402. height: math.unit(30 + 6/12, "feet")
  32403. },
  32404. {
  32405. name: "Enraged",
  32406. height: math.unit(102 + 1/12, "feet")
  32407. },
  32408. ]
  32409. ))
  32410. characterMakers.push(() => makeCharacter(
  32411. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32412. {
  32413. front: {
  32414. height: math.unit(6 + 8/12, "feet"),
  32415. weight: math.unit(300, "lb"),
  32416. name: "Front",
  32417. image: {
  32418. source: "./media/characters/jrain/front.svg",
  32419. extra: 3039/2865,
  32420. bottom: 399/3438
  32421. }
  32422. },
  32423. back: {
  32424. height: math.unit(6 + 8/12, "feet"),
  32425. weight: math.unit(300, "lb"),
  32426. name: "Back",
  32427. image: {
  32428. source: "./media/characters/jrain/back.svg",
  32429. extra: 3089/2938,
  32430. bottom: 172/3261
  32431. }
  32432. },
  32433. head: {
  32434. height: math.unit(2.14, "feet"),
  32435. name: "Head",
  32436. image: {
  32437. source: "./media/characters/jrain/head.svg"
  32438. }
  32439. },
  32440. maw: {
  32441. height: math.unit(1.77, "feet"),
  32442. name: "Maw",
  32443. image: {
  32444. source: "./media/characters/jrain/maw.svg"
  32445. }
  32446. },
  32447. leftHand: {
  32448. height: math.unit(1.1, "feet"),
  32449. name: "Left Hand",
  32450. image: {
  32451. source: "./media/characters/jrain/left-hand.svg"
  32452. }
  32453. },
  32454. rightHand: {
  32455. height: math.unit(1.1, "feet"),
  32456. name: "Right Hand",
  32457. image: {
  32458. source: "./media/characters/jrain/right-hand.svg"
  32459. }
  32460. },
  32461. eye: {
  32462. height: math.unit(0.35, "feet"),
  32463. name: "Eye",
  32464. image: {
  32465. source: "./media/characters/jrain/eye.svg"
  32466. }
  32467. },
  32468. },
  32469. [
  32470. {
  32471. name: "Normal",
  32472. height: math.unit(6 + 8/12, "feet"),
  32473. default: true
  32474. },
  32475. {
  32476. name: "Casually Large",
  32477. height: math.unit(25, "feet")
  32478. },
  32479. {
  32480. name: "Giant",
  32481. height: math.unit(100, "feet")
  32482. },
  32483. {
  32484. name: "Kaiju",
  32485. height: math.unit(300, "feet")
  32486. },
  32487. ]
  32488. ))
  32489. characterMakers.push(() => makeCharacter(
  32490. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32491. {
  32492. dragon: {
  32493. height: math.unit(5, "meters"),
  32494. name: "Dragon",
  32495. image: {
  32496. source: "./media/characters/sabrina/dragon.svg",
  32497. extra: 3670 / 2365,
  32498. bottom: 333 / 4003
  32499. }
  32500. },
  32501. gryphon: {
  32502. height: math.unit(3, "meters"),
  32503. name: "Gryphon",
  32504. image: {
  32505. source: "./media/characters/sabrina/gryphon.svg",
  32506. extra: 1576 / 945,
  32507. bottom: 71 / 1647
  32508. }
  32509. },
  32510. snake: {
  32511. height: math.unit(12, "meters"),
  32512. name: "Snake",
  32513. image: {
  32514. source: "./media/characters/sabrina/snake.svg",
  32515. extra: 1758 / 1320,
  32516. bottom: 186 / 1944
  32517. }
  32518. },
  32519. collar: {
  32520. height: math.unit(1.86, "meters"),
  32521. name: "Collar",
  32522. image: {
  32523. source: "./media/characters/sabrina/collar.svg"
  32524. }
  32525. },
  32526. eye: {
  32527. height: math.unit(0.53, "meters"),
  32528. name: "Eye",
  32529. image: {
  32530. source: "./media/characters/sabrina/eye.svg"
  32531. }
  32532. },
  32533. foot: {
  32534. height: math.unit(1.86, "meters"),
  32535. name: "Foot",
  32536. image: {
  32537. source: "./media/characters/sabrina/foot.svg"
  32538. }
  32539. },
  32540. hand: {
  32541. height: math.unit(1.32, "meters"),
  32542. name: "Hand",
  32543. image: {
  32544. source: "./media/characters/sabrina/hand.svg"
  32545. }
  32546. },
  32547. head: {
  32548. height: math.unit(2.44, "meters"),
  32549. name: "Head",
  32550. image: {
  32551. source: "./media/characters/sabrina/head.svg"
  32552. }
  32553. },
  32554. headAngry: {
  32555. height: math.unit(2.44, "meters"),
  32556. name: "Head (Angry))",
  32557. image: {
  32558. source: "./media/characters/sabrina/head-angry.svg"
  32559. }
  32560. },
  32561. maw: {
  32562. height: math.unit(1.65, "meters"),
  32563. name: "Maw",
  32564. image: {
  32565. source: "./media/characters/sabrina/maw.svg"
  32566. }
  32567. },
  32568. spikes: {
  32569. height: math.unit(1.69, "meters"),
  32570. name: "Spikes",
  32571. image: {
  32572. source: "./media/characters/sabrina/spikes.svg"
  32573. }
  32574. },
  32575. stomach: {
  32576. height: math.unit(1.15, "meters"),
  32577. name: "Stomach",
  32578. image: {
  32579. source: "./media/characters/sabrina/stomach.svg"
  32580. }
  32581. },
  32582. tongue: {
  32583. height: math.unit(1.27, "meters"),
  32584. name: "Tongue",
  32585. image: {
  32586. source: "./media/characters/sabrina/tongue.svg"
  32587. }
  32588. },
  32589. wingDorsal: {
  32590. height: math.unit(4.85, "meters"),
  32591. name: "Wing (Dorsal)",
  32592. image: {
  32593. source: "./media/characters/sabrina/wing-dorsal.svg"
  32594. }
  32595. },
  32596. wingVentral: {
  32597. height: math.unit(4.85, "meters"),
  32598. name: "Wing (Ventral)",
  32599. image: {
  32600. source: "./media/characters/sabrina/wing-ventral.svg"
  32601. }
  32602. },
  32603. },
  32604. [
  32605. {
  32606. name: "Normal",
  32607. height: math.unit(5, "meters"),
  32608. default: true
  32609. },
  32610. ]
  32611. ))
  32612. characterMakers.push(() => makeCharacter(
  32613. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32614. {
  32615. frontMaid: {
  32616. height: math.unit(5 + 5/12, "feet"),
  32617. weight: math.unit(130, "lb"),
  32618. name: "Front (Maid)",
  32619. image: {
  32620. source: "./media/characters/midnight-tales/front-maid.svg",
  32621. extra: 489/454,
  32622. bottom: 61/550
  32623. }
  32624. },
  32625. frontFormal: {
  32626. height: math.unit(5 + 5/12, "feet"),
  32627. weight: math.unit(130, "lb"),
  32628. name: "Front (Formal)",
  32629. image: {
  32630. source: "./media/characters/midnight-tales/front-formal.svg",
  32631. extra: 489/454,
  32632. bottom: 61/550
  32633. }
  32634. },
  32635. back: {
  32636. height: math.unit(5 + 5/12, "feet"),
  32637. weight: math.unit(130, "lb"),
  32638. name: "Back",
  32639. image: {
  32640. source: "./media/characters/midnight-tales/back.svg",
  32641. extra: 498/456,
  32642. bottom: 33/531
  32643. }
  32644. },
  32645. frontBeast: {
  32646. height: math.unit(40, "feet"),
  32647. weight: math.unit(64000, "lb"),
  32648. name: "Front (Beast)",
  32649. image: {
  32650. source: "./media/characters/midnight-tales/front-beast.svg",
  32651. extra: 927/860,
  32652. bottom: 53/980
  32653. }
  32654. },
  32655. backBeast: {
  32656. height: math.unit(40, "feet"),
  32657. weight: math.unit(64000, "lb"),
  32658. name: "Back (Beast)",
  32659. image: {
  32660. source: "./media/characters/midnight-tales/back-beast.svg",
  32661. extra: 929/855,
  32662. bottom: 16/945
  32663. }
  32664. },
  32665. footBeast: {
  32666. height: math.unit(6.7, "feet"),
  32667. name: "Foot (Beast)",
  32668. image: {
  32669. source: "./media/characters/midnight-tales/foot-beast.svg"
  32670. }
  32671. },
  32672. headBeast: {
  32673. height: math.unit(8, "feet"),
  32674. name: "Head (Beast)",
  32675. image: {
  32676. source: "./media/characters/midnight-tales/head-beast.svg"
  32677. }
  32678. },
  32679. },
  32680. [
  32681. {
  32682. name: "Normal",
  32683. height: math.unit(5 + 5 / 12, "feet"),
  32684. default: true
  32685. },
  32686. {
  32687. name: "Macro",
  32688. height: math.unit(25, "feet")
  32689. },
  32690. ]
  32691. ))
  32692. characterMakers.push(() => makeCharacter(
  32693. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32694. {
  32695. front: {
  32696. height: math.unit(5 + 10/12, "feet"),
  32697. name: "Front",
  32698. image: {
  32699. source: "./media/characters/argon/front.svg",
  32700. extra: 2009/1935,
  32701. bottom: 118/2127
  32702. }
  32703. },
  32704. back: {
  32705. height: math.unit(5 + 10/12, "feet"),
  32706. name: "Back",
  32707. image: {
  32708. source: "./media/characters/argon/back.svg",
  32709. extra: 2047/1992,
  32710. bottom: 20/2067
  32711. }
  32712. },
  32713. frontDressed: {
  32714. height: math.unit(5 + 10/12, "feet"),
  32715. name: "Front (Dressed)",
  32716. image: {
  32717. source: "./media/characters/argon/front-dressed.svg",
  32718. extra: 2009/1935,
  32719. bottom: 118/2127
  32720. }
  32721. },
  32722. },
  32723. [
  32724. {
  32725. name: "Normal",
  32726. height: math.unit(5 + 10/12, "feet"),
  32727. default: true
  32728. },
  32729. ]
  32730. ))
  32731. characterMakers.push(() => makeCharacter(
  32732. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32733. {
  32734. front: {
  32735. height: math.unit(8 + 6/12, "feet"),
  32736. weight: math.unit(1150, "lb"),
  32737. name: "Front",
  32738. image: {
  32739. source: "./media/characters/kichi/front.svg",
  32740. extra: 1267/1164,
  32741. bottom: 61/1328
  32742. }
  32743. },
  32744. back: {
  32745. height: math.unit(8 + 6/12, "feet"),
  32746. weight: math.unit(1150, "lb"),
  32747. name: "Back",
  32748. image: {
  32749. source: "./media/characters/kichi/back.svg",
  32750. extra: 1273/1166,
  32751. bottom: 33/1306
  32752. }
  32753. },
  32754. },
  32755. [
  32756. {
  32757. name: "Normal",
  32758. height: math.unit(8 + 6/12, "feet"),
  32759. default: true
  32760. },
  32761. ]
  32762. ))
  32763. characterMakers.push(() => makeCharacter(
  32764. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32765. {
  32766. front: {
  32767. height: math.unit(6, "feet"),
  32768. weight: math.unit(210, "lb"),
  32769. name: "Front",
  32770. image: {
  32771. source: "./media/characters/manetel-greyscale/front.svg",
  32772. extra: 350/312,
  32773. bottom: 8/358
  32774. }
  32775. },
  32776. },
  32777. [
  32778. {
  32779. name: "Micro",
  32780. height: math.unit(2, "inches")
  32781. },
  32782. {
  32783. name: "Normal",
  32784. height: math.unit(6, "feet"),
  32785. default: true
  32786. },
  32787. {
  32788. name: "Minimacro",
  32789. height: math.unit(17, "feet")
  32790. },
  32791. {
  32792. name: "Macro",
  32793. height: math.unit(117, "feet")
  32794. },
  32795. ]
  32796. ))
  32797. characterMakers.push(() => makeCharacter(
  32798. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32799. {
  32800. side: {
  32801. height: math.unit(5 + 1/12, "feet"),
  32802. weight: math.unit(418, "lb"),
  32803. name: "Side",
  32804. image: {
  32805. source: "./media/characters/softpurr/side.svg",
  32806. extra: 1993/1945,
  32807. bottom: 134/2127
  32808. }
  32809. },
  32810. front: {
  32811. height: math.unit(5 + 1/12, "feet"),
  32812. weight: math.unit(418, "lb"),
  32813. name: "Front",
  32814. image: {
  32815. source: "./media/characters/softpurr/front.svg",
  32816. extra: 1950/1856,
  32817. bottom: 174/2124
  32818. }
  32819. },
  32820. paw: {
  32821. height: math.unit(1, "feet"),
  32822. name: "Paw",
  32823. image: {
  32824. source: "./media/characters/softpurr/paw.svg"
  32825. }
  32826. },
  32827. },
  32828. [
  32829. {
  32830. name: "Normal",
  32831. height: math.unit(5 + 1/12, "feet"),
  32832. default: true
  32833. },
  32834. ]
  32835. ))
  32836. characterMakers.push(() => makeCharacter(
  32837. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32838. {
  32839. front: {
  32840. height: math.unit(260, "meters"),
  32841. name: "Front",
  32842. image: {
  32843. source: "./media/characters/anahita/front.svg",
  32844. extra: 665/635,
  32845. bottom: 89/754
  32846. }
  32847. },
  32848. },
  32849. [
  32850. {
  32851. name: "Macro",
  32852. height: math.unit(260, "meters"),
  32853. default: true
  32854. },
  32855. ]
  32856. ))
  32857. characterMakers.push(() => makeCharacter(
  32858. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32859. {
  32860. front: {
  32861. height: math.unit(4 + 10/12, "feet"),
  32862. weight: math.unit(160, "lb"),
  32863. name: "Front",
  32864. image: {
  32865. source: "./media/characters/chip-mouse/front.svg",
  32866. extra: 3528/3408,
  32867. bottom: 0/3528
  32868. }
  32869. },
  32870. frontNsfw: {
  32871. height: math.unit(4 + 10/12, "feet"),
  32872. weight: math.unit(160, "lb"),
  32873. name: "Front (NSFW)",
  32874. image: {
  32875. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32876. extra: 3528/3408,
  32877. bottom: 0/3528
  32878. }
  32879. },
  32880. },
  32881. [
  32882. {
  32883. name: "Normal",
  32884. height: math.unit(4 + 10/12, "feet"),
  32885. default: true
  32886. },
  32887. ]
  32888. ))
  32889. characterMakers.push(() => makeCharacter(
  32890. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32891. {
  32892. side: {
  32893. height: math.unit(10, "feet"),
  32894. weight: math.unit(14000, "lb"),
  32895. name: "Side",
  32896. image: {
  32897. source: "./media/characters/kremm/side.svg",
  32898. extra: 1390/1053,
  32899. bottom: 90/1480
  32900. }
  32901. },
  32902. gut: {
  32903. height: math.unit(5.8, "feet"),
  32904. name: "Gut",
  32905. image: {
  32906. source: "./media/characters/kremm/gut.svg"
  32907. }
  32908. },
  32909. ass: {
  32910. height: math.unit(6.1, "feet"),
  32911. name: "Ass",
  32912. image: {
  32913. source: "./media/characters/kremm/ass.svg"
  32914. }
  32915. },
  32916. jaws: {
  32917. height: math.unit(2.2, "feet"),
  32918. name: "Jaws",
  32919. image: {
  32920. source: "./media/characters/kremm/jaws.svg"
  32921. }
  32922. },
  32923. dick: {
  32924. height: math.unit(4.26, "feet"),
  32925. name: "Dick",
  32926. image: {
  32927. source: "./media/characters/kremm/dick.svg"
  32928. }
  32929. },
  32930. },
  32931. [
  32932. {
  32933. name: "Normal",
  32934. height: math.unit(10, "feet"),
  32935. default: true
  32936. },
  32937. ]
  32938. ))
  32939. characterMakers.push(() => makeCharacter(
  32940. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  32941. {
  32942. front: {
  32943. height: math.unit(30, "stories"),
  32944. name: "Front",
  32945. image: {
  32946. source: "./media/characters/kai/front.svg",
  32947. extra: 1892/1718,
  32948. bottom: 162/2054
  32949. }
  32950. },
  32951. },
  32952. [
  32953. {
  32954. name: "Macro",
  32955. height: math.unit(30, "stories"),
  32956. default: true
  32957. },
  32958. ]
  32959. ))
  32960. characterMakers.push(() => makeCharacter(
  32961. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  32962. {
  32963. front: {
  32964. height: math.unit(6 + 4/12, "feet"),
  32965. weight: math.unit(145, "lb"),
  32966. name: "Front",
  32967. image: {
  32968. source: "./media/characters/sykes/front.svg",
  32969. extra: 1321 / 1187,
  32970. bottom: 66 / 1387
  32971. }
  32972. },
  32973. back: {
  32974. height: math.unit(6 + 4/12, "feet"),
  32975. weight: math.unit(145, "lb"),
  32976. name: "Back",
  32977. image: {
  32978. source: "./media/characters/sykes/back.svg",
  32979. extra: 1326/1181,
  32980. bottom: 31/1357
  32981. }
  32982. },
  32983. handBack: {
  32984. height: math.unit(0.9, "feet"),
  32985. name: "Hand (Back)",
  32986. image: {
  32987. source: "./media/characters/sykes/hand-back.svg"
  32988. }
  32989. },
  32990. handFront: {
  32991. height: math.unit(0.839, "feet"),
  32992. name: "Hand (Front)",
  32993. image: {
  32994. source: "./media/characters/sykes/hand-front.svg"
  32995. }
  32996. },
  32997. leftFoot: {
  32998. height: math.unit(1.2, "feet"),
  32999. name: "Foot (Left)",
  33000. image: {
  33001. source: "./media/characters/sykes/foot-left.svg"
  33002. }
  33003. },
  33004. rightFoot: {
  33005. height: math.unit(1.2, "feet"),
  33006. name: "Foot (Right)",
  33007. image: {
  33008. source: "./media/characters/sykes/foot-right.svg"
  33009. }
  33010. },
  33011. maw: {
  33012. height: math.unit(1.93, "feet"),
  33013. name: "Maw",
  33014. image: {
  33015. source: "./media/characters/sykes/maw.svg"
  33016. }
  33017. },
  33018. teeth: {
  33019. height: math.unit(0.51, "feet"),
  33020. name: "Teeth",
  33021. image: {
  33022. source: "./media/characters/sykes/teeth.svg"
  33023. }
  33024. },
  33025. tongue: {
  33026. height: math.unit(2.13, "feet"),
  33027. name: "Tongue",
  33028. image: {
  33029. source: "./media/characters/sykes/tongue.svg"
  33030. }
  33031. },
  33032. uvula: {
  33033. height: math.unit(0.16, "feet"),
  33034. name: "Uvula",
  33035. image: {
  33036. source: "./media/characters/sykes/uvula.svg"
  33037. }
  33038. },
  33039. collar: {
  33040. height: math.unit(0.287, "feet"),
  33041. name: "Collar",
  33042. image: {
  33043. source: "./media/characters/sykes/collar.svg"
  33044. }
  33045. },
  33046. },
  33047. [
  33048. {
  33049. name: "Shrunken",
  33050. height: math.unit(5, "inches")
  33051. },
  33052. {
  33053. name: "Normal",
  33054. height: math.unit(6 + 4 / 12, "feet"),
  33055. default: true
  33056. },
  33057. {
  33058. name: "Big",
  33059. height: math.unit(15, "feet")
  33060. },
  33061. ]
  33062. ))
  33063. characterMakers.push(() => makeCharacter(
  33064. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33065. {
  33066. front: {
  33067. height: math.unit(5 + 8/12, "feet"),
  33068. weight: math.unit(190, "lb"),
  33069. name: "Front",
  33070. image: {
  33071. source: "./media/characters/oven-otter/front.svg",
  33072. extra: 1809/1740,
  33073. bottom: 181/1990
  33074. }
  33075. },
  33076. back: {
  33077. height: math.unit(5 + 8/12, "feet"),
  33078. weight: math.unit(190, "lb"),
  33079. name: "Back",
  33080. image: {
  33081. source: "./media/characters/oven-otter/back.svg",
  33082. extra: 1709/1635,
  33083. bottom: 118/1827
  33084. }
  33085. },
  33086. hand: {
  33087. height: math.unit(1.07, "feet"),
  33088. name: "Hand",
  33089. image: {
  33090. source: "./media/characters/oven-otter/hand.svg"
  33091. }
  33092. },
  33093. beans: {
  33094. height: math.unit(1.74, "feet"),
  33095. name: "Beans",
  33096. image: {
  33097. source: "./media/characters/oven-otter/beans.svg"
  33098. }
  33099. },
  33100. },
  33101. [
  33102. {
  33103. name: "Micro",
  33104. height: math.unit(0.5, "inches")
  33105. },
  33106. {
  33107. name: "Normal",
  33108. height: math.unit(5 + 8/12, "feet"),
  33109. default: true
  33110. },
  33111. {
  33112. name: "Macro",
  33113. height: math.unit(250, "feet")
  33114. },
  33115. {
  33116. name: "Really High",
  33117. height: math.unit(420, "feet")
  33118. },
  33119. ]
  33120. ))
  33121. characterMakers.push(() => makeCharacter(
  33122. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33123. {
  33124. front: {
  33125. height: math.unit(5, "meters"),
  33126. weight: math.unit(292000000000000, "kg"),
  33127. name: "Front",
  33128. image: {
  33129. source: "./media/characters/devourer/front.svg",
  33130. extra: 1800/1733,
  33131. bottom: 211/2011
  33132. }
  33133. },
  33134. maw: {
  33135. height: math.unit(1.1, "meter"),
  33136. name: "Maw",
  33137. image: {
  33138. source: "./media/characters/devourer/maw.svg"
  33139. }
  33140. },
  33141. },
  33142. [
  33143. {
  33144. name: "Small",
  33145. height: math.unit(3, "meters")
  33146. },
  33147. {
  33148. name: "Large",
  33149. height: math.unit(5, "meters"),
  33150. default: true
  33151. },
  33152. ]
  33153. ))
  33154. characterMakers.push(() => makeCharacter(
  33155. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33156. {
  33157. front: {
  33158. height: math.unit(6, "feet"),
  33159. weight: math.unit(400, "lb"),
  33160. name: "Front",
  33161. image: {
  33162. source: "./media/characters/ellarby/front.svg",
  33163. extra: 1909/1763,
  33164. bottom: 80/1989
  33165. }
  33166. },
  33167. back: {
  33168. height: math.unit(6, "feet"),
  33169. weight: math.unit(400, "lb"),
  33170. name: "Back",
  33171. image: {
  33172. source: "./media/characters/ellarby/back.svg",
  33173. extra: 1914/1784,
  33174. bottom: 172/2086
  33175. }
  33176. },
  33177. },
  33178. [
  33179. {
  33180. name: "Mischief",
  33181. height: math.unit(18, "inches")
  33182. },
  33183. {
  33184. name: "Trouble",
  33185. height: math.unit(12, "feet")
  33186. },
  33187. {
  33188. name: "Havoc",
  33189. height: math.unit(200, "feet"),
  33190. default: true
  33191. },
  33192. {
  33193. name: "Pandemonium",
  33194. height: math.unit(1, "mile")
  33195. },
  33196. {
  33197. name: "Catastrophe",
  33198. height: math.unit(100, "miles")
  33199. },
  33200. ]
  33201. ))
  33202. characterMakers.push(() => makeCharacter(
  33203. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33204. {
  33205. front: {
  33206. height: math.unit(4.7, "meters"),
  33207. weight: math.unit(6500, "kg"),
  33208. name: "Front",
  33209. image: {
  33210. source: "./media/characters/vex/front.svg",
  33211. extra: 1288/1140,
  33212. bottom: 100/1388
  33213. }
  33214. },
  33215. },
  33216. [
  33217. {
  33218. name: "Normal",
  33219. height: math.unit(4.7, "meters"),
  33220. default: true
  33221. },
  33222. ]
  33223. ))
  33224. characterMakers.push(() => makeCharacter(
  33225. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33226. {
  33227. normal: {
  33228. height: math.unit(6, "feet"),
  33229. weight: math.unit(350, "lb"),
  33230. name: "Normal",
  33231. image: {
  33232. source: "./media/characters/teshy/normal.svg",
  33233. extra: 1795/1735,
  33234. bottom: 16/1811
  33235. }
  33236. },
  33237. monsterFront: {
  33238. height: math.unit(12, "feet"),
  33239. weight: math.unit(4700, "lb"),
  33240. name: "Monster (Front)",
  33241. image: {
  33242. source: "./media/characters/teshy/monster-front.svg",
  33243. extra: 2042/2034,
  33244. bottom: 128/2170
  33245. }
  33246. },
  33247. monsterSide: {
  33248. height: math.unit(12, "feet"),
  33249. weight: math.unit(4700, "lb"),
  33250. name: "Monster (Side)",
  33251. image: {
  33252. source: "./media/characters/teshy/monster-side.svg",
  33253. extra: 2067/2056,
  33254. bottom: 70/2137
  33255. }
  33256. },
  33257. monsterBack: {
  33258. height: math.unit(12, "feet"),
  33259. weight: math.unit(4700, "lb"),
  33260. name: "Monster (Back)",
  33261. image: {
  33262. source: "./media/characters/teshy/monster-back.svg",
  33263. extra: 1921/1914,
  33264. bottom: 171/2092
  33265. }
  33266. },
  33267. },
  33268. [
  33269. {
  33270. name: "Normal",
  33271. height: math.unit(6, "feet"),
  33272. default: true
  33273. },
  33274. ]
  33275. ))
  33276. characterMakers.push(() => makeCharacter(
  33277. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33278. {
  33279. front: {
  33280. height: math.unit(6, "feet"),
  33281. name: "Front",
  33282. image: {
  33283. source: "./media/characters/ramey/front.svg",
  33284. extra: 790/787,
  33285. bottom: 27/817
  33286. }
  33287. },
  33288. },
  33289. [
  33290. {
  33291. name: "Normal",
  33292. height: math.unit(6, "feet"),
  33293. default: true
  33294. },
  33295. ]
  33296. ))
  33297. characterMakers.push(() => makeCharacter(
  33298. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33299. {
  33300. front: {
  33301. height: math.unit(5 + 5/12, "feet"),
  33302. weight: math.unit(120, "lb"),
  33303. name: "Front",
  33304. image: {
  33305. source: "./media/characters/phirae/front.svg",
  33306. extra: 2491/2436,
  33307. bottom: 38/2529
  33308. }
  33309. },
  33310. },
  33311. [
  33312. {
  33313. name: "Normal",
  33314. height: math.unit(5 + 5/12, "feet"),
  33315. default: true
  33316. },
  33317. ]
  33318. ))
  33319. characterMakers.push(() => makeCharacter(
  33320. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33321. {
  33322. front: {
  33323. height: math.unit(6, "feet"),
  33324. weight: math.unit(150, "lb"),
  33325. name: "Front",
  33326. image: {
  33327. source: "./media/characters/stagglas/front.svg",
  33328. extra: 962/882,
  33329. bottom: 53/1015
  33330. }
  33331. },
  33332. },
  33333. [
  33334. {
  33335. name: "Normal",
  33336. height: math.unit(5 + 3/12, "feet"),
  33337. default: true
  33338. },
  33339. ]
  33340. ))
  33341. characterMakers.push(() => makeCharacter(
  33342. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33343. {
  33344. front: {
  33345. height: math.unit(5 + 4/12, "feet"),
  33346. weight: math.unit(145, "lb"),
  33347. name: "Front",
  33348. image: {
  33349. source: "./media/characters/starra/front.svg",
  33350. extra: 1790/1691,
  33351. bottom: 91/1881
  33352. }
  33353. },
  33354. },
  33355. [
  33356. {
  33357. name: "Normal",
  33358. height: math.unit(5 + 4/12, "feet"),
  33359. default: true
  33360. },
  33361. ]
  33362. ))
  33363. characterMakers.push(() => makeCharacter(
  33364. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33365. {
  33366. front: {
  33367. height: math.unit(2.2, "meters"),
  33368. name: "Front",
  33369. image: {
  33370. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33371. extra: 1194/1005,
  33372. bottom: 25/1219
  33373. }
  33374. },
  33375. },
  33376. [
  33377. {
  33378. name: "Normal",
  33379. height: math.unit(2.2, "meters"),
  33380. default: true
  33381. },
  33382. ]
  33383. ))
  33384. characterMakers.push(() => makeCharacter(
  33385. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33386. {
  33387. side: {
  33388. height: math.unit(8 + 2/12, "feet"),
  33389. weight: math.unit(1240, "lb"),
  33390. name: "Side",
  33391. image: {
  33392. source: "./media/characters/mika-valentine/side.svg",
  33393. extra: 2670/2501,
  33394. bottom: 250/2920
  33395. }
  33396. },
  33397. },
  33398. [
  33399. {
  33400. name: "Normal",
  33401. height: math.unit(8 + 2/12, "feet"),
  33402. default: true
  33403. },
  33404. ]
  33405. ))
  33406. characterMakers.push(() => makeCharacter(
  33407. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33408. {
  33409. front: {
  33410. height: math.unit(7 + 2/12, "feet"),
  33411. name: "Front",
  33412. image: {
  33413. source: "./media/characters/xoltol/front.svg",
  33414. extra: 2212/2124,
  33415. bottom: 84/2296
  33416. }
  33417. },
  33418. side: {
  33419. height: math.unit(7 + 2/12, "feet"),
  33420. name: "Side",
  33421. image: {
  33422. source: "./media/characters/xoltol/side.svg",
  33423. extra: 2273/2197,
  33424. bottom: 26/2299
  33425. }
  33426. },
  33427. hand: {
  33428. height: math.unit(2.5, "feet"),
  33429. name: "Hand",
  33430. image: {
  33431. source: "./media/characters/xoltol/hand.svg"
  33432. }
  33433. },
  33434. },
  33435. [
  33436. {
  33437. name: "Small-ish",
  33438. height: math.unit(5 + 11/12, "feet")
  33439. },
  33440. {
  33441. name: "Normal",
  33442. height: math.unit(7 + 2/12, "feet")
  33443. },
  33444. {
  33445. name: "\"Macro\"",
  33446. height: math.unit(14 + 9/12, "feet"),
  33447. default: true
  33448. },
  33449. {
  33450. name: "Alternate Height",
  33451. height: math.unit(20, "feet")
  33452. },
  33453. {
  33454. name: "Actually Macro",
  33455. height: math.unit(100, "feet")
  33456. },
  33457. ]
  33458. ))
  33459. characterMakers.push(() => makeCharacter(
  33460. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33461. {
  33462. front: {
  33463. height: math.unit(5 + 2/12, "feet"),
  33464. name: "Front",
  33465. image: {
  33466. source: "./media/characters/kotetsu-redwood/front.svg",
  33467. extra: 1053/942,
  33468. bottom: 60/1113
  33469. }
  33470. },
  33471. },
  33472. [
  33473. {
  33474. name: "Normal",
  33475. height: math.unit(5 + 2/12, "feet"),
  33476. default: true
  33477. },
  33478. ]
  33479. ))
  33480. characterMakers.push(() => makeCharacter(
  33481. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33482. {
  33483. front: {
  33484. height: math.unit(2.4, "meters"),
  33485. weight: math.unit(125, "kg"),
  33486. name: "Front",
  33487. image: {
  33488. source: "./media/characters/lilith/front.svg",
  33489. extra: 1590/1513,
  33490. bottom: 203/1793
  33491. }
  33492. },
  33493. },
  33494. [
  33495. {
  33496. name: "Humanoid",
  33497. height: math.unit(2.4, "meters")
  33498. },
  33499. {
  33500. name: "Normal",
  33501. height: math.unit(6, "meters"),
  33502. default: true
  33503. },
  33504. {
  33505. name: "Largest",
  33506. height: math.unit(55, "meters")
  33507. },
  33508. ]
  33509. ))
  33510. characterMakers.push(() => makeCharacter(
  33511. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33512. {
  33513. front: {
  33514. height: math.unit(8 + 4/12, "feet"),
  33515. weight: math.unit(535, "lb"),
  33516. name: "Front",
  33517. image: {
  33518. source: "./media/characters/beh'kah-bolger/front.svg",
  33519. extra: 1660/1603,
  33520. bottom: 37/1697
  33521. }
  33522. },
  33523. },
  33524. [
  33525. {
  33526. name: "Normal",
  33527. height: math.unit(8 + 4/12, "feet"),
  33528. default: true
  33529. },
  33530. {
  33531. name: "Kaiju",
  33532. height: math.unit(250, "feet")
  33533. },
  33534. {
  33535. name: "Still Growing",
  33536. height: math.unit(10, "miles")
  33537. },
  33538. {
  33539. name: "Continental",
  33540. height: math.unit(5000, "miles")
  33541. },
  33542. {
  33543. name: "Final Form",
  33544. height: math.unit(2500000, "miles")
  33545. },
  33546. ]
  33547. ))
  33548. characterMakers.push(() => makeCharacter(
  33549. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33550. {
  33551. front: {
  33552. height: math.unit(7 + 2/12, "feet"),
  33553. weight: math.unit(230, "kg"),
  33554. name: "Front",
  33555. image: {
  33556. source: "./media/characters/tatyana-milewska/front.svg",
  33557. extra: 1199/1150,
  33558. bottom: 86/1285
  33559. }
  33560. },
  33561. },
  33562. [
  33563. {
  33564. name: "Normal",
  33565. height: math.unit(7 + 2/12, "feet"),
  33566. default: true
  33567. },
  33568. {
  33569. name: "Big",
  33570. height: math.unit(12, "feet")
  33571. },
  33572. {
  33573. name: "Minimacro",
  33574. height: math.unit(20, "feet")
  33575. },
  33576. {
  33577. name: "Macro",
  33578. height: math.unit(120, "feet")
  33579. },
  33580. ]
  33581. ))
  33582. characterMakers.push(() => makeCharacter(
  33583. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33584. {
  33585. front: {
  33586. height: math.unit(7 + 8/12, "feet"),
  33587. weight: math.unit(152, "kg"),
  33588. name: "Front",
  33589. image: {
  33590. source: "./media/characters/helen-arri/front.svg",
  33591. extra: 440/423,
  33592. bottom: 14/454
  33593. }
  33594. },
  33595. back: {
  33596. height: math.unit(7 + 8/12, "feet"),
  33597. weight: math.unit(152, "kg"),
  33598. name: "Back",
  33599. image: {
  33600. source: "./media/characters/helen-arri/back.svg",
  33601. extra: 443/426,
  33602. bottom: 8/451
  33603. }
  33604. },
  33605. },
  33606. [
  33607. {
  33608. name: "Normal",
  33609. height: math.unit(7 + 8/12, "feet"),
  33610. default: true
  33611. },
  33612. {
  33613. name: "Big",
  33614. height: math.unit(14, "feet")
  33615. },
  33616. {
  33617. name: "Minimacro",
  33618. height: math.unit(24, "feet")
  33619. },
  33620. {
  33621. name: "Macro",
  33622. height: math.unit(140, "feet")
  33623. },
  33624. ]
  33625. ))
  33626. characterMakers.push(() => makeCharacter(
  33627. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33628. {
  33629. front: {
  33630. height: math.unit(6, "meters"),
  33631. name: "Front",
  33632. image: {
  33633. source: "./media/characters/ehanu-rehu/front.svg",
  33634. extra: 1800/1800,
  33635. bottom: 59/1859
  33636. }
  33637. },
  33638. },
  33639. [
  33640. {
  33641. name: "Normal",
  33642. height: math.unit(6, "meters"),
  33643. default: true
  33644. },
  33645. ]
  33646. ))
  33647. characterMakers.push(() => makeCharacter(
  33648. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33649. {
  33650. front: {
  33651. height: math.unit(7 + 3/12, "feet"),
  33652. name: "Front",
  33653. image: {
  33654. source: "./media/characters/renholder/front.svg",
  33655. extra: 3096/2960,
  33656. bottom: 250/3346
  33657. }
  33658. },
  33659. },
  33660. [
  33661. {
  33662. name: "Normal Bat",
  33663. height: math.unit(7 + 3/12, "feet"),
  33664. default: true
  33665. },
  33666. {
  33667. name: "Slightly Tall Bat",
  33668. height: math.unit(100, "feet")
  33669. },
  33670. {
  33671. name: "Big Bat",
  33672. height: math.unit(1000, "feet")
  33673. },
  33674. {
  33675. name: "City-Sized Bat",
  33676. height: math.unit(200000, "feet")
  33677. },
  33678. {
  33679. name: "Bigger Bat",
  33680. height: math.unit(10000, "miles")
  33681. },
  33682. {
  33683. name: "Solar Sized Bat",
  33684. height: math.unit(100, "AU")
  33685. },
  33686. {
  33687. name: "Galactic Bat",
  33688. height: math.unit(200000, "lightyears")
  33689. },
  33690. {
  33691. name: "Universally Known Bat",
  33692. height: math.unit(1, "universe")
  33693. },
  33694. ]
  33695. ))
  33696. characterMakers.push(() => makeCharacter(
  33697. { name: "Cookiecat", species: ["cat"], tags: ["anthro"] },
  33698. {
  33699. front: {
  33700. height: math.unit(6 + 11/12, "feet"),
  33701. weight: math.unit(250, "lb"),
  33702. name: "Front",
  33703. image: {
  33704. source: "./media/characters/cookiecat/front.svg",
  33705. extra: 893/827,
  33706. bottom: 14/907
  33707. }
  33708. },
  33709. },
  33710. [
  33711. {
  33712. name: "Micro",
  33713. height: math.unit(3, "inches")
  33714. },
  33715. {
  33716. name: "Normal",
  33717. height: math.unit(6 + 11/12, "feet"),
  33718. default: true
  33719. },
  33720. {
  33721. name: "Macro",
  33722. height: math.unit(100, "feet")
  33723. },
  33724. {
  33725. name: "Macro+",
  33726. height: math.unit(404, "feet")
  33727. },
  33728. {
  33729. name: "Megamacro",
  33730. height: math.unit(165, "miles")
  33731. },
  33732. {
  33733. name: "Planetary",
  33734. height: math.unit(4600, "miles")
  33735. },
  33736. ]
  33737. ))
  33738. characterMakers.push(() => makeCharacter(
  33739. { name: "Tux Kusanagi", species: ["gryffon"], tags: ["anthro"] },
  33740. {
  33741. front: {
  33742. height: math.unit(10 + 3/12, "feet"),
  33743. weight: math.unit(1500, "lb"),
  33744. name: "Front",
  33745. image: {
  33746. source: "./media/characters/tux-kusanagi/front.svg",
  33747. extra: 944/840,
  33748. bottom: 39/983
  33749. }
  33750. },
  33751. back: {
  33752. height: math.unit(10 + 3/12, "feet"),
  33753. weight: math.unit(1500, "lb"),
  33754. name: "Back",
  33755. image: {
  33756. source: "./media/characters/tux-kusanagi/back.svg",
  33757. extra: 941/842,
  33758. bottom: 28/969
  33759. }
  33760. },
  33761. rump: {
  33762. height: math.unit(5.25, "feet"),
  33763. name: "Rump",
  33764. image: {
  33765. source: "./media/characters/tux-kusanagi/rump.svg"
  33766. }
  33767. },
  33768. beak: {
  33769. height: math.unit(1.54, "feet"),
  33770. name: "Beak",
  33771. image: {
  33772. source: "./media/characters/tux-kusanagi/beak.svg"
  33773. }
  33774. },
  33775. },
  33776. [
  33777. {
  33778. name: "Normal",
  33779. height: math.unit(10 + 3/12, "feet"),
  33780. default: true
  33781. },
  33782. ]
  33783. ))
  33784. //characters
  33785. function makeCharacters() {
  33786. const results = [];
  33787. characterMakers.forEach(character => {
  33788. results.push(character());
  33789. });
  33790. return results;
  33791. }