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

34553 строки
869 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. }
  1508. //species
  1509. function getSpeciesInfo(speciesList) {
  1510. let result = new Set();
  1511. speciesList.flatMap(getSpeciesInfoHelper).forEach(entry => {
  1512. result.add(entry)
  1513. });
  1514. return Array.from(result);
  1515. };
  1516. function getSpeciesInfoHelper(species) {
  1517. if (!speciesData[species]) {
  1518. console.warn(species + " doesn't exist");
  1519. return [];
  1520. }
  1521. if (speciesData[species].parents) {
  1522. return [species].concat(speciesData[species].parents.flatMap(parent => getSpeciesInfoHelper(parent)));
  1523. } else {
  1524. return [species];
  1525. }
  1526. }
  1527. characterMakers.push(() => makeCharacter(
  1528. {
  1529. name: "Fen",
  1530. species: ["crux"],
  1531. description: {
  1532. title: "Bio",
  1533. text: "Very furry. Sheds on everything."
  1534. },
  1535. tags: [
  1536. "anthro",
  1537. "goo"
  1538. ]
  1539. },
  1540. {
  1541. back: {
  1542. height: math.unit(2.2428, "meter"),
  1543. weight: math.unit(124.738, "kg"),
  1544. name: "Back",
  1545. image: {
  1546. source: "./media/characters/fen/back.svg",
  1547. extra: 2024 / 1867,
  1548. bottom: 13 / 2037
  1549. },
  1550. info: {
  1551. description: {
  1552. mode: "append",
  1553. text: "\n\nHe is not currently looking at you."
  1554. }
  1555. }
  1556. },
  1557. full: {
  1558. height: math.unit(1.34, "meter"),
  1559. weight: math.unit(225, "kg"),
  1560. name: "Full",
  1561. image: {
  1562. source: "./media/characters/fen/full.svg"
  1563. },
  1564. info: {
  1565. description: {
  1566. mode: "append",
  1567. text: "\n\nMunch."
  1568. }
  1569. }
  1570. },
  1571. kneeling: {
  1572. height: math.unit(5.4, "feet"),
  1573. weight: math.unit(124.738, "kg"),
  1574. name: "Kneeling",
  1575. image: {
  1576. source: "./media/characters/fen/kneeling.svg",
  1577. extra: 563 / 507
  1578. }
  1579. },
  1580. goo: {
  1581. height: math.unit(2.8, "feet"),
  1582. weight: math.unit(125, "kg"),
  1583. capacity: math.unit(1, "people"),
  1584. name: "Goo",
  1585. image: {
  1586. source: "./media/characters/fen/goo.svg",
  1587. bottom: 116 / 613
  1588. }
  1589. },
  1590. lounging: {
  1591. height: math.unit(6.5, "feet"),
  1592. weight: math.unit(125, "kg"),
  1593. name: "Lounging",
  1594. image: {
  1595. source: "./media/characters/fen/lounging.svg"
  1596. }
  1597. },
  1598. },
  1599. [
  1600. {
  1601. name: "Normal",
  1602. height: math.unit(2.2428, "meter")
  1603. },
  1604. {
  1605. name: "Big",
  1606. height: math.unit(12, "feet")
  1607. },
  1608. {
  1609. name: "Minimacro",
  1610. height: math.unit(40, "feet"),
  1611. default: true,
  1612. info: {
  1613. description: {
  1614. mode: "append",
  1615. text: "\n\nTOO DAMN BIG"
  1616. }
  1617. }
  1618. },
  1619. {
  1620. name: "Macro",
  1621. height: math.unit(100, "feet"),
  1622. info: {
  1623. description: {
  1624. mode: "append",
  1625. text: "\n\nTOO DAMN BIG"
  1626. }
  1627. }
  1628. },
  1629. {
  1630. name: "Macro+",
  1631. height: math.unit(300, "feet")
  1632. },
  1633. {
  1634. name: "Megamacro",
  1635. height: math.unit(2, "miles")
  1636. }
  1637. ]
  1638. ))
  1639. characterMakers.push(() => makeCharacter(
  1640. { name: "Sofia Fluttertail", species: ["rough-collie"], tags: ["anthro"] },
  1641. {
  1642. front: {
  1643. height: math.unit(183, "cm"),
  1644. weight: math.unit(80, "kg"),
  1645. name: "Front",
  1646. image: {
  1647. source: "./media/characters/sofia-fluttertail/front.svg",
  1648. bottom: 0.01,
  1649. extra: 2154 / 2081
  1650. }
  1651. },
  1652. frontAlt: {
  1653. height: math.unit(183, "cm"),
  1654. weight: math.unit(80, "kg"),
  1655. name: "Front (alt)",
  1656. image: {
  1657. source: "./media/characters/sofia-fluttertail/front-alt.svg"
  1658. }
  1659. },
  1660. back: {
  1661. height: math.unit(183, "cm"),
  1662. weight: math.unit(80, "kg"),
  1663. name: "Back",
  1664. image: {
  1665. source: "./media/characters/sofia-fluttertail/back.svg"
  1666. }
  1667. },
  1668. kneeling: {
  1669. height: math.unit(125, "cm"),
  1670. weight: math.unit(80, "kg"),
  1671. name: "Kneeling",
  1672. image: {
  1673. source: "./media/characters/sofia-fluttertail/kneeling.svg",
  1674. extra: 1033 / 977,
  1675. bottom: 23.7 / 1057
  1676. }
  1677. },
  1678. maw: {
  1679. height: math.unit(183 / 5, "cm"),
  1680. name: "Maw",
  1681. image: {
  1682. source: "./media/characters/sofia-fluttertail/maw.svg"
  1683. }
  1684. },
  1685. mawcloseup: {
  1686. height: math.unit(183 / 5 * 0.41, "cm"),
  1687. name: "Maw (Closeup)",
  1688. image: {
  1689. source: "./media/characters/sofia-fluttertail/maw-closeup.svg"
  1690. }
  1691. },
  1692. paws: {
  1693. height: math.unit(1.17, "feet"),
  1694. name: "Paws",
  1695. image: {
  1696. source: "./media/characters/sofia-fluttertail/paws.svg",
  1697. extra: 851 / 851,
  1698. bottom: 17 / 868
  1699. }
  1700. },
  1701. },
  1702. [
  1703. {
  1704. name: "Normal",
  1705. height: math.unit(1.83, "meter")
  1706. },
  1707. {
  1708. name: "Size Thief",
  1709. height: math.unit(18, "feet")
  1710. },
  1711. {
  1712. name: "50 Foot Collie",
  1713. height: math.unit(50, "feet")
  1714. },
  1715. {
  1716. name: "Macro",
  1717. height: math.unit(96, "feet"),
  1718. default: true
  1719. },
  1720. {
  1721. name: "Megamerger",
  1722. height: math.unit(650, "feet")
  1723. },
  1724. ]
  1725. ))
  1726. characterMakers.push(() => makeCharacter(
  1727. { name: "March", species: ["dragon"], tags: ["anthro"] },
  1728. {
  1729. front: {
  1730. height: math.unit(7, "feet"),
  1731. weight: math.unit(100, "kg"),
  1732. name: "Front",
  1733. image: {
  1734. source: "./media/characters/march/front.svg",
  1735. extra: 1,
  1736. bottom: 0.015
  1737. }
  1738. },
  1739. foot: {
  1740. height: math.unit(0.9, "feet"),
  1741. name: "Foot",
  1742. image: {
  1743. source: "./media/characters/march/foot.svg"
  1744. }
  1745. },
  1746. },
  1747. [
  1748. {
  1749. name: "Normal",
  1750. height: math.unit(7.9, "feet")
  1751. },
  1752. {
  1753. name: "Macro",
  1754. height: math.unit(220, "meters")
  1755. },
  1756. {
  1757. name: "Megamacro",
  1758. height: math.unit(2.98, "km"),
  1759. default: true
  1760. },
  1761. {
  1762. name: "Gigamacro",
  1763. height: math.unit(15963, "km")
  1764. },
  1765. {
  1766. name: "Teramacro",
  1767. height: math.unit(2980000000, "km")
  1768. },
  1769. {
  1770. name: "Examacro",
  1771. height: math.unit(250, "parsecs")
  1772. },
  1773. ]
  1774. ))
  1775. characterMakers.push(() => makeCharacter(
  1776. { name: "Noir", species: ["woodpecker"], tags: ["anthro"] },
  1777. {
  1778. front: {
  1779. height: math.unit(6, "feet"),
  1780. weight: math.unit(60, "kg"),
  1781. name: "Front",
  1782. image: {
  1783. source: "./media/characters/noir/front.svg",
  1784. extra: 1,
  1785. bottom: 0.032
  1786. }
  1787. },
  1788. },
  1789. [
  1790. {
  1791. name: "Normal",
  1792. height: math.unit(6.6, "feet")
  1793. },
  1794. {
  1795. name: "Macro",
  1796. height: math.unit(500, "feet")
  1797. },
  1798. {
  1799. name: "Megamacro",
  1800. height: math.unit(2.5, "km"),
  1801. default: true
  1802. },
  1803. {
  1804. name: "Gigamacro",
  1805. height: math.unit(22500, "km")
  1806. },
  1807. {
  1808. name: "Teramacro",
  1809. height: math.unit(2500000000, "km")
  1810. },
  1811. {
  1812. name: "Examacro",
  1813. height: math.unit(200, "parsecs")
  1814. },
  1815. ]
  1816. ))
  1817. characterMakers.push(() => makeCharacter(
  1818. { name: "Okuri", species: ["kitsune"], tags: ["anthro"] },
  1819. {
  1820. front: {
  1821. height: math.unit(7, "feet"),
  1822. weight: math.unit(100, "kg"),
  1823. name: "Front",
  1824. image: {
  1825. source: "./media/characters/okuri/front.svg",
  1826. extra: 1,
  1827. bottom: 0.037
  1828. }
  1829. },
  1830. back: {
  1831. height: math.unit(7, "feet"),
  1832. weight: math.unit(100, "kg"),
  1833. name: "Back",
  1834. image: {
  1835. source: "./media/characters/okuri/back.svg",
  1836. extra: 1,
  1837. bottom: 0.007
  1838. }
  1839. },
  1840. },
  1841. [
  1842. {
  1843. name: "Megamacro",
  1844. height: math.unit(100, "miles"),
  1845. default: true
  1846. },
  1847. ]
  1848. ))
  1849. characterMakers.push(() => makeCharacter(
  1850. { name: "Manny", species: ["manectric"], tags: ["anthro"] },
  1851. {
  1852. front: {
  1853. height: math.unit(7, "feet"),
  1854. weight: math.unit(100, "kg"),
  1855. name: "Front",
  1856. image: {
  1857. source: "./media/characters/manny/front.svg",
  1858. extra: 1,
  1859. bottom: 0.06
  1860. }
  1861. },
  1862. back: {
  1863. height: math.unit(7, "feet"),
  1864. weight: math.unit(100, "kg"),
  1865. name: "Back",
  1866. image: {
  1867. source: "./media/characters/manny/back.svg",
  1868. extra: 1,
  1869. bottom: 0.014
  1870. }
  1871. },
  1872. },
  1873. [
  1874. {
  1875. name: "Normal",
  1876. height: math.unit(7, "feet"),
  1877. },
  1878. {
  1879. name: "Macro",
  1880. height: math.unit(78, "feet"),
  1881. default: true
  1882. },
  1883. {
  1884. name: "Macro+",
  1885. height: math.unit(300, "meters")
  1886. },
  1887. {
  1888. name: "Macro++",
  1889. height: math.unit(2400, "meters")
  1890. },
  1891. {
  1892. name: "Megamacro",
  1893. height: math.unit(5167, "meters")
  1894. },
  1895. {
  1896. name: "Gigamacro",
  1897. height: math.unit(41769, "miles")
  1898. },
  1899. ]
  1900. ))
  1901. characterMakers.push(() => makeCharacter(
  1902. { name: "Adake", species: ["tiger"], tags: ["anthro"] },
  1903. {
  1904. front: {
  1905. height: math.unit(7, "feet"),
  1906. weight: math.unit(100, "kg"),
  1907. name: "Front",
  1908. image: {
  1909. source: "./media/characters/adake/front-1.svg"
  1910. }
  1911. },
  1912. frontAlt: {
  1913. height: math.unit(7, "feet"),
  1914. weight: math.unit(100, "kg"),
  1915. name: "Front (Alt)",
  1916. image: {
  1917. source: "./media/characters/adake/front-2.svg",
  1918. extra: 1,
  1919. bottom: 0.01
  1920. }
  1921. },
  1922. back: {
  1923. height: math.unit(7, "feet"),
  1924. weight: math.unit(100, "kg"),
  1925. name: "Back",
  1926. image: {
  1927. source: "./media/characters/adake/back.svg",
  1928. }
  1929. },
  1930. kneel: {
  1931. height: math.unit(5.385, "feet"),
  1932. weight: math.unit(100, "kg"),
  1933. name: "Kneeling",
  1934. image: {
  1935. source: "./media/characters/adake/kneel.svg",
  1936. bottom: 0.052
  1937. }
  1938. },
  1939. },
  1940. [
  1941. {
  1942. name: "Normal",
  1943. height: math.unit(7, "feet"),
  1944. },
  1945. {
  1946. name: "Macro",
  1947. height: math.unit(78, "feet"),
  1948. default: true
  1949. },
  1950. {
  1951. name: "Macro+",
  1952. height: math.unit(300, "meters")
  1953. },
  1954. {
  1955. name: "Macro++",
  1956. height: math.unit(2400, "meters")
  1957. },
  1958. {
  1959. name: "Megamacro",
  1960. height: math.unit(5167, "meters")
  1961. },
  1962. {
  1963. name: "Gigamacro",
  1964. height: math.unit(41769, "miles")
  1965. },
  1966. ]
  1967. ))
  1968. characterMakers.push(() => makeCharacter(
  1969. { name: "Elijah", species: ["blue-jay"], tags: ["anthro"] },
  1970. {
  1971. front: {
  1972. height: math.unit(1.65, "meters"),
  1973. weight: math.unit(50, "kg"),
  1974. name: "Front",
  1975. image: {
  1976. source: "./media/characters/elijah/front.svg",
  1977. extra: 858 / 830,
  1978. bottom: 95.5 / 953.8559
  1979. }
  1980. },
  1981. back: {
  1982. height: math.unit(1.65, "meters"),
  1983. weight: math.unit(50, "kg"),
  1984. name: "Back",
  1985. image: {
  1986. source: "./media/characters/elijah/back.svg",
  1987. extra: 895 / 850,
  1988. bottom: 5.3 / 897.956
  1989. }
  1990. },
  1991. frontNsfw: {
  1992. height: math.unit(1.65, "meters"),
  1993. weight: math.unit(50, "kg"),
  1994. name: "Front (NSFW)",
  1995. image: {
  1996. source: "./media/characters/elijah/front-nsfw.svg",
  1997. extra: 858 / 830,
  1998. bottom: 95.5 / 953.8559
  1999. }
  2000. },
  2001. backNsfw: {
  2002. height: math.unit(1.65, "meters"),
  2003. weight: math.unit(50, "kg"),
  2004. name: "Back (NSFW)",
  2005. image: {
  2006. source: "./media/characters/elijah/back-nsfw.svg",
  2007. extra: 895 / 850,
  2008. bottom: 5.3 / 897.956
  2009. }
  2010. },
  2011. dick: {
  2012. height: math.unit(1, "feet"),
  2013. name: "Dick",
  2014. image: {
  2015. source: "./media/characters/elijah/dick.svg"
  2016. }
  2017. },
  2018. beakOpen: {
  2019. height: math.unit(1.25, "feet"),
  2020. name: "Beak (Open)",
  2021. image: {
  2022. source: "./media/characters/elijah/beak-open.svg"
  2023. }
  2024. },
  2025. beakShut: {
  2026. height: math.unit(1.25, "feet"),
  2027. name: "Beak (Shut)",
  2028. image: {
  2029. source: "./media/characters/elijah/beak-shut.svg"
  2030. }
  2031. },
  2032. footFlexing: {
  2033. height: math.unit(1.61, "feet"),
  2034. name: "Foot (Flexing)",
  2035. image: {
  2036. source: "./media/characters/elijah/foot-flexing.svg"
  2037. }
  2038. },
  2039. footStepping: {
  2040. height: math.unit(1.44, "feet"),
  2041. name: "Foot (Stepping)",
  2042. image: {
  2043. source: "./media/characters/elijah/foot-stepping.svg"
  2044. }
  2045. },
  2046. plantigradeLeg: {
  2047. height: math.unit(2.34, "feet"),
  2048. name: "Plantigrade Leg",
  2049. image: {
  2050. source: "./media/characters/elijah/plantigrade-leg.svg"
  2051. }
  2052. },
  2053. plantigradeFootLeft: {
  2054. height: math.unit(0.9, "feet"),
  2055. name: "Plantigrade Foot (Left)",
  2056. image: {
  2057. source: "./media/characters/elijah/plantigrade-foot-left.svg"
  2058. }
  2059. },
  2060. plantigradeFootRight: {
  2061. height: math.unit(0.9, "feet"),
  2062. name: "Plantigrade Foot (Right)",
  2063. image: {
  2064. source: "./media/characters/elijah/plantigrade-foot-right.svg"
  2065. }
  2066. },
  2067. },
  2068. [
  2069. {
  2070. name: "Normal",
  2071. height: math.unit(1.65, "meters")
  2072. },
  2073. {
  2074. name: "Macro",
  2075. height: math.unit(55, "meters"),
  2076. default: true
  2077. },
  2078. {
  2079. name: "Macro+",
  2080. height: math.unit(105, "meters")
  2081. },
  2082. ]
  2083. ))
  2084. characterMakers.push(() => makeCharacter(
  2085. { name: "Rai", species: ["wolf"], tags: ["anthro"] },
  2086. {
  2087. front: {
  2088. height: math.unit(11, "feet"),
  2089. weight: math.unit(80, "kg"),
  2090. name: "Front",
  2091. image: {
  2092. source: "./media/characters/rai/front.svg",
  2093. extra: 1,
  2094. bottom: 0.03
  2095. }
  2096. },
  2097. side: {
  2098. height: math.unit(11, "feet"),
  2099. weight: math.unit(80, "kg"),
  2100. name: "Side",
  2101. image: {
  2102. source: "./media/characters/rai/side.svg"
  2103. }
  2104. },
  2105. back: {
  2106. height: math.unit(11, "feet"),
  2107. weight: math.unit(80, "lb"),
  2108. name: "Back",
  2109. image: {
  2110. source: "./media/characters/rai/back.svg",
  2111. extra: 1,
  2112. bottom: 0.01
  2113. }
  2114. },
  2115. feral: {
  2116. height: math.unit(11, "feet"),
  2117. weight: math.unit(800, "lb"),
  2118. name: "Feral",
  2119. image: {
  2120. source: "./media/characters/rai/feral.svg",
  2121. extra: 1050 / 659,
  2122. bottom: 0.07
  2123. }
  2124. },
  2125. dragon: {
  2126. height: math.unit(23, "feet"),
  2127. weight: math.unit(50000, "lb"),
  2128. name: "Dragon",
  2129. image: {
  2130. source: "./media/characters/rai/dragon.svg",
  2131. extra: 2498 / 2030,
  2132. bottom: 85.2 / 2584
  2133. }
  2134. },
  2135. maw: {
  2136. height: math.unit(6 / 3.81416, "feet"),
  2137. name: "Maw",
  2138. image: {
  2139. source: "./media/characters/rai/maw.svg"
  2140. }
  2141. },
  2142. },
  2143. [
  2144. {
  2145. name: "Normal",
  2146. height: math.unit(11, "feet")
  2147. },
  2148. {
  2149. name: "Macro",
  2150. height: math.unit(302, "feet"),
  2151. default: true
  2152. },
  2153. ]
  2154. ))
  2155. characterMakers.push(() => makeCharacter(
  2156. { name: "Jazzy", species: ["coyote", "wolf"], tags: ["anthro"] },
  2157. {
  2158. frontDressed: {
  2159. height: math.unit(216, "feet"),
  2160. weight: math.unit(7000000, "lb"),
  2161. name: "Front (Dressed)",
  2162. image: {
  2163. source: "./media/characters/jazzy/front-dressed.svg",
  2164. extra: 2738 / 2651,
  2165. bottom: 41.8 / 2786
  2166. }
  2167. },
  2168. backDressed: {
  2169. height: math.unit(216, "feet"),
  2170. weight: math.unit(7000000, "lb"),
  2171. name: "Back (Dressed)",
  2172. image: {
  2173. source: "./media/characters/jazzy/back-dressed.svg",
  2174. extra: 2775 / 2673,
  2175. bottom: 36.8 / 2817
  2176. }
  2177. },
  2178. front: {
  2179. height: math.unit(216, "feet"),
  2180. weight: math.unit(7000000, "lb"),
  2181. name: "Front",
  2182. image: {
  2183. source: "./media/characters/jazzy/front.svg",
  2184. extra: 2738 / 2651,
  2185. bottom: 41.8 / 2786
  2186. }
  2187. },
  2188. back: {
  2189. height: math.unit(216, "feet"),
  2190. weight: math.unit(7000000, "lb"),
  2191. name: "Back",
  2192. image: {
  2193. source: "./media/characters/jazzy/back.svg",
  2194. extra: 2775 / 2673,
  2195. bottom: 36.8 / 2817
  2196. }
  2197. },
  2198. maw: {
  2199. height: math.unit(20, "feet"),
  2200. name: "Maw",
  2201. image: {
  2202. source: "./media/characters/jazzy/maw.svg"
  2203. }
  2204. },
  2205. paws: {
  2206. height: math.unit(27.5, "feet"),
  2207. name: "Paws",
  2208. image: {
  2209. source: "./media/characters/jazzy/paws.svg"
  2210. }
  2211. },
  2212. eye: {
  2213. height: math.unit(4.4, "feet"),
  2214. name: "Eye",
  2215. image: {
  2216. source: "./media/characters/jazzy/eye.svg"
  2217. }
  2218. },
  2219. droneOffense: {
  2220. height: math.unit(9.5, "inches"),
  2221. name: "Drone (Offense)",
  2222. image: {
  2223. source: "./media/characters/jazzy/drone-offense.svg"
  2224. }
  2225. },
  2226. droneRecon: {
  2227. height: math.unit(9.5, "inches"),
  2228. name: "Drone (Recon)",
  2229. image: {
  2230. source: "./media/characters/jazzy/drone-recon.svg"
  2231. }
  2232. },
  2233. droneDefense: {
  2234. height: math.unit(9.5, "inches"),
  2235. name: "Drone (Defense)",
  2236. image: {
  2237. source: "./media/characters/jazzy/drone-defense.svg"
  2238. }
  2239. },
  2240. },
  2241. [
  2242. {
  2243. name: "Macro",
  2244. height: math.unit(216, "feet"),
  2245. default: true
  2246. },
  2247. ]
  2248. ))
  2249. characterMakers.push(() => makeCharacter(
  2250. { name: "Flamm", species: ["cat"], tags: ["anthro"] },
  2251. {
  2252. front: {
  2253. height: math.unit(7, "feet"),
  2254. weight: math.unit(80, "kg"),
  2255. name: "Front",
  2256. image: {
  2257. source: "./media/characters/flamm/front.svg",
  2258. extra: 1794 / 1677,
  2259. bottom: 31.7 / 1828.5
  2260. }
  2261. },
  2262. },
  2263. [
  2264. {
  2265. name: "Normal",
  2266. height: math.unit(9.5, "feet")
  2267. },
  2268. {
  2269. name: "Macro",
  2270. height: math.unit(200, "feet"),
  2271. default: true
  2272. },
  2273. ]
  2274. ))
  2275. characterMakers.push(() => makeCharacter(
  2276. { name: "Zephiro", species: ["raccoon"], tags: ["anthro"] },
  2277. {
  2278. front: {
  2279. height: math.unit(5 + 3/12, "feet"),
  2280. weight: math.unit(60, "kg"),
  2281. name: "Front",
  2282. image: {
  2283. source: "./media/characters/zephiro/front.svg",
  2284. extra: 2309 / 2162,
  2285. bottom: 0.069
  2286. }
  2287. },
  2288. side: {
  2289. height: math.unit(5 + 3/12, "feet"),
  2290. weight: math.unit(60, "kg"),
  2291. name: "Side",
  2292. image: {
  2293. source: "./media/characters/zephiro/side.svg",
  2294. extra: 2403 / 2279,
  2295. bottom: 0.015
  2296. }
  2297. },
  2298. back: {
  2299. height: math.unit(5 + 3/12, "feet"),
  2300. weight: math.unit(60, "kg"),
  2301. name: "Back",
  2302. image: {
  2303. source: "./media/characters/zephiro/back.svg",
  2304. extra: 2373 / 2244,
  2305. bottom: 0.013
  2306. }
  2307. },
  2308. hand: {
  2309. height: math.unit(0.68, "feet"),
  2310. name: "Hand",
  2311. image: {
  2312. source: "./media/characters/zephiro/hand.svg"
  2313. }
  2314. },
  2315. paw: {
  2316. height: math.unit(1, "feet"),
  2317. name: "Paw",
  2318. image: {
  2319. source: "./media/characters/zephiro/paw.svg"
  2320. }
  2321. },
  2322. beans: {
  2323. height: math.unit(0.93, "feet"),
  2324. name: "Beans",
  2325. image: {
  2326. source: "./media/characters/zephiro/beans.svg"
  2327. }
  2328. },
  2329. },
  2330. [
  2331. {
  2332. name: "Micro",
  2333. height: math.unit(3, "inches")
  2334. },
  2335. {
  2336. name: "Normal",
  2337. height: math.unit(5 + 3 / 12, "feet"),
  2338. default: true
  2339. },
  2340. {
  2341. name: "Macro",
  2342. height: math.unit(118, "feet")
  2343. },
  2344. ]
  2345. ))
  2346. characterMakers.push(() => makeCharacter(
  2347. { name: "Fory", species: ["weasel", "rabbit"], tags: ["anthro"] },
  2348. {
  2349. front: {
  2350. height: math.unit(5, "feet"),
  2351. weight: math.unit(90, "kg"),
  2352. name: "Front",
  2353. image: {
  2354. source: "./media/characters/fory/front.svg",
  2355. extra: 2862 / 2674,
  2356. bottom: 180 / 3043.8
  2357. }
  2358. },
  2359. back: {
  2360. height: math.unit(5, "feet"),
  2361. weight: math.unit(90, "kg"),
  2362. name: "Back",
  2363. image: {
  2364. source: "./media/characters/fory/back.svg",
  2365. extra: 2962 / 2791,
  2366. bottom: 106 / 3071.8
  2367. }
  2368. },
  2369. foot: {
  2370. height: math.unit(2.14, "feet"),
  2371. name: "Foot",
  2372. image: {
  2373. source: "./media/characters/fory/foot.svg"
  2374. }
  2375. },
  2376. },
  2377. [
  2378. {
  2379. name: "Normal",
  2380. height: math.unit(5, "feet")
  2381. },
  2382. {
  2383. name: "Macro",
  2384. height: math.unit(50, "feet"),
  2385. default: true
  2386. },
  2387. {
  2388. name: "Megamacro",
  2389. height: math.unit(10, "miles")
  2390. },
  2391. {
  2392. name: "Gigamacro",
  2393. height: math.unit(5, "earths")
  2394. },
  2395. ]
  2396. ))
  2397. characterMakers.push(() => makeCharacter(
  2398. { name: "Kurrikage", species: ["dragon"], tags: ["anthro"] },
  2399. {
  2400. front: {
  2401. height: math.unit(7, "feet"),
  2402. weight: math.unit(90, "kg"),
  2403. name: "Front",
  2404. image: {
  2405. source: "./media/characters/kurrikage/front.svg",
  2406. extra: 1,
  2407. bottom: 0.035
  2408. }
  2409. },
  2410. back: {
  2411. height: math.unit(7, "feet"),
  2412. weight: math.unit(90, "lb"),
  2413. name: "Back",
  2414. image: {
  2415. source: "./media/characters/kurrikage/back.svg"
  2416. }
  2417. },
  2418. paw: {
  2419. height: math.unit(1.5, "feet"),
  2420. name: "Paw",
  2421. image: {
  2422. source: "./media/characters/kurrikage/paw.svg"
  2423. }
  2424. },
  2425. staff: {
  2426. height: math.unit(6.7, "feet"),
  2427. name: "Staff",
  2428. image: {
  2429. source: "./media/characters/kurrikage/staff.svg"
  2430. }
  2431. },
  2432. peek: {
  2433. height: math.unit(1.05, "feet"),
  2434. name: "Peeking",
  2435. image: {
  2436. source: "./media/characters/kurrikage/peek.svg",
  2437. bottom: 0.08
  2438. }
  2439. },
  2440. },
  2441. [
  2442. {
  2443. name: "Normal",
  2444. height: math.unit(12, "feet"),
  2445. default: true
  2446. },
  2447. {
  2448. name: "Big",
  2449. height: math.unit(20, "feet")
  2450. },
  2451. {
  2452. name: "Macro",
  2453. height: math.unit(500, "feet")
  2454. },
  2455. {
  2456. name: "Megamacro",
  2457. height: math.unit(20, "miles")
  2458. },
  2459. ]
  2460. ))
  2461. characterMakers.push(() => makeCharacter(
  2462. { name: "Shingo", species: ["red-panda"], tags: ["anthro"] },
  2463. {
  2464. front: {
  2465. height: math.unit(6, "feet"),
  2466. weight: math.unit(75, "kg"),
  2467. name: "Front",
  2468. image: {
  2469. source: "./media/characters/shingo/front.svg",
  2470. extra: 706/681,
  2471. bottom: 11/717
  2472. }
  2473. },
  2474. frontAlt: {
  2475. height: math.unit(6, "feet"),
  2476. weight: math.unit(75, "kg"),
  2477. name: "Front (Alt)",
  2478. image: {
  2479. source: "./media/characters/shingo/front-alt.svg",
  2480. extra: 3511 / 3338,
  2481. bottom: 0.005
  2482. }
  2483. },
  2484. paw: {
  2485. height: math.unit(1, "feet"),
  2486. name: "Paw",
  2487. image: {
  2488. source: "./media/characters/shingo/paw.svg"
  2489. }
  2490. },
  2491. },
  2492. [
  2493. {
  2494. name: "Micro",
  2495. height: math.unit(4, "inches")
  2496. },
  2497. {
  2498. name: "Normal",
  2499. height: math.unit(6, "feet"),
  2500. default: true
  2501. },
  2502. {
  2503. name: "Macro",
  2504. height: math.unit(108, "feet")
  2505. },
  2506. {
  2507. name: "Macro+",
  2508. height: math.unit(1500, "feet")
  2509. },
  2510. ]
  2511. ))
  2512. characterMakers.push(() => makeCharacter(
  2513. { name: "Aigey", species: ["wolf", "dolphin"], tags: ["anthro"] },
  2514. {
  2515. side: {
  2516. height: math.unit(6, "feet"),
  2517. weight: math.unit(75, "kg"),
  2518. name: "Side",
  2519. image: {
  2520. source: "./media/characters/aigey/side.svg"
  2521. }
  2522. },
  2523. },
  2524. [
  2525. {
  2526. name: "Macro",
  2527. height: math.unit(200, "feet"),
  2528. default: true
  2529. },
  2530. {
  2531. name: "Megamacro",
  2532. height: math.unit(100, "miles")
  2533. },
  2534. ]
  2535. )
  2536. )
  2537. characterMakers.push(() => makeCharacter(
  2538. { name: "Natasha", species: ["african-wild-dog"], tags: ["anthro"] },
  2539. {
  2540. front: {
  2541. height: math.unit(5 + 5 / 12, "feet"),
  2542. weight: math.unit(75, "kg"),
  2543. name: "Front",
  2544. image: {
  2545. source: "./media/characters/natasha/front.svg",
  2546. extra: 859 / 824,
  2547. bottom: 23 / 879.6
  2548. }
  2549. },
  2550. frontNsfw: {
  2551. height: math.unit(5 + 5 / 12, "feet"),
  2552. weight: math.unit(75, "kg"),
  2553. name: "Front (NSFW)",
  2554. image: {
  2555. source: "./media/characters/natasha/front-nsfw.svg",
  2556. extra: 859 / 824,
  2557. bottom: 23 / 879.6
  2558. }
  2559. },
  2560. frontErect: {
  2561. height: math.unit(5 + 5 / 12, "feet"),
  2562. weight: math.unit(75, "kg"),
  2563. name: "Front (Erect)",
  2564. image: {
  2565. source: "./media/characters/natasha/front-erect.svg",
  2566. extra: 859 / 824,
  2567. bottom: 23 / 879.6
  2568. }
  2569. },
  2570. back: {
  2571. height: math.unit(5 + 5 / 12, "feet"),
  2572. weight: math.unit(75, "kg"),
  2573. name: "Back",
  2574. image: {
  2575. source: "./media/characters/natasha/back.svg",
  2576. extra: 887.9 / 852.6,
  2577. bottom: 9.7 / 896.4
  2578. }
  2579. },
  2580. backAlt: {
  2581. height: math.unit(5 + 5 / 12, "feet"),
  2582. weight: math.unit(75, "kg"),
  2583. name: "Back (Alt)",
  2584. image: {
  2585. source: "./media/characters/natasha/back-alt.svg",
  2586. extra: 1236.7 / 1192,
  2587. bottom: 22.3 / 1258.2
  2588. }
  2589. },
  2590. dick: {
  2591. height: math.unit(1.772, "feet"),
  2592. name: "Dick",
  2593. image: {
  2594. source: "./media/characters/natasha/dick.svg"
  2595. }
  2596. },
  2597. paw: {
  2598. height: math.unit(0.250, "meters"),
  2599. name: "Paw",
  2600. image: {
  2601. source: "./media/characters/natasha/paw.svg"
  2602. }
  2603. },
  2604. },
  2605. [
  2606. {
  2607. name: "Normal",
  2608. height: math.unit(5 + 5 / 12, "feet")
  2609. },
  2610. {
  2611. name: "Large",
  2612. height: math.unit(12, "feet")
  2613. },
  2614. {
  2615. name: "Macro",
  2616. height: math.unit(100, "feet"),
  2617. default: true
  2618. },
  2619. {
  2620. name: "Macro+",
  2621. height: math.unit(260, "feet")
  2622. },
  2623. {
  2624. name: "Macro++",
  2625. height: math.unit(1, "mile")
  2626. },
  2627. ]
  2628. ))
  2629. characterMakers.push(() => makeCharacter(
  2630. { name: "Malik", species: ["hyena"], tags: ["anthro"] },
  2631. {
  2632. front: {
  2633. height: math.unit(6, "feet"),
  2634. weight: math.unit(75, "kg"),
  2635. name: "Front",
  2636. image: {
  2637. source: "./media/characters/malik/front.svg"
  2638. }
  2639. },
  2640. side: {
  2641. height: math.unit(6, "feet"),
  2642. weight: math.unit(75, "kg"),
  2643. name: "Side",
  2644. image: {
  2645. source: "./media/characters/malik/side.svg",
  2646. extra: 1.1539
  2647. }
  2648. },
  2649. back: {
  2650. height: math.unit(6, "feet"),
  2651. weight: math.unit(75, "kg"),
  2652. name: "Back",
  2653. image: {
  2654. source: "./media/characters/malik/back.svg"
  2655. }
  2656. },
  2657. },
  2658. [
  2659. {
  2660. name: "Macro",
  2661. height: math.unit(156, "feet"),
  2662. default: true
  2663. },
  2664. {
  2665. name: "Macro+",
  2666. height: math.unit(1188, "feet")
  2667. },
  2668. ]
  2669. ))
  2670. characterMakers.push(() => makeCharacter(
  2671. { name: "Sefer", species: ["carbuncle"], tags: ["anthro"] },
  2672. {
  2673. front: {
  2674. height: math.unit(6, "feet"),
  2675. weight: math.unit(75, "kg"),
  2676. name: "Front",
  2677. image: {
  2678. source: "./media/characters/sefer/front.svg",
  2679. extra: 848 / 659,
  2680. bottom: 28.3 / 876.442
  2681. }
  2682. },
  2683. back: {
  2684. height: math.unit(6, "feet"),
  2685. weight: math.unit(75, "kg"),
  2686. name: "Back",
  2687. image: {
  2688. source: "./media/characters/sefer/back.svg",
  2689. extra: 864 / 695,
  2690. bottom: 10 / 871
  2691. }
  2692. },
  2693. frontDressed: {
  2694. height: math.unit(6, "feet"),
  2695. weight: math.unit(75, "kg"),
  2696. name: "Front (Dressed)",
  2697. image: {
  2698. source: "./media/characters/sefer/front-dressed.svg",
  2699. extra: 839 / 653,
  2700. bottom: 37.6 / 878
  2701. }
  2702. },
  2703. },
  2704. [
  2705. {
  2706. name: "Normal",
  2707. height: math.unit(6, "feet"),
  2708. default: true
  2709. },
  2710. ]
  2711. ))
  2712. characterMakers.push(() => makeCharacter(
  2713. { name: "North", species: ["leaf-nosed-bat"], tags: ["anthro"] },
  2714. {
  2715. body: {
  2716. height: math.unit(2.2428, "meter"),
  2717. weight: math.unit(124.738, "kg"),
  2718. name: "Body",
  2719. image: {
  2720. extra: 1225 / 1050,
  2721. source: "./media/characters/north/front.svg"
  2722. }
  2723. }
  2724. },
  2725. [
  2726. {
  2727. name: "Micro",
  2728. height: math.unit(4, "inches")
  2729. },
  2730. {
  2731. name: "Macro",
  2732. height: math.unit(63, "meters")
  2733. },
  2734. {
  2735. name: "Megamacro",
  2736. height: math.unit(101, "miles"),
  2737. default: true
  2738. }
  2739. ]
  2740. ))
  2741. characterMakers.push(() => makeCharacter(
  2742. { name: "Talan", species: ["dragon", "fish"], tags: ["anthro"] },
  2743. {
  2744. angled: {
  2745. height: math.unit(4, "meter"),
  2746. weight: math.unit(150, "kg"),
  2747. name: "Angled",
  2748. image: {
  2749. source: "./media/characters/talan/angled-sfw.svg",
  2750. bottom: 29 / 3734
  2751. }
  2752. },
  2753. angledNsfw: {
  2754. height: math.unit(4, "meter"),
  2755. weight: math.unit(150, "kg"),
  2756. name: "Angled (NSFW)",
  2757. image: {
  2758. source: "./media/characters/talan/angled-nsfw.svg",
  2759. bottom: 29 / 3734
  2760. }
  2761. },
  2762. frontNsfw: {
  2763. height: math.unit(4, "meter"),
  2764. weight: math.unit(150, "kg"),
  2765. name: "Front (NSFW)",
  2766. image: {
  2767. source: "./media/characters/talan/front-nsfw.svg",
  2768. bottom: 29 / 3734
  2769. }
  2770. },
  2771. sideNsfw: {
  2772. height: math.unit(4, "meter"),
  2773. weight: math.unit(150, "kg"),
  2774. name: "Side (NSFW)",
  2775. image: {
  2776. source: "./media/characters/talan/side-nsfw.svg",
  2777. bottom: 29 / 3734
  2778. }
  2779. },
  2780. back: {
  2781. height: math.unit(4, "meter"),
  2782. weight: math.unit(150, "kg"),
  2783. name: "Back",
  2784. image: {
  2785. source: "./media/characters/talan/back.svg"
  2786. }
  2787. },
  2788. dickBottom: {
  2789. height: math.unit(0.621, "meter"),
  2790. name: "Dick (Bottom)",
  2791. image: {
  2792. source: "./media/characters/talan/dick-bottom.svg"
  2793. }
  2794. },
  2795. dickTop: {
  2796. height: math.unit(0.621, "meter"),
  2797. name: "Dick (Top)",
  2798. image: {
  2799. source: "./media/characters/talan/dick-top.svg"
  2800. }
  2801. },
  2802. dickSide: {
  2803. height: math.unit(0.305, "meter"),
  2804. name: "Dick (Side)",
  2805. image: {
  2806. source: "./media/characters/talan/dick-side.svg"
  2807. }
  2808. },
  2809. dickFront: {
  2810. height: math.unit(0.305, "meter"),
  2811. name: "Dick (Front)",
  2812. image: {
  2813. source: "./media/characters/talan/dick-front.svg"
  2814. }
  2815. },
  2816. },
  2817. [
  2818. {
  2819. name: "Normal",
  2820. height: math.unit(4, "meters")
  2821. },
  2822. {
  2823. name: "Macro",
  2824. height: math.unit(100, "meters")
  2825. },
  2826. {
  2827. name: "Megamacro",
  2828. height: math.unit(2, "miles"),
  2829. default: true
  2830. },
  2831. {
  2832. name: "Gigamacro",
  2833. height: math.unit(5000, "miles")
  2834. },
  2835. {
  2836. name: "Teramacro",
  2837. height: math.unit(100, "parsecs")
  2838. }
  2839. ]
  2840. ))
  2841. characterMakers.push(() => makeCharacter(
  2842. { name: "Gael'Rathus", species: ["ram", "demon"], tags: ["anthro"] },
  2843. {
  2844. front: {
  2845. height: math.unit(2, "meter"),
  2846. weight: math.unit(90, "kg"),
  2847. name: "Front",
  2848. image: {
  2849. source: "./media/characters/gael'rathus/front.svg"
  2850. }
  2851. },
  2852. frontAlt: {
  2853. height: math.unit(2, "meter"),
  2854. weight: math.unit(90, "kg"),
  2855. name: "Front (alt)",
  2856. image: {
  2857. source: "./media/characters/gael'rathus/front-alt.svg"
  2858. }
  2859. },
  2860. frontAlt2: {
  2861. height: math.unit(2, "meter"),
  2862. weight: math.unit(90, "kg"),
  2863. name: "Front (alt 2)",
  2864. image: {
  2865. source: "./media/characters/gael'rathus/front-alt-2.svg"
  2866. }
  2867. }
  2868. },
  2869. [
  2870. {
  2871. name: "Normal",
  2872. height: math.unit(9, "feet"),
  2873. default: true
  2874. },
  2875. {
  2876. name: "Large",
  2877. height: math.unit(25, "feet")
  2878. },
  2879. {
  2880. name: "Macro",
  2881. height: math.unit(0.25, "miles")
  2882. },
  2883. {
  2884. name: "Megamacro",
  2885. height: math.unit(10, "miles")
  2886. }
  2887. ]
  2888. ))
  2889. characterMakers.push(() => makeCharacter(
  2890. { name: "Sosha", species: ["cougar"], tags: ["feral"] },
  2891. {
  2892. side: {
  2893. height: math.unit(2, "meter"),
  2894. weight: math.unit(140, "kg"),
  2895. name: "Side",
  2896. image: {
  2897. source: "./media/characters/sosha/side.svg",
  2898. bottom: 0.042
  2899. }
  2900. },
  2901. },
  2902. [
  2903. {
  2904. name: "Normal",
  2905. height: math.unit(12, "feet"),
  2906. default: true
  2907. }
  2908. ]
  2909. ))
  2910. characterMakers.push(() => makeCharacter(
  2911. { name: "RuNNoLa", species: ["wolf"], tags: ["feral"] },
  2912. {
  2913. side: {
  2914. height: math.unit(5 + 5 / 12, "feet"),
  2915. weight: math.unit(170, "kg"),
  2916. name: "Side",
  2917. image: {
  2918. source: "./media/characters/runnola/side.svg",
  2919. extra: 741 / 448,
  2920. bottom: 0.05
  2921. }
  2922. },
  2923. },
  2924. [
  2925. {
  2926. name: "Small",
  2927. height: math.unit(3, "feet")
  2928. },
  2929. {
  2930. name: "Normal",
  2931. height: math.unit(5 + 5 / 12, "feet"),
  2932. default: true
  2933. },
  2934. {
  2935. name: "Big",
  2936. height: math.unit(10, "feet")
  2937. },
  2938. ]
  2939. ))
  2940. characterMakers.push(() => makeCharacter(
  2941. { name: "Kurribird", species: ["avian"], tags: ["anthro"] },
  2942. {
  2943. front: {
  2944. height: math.unit(2, "meter"),
  2945. weight: math.unit(50, "kg"),
  2946. name: "Front",
  2947. image: {
  2948. source: "./media/characters/kurribird/front.svg",
  2949. bottom: 0.015
  2950. }
  2951. },
  2952. frontAlt: {
  2953. height: math.unit(1.5, "meter"),
  2954. weight: math.unit(50, "kg"),
  2955. name: "Front (Alt)",
  2956. image: {
  2957. source: "./media/characters/kurribird/front-alt.svg",
  2958. extra: 1.45
  2959. }
  2960. },
  2961. },
  2962. [
  2963. {
  2964. name: "Normal",
  2965. height: math.unit(7, "feet")
  2966. },
  2967. {
  2968. name: "Big",
  2969. height: math.unit(12, "feet"),
  2970. default: true
  2971. },
  2972. {
  2973. name: "Macro",
  2974. height: math.unit(1500, "feet")
  2975. },
  2976. {
  2977. name: "Megamacro",
  2978. height: math.unit(2, "miles")
  2979. }
  2980. ]
  2981. ))
  2982. characterMakers.push(() => makeCharacter(
  2983. { name: "Elbial", species: ["goat", "lion", "demon", "deity"], tags: ["anthro"] },
  2984. {
  2985. front: {
  2986. height: math.unit(2, "meter"),
  2987. weight: math.unit(80, "kg"),
  2988. name: "Front",
  2989. image: {
  2990. source: "./media/characters/elbial/front.svg",
  2991. extra: 1643 / 1556,
  2992. bottom: 60.2 / 1696
  2993. }
  2994. },
  2995. side: {
  2996. height: math.unit(2, "meter"),
  2997. weight: math.unit(80, "kg"),
  2998. name: "Side",
  2999. image: {
  3000. source: "./media/characters/elbial/side.svg",
  3001. extra: 1630 / 1565,
  3002. bottom: 71.5 / 1697
  3003. }
  3004. },
  3005. back: {
  3006. height: math.unit(2, "meter"),
  3007. weight: math.unit(80, "kg"),
  3008. name: "Back",
  3009. image: {
  3010. source: "./media/characters/elbial/back.svg",
  3011. extra: 1668 / 1595,
  3012. bottom: 5.6 / 1672
  3013. }
  3014. },
  3015. frontDressed: {
  3016. height: math.unit(2, "meter"),
  3017. weight: math.unit(80, "kg"),
  3018. name: "Front (Dressed)",
  3019. image: {
  3020. source: "./media/characters/elbial/front-dressed.svg",
  3021. extra: 1653 / 1584,
  3022. bottom: 57 / 1708
  3023. }
  3024. },
  3025. genitals: {
  3026. height: math.unit(2 / 3.367, "meter"),
  3027. name: "Genitals",
  3028. image: {
  3029. source: "./media/characters/elbial/genitals.svg"
  3030. }
  3031. },
  3032. },
  3033. [
  3034. {
  3035. name: "Large",
  3036. height: math.unit(100, "feet")
  3037. },
  3038. {
  3039. name: "Macro",
  3040. height: math.unit(500, "feet"),
  3041. default: true
  3042. },
  3043. {
  3044. name: "Megamacro",
  3045. height: math.unit(10, "miles")
  3046. },
  3047. {
  3048. name: "Gigamacro",
  3049. height: math.unit(25000, "miles")
  3050. },
  3051. {
  3052. name: "Full-Size",
  3053. height: math.unit(8000000, "gigaparsecs")
  3054. }
  3055. ]
  3056. ))
  3057. characterMakers.push(() => makeCharacter(
  3058. { name: "Noah", species: ["harpy-eagle"], tags: ["anthro"] },
  3059. {
  3060. front: {
  3061. height: math.unit(2, "meter"),
  3062. weight: math.unit(60, "kg"),
  3063. name: "Front",
  3064. image: {
  3065. source: "./media/characters/noah/front.svg"
  3066. }
  3067. },
  3068. talons: {
  3069. height: math.unit(0.315, "meter"),
  3070. name: "Talons",
  3071. image: {
  3072. source: "./media/characters/noah/talons.svg"
  3073. }
  3074. }
  3075. },
  3076. [
  3077. {
  3078. name: "Large",
  3079. height: math.unit(50, "feet")
  3080. },
  3081. {
  3082. name: "Macro",
  3083. height: math.unit(750, "feet"),
  3084. default: true
  3085. },
  3086. {
  3087. name: "Megamacro",
  3088. height: math.unit(50, "miles")
  3089. },
  3090. {
  3091. name: "Gigamacro",
  3092. height: math.unit(100000, "miles")
  3093. },
  3094. {
  3095. name: "Full-Size",
  3096. height: math.unit(3000000000, "miles")
  3097. }
  3098. ]
  3099. ))
  3100. characterMakers.push(() => makeCharacter(
  3101. { name: "Natalya", species: ["wolf"], tags: ["anthro"] },
  3102. {
  3103. front: {
  3104. height: math.unit(2, "meter"),
  3105. weight: math.unit(80, "kg"),
  3106. name: "Front",
  3107. image: {
  3108. source: "./media/characters/natalya/front.svg"
  3109. }
  3110. },
  3111. back: {
  3112. height: math.unit(2, "meter"),
  3113. weight: math.unit(80, "kg"),
  3114. name: "Back",
  3115. image: {
  3116. source: "./media/characters/natalya/back.svg"
  3117. }
  3118. }
  3119. },
  3120. [
  3121. {
  3122. name: "Normal",
  3123. height: math.unit(150, "feet"),
  3124. default: true
  3125. },
  3126. {
  3127. name: "Megamacro",
  3128. height: math.unit(5, "miles")
  3129. },
  3130. {
  3131. name: "Full-Size",
  3132. height: math.unit(600, "kiloparsecs")
  3133. }
  3134. ]
  3135. ))
  3136. characterMakers.push(() => makeCharacter(
  3137. { name: "Erestrebah", species: ["avian", "deer"], tags: ["anthro"] },
  3138. {
  3139. front: {
  3140. height: math.unit(2, "meter"),
  3141. weight: math.unit(50, "kg"),
  3142. name: "Front",
  3143. image: {
  3144. source: "./media/characters/erestrebah/front.svg",
  3145. extra: 208 / 193,
  3146. bottom: 0.055
  3147. }
  3148. },
  3149. back: {
  3150. height: math.unit(2, "meter"),
  3151. weight: math.unit(50, "kg"),
  3152. name: "Back",
  3153. image: {
  3154. source: "./media/characters/erestrebah/back.svg",
  3155. extra: 1.3
  3156. }
  3157. }
  3158. },
  3159. [
  3160. {
  3161. name: "Normal",
  3162. height: math.unit(10, "feet")
  3163. },
  3164. {
  3165. name: "Large",
  3166. height: math.unit(50, "feet"),
  3167. default: true
  3168. },
  3169. {
  3170. name: "Macro",
  3171. height: math.unit(300, "feet")
  3172. },
  3173. {
  3174. name: "Macro+",
  3175. height: math.unit(750, "feet")
  3176. },
  3177. {
  3178. name: "Megamacro",
  3179. height: math.unit(3, "miles")
  3180. }
  3181. ]
  3182. ))
  3183. characterMakers.push(() => makeCharacter(
  3184. { name: "Jennifer", species: ["rat", "demon"], tags: ["anthro"] },
  3185. {
  3186. front: {
  3187. height: math.unit(2, "meter"),
  3188. weight: math.unit(80, "kg"),
  3189. name: "Front",
  3190. image: {
  3191. source: "./media/characters/jennifer/front.svg",
  3192. bottom: 0.11,
  3193. extra: 1.16
  3194. }
  3195. },
  3196. frontAlt: {
  3197. height: math.unit(2, "meter"),
  3198. weight: math.unit(80, "kg"),
  3199. name: "Front (Alt)",
  3200. image: {
  3201. source: "./media/characters/jennifer/front-alt.svg"
  3202. }
  3203. }
  3204. },
  3205. [
  3206. {
  3207. name: "Canon Height",
  3208. height: math.unit(120, "feet"),
  3209. default: true
  3210. },
  3211. {
  3212. name: "Macro+",
  3213. height: math.unit(300, "feet")
  3214. },
  3215. {
  3216. name: "Megamacro",
  3217. height: math.unit(20000, "feet")
  3218. }
  3219. ]
  3220. ))
  3221. characterMakers.push(() => makeCharacter(
  3222. { name: "Kalista", species: ["phoenix"], tags: ["anthro"] },
  3223. {
  3224. front: {
  3225. height: math.unit(2, "meter"),
  3226. weight: math.unit(50, "kg"),
  3227. name: "Front",
  3228. image: {
  3229. source: "./media/characters/kalista/front.svg",
  3230. extra: 1947 / 1700,
  3231. bottom: 76.6 / 1412.98
  3232. }
  3233. },
  3234. back: {
  3235. height: math.unit(2, "meter"),
  3236. weight: math.unit(50, "kg"),
  3237. name: "Back",
  3238. image: {
  3239. source: "./media/characters/kalista/back.svg",
  3240. extra: 1366 / 1156,
  3241. bottom: 33.9 / 1362.78
  3242. }
  3243. }
  3244. },
  3245. [
  3246. {
  3247. name: "Uncomfortably Small",
  3248. height: math.unit(10, "feet")
  3249. },
  3250. {
  3251. name: "Small",
  3252. height: math.unit(30, "feet")
  3253. },
  3254. {
  3255. name: "Macro",
  3256. height: math.unit(100, "feet"),
  3257. default: true
  3258. },
  3259. {
  3260. name: "Macro+",
  3261. height: math.unit(2000, "feet")
  3262. },
  3263. {
  3264. name: "True Form",
  3265. height: math.unit(8924, "miles")
  3266. }
  3267. ]
  3268. ))
  3269. characterMakers.push(() => makeCharacter(
  3270. { name: "GiantGrowingVixen", species: ["fox"], tags: ["anthro"] },
  3271. {
  3272. front: {
  3273. height: math.unit(2, "meter"),
  3274. weight: math.unit(120, "kg"),
  3275. name: "Front",
  3276. image: {
  3277. source: "./media/characters/ggv/front.svg"
  3278. }
  3279. },
  3280. side: {
  3281. height: math.unit(2, "meter"),
  3282. weight: math.unit(120, "kg"),
  3283. name: "Side",
  3284. image: {
  3285. source: "./media/characters/ggv/side.svg"
  3286. }
  3287. }
  3288. },
  3289. [
  3290. {
  3291. name: "Extremely Puny",
  3292. height: math.unit(9 + 5 / 12, "feet")
  3293. },
  3294. {
  3295. name: "Horribly Small",
  3296. height: math.unit(47.7, "miles"),
  3297. default: true
  3298. },
  3299. {
  3300. name: "Reasonably Sized",
  3301. height: math.unit(25000, "parsecs")
  3302. },
  3303. {
  3304. name: "Slightly Uncompressed",
  3305. height: math.unit(7.77e31, "parsecs")
  3306. },
  3307. {
  3308. name: "Omniversal",
  3309. height: math.unit(1e300, "meters")
  3310. },
  3311. ]
  3312. ))
  3313. characterMakers.push(() => makeCharacter(
  3314. { name: "Napalm", species: ["aeromorph"], tags: ["anthro"] },
  3315. {
  3316. front: {
  3317. height: math.unit(2, "meter"),
  3318. weight: math.unit(75, "lb"),
  3319. name: "Front",
  3320. image: {
  3321. source: "./media/characters/napalm/front.svg"
  3322. }
  3323. },
  3324. back: {
  3325. height: math.unit(2, "meter"),
  3326. weight: math.unit(75, "lb"),
  3327. name: "Back",
  3328. image: {
  3329. source: "./media/characters/napalm/back.svg"
  3330. }
  3331. }
  3332. },
  3333. [
  3334. {
  3335. name: "Standard",
  3336. height: math.unit(55, "feet"),
  3337. default: true
  3338. }
  3339. ]
  3340. ))
  3341. characterMakers.push(() => makeCharacter(
  3342. { name: "Asana", species: ["android", "jackal"], tags: ["anthro"] },
  3343. {
  3344. front: {
  3345. height: math.unit(7 + 5 / 6, "feet"),
  3346. weight: math.unit(325, "lb"),
  3347. name: "Front",
  3348. image: {
  3349. source: "./media/characters/asana/front.svg",
  3350. extra: 1133 / 1060,
  3351. bottom: 15.2 / 1148.6
  3352. }
  3353. },
  3354. back: {
  3355. height: math.unit(7 + 5 / 6, "feet"),
  3356. weight: math.unit(325, "lb"),
  3357. name: "Back",
  3358. image: {
  3359. source: "./media/characters/asana/back.svg",
  3360. extra: 1114 / 1043,
  3361. bottom: 5 / 1120
  3362. }
  3363. },
  3364. dressedDark: {
  3365. height: math.unit(7 + 5 / 6, "feet"),
  3366. weight: math.unit(325, "lb"),
  3367. name: "Dressed (Dark)",
  3368. image: {
  3369. source: "./media/characters/asana/dressed-dark.svg",
  3370. extra: 1133 / 1060,
  3371. bottom: 15.2 / 1148.6
  3372. }
  3373. },
  3374. dressedLight: {
  3375. height: math.unit(7 + 5 / 6, "feet"),
  3376. weight: math.unit(325, "lb"),
  3377. name: "Dressed (Light)",
  3378. image: {
  3379. source: "./media/characters/asana/dressed-light.svg",
  3380. extra: 1133 / 1060,
  3381. bottom: 15.2 / 1148.6
  3382. }
  3383. },
  3384. },
  3385. [
  3386. {
  3387. name: "Standard",
  3388. height: math.unit(7 + 5 / 6, "feet"),
  3389. default: true
  3390. },
  3391. {
  3392. name: "Large",
  3393. height: math.unit(10, "meters")
  3394. },
  3395. {
  3396. name: "Macro",
  3397. height: math.unit(2500, "meters")
  3398. },
  3399. {
  3400. name: "Megamacro",
  3401. height: math.unit(5e6, "meters")
  3402. },
  3403. {
  3404. name: "Examacro",
  3405. height: math.unit(5e12, "lightyears")
  3406. },
  3407. {
  3408. name: "Max Size",
  3409. height: math.unit(1e31, "lightyears")
  3410. }
  3411. ]
  3412. ))
  3413. characterMakers.push(() => makeCharacter(
  3414. { name: "Ebony", species: ["hoshiko-beast"], tags: ["anthro"] },
  3415. {
  3416. front: {
  3417. height: math.unit(2, "meter"),
  3418. weight: math.unit(60, "kg"),
  3419. name: "Front",
  3420. image: {
  3421. source: "./media/characters/ebony/front.svg",
  3422. bottom: 0.03,
  3423. extra: 1045 / 810 + 0.03
  3424. }
  3425. },
  3426. side: {
  3427. height: math.unit(2, "meter"),
  3428. weight: math.unit(60, "kg"),
  3429. name: "Side",
  3430. image: {
  3431. source: "./media/characters/ebony/side.svg",
  3432. bottom: 0.03,
  3433. extra: 1045 / 810 + 0.03
  3434. }
  3435. },
  3436. back: {
  3437. height: math.unit(2, "meter"),
  3438. weight: math.unit(60, "kg"),
  3439. name: "Back",
  3440. image: {
  3441. source: "./media/characters/ebony/back.svg",
  3442. bottom: 0.01,
  3443. extra: 1045 / 810 + 0.01
  3444. }
  3445. },
  3446. },
  3447. [
  3448. // TODO check why I did this lol
  3449. {
  3450. name: "Standard",
  3451. height: math.unit(9 / 8 * (7 + 5 / 12), "feet"),
  3452. default: true
  3453. },
  3454. {
  3455. name: "Macro",
  3456. height: math.unit(200, "feet")
  3457. },
  3458. {
  3459. name: "Gigamacro",
  3460. height: math.unit(13000, "km")
  3461. }
  3462. ]
  3463. ))
  3464. characterMakers.push(() => makeCharacter(
  3465. { name: "Mountain", species: ["snow-jugani"], tags: ["anthro"] },
  3466. {
  3467. front: {
  3468. height: math.unit(6, "feet"),
  3469. weight: math.unit(175, "lb"),
  3470. name: "Front",
  3471. image: {
  3472. source: "./media/characters/mountain/front.svg",
  3473. extra: 972 / 955,
  3474. bottom: 64 / 1036.6
  3475. }
  3476. },
  3477. back: {
  3478. height: math.unit(6, "feet"),
  3479. weight: math.unit(175, "lb"),
  3480. name: "Back",
  3481. image: {
  3482. source: "./media/characters/mountain/back.svg",
  3483. extra: 970 / 950,
  3484. bottom: 28.25 / 999
  3485. }
  3486. },
  3487. },
  3488. [
  3489. {
  3490. name: "Large",
  3491. height: math.unit(20, "meters")
  3492. },
  3493. {
  3494. name: "Macro",
  3495. height: math.unit(300, "meters")
  3496. },
  3497. {
  3498. name: "Gigamacro",
  3499. height: math.unit(10000, "km"),
  3500. default: true
  3501. },
  3502. {
  3503. name: "Examacro",
  3504. height: math.unit(10e9, "lightyears")
  3505. }
  3506. ]
  3507. ))
  3508. characterMakers.push(() => makeCharacter(
  3509. { name: "Rick", species: ["lion"], tags: ["anthro"] },
  3510. {
  3511. front: {
  3512. height: math.unit(8, "feet"),
  3513. weight: math.unit(500, "lb"),
  3514. name: "Front",
  3515. image: {
  3516. source: "./media/characters/rick/front.svg"
  3517. }
  3518. }
  3519. },
  3520. [
  3521. {
  3522. name: "Normal",
  3523. height: math.unit(8, "feet"),
  3524. default: true
  3525. },
  3526. {
  3527. name: "Macro",
  3528. height: math.unit(5, "km")
  3529. }
  3530. ]
  3531. ))
  3532. characterMakers.push(() => makeCharacter(
  3533. { name: "Ona", species: ["raven"], tags: ["anthro"] },
  3534. {
  3535. front: {
  3536. height: math.unit(8, "feet"),
  3537. weight: math.unit(120, "lb"),
  3538. name: "Front",
  3539. image: {
  3540. source: "./media/characters/ona/front.svg"
  3541. }
  3542. },
  3543. frontAlt: {
  3544. height: math.unit(8, "feet"),
  3545. weight: math.unit(120, "lb"),
  3546. name: "Front (Alt)",
  3547. image: {
  3548. source: "./media/characters/ona/front-alt.svg"
  3549. }
  3550. },
  3551. back: {
  3552. height: math.unit(8, "feet"),
  3553. weight: math.unit(120, "lb"),
  3554. name: "Back",
  3555. image: {
  3556. source: "./media/characters/ona/back.svg"
  3557. }
  3558. },
  3559. foot: {
  3560. height: math.unit(1.1, "feet"),
  3561. name: "Foot",
  3562. image: {
  3563. source: "./media/characters/ona/foot.svg"
  3564. }
  3565. }
  3566. },
  3567. [
  3568. {
  3569. name: "Megamacro",
  3570. height: math.unit(70, "km"),
  3571. default: true
  3572. },
  3573. {
  3574. name: "Gigamacro",
  3575. height: math.unit(681818, "miles")
  3576. },
  3577. {
  3578. name: "Examacro",
  3579. height: math.unit(3800000, "lightyears")
  3580. },
  3581. ]
  3582. ))
  3583. characterMakers.push(() => makeCharacter(
  3584. { name: "Mech", species: ["dragon"], tags: ["anthro"] },
  3585. {
  3586. front: {
  3587. height: math.unit(12, "feet"),
  3588. weight: math.unit(3000, "lb"),
  3589. name: "Front",
  3590. image: {
  3591. source: "./media/characters/mech/front.svg",
  3592. extra: 2900 / 2770,
  3593. bottom: 110 / 3010
  3594. }
  3595. },
  3596. back: {
  3597. height: math.unit(12, "feet"),
  3598. weight: math.unit(3000, "lb"),
  3599. name: "Back",
  3600. image: {
  3601. source: "./media/characters/mech/back.svg",
  3602. extra: 3011 / 2890,
  3603. bottom: 94 / 3105
  3604. }
  3605. },
  3606. maw: {
  3607. height: math.unit(3.07, "feet"),
  3608. name: "Maw",
  3609. image: {
  3610. source: "./media/characters/mech/maw.svg"
  3611. }
  3612. },
  3613. head: {
  3614. height: math.unit(2.82, "feet"),
  3615. name: "Head",
  3616. image: {
  3617. source: "./media/characters/mech/head.svg"
  3618. }
  3619. },
  3620. dick: {
  3621. height: math.unit(1.43, "feet"),
  3622. name: "Dick",
  3623. image: {
  3624. source: "./media/characters/mech/dick.svg"
  3625. }
  3626. },
  3627. },
  3628. [
  3629. {
  3630. name: "Normal",
  3631. height: math.unit(12, "feet")
  3632. },
  3633. {
  3634. name: "Macro",
  3635. height: math.unit(300, "feet"),
  3636. default: true
  3637. },
  3638. {
  3639. name: "Macro+",
  3640. height: math.unit(1500, "feet")
  3641. },
  3642. ]
  3643. ))
  3644. characterMakers.push(() => makeCharacter(
  3645. { name: "Gregory", species: ["goat"], tags: ["anthro"] },
  3646. {
  3647. front: {
  3648. height: math.unit(1.3, "meter"),
  3649. weight: math.unit(30, "kg"),
  3650. name: "Front",
  3651. image: {
  3652. source: "./media/characters/gregory/front.svg",
  3653. }
  3654. }
  3655. },
  3656. [
  3657. {
  3658. name: "Normal",
  3659. height: math.unit(1.3, "meter"),
  3660. default: true
  3661. },
  3662. {
  3663. name: "Macro",
  3664. height: math.unit(20, "meter")
  3665. }
  3666. ]
  3667. ))
  3668. characterMakers.push(() => makeCharacter(
  3669. { name: "Elory", species: ["goat"], tags: ["anthro"] },
  3670. {
  3671. front: {
  3672. height: math.unit(2.8, "meter"),
  3673. weight: math.unit(200, "kg"),
  3674. name: "Front",
  3675. image: {
  3676. source: "./media/characters/elory/front.svg",
  3677. }
  3678. }
  3679. },
  3680. [
  3681. {
  3682. name: "Normal",
  3683. height: math.unit(2.8, "meter"),
  3684. default: true
  3685. },
  3686. {
  3687. name: "Macro",
  3688. height: math.unit(38, "meter")
  3689. }
  3690. ]
  3691. ))
  3692. characterMakers.push(() => makeCharacter(
  3693. { name: "Angelpatamon", species: ["patamon", "deity"], tags: ["anthro"] },
  3694. {
  3695. front: {
  3696. height: math.unit(470, "feet"),
  3697. weight: math.unit(924, "tons"),
  3698. name: "Front",
  3699. image: {
  3700. source: "./media/characters/angelpatamon/front.svg",
  3701. }
  3702. }
  3703. },
  3704. [
  3705. {
  3706. name: "Normal",
  3707. height: math.unit(470, "feet"),
  3708. default: true
  3709. },
  3710. {
  3711. name: "Deity Size I",
  3712. height: math.unit(28651.2, "km")
  3713. },
  3714. {
  3715. name: "Deity Size II",
  3716. height: math.unit(171907.2, "km")
  3717. }
  3718. ]
  3719. ))
  3720. characterMakers.push(() => makeCharacter(
  3721. { name: "Cryae", species: ["dragon"], tags: ["feral"] },
  3722. {
  3723. side: {
  3724. height: math.unit(7.2, "meter"),
  3725. weight: math.unit(8.2, "tons"),
  3726. name: "Side",
  3727. image: {
  3728. source: "./media/characters/cryae/side.svg",
  3729. extra: 3500 / 1500
  3730. }
  3731. }
  3732. },
  3733. [
  3734. {
  3735. name: "Normal",
  3736. height: math.unit(7.2, "meter"),
  3737. default: true
  3738. }
  3739. ]
  3740. ))
  3741. characterMakers.push(() => makeCharacter(
  3742. { name: "Xera", species: ["jugani"], tags: ["anthro"] },
  3743. {
  3744. front: {
  3745. height: math.unit(6, "feet"),
  3746. weight: math.unit(175, "lb"),
  3747. name: "Front",
  3748. image: {
  3749. source: "./media/characters/xera/front.svg",
  3750. extra: 2377 / 1972,
  3751. bottom: 75.5 / 2452
  3752. }
  3753. },
  3754. side: {
  3755. height: math.unit(6, "feet"),
  3756. weight: math.unit(175, "lb"),
  3757. name: "Side",
  3758. image: {
  3759. source: "./media/characters/xera/side.svg",
  3760. extra: 2345 / 2019,
  3761. bottom: 39.7 / 2384
  3762. }
  3763. },
  3764. back: {
  3765. height: math.unit(6, "feet"),
  3766. weight: math.unit(175, "lb"),
  3767. name: "Back",
  3768. image: {
  3769. source: "./media/characters/xera/back.svg",
  3770. extra: 2095 / 1984,
  3771. bottom: 67 / 2166
  3772. }
  3773. },
  3774. },
  3775. [
  3776. {
  3777. name: "Small",
  3778. height: math.unit(10, "feet")
  3779. },
  3780. {
  3781. name: "Macro",
  3782. height: math.unit(500, "meters"),
  3783. default: true
  3784. },
  3785. {
  3786. name: "Macro+",
  3787. height: math.unit(10, "km")
  3788. },
  3789. {
  3790. name: "Gigamacro",
  3791. height: math.unit(25000, "km")
  3792. },
  3793. {
  3794. name: "Teramacro",
  3795. height: math.unit(3e6, "km")
  3796. }
  3797. ]
  3798. ))
  3799. characterMakers.push(() => makeCharacter(
  3800. { name: "Nebula", species: ["dragon", "wolf"], tags: ["anthro"] },
  3801. {
  3802. front: {
  3803. height: math.unit(6, "feet"),
  3804. weight: math.unit(175, "lb"),
  3805. name: "Front",
  3806. image: {
  3807. source: "./media/characters/nebula/front.svg",
  3808. extra: 2566 / 2362,
  3809. bottom: 81 / 2644
  3810. }
  3811. }
  3812. },
  3813. [
  3814. {
  3815. name: "Small",
  3816. height: math.unit(4.5, "meters")
  3817. },
  3818. {
  3819. name: "Macro",
  3820. height: math.unit(1500, "meters"),
  3821. default: true
  3822. },
  3823. {
  3824. name: "Megamacro",
  3825. height: math.unit(150, "km")
  3826. },
  3827. {
  3828. name: "Gigamacro",
  3829. height: math.unit(27000, "km")
  3830. }
  3831. ]
  3832. ))
  3833. characterMakers.push(() => makeCharacter(
  3834. { name: "Abysgar", species: ["raptor"], tags: ["anthro"] },
  3835. {
  3836. front: {
  3837. height: math.unit(6, "feet"),
  3838. weight: math.unit(225, "lb"),
  3839. name: "Front",
  3840. image: {
  3841. source: "./media/characters/abysgar/front.svg"
  3842. }
  3843. }
  3844. },
  3845. [
  3846. {
  3847. name: "Small",
  3848. height: math.unit(4.5, "meters")
  3849. },
  3850. {
  3851. name: "Macro",
  3852. height: math.unit(1250, "meters"),
  3853. default: true
  3854. },
  3855. {
  3856. name: "Megamacro",
  3857. height: math.unit(125, "km")
  3858. },
  3859. {
  3860. name: "Gigamacro",
  3861. height: math.unit(26000, "km")
  3862. }
  3863. ]
  3864. ))
  3865. characterMakers.push(() => makeCharacter(
  3866. { name: "Yakuz", species: ["wolf"], tags: ["anthro"] },
  3867. {
  3868. front: {
  3869. height: math.unit(6, "feet"),
  3870. weight: math.unit(180, "lb"),
  3871. name: "Front",
  3872. image: {
  3873. source: "./media/characters/yakuz/front.svg"
  3874. }
  3875. }
  3876. },
  3877. [
  3878. {
  3879. name: "Small",
  3880. height: math.unit(5, "meters")
  3881. },
  3882. {
  3883. name: "Macro",
  3884. height: math.unit(1500, "meters"),
  3885. default: true
  3886. },
  3887. {
  3888. name: "Megamacro",
  3889. height: math.unit(200, "km")
  3890. },
  3891. {
  3892. name: "Gigamacro",
  3893. height: math.unit(100000, "km")
  3894. }
  3895. ]
  3896. ))
  3897. characterMakers.push(() => makeCharacter(
  3898. { name: "Mirova", species: ["luxray", "shark"], tags: ["anthro"] },
  3899. {
  3900. front: {
  3901. height: math.unit(6, "feet"),
  3902. weight: math.unit(175, "lb"),
  3903. name: "Front",
  3904. image: {
  3905. source: "./media/characters/mirova/front.svg",
  3906. extra: 3334 / 3071,
  3907. bottom: 42 / 3375.6
  3908. }
  3909. }
  3910. },
  3911. [
  3912. {
  3913. name: "Small",
  3914. height: math.unit(5, "meters")
  3915. },
  3916. {
  3917. name: "Macro",
  3918. height: math.unit(900, "meters"),
  3919. default: true
  3920. },
  3921. {
  3922. name: "Megamacro",
  3923. height: math.unit(135, "km")
  3924. },
  3925. {
  3926. name: "Gigamacro",
  3927. height: math.unit(20000, "km")
  3928. }
  3929. ]
  3930. ))
  3931. characterMakers.push(() => makeCharacter(
  3932. { name: "Asana (Mech)", species: ["zoid"], tags: ["feral"] },
  3933. {
  3934. side: {
  3935. height: math.unit(28.35, "feet"),
  3936. weight: math.unit(99.75, "tons"),
  3937. name: "Side",
  3938. image: {
  3939. source: "./media/characters/asana-mech/side.svg",
  3940. extra: 923 / 699,
  3941. bottom: 50 / 975
  3942. }
  3943. },
  3944. chaingun: {
  3945. height: math.unit(7, "feet"),
  3946. weight: math.unit(2400, "lb"),
  3947. name: "Chaingun",
  3948. image: {
  3949. source: "./media/characters/asana-mech/chaingun.svg"
  3950. }
  3951. },
  3952. laser: {
  3953. height: math.unit(7.12, "feet"),
  3954. weight: math.unit(2000, "lb"),
  3955. name: "Laser",
  3956. image: {
  3957. source: "./media/characters/asana-mech/laser.svg"
  3958. }
  3959. },
  3960. },
  3961. [
  3962. {
  3963. name: "Normal",
  3964. height: math.unit(28.35, "feet"),
  3965. default: true
  3966. },
  3967. {
  3968. name: "Macro",
  3969. height: math.unit(2500, "feet")
  3970. },
  3971. {
  3972. name: "Megamacro",
  3973. height: math.unit(25, "miles")
  3974. },
  3975. {
  3976. name: "Examacro",
  3977. height: math.unit(6e8, "lightyears")
  3978. },
  3979. ]
  3980. ))
  3981. characterMakers.push(() => makeCharacter(
  3982. { name: "Asche", species: ["fox", "dragon", "lion"], tags: ["anthro"] },
  3983. {
  3984. front: {
  3985. height: math.unit(5, "meters"),
  3986. weight: math.unit(1000, "kg"),
  3987. name: "Front",
  3988. image: {
  3989. source: "./media/characters/asche/front.svg",
  3990. extra: 1258 / 1190,
  3991. bottom: 47 / 1305
  3992. }
  3993. },
  3994. frontUnderwear: {
  3995. height: math.unit(5, "meters"),
  3996. weight: math.unit(1000, "kg"),
  3997. name: "Front (Underwear)",
  3998. image: {
  3999. source: "./media/characters/asche/front-underwear.svg",
  4000. extra: 1258 / 1190,
  4001. bottom: 47 / 1305
  4002. }
  4003. },
  4004. frontDressed: {
  4005. height: math.unit(5, "meters"),
  4006. weight: math.unit(1000, "kg"),
  4007. name: "Front (Dressed)",
  4008. image: {
  4009. source: "./media/characters/asche/front-dressed.svg",
  4010. extra: 1258 / 1190,
  4011. bottom: 47 / 1305
  4012. }
  4013. },
  4014. frontArmor: {
  4015. height: math.unit(5, "meters"),
  4016. weight: math.unit(1000, "kg"),
  4017. name: "Front (Armored)",
  4018. image: {
  4019. source: "./media/characters/asche/front-armored.svg",
  4020. extra: 1374 / 1308,
  4021. bottom: 23 / 1397
  4022. }
  4023. },
  4024. mp724: {
  4025. height: math.unit(0.96, "meters"),
  4026. weight: math.unit(38, "kg"),
  4027. name: "H&K MP724",
  4028. image: {
  4029. source: "./media/characters/asche/h&k-mp724.svg"
  4030. }
  4031. },
  4032. side: {
  4033. height: math.unit(5, "meters"),
  4034. weight: math.unit(1000, "kg"),
  4035. name: "Side",
  4036. image: {
  4037. source: "./media/characters/asche/side.svg",
  4038. extra: 1717 / 1609,
  4039. bottom: 0.005
  4040. }
  4041. },
  4042. back: {
  4043. height: math.unit(5, "meters"),
  4044. weight: math.unit(1000, "kg"),
  4045. name: "Back",
  4046. image: {
  4047. source: "./media/characters/asche/back.svg",
  4048. extra: 1570 / 1501
  4049. }
  4050. },
  4051. },
  4052. [
  4053. {
  4054. name: "DEFCON 5",
  4055. height: math.unit(5, "meters")
  4056. },
  4057. {
  4058. name: "DEFCON 4",
  4059. height: math.unit(500, "meters"),
  4060. default: true
  4061. },
  4062. {
  4063. name: "DEFCON 3",
  4064. height: math.unit(5, "km")
  4065. },
  4066. {
  4067. name: "DEFCON 2",
  4068. height: math.unit(500, "km")
  4069. },
  4070. {
  4071. name: "DEFCON 1",
  4072. height: math.unit(500000, "km")
  4073. },
  4074. {
  4075. name: "DEFCON 0",
  4076. height: math.unit(3, "gigaparsecs")
  4077. },
  4078. ]
  4079. ))
  4080. characterMakers.push(() => makeCharacter(
  4081. { name: "Gale", species: ["monster"], tags: ["anthro"] },
  4082. {
  4083. front: {
  4084. height: math.unit(2, "meters"),
  4085. weight: math.unit(76, "kg"),
  4086. name: "Front",
  4087. image: {
  4088. source: "./media/characters/gale/front.svg"
  4089. }
  4090. },
  4091. frontAlt1: {
  4092. height: math.unit(2, "meters"),
  4093. weight: math.unit(76, "kg"),
  4094. name: "Front (Alt 1)",
  4095. image: {
  4096. source: "./media/characters/gale/front-alt-1.svg"
  4097. }
  4098. },
  4099. frontAlt2: {
  4100. height: math.unit(2, "meters"),
  4101. weight: math.unit(76, "kg"),
  4102. name: "Front (Alt 2)",
  4103. image: {
  4104. source: "./media/characters/gale/front-alt-2.svg"
  4105. }
  4106. },
  4107. },
  4108. [
  4109. {
  4110. name: "Normal",
  4111. height: math.unit(7, "feet")
  4112. },
  4113. {
  4114. name: "Macro",
  4115. height: math.unit(150, "feet"),
  4116. default: true
  4117. },
  4118. {
  4119. name: "Macro+",
  4120. height: math.unit(300, "feet")
  4121. },
  4122. ]
  4123. ))
  4124. characterMakers.push(() => makeCharacter(
  4125. { name: "Draylen", species: ["coyote"], tags: ["anthro"] },
  4126. {
  4127. front: {
  4128. height: math.unit(2, "meters"),
  4129. weight: math.unit(76, "kg"),
  4130. name: "Front",
  4131. image: {
  4132. source: "./media/characters/draylen/front.svg"
  4133. }
  4134. }
  4135. },
  4136. [
  4137. {
  4138. name: "Macro",
  4139. height: math.unit(150, "feet"),
  4140. default: true
  4141. }
  4142. ]
  4143. ))
  4144. characterMakers.push(() => makeCharacter(
  4145. { name: "Chez", species: ["foo-dog"], tags: ["anthro"] },
  4146. {
  4147. front: {
  4148. height: math.unit(7 + 9 / 12, "feet"),
  4149. weight: math.unit(379, "lbs"),
  4150. name: "Front",
  4151. image: {
  4152. source: "./media/characters/chez/front.svg"
  4153. }
  4154. },
  4155. side: {
  4156. height: math.unit(7 + 9 / 12, "feet"),
  4157. weight: math.unit(379, "lbs"),
  4158. name: "Side",
  4159. image: {
  4160. source: "./media/characters/chez/side.svg"
  4161. }
  4162. }
  4163. },
  4164. [
  4165. {
  4166. name: "Normal",
  4167. height: math.unit(7 + 9 / 12, "feet"),
  4168. default: true
  4169. },
  4170. {
  4171. name: "God King",
  4172. height: math.unit(9750000, "meters")
  4173. }
  4174. ]
  4175. ))
  4176. characterMakers.push(() => makeCharacter(
  4177. { name: "Kaylum", species: ["dragon", "shark"], tags: ["anthro"] },
  4178. {
  4179. front: {
  4180. height: math.unit(6, "feet"),
  4181. weight: math.unit(275, "lbs"),
  4182. name: "Front",
  4183. image: {
  4184. source: "./media/characters/kaylum/front.svg",
  4185. bottom: 0.01,
  4186. extra: 1166 / 1031
  4187. }
  4188. },
  4189. frontWingless: {
  4190. height: math.unit(6, "feet"),
  4191. weight: math.unit(275, "lbs"),
  4192. name: "Front (Wingless)",
  4193. image: {
  4194. source: "./media/characters/kaylum/front-wingless.svg",
  4195. bottom: 0.01,
  4196. extra: 1117 / 1031
  4197. }
  4198. }
  4199. },
  4200. [
  4201. {
  4202. name: "Normal",
  4203. height: math.unit(3.05, "meters")
  4204. },
  4205. {
  4206. name: "Master",
  4207. height: math.unit(5.5, "meters")
  4208. },
  4209. {
  4210. name: "Rampage",
  4211. height: math.unit(19, "meters")
  4212. },
  4213. {
  4214. name: "Macro Lite",
  4215. height: math.unit(37, "meters")
  4216. },
  4217. {
  4218. name: "Hyper Predator",
  4219. height: math.unit(61, "meters")
  4220. },
  4221. {
  4222. name: "Macro",
  4223. height: math.unit(138, "meters"),
  4224. default: true
  4225. }
  4226. ]
  4227. ))
  4228. characterMakers.push(() => makeCharacter(
  4229. { name: "Geta", species: ["fox"], tags: ["anthro"] },
  4230. {
  4231. front: {
  4232. height: math.unit(6, "feet"),
  4233. weight: math.unit(150, "lbs"),
  4234. name: "Front",
  4235. image: {
  4236. source: "./media/characters/geta/front.svg"
  4237. }
  4238. }
  4239. },
  4240. [
  4241. {
  4242. name: "Micro",
  4243. height: math.unit(3, "inches"),
  4244. default: true
  4245. },
  4246. {
  4247. name: "Normal",
  4248. height: math.unit(5 + 5 / 12, "feet")
  4249. }
  4250. ]
  4251. ))
  4252. characterMakers.push(() => makeCharacter(
  4253. { name: "Tyrnn", species: ["dragon"], tags: ["anthro"] },
  4254. {
  4255. front: {
  4256. height: math.unit(6, "feet"),
  4257. weight: math.unit(300, "lbs"),
  4258. name: "Front",
  4259. image: {
  4260. source: "./media/characters/tyrnn/front.svg"
  4261. }
  4262. }
  4263. },
  4264. [
  4265. {
  4266. name: "Main Height",
  4267. height: math.unit(355, "feet"),
  4268. default: true
  4269. },
  4270. {
  4271. name: "Fave. Height",
  4272. height: math.unit(2400, "feet")
  4273. }
  4274. ]
  4275. ))
  4276. characterMakers.push(() => makeCharacter(
  4277. { name: "Apple", species: ["elephant"], tags: ["anthro"] },
  4278. {
  4279. front: {
  4280. height: math.unit(6, "feet"),
  4281. weight: math.unit(300, "lbs"),
  4282. name: "Front",
  4283. image: {
  4284. source: "./media/characters/appledectomy/front.svg"
  4285. }
  4286. }
  4287. },
  4288. [
  4289. {
  4290. name: "Macro",
  4291. height: math.unit(2500, "feet")
  4292. },
  4293. {
  4294. name: "Megamacro",
  4295. height: math.unit(50, "miles"),
  4296. default: true
  4297. },
  4298. {
  4299. name: "Gigamacro",
  4300. height: math.unit(5000, "miles")
  4301. },
  4302. {
  4303. name: "Teramacro",
  4304. height: math.unit(250000, "miles")
  4305. },
  4306. ]
  4307. ))
  4308. characterMakers.push(() => makeCharacter(
  4309. { name: "Vulpes", species: ["fox"], tags: ["anthro"] },
  4310. {
  4311. front: {
  4312. height: math.unit(6, "feet"),
  4313. weight: math.unit(200, "lbs"),
  4314. name: "Front",
  4315. image: {
  4316. source: "./media/characters/vulpes/front.svg",
  4317. extra: 573 / 543,
  4318. bottom: 0.033
  4319. }
  4320. },
  4321. side: {
  4322. height: math.unit(6, "feet"),
  4323. weight: math.unit(200, "lbs"),
  4324. name: "Side",
  4325. image: {
  4326. source: "./media/characters/vulpes/side.svg",
  4327. extra: 577 / 549,
  4328. bottom: 11 / 588
  4329. }
  4330. },
  4331. back: {
  4332. height: math.unit(6, "feet"),
  4333. weight: math.unit(200, "lbs"),
  4334. name: "Back",
  4335. image: {
  4336. source: "./media/characters/vulpes/back.svg",
  4337. extra: 573 / 549,
  4338. bottom: 20 / 593
  4339. }
  4340. },
  4341. feet: {
  4342. height: math.unit(1.276, "feet"),
  4343. name: "Feet",
  4344. image: {
  4345. source: "./media/characters/vulpes/feet.svg"
  4346. }
  4347. },
  4348. maw: {
  4349. height: math.unit(1.18, "feet"),
  4350. name: "Maw",
  4351. image: {
  4352. source: "./media/characters/vulpes/maw.svg"
  4353. }
  4354. },
  4355. },
  4356. [
  4357. {
  4358. name: "Micro",
  4359. height: math.unit(2, "inches")
  4360. },
  4361. {
  4362. name: "Normal",
  4363. height: math.unit(6.3, "feet")
  4364. },
  4365. {
  4366. name: "Macro",
  4367. height: math.unit(850, "feet")
  4368. },
  4369. {
  4370. name: "Megamacro",
  4371. height: math.unit(7500, "feet"),
  4372. default: true
  4373. },
  4374. {
  4375. name: "Gigamacro",
  4376. height: math.unit(570000, "miles")
  4377. }
  4378. ]
  4379. ))
  4380. characterMakers.push(() => makeCharacter(
  4381. { name: "Rain Fallen", species: ["wolf", "demon"], tags: ["anthro", "feral"] },
  4382. {
  4383. front: {
  4384. height: math.unit(6, "feet"),
  4385. weight: math.unit(210, "lbs"),
  4386. name: "Front",
  4387. image: {
  4388. source: "./media/characters/rain-fallen/front.svg"
  4389. }
  4390. },
  4391. side: {
  4392. height: math.unit(6, "feet"),
  4393. weight: math.unit(210, "lbs"),
  4394. name: "Side",
  4395. image: {
  4396. source: "./media/characters/rain-fallen/side.svg"
  4397. }
  4398. },
  4399. back: {
  4400. height: math.unit(6, "feet"),
  4401. weight: math.unit(210, "lbs"),
  4402. name: "Back",
  4403. image: {
  4404. source: "./media/characters/rain-fallen/back.svg"
  4405. }
  4406. },
  4407. feral: {
  4408. height: math.unit(9, "feet"),
  4409. weight: math.unit(700, "lbs"),
  4410. name: "Feral",
  4411. image: {
  4412. source: "./media/characters/rain-fallen/feral.svg"
  4413. }
  4414. },
  4415. },
  4416. [
  4417. {
  4418. name: "Meddling with Mortals",
  4419. height: math.unit(8 + 8/12, "feet")
  4420. },
  4421. {
  4422. name: "Normal",
  4423. height: math.unit(5, "meter")
  4424. },
  4425. {
  4426. name: "Macro",
  4427. height: math.unit(150, "meter"),
  4428. default: true
  4429. },
  4430. {
  4431. name: "Megamacro",
  4432. height: math.unit(278e6, "meter")
  4433. },
  4434. {
  4435. name: "Gigamacro",
  4436. height: math.unit(2e9, "meter")
  4437. },
  4438. {
  4439. name: "Teramacro",
  4440. height: math.unit(8e12, "meter")
  4441. },
  4442. {
  4443. name: "Devourer",
  4444. height: math.unit(14, "zettameters")
  4445. },
  4446. {
  4447. name: "Scarlet King",
  4448. height: math.unit(18, "yottameters")
  4449. },
  4450. {
  4451. name: "Void",
  4452. height: math.unit(1e88, "yottameters")
  4453. }
  4454. ]
  4455. ))
  4456. characterMakers.push(() => makeCharacter(
  4457. { name: "Zaakira", species: ["wolf"], tags: ["anthro"] },
  4458. {
  4459. standing: {
  4460. height: math.unit(6, "feet"),
  4461. weight: math.unit(180, "lbs"),
  4462. name: "Standing",
  4463. image: {
  4464. source: "./media/characters/zaakira/standing.svg"
  4465. }
  4466. },
  4467. laying: {
  4468. height: math.unit(3, "feet"),
  4469. weight: math.unit(180, "lbs"),
  4470. name: "Laying",
  4471. image: {
  4472. source: "./media/characters/zaakira/laying.svg"
  4473. }
  4474. },
  4475. },
  4476. [
  4477. {
  4478. name: "Normal",
  4479. height: math.unit(12, "feet")
  4480. },
  4481. {
  4482. name: "Macro",
  4483. height: math.unit(279, "feet"),
  4484. default: true
  4485. }
  4486. ]
  4487. ))
  4488. characterMakers.push(() => makeCharacter(
  4489. { name: "Sigvald", species: ["dragon"], tags: ["anthro"] },
  4490. {
  4491. femSfw: {
  4492. height: math.unit(8, "feet"),
  4493. weight: math.unit(350, "lb"),
  4494. name: "Fem",
  4495. image: {
  4496. source: "./media/characters/sigvald/fem-sfw.svg",
  4497. extra: 182 / 164,
  4498. bottom: 8.7 / 190.5
  4499. }
  4500. },
  4501. femNsfw: {
  4502. height: math.unit(8, "feet"),
  4503. weight: math.unit(350, "lb"),
  4504. name: "Fem (NSFW)",
  4505. image: {
  4506. source: "./media/characters/sigvald/fem-nsfw.svg",
  4507. extra: 182 / 164,
  4508. bottom: 8.7 / 190.5
  4509. }
  4510. },
  4511. maleNsfw: {
  4512. height: math.unit(8, "feet"),
  4513. weight: math.unit(350, "lb"),
  4514. name: "Male (NSFW)",
  4515. image: {
  4516. source: "./media/characters/sigvald/male-nsfw.svg",
  4517. extra: 182 / 164,
  4518. bottom: 8.7 / 190.5
  4519. }
  4520. },
  4521. hermNsfw: {
  4522. height: math.unit(8, "feet"),
  4523. weight: math.unit(350, "lb"),
  4524. name: "Herm (NSFW)",
  4525. image: {
  4526. source: "./media/characters/sigvald/herm-nsfw.svg",
  4527. extra: 182 / 164,
  4528. bottom: 8.7 / 190.5
  4529. }
  4530. },
  4531. dick: {
  4532. height: math.unit(2.36, "feet"),
  4533. name: "Dick",
  4534. image: {
  4535. source: "./media/characters/sigvald/dick.svg"
  4536. }
  4537. },
  4538. eye: {
  4539. height: math.unit(0.31, "feet"),
  4540. name: "Eye",
  4541. image: {
  4542. source: "./media/characters/sigvald/eye.svg"
  4543. }
  4544. },
  4545. mouth: {
  4546. height: math.unit(0.92, "feet"),
  4547. name: "Mouth",
  4548. image: {
  4549. source: "./media/characters/sigvald/mouth.svg"
  4550. }
  4551. },
  4552. paws: {
  4553. height: math.unit(2.2, "feet"),
  4554. name: "Paws",
  4555. image: {
  4556. source: "./media/characters/sigvald/paws.svg"
  4557. }
  4558. }
  4559. },
  4560. [
  4561. {
  4562. name: "Normal",
  4563. height: math.unit(8, "feet")
  4564. },
  4565. {
  4566. name: "Large",
  4567. height: math.unit(12, "feet")
  4568. },
  4569. {
  4570. name: "Larger",
  4571. height: math.unit(20, "feet")
  4572. },
  4573. {
  4574. name: "Macro",
  4575. height: math.unit(150, "feet")
  4576. },
  4577. {
  4578. name: "Macro+",
  4579. height: math.unit(200, "feet"),
  4580. default: true
  4581. },
  4582. ]
  4583. ))
  4584. characterMakers.push(() => makeCharacter(
  4585. { name: "Scott", species: ["fox"], tags: ["taur"] },
  4586. {
  4587. side: {
  4588. height: math.unit(12, "feet"),
  4589. weight: math.unit(2000, "kg"),
  4590. name: "Side",
  4591. image: {
  4592. source: "./media/characters/scott/side.svg",
  4593. extra: 754 / 724,
  4594. bottom: 0.069
  4595. }
  4596. },
  4597. upright: {
  4598. height: math.unit(12, "feet"),
  4599. weight: math.unit(2000, "kg"),
  4600. name: "Upright",
  4601. image: {
  4602. source: "./media/characters/scott/upright.svg",
  4603. extra: 3881 / 3722,
  4604. bottom: 0.05
  4605. }
  4606. },
  4607. },
  4608. [
  4609. {
  4610. name: "Normal",
  4611. height: math.unit(12, "feet"),
  4612. default: true
  4613. },
  4614. ]
  4615. ))
  4616. characterMakers.push(() => makeCharacter(
  4617. { name: "Tobias", species: ["dragon"], tags: ["feral"] },
  4618. {
  4619. side: {
  4620. height: math.unit(8, "meters"),
  4621. weight: math.unit(84755, "lbs"),
  4622. name: "Side",
  4623. image: {
  4624. source: "./media/characters/tobias/side.svg",
  4625. extra: 1474 / 1096,
  4626. bottom: 38.9 / 1513.1235
  4627. }
  4628. },
  4629. },
  4630. [
  4631. {
  4632. name: "Normal",
  4633. height: math.unit(8, "meters"),
  4634. default: true
  4635. },
  4636. ]
  4637. ))
  4638. characterMakers.push(() => makeCharacter(
  4639. { name: "Kieran", species: ["wolf"], tags: ["taur"] },
  4640. {
  4641. front: {
  4642. height: math.unit(5.5, "feet"),
  4643. weight: math.unit(400, "lbs"),
  4644. name: "Front",
  4645. image: {
  4646. source: "./media/characters/kieran/front.svg",
  4647. extra: 2694 / 2364,
  4648. bottom: 217 / 2908
  4649. }
  4650. },
  4651. side: {
  4652. height: math.unit(5.5, "feet"),
  4653. weight: math.unit(400, "lbs"),
  4654. name: "Side",
  4655. image: {
  4656. source: "./media/characters/kieran/side.svg",
  4657. extra: 875 / 777,
  4658. bottom: 84.6 / 959
  4659. }
  4660. },
  4661. },
  4662. [
  4663. {
  4664. name: "Normal",
  4665. height: math.unit(5.5, "feet"),
  4666. default: true
  4667. },
  4668. ]
  4669. ))
  4670. characterMakers.push(() => makeCharacter(
  4671. { name: "Sanya", species: ["eagle"], tags: ["anthro"] },
  4672. {
  4673. side: {
  4674. height: math.unit(2, "meters"),
  4675. weight: math.unit(70, "kg"),
  4676. name: "Side",
  4677. image: {
  4678. source: "./media/characters/sanya/side.svg",
  4679. bottom: 0.02,
  4680. extra: 1.02
  4681. }
  4682. },
  4683. },
  4684. [
  4685. {
  4686. name: "Small",
  4687. height: math.unit(2, "meters")
  4688. },
  4689. {
  4690. name: "Normal",
  4691. height: math.unit(3, "meters")
  4692. },
  4693. {
  4694. name: "Macro",
  4695. height: math.unit(16, "meters"),
  4696. default: true
  4697. },
  4698. ]
  4699. ))
  4700. characterMakers.push(() => makeCharacter(
  4701. { name: "Miranda", species: ["dragon"], tags: ["anthro"] },
  4702. {
  4703. front: {
  4704. height: math.unit(2, "meters"),
  4705. weight: math.unit(120, "kg"),
  4706. name: "Front",
  4707. image: {
  4708. source: "./media/characters/miranda/front.svg",
  4709. extra: 195 / 185,
  4710. bottom: 10.9 / 206.5
  4711. }
  4712. },
  4713. back: {
  4714. height: math.unit(2, "meters"),
  4715. weight: math.unit(120, "kg"),
  4716. name: "Back",
  4717. image: {
  4718. source: "./media/characters/miranda/back.svg",
  4719. extra: 201 / 193,
  4720. bottom: 2.3 / 203.7
  4721. }
  4722. },
  4723. },
  4724. [
  4725. {
  4726. name: "Normal",
  4727. height: math.unit(10, "feet"),
  4728. default: true
  4729. }
  4730. ]
  4731. ))
  4732. characterMakers.push(() => makeCharacter(
  4733. { name: "James", species: ["deer"], tags: ["anthro"] },
  4734. {
  4735. side: {
  4736. height: math.unit(2, "meters"),
  4737. weight: math.unit(100, "kg"),
  4738. name: "Front",
  4739. image: {
  4740. source: "./media/characters/james/front.svg",
  4741. extra: 10 / 8.5
  4742. }
  4743. },
  4744. },
  4745. [
  4746. {
  4747. name: "Normal",
  4748. height: math.unit(8.5, "feet"),
  4749. default: true
  4750. }
  4751. ]
  4752. ))
  4753. characterMakers.push(() => makeCharacter(
  4754. { name: "Heather", species: ["cow"], tags: ["taur"] },
  4755. {
  4756. side: {
  4757. height: math.unit(9.5, "feet"),
  4758. weight: math.unit(2500, "lbs"),
  4759. name: "Side",
  4760. image: {
  4761. source: "./media/characters/heather/side.svg"
  4762. }
  4763. },
  4764. },
  4765. [
  4766. {
  4767. name: "Normal",
  4768. height: math.unit(9.5, "feet"),
  4769. default: true
  4770. }
  4771. ]
  4772. ))
  4773. characterMakers.push(() => makeCharacter(
  4774. { name: "Lukas", species: ["dog"], tags: ["feral"] },
  4775. {
  4776. side: {
  4777. height: math.unit(6.5, "feet"),
  4778. weight: math.unit(400, "lbs"),
  4779. name: "Side",
  4780. image: {
  4781. source: "./media/characters/lukas/side.svg",
  4782. extra: 7.25 / 6.5
  4783. }
  4784. },
  4785. },
  4786. [
  4787. {
  4788. name: "Normal",
  4789. height: math.unit(6.5, "feet"),
  4790. default: true
  4791. }
  4792. ]
  4793. ))
  4794. characterMakers.push(() => makeCharacter(
  4795. { name: "Louise", species: ["crocodile"], tags: ["feral"] },
  4796. {
  4797. side: {
  4798. height: math.unit(5, "feet"),
  4799. weight: math.unit(3000, "lbs"),
  4800. name: "Side",
  4801. image: {
  4802. source: "./media/characters/louise/side.svg"
  4803. }
  4804. },
  4805. },
  4806. [
  4807. {
  4808. name: "Normal",
  4809. height: math.unit(5, "feet"),
  4810. default: true
  4811. }
  4812. ]
  4813. ))
  4814. characterMakers.push(() => makeCharacter(
  4815. { name: "Ramona", species: ["borzoi"], tags: ["anthro"] },
  4816. {
  4817. side: {
  4818. height: math.unit(6, "feet"),
  4819. weight: math.unit(150, "lbs"),
  4820. name: "Side",
  4821. image: {
  4822. source: "./media/characters/ramona/side.svg"
  4823. }
  4824. },
  4825. },
  4826. [
  4827. {
  4828. name: "Normal",
  4829. height: math.unit(5.3, "meters"),
  4830. default: true
  4831. },
  4832. {
  4833. name: "Macro",
  4834. height: math.unit(20, "stories")
  4835. },
  4836. {
  4837. name: "Macro+",
  4838. height: math.unit(50, "stories")
  4839. },
  4840. ]
  4841. ))
  4842. characterMakers.push(() => makeCharacter(
  4843. { name: "Deerpuff", species: ["deer"], tags: ["anthro"] },
  4844. {
  4845. standing: {
  4846. height: math.unit(5.75, "feet"),
  4847. weight: math.unit(160, "lbs"),
  4848. name: "Standing",
  4849. image: {
  4850. source: "./media/characters/deerpuff/standing.svg",
  4851. extra: 682 / 624
  4852. }
  4853. },
  4854. sitting: {
  4855. height: math.unit(5.75 / 1.79, "feet"),
  4856. weight: math.unit(160, "lbs"),
  4857. name: "Sitting",
  4858. image: {
  4859. source: "./media/characters/deerpuff/sitting.svg",
  4860. bottom: 44 / 400,
  4861. extra: 1
  4862. }
  4863. },
  4864. taurLaying: {
  4865. height: math.unit(6, "feet"),
  4866. weight: math.unit(400, "lbs"),
  4867. name: "Taur (Laying)",
  4868. image: {
  4869. source: "./media/characters/deerpuff/taur-laying.svg"
  4870. }
  4871. },
  4872. },
  4873. [
  4874. {
  4875. name: "Puffball",
  4876. height: math.unit(6, "inches")
  4877. },
  4878. {
  4879. name: "Normalpuff",
  4880. height: math.unit(5.75, "feet")
  4881. },
  4882. {
  4883. name: "Macropuff",
  4884. height: math.unit(1500, "feet"),
  4885. default: true
  4886. },
  4887. {
  4888. name: "Megapuff",
  4889. height: math.unit(500, "miles")
  4890. },
  4891. {
  4892. name: "Gigapuff",
  4893. height: math.unit(250000, "miles")
  4894. },
  4895. {
  4896. name: "Omegapuff",
  4897. height: math.unit(1000, "lightyears")
  4898. },
  4899. ]
  4900. ))
  4901. characterMakers.push(() => makeCharacter(
  4902. { name: "Vivian", species: ["wolf"], tags: ["anthro"] },
  4903. {
  4904. stomping: {
  4905. height: math.unit(6, "feet"),
  4906. weight: math.unit(170, "lbs"),
  4907. name: "Stomping",
  4908. image: {
  4909. source: "./media/characters/vivian/stomping.svg"
  4910. }
  4911. },
  4912. sitting: {
  4913. height: math.unit(6 / 1.75, "feet"),
  4914. weight: math.unit(170, "lbs"),
  4915. name: "Sitting",
  4916. image: {
  4917. source: "./media/characters/vivian/sitting.svg",
  4918. bottom: 1 / 6.4,
  4919. extra: 1,
  4920. }
  4921. },
  4922. },
  4923. [
  4924. {
  4925. name: "Normal",
  4926. height: math.unit(7, "feet"),
  4927. default: true
  4928. },
  4929. {
  4930. name: "Macro",
  4931. height: math.unit(10, "stories")
  4932. },
  4933. {
  4934. name: "Macro+",
  4935. height: math.unit(30, "stories")
  4936. },
  4937. {
  4938. name: "Megamacro",
  4939. height: math.unit(10, "miles")
  4940. },
  4941. {
  4942. name: "Megamacro+",
  4943. height: math.unit(2750000, "meters")
  4944. },
  4945. ]
  4946. ))
  4947. characterMakers.push(() => makeCharacter(
  4948. { name: "Prince", species: ["deer"], tags: ["anthro"] },
  4949. {
  4950. front: {
  4951. height: math.unit(6, "feet"),
  4952. weight: math.unit(160, "lbs"),
  4953. name: "Front",
  4954. image: {
  4955. source: "./media/characters/prince/front.svg",
  4956. extra: 3400 / 3000
  4957. }
  4958. },
  4959. jumping: {
  4960. height: math.unit(6, "feet"),
  4961. weight: math.unit(160, "lbs"),
  4962. name: "Jumping",
  4963. image: {
  4964. source: "./media/characters/prince/jump.svg",
  4965. extra: 2555 / 2134
  4966. }
  4967. },
  4968. },
  4969. [
  4970. {
  4971. name: "Normal",
  4972. height: math.unit(7.75, "feet"),
  4973. default: true
  4974. },
  4975. {
  4976. name: "Not cute",
  4977. height: math.unit(17, "feet")
  4978. },
  4979. {
  4980. name: "I said NOT",
  4981. height: math.unit(91, "feet")
  4982. },
  4983. {
  4984. name: "Please stop",
  4985. height: math.unit(560, "feet")
  4986. },
  4987. {
  4988. name: "What have you done",
  4989. height: math.unit(2200, "feet")
  4990. },
  4991. {
  4992. name: "Deer God",
  4993. height: math.unit(3.6, "miles")
  4994. },
  4995. ]
  4996. ))
  4997. characterMakers.push(() => makeCharacter(
  4998. { name: "Psymon", species: ["horned-bush-viper", "cobra"], tags: ["anthro", "feral"] },
  4999. {
  5000. standing: {
  5001. height: math.unit(6, "feet"),
  5002. weight: math.unit(300, "lbs"),
  5003. name: "Standing",
  5004. image: {
  5005. source: "./media/characters/psymon/standing.svg",
  5006. extra: 1888 / 1810,
  5007. bottom: 0.05
  5008. }
  5009. },
  5010. slithering: {
  5011. height: math.unit(6, "feet"),
  5012. weight: math.unit(300, "lbs"),
  5013. name: "Slithering",
  5014. image: {
  5015. source: "./media/characters/psymon/slithering.svg",
  5016. extra: 1330 / 1224
  5017. }
  5018. },
  5019. slitheringAlt: {
  5020. height: math.unit(6, "feet"),
  5021. weight: math.unit(300, "lbs"),
  5022. name: "Slithering (Alt)",
  5023. image: {
  5024. source: "./media/characters/psymon/slithering-alt.svg",
  5025. extra: 1330 / 1224
  5026. }
  5027. },
  5028. },
  5029. [
  5030. {
  5031. name: "Normal",
  5032. height: math.unit(11.25, "feet"),
  5033. default: true
  5034. },
  5035. {
  5036. name: "Large",
  5037. height: math.unit(27, "feet")
  5038. },
  5039. {
  5040. name: "Giant",
  5041. height: math.unit(87, "feet")
  5042. },
  5043. {
  5044. name: "Macro",
  5045. height: math.unit(365, "feet")
  5046. },
  5047. {
  5048. name: "Megamacro",
  5049. height: math.unit(3, "miles")
  5050. },
  5051. {
  5052. name: "World Serpent",
  5053. height: math.unit(8000, "miles")
  5054. },
  5055. ]
  5056. ))
  5057. characterMakers.push(() => makeCharacter(
  5058. { name: "Daimos", species: ["veilhound"], tags: ["anthro"] },
  5059. {
  5060. front: {
  5061. height: math.unit(6, "feet"),
  5062. weight: math.unit(180, "lbs"),
  5063. name: "Front",
  5064. image: {
  5065. source: "./media/characters/daimos/front.svg",
  5066. extra: 4160 / 3897,
  5067. bottom: 0.021
  5068. }
  5069. }
  5070. },
  5071. [
  5072. {
  5073. name: "Normal",
  5074. height: math.unit(8, "feet"),
  5075. default: true
  5076. },
  5077. {
  5078. name: "Big Dog",
  5079. height: math.unit(22, "feet")
  5080. },
  5081. {
  5082. name: "Macro",
  5083. height: math.unit(127, "feet")
  5084. },
  5085. {
  5086. name: "Megamacro",
  5087. height: math.unit(3600, "feet")
  5088. },
  5089. ]
  5090. ))
  5091. characterMakers.push(() => makeCharacter(
  5092. { name: "Blake", species: ["raptor"], tags: ["feral"] },
  5093. {
  5094. side: {
  5095. height: math.unit(6, "feet"),
  5096. weight: math.unit(180, "lbs"),
  5097. name: "Side",
  5098. image: {
  5099. source: "./media/characters/blake/side.svg",
  5100. extra: 1212 / 1120,
  5101. bottom: 0.05
  5102. }
  5103. },
  5104. crouched: {
  5105. height: math.unit(6 * 0.57, "feet"),
  5106. weight: math.unit(180, "lbs"),
  5107. name: "Crouched",
  5108. image: {
  5109. source: "./media/characters/blake/crouched.svg",
  5110. extra: 840 / 587,
  5111. bottom: 0.04
  5112. }
  5113. },
  5114. bent: {
  5115. height: math.unit(6 * 0.75, "feet"),
  5116. weight: math.unit(180, "lbs"),
  5117. name: "Bent",
  5118. image: {
  5119. source: "./media/characters/blake/bent.svg",
  5120. extra: 592 / 544,
  5121. bottom: 0.035
  5122. }
  5123. },
  5124. },
  5125. [
  5126. {
  5127. name: "Normal",
  5128. height: math.unit(8 + 1 / 6, "feet"),
  5129. default: true
  5130. },
  5131. {
  5132. name: "Big Backside",
  5133. height: math.unit(37, "feet")
  5134. },
  5135. {
  5136. name: "Subway Shredder",
  5137. height: math.unit(72, "feet")
  5138. },
  5139. {
  5140. name: "City Carver",
  5141. height: math.unit(1675, "feet")
  5142. },
  5143. {
  5144. name: "Tectonic Tweaker",
  5145. height: math.unit(2300, "miles")
  5146. },
  5147. ]
  5148. ))
  5149. characterMakers.push(() => makeCharacter(
  5150. { name: "Guisetto", species: ["beetle", "moth"], tags: ["anthro"] },
  5151. {
  5152. front: {
  5153. height: math.unit(6, "feet"),
  5154. weight: math.unit(180, "lbs"),
  5155. name: "Front",
  5156. image: {
  5157. source: "./media/characters/guisetto/front.svg",
  5158. extra: 856 / 817,
  5159. bottom: 0.06
  5160. }
  5161. },
  5162. airborne: {
  5163. height: math.unit(6, "feet"),
  5164. weight: math.unit(180, "lbs"),
  5165. name: "Airborne",
  5166. image: {
  5167. source: "./media/characters/guisetto/airborne.svg",
  5168. extra: 584 / 525
  5169. }
  5170. },
  5171. },
  5172. [
  5173. {
  5174. name: "Normal",
  5175. height: math.unit(10 + 11 / 12, "feet"),
  5176. default: true
  5177. },
  5178. {
  5179. name: "Large",
  5180. height: math.unit(35, "feet")
  5181. },
  5182. {
  5183. name: "Macro",
  5184. height: math.unit(475, "feet")
  5185. },
  5186. ]
  5187. ))
  5188. characterMakers.push(() => makeCharacter(
  5189. { name: "Luxor", species: ["moth"], tags: ["anthro"] },
  5190. {
  5191. front: {
  5192. height: math.unit(6, "feet"),
  5193. weight: math.unit(180, "lbs"),
  5194. name: "Front",
  5195. image: {
  5196. source: "./media/characters/luxor/front.svg",
  5197. extra: 2940 / 2152
  5198. }
  5199. },
  5200. back: {
  5201. height: math.unit(6, "feet"),
  5202. weight: math.unit(180, "lbs"),
  5203. name: "Back",
  5204. image: {
  5205. source: "./media/characters/luxor/back.svg",
  5206. extra: 1083 / 960
  5207. }
  5208. },
  5209. },
  5210. [
  5211. {
  5212. name: "Normal",
  5213. height: math.unit(5 + 5 / 6, "feet"),
  5214. default: true
  5215. },
  5216. {
  5217. name: "Lamp",
  5218. height: math.unit(50, "feet")
  5219. },
  5220. {
  5221. name: "Lämp",
  5222. height: math.unit(300, "feet")
  5223. },
  5224. {
  5225. name: "The sun is a lamp",
  5226. height: math.unit(250000, "miles")
  5227. },
  5228. ]
  5229. ))
  5230. characterMakers.push(() => makeCharacter(
  5231. { name: "Huoyan", species: ["eastern-dragon"], tags: ["feral"] },
  5232. {
  5233. front: {
  5234. height: math.unit(6, "feet"),
  5235. weight: math.unit(50, "lbs"),
  5236. name: "Front",
  5237. image: {
  5238. source: "./media/characters/huoyan/front.svg"
  5239. }
  5240. },
  5241. side: {
  5242. height: math.unit(6, "feet"),
  5243. weight: math.unit(180, "lbs"),
  5244. name: "Side",
  5245. image: {
  5246. source: "./media/characters/huoyan/side.svg"
  5247. }
  5248. },
  5249. },
  5250. [
  5251. {
  5252. name: "Chef",
  5253. height: math.unit(9, "feet")
  5254. },
  5255. {
  5256. name: "Normal",
  5257. height: math.unit(65, "feet"),
  5258. default: true
  5259. },
  5260. {
  5261. name: "Macro",
  5262. height: math.unit(780, "feet")
  5263. },
  5264. {
  5265. name: "Flaming Mountain",
  5266. height: math.unit(4.8, "miles")
  5267. },
  5268. {
  5269. name: "Celestial",
  5270. height: math.unit(765000, "miles")
  5271. },
  5272. ]
  5273. ))
  5274. characterMakers.push(() => makeCharacter(
  5275. { name: "Tails", species: ["coyote"], tags: ["anthro"] },
  5276. {
  5277. front: {
  5278. height: math.unit(5 + 3 / 4, "feet"),
  5279. weight: math.unit(120, "lbs"),
  5280. name: "Front",
  5281. image: {
  5282. source: "./media/characters/tails/front.svg"
  5283. }
  5284. }
  5285. },
  5286. [
  5287. {
  5288. name: "Normal",
  5289. height: math.unit(5 + 3 / 4, "feet"),
  5290. default: true
  5291. }
  5292. ]
  5293. ))
  5294. characterMakers.push(() => makeCharacter(
  5295. { name: "Rainy", species: ["jaguar"], tags: ["anthro"] },
  5296. {
  5297. front: {
  5298. height: math.unit(4, "feet"),
  5299. weight: math.unit(50, "lbs"),
  5300. name: "Front",
  5301. image: {
  5302. source: "./media/characters/rainy/front.svg"
  5303. }
  5304. }
  5305. },
  5306. [
  5307. {
  5308. name: "Macro",
  5309. height: math.unit(800, "feet"),
  5310. default: true
  5311. }
  5312. ]
  5313. ))
  5314. characterMakers.push(() => makeCharacter(
  5315. { name: "Rainier", species: ["snow-leopard"], tags: ["anthro"] },
  5316. {
  5317. front: {
  5318. height: math.unit(6, "feet"),
  5319. weight: math.unit(150, "lbs"),
  5320. name: "Front",
  5321. image: {
  5322. source: "./media/characters/rainier/front.svg"
  5323. }
  5324. }
  5325. },
  5326. [
  5327. {
  5328. name: "Micro",
  5329. height: math.unit(2, "mm"),
  5330. default: true
  5331. }
  5332. ]
  5333. ))
  5334. characterMakers.push(() => makeCharacter(
  5335. { name: "Andy", species: ["fox"], tags: ["anthro"] },
  5336. {
  5337. front: {
  5338. height: math.unit(6, "feet"),
  5339. weight: math.unit(180, "lbs"),
  5340. name: "Front",
  5341. image: {
  5342. source: "./media/characters/andy/front.svg"
  5343. }
  5344. }
  5345. },
  5346. [
  5347. {
  5348. name: "Normal",
  5349. height: math.unit(8, "feet"),
  5350. default: true
  5351. },
  5352. {
  5353. name: "Macro",
  5354. height: math.unit(1000, "feet")
  5355. },
  5356. {
  5357. name: "Megamacro",
  5358. height: math.unit(5, "miles")
  5359. },
  5360. {
  5361. name: "Gigamacro",
  5362. height: math.unit(5000, "miles")
  5363. },
  5364. ]
  5365. ))
  5366. characterMakers.push(() => makeCharacter(
  5367. { name: "Cimmaron", species: ["horse"], tags: ["anthro"] },
  5368. {
  5369. front: {
  5370. height: math.unit(6, "feet"),
  5371. weight: math.unit(210, "lbs"),
  5372. name: "Front",
  5373. image: {
  5374. source: "./media/characters/cimmaron/front-sfw.svg",
  5375. extra: 701 / 676,
  5376. bottom: 0.046
  5377. }
  5378. },
  5379. back: {
  5380. height: math.unit(6, "feet"),
  5381. weight: math.unit(210, "lbs"),
  5382. name: "Back",
  5383. image: {
  5384. source: "./media/characters/cimmaron/back-sfw.svg",
  5385. extra: 701 / 676,
  5386. bottom: 0.046
  5387. }
  5388. },
  5389. frontNsfw: {
  5390. height: math.unit(6, "feet"),
  5391. weight: math.unit(210, "lbs"),
  5392. name: "Front (NSFW)",
  5393. image: {
  5394. source: "./media/characters/cimmaron/front-nsfw.svg",
  5395. extra: 701 / 676,
  5396. bottom: 0.046
  5397. }
  5398. },
  5399. backNsfw: {
  5400. height: math.unit(6, "feet"),
  5401. weight: math.unit(210, "lbs"),
  5402. name: "Back (NSFW)",
  5403. image: {
  5404. source: "./media/characters/cimmaron/back-nsfw.svg",
  5405. extra: 701 / 676,
  5406. bottom: 0.046
  5407. }
  5408. },
  5409. dick: {
  5410. height: math.unit(1.714, "feet"),
  5411. name: "Dick",
  5412. image: {
  5413. source: "./media/characters/cimmaron/dick.svg"
  5414. }
  5415. },
  5416. },
  5417. [
  5418. {
  5419. name: "Normal",
  5420. height: math.unit(6, "feet"),
  5421. default: true
  5422. },
  5423. {
  5424. name: "Macro Mayor",
  5425. height: math.unit(350, "meters")
  5426. },
  5427. ]
  5428. ))
  5429. characterMakers.push(() => makeCharacter(
  5430. { name: "Akari Kaen", species: ["sergal"], tags: ["anthro"] },
  5431. {
  5432. front: {
  5433. height: math.unit(6, "feet"),
  5434. weight: math.unit(200, "lbs"),
  5435. name: "Front",
  5436. image: {
  5437. source: "./media/characters/akari/front.svg",
  5438. extra: 962 / 901,
  5439. bottom: 0.04
  5440. }
  5441. }
  5442. },
  5443. [
  5444. {
  5445. name: "Micro",
  5446. height: math.unit(5, "inches"),
  5447. default: true
  5448. },
  5449. {
  5450. name: "Normal",
  5451. height: math.unit(7, "feet")
  5452. },
  5453. ]
  5454. ))
  5455. characterMakers.push(() => makeCharacter(
  5456. { name: "Cynosura", species: ["gryphon"], tags: ["anthro"] },
  5457. {
  5458. front: {
  5459. height: math.unit(6, "feet"),
  5460. weight: math.unit(140, "lbs"),
  5461. name: "Front",
  5462. image: {
  5463. source: "./media/characters/cynosura/front.svg",
  5464. extra: 896 / 847
  5465. }
  5466. },
  5467. back: {
  5468. height: math.unit(6, "feet"),
  5469. weight: math.unit(140, "lbs"),
  5470. name: "Back",
  5471. image: {
  5472. source: "./media/characters/cynosura/back.svg",
  5473. extra: 1365 / 1250
  5474. }
  5475. },
  5476. },
  5477. [
  5478. {
  5479. name: "Micro",
  5480. height: math.unit(4, "inches")
  5481. },
  5482. {
  5483. name: "Normal",
  5484. height: math.unit(5.75, "feet"),
  5485. default: true
  5486. },
  5487. {
  5488. name: "Tall",
  5489. height: math.unit(10, "feet")
  5490. },
  5491. {
  5492. name: "Big",
  5493. height: math.unit(20, "feet")
  5494. },
  5495. {
  5496. name: "Macro",
  5497. height: math.unit(50, "feet")
  5498. },
  5499. ]
  5500. ))
  5501. characterMakers.push(() => makeCharacter(
  5502. { name: "Gin", species: ["dragon"], tags: ["anthro"] },
  5503. {
  5504. front: {
  5505. height: math.unit(6, "feet"),
  5506. weight: math.unit(170, "lbs"),
  5507. name: "Front",
  5508. image: {
  5509. source: "./media/characters/gin/front.svg",
  5510. extra: 1.053,
  5511. bottom: 0.025
  5512. }
  5513. },
  5514. foot: {
  5515. height: math.unit(6 / 4.25, "feet"),
  5516. name: "Foot",
  5517. image: {
  5518. source: "./media/characters/gin/foot.svg"
  5519. }
  5520. },
  5521. sole: {
  5522. height: math.unit(6 / 4.40, "feet"),
  5523. name: "Sole",
  5524. image: {
  5525. source: "./media/characters/gin/sole.svg"
  5526. }
  5527. },
  5528. },
  5529. [
  5530. {
  5531. name: "Normal",
  5532. height: math.unit(13 + 2 / 12, "feet")
  5533. },
  5534. {
  5535. name: "Macro",
  5536. height: math.unit(1500, "feet")
  5537. },
  5538. {
  5539. name: "Megamacro",
  5540. height: math.unit(200, "miles"),
  5541. default: true
  5542. },
  5543. {
  5544. name: "Gigamacro",
  5545. height: math.unit(500, "megameters")
  5546. },
  5547. {
  5548. name: "Teramacro",
  5549. height: math.unit(15, "lightyears")
  5550. }
  5551. ]
  5552. ))
  5553. characterMakers.push(() => makeCharacter(
  5554. { name: "Guy", species: ["bat"], tags: ["anthro"] },
  5555. {
  5556. front: {
  5557. height: math.unit(6 + 1 / 6, "feet"),
  5558. weight: math.unit(178, "lbs"),
  5559. name: "Front",
  5560. image: {
  5561. source: "./media/characters/guy/front.svg"
  5562. }
  5563. }
  5564. },
  5565. [
  5566. {
  5567. name: "Normal",
  5568. height: math.unit(6 + 1 / 6, "feet"),
  5569. default: true
  5570. },
  5571. {
  5572. name: "Large",
  5573. height: math.unit(25 + 7 / 12, "feet")
  5574. },
  5575. {
  5576. name: "Macro",
  5577. height: math.unit(60 + 9 / 12, "feet")
  5578. },
  5579. {
  5580. name: "Macro+",
  5581. height: math.unit(246, "feet")
  5582. },
  5583. {
  5584. name: "Macro++",
  5585. height: math.unit(878, "feet")
  5586. }
  5587. ]
  5588. ))
  5589. characterMakers.push(() => makeCharacter(
  5590. { name: "Tiberius", species: ["jackal", "robot"], tags: ["anthro"] },
  5591. {
  5592. front: {
  5593. height: math.unit(9, "feet"),
  5594. weight: math.unit(800, "lbs"),
  5595. name: "Front",
  5596. image: {
  5597. source: "./media/characters/tiberius/front.svg",
  5598. extra: 2295 / 2071
  5599. }
  5600. },
  5601. back: {
  5602. height: math.unit(9, "feet"),
  5603. weight: math.unit(800, "lbs"),
  5604. name: "Back",
  5605. image: {
  5606. source: "./media/characters/tiberius/back.svg",
  5607. extra: 2373 / 2160
  5608. }
  5609. },
  5610. },
  5611. [
  5612. {
  5613. name: "Normal",
  5614. height: math.unit(9, "feet"),
  5615. default: true
  5616. }
  5617. ]
  5618. ))
  5619. characterMakers.push(() => makeCharacter(
  5620. { name: "Surgo", species: ["medihound"], tags: ["feral"] },
  5621. {
  5622. front: {
  5623. height: math.unit(6, "feet"),
  5624. weight: math.unit(600, "lbs"),
  5625. name: "Front",
  5626. image: {
  5627. source: "./media/characters/surgo/front.svg",
  5628. extra: 3591 / 2227
  5629. }
  5630. },
  5631. back: {
  5632. height: math.unit(6, "feet"),
  5633. weight: math.unit(600, "lbs"),
  5634. name: "Back",
  5635. image: {
  5636. source: "./media/characters/surgo/back.svg",
  5637. extra: 3557 / 2228
  5638. }
  5639. },
  5640. laying: {
  5641. height: math.unit(6 * 0.85, "feet"),
  5642. weight: math.unit(600, "lbs"),
  5643. name: "Laying",
  5644. image: {
  5645. source: "./media/characters/surgo/laying.svg"
  5646. }
  5647. },
  5648. },
  5649. [
  5650. {
  5651. name: "Normal",
  5652. height: math.unit(6, "feet"),
  5653. default: true
  5654. }
  5655. ]
  5656. ))
  5657. characterMakers.push(() => makeCharacter(
  5658. { name: "Cibus", species: ["dragon"], tags: ["feral"] },
  5659. {
  5660. side: {
  5661. height: math.unit(6, "feet"),
  5662. weight: math.unit(150, "lbs"),
  5663. name: "Side",
  5664. image: {
  5665. source: "./media/characters/cibus/side.svg",
  5666. extra: 800 / 400
  5667. }
  5668. },
  5669. },
  5670. [
  5671. {
  5672. name: "Normal",
  5673. height: math.unit(6, "feet"),
  5674. default: true
  5675. }
  5676. ]
  5677. ))
  5678. characterMakers.push(() => makeCharacter(
  5679. { name: "Nibbles", species: ["shark", "android"], tags: ["anthro"] },
  5680. {
  5681. front: {
  5682. height: math.unit(6, "feet"),
  5683. weight: math.unit(240, "lbs"),
  5684. name: "Front",
  5685. image: {
  5686. source: "./media/characters/nibbles/front.svg"
  5687. }
  5688. },
  5689. side: {
  5690. height: math.unit(6, "feet"),
  5691. weight: math.unit(240, "lbs"),
  5692. name: "Side",
  5693. image: {
  5694. source: "./media/characters/nibbles/side.svg"
  5695. }
  5696. },
  5697. },
  5698. [
  5699. {
  5700. name: "Normal",
  5701. height: math.unit(9, "feet"),
  5702. default: true
  5703. }
  5704. ]
  5705. ))
  5706. characterMakers.push(() => makeCharacter(
  5707. { name: "Rikky", species: ["coyote"], tags: ["anthro"] },
  5708. {
  5709. side: {
  5710. height: math.unit(5 + 1 / 6, "feet"),
  5711. weight: math.unit(130, "lbs"),
  5712. name: "Side",
  5713. image: {
  5714. source: "./media/characters/rikky/side.svg",
  5715. extra: 851 / 801
  5716. }
  5717. },
  5718. },
  5719. [
  5720. {
  5721. name: "Normal",
  5722. height: math.unit(5 + 1 / 6, "feet")
  5723. },
  5724. {
  5725. name: "Macro",
  5726. height: math.unit(152, "feet"),
  5727. default: true
  5728. },
  5729. {
  5730. name: "Megamacro",
  5731. height: math.unit(7, "miles")
  5732. }
  5733. ]
  5734. ))
  5735. characterMakers.push(() => makeCharacter(
  5736. { name: "Malfressa", species: ["dragon"], tags: ["anthro", "feral"] },
  5737. {
  5738. side: {
  5739. height: math.unit(370, "cm"),
  5740. weight: math.unit(350, "lbs"),
  5741. name: "Side",
  5742. image: {
  5743. source: "./media/characters/malfressa/side.svg"
  5744. }
  5745. },
  5746. walking: {
  5747. height: math.unit(370, "cm"),
  5748. weight: math.unit(350, "lbs"),
  5749. name: "Walking",
  5750. image: {
  5751. source: "./media/characters/malfressa/walking.svg"
  5752. }
  5753. },
  5754. feral: {
  5755. height: math.unit(2500, "cm"),
  5756. weight: math.unit(100000, "lbs"),
  5757. name: "Feral",
  5758. image: {
  5759. source: "./media/characters/malfressa/feral.svg",
  5760. extra: 2108 / 837,
  5761. bottom: 0.02
  5762. }
  5763. },
  5764. },
  5765. [
  5766. {
  5767. name: "Normal",
  5768. height: math.unit(370, "cm")
  5769. },
  5770. {
  5771. name: "Macro",
  5772. height: math.unit(300, "meters"),
  5773. default: true
  5774. }
  5775. ]
  5776. ))
  5777. characterMakers.push(() => makeCharacter(
  5778. { name: "Jaro", species: ["dragon"], tags: ["anthro"] },
  5779. {
  5780. front: {
  5781. height: math.unit(6, "feet"),
  5782. weight: math.unit(60, "kg"),
  5783. name: "Front",
  5784. image: {
  5785. source: "./media/characters/jaro/front.svg"
  5786. }
  5787. },
  5788. back: {
  5789. height: math.unit(6, "feet"),
  5790. weight: math.unit(60, "kg"),
  5791. name: "Back",
  5792. image: {
  5793. source: "./media/characters/jaro/back.svg"
  5794. }
  5795. },
  5796. },
  5797. [
  5798. {
  5799. name: "Micro",
  5800. height: math.unit(7, "inches")
  5801. },
  5802. {
  5803. name: "Normal",
  5804. height: math.unit(5.5, "feet"),
  5805. default: true
  5806. },
  5807. {
  5808. name: "Minimacro",
  5809. height: math.unit(20, "feet")
  5810. },
  5811. {
  5812. name: "Macro",
  5813. height: math.unit(200, "meters")
  5814. }
  5815. ]
  5816. ))
  5817. characterMakers.push(() => makeCharacter(
  5818. { name: "Rogue", species: ["wolf"], tags: ["anthro"] },
  5819. {
  5820. front: {
  5821. height: math.unit(6, "feet"),
  5822. weight: math.unit(195, "lb"),
  5823. name: "Front",
  5824. image: {
  5825. source: "./media/characters/rogue/front.svg"
  5826. }
  5827. },
  5828. },
  5829. [
  5830. {
  5831. name: "Macro",
  5832. height: math.unit(90, "feet"),
  5833. default: true
  5834. },
  5835. ]
  5836. ))
  5837. characterMakers.push(() => makeCharacter(
  5838. { name: "Piper", species: ["deer"], tags: ["anthro"] },
  5839. {
  5840. front: {
  5841. height: math.unit(5 + 8 / 12, "feet"),
  5842. weight: math.unit(140, "lb"),
  5843. name: "Front",
  5844. image: {
  5845. source: "./media/characters/piper/front.svg",
  5846. extra: 3948/3655,
  5847. bottom: 0/3948
  5848. }
  5849. },
  5850. },
  5851. [
  5852. {
  5853. name: "Micro",
  5854. height: math.unit(2, "inches")
  5855. },
  5856. {
  5857. name: "Normal",
  5858. height: math.unit(5 + 8 / 12, "feet")
  5859. },
  5860. {
  5861. name: "Macro",
  5862. height: math.unit(250, "feet"),
  5863. default: true
  5864. },
  5865. {
  5866. name: "Megamacro",
  5867. height: math.unit(7, "miles")
  5868. },
  5869. ]
  5870. ))
  5871. characterMakers.push(() => makeCharacter(
  5872. { name: "Gemini", species: ["mouse"], tags: ["anthro"] },
  5873. {
  5874. front: {
  5875. height: math.unit(6, "feet"),
  5876. weight: math.unit(220, "lb"),
  5877. name: "Front",
  5878. image: {
  5879. source: "./media/characters/gemini/front.svg"
  5880. }
  5881. },
  5882. back: {
  5883. height: math.unit(6, "feet"),
  5884. weight: math.unit(220, "lb"),
  5885. name: "Back",
  5886. image: {
  5887. source: "./media/characters/gemini/back.svg"
  5888. }
  5889. },
  5890. kneeling: {
  5891. height: math.unit(6 / 1.5, "feet"),
  5892. weight: math.unit(220, "lb"),
  5893. name: "Kneeling",
  5894. image: {
  5895. source: "./media/characters/gemini/kneeling.svg",
  5896. bottom: 0.02
  5897. }
  5898. },
  5899. },
  5900. [
  5901. {
  5902. name: "Macro",
  5903. height: math.unit(300, "meters"),
  5904. default: true
  5905. },
  5906. {
  5907. name: "Megamacro",
  5908. height: math.unit(6900, "meters")
  5909. },
  5910. ]
  5911. ))
  5912. characterMakers.push(() => makeCharacter(
  5913. { name: "Alicia", species: ["dragon", "cat", "canine"], tags: ["anthro"] },
  5914. {
  5915. anthro: {
  5916. height: math.unit(2.35, "meters"),
  5917. weight: math.unit(73, "kg"),
  5918. name: "Anthro",
  5919. image: {
  5920. source: "./media/characters/alicia/anthro.svg",
  5921. extra: 2571 / 2385,
  5922. bottom: 75 / 2648
  5923. }
  5924. },
  5925. paw: {
  5926. height: math.unit(1.32, "feet"),
  5927. name: "Paw",
  5928. image: {
  5929. source: "./media/characters/alicia/paw.svg"
  5930. }
  5931. },
  5932. feral: {
  5933. height: math.unit(1.69, "meters"),
  5934. weight: math.unit(73, "kg"),
  5935. name: "Feral",
  5936. image: {
  5937. source: "./media/characters/alicia/feral.svg",
  5938. extra: 2123 / 1715,
  5939. bottom: 222 / 2349
  5940. }
  5941. },
  5942. },
  5943. [
  5944. {
  5945. name: "Normal",
  5946. height: math.unit(2.35, "meters")
  5947. },
  5948. {
  5949. name: "Macro",
  5950. height: math.unit(60, "meters"),
  5951. default: true
  5952. },
  5953. {
  5954. name: "Megamacro",
  5955. height: math.unit(10000, "kilometers")
  5956. },
  5957. ]
  5958. ))
  5959. characterMakers.push(() => makeCharacter(
  5960. { name: "Archy", species: ["snow-leopard"], tags: ["anthro"] },
  5961. {
  5962. front: {
  5963. height: math.unit(7, "feet"),
  5964. weight: math.unit(250, "lbs"),
  5965. name: "Front",
  5966. image: {
  5967. source: "./media/characters/archy/front.svg"
  5968. }
  5969. }
  5970. },
  5971. [
  5972. {
  5973. name: "Micro",
  5974. height: math.unit(1, "inch")
  5975. },
  5976. {
  5977. name: "Shorty",
  5978. height: math.unit(5, "feet")
  5979. },
  5980. {
  5981. name: "Normal",
  5982. height: math.unit(7, "feet")
  5983. },
  5984. {
  5985. name: "Macro",
  5986. height: math.unit(600, "meters"),
  5987. default: true
  5988. },
  5989. {
  5990. name: "Megamacro",
  5991. height: math.unit(1, "mile")
  5992. },
  5993. ]
  5994. ))
  5995. characterMakers.push(() => makeCharacter(
  5996. { name: "Berri", species: ["rabbit"], tags: ["anthro"] },
  5997. {
  5998. front: {
  5999. height: math.unit(1.65, "meters"),
  6000. weight: math.unit(74, "kg"),
  6001. name: "Front",
  6002. image: {
  6003. source: "./media/characters/berri/front.svg",
  6004. extra: 857 / 837,
  6005. bottom: 18 / 877
  6006. }
  6007. },
  6008. bum: {
  6009. height: math.unit(1.46, "feet"),
  6010. name: "Bum",
  6011. image: {
  6012. source: "./media/characters/berri/bum.svg"
  6013. }
  6014. },
  6015. mouth: {
  6016. height: math.unit(0.44, "feet"),
  6017. name: "Mouth",
  6018. image: {
  6019. source: "./media/characters/berri/mouth.svg"
  6020. }
  6021. },
  6022. paw: {
  6023. height: math.unit(0.826, "feet"),
  6024. name: "Paw",
  6025. image: {
  6026. source: "./media/characters/berri/paw.svg"
  6027. }
  6028. },
  6029. },
  6030. [
  6031. {
  6032. name: "Normal",
  6033. height: math.unit(1.65, "meters")
  6034. },
  6035. {
  6036. name: "Macro",
  6037. height: math.unit(60, "m"),
  6038. default: true
  6039. },
  6040. {
  6041. name: "Megamacro",
  6042. height: math.unit(9.213, "km")
  6043. },
  6044. {
  6045. name: "Planet Eater",
  6046. height: math.unit(489, "megameters")
  6047. },
  6048. {
  6049. name: "Teramacro",
  6050. height: math.unit(2471635000000, "meters")
  6051. },
  6052. {
  6053. name: "Examacro",
  6054. height: math.unit(8.0624e+26, "meters")
  6055. }
  6056. ]
  6057. ))
  6058. characterMakers.push(() => makeCharacter(
  6059. { name: "Lexi", species: ["fennec-fox"], tags: ["anthro"] },
  6060. {
  6061. front: {
  6062. height: math.unit(1.72, "meters"),
  6063. weight: math.unit(68, "kg"),
  6064. name: "Front",
  6065. image: {
  6066. source: "./media/characters/lexi/front.svg"
  6067. }
  6068. }
  6069. },
  6070. [
  6071. {
  6072. name: "Very Smol",
  6073. height: math.unit(10, "mm")
  6074. },
  6075. {
  6076. name: "Micro",
  6077. height: math.unit(6.8, "cm"),
  6078. default: true
  6079. },
  6080. {
  6081. name: "Normal",
  6082. height: math.unit(1.72, "m")
  6083. }
  6084. ]
  6085. ))
  6086. characterMakers.push(() => makeCharacter(
  6087. { name: "Martin", species: ["azodian"], tags: ["anthro"] },
  6088. {
  6089. front: {
  6090. height: math.unit(1.69, "meters"),
  6091. weight: math.unit(68, "kg"),
  6092. name: "Front",
  6093. image: {
  6094. source: "./media/characters/martin/front.svg",
  6095. extra: 596 / 581
  6096. }
  6097. }
  6098. },
  6099. [
  6100. {
  6101. name: "Micro",
  6102. height: math.unit(6.85, "cm"),
  6103. default: true
  6104. },
  6105. {
  6106. name: "Normal",
  6107. height: math.unit(1.69, "m")
  6108. }
  6109. ]
  6110. ))
  6111. characterMakers.push(() => makeCharacter(
  6112. { name: "Juno", species: ["shiba-inu", "deity"], tags: ["anthro"] },
  6113. {
  6114. front: {
  6115. height: math.unit(1.69, "meters"),
  6116. weight: math.unit(68, "kg"),
  6117. name: "Front",
  6118. image: {
  6119. source: "./media/characters/juno/front.svg"
  6120. }
  6121. }
  6122. },
  6123. [
  6124. {
  6125. name: "Micro",
  6126. height: math.unit(7, "cm")
  6127. },
  6128. {
  6129. name: "Normal",
  6130. height: math.unit(1.89, "m")
  6131. },
  6132. {
  6133. name: "Macro",
  6134. height: math.unit(353, "meters"),
  6135. default: true
  6136. }
  6137. ]
  6138. ))
  6139. characterMakers.push(() => makeCharacter(
  6140. { name: "Samantha", species: ["canine", "deity"], tags: ["anthro"] },
  6141. {
  6142. front: {
  6143. height: math.unit(1.93, "meters"),
  6144. weight: math.unit(83, "kg"),
  6145. name: "Front",
  6146. image: {
  6147. source: "./media/characters/samantha/front.svg"
  6148. }
  6149. },
  6150. frontClothed: {
  6151. height: math.unit(1.93, "meters"),
  6152. weight: math.unit(83, "kg"),
  6153. name: "Front (Clothed)",
  6154. image: {
  6155. source: "./media/characters/samantha/front-clothed.svg"
  6156. }
  6157. },
  6158. back: {
  6159. height: math.unit(1.93, "meters"),
  6160. weight: math.unit(83, "kg"),
  6161. name: "Back",
  6162. image: {
  6163. source: "./media/characters/samantha/back.svg"
  6164. }
  6165. },
  6166. },
  6167. [
  6168. {
  6169. name: "Normal",
  6170. height: math.unit(1.93, "m")
  6171. },
  6172. {
  6173. name: "Macro",
  6174. height: math.unit(74, "meters"),
  6175. default: true
  6176. },
  6177. {
  6178. name: "Macro+",
  6179. height: math.unit(223, "meters"),
  6180. },
  6181. {
  6182. name: "Megamacro",
  6183. height: math.unit(8381, "meters"),
  6184. },
  6185. {
  6186. name: "Megamacro+",
  6187. height: math.unit(12000, "kilometers")
  6188. },
  6189. ]
  6190. ))
  6191. characterMakers.push(() => makeCharacter(
  6192. { name: "Dr. Clay", species: ["canine"], tags: ["anthro"] },
  6193. {
  6194. front: {
  6195. height: math.unit(1.92, "meters"),
  6196. weight: math.unit(80, "kg"),
  6197. name: "Front",
  6198. image: {
  6199. source: "./media/characters/dr-clay/front.svg"
  6200. }
  6201. },
  6202. frontClothed: {
  6203. height: math.unit(1.92, "meters"),
  6204. weight: math.unit(80, "kg"),
  6205. name: "Front (Clothed)",
  6206. image: {
  6207. source: "./media/characters/dr-clay/front-clothed.svg"
  6208. }
  6209. }
  6210. },
  6211. [
  6212. {
  6213. name: "Normal",
  6214. height: math.unit(1.92, "m")
  6215. },
  6216. {
  6217. name: "Macro",
  6218. height: math.unit(214, "meters"),
  6219. default: true
  6220. },
  6221. {
  6222. name: "Macro+",
  6223. height: math.unit(12.237, "meters"),
  6224. },
  6225. {
  6226. name: "Megamacro",
  6227. height: math.unit(557, "megameters"),
  6228. },
  6229. {
  6230. name: "Unimaginable",
  6231. height: math.unit(120e9, "lightyears")
  6232. },
  6233. ]
  6234. ))
  6235. characterMakers.push(() => makeCharacter(
  6236. { name: "Wyvrn Ripsnarl", species: ["dragon", "wolf"], tags: ["anthro"] },
  6237. {
  6238. front: {
  6239. height: math.unit(2, "meters"),
  6240. weight: math.unit(80, "kg"),
  6241. name: "Front",
  6242. image: {
  6243. source: "./media/characters/wyvrn-ripsnarl/front.svg"
  6244. }
  6245. }
  6246. },
  6247. [
  6248. {
  6249. name: "Teramacro",
  6250. height: math.unit(500000, "lightyears"),
  6251. default: true
  6252. },
  6253. ]
  6254. ))
  6255. characterMakers.push(() => makeCharacter(
  6256. { name: "Vemus", species: ["crux"], tags: ["anthro"] },
  6257. {
  6258. front: {
  6259. height: math.unit(2, "meters"),
  6260. weight: math.unit(150, "kg"),
  6261. name: "Front",
  6262. image: {
  6263. source: "./media/characters/vemus/front.svg",
  6264. extra: 2384 / 2084,
  6265. bottom: 0.0123
  6266. }
  6267. }
  6268. },
  6269. [
  6270. {
  6271. name: "Normal",
  6272. height: math.unit(3.75, "meters"),
  6273. default: true
  6274. },
  6275. {
  6276. name: "Big",
  6277. height: math.unit(8, "meters")
  6278. },
  6279. {
  6280. name: "Macro",
  6281. height: math.unit(100, "meters")
  6282. },
  6283. {
  6284. name: "Macro+",
  6285. height: math.unit(1500, "meters")
  6286. },
  6287. {
  6288. name: "Stellar",
  6289. height: math.unit(14e8, "meters")
  6290. },
  6291. ]
  6292. ))
  6293. characterMakers.push(() => makeCharacter(
  6294. { name: "Beherit", species: ["monster"], tags: ["anthro"] },
  6295. {
  6296. front: {
  6297. height: math.unit(2, "meters"),
  6298. weight: math.unit(70, "kg"),
  6299. name: "Front",
  6300. image: {
  6301. source: "./media/characters/beherit/front.svg",
  6302. extra: 1408 / 1242
  6303. }
  6304. }
  6305. },
  6306. [
  6307. {
  6308. name: "Normal",
  6309. height: math.unit(6, "feet")
  6310. },
  6311. {
  6312. name: "Lorg",
  6313. height: math.unit(25, "feet"),
  6314. default: true
  6315. },
  6316. {
  6317. name: "Lorger",
  6318. height: math.unit(75, "feet")
  6319. },
  6320. {
  6321. name: "Macro",
  6322. height: math.unit(200, "meters")
  6323. },
  6324. ]
  6325. ))
  6326. characterMakers.push(() => makeCharacter(
  6327. { name: "Everett", species: ["dragon"], tags: ["anthro"] },
  6328. {
  6329. front: {
  6330. height: math.unit(2, "meters"),
  6331. weight: math.unit(150, "kg"),
  6332. name: "Front",
  6333. image: {
  6334. source: "./media/characters/everett/front.svg",
  6335. extra: 2038 / 1737,
  6336. bottom: 0.03
  6337. }
  6338. },
  6339. paw: {
  6340. height: math.unit(2 / 3.6, "meters"),
  6341. name: "Paw",
  6342. image: {
  6343. source: "./media/characters/everett/paw.svg"
  6344. }
  6345. },
  6346. },
  6347. [
  6348. {
  6349. name: "Normal",
  6350. height: math.unit(15, "feet"),
  6351. default: true
  6352. },
  6353. {
  6354. name: "Lorg",
  6355. height: math.unit(70, "feet"),
  6356. default: true
  6357. },
  6358. {
  6359. name: "Lorger",
  6360. height: math.unit(250, "feet")
  6361. },
  6362. {
  6363. name: "Macro",
  6364. height: math.unit(500, "meters")
  6365. },
  6366. ]
  6367. ))
  6368. characterMakers.push(() => makeCharacter(
  6369. { name: "Rose", species: ["lion", "mouse", "plush"], tags: ["anthro"] },
  6370. {
  6371. front: {
  6372. height: math.unit(2, "meters"),
  6373. weight: math.unit(86, "kg"),
  6374. name: "Front",
  6375. image: {
  6376. source: "./media/characters/rose/front.svg",
  6377. extra: 350/335,
  6378. bottom: 10/360
  6379. }
  6380. },
  6381. frontAlt: {
  6382. height: math.unit(1.6, "meters"),
  6383. weight: math.unit(86, "kg"),
  6384. name: "Front (Alt)",
  6385. image: {
  6386. source: "./media/characters/rose/front-alt.svg",
  6387. extra: 299/283,
  6388. bottom: 3/302
  6389. }
  6390. },
  6391. plush: {
  6392. height: math.unit(2, "meters"),
  6393. weight: math.unit(86/3, "kg"),
  6394. name: "Plush",
  6395. image: {
  6396. source: "./media/characters/rose/plush.svg",
  6397. extra: 361/337,
  6398. bottom: 11/372
  6399. }
  6400. },
  6401. },
  6402. [
  6403. {
  6404. name: "Mini-Micro",
  6405. height: math.unit(1, "cm")
  6406. },
  6407. {
  6408. name: "Micro",
  6409. height: math.unit(3.5, "inches"),
  6410. default: true
  6411. },
  6412. {
  6413. name: "Normal",
  6414. height: math.unit(6 + 1 / 6, "feet")
  6415. },
  6416. {
  6417. name: "Mini-Macro",
  6418. height: math.unit(9 + 10 / 12, "feet")
  6419. },
  6420. ]
  6421. ))
  6422. characterMakers.push(() => makeCharacter(
  6423. { name: "Regal", species: ["changeling"], tags: ["anthro"] },
  6424. {
  6425. front: {
  6426. height: math.unit(2, "meters"),
  6427. weight: math.unit(350, "lbs"),
  6428. name: "Front",
  6429. image: {
  6430. source: "./media/characters/regal/front.svg"
  6431. }
  6432. },
  6433. back: {
  6434. height: math.unit(2, "meters"),
  6435. weight: math.unit(350, "lbs"),
  6436. name: "Back",
  6437. image: {
  6438. source: "./media/characters/regal/back.svg"
  6439. }
  6440. },
  6441. },
  6442. [
  6443. {
  6444. name: "Macro",
  6445. height: math.unit(350, "feet"),
  6446. default: true
  6447. }
  6448. ]
  6449. ))
  6450. characterMakers.push(() => makeCharacter(
  6451. { name: "Opal", species: ["rabbit"], tags: ["anthro"] },
  6452. {
  6453. front: {
  6454. height: math.unit(4 + 11 / 12, "feet"),
  6455. weight: math.unit(100, "lbs"),
  6456. name: "Front",
  6457. image: {
  6458. source: "./media/characters/opal/front.svg"
  6459. }
  6460. },
  6461. frontAlt: {
  6462. height: math.unit(4 + 11 / 12, "feet"),
  6463. weight: math.unit(100, "lbs"),
  6464. name: "Front (Alt)",
  6465. image: {
  6466. source: "./media/characters/opal/front-alt.svg"
  6467. }
  6468. },
  6469. },
  6470. [
  6471. {
  6472. name: "Small",
  6473. height: math.unit(4 + 11 / 12, "feet")
  6474. },
  6475. {
  6476. name: "Normal",
  6477. height: math.unit(20, "feet"),
  6478. default: true
  6479. },
  6480. {
  6481. name: "Macro",
  6482. height: math.unit(120, "feet")
  6483. },
  6484. {
  6485. name: "Megamacro",
  6486. height: math.unit(80, "miles")
  6487. },
  6488. {
  6489. name: "True Size",
  6490. height: math.unit(100000, "lightyears")
  6491. },
  6492. ]
  6493. ))
  6494. characterMakers.push(() => makeCharacter(
  6495. { name: "Vector Wuff", species: ["wolf"], tags: ["anthro"] },
  6496. {
  6497. front: {
  6498. height: math.unit(6, "feet"),
  6499. weight: math.unit(200, "lbs"),
  6500. name: "Front",
  6501. image: {
  6502. source: "./media/characters/vector-wuff/front.svg"
  6503. }
  6504. }
  6505. },
  6506. [
  6507. {
  6508. name: "Normal",
  6509. height: math.unit(2.8, "meters")
  6510. },
  6511. {
  6512. name: "Macro",
  6513. height: math.unit(450, "meters"),
  6514. default: true
  6515. },
  6516. {
  6517. name: "Megamacro",
  6518. height: math.unit(15, "kilometers")
  6519. }
  6520. ]
  6521. ))
  6522. characterMakers.push(() => makeCharacter(
  6523. { name: "Dannik", species: ["gryphon"], tags: ["anthro"] },
  6524. {
  6525. front: {
  6526. height: math.unit(6, "feet"),
  6527. weight: math.unit(256, "lbs"),
  6528. name: "Front",
  6529. image: {
  6530. source: "./media/characters/dannik/front.svg"
  6531. }
  6532. }
  6533. },
  6534. [
  6535. {
  6536. name: "Macro",
  6537. height: math.unit(69.57, "meters"),
  6538. default: true
  6539. },
  6540. ]
  6541. ))
  6542. characterMakers.push(() => makeCharacter(
  6543. { name: "Azura Saharah", species: ["cheetah"], tags: ["anthro"] },
  6544. {
  6545. front: {
  6546. height: math.unit(6, "feet"),
  6547. weight: math.unit(120, "lbs"),
  6548. name: "Front",
  6549. image: {
  6550. source: "./media/characters/azura-saharah/front.svg"
  6551. }
  6552. },
  6553. back: {
  6554. height: math.unit(6, "feet"),
  6555. weight: math.unit(120, "lbs"),
  6556. name: "Back",
  6557. image: {
  6558. source: "./media/characters/azura-saharah/back.svg"
  6559. }
  6560. },
  6561. },
  6562. [
  6563. {
  6564. name: "Macro",
  6565. height: math.unit(100, "feet"),
  6566. default: true
  6567. },
  6568. ]
  6569. ))
  6570. characterMakers.push(() => makeCharacter(
  6571. { name: "Kennedy", species: ["dog"], tags: ["anthro"] },
  6572. {
  6573. side: {
  6574. height: math.unit(5 + 4 / 12, "feet"),
  6575. weight: math.unit(163, "lbs"),
  6576. name: "Side",
  6577. image: {
  6578. source: "./media/characters/kennedy/side.svg"
  6579. }
  6580. }
  6581. },
  6582. [
  6583. {
  6584. name: "Standard Doggo",
  6585. height: math.unit(5 + 4 / 12, "feet")
  6586. },
  6587. {
  6588. name: "Big Doggo",
  6589. height: math.unit(25 + 3 / 12, "feet"),
  6590. default: true
  6591. },
  6592. ]
  6593. ))
  6594. characterMakers.push(() => makeCharacter(
  6595. { name: "Odi Lunar", species: ["golden-jackal"], tags: ["anthro"] },
  6596. {
  6597. front: {
  6598. height: math.unit(6, "feet"),
  6599. weight: math.unit(90, "lbs"),
  6600. name: "Front",
  6601. image: {
  6602. source: "./media/characters/odi-lunar/front.svg"
  6603. }
  6604. }
  6605. },
  6606. [
  6607. {
  6608. name: "Micro",
  6609. height: math.unit(3, "inches"),
  6610. default: true
  6611. },
  6612. {
  6613. name: "Normal",
  6614. height: math.unit(5.5, "feet")
  6615. }
  6616. ]
  6617. ))
  6618. characterMakers.push(() => makeCharacter(
  6619. { name: "Mandake", species: ["manectric", "tiger"], tags: ["anthro"] },
  6620. {
  6621. back: {
  6622. height: math.unit(6, "feet"),
  6623. weight: math.unit(220, "lbs"),
  6624. name: "Back",
  6625. image: {
  6626. source: "./media/characters/mandake/back.svg"
  6627. }
  6628. }
  6629. },
  6630. [
  6631. {
  6632. name: "Normal",
  6633. height: math.unit(7, "feet"),
  6634. default: true
  6635. },
  6636. {
  6637. name: "Macro",
  6638. height: math.unit(78, "feet")
  6639. },
  6640. {
  6641. name: "Macro+",
  6642. height: math.unit(300, "meters")
  6643. },
  6644. {
  6645. name: "Macro++",
  6646. height: math.unit(2400, "feet")
  6647. },
  6648. {
  6649. name: "Megamacro",
  6650. height: math.unit(5167, "meters")
  6651. },
  6652. {
  6653. name: "Gigamacro",
  6654. height: math.unit(41769, "miles")
  6655. },
  6656. ]
  6657. ))
  6658. characterMakers.push(() => makeCharacter(
  6659. { name: "Yozey", species: ["rat"], tags: ["anthro"] },
  6660. {
  6661. front: {
  6662. height: math.unit(6, "feet"),
  6663. weight: math.unit(120, "lbs"),
  6664. name: "Front",
  6665. image: {
  6666. source: "./media/characters/yozey/front.svg"
  6667. }
  6668. },
  6669. frontAlt: {
  6670. height: math.unit(6, "feet"),
  6671. weight: math.unit(120, "lbs"),
  6672. name: "Front (Alt)",
  6673. image: {
  6674. source: "./media/characters/yozey/front-alt.svg"
  6675. }
  6676. },
  6677. side: {
  6678. height: math.unit(6, "feet"),
  6679. weight: math.unit(120, "lbs"),
  6680. name: "Side",
  6681. image: {
  6682. source: "./media/characters/yozey/side.svg"
  6683. }
  6684. },
  6685. },
  6686. [
  6687. {
  6688. name: "Micro",
  6689. height: math.unit(3, "inches"),
  6690. default: true
  6691. },
  6692. {
  6693. name: "Normal",
  6694. height: math.unit(6, "feet")
  6695. }
  6696. ]
  6697. ))
  6698. characterMakers.push(() => makeCharacter(
  6699. { name: "Valeska Voss", species: ["fox"], tags: ["anthro"] },
  6700. {
  6701. front: {
  6702. height: math.unit(6, "feet"),
  6703. weight: math.unit(103, "lbs"),
  6704. name: "Front",
  6705. image: {
  6706. source: "./media/characters/valeska-voss/front.svg"
  6707. }
  6708. }
  6709. },
  6710. [
  6711. {
  6712. name: "Mini-Sized Sub",
  6713. height: math.unit(3.1, "inches")
  6714. },
  6715. {
  6716. name: "Mid-Sized Sub",
  6717. height: math.unit(6.2, "inches")
  6718. },
  6719. {
  6720. name: "Full-Sized Sub",
  6721. height: math.unit(9.3, "inches")
  6722. },
  6723. {
  6724. name: "Normal",
  6725. height: math.unit(5 + 2 / 12, "foot"),
  6726. default: true
  6727. },
  6728. ]
  6729. ))
  6730. characterMakers.push(() => makeCharacter(
  6731. { name: "Gene Zeta", species: ["raptor"], tags: ["anthro"] },
  6732. {
  6733. front: {
  6734. height: math.unit(6, "feet"),
  6735. weight: math.unit(160, "lbs"),
  6736. name: "Front",
  6737. image: {
  6738. source: "./media/characters/gene-zeta/front.svg",
  6739. extra: 3006 / 2826,
  6740. bottom: 182 / 3188
  6741. }
  6742. }
  6743. },
  6744. [
  6745. {
  6746. name: "Micro",
  6747. height: math.unit(6, "inches")
  6748. },
  6749. {
  6750. name: "Normal",
  6751. height: math.unit(5 + 11 / 12, "foot"),
  6752. default: true
  6753. },
  6754. {
  6755. name: "Macro",
  6756. height: math.unit(140, "feet")
  6757. },
  6758. {
  6759. name: "Supercharged",
  6760. height: math.unit(2500, "feet")
  6761. },
  6762. ]
  6763. ))
  6764. characterMakers.push(() => makeCharacter(
  6765. { name: "Razinox", species: ["dragon"], tags: ["anthro"] },
  6766. {
  6767. front: {
  6768. height: math.unit(6, "feet"),
  6769. weight: math.unit(350, "lbs"),
  6770. name: "Front",
  6771. image: {
  6772. source: "./media/characters/razinox/front.svg",
  6773. extra: 1686 / 1548,
  6774. bottom: 28.2 / 1868
  6775. }
  6776. },
  6777. back: {
  6778. height: math.unit(6, "feet"),
  6779. weight: math.unit(350, "lbs"),
  6780. name: "Back",
  6781. image: {
  6782. source: "./media/characters/razinox/back.svg",
  6783. extra: 1660 / 1590,
  6784. bottom: 15 / 1665
  6785. }
  6786. },
  6787. },
  6788. [
  6789. {
  6790. name: "Normal",
  6791. height: math.unit(10 + 8 / 12, "foot")
  6792. },
  6793. {
  6794. name: "Minimacro",
  6795. height: math.unit(15, "foot")
  6796. },
  6797. {
  6798. name: "Macro",
  6799. height: math.unit(60, "foot"),
  6800. default: true
  6801. },
  6802. {
  6803. name: "Megamacro",
  6804. height: math.unit(5, "miles")
  6805. },
  6806. {
  6807. name: "Gigamacro",
  6808. height: math.unit(6000, "miles")
  6809. },
  6810. ]
  6811. ))
  6812. characterMakers.push(() => makeCharacter(
  6813. { name: "Cobalt", species: ["cat", "weasel"], tags: ["anthro"] },
  6814. {
  6815. front: {
  6816. height: math.unit(6, "feet"),
  6817. weight: math.unit(150, "lbs"),
  6818. name: "Front",
  6819. image: {
  6820. source: "./media/characters/cobalt/front.svg"
  6821. }
  6822. }
  6823. },
  6824. [
  6825. {
  6826. name: "Normal",
  6827. height: math.unit(8 + 1 / 12, "foot")
  6828. },
  6829. {
  6830. name: "Macro",
  6831. height: math.unit(111, "foot"),
  6832. default: true
  6833. },
  6834. {
  6835. name: "Supracosmic",
  6836. height: math.unit(1e42, "feet")
  6837. },
  6838. ]
  6839. ))
  6840. characterMakers.push(() => makeCharacter(
  6841. { name: "Amanda", species: ["mouse"], tags: ["anthro"] },
  6842. {
  6843. front: {
  6844. height: math.unit(6, "feet"),
  6845. weight: math.unit(140, "lbs"),
  6846. name: "Front",
  6847. image: {
  6848. source: "./media/characters/amanda/front.svg"
  6849. }
  6850. }
  6851. },
  6852. [
  6853. {
  6854. name: "Micro",
  6855. height: math.unit(5, "inches"),
  6856. default: true
  6857. },
  6858. ]
  6859. ))
  6860. characterMakers.push(() => makeCharacter(
  6861. { name: "Teal", species: ["octocoon"], tags: ["anthro"] },
  6862. {
  6863. front: {
  6864. height: math.unit(2.75, "meters"),
  6865. weight: math.unit(1200, "lb"),
  6866. name: "Front",
  6867. image: {
  6868. source: "./media/characters/teal/front.svg",
  6869. extra: 2463 / 2320,
  6870. bottom: 166 / 2629
  6871. }
  6872. },
  6873. back: {
  6874. height: math.unit(2.75, "meters"),
  6875. weight: math.unit(1200, "lb"),
  6876. name: "Back",
  6877. image: {
  6878. source: "./media/characters/teal/back.svg",
  6879. extra: 2580 / 2489,
  6880. bottom: 151 / 2731
  6881. }
  6882. },
  6883. sitting: {
  6884. height: math.unit(1.9, "meters"),
  6885. weight: math.unit(1200, "lb"),
  6886. name: "Sitting",
  6887. image: {
  6888. source: "./media/characters/teal/sitting.svg",
  6889. extra: 623 / 590,
  6890. bottom: 121 / 744
  6891. }
  6892. },
  6893. standing: {
  6894. height: math.unit(2.75, "meters"),
  6895. weight: math.unit(1200, "lb"),
  6896. name: "Standing",
  6897. image: {
  6898. source: "./media/characters/teal/standing.svg",
  6899. extra: 923 / 893,
  6900. bottom: 60 / 983
  6901. }
  6902. },
  6903. stretching: {
  6904. height: math.unit(3.65, "meters"),
  6905. weight: math.unit(1200, "lb"),
  6906. name: "Stretching",
  6907. image: {
  6908. source: "./media/characters/teal/stretching.svg",
  6909. extra: 1276 / 1244,
  6910. bottom: 0 / 1276
  6911. }
  6912. },
  6913. legged: {
  6914. height: math.unit(1.3, "meters"),
  6915. weight: math.unit(100, "lb"),
  6916. name: "Legged",
  6917. image: {
  6918. source: "./media/characters/teal/legged.svg",
  6919. extra: 462 / 437,
  6920. bottom: 24 / 486
  6921. }
  6922. },
  6923. naga: {
  6924. height: math.unit(5.4, "meters"),
  6925. weight: math.unit(4000, "lb"),
  6926. name: "Naga",
  6927. image: {
  6928. source: "./media/characters/teal/naga.svg",
  6929. extra: 1902 / 1858,
  6930. bottom: 0 / 1902
  6931. }
  6932. },
  6933. hand: {
  6934. height: math.unit(0.52, "meters"),
  6935. name: "Hand",
  6936. image: {
  6937. source: "./media/characters/teal/hand.svg"
  6938. }
  6939. },
  6940. maw: {
  6941. height: math.unit(0.43, "meters"),
  6942. name: "Maw",
  6943. image: {
  6944. source: "./media/characters/teal/maw.svg"
  6945. }
  6946. },
  6947. slit: {
  6948. height: math.unit(0.25, "meters"),
  6949. name: "Slit",
  6950. image: {
  6951. source: "./media/characters/teal/slit.svg"
  6952. }
  6953. },
  6954. },
  6955. [
  6956. {
  6957. name: "Normal",
  6958. height: math.unit(2.75, "meters"),
  6959. default: true
  6960. },
  6961. {
  6962. name: "Macro",
  6963. height: math.unit(300, "feet")
  6964. },
  6965. {
  6966. name: "Macro+",
  6967. height: math.unit(2000, "feet")
  6968. },
  6969. ]
  6970. ))
  6971. characterMakers.push(() => makeCharacter(
  6972. { name: "Ravin Amulet", species: ["cat", "werewolf"], tags: ["anthro"] },
  6973. {
  6974. frontCat: {
  6975. height: math.unit(6, "feet"),
  6976. weight: math.unit(180, "lbs"),
  6977. name: "Front (Cat)",
  6978. image: {
  6979. source: "./media/characters/ravin-amulet/front-cat.svg"
  6980. }
  6981. },
  6982. frontCatAlt: {
  6983. height: math.unit(6, "feet"),
  6984. weight: math.unit(180, "lbs"),
  6985. name: "Front (Alt, Cat)",
  6986. image: {
  6987. source: "./media/characters/ravin-amulet/front-cat-alt.svg"
  6988. }
  6989. },
  6990. frontWerewolf: {
  6991. height: math.unit(6 * 1.2, "feet"),
  6992. weight: math.unit(225, "lbs"),
  6993. name: "Front (Werewolf)",
  6994. image: {
  6995. source: "./media/characters/ravin-amulet/front-werewolf.svg"
  6996. }
  6997. },
  6998. backWerewolf: {
  6999. height: math.unit(6 * 1.2, "feet"),
  7000. weight: math.unit(225, "lbs"),
  7001. name: "Back (Werewolf)",
  7002. image: {
  7003. source: "./media/characters/ravin-amulet/back-werewolf.svg"
  7004. }
  7005. },
  7006. },
  7007. [
  7008. {
  7009. name: "Nano",
  7010. height: math.unit(1, "micrometer")
  7011. },
  7012. {
  7013. name: "Micro",
  7014. height: math.unit(1, "inch")
  7015. },
  7016. {
  7017. name: "Normal",
  7018. height: math.unit(6, "feet"),
  7019. default: true
  7020. },
  7021. {
  7022. name: "Macro",
  7023. height: math.unit(60, "feet")
  7024. }
  7025. ]
  7026. ))
  7027. characterMakers.push(() => makeCharacter(
  7028. { name: "Fluoresce", species: ["snow-leopard"], tags: ["anthro"] },
  7029. {
  7030. front: {
  7031. height: math.unit(6, "feet"),
  7032. weight: math.unit(165, "lbs"),
  7033. name: "Front",
  7034. image: {
  7035. source: "./media/characters/fluoresce/front.svg"
  7036. }
  7037. }
  7038. },
  7039. [
  7040. {
  7041. name: "Micro",
  7042. height: math.unit(6, "cm")
  7043. },
  7044. {
  7045. name: "Normal",
  7046. height: math.unit(5 + 7 / 12, "feet"),
  7047. default: true
  7048. },
  7049. {
  7050. name: "Macro",
  7051. height: math.unit(56, "feet")
  7052. },
  7053. {
  7054. name: "Megamacro",
  7055. height: math.unit(1.9, "miles")
  7056. },
  7057. ]
  7058. ))
  7059. characterMakers.push(() => makeCharacter(
  7060. { name: "Aurora", species: ["dragon"], tags: ["anthro"] },
  7061. {
  7062. front: {
  7063. height: math.unit(9 + 6 / 12, "feet"),
  7064. weight: math.unit(523, "lbs"),
  7065. name: "Side",
  7066. image: {
  7067. source: "./media/characters/aurora/side.svg"
  7068. }
  7069. }
  7070. },
  7071. [
  7072. {
  7073. name: "Normal",
  7074. height: math.unit(9 + 6 / 12, "feet")
  7075. },
  7076. {
  7077. name: "Macro",
  7078. height: math.unit(96, "feet"),
  7079. default: true
  7080. },
  7081. {
  7082. name: "Macro+",
  7083. height: math.unit(243, "feet")
  7084. },
  7085. ]
  7086. ))
  7087. characterMakers.push(() => makeCharacter(
  7088. { name: "Ranek", species: ["meerkat"], tags: ["anthro"] },
  7089. {
  7090. front: {
  7091. height: math.unit(194, "cm"),
  7092. weight: math.unit(90, "kg"),
  7093. name: "Front",
  7094. image: {
  7095. source: "./media/characters/ranek/front.svg"
  7096. }
  7097. },
  7098. side: {
  7099. height: math.unit(194, "cm"),
  7100. weight: math.unit(90, "kg"),
  7101. name: "Side",
  7102. image: {
  7103. source: "./media/characters/ranek/side.svg"
  7104. }
  7105. },
  7106. back: {
  7107. height: math.unit(194, "cm"),
  7108. weight: math.unit(90, "kg"),
  7109. name: "Back",
  7110. image: {
  7111. source: "./media/characters/ranek/back.svg"
  7112. }
  7113. },
  7114. feral: {
  7115. height: math.unit(30, "cm"),
  7116. weight: math.unit(1.6, "lbs"),
  7117. name: "Feral",
  7118. image: {
  7119. source: "./media/characters/ranek/feral.svg"
  7120. }
  7121. },
  7122. },
  7123. [
  7124. {
  7125. name: "Normal",
  7126. height: math.unit(194, "cm"),
  7127. default: true
  7128. },
  7129. {
  7130. name: "Macro",
  7131. height: math.unit(100, "meters")
  7132. },
  7133. ]
  7134. ))
  7135. characterMakers.push(() => makeCharacter(
  7136. { name: "Andrew Cooper", species: ["human"], tags: ["anthro"] },
  7137. {
  7138. front: {
  7139. height: math.unit(5 + 6 / 12, "feet"),
  7140. weight: math.unit(153, "lbs"),
  7141. name: "Front",
  7142. image: {
  7143. source: "./media/characters/andrew-cooper/front.svg"
  7144. }
  7145. },
  7146. },
  7147. [
  7148. {
  7149. name: "Nano",
  7150. height: math.unit(1, "mm")
  7151. },
  7152. {
  7153. name: "Micro",
  7154. height: math.unit(2, "inches")
  7155. },
  7156. {
  7157. name: "Normal",
  7158. height: math.unit(5 + 6 / 12, "feet"),
  7159. default: true
  7160. }
  7161. ]
  7162. ))
  7163. characterMakers.push(() => makeCharacter(
  7164. { name: "Akane Sato", species: ["wolf", "dragon"], tags: ["anthro"] },
  7165. {
  7166. front: {
  7167. height: math.unit(6, "feet"),
  7168. weight: math.unit(180, "lbs"),
  7169. name: "Front",
  7170. image: {
  7171. source: "./media/characters/akane-sato/front.svg",
  7172. extra: 1219 / 1140
  7173. }
  7174. },
  7175. back: {
  7176. height: math.unit(6, "feet"),
  7177. weight: math.unit(180, "lbs"),
  7178. name: "Back",
  7179. image: {
  7180. source: "./media/characters/akane-sato/back.svg",
  7181. extra: 1219 / 1170
  7182. }
  7183. },
  7184. },
  7185. [
  7186. {
  7187. name: "Normal",
  7188. height: math.unit(2.5, "meters")
  7189. },
  7190. {
  7191. name: "Macro",
  7192. height: math.unit(250, "meters"),
  7193. default: true
  7194. },
  7195. {
  7196. name: "Megamacro",
  7197. height: math.unit(25, "km")
  7198. },
  7199. ]
  7200. ))
  7201. characterMakers.push(() => makeCharacter(
  7202. { name: "Rook", species: ["corvid"], tags: ["anthro"] },
  7203. {
  7204. front: {
  7205. height: math.unit(6, "feet"),
  7206. weight: math.unit(65, "kg"),
  7207. name: "Front",
  7208. image: {
  7209. source: "./media/characters/rook/front.svg",
  7210. extra: 960 / 950
  7211. }
  7212. }
  7213. },
  7214. [
  7215. {
  7216. name: "Normal",
  7217. height: math.unit(8.8, "feet")
  7218. },
  7219. {
  7220. name: "Macro",
  7221. height: math.unit(88, "feet"),
  7222. default: true
  7223. },
  7224. {
  7225. name: "Megamacro",
  7226. height: math.unit(8, "miles")
  7227. },
  7228. ]
  7229. ))
  7230. characterMakers.push(() => makeCharacter(
  7231. { name: "Prodigy", species: ["geth"], tags: ["anthro"] },
  7232. {
  7233. front: {
  7234. height: math.unit(12 + 2 / 12, "feet"),
  7235. weight: math.unit(808, "lbs"),
  7236. name: "Front",
  7237. image: {
  7238. source: "./media/characters/prodigy/front.svg"
  7239. }
  7240. }
  7241. },
  7242. [
  7243. {
  7244. name: "Normal",
  7245. height: math.unit(12 + 2 / 12, "feet"),
  7246. default: true
  7247. },
  7248. {
  7249. name: "Macro",
  7250. height: math.unit(143, "feet")
  7251. },
  7252. {
  7253. name: "Macro+",
  7254. height: math.unit(400, "feet")
  7255. },
  7256. ]
  7257. ))
  7258. characterMakers.push(() => makeCharacter(
  7259. { name: "Daniel", species: ["husky"], tags: ["anthro"] },
  7260. {
  7261. front: {
  7262. height: math.unit(6, "feet"),
  7263. weight: math.unit(225, "lbs"),
  7264. name: "Front",
  7265. image: {
  7266. source: "./media/characters/daniel/front.svg"
  7267. }
  7268. },
  7269. leaning: {
  7270. height: math.unit(6, "feet"),
  7271. weight: math.unit(225, "lbs"),
  7272. name: "Leaning",
  7273. image: {
  7274. source: "./media/characters/daniel/leaning.svg"
  7275. }
  7276. },
  7277. },
  7278. [
  7279. {
  7280. name: "Macro",
  7281. height: math.unit(1000, "feet"),
  7282. default: true
  7283. },
  7284. ]
  7285. ))
  7286. characterMakers.push(() => makeCharacter(
  7287. { name: "Chiros", species: ["long-eared-bat"], tags: ["anthro"] },
  7288. {
  7289. front: {
  7290. height: math.unit(6, "feet"),
  7291. weight: math.unit(88, "lbs"),
  7292. name: "Front",
  7293. image: {
  7294. source: "./media/characters/chiros/front.svg",
  7295. extra: 306 / 226
  7296. }
  7297. },
  7298. side: {
  7299. height: math.unit(6, "feet"),
  7300. weight: math.unit(88, "lbs"),
  7301. name: "Side",
  7302. image: {
  7303. source: "./media/characters/chiros/side.svg",
  7304. extra: 306 / 226
  7305. }
  7306. },
  7307. },
  7308. [
  7309. {
  7310. name: "Normal",
  7311. height: math.unit(6, "cm"),
  7312. default: true
  7313. },
  7314. ]
  7315. ))
  7316. characterMakers.push(() => makeCharacter(
  7317. { name: "Selka", species: ["snake"], tags: ["naga"] },
  7318. {
  7319. front: {
  7320. height: math.unit(6, "feet"),
  7321. weight: math.unit(100, "lbs"),
  7322. name: "Front",
  7323. image: {
  7324. source: "./media/characters/selka/front.svg",
  7325. extra: 947 / 887
  7326. }
  7327. }
  7328. },
  7329. [
  7330. {
  7331. name: "Normal",
  7332. height: math.unit(5, "cm"),
  7333. default: true
  7334. },
  7335. ]
  7336. ))
  7337. characterMakers.push(() => makeCharacter(
  7338. { name: "Verin", species: ["dragon"], tags: ["anthro"] },
  7339. {
  7340. front: {
  7341. height: math.unit(8 + 3 / 12, "feet"),
  7342. weight: math.unit(424, "lbs"),
  7343. name: "Front",
  7344. image: {
  7345. source: "./media/characters/verin/front.svg",
  7346. extra: 1845 / 1550
  7347. }
  7348. },
  7349. frontArmored: {
  7350. height: math.unit(8 + 3 / 12, "feet"),
  7351. weight: math.unit(424, "lbs"),
  7352. name: "Front (Armored)",
  7353. image: {
  7354. source: "./media/characters/verin/front-armor.svg",
  7355. extra: 1845 / 1550,
  7356. bottom: 0.01
  7357. }
  7358. },
  7359. back: {
  7360. height: math.unit(8 + 3 / 12, "feet"),
  7361. weight: math.unit(424, "lbs"),
  7362. name: "Back",
  7363. image: {
  7364. source: "./media/characters/verin/back.svg",
  7365. bottom: 0.1,
  7366. extra: 1
  7367. }
  7368. },
  7369. foot: {
  7370. height: math.unit((8 + 3 / 12) / 4.7, "feet"),
  7371. name: "Foot",
  7372. image: {
  7373. source: "./media/characters/verin/foot.svg"
  7374. }
  7375. },
  7376. },
  7377. [
  7378. {
  7379. name: "Normal",
  7380. height: math.unit(8 + 3 / 12, "feet")
  7381. },
  7382. {
  7383. name: "Minimacro",
  7384. height: math.unit(21, "feet"),
  7385. default: true
  7386. },
  7387. {
  7388. name: "Macro",
  7389. height: math.unit(626, "feet")
  7390. },
  7391. ]
  7392. ))
  7393. characterMakers.push(() => makeCharacter(
  7394. { name: "Sovrim Terraquian", species: ["salamander", "chameleon"], tags: ["anthro"] },
  7395. {
  7396. front: {
  7397. height: math.unit(2.718, "meters"),
  7398. weight: math.unit(150, "lbs"),
  7399. name: "Front",
  7400. image: {
  7401. source: "./media/characters/sovrim-terraquian/front.svg"
  7402. }
  7403. },
  7404. back: {
  7405. height: math.unit(2.718, "meters"),
  7406. weight: math.unit(150, "lbs"),
  7407. name: "Back",
  7408. image: {
  7409. source: "./media/characters/sovrim-terraquian/back.svg"
  7410. }
  7411. }
  7412. },
  7413. [
  7414. {
  7415. name: "Micro",
  7416. height: math.unit(2, "inches")
  7417. },
  7418. {
  7419. name: "Small",
  7420. height: math.unit(1, "meter")
  7421. },
  7422. {
  7423. name: "Normal",
  7424. height: math.unit(Math.E, "meters"),
  7425. default: true
  7426. },
  7427. {
  7428. name: "Macro",
  7429. height: math.unit(20, "meters")
  7430. },
  7431. {
  7432. name: "Macro+",
  7433. height: math.unit(400, "meters")
  7434. },
  7435. ]
  7436. ))
  7437. characterMakers.push(() => makeCharacter(
  7438. { name: "Reece Silvermane", species: ["horse"], tags: ["anthro"] },
  7439. {
  7440. front: {
  7441. height: math.unit(7, "feet"),
  7442. weight: math.unit(489, "lbs"),
  7443. name: "Front",
  7444. image: {
  7445. source: "./media/characters/reece-silvermane/front.svg",
  7446. bottom: 0.02,
  7447. extra: 1
  7448. }
  7449. },
  7450. },
  7451. [
  7452. {
  7453. name: "Macro",
  7454. height: math.unit(1.5, "miles"),
  7455. default: true
  7456. },
  7457. ]
  7458. ))
  7459. characterMakers.push(() => makeCharacter(
  7460. { name: "Kane", species: ["demon", "wolf"], tags: ["anthro"] },
  7461. {
  7462. front: {
  7463. height: math.unit(6, "feet"),
  7464. weight: math.unit(78, "kg"),
  7465. name: "Front",
  7466. image: {
  7467. source: "./media/characters/kane/front.svg",
  7468. extra: 978 / 899
  7469. }
  7470. },
  7471. },
  7472. [
  7473. {
  7474. name: "Normal",
  7475. height: math.unit(2.1, "m"),
  7476. },
  7477. {
  7478. name: "Macro",
  7479. height: math.unit(1, "km"),
  7480. default: true
  7481. },
  7482. ]
  7483. ))
  7484. characterMakers.push(() => makeCharacter(
  7485. { name: "Tegon", species: ["dragon"], tags: ["anthro"] },
  7486. {
  7487. front: {
  7488. height: math.unit(6, "feet"),
  7489. weight: math.unit(200, "kg"),
  7490. name: "Front",
  7491. image: {
  7492. source: "./media/characters/tegon/front.svg",
  7493. bottom: 0.01,
  7494. extra: 1
  7495. }
  7496. },
  7497. },
  7498. [
  7499. {
  7500. name: "Micro",
  7501. height: math.unit(1, "inch")
  7502. },
  7503. {
  7504. name: "Normal",
  7505. height: math.unit(6 + 3 / 12, "feet"),
  7506. default: true
  7507. },
  7508. {
  7509. name: "Macro",
  7510. height: math.unit(300, "feet")
  7511. },
  7512. {
  7513. name: "Megamacro",
  7514. height: math.unit(69, "miles")
  7515. },
  7516. ]
  7517. ))
  7518. characterMakers.push(() => makeCharacter(
  7519. { name: "Arcturax", species: ["bat", "gryphon"], tags: ["anthro"] },
  7520. {
  7521. side: {
  7522. height: math.unit(6, "feet"),
  7523. weight: math.unit(2304, "lbs"),
  7524. name: "Side",
  7525. image: {
  7526. source: "./media/characters/arcturax/side.svg",
  7527. extra: 790 / 376,
  7528. bottom: 0.01
  7529. }
  7530. },
  7531. },
  7532. [
  7533. {
  7534. name: "Micro",
  7535. height: math.unit(2, "inch")
  7536. },
  7537. {
  7538. name: "Normal",
  7539. height: math.unit(6, "feet")
  7540. },
  7541. {
  7542. name: "Macro",
  7543. height: math.unit(39, "feet"),
  7544. default: true
  7545. },
  7546. {
  7547. name: "Megamacro",
  7548. height: math.unit(7, "miles")
  7549. },
  7550. ]
  7551. ))
  7552. characterMakers.push(() => makeCharacter(
  7553. { name: "Sentri", species: ["eagle"], tags: ["anthro"] },
  7554. {
  7555. front: {
  7556. height: math.unit(6, "feet"),
  7557. weight: math.unit(50, "lbs"),
  7558. name: "Front",
  7559. image: {
  7560. source: "./media/characters/sentri/front.svg",
  7561. extra: 1750 / 1570,
  7562. bottom: 0.025
  7563. }
  7564. },
  7565. frontAlt: {
  7566. height: math.unit(6, "feet"),
  7567. weight: math.unit(50, "lbs"),
  7568. name: "Front (Alt)",
  7569. image: {
  7570. source: "./media/characters/sentri/front-alt.svg",
  7571. extra: 1750 / 1570,
  7572. bottom: 0.025
  7573. }
  7574. },
  7575. },
  7576. [
  7577. {
  7578. name: "Normal",
  7579. height: math.unit(15, "feet"),
  7580. default: true
  7581. },
  7582. {
  7583. name: "Macro",
  7584. height: math.unit(2500, "feet")
  7585. }
  7586. ]
  7587. ))
  7588. characterMakers.push(() => makeCharacter(
  7589. { name: "Corvin", species: ["gecko"], tags: ["anthro"] },
  7590. {
  7591. front: {
  7592. height: math.unit(5 + 8 / 12, "feet"),
  7593. weight: math.unit(130, "lbs"),
  7594. name: "Front",
  7595. image: {
  7596. source: "./media/characters/corvin/front.svg",
  7597. extra: 1803 / 1629
  7598. }
  7599. },
  7600. frontShirt: {
  7601. height: math.unit(5 + 8 / 12, "feet"),
  7602. weight: math.unit(130, "lbs"),
  7603. name: "Front (Shirt)",
  7604. image: {
  7605. source: "./media/characters/corvin/front-shirt.svg",
  7606. extra: 1803 / 1629
  7607. }
  7608. },
  7609. frontPoncho: {
  7610. height: math.unit(5 + 8 / 12, "feet"),
  7611. weight: math.unit(130, "lbs"),
  7612. name: "Front (Poncho)",
  7613. image: {
  7614. source: "./media/characters/corvin/front-poncho.svg",
  7615. extra: 1803 / 1629
  7616. }
  7617. },
  7618. side: {
  7619. height: math.unit(5 + 8 / 12, "feet"),
  7620. weight: math.unit(130, "lbs"),
  7621. name: "Side",
  7622. image: {
  7623. source: "./media/characters/corvin/side.svg",
  7624. extra: 1012 / 945
  7625. }
  7626. },
  7627. back: {
  7628. height: math.unit(5 + 8 / 12, "feet"),
  7629. weight: math.unit(130, "lbs"),
  7630. name: "Back",
  7631. image: {
  7632. source: "./media/characters/corvin/back.svg",
  7633. extra: 1803 / 1629
  7634. }
  7635. },
  7636. },
  7637. [
  7638. {
  7639. name: "Micro",
  7640. height: math.unit(3, "inches")
  7641. },
  7642. {
  7643. name: "Normal",
  7644. height: math.unit(5 + 8 / 12, "feet")
  7645. },
  7646. {
  7647. name: "Macro",
  7648. height: math.unit(300, "feet"),
  7649. default: true
  7650. },
  7651. {
  7652. name: "Megamacro",
  7653. height: math.unit(500, "miles")
  7654. }
  7655. ]
  7656. ))
  7657. characterMakers.push(() => makeCharacter(
  7658. { name: "Q", species: ["wolf"], tags: ["anthro"] },
  7659. {
  7660. front: {
  7661. height: math.unit(6, "feet"),
  7662. weight: math.unit(135, "lbs"),
  7663. name: "Front",
  7664. image: {
  7665. source: "./media/characters/q/front.svg",
  7666. extra: 854 / 752,
  7667. bottom: 0.005
  7668. }
  7669. },
  7670. back: {
  7671. height: math.unit(6, "feet"),
  7672. weight: math.unit(130, "lbs"),
  7673. name: "Back",
  7674. image: {
  7675. source: "./media/characters/q/back.svg",
  7676. extra: 854 / 752
  7677. }
  7678. },
  7679. },
  7680. [
  7681. {
  7682. name: "Macro",
  7683. height: math.unit(90, "feet"),
  7684. default: true
  7685. },
  7686. {
  7687. name: "Extra Macro",
  7688. height: math.unit(300, "feet"),
  7689. },
  7690. {
  7691. name: "BIG WALF",
  7692. height: math.unit(750, "feet"),
  7693. },
  7694. ]
  7695. ))
  7696. characterMakers.push(() => makeCharacter(
  7697. { name: "Carley", species: ["deer"], tags: ["anthro"] },
  7698. {
  7699. front: {
  7700. height: math.unit(6, "feet"),
  7701. weight: math.unit(150, "lbs"),
  7702. name: "Front",
  7703. image: {
  7704. source: "./media/characters/carley/front.svg",
  7705. extra: 3927 / 3540,
  7706. bottom: 29.2 / 735
  7707. }
  7708. }
  7709. },
  7710. [
  7711. {
  7712. name: "Normal",
  7713. height: math.unit(6 + 3 / 12, "feet")
  7714. },
  7715. {
  7716. name: "Macro",
  7717. height: math.unit(185, "feet"),
  7718. default: true
  7719. },
  7720. {
  7721. name: "Megamacro",
  7722. height: math.unit(8, "miles"),
  7723. },
  7724. ]
  7725. ))
  7726. characterMakers.push(() => makeCharacter(
  7727. { name: "Citrine", species: ["kobold"], tags: ["anthro"] },
  7728. {
  7729. front: {
  7730. height: math.unit(3, "feet"),
  7731. weight: math.unit(28, "lbs"),
  7732. name: "Front",
  7733. image: {
  7734. source: "./media/characters/citrine/front.svg"
  7735. }
  7736. }
  7737. },
  7738. [
  7739. {
  7740. name: "Normal",
  7741. height: math.unit(3, "feet"),
  7742. default: true
  7743. }
  7744. ]
  7745. ))
  7746. characterMakers.push(() => makeCharacter(
  7747. { name: "Aura Starwind", species: ["fox"], tags: ["anthro", "taur"] },
  7748. {
  7749. front: {
  7750. height: math.unit(14, "feet"),
  7751. weight: math.unit(1450, "kg"),
  7752. capacity: math.unit(15, "people"),
  7753. name: "Front",
  7754. image: {
  7755. source: "./media/characters/aura-starwind/front.svg",
  7756. extra: 1455 / 1335
  7757. }
  7758. },
  7759. side: {
  7760. height: math.unit(14, "feet"),
  7761. weight: math.unit(1450, "kg"),
  7762. capacity: math.unit(15, "people"),
  7763. name: "Side",
  7764. image: {
  7765. source: "./media/characters/aura-starwind/side.svg",
  7766. extra: 1654 / 1497
  7767. }
  7768. },
  7769. taur: {
  7770. height: math.unit(18, "feet"),
  7771. weight: math.unit(5500, "kg"),
  7772. capacity: math.unit(50, "people"),
  7773. name: "Taur",
  7774. image: {
  7775. source: "./media/characters/aura-starwind/taur.svg",
  7776. extra: 1760 / 1650
  7777. }
  7778. },
  7779. feral: {
  7780. height: math.unit(46, "feet"),
  7781. weight: math.unit(25000, "kg"),
  7782. capacity: math.unit(120, "people"),
  7783. name: "Feral",
  7784. image: {
  7785. source: "./media/characters/aura-starwind/feral.svg"
  7786. }
  7787. },
  7788. },
  7789. [
  7790. {
  7791. name: "Normal",
  7792. height: math.unit(14, "feet"),
  7793. default: true
  7794. },
  7795. {
  7796. name: "Macro",
  7797. height: math.unit(50, "meters")
  7798. },
  7799. {
  7800. name: "Megamacro",
  7801. height: math.unit(5000, "meters")
  7802. },
  7803. {
  7804. name: "Gigamacro",
  7805. height: math.unit(100000, "kilometers")
  7806. },
  7807. ]
  7808. ))
  7809. characterMakers.push(() => makeCharacter(
  7810. { name: "Rivet", species: ["kobold"], tags: ["anthro"] },
  7811. {
  7812. front: {
  7813. height: math.unit(2 + 7 / 12, "feet"),
  7814. weight: math.unit(32, "lbs"),
  7815. name: "Front",
  7816. image: {
  7817. source: "./media/characters/rivet/front.svg",
  7818. extra: 1716 / 1658,
  7819. bottom: 0.03
  7820. }
  7821. },
  7822. foot: {
  7823. height: math.unit(0.551, "feet"),
  7824. name: "Rivet's Foot",
  7825. image: {
  7826. source: "./media/characters/rivet/foot.svg"
  7827. },
  7828. rename: true
  7829. }
  7830. },
  7831. [
  7832. {
  7833. name: "Micro",
  7834. height: math.unit(1.5, "inches"),
  7835. },
  7836. {
  7837. name: "Normal",
  7838. height: math.unit(2 + 7 / 12, "feet"),
  7839. default: true
  7840. },
  7841. {
  7842. name: "Macro",
  7843. height: math.unit(85, "feet")
  7844. },
  7845. {
  7846. name: "Megamacro",
  7847. height: math.unit(2.2, "km")
  7848. }
  7849. ]
  7850. ))
  7851. characterMakers.push(() => makeCharacter(
  7852. { name: "Coffee", species: ["dog"], tags: ["anthro"] },
  7853. {
  7854. front: {
  7855. height: math.unit(5 + 9 / 12, "feet"),
  7856. weight: math.unit(150, "lbs"),
  7857. name: "Front",
  7858. image: {
  7859. source: "./media/characters/coffee/front.svg",
  7860. extra: 3666 / 3032,
  7861. bottom: 0.04
  7862. }
  7863. },
  7864. foot: {
  7865. height: math.unit(1.29, "feet"),
  7866. name: "Foot",
  7867. image: {
  7868. source: "./media/characters/coffee/foot.svg"
  7869. }
  7870. },
  7871. },
  7872. [
  7873. {
  7874. name: "Micro",
  7875. height: math.unit(2, "inches"),
  7876. },
  7877. {
  7878. name: "Normal",
  7879. height: math.unit(5 + 9 / 12, "feet"),
  7880. default: true
  7881. },
  7882. {
  7883. name: "Macro",
  7884. height: math.unit(800, "feet")
  7885. },
  7886. {
  7887. name: "Megamacro",
  7888. height: math.unit(25, "miles")
  7889. }
  7890. ]
  7891. ))
  7892. characterMakers.push(() => makeCharacter(
  7893. { name: "Chari-Gal", species: ["charizard"], tags: ["anthro"] },
  7894. {
  7895. front: {
  7896. height: math.unit(6, "feet"),
  7897. weight: math.unit(200, "lbs"),
  7898. name: "Front",
  7899. image: {
  7900. source: "./media/characters/chari-gal/front.svg",
  7901. extra: 1568 / 1385,
  7902. bottom: 0.047
  7903. }
  7904. },
  7905. gigantamax: {
  7906. height: math.unit(6 * 16, "feet"),
  7907. weight: math.unit(200 * 16 * 16 * 16, "lbs"),
  7908. name: "Gigantamax",
  7909. image: {
  7910. source: "./media/characters/chari-gal/gigantamax.svg",
  7911. extra: 1124 / 888,
  7912. bottom: 0.03
  7913. }
  7914. },
  7915. },
  7916. [
  7917. {
  7918. name: "Normal",
  7919. height: math.unit(5 + 7 / 12, "feet")
  7920. },
  7921. {
  7922. name: "Macro",
  7923. height: math.unit(200, "feet"),
  7924. default: true
  7925. }
  7926. ]
  7927. ))
  7928. characterMakers.push(() => makeCharacter(
  7929. { name: "Nova", species: ["wolf"], tags: ["anthro"] },
  7930. {
  7931. front: {
  7932. height: math.unit(6, "feet"),
  7933. weight: math.unit(150, "lbs"),
  7934. name: "Front",
  7935. image: {
  7936. source: "./media/characters/nova/front.svg",
  7937. extra: 5000 / 4722,
  7938. bottom: 0.02
  7939. }
  7940. }
  7941. },
  7942. [
  7943. {
  7944. name: "Micro-",
  7945. height: math.unit(0.8, "inches")
  7946. },
  7947. {
  7948. name: "Micro",
  7949. height: math.unit(2, "inches"),
  7950. default: true
  7951. },
  7952. ]
  7953. ))
  7954. characterMakers.push(() => makeCharacter(
  7955. { name: "Argent", species: ["kobold"], tags: ["anthro"] },
  7956. {
  7957. front: {
  7958. height: math.unit(3 + 1 / 12, "feet"),
  7959. weight: math.unit(21.7, "lbs"),
  7960. name: "Front",
  7961. image: {
  7962. source: "./media/characters/argent/front.svg",
  7963. extra: 1471 / 1331,
  7964. bottom: 100.8 / 1575.5
  7965. }
  7966. }
  7967. },
  7968. [
  7969. {
  7970. name: "Micro",
  7971. height: math.unit(2, "inches")
  7972. },
  7973. {
  7974. name: "Normal",
  7975. height: math.unit(3 + 1 / 12, "feet"),
  7976. default: true
  7977. },
  7978. {
  7979. name: "Macro",
  7980. height: math.unit(120, "feet")
  7981. },
  7982. ]
  7983. ))
  7984. characterMakers.push(() => makeCharacter(
  7985. { name: "Mira al-Cul", species: ["snake"], tags: ["naga"] },
  7986. {
  7987. lamp: {
  7988. height: math.unit(7 * 1559 / 989, "feet"),
  7989. name: "Magic Lamp",
  7990. image: {
  7991. source: "./media/characters/mira-al-cul/lamp.svg",
  7992. extra: 1617 / 1559
  7993. }
  7994. },
  7995. front: {
  7996. height: math.unit(7, "feet"),
  7997. name: "Front",
  7998. image: {
  7999. source: "./media/characters/mira-al-cul/front.svg",
  8000. extra: 1044 / 990
  8001. }
  8002. },
  8003. },
  8004. [
  8005. {
  8006. name: "Heavily Restricted",
  8007. height: math.unit(7 * 1559 / 989, "feet")
  8008. },
  8009. {
  8010. name: "Freshly Freed",
  8011. height: math.unit(50 * 1559 / 989, "feet")
  8012. },
  8013. {
  8014. name: "World Encompassing",
  8015. height: math.unit(10000 * 1559 / 989, "miles")
  8016. },
  8017. {
  8018. name: "Galactic",
  8019. height: math.unit(1.433 * 1559 / 989, "zettameters")
  8020. },
  8021. {
  8022. name: "Palmed Universe",
  8023. height: math.unit(6000 * 1559 / 989, "yottameters"),
  8024. default: true
  8025. },
  8026. {
  8027. name: "Multiversal Matriarch",
  8028. height: math.unit(8.87e10, "yottameters")
  8029. },
  8030. {
  8031. name: "Void Mother",
  8032. height: math.unit(3.14e110, "yottaparsecs")
  8033. },
  8034. {
  8035. name: "Toying with Transcendence",
  8036. height: math.unit(1e307, "meters")
  8037. },
  8038. ]
  8039. ))
  8040. characterMakers.push(() => makeCharacter(
  8041. { name: "Kuro-shi Uchū", species: ["lugia"], tags: ["feral"] },
  8042. {
  8043. front: {
  8044. height: math.unit(17 + 1 / 12, "feet"),
  8045. weight: math.unit(476.2 * 5, "lbs"),
  8046. name: "Front",
  8047. image: {
  8048. source: "./media/characters/kuro-shi-uchū/front.svg",
  8049. extra: 2329 / 1835,
  8050. bottom: 0.02
  8051. }
  8052. },
  8053. },
  8054. [
  8055. {
  8056. name: "Micro",
  8057. height: math.unit(2, "inches")
  8058. },
  8059. {
  8060. name: "Normal",
  8061. height: math.unit(12, "meters")
  8062. },
  8063. {
  8064. name: "Planetary",
  8065. height: math.unit(0.00929, "AU"),
  8066. default: true
  8067. },
  8068. {
  8069. name: "Universal",
  8070. height: math.unit(20, "gigaparsecs")
  8071. },
  8072. ]
  8073. ))
  8074. characterMakers.push(() => makeCharacter(
  8075. { name: "Katherine", species: ["fox"], tags: ["anthro"] },
  8076. {
  8077. front: {
  8078. height: math.unit(5 + 2 / 12, "feet"),
  8079. weight: math.unit(120, "lbs"),
  8080. name: "Front",
  8081. image: {
  8082. source: "./media/characters/katherine/front.svg",
  8083. extra: 2075 / 1969
  8084. }
  8085. },
  8086. dress: {
  8087. height: math.unit(5 + 2 / 12, "feet"),
  8088. weight: math.unit(120, "lbs"),
  8089. name: "Dress",
  8090. image: {
  8091. source: "./media/characters/katherine/dress.svg",
  8092. extra: 2258 / 2064
  8093. }
  8094. },
  8095. },
  8096. [
  8097. {
  8098. name: "Micro",
  8099. height: math.unit(1, "inches"),
  8100. default: true
  8101. },
  8102. {
  8103. name: "Normal",
  8104. height: math.unit(5 + 2 / 12, "feet")
  8105. },
  8106. {
  8107. name: "Macro",
  8108. height: math.unit(100, "meters")
  8109. },
  8110. {
  8111. name: "Megamacro",
  8112. height: math.unit(80, "miles")
  8113. },
  8114. ]
  8115. ))
  8116. characterMakers.push(() => makeCharacter(
  8117. { name: "Yevis", species: ["cerberus"], tags: ["anthro"] },
  8118. {
  8119. front: {
  8120. height: math.unit(7 + 8 / 12, "feet"),
  8121. weight: math.unit(250, "lbs"),
  8122. name: "Front",
  8123. image: {
  8124. source: "./media/characters/yevis/front.svg",
  8125. extra: 1938 / 1755
  8126. }
  8127. }
  8128. },
  8129. [
  8130. {
  8131. name: "Mortal",
  8132. height: math.unit(7 + 8 / 12, "feet")
  8133. },
  8134. {
  8135. name: "Battle",
  8136. height: math.unit(25 + 11 / 12, "feet")
  8137. },
  8138. {
  8139. name: "Wrath",
  8140. height: math.unit(1654 + 11 / 12, "feet")
  8141. },
  8142. {
  8143. name: "Planet Destroyer",
  8144. height: math.unit(12000, "miles")
  8145. },
  8146. {
  8147. name: "Galaxy Conqueror",
  8148. height: math.unit(1.45, "zettameters"),
  8149. default: true
  8150. },
  8151. {
  8152. name: "Universal War",
  8153. height: math.unit(184, "gigaparsecs")
  8154. },
  8155. {
  8156. name: "Eternity War",
  8157. height: math.unit(1.98e55, "yottaparsecs")
  8158. },
  8159. ]
  8160. ))
  8161. characterMakers.push(() => makeCharacter(
  8162. { name: "Xavier", species: ["fox"], tags: ["anthro"] },
  8163. {
  8164. front: {
  8165. height: math.unit(5 + 8 / 12, "feet"),
  8166. weight: math.unit(63, "kg"),
  8167. name: "Front",
  8168. image: {
  8169. source: "./media/characters/xavier/front.svg",
  8170. extra: 944 / 883
  8171. }
  8172. },
  8173. frontStretch: {
  8174. height: math.unit(5 + 8 / 12, "feet"),
  8175. weight: math.unit(63, "kg"),
  8176. name: "Stretching",
  8177. image: {
  8178. source: "./media/characters/xavier/front-stretch.svg",
  8179. extra: 962 / 820
  8180. }
  8181. },
  8182. },
  8183. [
  8184. {
  8185. name: "Normal",
  8186. height: math.unit(5 + 8 / 12, "feet")
  8187. },
  8188. {
  8189. name: "Macro",
  8190. height: math.unit(100, "meters"),
  8191. default: true
  8192. },
  8193. {
  8194. name: "McLargeHuge",
  8195. height: math.unit(10, "miles")
  8196. },
  8197. ]
  8198. ))
  8199. characterMakers.push(() => makeCharacter(
  8200. { name: "Joshii", species: ["cat", "rabbit", "demon"], tags: ["anthro"] },
  8201. {
  8202. front: {
  8203. height: math.unit(5 + 5 / 12, "feet"),
  8204. weight: math.unit(150, "lb"),
  8205. name: "Front",
  8206. image: {
  8207. source: "./media/characters/joshii/front.svg",
  8208. extra: 765 / 653,
  8209. bottom: 51 / 816
  8210. }
  8211. },
  8212. foot: {
  8213. height: math.unit((5 + 5 / 12) * 0.1676, "feet"),
  8214. name: "Foot",
  8215. image: {
  8216. source: "./media/characters/joshii/foot.svg"
  8217. }
  8218. },
  8219. },
  8220. [
  8221. {
  8222. name: "Micro",
  8223. height: math.unit(2, "inches"),
  8224. default: true
  8225. },
  8226. {
  8227. name: "Normal",
  8228. height: math.unit(5 + 5 / 12, "feet")
  8229. },
  8230. {
  8231. name: "Macro",
  8232. height: math.unit(785, "feet")
  8233. },
  8234. {
  8235. name: "Megamacro",
  8236. height: math.unit(24.5, "miles")
  8237. },
  8238. ]
  8239. ))
  8240. characterMakers.push(() => makeCharacter(
  8241. { name: "Goddess Elizabeth", species: ["wolf", "deity"], tags: ["anthro"] },
  8242. {
  8243. front: {
  8244. height: math.unit(6, "feet"),
  8245. weight: math.unit(150, "lb"),
  8246. name: "Front",
  8247. image: {
  8248. source: "./media/characters/goddess-elizabeth/front.svg",
  8249. extra: 1800 / 1525,
  8250. bottom: 0.005
  8251. }
  8252. },
  8253. foot: {
  8254. height: math.unit(6 * 0.25436 * 1800 / 1525 / 2, "feet"),
  8255. name: "Foot",
  8256. image: {
  8257. source: "./media/characters/goddess-elizabeth/foot.svg"
  8258. }
  8259. },
  8260. mouth: {
  8261. height: math.unit(6, "feet"),
  8262. name: "Mouth",
  8263. image: {
  8264. source: "./media/characters/goddess-elizabeth/mouth.svg"
  8265. }
  8266. },
  8267. },
  8268. [
  8269. {
  8270. name: "Micro",
  8271. height: math.unit(12, "feet")
  8272. },
  8273. {
  8274. name: "Normal",
  8275. height: math.unit(80, "miles"),
  8276. default: true
  8277. },
  8278. {
  8279. name: "Macro",
  8280. height: math.unit(15000, "parsecs")
  8281. },
  8282. ]
  8283. ))
  8284. characterMakers.push(() => makeCharacter(
  8285. { name: "Kara", species: ["wolf"], tags: ["anthro"] },
  8286. {
  8287. front: {
  8288. height: math.unit(5 + 9 / 12, "feet"),
  8289. weight: math.unit(144, "lb"),
  8290. name: "Front",
  8291. image: {
  8292. source: "./media/characters/kara/front.svg"
  8293. }
  8294. },
  8295. feet: {
  8296. height: math.unit(6 / 6.765, "feet"),
  8297. name: "Kara's Feet",
  8298. rename: true,
  8299. image: {
  8300. source: "./media/characters/kara/feet.svg"
  8301. }
  8302. },
  8303. },
  8304. [
  8305. {
  8306. name: "Normal",
  8307. height: math.unit(5 + 9 / 12, "feet")
  8308. },
  8309. {
  8310. name: "Macro",
  8311. height: math.unit(174, "feet"),
  8312. default: true
  8313. },
  8314. ]
  8315. ))
  8316. characterMakers.push(() => makeCharacter(
  8317. { name: "Tyrone", species: ["tyrantrum"], tags: ["anthro"] },
  8318. {
  8319. front: {
  8320. height: math.unit(18, "feet"),
  8321. weight: math.unit(4050, "lb"),
  8322. name: "Front",
  8323. image: {
  8324. source: "./media/characters/tyrone/front.svg",
  8325. extra: 2405 / 2270,
  8326. bottom: 182 / 2587
  8327. }
  8328. },
  8329. },
  8330. [
  8331. {
  8332. name: "Normal",
  8333. height: math.unit(18, "feet"),
  8334. default: true
  8335. },
  8336. {
  8337. name: "Macro",
  8338. height: math.unit(300, "feet")
  8339. },
  8340. {
  8341. name: "Megamacro",
  8342. height: math.unit(15, "km")
  8343. },
  8344. {
  8345. name: "Gigamacro",
  8346. height: math.unit(500, "km")
  8347. },
  8348. {
  8349. name: "Teramacro",
  8350. height: math.unit(0.5, "gigameters")
  8351. },
  8352. {
  8353. name: "Omnimacro",
  8354. height: math.unit(1e252, "yottauniverse")
  8355. },
  8356. ]
  8357. ))
  8358. characterMakers.push(() => makeCharacter(
  8359. { name: "Danny", species: ["gryphon"], tags: ["anthro"] },
  8360. {
  8361. front: {
  8362. height: math.unit(7 + 8 / 12, "feet"),
  8363. weight: math.unit(120, "lb"),
  8364. name: "Front",
  8365. image: {
  8366. source: "./media/characters/danny/front.svg",
  8367. extra: 1490 / 1350
  8368. }
  8369. },
  8370. back: {
  8371. height: math.unit(7 + 8 / 12, "feet"),
  8372. weight: math.unit(120, "lb"),
  8373. name: "Back",
  8374. image: {
  8375. source: "./media/characters/danny/back.svg",
  8376. extra: 1490 / 1350
  8377. }
  8378. },
  8379. },
  8380. [
  8381. {
  8382. name: "Normal",
  8383. height: math.unit(7 + 8 / 12, "feet"),
  8384. default: true
  8385. },
  8386. ]
  8387. ))
  8388. characterMakers.push(() => makeCharacter(
  8389. { name: "Mallow", species: ["mouse"], tags: ["anthro"] },
  8390. {
  8391. front: {
  8392. height: math.unit(3.5, "inches"),
  8393. weight: math.unit(19, "grams"),
  8394. name: "Front",
  8395. image: {
  8396. source: "./media/characters/mallow/front.svg",
  8397. extra: 471 / 431
  8398. }
  8399. },
  8400. back: {
  8401. height: math.unit(3.5, "inches"),
  8402. weight: math.unit(19, "grams"),
  8403. name: "Back",
  8404. image: {
  8405. source: "./media/characters/mallow/back.svg",
  8406. extra: 471 / 431
  8407. }
  8408. },
  8409. },
  8410. [
  8411. {
  8412. name: "Normal",
  8413. height: math.unit(3.5, "inches"),
  8414. default: true
  8415. },
  8416. ]
  8417. ))
  8418. characterMakers.push(() => makeCharacter(
  8419. { name: "Starry Aqua", species: ["fennec-fox"], tags: ["anthro"] },
  8420. {
  8421. front: {
  8422. height: math.unit(9, "feet"),
  8423. weight: math.unit(230, "kg"),
  8424. name: "Front",
  8425. image: {
  8426. source: "./media/characters/starry-aqua/front.svg"
  8427. }
  8428. },
  8429. back: {
  8430. height: math.unit(9, "feet"),
  8431. weight: math.unit(230, "kg"),
  8432. name: "Back",
  8433. image: {
  8434. source: "./media/characters/starry-aqua/back.svg"
  8435. }
  8436. },
  8437. hand: {
  8438. height: math.unit(9 * 0.1168, "feet"),
  8439. name: "Hand",
  8440. image: {
  8441. source: "./media/characters/starry-aqua/hand.svg"
  8442. }
  8443. },
  8444. foot: {
  8445. height: math.unit(9 * 0.18, "feet"),
  8446. name: "Foot",
  8447. image: {
  8448. source: "./media/characters/starry-aqua/foot.svg"
  8449. }
  8450. }
  8451. },
  8452. [
  8453. {
  8454. name: "Micro",
  8455. height: math.unit(3, "inches")
  8456. },
  8457. {
  8458. name: "Normal",
  8459. height: math.unit(9, "feet")
  8460. },
  8461. {
  8462. name: "Macro",
  8463. height: math.unit(300, "feet"),
  8464. default: true
  8465. },
  8466. {
  8467. name: "Megamacro",
  8468. height: math.unit(3200, "feet")
  8469. }
  8470. ]
  8471. ))
  8472. characterMakers.push(() => makeCharacter(
  8473. { name: "Luka", species: ["husky"], tags: ["anthro"] },
  8474. {
  8475. front: {
  8476. height: math.unit(6, "feet"),
  8477. weight: math.unit(230, "lb"),
  8478. name: "Front",
  8479. image: {
  8480. source: "./media/characters/luka/front.svg",
  8481. extra: 1,
  8482. bottom: 0.025
  8483. }
  8484. },
  8485. },
  8486. [
  8487. {
  8488. name: "Normal",
  8489. height: math.unit(12 + 8 / 12, "feet"),
  8490. default: true
  8491. },
  8492. {
  8493. name: "Minimacro",
  8494. height: math.unit(20, "feet")
  8495. },
  8496. {
  8497. name: "Macro",
  8498. height: math.unit(250, "feet")
  8499. },
  8500. {
  8501. name: "Megamacro",
  8502. height: math.unit(5, "miles")
  8503. },
  8504. {
  8505. name: "Gigamacro",
  8506. height: math.unit(8000, "miles")
  8507. },
  8508. ]
  8509. ))
  8510. characterMakers.push(() => makeCharacter(
  8511. { name: "Natalie Nightring", species: ["lemur"], tags: ["anthro"] },
  8512. {
  8513. front: {
  8514. height: math.unit(6, "feet"),
  8515. weight: math.unit(150, "lb"),
  8516. name: "Front",
  8517. image: {
  8518. source: "./media/characters/natalie-nightring/front.svg",
  8519. extra: 1,
  8520. bottom: 0.06
  8521. }
  8522. },
  8523. },
  8524. [
  8525. {
  8526. name: "Uh Oh",
  8527. height: math.unit(0.1, "mm")
  8528. },
  8529. {
  8530. name: "Small",
  8531. height: math.unit(3, "inches")
  8532. },
  8533. {
  8534. name: "Human Scale",
  8535. height: math.unit(6, "feet")
  8536. },
  8537. {
  8538. name: "Librarian",
  8539. height: math.unit(50, "feet"),
  8540. default: true
  8541. },
  8542. {
  8543. name: "Immense",
  8544. height: math.unit(200, "miles")
  8545. },
  8546. ]
  8547. ))
  8548. characterMakers.push(() => makeCharacter(
  8549. { name: "Danni Rosie", species: ["fox"], tags: ["anthro"] },
  8550. {
  8551. front: {
  8552. height: math.unit(6, "feet"),
  8553. weight: math.unit(180, "lbs"),
  8554. name: "Front",
  8555. image: {
  8556. source: "./media/characters/danni-rosie/front.svg",
  8557. extra: 1260 / 1128,
  8558. bottom: 0.022
  8559. }
  8560. },
  8561. },
  8562. [
  8563. {
  8564. name: "Micro",
  8565. height: math.unit(2, "inches"),
  8566. default: true
  8567. },
  8568. ]
  8569. ))
  8570. characterMakers.push(() => makeCharacter(
  8571. { name: "Samantha Kruse", species: ["human"], tags: ["anthro"] },
  8572. {
  8573. front: {
  8574. height: math.unit(5 + 9 / 12, "feet"),
  8575. weight: math.unit(220, "lb"),
  8576. name: "Front",
  8577. image: {
  8578. source: "./media/characters/samantha-kruse/front.svg",
  8579. extra: (985 / 935),
  8580. bottom: 0.03
  8581. }
  8582. },
  8583. frontUndressed: {
  8584. height: math.unit(5 + 9 / 12, "feet"),
  8585. weight: math.unit(220, "lb"),
  8586. name: "Front (Undressed)",
  8587. image: {
  8588. source: "./media/characters/samantha-kruse/front-undressed.svg",
  8589. extra: (973 / 923),
  8590. bottom: 0.025
  8591. }
  8592. },
  8593. fat: {
  8594. height: math.unit(5 + 9 / 12, "feet"),
  8595. weight: math.unit(900, "lb"),
  8596. name: "Front (Fat)",
  8597. image: {
  8598. source: "./media/characters/samantha-kruse/fat.svg",
  8599. extra: 2688 / 2561
  8600. }
  8601. },
  8602. },
  8603. [
  8604. {
  8605. name: "Normal",
  8606. height: math.unit(5 + 9 / 12, "feet"),
  8607. default: true
  8608. }
  8609. ]
  8610. ))
  8611. characterMakers.push(() => makeCharacter(
  8612. { name: "Amelia Rosie", species: ["human"], tags: ["anthro"] },
  8613. {
  8614. back: {
  8615. height: math.unit(5 + 4 / 12, "feet"),
  8616. weight: math.unit(4963, "lb"),
  8617. name: "Back",
  8618. image: {
  8619. source: "./media/characters/amelia-rosie/back.svg",
  8620. extra: 1113 / 963,
  8621. bottom: 0.01
  8622. }
  8623. },
  8624. },
  8625. [
  8626. {
  8627. name: "Level 0",
  8628. height: math.unit(5 + 4 / 12, "feet")
  8629. },
  8630. {
  8631. name: "Level 1",
  8632. height: math.unit(164597, "feet"),
  8633. default: true
  8634. },
  8635. {
  8636. name: "Level 2",
  8637. height: math.unit(956243, "miles")
  8638. },
  8639. {
  8640. name: "Level 3",
  8641. height: math.unit(29421709423, "miles")
  8642. },
  8643. {
  8644. name: "Level 4",
  8645. height: math.unit(154, "lightyears")
  8646. },
  8647. {
  8648. name: "Level 5",
  8649. height: math.unit(4738272, "lightyears")
  8650. },
  8651. {
  8652. name: "Level 6",
  8653. height: math.unit(145787152896, "lightyears")
  8654. },
  8655. ]
  8656. ))
  8657. characterMakers.push(() => makeCharacter(
  8658. { name: "Rook Kitara", species: ["raskatox"], tags: ["anthro"] },
  8659. {
  8660. front: {
  8661. height: math.unit(5 + 11 / 12, "feet"),
  8662. weight: math.unit(65, "kg"),
  8663. name: "Front",
  8664. image: {
  8665. source: "./media/characters/rook-kitara/front.svg",
  8666. extra: 1347 / 1274,
  8667. bottom: 0.005
  8668. }
  8669. },
  8670. },
  8671. [
  8672. {
  8673. name: "Totally Unfair",
  8674. height: math.unit(1.8, "mm")
  8675. },
  8676. {
  8677. name: "Lap Rookie",
  8678. height: math.unit(1.4, "feet")
  8679. },
  8680. {
  8681. name: "Normal",
  8682. height: math.unit(5 + 11 / 12, "feet"),
  8683. default: true
  8684. },
  8685. {
  8686. name: "How Did This Happen",
  8687. height: math.unit(80, "miles")
  8688. }
  8689. ]
  8690. ))
  8691. characterMakers.push(() => makeCharacter(
  8692. { name: "Pisces", species: ["kelpie"], tags: ["anthro"] },
  8693. {
  8694. front: {
  8695. height: math.unit(7, "feet"),
  8696. weight: math.unit(300, "lb"),
  8697. name: "Front",
  8698. image: {
  8699. source: "./media/characters/pisces/front.svg",
  8700. extra: 2255 / 2115,
  8701. bottom: 0.03
  8702. }
  8703. },
  8704. back: {
  8705. height: math.unit(7, "feet"),
  8706. weight: math.unit(300, "lb"),
  8707. name: "Back",
  8708. image: {
  8709. source: "./media/characters/pisces/back.svg",
  8710. extra: 2146 / 2055,
  8711. bottom: 0.04
  8712. }
  8713. },
  8714. },
  8715. [
  8716. {
  8717. name: "Normal",
  8718. height: math.unit(7, "feet"),
  8719. default: true
  8720. },
  8721. {
  8722. name: "Swimming Pool",
  8723. height: math.unit(12.2, "meters")
  8724. },
  8725. {
  8726. name: "Olympic Swimming Pool",
  8727. height: math.unit(56.3, "meters")
  8728. },
  8729. {
  8730. name: "Lake Superior",
  8731. height: math.unit(93900, "meters")
  8732. },
  8733. {
  8734. name: "Mediterranean Sea",
  8735. height: math.unit(644457, "meters")
  8736. },
  8737. {
  8738. name: "World's Oceans",
  8739. height: math.unit(4567491, "meters")
  8740. },
  8741. ]
  8742. ))
  8743. characterMakers.push(() => makeCharacter(
  8744. { name: "Zelas", species: ["rabbit", "demon"], tags: ["anthro"] },
  8745. {
  8746. front: {
  8747. height: math.unit(2.3, "meters"),
  8748. weight: math.unit(120, "kg"),
  8749. name: "Front",
  8750. image: {
  8751. source: "./media/characters/zelas/front.svg"
  8752. }
  8753. },
  8754. side: {
  8755. height: math.unit(2.3, "meters"),
  8756. weight: math.unit(120, "kg"),
  8757. name: "Side",
  8758. image: {
  8759. source: "./media/characters/zelas/side.svg"
  8760. }
  8761. },
  8762. back: {
  8763. height: math.unit(2.3, "meters"),
  8764. weight: math.unit(120, "kg"),
  8765. name: "Back",
  8766. image: {
  8767. source: "./media/characters/zelas/back.svg"
  8768. }
  8769. },
  8770. foot: {
  8771. height: math.unit(1.116, "feet"),
  8772. name: "Foot",
  8773. image: {
  8774. source: "./media/characters/zelas/foot.svg"
  8775. }
  8776. },
  8777. },
  8778. [
  8779. {
  8780. name: "Normal",
  8781. height: math.unit(2.3, "meters")
  8782. },
  8783. {
  8784. name: "Macro",
  8785. height: math.unit(30, "meters"),
  8786. default: true
  8787. },
  8788. ]
  8789. ))
  8790. characterMakers.push(() => makeCharacter(
  8791. { name: "Talbot", species: ["husky", "labrador"], tags: ["anthro"] },
  8792. {
  8793. front: {
  8794. height: math.unit(1, "inch"),
  8795. weight: math.unit(0.21, "grams"),
  8796. name: "Front",
  8797. image: {
  8798. source: "./media/characters/talbot/front.svg",
  8799. extra: 594 / 544
  8800. }
  8801. },
  8802. },
  8803. [
  8804. {
  8805. name: "Micro",
  8806. height: math.unit(1, "inch"),
  8807. default: true
  8808. },
  8809. ]
  8810. ))
  8811. characterMakers.push(() => makeCharacter(
  8812. { name: "Fliss", species: ["sylveon"], tags: ["feral"] },
  8813. {
  8814. front: {
  8815. height: math.unit(3 + 3 / 12, "feet"),
  8816. weight: math.unit(51.8, "lb"),
  8817. name: "Front",
  8818. image: {
  8819. source: "./media/characters/fliss/front.svg",
  8820. extra: 840 / 640
  8821. }
  8822. },
  8823. },
  8824. [
  8825. {
  8826. name: "Teeny Tiny",
  8827. height: math.unit(1, "mm")
  8828. },
  8829. {
  8830. name: "Small",
  8831. height: math.unit(1, "inch"),
  8832. default: true
  8833. },
  8834. {
  8835. name: "Standard Sylveon",
  8836. height: math.unit(3 + 3 / 12, "feet")
  8837. },
  8838. {
  8839. name: "Large Nuisance",
  8840. height: math.unit(33, "feet")
  8841. },
  8842. {
  8843. name: "City Filler",
  8844. height: math.unit(3000, "feet")
  8845. },
  8846. {
  8847. name: "New Horizon",
  8848. height: math.unit(6000, "miles")
  8849. },
  8850. ]
  8851. ))
  8852. characterMakers.push(() => makeCharacter(
  8853. { name: "Fleta", species: ["lion"], tags: ["anthro"] },
  8854. {
  8855. front: {
  8856. height: math.unit(5, "cm"),
  8857. weight: math.unit(1.94, "g"),
  8858. name: "Front",
  8859. image: {
  8860. source: "./media/characters/fleta/front.svg",
  8861. extra: 835 / 803
  8862. }
  8863. },
  8864. back: {
  8865. height: math.unit(5, "cm"),
  8866. weight: math.unit(1.94, "g"),
  8867. name: "Back",
  8868. image: {
  8869. source: "./media/characters/fleta/back.svg",
  8870. extra: 835 / 803
  8871. }
  8872. },
  8873. },
  8874. [
  8875. {
  8876. name: "Micro",
  8877. height: math.unit(5, "cm"),
  8878. default: true
  8879. },
  8880. ]
  8881. ))
  8882. characterMakers.push(() => makeCharacter(
  8883. { name: "Dominic", species: ["dragon"], tags: ["anthro"] },
  8884. {
  8885. front: {
  8886. height: math.unit(6, "feet"),
  8887. weight: math.unit(225, "lb"),
  8888. name: "Front",
  8889. image: {
  8890. source: "./media/characters/dominic/front.svg",
  8891. extra: 1770 / 1620,
  8892. bottom: 0.025
  8893. }
  8894. },
  8895. back: {
  8896. height: math.unit(6, "feet"),
  8897. weight: math.unit(225, "lb"),
  8898. name: "Back",
  8899. image: {
  8900. source: "./media/characters/dominic/back.svg",
  8901. extra: 1745 / 1620,
  8902. bottom: 0.065
  8903. }
  8904. },
  8905. },
  8906. [
  8907. {
  8908. name: "Nano",
  8909. height: math.unit(0.1, "mm")
  8910. },
  8911. {
  8912. name: "Micro-",
  8913. height: math.unit(1, "mm")
  8914. },
  8915. {
  8916. name: "Micro",
  8917. height: math.unit(4, "inches")
  8918. },
  8919. {
  8920. name: "Normal",
  8921. height: math.unit(6 + 4 / 12, "feet"),
  8922. default: true
  8923. },
  8924. {
  8925. name: "Macro",
  8926. height: math.unit(115, "feet")
  8927. },
  8928. {
  8929. name: "Macro+",
  8930. height: math.unit(955, "feet")
  8931. },
  8932. {
  8933. name: "Megamacro",
  8934. height: math.unit(8990, "feet")
  8935. },
  8936. {
  8937. name: "Gigmacro",
  8938. height: math.unit(9310, "miles")
  8939. },
  8940. {
  8941. name: "Teramacro",
  8942. height: math.unit(1567005010, "miles")
  8943. },
  8944. {
  8945. name: "Examacro",
  8946. height: math.unit(1425, "parsecs")
  8947. },
  8948. ]
  8949. ))
  8950. characterMakers.push(() => makeCharacter(
  8951. { name: "Major Colonel", species: ["polar-bear"], tags: ["anthro"] },
  8952. {
  8953. front: {
  8954. height: math.unit(400, "feet"),
  8955. weight: math.unit(44444444, "lb"),
  8956. name: "Front",
  8957. image: {
  8958. source: "./media/characters/major-colonel/front.svg"
  8959. }
  8960. },
  8961. back: {
  8962. height: math.unit(400, "feet"),
  8963. weight: math.unit(44444444, "lb"),
  8964. name: "Back",
  8965. image: {
  8966. source: "./media/characters/major-colonel/back.svg"
  8967. }
  8968. },
  8969. },
  8970. [
  8971. {
  8972. name: "Macro",
  8973. height: math.unit(400, "feet"),
  8974. default: true
  8975. },
  8976. ]
  8977. ))
  8978. characterMakers.push(() => makeCharacter(
  8979. { name: "Axel Lycan", species: ["cat", "wolf"], tags: ["anthro"] },
  8980. {
  8981. catFront: {
  8982. height: math.unit(6, "feet"),
  8983. weight: math.unit(120, "lb"),
  8984. name: "Front (Cat Side)",
  8985. image: {
  8986. source: "./media/characters/axel-lycan/cat-front.svg",
  8987. extra: 430 / 402,
  8988. bottom: 43 / 472.35
  8989. }
  8990. },
  8991. catBack: {
  8992. height: math.unit(6, "feet"),
  8993. weight: math.unit(120, "lb"),
  8994. name: "Back (Cat Side)",
  8995. image: {
  8996. source: "./media/characters/axel-lycan/cat-back.svg",
  8997. extra: 447 / 419,
  8998. bottom: 23.3 / 469
  8999. }
  9000. },
  9001. wolfFront: {
  9002. height: math.unit(6, "feet"),
  9003. weight: math.unit(120, "lb"),
  9004. name: "Front (Wolf Side)",
  9005. image: {
  9006. source: "./media/characters/axel-lycan/wolf-front.svg",
  9007. extra: 485 / 456,
  9008. bottom: 19 / 504
  9009. }
  9010. },
  9011. wolfBack: {
  9012. height: math.unit(6, "feet"),
  9013. weight: math.unit(120, "lb"),
  9014. name: "Back (Wolf Side)",
  9015. image: {
  9016. source: "./media/characters/axel-lycan/wolf-back.svg",
  9017. extra: 475 / 438,
  9018. bottom: 39.2 / 514
  9019. }
  9020. },
  9021. },
  9022. [
  9023. {
  9024. name: "Macro",
  9025. height: math.unit(1, "km"),
  9026. default: true
  9027. },
  9028. ]
  9029. ))
  9030. characterMakers.push(() => makeCharacter(
  9031. { name: "Vanrel (Hyena)", species: ["hyena"], tags: ["anthro"] },
  9032. {
  9033. front: {
  9034. height: math.unit(5 + 9 / 12, "feet"),
  9035. weight: math.unit(175, "lb"),
  9036. name: "Front",
  9037. image: {
  9038. source: "./media/characters/vanrel-hyena/front.svg",
  9039. extra: 1086 / 1010,
  9040. bottom: 0.04
  9041. }
  9042. },
  9043. },
  9044. [
  9045. {
  9046. name: "Normal",
  9047. height: math.unit(5 + 9 / 12, "feet"),
  9048. default: true
  9049. },
  9050. ]
  9051. ))
  9052. characterMakers.push(() => makeCharacter(
  9053. { name: "Abbott Absol", species: ["absol"], tags: ["anthro"] },
  9054. {
  9055. front: {
  9056. height: math.unit(6, "feet"),
  9057. weight: math.unit(103, "lb"),
  9058. name: "Front",
  9059. image: {
  9060. source: "./media/characters/abbott-absol/front.svg",
  9061. extra: 2010 / 1842
  9062. }
  9063. },
  9064. },
  9065. [
  9066. {
  9067. name: "Megamicro",
  9068. height: math.unit(0.1, "mm")
  9069. },
  9070. {
  9071. name: "Micro",
  9072. height: math.unit(1, "inch")
  9073. },
  9074. {
  9075. name: "Normal",
  9076. height: math.unit(6, "feet"),
  9077. default: true
  9078. },
  9079. ]
  9080. ))
  9081. characterMakers.push(() => makeCharacter(
  9082. { name: "Hector", species: ["werewolf"], tags: ["anthro"] },
  9083. {
  9084. front: {
  9085. height: math.unit(6, "feet"),
  9086. weight: math.unit(264, "lb"),
  9087. name: "Front",
  9088. image: {
  9089. source: "./media/characters/hector/front.svg",
  9090. extra: 2280 / 2130,
  9091. bottom: 0.07
  9092. }
  9093. },
  9094. },
  9095. [
  9096. {
  9097. name: "Normal",
  9098. height: math.unit(12.25, "foot"),
  9099. default: true
  9100. },
  9101. {
  9102. name: "Macro",
  9103. height: math.unit(160, "feet")
  9104. },
  9105. ]
  9106. ))
  9107. characterMakers.push(() => makeCharacter(
  9108. { name: "Sal", species: ["deer"], tags: ["anthro"] },
  9109. {
  9110. front: {
  9111. height: math.unit(6, "feet"),
  9112. weight: math.unit(150, "lb"),
  9113. name: "Front",
  9114. image: {
  9115. source: "./media/characters/sal/front.svg",
  9116. extra: 1846 / 1699,
  9117. bottom: 0.04
  9118. }
  9119. },
  9120. },
  9121. [
  9122. {
  9123. name: "Megamacro",
  9124. height: math.unit(10, "miles"),
  9125. default: true
  9126. },
  9127. ]
  9128. ))
  9129. characterMakers.push(() => makeCharacter(
  9130. { name: "Ranger", species: ["dragon"], tags: ["feral"] },
  9131. {
  9132. front: {
  9133. height: math.unit(3, "meters"),
  9134. weight: math.unit(450, "kg"),
  9135. name: "front",
  9136. image: {
  9137. source: "./media/characters/ranger/front.svg",
  9138. extra: 2401 / 2243,
  9139. bottom: 0.05
  9140. }
  9141. },
  9142. },
  9143. [
  9144. {
  9145. name: "Normal",
  9146. height: math.unit(3, "meters"),
  9147. default: true
  9148. },
  9149. ]
  9150. ))
  9151. characterMakers.push(() => makeCharacter(
  9152. { name: "Theresa", species: ["sergal"], tags: ["anthro"] },
  9153. {
  9154. front: {
  9155. height: math.unit(14, "feet"),
  9156. weight: math.unit(800, "kg"),
  9157. name: "Front",
  9158. image: {
  9159. source: "./media/characters/theresa/front.svg",
  9160. extra: 3575 / 3346,
  9161. bottom: 0.03
  9162. }
  9163. },
  9164. },
  9165. [
  9166. {
  9167. name: "Normal",
  9168. height: math.unit(14, "feet"),
  9169. default: true
  9170. },
  9171. ]
  9172. ))
  9173. characterMakers.push(() => makeCharacter(
  9174. { name: "Ine", species: ["wolver"], tags: ["feral"] },
  9175. {
  9176. front: {
  9177. height: math.unit(6, "feet"),
  9178. weight: math.unit(3, "kg"),
  9179. name: "Front",
  9180. image: {
  9181. source: "./media/characters/ine/front.svg",
  9182. extra: 678 / 539,
  9183. bottom: 0.023
  9184. }
  9185. },
  9186. },
  9187. [
  9188. {
  9189. name: "Normal",
  9190. height: math.unit(2.265, "feet"),
  9191. default: true
  9192. },
  9193. ]
  9194. ))
  9195. characterMakers.push(() => makeCharacter(
  9196. { name: "Vial", species: ["crux"], tags: ["anthro"] },
  9197. {
  9198. front: {
  9199. height: math.unit(5, "feet"),
  9200. weight: math.unit(30, "kg"),
  9201. name: "Front",
  9202. image: {
  9203. source: "./media/characters/vial/front.svg",
  9204. extra: 1365 / 1277,
  9205. bottom: 0.04
  9206. }
  9207. },
  9208. },
  9209. [
  9210. {
  9211. name: "Normal",
  9212. height: math.unit(5, "feet"),
  9213. default: true
  9214. },
  9215. ]
  9216. ))
  9217. characterMakers.push(() => makeCharacter(
  9218. { name: "Rovoska", species: ["gryphon"], tags: ["feral"] },
  9219. {
  9220. side: {
  9221. height: math.unit(3.4, "meters"),
  9222. weight: math.unit(1000, "lb"),
  9223. name: "Side",
  9224. image: {
  9225. source: "./media/characters/rovoska/side.svg",
  9226. extra: 4403 / 1515
  9227. }
  9228. },
  9229. },
  9230. [
  9231. {
  9232. name: "Normal",
  9233. height: math.unit(3.4, "meters"),
  9234. default: true
  9235. },
  9236. ]
  9237. ))
  9238. characterMakers.push(() => makeCharacter(
  9239. { name: "Gunner Rotthbauer", species: ["rottweiler"], tags: ["anthro"] },
  9240. {
  9241. front: {
  9242. height: math.unit(8, "feet"),
  9243. weight: math.unit(315, "lb"),
  9244. name: "Front",
  9245. image: {
  9246. source: "./media/characters/gunner-rotthbauer/front.svg"
  9247. }
  9248. },
  9249. back: {
  9250. height: math.unit(8, "feet"),
  9251. weight: math.unit(315, "lb"),
  9252. name: "Back",
  9253. image: {
  9254. source: "./media/characters/gunner-rotthbauer/back.svg"
  9255. }
  9256. },
  9257. },
  9258. [
  9259. {
  9260. name: "Micro",
  9261. height: math.unit(3.5, "inches")
  9262. },
  9263. {
  9264. name: "Normal",
  9265. height: math.unit(8, "feet"),
  9266. default: true
  9267. },
  9268. {
  9269. name: "Macro",
  9270. height: math.unit(250, "feet")
  9271. },
  9272. {
  9273. name: "Megamacro",
  9274. height: math.unit(1, "AU")
  9275. },
  9276. ]
  9277. ))
  9278. characterMakers.push(() => makeCharacter(
  9279. { name: "Allatia", species: ["tiger"], tags: ["anthro"] },
  9280. {
  9281. front: {
  9282. height: math.unit(5 + 5 / 12, "feet"),
  9283. weight: math.unit(140, "lb"),
  9284. name: "Front",
  9285. image: {
  9286. source: "./media/characters/allatia/front.svg",
  9287. extra: 1227 / 1180,
  9288. bottom: 0.027
  9289. }
  9290. },
  9291. },
  9292. [
  9293. {
  9294. name: "Normal",
  9295. height: math.unit(5 + 5 / 12, "feet")
  9296. },
  9297. {
  9298. name: "Macro",
  9299. height: math.unit(250, "feet"),
  9300. default: true
  9301. },
  9302. {
  9303. name: "Megamacro",
  9304. height: math.unit(8, "miles")
  9305. }
  9306. ]
  9307. ))
  9308. characterMakers.push(() => makeCharacter(
  9309. { name: "Tene", species: ["dragon", "fox"], tags: ["anthro"] },
  9310. {
  9311. front: {
  9312. height: math.unit(6, "feet"),
  9313. weight: math.unit(120, "lb"),
  9314. name: "Front",
  9315. image: {
  9316. source: "./media/characters/tene/front.svg",
  9317. extra: 1728 / 1578,
  9318. bottom: 0.022
  9319. }
  9320. },
  9321. stomping: {
  9322. height: math.unit(2.025, "meters"),
  9323. weight: math.unit(120, "lb"),
  9324. name: "Stomping",
  9325. image: {
  9326. source: "./media/characters/tene/stomping.svg",
  9327. extra: 938 / 873,
  9328. bottom: 0.01
  9329. }
  9330. },
  9331. sitting: {
  9332. height: math.unit(1, "meter"),
  9333. weight: math.unit(120, "lb"),
  9334. name: "Sitting",
  9335. image: {
  9336. source: "./media/characters/tene/sitting.svg",
  9337. extra: 437 / 415,
  9338. bottom: 0.1
  9339. }
  9340. },
  9341. feral: {
  9342. height: math.unit(3.9, "feet"),
  9343. weight: math.unit(250, "lb"),
  9344. name: "Feral",
  9345. image: {
  9346. source: "./media/characters/tene/feral.svg",
  9347. extra: 717 / 458,
  9348. bottom: 0.179
  9349. }
  9350. },
  9351. },
  9352. [
  9353. {
  9354. name: "Normal",
  9355. height: math.unit(6, "feet")
  9356. },
  9357. {
  9358. name: "Macro",
  9359. height: math.unit(300, "feet"),
  9360. default: true
  9361. },
  9362. {
  9363. name: "Megamacro",
  9364. height: math.unit(5, "miles")
  9365. },
  9366. ]
  9367. ))
  9368. characterMakers.push(() => makeCharacter(
  9369. { name: "Evander", species: ["gryphon"], tags: ["feral"] },
  9370. {
  9371. side: {
  9372. height: math.unit(6, "feet"),
  9373. name: "Side",
  9374. image: {
  9375. source: "./media/characters/evander/side.svg",
  9376. extra: 877 / 477
  9377. }
  9378. },
  9379. },
  9380. [
  9381. {
  9382. name: "Normal",
  9383. height: math.unit(0.83, "meters"),
  9384. default: true
  9385. },
  9386. ]
  9387. ))
  9388. characterMakers.push(() => makeCharacter(
  9389. { name: "Ka'Tamra \"Spaz\" Ci'Karan", species: ["dragon"], tags: ["anthro"] },
  9390. {
  9391. front: {
  9392. height: math.unit(12, "feet"),
  9393. weight: math.unit(1000, "lb"),
  9394. name: "Front",
  9395. image: {
  9396. source: "./media/characters/ka'tamra-spaz-ci'karan/front.svg",
  9397. extra: 1762 / 1611
  9398. }
  9399. },
  9400. back: {
  9401. height: math.unit(12, "feet"),
  9402. weight: math.unit(1000, "lb"),
  9403. name: "Back",
  9404. image: {
  9405. source: "./media/characters/ka'tamra-spaz-ci'karan/back.svg",
  9406. extra: 1762 / 1611
  9407. }
  9408. },
  9409. },
  9410. [
  9411. {
  9412. name: "Normal",
  9413. height: math.unit(12, "feet"),
  9414. default: true
  9415. },
  9416. {
  9417. name: "Kaiju",
  9418. height: math.unit(150, "feet")
  9419. },
  9420. ]
  9421. ))
  9422. characterMakers.push(() => makeCharacter(
  9423. { name: "Zero Alurus", species: ["zebra"], tags: ["anthro"] },
  9424. {
  9425. front: {
  9426. height: math.unit(6, "feet"),
  9427. weight: math.unit(150, "lb"),
  9428. name: "Front",
  9429. image: {
  9430. source: "./media/characters/zero-alurus/front.svg"
  9431. }
  9432. },
  9433. back: {
  9434. height: math.unit(6, "feet"),
  9435. weight: math.unit(150, "lb"),
  9436. name: "Back",
  9437. image: {
  9438. source: "./media/characters/zero-alurus/back.svg"
  9439. }
  9440. },
  9441. },
  9442. [
  9443. {
  9444. name: "Normal",
  9445. height: math.unit(5 + 10 / 12, "feet")
  9446. },
  9447. {
  9448. name: "Macro",
  9449. height: math.unit(60, "feet"),
  9450. default: true
  9451. },
  9452. {
  9453. name: "Macro+",
  9454. height: math.unit(450, "feet")
  9455. },
  9456. ]
  9457. ))
  9458. characterMakers.push(() => makeCharacter(
  9459. { name: "Mega Shi", species: ["yoshi"], tags: ["anthro"] },
  9460. {
  9461. front: {
  9462. height: math.unit(6, "feet"),
  9463. weight: math.unit(200, "lb"),
  9464. name: "Front",
  9465. image: {
  9466. source: "./media/characters/mega-shi/front.svg",
  9467. extra: 1279 / 1250,
  9468. bottom: 0.02
  9469. }
  9470. },
  9471. back: {
  9472. height: math.unit(6, "feet"),
  9473. weight: math.unit(200, "lb"),
  9474. name: "Back",
  9475. image: {
  9476. source: "./media/characters/mega-shi/back.svg",
  9477. extra: 1279 / 1250,
  9478. bottom: 0.02
  9479. }
  9480. },
  9481. },
  9482. [
  9483. {
  9484. name: "Micro",
  9485. height: math.unit(16 + 6 / 12, "feet")
  9486. },
  9487. {
  9488. name: "Third Dimension",
  9489. height: math.unit(40, "meters")
  9490. },
  9491. {
  9492. name: "Normal",
  9493. height: math.unit(660, "feet"),
  9494. default: true
  9495. },
  9496. {
  9497. name: "Megamacro",
  9498. height: math.unit(10, "miles")
  9499. },
  9500. {
  9501. name: "Planetary Launch",
  9502. height: math.unit(500, "miles")
  9503. },
  9504. {
  9505. name: "Interstellar",
  9506. height: math.unit(1e9, "miles")
  9507. },
  9508. {
  9509. name: "Leaving the Universe",
  9510. height: math.unit(1, "gigaparsec")
  9511. },
  9512. {
  9513. name: "Travelling Universes",
  9514. height: math.unit(30e15, "parsecs")
  9515. },
  9516. ]
  9517. ))
  9518. characterMakers.push(() => makeCharacter(
  9519. { name: "Odyssey", species: ["lynx"], tags: ["anthro"] },
  9520. {
  9521. front: {
  9522. height: math.unit(6, "feet"),
  9523. weight: math.unit(150, "lb"),
  9524. name: "Front",
  9525. image: {
  9526. source: "./media/characters/odyssey/front.svg",
  9527. extra: 1782 / 1582,
  9528. bottom: 0.01
  9529. }
  9530. },
  9531. side: {
  9532. height: math.unit(5.7, "feet"),
  9533. weight: math.unit(140, "lb"),
  9534. name: "Side",
  9535. image: {
  9536. source: "./media/characters/odyssey/side.svg",
  9537. extra: 6462 / 5700
  9538. }
  9539. },
  9540. },
  9541. [
  9542. {
  9543. name: "Normal",
  9544. height: math.unit(5 + 4 / 12, "feet")
  9545. },
  9546. {
  9547. name: "Macro",
  9548. height: math.unit(1, "km")
  9549. },
  9550. {
  9551. name: "Megamacro",
  9552. height: math.unit(3000, "km")
  9553. },
  9554. {
  9555. name: "Gigamacro",
  9556. height: math.unit(1, "AU"),
  9557. default: true
  9558. },
  9559. {
  9560. name: "Omniversal",
  9561. height: math.unit(100e14, "lightyears")
  9562. },
  9563. ]
  9564. ))
  9565. characterMakers.push(() => makeCharacter(
  9566. { name: "Mekuto", species: ["red-panda", "kitsune"], tags: ["anthro"] },
  9567. {
  9568. front: {
  9569. height: math.unit(6, "feet"),
  9570. weight: math.unit(300, "lb"),
  9571. name: "Front",
  9572. image: {
  9573. source: "./media/characters/mekuto/front.svg",
  9574. extra: 921 / 832,
  9575. bottom: 0.03
  9576. }
  9577. },
  9578. hand: {
  9579. height: math.unit(6 / 10.24, "feet"),
  9580. name: "Hand",
  9581. image: {
  9582. source: "./media/characters/mekuto/hand.svg"
  9583. }
  9584. },
  9585. foot: {
  9586. height: math.unit(6 / 5.05, "feet"),
  9587. name: "Foot",
  9588. image: {
  9589. source: "./media/characters/mekuto/foot.svg"
  9590. }
  9591. },
  9592. },
  9593. [
  9594. {
  9595. name: "Minimicro",
  9596. height: math.unit(0.2, "inches")
  9597. },
  9598. {
  9599. name: "Micro",
  9600. height: math.unit(1.5, "inches")
  9601. },
  9602. {
  9603. name: "Normal",
  9604. height: math.unit(5 + 11 / 12, "feet"),
  9605. default: true
  9606. },
  9607. {
  9608. name: "Minimacro",
  9609. height: math.unit(17 + 9 / 12, "feet")
  9610. },
  9611. {
  9612. name: "Macro",
  9613. height: math.unit(177.5, "feet")
  9614. },
  9615. {
  9616. name: "Megamacro",
  9617. height: math.unit(152, "miles")
  9618. },
  9619. ]
  9620. ))
  9621. characterMakers.push(() => makeCharacter(
  9622. { name: "Dafydd Tomos", species: ["mikromare"], tags: ["anthro"] },
  9623. {
  9624. front: {
  9625. height: math.unit(6.5, "inches"),
  9626. weight: math.unit(13, "oz"),
  9627. name: "Front",
  9628. image: {
  9629. source: "./media/characters/dafydd-tomos/front.svg",
  9630. extra: 2990 / 2603,
  9631. bottom: 0.03
  9632. }
  9633. },
  9634. },
  9635. [
  9636. {
  9637. name: "Micro",
  9638. height: math.unit(6.5, "inches"),
  9639. default: true
  9640. },
  9641. ]
  9642. ))
  9643. characterMakers.push(() => makeCharacter(
  9644. { name: "Splinter", species: ["thylacine"], tags: ["anthro"] },
  9645. {
  9646. front: {
  9647. height: math.unit(6, "feet"),
  9648. weight: math.unit(150, "lb"),
  9649. name: "Front",
  9650. image: {
  9651. source: "./media/characters/splinter/front.svg",
  9652. extra: 2990 / 2882,
  9653. bottom: 0.04
  9654. }
  9655. },
  9656. back: {
  9657. height: math.unit(6, "feet"),
  9658. weight: math.unit(150, "lb"),
  9659. name: "Back",
  9660. image: {
  9661. source: "./media/characters/splinter/back.svg",
  9662. extra: 2990 / 2882,
  9663. bottom: 0.04
  9664. }
  9665. },
  9666. },
  9667. [
  9668. {
  9669. name: "Normal",
  9670. height: math.unit(6, "feet")
  9671. },
  9672. {
  9673. name: "Macro",
  9674. height: math.unit(230, "meters"),
  9675. default: true
  9676. },
  9677. ]
  9678. ))
  9679. characterMakers.push(() => makeCharacter(
  9680. { name: "SnowGabumon", species: ["gabumon"], tags: ["anthro"] },
  9681. {
  9682. front: {
  9683. height: math.unit(4 + 10 / 12, "feet"),
  9684. weight: math.unit(480, "lb"),
  9685. name: "Front",
  9686. image: {
  9687. source: "./media/characters/snow-gabumon/front.svg",
  9688. extra: 1140 / 963,
  9689. bottom: 0.058
  9690. }
  9691. },
  9692. back: {
  9693. height: math.unit(4 + 10 / 12, "feet"),
  9694. weight: math.unit(480, "lb"),
  9695. name: "Back",
  9696. image: {
  9697. source: "./media/characters/snow-gabumon/back.svg",
  9698. extra: 1115 / 962,
  9699. bottom: 0.041
  9700. }
  9701. },
  9702. frontUndresed: {
  9703. height: math.unit(4 + 10 / 12, "feet"),
  9704. weight: math.unit(480, "lb"),
  9705. name: "Front (Undressed)",
  9706. image: {
  9707. source: "./media/characters/snow-gabumon/front-undressed.svg",
  9708. extra: 1061 / 960,
  9709. bottom: 0.045
  9710. }
  9711. },
  9712. },
  9713. [
  9714. {
  9715. name: "Micro",
  9716. height: math.unit(1, "inch")
  9717. },
  9718. {
  9719. name: "Normal",
  9720. height: math.unit(4 + 10 / 12, "feet"),
  9721. default: true
  9722. },
  9723. {
  9724. name: "Macro",
  9725. height: math.unit(200, "feet")
  9726. },
  9727. {
  9728. name: "Megamacro",
  9729. height: math.unit(120, "miles")
  9730. },
  9731. {
  9732. name: "Gigamacro",
  9733. height: math.unit(9800, "miles")
  9734. },
  9735. ]
  9736. ))
  9737. characterMakers.push(() => makeCharacter(
  9738. { name: "Moody", species: ["dog"], tags: ["anthro"] },
  9739. {
  9740. front: {
  9741. height: math.unit(1.7, "meters"),
  9742. weight: math.unit(140, "lb"),
  9743. name: "Front",
  9744. image: {
  9745. source: "./media/characters/moody/front.svg",
  9746. extra: 3226 / 3007,
  9747. bottom: 0.087
  9748. }
  9749. },
  9750. },
  9751. [
  9752. {
  9753. name: "Micro",
  9754. height: math.unit(1, "mm")
  9755. },
  9756. {
  9757. name: "Normal",
  9758. height: math.unit(1.7, "meters"),
  9759. default: true
  9760. },
  9761. {
  9762. name: "Macro",
  9763. height: math.unit(80, "meters")
  9764. },
  9765. {
  9766. name: "Macro+",
  9767. height: math.unit(500, "meters")
  9768. },
  9769. ]
  9770. ))
  9771. characterMakers.push(() => makeCharacter(
  9772. { name: "Zyas", species: ["lion", "tiger"], tags: ["anthro"] },
  9773. {
  9774. front: {
  9775. height: math.unit(6, "feet"),
  9776. weight: math.unit(150, "lb"),
  9777. name: "Front",
  9778. image: {
  9779. source: "./media/characters/zyas/front.svg",
  9780. extra: 1180 / 1120,
  9781. bottom: 0.045
  9782. }
  9783. },
  9784. },
  9785. [
  9786. {
  9787. name: "Normal",
  9788. height: math.unit(10, "feet"),
  9789. default: true
  9790. },
  9791. {
  9792. name: "Macro",
  9793. height: math.unit(500, "feet")
  9794. },
  9795. {
  9796. name: "Megamacro",
  9797. height: math.unit(5, "miles")
  9798. },
  9799. {
  9800. name: "Teramacro",
  9801. height: math.unit(150000, "miles")
  9802. },
  9803. ]
  9804. ))
  9805. characterMakers.push(() => makeCharacter(
  9806. { name: "Cuon", species: ["border-collie"], tags: ["anthro"] },
  9807. {
  9808. front: {
  9809. height: math.unit(6, "feet"),
  9810. weight: math.unit(150, "lb"),
  9811. name: "Front",
  9812. image: {
  9813. source: "./media/characters/cuon/front.svg",
  9814. extra: 1390 / 1320,
  9815. bottom: 0.008
  9816. }
  9817. },
  9818. },
  9819. [
  9820. {
  9821. name: "Micro",
  9822. height: math.unit(3, "inches")
  9823. },
  9824. {
  9825. name: "Normal",
  9826. height: math.unit(18 + 9 / 12, "feet"),
  9827. default: true
  9828. },
  9829. {
  9830. name: "Macro",
  9831. height: math.unit(360, "feet")
  9832. },
  9833. {
  9834. name: "Megamacro",
  9835. height: math.unit(360, "miles")
  9836. },
  9837. ]
  9838. ))
  9839. characterMakers.push(() => makeCharacter(
  9840. { name: "Nyanuxk", species: ["dragon"], tags: ["anthro"] },
  9841. {
  9842. front: {
  9843. height: math.unit(2.4, "meters"),
  9844. weight: math.unit(70, "kg"),
  9845. name: "Front",
  9846. image: {
  9847. source: "./media/characters/nyanuxk/front.svg",
  9848. extra: 1172 / 1084,
  9849. bottom: 0.065
  9850. }
  9851. },
  9852. side: {
  9853. height: math.unit(2.4, "meters"),
  9854. weight: math.unit(70, "kg"),
  9855. name: "Side",
  9856. image: {
  9857. source: "./media/characters/nyanuxk/side.svg",
  9858. extra: 1190 / 1132,
  9859. bottom: 0.007
  9860. }
  9861. },
  9862. back: {
  9863. height: math.unit(2.4, "meters"),
  9864. weight: math.unit(70, "kg"),
  9865. name: "Back",
  9866. image: {
  9867. source: "./media/characters/nyanuxk/back.svg",
  9868. extra: 1200 / 1141,
  9869. bottom: 0.015
  9870. }
  9871. },
  9872. foot: {
  9873. height: math.unit(0.52, "meters"),
  9874. name: "Foot",
  9875. image: {
  9876. source: "./media/characters/nyanuxk/foot.svg"
  9877. }
  9878. },
  9879. },
  9880. [
  9881. {
  9882. name: "Micro",
  9883. height: math.unit(2, "cm")
  9884. },
  9885. {
  9886. name: "Normal",
  9887. height: math.unit(2.4, "meters"),
  9888. default: true
  9889. },
  9890. {
  9891. name: "Smaller Macro",
  9892. height: math.unit(120, "meters")
  9893. },
  9894. {
  9895. name: "Bigger Macro",
  9896. height: math.unit(1.2, "km")
  9897. },
  9898. {
  9899. name: "Megamacro",
  9900. height: math.unit(15, "kilometers")
  9901. },
  9902. {
  9903. name: "Gigamacro",
  9904. height: math.unit(2000, "km")
  9905. },
  9906. {
  9907. name: "Teramacro",
  9908. height: math.unit(500000, "km")
  9909. },
  9910. ]
  9911. ))
  9912. characterMakers.push(() => makeCharacter(
  9913. { name: "Ailbhe", species: ["gryphon"], tags: ["feral"] },
  9914. {
  9915. side: {
  9916. height: math.unit(6, "feet"),
  9917. name: "Side",
  9918. image: {
  9919. source: "./media/characters/ailbhe/side.svg",
  9920. extra: 757 / 464,
  9921. bottom: 0.041
  9922. }
  9923. },
  9924. },
  9925. [
  9926. {
  9927. name: "Normal",
  9928. height: math.unit(1.07, "meters"),
  9929. default: true
  9930. },
  9931. ]
  9932. ))
  9933. characterMakers.push(() => makeCharacter(
  9934. { name: "Zevulfius", species: ["werewolf"], tags: ["anthro"] },
  9935. {
  9936. front: {
  9937. height: math.unit(6, "feet"),
  9938. weight: math.unit(120, "kg"),
  9939. name: "Front",
  9940. image: {
  9941. source: "./media/characters/zevulfius/front.svg",
  9942. extra: 965 / 903
  9943. }
  9944. },
  9945. side: {
  9946. height: math.unit(6, "feet"),
  9947. weight: math.unit(120, "kg"),
  9948. name: "Side",
  9949. image: {
  9950. source: "./media/characters/zevulfius/side.svg",
  9951. extra: 939 / 900
  9952. }
  9953. },
  9954. back: {
  9955. height: math.unit(6, "feet"),
  9956. weight: math.unit(120, "kg"),
  9957. name: "Back",
  9958. image: {
  9959. source: "./media/characters/zevulfius/back.svg",
  9960. extra: 918 / 854,
  9961. bottom: 0.005
  9962. }
  9963. },
  9964. foot: {
  9965. height: math.unit(6 / 3.72, "feet"),
  9966. name: "Foot",
  9967. image: {
  9968. source: "./media/characters/zevulfius/foot.svg"
  9969. }
  9970. },
  9971. },
  9972. [
  9973. {
  9974. name: "Macro",
  9975. height: math.unit(750, "meters")
  9976. },
  9977. {
  9978. name: "Megamacro",
  9979. height: math.unit(20, "km"),
  9980. default: true
  9981. },
  9982. {
  9983. name: "Gigamacro",
  9984. height: math.unit(2000, "km")
  9985. },
  9986. {
  9987. name: "Teramacro",
  9988. height: math.unit(250000, "km")
  9989. },
  9990. ]
  9991. ))
  9992. characterMakers.push(() => makeCharacter(
  9993. { name: "Rikes", species: ["german-shepherd"], tags: ["anthro"] },
  9994. {
  9995. front: {
  9996. height: math.unit(100, "feet"),
  9997. weight: math.unit(350, "kg"),
  9998. name: "Front",
  9999. image: {
  10000. source: "./media/characters/rikes/front.svg",
  10001. extra: 1565 / 1483,
  10002. bottom: 0.017
  10003. }
  10004. },
  10005. },
  10006. [
  10007. {
  10008. name: "Macro",
  10009. height: math.unit(100, "feet"),
  10010. default: true
  10011. },
  10012. ]
  10013. ))
  10014. characterMakers.push(() => makeCharacter(
  10015. { name: "Adam Silver-Mane", species: ["horse"], tags: ["anthro"] },
  10016. {
  10017. anthro: {
  10018. height: math.unit(8, "feet"),
  10019. weight: math.unit(120, "kg"),
  10020. name: "Anthro",
  10021. image: {
  10022. source: "./media/characters/adam-silver-mane/anthro.svg",
  10023. extra: 5743 / 5339,
  10024. bottom: 0.07
  10025. }
  10026. },
  10027. taur: {
  10028. height: math.unit(16, "feet"),
  10029. weight: math.unit(1500, "kg"),
  10030. name: "Taur",
  10031. image: {
  10032. source: "./media/characters/adam-silver-mane/taur.svg",
  10033. extra: 1713 / 1571,
  10034. bottom: 0.01
  10035. }
  10036. },
  10037. },
  10038. [
  10039. {
  10040. name: "Normal",
  10041. height: math.unit(8, "feet")
  10042. },
  10043. {
  10044. name: "Minimacro",
  10045. height: math.unit(80, "feet")
  10046. },
  10047. {
  10048. name: "Macro",
  10049. height: math.unit(800, "feet"),
  10050. default: true
  10051. },
  10052. {
  10053. name: "Megamacro",
  10054. height: math.unit(8000, "feet")
  10055. },
  10056. {
  10057. name: "Gigamacro",
  10058. height: math.unit(800, "miles")
  10059. },
  10060. {
  10061. name: "Teramacro",
  10062. height: math.unit(80000, "miles")
  10063. },
  10064. {
  10065. name: "Celestial",
  10066. height: math.unit(8e6, "miles")
  10067. },
  10068. {
  10069. name: "Star Dragon",
  10070. height: math.unit(800000, "parsecs")
  10071. },
  10072. {
  10073. name: "Godly",
  10074. height: math.unit(800, "teraparsecs")
  10075. },
  10076. ]
  10077. ))
  10078. characterMakers.push(() => makeCharacter(
  10079. { name: "Ky'owin", species: ["dragon", "cat"], tags: ["anthro"] },
  10080. {
  10081. front: {
  10082. height: math.unit(6, "feet"),
  10083. weight: math.unit(150, "lb"),
  10084. name: "Front",
  10085. image: {
  10086. source: "./media/characters/ky'owin/front.svg",
  10087. extra: 3888 / 3068,
  10088. bottom: 0.015
  10089. }
  10090. },
  10091. },
  10092. [
  10093. {
  10094. name: "Normal",
  10095. height: math.unit(6 + 8 / 12, "feet")
  10096. },
  10097. {
  10098. name: "Large",
  10099. height: math.unit(68, "feet")
  10100. },
  10101. {
  10102. name: "Macro",
  10103. height: math.unit(132, "feet")
  10104. },
  10105. {
  10106. name: "Macro+",
  10107. height: math.unit(340, "feet")
  10108. },
  10109. {
  10110. name: "Macro++",
  10111. height: math.unit(680, "feet"),
  10112. default: true
  10113. },
  10114. {
  10115. name: "Megamacro",
  10116. height: math.unit(1, "mile")
  10117. },
  10118. {
  10119. name: "Megamacro+",
  10120. height: math.unit(10, "miles")
  10121. },
  10122. ]
  10123. ))
  10124. characterMakers.push(() => makeCharacter(
  10125. { name: "Mal", species: ["imp"], tags: ["anthro"] },
  10126. {
  10127. front: {
  10128. height: math.unit(4, "feet"),
  10129. weight: math.unit(50, "lb"),
  10130. name: "Front",
  10131. image: {
  10132. source: "./media/characters/mal/front.svg",
  10133. extra: 785 / 724,
  10134. bottom: 0.07
  10135. }
  10136. },
  10137. },
  10138. [
  10139. {
  10140. name: "Micro",
  10141. height: math.unit(4, "inches")
  10142. },
  10143. {
  10144. name: "Normal",
  10145. height: math.unit(4, "feet"),
  10146. default: true
  10147. },
  10148. {
  10149. name: "Macro",
  10150. height: math.unit(200, "feet")
  10151. },
  10152. ]
  10153. ))
  10154. characterMakers.push(() => makeCharacter(
  10155. { name: "Jordan Deware", species: ["otter"], tags: ["anthro"] },
  10156. {
  10157. front: {
  10158. height: math.unit(6, "feet"),
  10159. weight: math.unit(150, "lb"),
  10160. name: "Front",
  10161. image: {
  10162. source: "./media/characters/jordan-deware/front.svg",
  10163. extra: 1191 / 1012
  10164. }
  10165. },
  10166. },
  10167. [
  10168. {
  10169. name: "Nano",
  10170. height: math.unit(0.01, "mm")
  10171. },
  10172. {
  10173. name: "Minimicro",
  10174. height: math.unit(1, "mm")
  10175. },
  10176. {
  10177. name: "Micro",
  10178. height: math.unit(0.5, "inches")
  10179. },
  10180. {
  10181. name: "Normal",
  10182. height: math.unit(4, "feet"),
  10183. default: true
  10184. },
  10185. {
  10186. name: "Minimacro",
  10187. height: math.unit(40, "meters")
  10188. },
  10189. {
  10190. name: "Small Macro",
  10191. height: math.unit(400, "meters")
  10192. },
  10193. {
  10194. name: "Macro",
  10195. height: math.unit(4, "miles")
  10196. },
  10197. {
  10198. name: "Megamacro",
  10199. height: math.unit(40, "miles")
  10200. },
  10201. {
  10202. name: "Megamacro+",
  10203. height: math.unit(400, "miles")
  10204. },
  10205. {
  10206. name: "Gigamacro",
  10207. height: math.unit(400000, "miles")
  10208. },
  10209. ]
  10210. ))
  10211. characterMakers.push(() => makeCharacter(
  10212. { name: "Kimiko", species: ["eastern-dragon"], tags: ["anthro"] },
  10213. {
  10214. side: {
  10215. height: math.unit(6, "feet"),
  10216. weight: math.unit(150, "lb"),
  10217. name: "Side",
  10218. image: {
  10219. source: "./media/characters/kimiko/side.svg",
  10220. extra: 600 / 358
  10221. }
  10222. },
  10223. },
  10224. [
  10225. {
  10226. name: "Normal",
  10227. height: math.unit(15, "feet"),
  10228. default: true
  10229. },
  10230. {
  10231. name: "Macro",
  10232. height: math.unit(220, "feet")
  10233. },
  10234. {
  10235. name: "Macro+",
  10236. height: math.unit(1450, "feet")
  10237. },
  10238. {
  10239. name: "Megamacro",
  10240. height: math.unit(11500, "feet")
  10241. },
  10242. {
  10243. name: "Gigamacro",
  10244. height: math.unit(9500, "miles")
  10245. },
  10246. {
  10247. name: "Teramacro",
  10248. height: math.unit(2208005005, "miles")
  10249. },
  10250. {
  10251. name: "Examacro",
  10252. height: math.unit(2750, "parsecs")
  10253. },
  10254. {
  10255. name: "Zettamacro",
  10256. height: math.unit(101500, "parsecs")
  10257. },
  10258. ]
  10259. ))
  10260. characterMakers.push(() => makeCharacter(
  10261. { name: "Andrew Sleepy", species: ["human"], tags: ["anthro"] },
  10262. {
  10263. front: {
  10264. height: math.unit(6, "feet"),
  10265. weight: math.unit(70, "kg"),
  10266. name: "Front",
  10267. image: {
  10268. source: "./media/characters/andrew-sleepy/front.svg"
  10269. }
  10270. },
  10271. side: {
  10272. height: math.unit(6, "feet"),
  10273. weight: math.unit(70, "kg"),
  10274. name: "Side",
  10275. image: {
  10276. source: "./media/characters/andrew-sleepy/side.svg"
  10277. }
  10278. },
  10279. },
  10280. [
  10281. {
  10282. name: "Micro",
  10283. height: math.unit(1, "mm"),
  10284. default: true
  10285. },
  10286. ]
  10287. ))
  10288. characterMakers.push(() => makeCharacter(
  10289. { name: "Judio", species: ["rabbit"], tags: ["anthro"] },
  10290. {
  10291. front: {
  10292. height: math.unit(6, "feet"),
  10293. weight: math.unit(150, "lb"),
  10294. name: "Front",
  10295. image: {
  10296. source: "./media/characters/judio/front.svg",
  10297. extra: 1258 / 1110
  10298. }
  10299. },
  10300. },
  10301. [
  10302. {
  10303. name: "Normal",
  10304. height: math.unit(5 + 6 / 12, "feet")
  10305. },
  10306. {
  10307. name: "Macro",
  10308. height: math.unit(1000, "feet"),
  10309. default: true
  10310. },
  10311. {
  10312. name: "Megamacro",
  10313. height: math.unit(10, "miles")
  10314. },
  10315. ]
  10316. ))
  10317. characterMakers.push(() => makeCharacter(
  10318. { name: "Nomaxice", species: ["lynx", "raccoon"], tags: ["anthro"] },
  10319. {
  10320. front: {
  10321. height: math.unit(6, "feet"),
  10322. weight: math.unit(68, "kg"),
  10323. name: "Front",
  10324. image: {
  10325. source: "./media/characters/nomaxice/front.svg",
  10326. extra: 1498 / 1073,
  10327. bottom: 0.075
  10328. }
  10329. },
  10330. foot: {
  10331. height: math.unit(1.1, "feet"),
  10332. name: "Foot",
  10333. image: {
  10334. source: "./media/characters/nomaxice/foot.svg"
  10335. }
  10336. },
  10337. },
  10338. [
  10339. {
  10340. name: "Micro",
  10341. height: math.unit(8, "cm")
  10342. },
  10343. {
  10344. name: "Norm",
  10345. height: math.unit(1.82, "m")
  10346. },
  10347. {
  10348. name: "Norm+",
  10349. height: math.unit(8.8, "feet")
  10350. },
  10351. {
  10352. name: "Big",
  10353. height: math.unit(8, "meters"),
  10354. default: true
  10355. },
  10356. {
  10357. name: "Macro",
  10358. height: math.unit(18, "meters")
  10359. },
  10360. {
  10361. name: "Macro+",
  10362. height: math.unit(88, "meters")
  10363. },
  10364. ]
  10365. ))
  10366. characterMakers.push(() => makeCharacter(
  10367. { name: "Dydros", species: ["dragon"], tags: ["anthro"] },
  10368. {
  10369. front: {
  10370. height: math.unit(12, "feet"),
  10371. weight: math.unit(1.5, "tons"),
  10372. name: "Front",
  10373. image: {
  10374. source: "./media/characters/dydros/front.svg",
  10375. extra: 863 / 800,
  10376. bottom: 0.015
  10377. }
  10378. },
  10379. back: {
  10380. height: math.unit(12, "feet"),
  10381. weight: math.unit(1.5, "tons"),
  10382. name: "Back",
  10383. image: {
  10384. source: "./media/characters/dydros/back.svg",
  10385. extra: 900 / 843,
  10386. bottom: 0.005
  10387. }
  10388. },
  10389. },
  10390. [
  10391. {
  10392. name: "Normal",
  10393. height: math.unit(12, "feet"),
  10394. default: true
  10395. },
  10396. ]
  10397. ))
  10398. characterMakers.push(() => makeCharacter(
  10399. { name: "Riggi", species: ["tiger", "wolf"], tags: ["anthro"] },
  10400. {
  10401. front: {
  10402. height: math.unit(6, "feet"),
  10403. weight: math.unit(100, "kg"),
  10404. name: "Front",
  10405. image: {
  10406. source: "./media/characters/riggi/front.svg",
  10407. extra: 5787 / 5303
  10408. }
  10409. },
  10410. hyper: {
  10411. height: math.unit(6 * 5 / 3, "feet"),
  10412. weight: math.unit(400 * 5 / 3 * 5 / 3 * 5 / 3, "kg"),
  10413. name: "Hyper",
  10414. image: {
  10415. source: "./media/characters/riggi/hyper.svg",
  10416. extra: 3595 / 3485
  10417. }
  10418. },
  10419. },
  10420. [
  10421. {
  10422. name: "Small Macro",
  10423. height: math.unit(50, "feet")
  10424. },
  10425. {
  10426. name: "Default",
  10427. height: math.unit(200, "feet"),
  10428. default: true
  10429. },
  10430. {
  10431. name: "Loom",
  10432. height: math.unit(10000, "feet")
  10433. },
  10434. {
  10435. name: "Cruising Altitude",
  10436. height: math.unit(30000, "feet")
  10437. },
  10438. {
  10439. name: "Megamacro",
  10440. height: math.unit(100, "miles")
  10441. },
  10442. {
  10443. name: "Continent Sized",
  10444. height: math.unit(2800, "miles")
  10445. },
  10446. {
  10447. name: "Earth Sized",
  10448. height: math.unit(8000, "miles")
  10449. },
  10450. ]
  10451. ))
  10452. characterMakers.push(() => makeCharacter(
  10453. { name: "Alexi", species: ["werewolf"], tags: ["anthro"] },
  10454. {
  10455. front: {
  10456. height: math.unit(6, "feet"),
  10457. weight: math.unit(250, "lb"),
  10458. name: "Front",
  10459. image: {
  10460. source: "./media/characters/alexi/front.svg",
  10461. extra: 3483 / 3291,
  10462. bottom: 0.04
  10463. }
  10464. },
  10465. back: {
  10466. height: math.unit(6, "feet"),
  10467. weight: math.unit(250, "lb"),
  10468. name: "Back",
  10469. image: {
  10470. source: "./media/characters/alexi/back.svg",
  10471. extra: 3533 / 3356,
  10472. bottom: 0.021
  10473. }
  10474. },
  10475. frontTransforming: {
  10476. height: math.unit(8.58, "feet"),
  10477. weight: math.unit(1300, "lb"),
  10478. name: "Transforming",
  10479. image: {
  10480. source: "./media/characters/alexi/front-transforming.svg",
  10481. extra: 437 / 409,
  10482. bottom: 19 / 458.66
  10483. }
  10484. },
  10485. frontTransformed: {
  10486. height: math.unit(12.5, "feet"),
  10487. weight: math.unit(4000, "lb"),
  10488. name: "Transformed",
  10489. image: {
  10490. source: "./media/characters/alexi/front-transformed.svg",
  10491. extra: 639 / 614,
  10492. bottom: 30.55 / 671
  10493. }
  10494. },
  10495. },
  10496. [
  10497. {
  10498. name: "Normal",
  10499. height: math.unit(14, "feet"),
  10500. default: true
  10501. },
  10502. {
  10503. name: "Minimacro",
  10504. height: math.unit(30, "meters")
  10505. },
  10506. {
  10507. name: "Macro",
  10508. height: math.unit(500, "meters")
  10509. },
  10510. {
  10511. name: "Megamacro",
  10512. height: math.unit(9000, "km")
  10513. },
  10514. {
  10515. name: "Teramacro",
  10516. height: math.unit(384000, "km")
  10517. },
  10518. ]
  10519. ))
  10520. characterMakers.push(() => makeCharacter(
  10521. { name: "Kayroo", species: ["kangaroo"], tags: ["anthro"] },
  10522. {
  10523. front: {
  10524. height: math.unit(6, "feet"),
  10525. weight: math.unit(150, "lb"),
  10526. name: "Front",
  10527. image: {
  10528. source: "./media/characters/kayroo/front.svg",
  10529. extra: 1153 / 1038,
  10530. bottom: 0.06
  10531. }
  10532. },
  10533. foot: {
  10534. height: math.unit(6, "feet"),
  10535. weight: math.unit(150, "lb"),
  10536. name: "Foot",
  10537. image: {
  10538. source: "./media/characters/kayroo/foot.svg"
  10539. }
  10540. },
  10541. },
  10542. [
  10543. {
  10544. name: "Normal",
  10545. height: math.unit(8, "feet"),
  10546. default: true
  10547. },
  10548. {
  10549. name: "Minimacro",
  10550. height: math.unit(250, "feet")
  10551. },
  10552. {
  10553. name: "Macro",
  10554. height: math.unit(2800, "feet")
  10555. },
  10556. {
  10557. name: "Megamacro",
  10558. height: math.unit(5200, "feet")
  10559. },
  10560. {
  10561. name: "Gigamacro",
  10562. height: math.unit(27000, "feet")
  10563. },
  10564. {
  10565. name: "Omega",
  10566. height: math.unit(45000, "feet")
  10567. },
  10568. ]
  10569. ))
  10570. characterMakers.push(() => makeCharacter(
  10571. { name: "Rhys", species: ["renamon"], tags: ["anthro"] },
  10572. {
  10573. front: {
  10574. height: math.unit(18, "feet"),
  10575. weight: math.unit(5800, "lb"),
  10576. name: "Front",
  10577. image: {
  10578. source: "./media/characters/rhys/front.svg",
  10579. extra: 3386 / 3090,
  10580. bottom: 0.07
  10581. }
  10582. },
  10583. },
  10584. [
  10585. {
  10586. name: "Normal",
  10587. height: math.unit(18, "feet"),
  10588. default: true
  10589. },
  10590. {
  10591. name: "Working Size",
  10592. height: math.unit(200, "feet")
  10593. },
  10594. {
  10595. name: "Demolition Size",
  10596. height: math.unit(2000, "feet")
  10597. },
  10598. {
  10599. name: "Maximum Licensed Size",
  10600. height: math.unit(5, "miles")
  10601. },
  10602. {
  10603. name: "Maximum Observed Size",
  10604. height: math.unit(10, "yottameters")
  10605. },
  10606. ]
  10607. ))
  10608. characterMakers.push(() => makeCharacter(
  10609. { name: "Toto", species: ["dragon"], tags: ["anthro"] },
  10610. {
  10611. front: {
  10612. height: math.unit(6, "feet"),
  10613. weight: math.unit(250, "lb"),
  10614. name: "Front",
  10615. image: {
  10616. source: "./media/characters/toto/front.svg",
  10617. extra: 527 / 479,
  10618. bottom: 0.05
  10619. }
  10620. },
  10621. },
  10622. [
  10623. {
  10624. name: "Micro",
  10625. height: math.unit(3, "feet")
  10626. },
  10627. {
  10628. name: "Normal",
  10629. height: math.unit(10, "feet")
  10630. },
  10631. {
  10632. name: "Macro",
  10633. height: math.unit(150, "feet"),
  10634. default: true
  10635. },
  10636. {
  10637. name: "Megamacro",
  10638. height: math.unit(1200, "feet")
  10639. },
  10640. ]
  10641. ))
  10642. characterMakers.push(() => makeCharacter(
  10643. { name: "King", species: ["lion"], tags: ["anthro"] },
  10644. {
  10645. back: {
  10646. height: math.unit(6, "feet"),
  10647. weight: math.unit(150, "lb"),
  10648. name: "Back",
  10649. image: {
  10650. source: "./media/characters/king/back.svg"
  10651. }
  10652. },
  10653. },
  10654. [
  10655. {
  10656. name: "Micro",
  10657. height: math.unit(2, "inches")
  10658. },
  10659. {
  10660. name: "Normal",
  10661. height: math.unit(8, "feet")
  10662. },
  10663. {
  10664. name: "Macro",
  10665. height: math.unit(200, "feet"),
  10666. default: true
  10667. },
  10668. {
  10669. name: "Megamacro",
  10670. height: math.unit(50, "miles")
  10671. },
  10672. ]
  10673. ))
  10674. characterMakers.push(() => makeCharacter(
  10675. { name: "Cordite", species: ["candy-orca-dragon"], tags: ["anthro"] },
  10676. {
  10677. anthro: {
  10678. height: math.unit(6 + 5 / 12, "feet"),
  10679. weight: math.unit(280, "lb"),
  10680. name: "Anthro",
  10681. image: {
  10682. source: "./media/characters/cordite/anthro.svg",
  10683. extra: 1986 / 1905,
  10684. bottom: 0.025
  10685. }
  10686. },
  10687. feral: {
  10688. height: math.unit(2, "feet"),
  10689. weight: math.unit(90, "lb"),
  10690. name: "Feral",
  10691. image: {
  10692. source: "./media/characters/cordite/feral.svg",
  10693. extra: 1260 / 755,
  10694. bottom: 0.05
  10695. }
  10696. },
  10697. },
  10698. [
  10699. {
  10700. name: "Normal",
  10701. height: math.unit(6 + 5 / 12, "feet"),
  10702. default: true
  10703. },
  10704. ]
  10705. ))
  10706. characterMakers.push(() => makeCharacter(
  10707. { name: "Pianostrong", species: ["husky"], tags: ["anthro"] },
  10708. {
  10709. front: {
  10710. height: math.unit(6, "feet"),
  10711. weight: math.unit(150, "lb"),
  10712. name: "Front",
  10713. image: {
  10714. source: "./media/characters/pianostrong/front.svg",
  10715. extra: 6577 / 6254,
  10716. bottom: 0.02
  10717. }
  10718. },
  10719. side: {
  10720. height: math.unit(6, "feet"),
  10721. weight: math.unit(150, "lb"),
  10722. name: "Side",
  10723. image: {
  10724. source: "./media/characters/pianostrong/side.svg",
  10725. extra: 6106 / 5730
  10726. }
  10727. },
  10728. back: {
  10729. height: math.unit(6, "feet"),
  10730. weight: math.unit(150, "lb"),
  10731. name: "Back",
  10732. image: {
  10733. source: "./media/characters/pianostrong/back.svg",
  10734. extra: 6085 / 5733,
  10735. bottom: 0.01
  10736. }
  10737. },
  10738. },
  10739. [
  10740. {
  10741. name: "Macro",
  10742. height: math.unit(100, "feet")
  10743. },
  10744. {
  10745. name: "Macro+",
  10746. height: math.unit(300, "feet"),
  10747. default: true
  10748. },
  10749. {
  10750. name: "Macro++",
  10751. height: math.unit(1000, "feet")
  10752. },
  10753. ]
  10754. ))
  10755. characterMakers.push(() => makeCharacter(
  10756. { name: "Kona", species: ["deer"], tags: ["anthro"] },
  10757. {
  10758. front: {
  10759. height: math.unit(6, "feet"),
  10760. weight: math.unit(150, "lb"),
  10761. name: "Front",
  10762. image: {
  10763. source: "./media/characters/kona/front.svg",
  10764. extra: 2960 / 2629,
  10765. bottom: 0.005
  10766. }
  10767. },
  10768. },
  10769. [
  10770. {
  10771. name: "Normal",
  10772. height: math.unit(11 + 8 / 12, "feet")
  10773. },
  10774. {
  10775. name: "Macro",
  10776. height: math.unit(850, "feet"),
  10777. default: true
  10778. },
  10779. {
  10780. name: "Macro+",
  10781. height: math.unit(1.5, "km"),
  10782. default: true
  10783. },
  10784. {
  10785. name: "Megamacro",
  10786. height: math.unit(80, "miles")
  10787. },
  10788. {
  10789. name: "Gigamacro",
  10790. height: math.unit(3500, "miles")
  10791. },
  10792. ]
  10793. ))
  10794. characterMakers.push(() => makeCharacter(
  10795. { name: "Levi", species: ["dragon"], tags: ["anthro"] },
  10796. {
  10797. side: {
  10798. height: math.unit(1.9, "meters"),
  10799. weight: math.unit(326, "kg"),
  10800. name: "Side",
  10801. image: {
  10802. source: "./media/characters/levi/side.svg",
  10803. extra: 1704 / 1334,
  10804. bottom: 0.02
  10805. }
  10806. },
  10807. },
  10808. [
  10809. {
  10810. name: "Normal",
  10811. height: math.unit(1.9, "meters"),
  10812. default: true
  10813. },
  10814. {
  10815. name: "Macro",
  10816. height: math.unit(20, "meters")
  10817. },
  10818. {
  10819. name: "Macro+",
  10820. height: math.unit(200, "meters")
  10821. },
  10822. {
  10823. name: "Megamacro",
  10824. height: math.unit(2, "km")
  10825. },
  10826. {
  10827. name: "Megamacro+",
  10828. height: math.unit(20, "km")
  10829. },
  10830. {
  10831. name: "Gigamacro",
  10832. height: math.unit(2500, "km")
  10833. },
  10834. {
  10835. name: "Gigamacro+",
  10836. height: math.unit(120000, "km")
  10837. },
  10838. {
  10839. name: "Teramacro",
  10840. height: math.unit(7.77e6, "km")
  10841. },
  10842. ]
  10843. ))
  10844. characterMakers.push(() => makeCharacter(
  10845. { name: "BMC", species: ["sabertooth-tiger", "cougar"], tags: ["anthro"] },
  10846. {
  10847. front: {
  10848. height: math.unit(6 + 4 / 12, "feet"),
  10849. weight: math.unit(188, "lb"),
  10850. name: "Front",
  10851. image: {
  10852. source: "./media/characters/bmc/front.svg",
  10853. extra: 1067 / 1022,
  10854. bottom: 0.047
  10855. }
  10856. },
  10857. },
  10858. [
  10859. {
  10860. name: "Human-sized",
  10861. height: math.unit(6 + 4 / 12, "feet")
  10862. },
  10863. {
  10864. name: "Small",
  10865. height: math.unit(250, "feet")
  10866. },
  10867. {
  10868. name: "Normal",
  10869. height: math.unit(1250, "feet"),
  10870. default: true
  10871. },
  10872. {
  10873. name: "Good Day",
  10874. height: math.unit(88, "miles")
  10875. },
  10876. {
  10877. name: "Largest Measured Size",
  10878. height: math.unit(11.2e6, "lightyears")
  10879. },
  10880. ]
  10881. ))
  10882. characterMakers.push(() => makeCharacter(
  10883. { name: "Sven the Kaiju", species: ["monster", "fairy"], tags: ["anthro"] },
  10884. {
  10885. front: {
  10886. height: math.unit(20, "feet"),
  10887. weight: math.unit(2016, "kg"),
  10888. name: "Front",
  10889. image: {
  10890. source: "./media/characters/sven-the-kaiju/front.svg",
  10891. extra: 1479 / 1449,
  10892. bottom: 0.05
  10893. }
  10894. },
  10895. },
  10896. [
  10897. {
  10898. name: "Fairy",
  10899. height: math.unit(6, "inches")
  10900. },
  10901. {
  10902. name: "Normal",
  10903. height: math.unit(20, "feet"),
  10904. default: true
  10905. },
  10906. {
  10907. name: "Rampage",
  10908. height: math.unit(200, "feet")
  10909. },
  10910. {
  10911. name: "Archfey Forest Guardian",
  10912. height: math.unit(1, "mile")
  10913. },
  10914. ]
  10915. ))
  10916. characterMakers.push(() => makeCharacter(
  10917. { name: "Marik", species: ["dragon"], tags: ["anthro"] },
  10918. {
  10919. front: {
  10920. height: math.unit(4, "meters"),
  10921. weight: math.unit(2, "tons"),
  10922. name: "Front",
  10923. image: {
  10924. source: "./media/characters/marik/front.svg",
  10925. extra: 1057 / 1003,
  10926. bottom: 0.08
  10927. }
  10928. },
  10929. },
  10930. [
  10931. {
  10932. name: "Normal",
  10933. height: math.unit(4, "meters"),
  10934. default: true
  10935. },
  10936. {
  10937. name: "Macro",
  10938. height: math.unit(20, "meters")
  10939. },
  10940. {
  10941. name: "Megamacro",
  10942. height: math.unit(50, "km")
  10943. },
  10944. {
  10945. name: "Gigamacro",
  10946. height: math.unit(100, "km")
  10947. },
  10948. {
  10949. name: "Alpha Macro",
  10950. height: math.unit(7.88e7, "yottameters")
  10951. },
  10952. ]
  10953. ))
  10954. characterMakers.push(() => makeCharacter(
  10955. { name: "Mel", species: ["human", "moth"], tags: ["anthro"] },
  10956. {
  10957. front: {
  10958. height: math.unit(6, "feet"),
  10959. weight: math.unit(110, "lb"),
  10960. name: "Front",
  10961. image: {
  10962. source: "./media/characters/mel/front.svg",
  10963. extra: 736 / 617,
  10964. bottom: 0.017
  10965. }
  10966. },
  10967. },
  10968. [
  10969. {
  10970. name: "Pico",
  10971. height: math.unit(3, "pm")
  10972. },
  10973. {
  10974. name: "Nano",
  10975. height: math.unit(3, "nm")
  10976. },
  10977. {
  10978. name: "Micro",
  10979. height: math.unit(0.3, "mm"),
  10980. default: true
  10981. },
  10982. {
  10983. name: "Micro+",
  10984. height: math.unit(3, "mm")
  10985. },
  10986. {
  10987. name: "Normal",
  10988. height: math.unit(5 + 10.5 / 12, "feet")
  10989. },
  10990. ]
  10991. ))
  10992. characterMakers.push(() => makeCharacter(
  10993. { name: "Lykonous", species: ["monster"], tags: ["anthro"] },
  10994. {
  10995. kaiju: {
  10996. height: math.unit(1.75, "meters"),
  10997. weight: math.unit(55, "kg"),
  10998. name: "Kaiju",
  10999. image: {
  11000. source: "./media/characters/lykonous/kaiju.svg",
  11001. extra: 1055 / 946,
  11002. bottom: 0.135
  11003. }
  11004. },
  11005. },
  11006. [
  11007. {
  11008. name: "Normal",
  11009. height: math.unit(2.5, "meters"),
  11010. default: true
  11011. },
  11012. {
  11013. name: "Kaiju Dragon",
  11014. height: math.unit(60, "meters")
  11015. },
  11016. {
  11017. name: "Mega Kaiju",
  11018. height: math.unit(120, "km")
  11019. },
  11020. {
  11021. name: "Giga Kaiju",
  11022. height: math.unit(200, "megameters")
  11023. },
  11024. {
  11025. name: "Terra Kaiju",
  11026. height: math.unit(400, "gigameters")
  11027. },
  11028. {
  11029. name: "Kaiju Dragon God",
  11030. height: math.unit(13000, "exaparsecs")
  11031. },
  11032. ]
  11033. ))
  11034. characterMakers.push(() => makeCharacter(
  11035. { name: "Blü", species: ["dragon"], tags: ["anthro"] },
  11036. {
  11037. front: {
  11038. height: math.unit(6, "feet"),
  11039. weight: math.unit(150, "lb"),
  11040. name: "Front",
  11041. image: {
  11042. source: "./media/characters/blü/front.svg",
  11043. extra: 1883 / 1564,
  11044. bottom: 0.031
  11045. }
  11046. },
  11047. },
  11048. [
  11049. {
  11050. name: "Normal",
  11051. height: math.unit(13, "feet"),
  11052. default: true
  11053. },
  11054. {
  11055. name: "Big Boi",
  11056. height: math.unit(150, "meters")
  11057. },
  11058. {
  11059. name: "Mini Stomper",
  11060. height: math.unit(300, "meters")
  11061. },
  11062. {
  11063. name: "Macro",
  11064. height: math.unit(1000, "meters")
  11065. },
  11066. {
  11067. name: "Megamacro",
  11068. height: math.unit(11000, "meters")
  11069. },
  11070. {
  11071. name: "Gigamacro",
  11072. height: math.unit(11000, "km")
  11073. },
  11074. {
  11075. name: "Teramacro",
  11076. height: math.unit(420000, "km")
  11077. },
  11078. {
  11079. name: "Examacro",
  11080. height: math.unit(120, "parsecs")
  11081. },
  11082. {
  11083. name: "God Tho",
  11084. height: math.unit(98000000000, "parsecs")
  11085. },
  11086. ]
  11087. ))
  11088. characterMakers.push(() => makeCharacter(
  11089. { name: "Scales", species: ["dragon"], tags: ["taur"] },
  11090. {
  11091. taurFront: {
  11092. height: math.unit(6, "feet"),
  11093. weight: math.unit(200, "lb"),
  11094. name: "Taur (Front)",
  11095. image: {
  11096. source: "./media/characters/scales/taur-front.svg",
  11097. extra: 1,
  11098. bottom: 0.05
  11099. }
  11100. },
  11101. taurBack: {
  11102. height: math.unit(6, "feet"),
  11103. weight: math.unit(200, "lb"),
  11104. name: "Taur (Back)",
  11105. image: {
  11106. source: "./media/characters/scales/taur-back.svg",
  11107. extra: 1,
  11108. bottom: 0.08
  11109. }
  11110. },
  11111. anthro: {
  11112. height: math.unit(6 * 7 / 12, "feet"),
  11113. weight: math.unit(100, "lb"),
  11114. name: "Anthro",
  11115. image: {
  11116. source: "./media/characters/scales/anthro.svg",
  11117. extra: 1,
  11118. bottom: 0.06
  11119. }
  11120. },
  11121. },
  11122. [
  11123. {
  11124. name: "Normal",
  11125. height: math.unit(12, "feet"),
  11126. default: true
  11127. },
  11128. ]
  11129. ))
  11130. characterMakers.push(() => makeCharacter(
  11131. { name: "Koragos", species: ["lizard"], tags: ["anthro"] },
  11132. {
  11133. front: {
  11134. height: math.unit(6, "feet"),
  11135. weight: math.unit(150, "lb"),
  11136. name: "Front",
  11137. image: {
  11138. source: "./media/characters/koragos/front.svg",
  11139. extra: 841 / 794,
  11140. bottom: 0.035
  11141. }
  11142. },
  11143. back: {
  11144. height: math.unit(6, "feet"),
  11145. weight: math.unit(150, "lb"),
  11146. name: "Back",
  11147. image: {
  11148. source: "./media/characters/koragos/back.svg",
  11149. extra: 841 / 810,
  11150. bottom: 0.022
  11151. }
  11152. },
  11153. },
  11154. [
  11155. {
  11156. name: "Normal",
  11157. height: math.unit(6 + 11 / 12, "feet"),
  11158. default: true
  11159. },
  11160. {
  11161. name: "Macro",
  11162. height: math.unit(490, "feet")
  11163. },
  11164. {
  11165. name: "Megamacro",
  11166. height: math.unit(10, "miles")
  11167. },
  11168. {
  11169. name: "Gigamacro",
  11170. height: math.unit(50, "miles")
  11171. },
  11172. ]
  11173. ))
  11174. characterMakers.push(() => makeCharacter(
  11175. { name: "Xylrem", species: ["dragon"], tags: ["anthro"] },
  11176. {
  11177. front: {
  11178. height: math.unit(6, "feet"),
  11179. weight: math.unit(250, "lb"),
  11180. name: "Front",
  11181. image: {
  11182. source: "./media/characters/xylrem/front.svg",
  11183. extra: 3323 / 3050,
  11184. bottom: 0.065
  11185. }
  11186. },
  11187. },
  11188. [
  11189. {
  11190. name: "Micro",
  11191. height: math.unit(4, "feet")
  11192. },
  11193. {
  11194. name: "Normal",
  11195. height: math.unit(16, "feet"),
  11196. default: true
  11197. },
  11198. {
  11199. name: "Macro",
  11200. height: math.unit(2720, "feet")
  11201. },
  11202. {
  11203. name: "Megamacro",
  11204. height: math.unit(25000, "miles")
  11205. },
  11206. ]
  11207. ))
  11208. characterMakers.push(() => makeCharacter(
  11209. { name: "Ikideru", species: ["german-shepherd"], tags: ["anthro"] },
  11210. {
  11211. front: {
  11212. height: math.unit(8, "feet"),
  11213. weight: math.unit(250, "kg"),
  11214. name: "Front",
  11215. image: {
  11216. source: "./media/characters/ikideru/front.svg",
  11217. extra: 930 / 870,
  11218. bottom: 0.087
  11219. }
  11220. },
  11221. back: {
  11222. height: math.unit(8, "feet"),
  11223. weight: math.unit(250, "kg"),
  11224. name: "Back",
  11225. image: {
  11226. source: "./media/characters/ikideru/back.svg",
  11227. extra: 919 / 852,
  11228. bottom: 0.055
  11229. }
  11230. },
  11231. },
  11232. [
  11233. {
  11234. name: "Rare",
  11235. height: math.unit(8, "feet"),
  11236. default: true
  11237. },
  11238. {
  11239. name: "Playful Loom",
  11240. height: math.unit(80, "feet")
  11241. },
  11242. {
  11243. name: "City Leaner",
  11244. height: math.unit(230, "feet")
  11245. },
  11246. {
  11247. name: "Megamacro",
  11248. height: math.unit(2500, "feet")
  11249. },
  11250. {
  11251. name: "Gigamacro",
  11252. height: math.unit(26400, "feet")
  11253. },
  11254. {
  11255. name: "Tectonic Shifter",
  11256. height: math.unit(1.7, "megameters")
  11257. },
  11258. {
  11259. name: "Planet Carer",
  11260. height: math.unit(21, "megameters")
  11261. },
  11262. {
  11263. name: "God",
  11264. height: math.unit(11157.22, "parsecs")
  11265. },
  11266. ]
  11267. ))
  11268. characterMakers.push(() => makeCharacter(
  11269. { name: "Neo", species: ["dragon"], tags: ["anthro"] },
  11270. {
  11271. front: {
  11272. height: math.unit(6, "feet"),
  11273. weight: math.unit(120, "lb"),
  11274. name: "Front",
  11275. image: {
  11276. source: "./media/characters/neo/front.svg"
  11277. }
  11278. },
  11279. },
  11280. [
  11281. {
  11282. name: "Micro",
  11283. height: math.unit(2, "inches"),
  11284. default: true
  11285. },
  11286. {
  11287. name: "Human Size",
  11288. height: math.unit(5 + 8 / 12, "feet")
  11289. },
  11290. ]
  11291. ))
  11292. characterMakers.push(() => makeCharacter(
  11293. { name: "Chauncey (Chantz)", species: ["dragon"], tags: ["anthro"] },
  11294. {
  11295. front: {
  11296. height: math.unit(13 + 10 / 12, "feet"),
  11297. weight: math.unit(5320, "lb"),
  11298. name: "Front",
  11299. image: {
  11300. source: "./media/characters/chauncey-chantz/front.svg",
  11301. extra: 1587 / 1435,
  11302. bottom: 0.02
  11303. }
  11304. },
  11305. },
  11306. [
  11307. {
  11308. name: "Normal",
  11309. height: math.unit(13 + 10 / 12, "feet"),
  11310. default: true
  11311. },
  11312. {
  11313. name: "Macro",
  11314. height: math.unit(45, "feet")
  11315. },
  11316. {
  11317. name: "Megamacro",
  11318. height: math.unit(250, "miles")
  11319. },
  11320. {
  11321. name: "Planetary",
  11322. height: math.unit(10000, "miles")
  11323. },
  11324. {
  11325. name: "Galactic",
  11326. height: math.unit(40000, "parsecs")
  11327. },
  11328. {
  11329. name: "Universal",
  11330. height: math.unit(1, "yottameter")
  11331. },
  11332. ]
  11333. ))
  11334. characterMakers.push(() => makeCharacter(
  11335. { name: "Epifox", species: ["snake", "fox"], tags: ["naga"] },
  11336. {
  11337. front: {
  11338. height: math.unit(6, "feet"),
  11339. weight: math.unit(150, "lb"),
  11340. name: "Front",
  11341. image: {
  11342. source: "./media/characters/epifox/front.svg",
  11343. extra: 1,
  11344. bottom: 0.075
  11345. }
  11346. },
  11347. },
  11348. [
  11349. {
  11350. name: "Micro",
  11351. height: math.unit(6, "inches")
  11352. },
  11353. {
  11354. name: "Normal",
  11355. height: math.unit(12, "feet"),
  11356. default: true
  11357. },
  11358. {
  11359. name: "Macro",
  11360. height: math.unit(3810, "feet")
  11361. },
  11362. {
  11363. name: "Megamacro",
  11364. height: math.unit(500, "miles")
  11365. },
  11366. ]
  11367. ))
  11368. characterMakers.push(() => makeCharacter(
  11369. { name: "Colin T.", species: ["dragon"], tags: ["anthro"] },
  11370. {
  11371. front: {
  11372. height: math.unit(1.8796, "m"),
  11373. weight: math.unit(230, "lb"),
  11374. name: "Front",
  11375. image: {
  11376. source: "./media/characters/colin-t/front.svg",
  11377. extra: 1272 / 1193,
  11378. bottom: 0.07
  11379. }
  11380. },
  11381. },
  11382. [
  11383. {
  11384. name: "Micro",
  11385. height: math.unit(0.571, "meters")
  11386. },
  11387. {
  11388. name: "Normal",
  11389. height: math.unit(1.8796, "meters"),
  11390. default: true
  11391. },
  11392. {
  11393. name: "Tall",
  11394. height: math.unit(4, "meters")
  11395. },
  11396. {
  11397. name: "Macro",
  11398. height: math.unit(67.241, "meters")
  11399. },
  11400. {
  11401. name: "Megamacro",
  11402. height: math.unit(371.856, "meters")
  11403. },
  11404. {
  11405. name: "Planetary",
  11406. height: math.unit(12631.5689, "km")
  11407. },
  11408. ]
  11409. ))
  11410. characterMakers.push(() => makeCharacter(
  11411. { name: "Matvei", species: ["shark"], tags: ["anthro"] },
  11412. {
  11413. front: {
  11414. height: math.unit(1.85, "meters"),
  11415. weight: math.unit(80, "kg"),
  11416. name: "Front",
  11417. image: {
  11418. source: "./media/characters/matvei/front.svg",
  11419. extra: 614 / 594,
  11420. bottom: 0.01
  11421. }
  11422. },
  11423. },
  11424. [
  11425. {
  11426. name: "Normal",
  11427. height: math.unit(1.85, "meters"),
  11428. default: true
  11429. },
  11430. ]
  11431. ))
  11432. characterMakers.push(() => makeCharacter(
  11433. { name: "Quincy", species: ["phoenix"], tags: ["anthro"] },
  11434. {
  11435. front: {
  11436. height: math.unit(5 + 9 / 12, "feet"),
  11437. weight: math.unit(70, "lb"),
  11438. name: "Front",
  11439. image: {
  11440. source: "./media/characters/quincy/front.svg",
  11441. extra: 3041 / 2751
  11442. }
  11443. },
  11444. back: {
  11445. height: math.unit(5 + 9 / 12, "feet"),
  11446. weight: math.unit(70, "lb"),
  11447. name: "Back",
  11448. image: {
  11449. source: "./media/characters/quincy/back.svg",
  11450. extra: 3041 / 2751
  11451. }
  11452. },
  11453. flying: {
  11454. height: math.unit(5 + 4 / 12, "feet"),
  11455. weight: math.unit(70, "lb"),
  11456. name: "Flying",
  11457. image: {
  11458. source: "./media/characters/quincy/flying.svg",
  11459. extra: 1044 / 930
  11460. }
  11461. },
  11462. },
  11463. [
  11464. {
  11465. name: "Micro",
  11466. height: math.unit(3, "cm")
  11467. },
  11468. {
  11469. name: "Normal",
  11470. height: math.unit(5 + 9 / 12, "feet")
  11471. },
  11472. {
  11473. name: "Macro",
  11474. height: math.unit(200, "meters"),
  11475. default: true
  11476. },
  11477. {
  11478. name: "Megamacro",
  11479. height: math.unit(1000, "meters")
  11480. },
  11481. ]
  11482. ))
  11483. characterMakers.push(() => makeCharacter(
  11484. { name: "Vanrel", species: ["fennec-fox"], tags: ["anthro"] },
  11485. {
  11486. front: {
  11487. height: math.unit(4 + 7 / 12, "feet"),
  11488. weight: math.unit(50, "lb"),
  11489. name: "Front",
  11490. image: {
  11491. source: "./media/characters/vanrel/front.svg",
  11492. extra: 1,
  11493. bottom: 0.02
  11494. }
  11495. },
  11496. frontAlt: {
  11497. height: math.unit(4 + 7 / 12, "feet"),
  11498. weight: math.unit(50, "lb"),
  11499. name: "Front-alt",
  11500. image: {
  11501. source: "./media/characters/vanrel/front-alt.svg",
  11502. extra: 1,
  11503. bottom: 15 / 1511
  11504. }
  11505. },
  11506. elemental: {
  11507. height: math.unit(3, "feet"),
  11508. weight: math.unit(50, "lb"),
  11509. name: "Elemental",
  11510. image: {
  11511. source: "./media/characters/vanrel/elemental.svg",
  11512. extra: 192.3 / 162.8,
  11513. bottom: 1.79 / 194.17
  11514. }
  11515. },
  11516. side: {
  11517. height: math.unit(4 + 7 / 12, "feet"),
  11518. weight: math.unit(50, "lb"),
  11519. name: "Side",
  11520. image: {
  11521. source: "./media/characters/vanrel/side.svg",
  11522. extra: 1,
  11523. bottom: 0.025
  11524. }
  11525. },
  11526. tome: {
  11527. height: math.unit(1.35, "feet"),
  11528. weight: math.unit(10, "lb"),
  11529. name: "Vanrel's Tome",
  11530. rename: true,
  11531. image: {
  11532. source: "./media/characters/vanrel/tome.svg"
  11533. }
  11534. },
  11535. beans: {
  11536. height: math.unit(0.89, "feet"),
  11537. name: "Beans",
  11538. image: {
  11539. source: "./media/characters/vanrel/beans.svg"
  11540. }
  11541. },
  11542. },
  11543. [
  11544. {
  11545. name: "Normal",
  11546. height: math.unit(4 + 7 / 12, "feet"),
  11547. default: true
  11548. },
  11549. ]
  11550. ))
  11551. characterMakers.push(() => makeCharacter(
  11552. { name: "Kuiper Vanrel", species: ["elemental", "meerkat"], tags: ["anthro"] },
  11553. {
  11554. front: {
  11555. height: math.unit(7 + 5 / 12, "feet"),
  11556. weight: math.unit(150, "lb"),
  11557. name: "Front",
  11558. image: {
  11559. source: "./media/characters/kuiper-vanrel/front.svg",
  11560. extra: 1118 / 1068,
  11561. bottom: 0.09
  11562. }
  11563. },
  11564. foot: {
  11565. height: math.unit(0.55, "meters"),
  11566. name: "Foot",
  11567. image: {
  11568. source: "./media/characters/kuiper-vanrel/foot.svg",
  11569. }
  11570. },
  11571. battle: {
  11572. height: math.unit(6.824, "feet"),
  11573. weight: math.unit(150, "lb"),
  11574. name: "Battle",
  11575. image: {
  11576. source: "./media/characters/kuiper-vanrel/battle.svg",
  11577. extra: 1466 / 1327,
  11578. bottom: 29 / 1492.5
  11579. }
  11580. },
  11581. battleAlt: {
  11582. height: math.unit(6.824, "feet"),
  11583. weight: math.unit(150, "lb"),
  11584. name: "Battle (Alt)",
  11585. image: {
  11586. source: "./media/characters/kuiper-vanrel/battle-alt.svg",
  11587. extra: 2081 / 1965,
  11588. bottom: 40 / 2121
  11589. }
  11590. },
  11591. },
  11592. [
  11593. {
  11594. name: "Normal",
  11595. height: math.unit(7 + 5 / 12, "feet"),
  11596. default: true
  11597. },
  11598. ]
  11599. ))
  11600. characterMakers.push(() => makeCharacter(
  11601. { name: "Keset Vanrel", species: ["elemental", "hyena"], tags: ["anthro"] },
  11602. {
  11603. front: {
  11604. height: math.unit(8 + 5 / 12, "feet"),
  11605. weight: math.unit(150, "lb"),
  11606. name: "Front",
  11607. image: {
  11608. source: "./media/characters/keset-vanrel/front.svg",
  11609. extra: 1150 / 1084,
  11610. bottom: 0.05
  11611. }
  11612. },
  11613. hand: {
  11614. height: math.unit(0.6, "meters"),
  11615. name: "Hand",
  11616. image: {
  11617. source: "./media/characters/keset-vanrel/hand.svg"
  11618. }
  11619. },
  11620. foot: {
  11621. height: math.unit(0.94978, "meters"),
  11622. name: "Foot",
  11623. image: {
  11624. source: "./media/characters/keset-vanrel/foot.svg"
  11625. }
  11626. },
  11627. battle: {
  11628. height: math.unit(7.408, "feet"),
  11629. weight: math.unit(150, "lb"),
  11630. name: "Battle",
  11631. image: {
  11632. source: "./media/characters/keset-vanrel/battle.svg",
  11633. extra: 1890 / 1386,
  11634. bottom: 73.28 / 1970
  11635. }
  11636. },
  11637. },
  11638. [
  11639. {
  11640. name: "Normal",
  11641. height: math.unit(8 + 5 / 12, "feet"),
  11642. default: true
  11643. },
  11644. ]
  11645. ))
  11646. characterMakers.push(() => makeCharacter(
  11647. { name: "Neos", species: ["mew"], tags: ["anthro"] },
  11648. {
  11649. front: {
  11650. height: math.unit(6, "feet"),
  11651. weight: math.unit(150, "lb"),
  11652. name: "Front",
  11653. image: {
  11654. source: "./media/characters/neos/front.svg",
  11655. extra: 1696 / 992,
  11656. bottom: 0.14
  11657. }
  11658. },
  11659. },
  11660. [
  11661. {
  11662. name: "Normal",
  11663. height: math.unit(54, "cm"),
  11664. default: true
  11665. },
  11666. {
  11667. name: "Macro",
  11668. height: math.unit(100, "m")
  11669. },
  11670. {
  11671. name: "Megamacro",
  11672. height: math.unit(10, "km")
  11673. },
  11674. {
  11675. name: "Megamacro+",
  11676. height: math.unit(100, "km")
  11677. },
  11678. {
  11679. name: "Gigamacro",
  11680. height: math.unit(100, "Mm")
  11681. },
  11682. {
  11683. name: "Teramacro",
  11684. height: math.unit(100, "Gm")
  11685. },
  11686. {
  11687. name: "Examacro",
  11688. height: math.unit(100, "Em")
  11689. },
  11690. {
  11691. name: "Godly",
  11692. height: math.unit(10000, "Ym")
  11693. },
  11694. {
  11695. name: "Beyond Godly",
  11696. height: math.unit(25, "multiverses")
  11697. },
  11698. ]
  11699. ))
  11700. characterMakers.push(() => makeCharacter(
  11701. { name: "Sammy Mouse", species: ["mouse"], tags: ["anthro"] },
  11702. {
  11703. feminine: {
  11704. height: math.unit(5, "feet"),
  11705. weight: math.unit(100, "lb"),
  11706. name: "Feminine",
  11707. image: {
  11708. source: "./media/characters/sammy-mouse/feminine.svg",
  11709. extra: 2526 / 2425,
  11710. bottom: 0.123
  11711. }
  11712. },
  11713. masculine: {
  11714. height: math.unit(5, "feet"),
  11715. weight: math.unit(100, "lb"),
  11716. name: "Masculine",
  11717. image: {
  11718. source: "./media/characters/sammy-mouse/masculine.svg",
  11719. extra: 2526 / 2425,
  11720. bottom: 0.123
  11721. }
  11722. },
  11723. },
  11724. [
  11725. {
  11726. name: "Micro",
  11727. height: math.unit(5, "inches")
  11728. },
  11729. {
  11730. name: "Normal",
  11731. height: math.unit(5, "feet"),
  11732. default: true
  11733. },
  11734. {
  11735. name: "Macro",
  11736. height: math.unit(60, "feet")
  11737. },
  11738. ]
  11739. ))
  11740. characterMakers.push(() => makeCharacter(
  11741. { name: "Kole", species: ["kobold"], tags: ["anthro"] },
  11742. {
  11743. front: {
  11744. height: math.unit(4, "feet"),
  11745. weight: math.unit(50, "lb"),
  11746. name: "Front",
  11747. image: {
  11748. source: "./media/characters/kole/front.svg",
  11749. extra: 1423 / 1303,
  11750. bottom: 0.025
  11751. }
  11752. },
  11753. back: {
  11754. height: math.unit(4, "feet"),
  11755. weight: math.unit(50, "lb"),
  11756. name: "Back",
  11757. image: {
  11758. source: "./media/characters/kole/back.svg",
  11759. extra: 1426 / 1280,
  11760. bottom: 0.02
  11761. }
  11762. },
  11763. },
  11764. [
  11765. {
  11766. name: "Normal",
  11767. height: math.unit(4, "feet"),
  11768. default: true
  11769. },
  11770. ]
  11771. ))
  11772. characterMakers.push(() => makeCharacter(
  11773. { name: "Rufran", species: ["kobold"], tags: ["anthro"] },
  11774. {
  11775. front: {
  11776. height: math.unit(2 + 6 / 12, "feet"),
  11777. weight: math.unit(20, "lb"),
  11778. name: "Front",
  11779. image: {
  11780. source: "./media/characters/rufran/front.svg",
  11781. extra: 2041 / 1839,
  11782. bottom: 0.055
  11783. }
  11784. },
  11785. back: {
  11786. height: math.unit(2 + 6 / 12, "feet"),
  11787. weight: math.unit(20, "lb"),
  11788. name: "Back",
  11789. image: {
  11790. source: "./media/characters/rufran/back.svg",
  11791. extra: 2054 / 1839,
  11792. bottom: 0.01
  11793. }
  11794. },
  11795. hand: {
  11796. height: math.unit(0.2166, "meters"),
  11797. name: "Hand",
  11798. image: {
  11799. source: "./media/characters/rufran/hand.svg"
  11800. }
  11801. },
  11802. foot: {
  11803. height: math.unit(0.185, "meters"),
  11804. name: "Foot",
  11805. image: {
  11806. source: "./media/characters/rufran/foot.svg"
  11807. }
  11808. },
  11809. },
  11810. [
  11811. {
  11812. name: "Micro",
  11813. height: math.unit(1, "inch")
  11814. },
  11815. {
  11816. name: "Normal",
  11817. height: math.unit(2 + 6 / 12, "feet"),
  11818. default: true
  11819. },
  11820. {
  11821. name: "Big",
  11822. height: math.unit(60, "feet")
  11823. },
  11824. {
  11825. name: "Macro",
  11826. height: math.unit(325, "feet")
  11827. },
  11828. ]
  11829. ))
  11830. characterMakers.push(() => makeCharacter(
  11831. { name: "Chip", species: ["espurr"], tags: ["anthro"] },
  11832. {
  11833. front: {
  11834. height: math.unit(0.3, "meters"),
  11835. weight: math.unit(3.5, "kg"),
  11836. name: "Front",
  11837. image: {
  11838. source: "./media/characters/chip/front.svg",
  11839. extra: 748 / 674
  11840. }
  11841. },
  11842. },
  11843. [
  11844. {
  11845. name: "Micro",
  11846. height: math.unit(1, "inch"),
  11847. default: true
  11848. },
  11849. ]
  11850. ))
  11851. characterMakers.push(() => makeCharacter(
  11852. { name: "Torvid", species: ["gryphon"], tags: ["feral"] },
  11853. {
  11854. side: {
  11855. height: math.unit(2.3, "meters"),
  11856. weight: math.unit(3500, "lb"),
  11857. name: "Side",
  11858. image: {
  11859. source: "./media/characters/torvid/side.svg",
  11860. extra: 1972 / 722,
  11861. bottom: 0.035
  11862. }
  11863. },
  11864. },
  11865. [
  11866. {
  11867. name: "Normal",
  11868. height: math.unit(2.3, "meters"),
  11869. default: true
  11870. },
  11871. ]
  11872. ))
  11873. characterMakers.push(() => makeCharacter(
  11874. { name: "Susan", species: ["goodra"], tags: ["anthro"] },
  11875. {
  11876. front: {
  11877. height: math.unit(2, "meters"),
  11878. weight: math.unit(150.5, "kg"),
  11879. name: "Front",
  11880. image: {
  11881. source: "./media/characters/susan/front.svg",
  11882. extra: 693 / 635,
  11883. bottom: 0.05
  11884. }
  11885. },
  11886. },
  11887. [
  11888. {
  11889. name: "Megamacro",
  11890. height: math.unit(505, "miles"),
  11891. default: true
  11892. },
  11893. ]
  11894. ))
  11895. characterMakers.push(() => makeCharacter(
  11896. { name: "Raindrops", species: ["fox"], tags: ["anthro"] },
  11897. {
  11898. front: {
  11899. height: math.unit(6, "feet"),
  11900. weight: math.unit(150, "lb"),
  11901. name: "Front",
  11902. image: {
  11903. source: "./media/characters/raindrops/front.svg",
  11904. extra: 2655 / 2461,
  11905. bottom: 49 / 2705
  11906. }
  11907. },
  11908. back: {
  11909. height: math.unit(6, "feet"),
  11910. weight: math.unit(150, "lb"),
  11911. name: "Back",
  11912. image: {
  11913. source: "./media/characters/raindrops/back.svg",
  11914. extra: 2574 / 2400,
  11915. bottom: 65 / 2634
  11916. }
  11917. },
  11918. },
  11919. [
  11920. {
  11921. name: "Micro",
  11922. height: math.unit(6, "inches")
  11923. },
  11924. {
  11925. name: "Normal",
  11926. height: math.unit(6 + 2 / 12, "feet")
  11927. },
  11928. {
  11929. name: "Macro",
  11930. height: math.unit(131, "feet"),
  11931. default: true
  11932. },
  11933. {
  11934. name: "Megamacro",
  11935. height: math.unit(15, "miles")
  11936. },
  11937. {
  11938. name: "Gigamacro",
  11939. height: math.unit(4000, "miles")
  11940. },
  11941. {
  11942. name: "Teramacro",
  11943. height: math.unit(315000, "miles")
  11944. },
  11945. ]
  11946. ))
  11947. characterMakers.push(() => makeCharacter(
  11948. { name: "Tezwa", species: ["lion"], tags: ["anthro"] },
  11949. {
  11950. front: {
  11951. height: math.unit(2.794, "meters"),
  11952. weight: math.unit(325, "kg"),
  11953. name: "Front",
  11954. image: {
  11955. source: "./media/characters/tezwa/front.svg",
  11956. extra: 2083 / 1906,
  11957. bottom: 0.031
  11958. }
  11959. },
  11960. foot: {
  11961. height: math.unit(0.687, "meters"),
  11962. name: "Foot",
  11963. image: {
  11964. source: "./media/characters/tezwa/foot.svg"
  11965. }
  11966. },
  11967. },
  11968. [
  11969. {
  11970. name: "Normal",
  11971. height: math.unit(9 + 2 / 12, "feet"),
  11972. default: true
  11973. },
  11974. ]
  11975. ))
  11976. characterMakers.push(() => makeCharacter(
  11977. { name: "Typhus", species: ["typhlosion", "demon"], tags: ["anthro"] },
  11978. {
  11979. front: {
  11980. height: math.unit(58, "feet"),
  11981. weight: math.unit(89000, "lb"),
  11982. name: "Front",
  11983. image: {
  11984. source: "./media/characters/typhus/front.svg",
  11985. extra: 816 / 800,
  11986. bottom: 0.065
  11987. }
  11988. },
  11989. },
  11990. [
  11991. {
  11992. name: "Macro",
  11993. height: math.unit(58, "feet"),
  11994. default: true
  11995. },
  11996. ]
  11997. ))
  11998. characterMakers.push(() => makeCharacter(
  11999. { name: "Lyra Von Wulf", species: ["snake"], tags: ["anthro"] },
  12000. {
  12001. front: {
  12002. height: math.unit(12, "feet"),
  12003. weight: math.unit(6, "tonnes"),
  12004. name: "Front",
  12005. image: {
  12006. source: "./media/characters/lyra-von-wulf/front.svg",
  12007. extra: 1,
  12008. bottom: 0.10
  12009. }
  12010. },
  12011. frontMecha: {
  12012. height: math.unit(12, "feet"),
  12013. weight: math.unit(12, "tonnes"),
  12014. name: "Front (Mecha)",
  12015. image: {
  12016. source: "./media/characters/lyra-von-wulf/front-mecha.svg",
  12017. extra: 1,
  12018. bottom: 0.042
  12019. }
  12020. },
  12021. maw: {
  12022. height: math.unit(2.2, "feet"),
  12023. name: "Maw",
  12024. image: {
  12025. source: "./media/characters/lyra-von-wulf/maw.svg"
  12026. }
  12027. },
  12028. },
  12029. [
  12030. {
  12031. name: "Normal",
  12032. height: math.unit(12, "feet"),
  12033. default: true
  12034. },
  12035. {
  12036. name: "Classic",
  12037. height: math.unit(50, "feet")
  12038. },
  12039. {
  12040. name: "Macro",
  12041. height: math.unit(500, "feet")
  12042. },
  12043. {
  12044. name: "Megamacro",
  12045. height: math.unit(1, "mile")
  12046. },
  12047. {
  12048. name: "Gigamacro",
  12049. height: math.unit(400, "miles")
  12050. },
  12051. {
  12052. name: "Teramacro",
  12053. height: math.unit(22000, "miles")
  12054. },
  12055. {
  12056. name: "Solarmacro",
  12057. height: math.unit(8600000, "miles")
  12058. },
  12059. {
  12060. name: "Galactic",
  12061. height: math.unit(1057000, "lightyears")
  12062. },
  12063. ]
  12064. ))
  12065. characterMakers.push(() => makeCharacter(
  12066. { name: "Dixon", species: ["canine"], tags: ["anthro"] },
  12067. {
  12068. front: {
  12069. height: math.unit(6 + 10 / 12, "feet"),
  12070. weight: math.unit(150, "lb"),
  12071. name: "Front",
  12072. image: {
  12073. source: "./media/characters/dixon/front.svg",
  12074. extra: 3361 / 3209,
  12075. bottom: 0.01
  12076. }
  12077. },
  12078. },
  12079. [
  12080. {
  12081. name: "Normal",
  12082. height: math.unit(6 + 10 / 12, "feet"),
  12083. default: true
  12084. },
  12085. {
  12086. name: "Big",
  12087. height: math.unit(12, "meters")
  12088. },
  12089. {
  12090. name: "Macro",
  12091. height: math.unit(500, "meters")
  12092. },
  12093. {
  12094. name: "Megamacro",
  12095. height: math.unit(2, "km")
  12096. },
  12097. ]
  12098. ))
  12099. characterMakers.push(() => makeCharacter(
  12100. { name: "Kauko", species: ["cheetah"], tags: ["anthro"] },
  12101. {
  12102. front: {
  12103. height: math.unit(185, "cm"),
  12104. weight: math.unit(68, "kg"),
  12105. name: "Front",
  12106. image: {
  12107. source: "./media/characters/kauko/front.svg",
  12108. extra: 1455 / 1421,
  12109. bottom: 0.03
  12110. }
  12111. },
  12112. back: {
  12113. height: math.unit(185, "cm"),
  12114. weight: math.unit(68, "kg"),
  12115. name: "Back",
  12116. image: {
  12117. source: "./media/characters/kauko/back.svg",
  12118. extra: 1455 / 1421,
  12119. bottom: 0.004
  12120. }
  12121. },
  12122. },
  12123. [
  12124. {
  12125. name: "Normal",
  12126. height: math.unit(185, "cm"),
  12127. default: true
  12128. },
  12129. ]
  12130. ))
  12131. characterMakers.push(() => makeCharacter(
  12132. { name: "Varg", species: ["dragon"], tags: ["anthro"] },
  12133. {
  12134. front: {
  12135. height: math.unit(6, "feet"),
  12136. weight: math.unit(150, "kg"),
  12137. name: "Front",
  12138. image: {
  12139. source: "./media/characters/varg/front.svg",
  12140. extra: 1108 / 1018,
  12141. bottom: 0.0375
  12142. }
  12143. },
  12144. },
  12145. [
  12146. {
  12147. name: "Normal",
  12148. height: math.unit(5, "meters")
  12149. },
  12150. {
  12151. name: "Macro",
  12152. height: math.unit(200, "meters")
  12153. },
  12154. {
  12155. name: "Megamacro",
  12156. height: math.unit(20, "kilometers")
  12157. },
  12158. {
  12159. name: "True Size",
  12160. height: math.unit(211, "km"),
  12161. default: true
  12162. },
  12163. {
  12164. name: "Gigamacro",
  12165. height: math.unit(1000, "km")
  12166. },
  12167. {
  12168. name: "Gigamacro+",
  12169. height: math.unit(8000, "km")
  12170. },
  12171. {
  12172. name: "Teramacro",
  12173. height: math.unit(1000000, "km")
  12174. },
  12175. ]
  12176. ))
  12177. characterMakers.push(() => makeCharacter(
  12178. { name: "Dayza", species: ["sergal"], tags: ["anthro"] },
  12179. {
  12180. front: {
  12181. height: math.unit(7 + 7 / 12, "feet"),
  12182. weight: math.unit(267, "lb"),
  12183. name: "Front",
  12184. image: {
  12185. source: "./media/characters/dayza/front.svg",
  12186. extra: 1262 / 1200,
  12187. bottom: 0.035
  12188. }
  12189. },
  12190. side: {
  12191. height: math.unit(7 + 7 / 12, "feet"),
  12192. weight: math.unit(267, "lb"),
  12193. name: "Side",
  12194. image: {
  12195. source: "./media/characters/dayza/side.svg",
  12196. extra: 1295 / 1245,
  12197. bottom: 0.05
  12198. }
  12199. },
  12200. back: {
  12201. height: math.unit(7 + 7 / 12, "feet"),
  12202. weight: math.unit(267, "lb"),
  12203. name: "Back",
  12204. image: {
  12205. source: "./media/characters/dayza/back.svg",
  12206. extra: 1241 / 1170
  12207. }
  12208. },
  12209. },
  12210. [
  12211. {
  12212. name: "Normal",
  12213. height: math.unit(7 + 7 / 12, "feet"),
  12214. default: true
  12215. },
  12216. {
  12217. name: "Macro",
  12218. height: math.unit(155, "feet")
  12219. },
  12220. ]
  12221. ))
  12222. characterMakers.push(() => makeCharacter(
  12223. { name: "Xanthos", species: ["xenomorph"], tags: ["anthro"] },
  12224. {
  12225. front: {
  12226. height: math.unit(6 + 5 / 12, "feet"),
  12227. weight: math.unit(160, "lb"),
  12228. name: "Front",
  12229. image: {
  12230. source: "./media/characters/xanthos/front.svg",
  12231. extra: 1,
  12232. bottom: 0.04
  12233. }
  12234. },
  12235. back: {
  12236. height: math.unit(6 + 5 / 12, "feet"),
  12237. weight: math.unit(160, "lb"),
  12238. name: "Back",
  12239. image: {
  12240. source: "./media/characters/xanthos/back.svg",
  12241. extra: 1,
  12242. bottom: 0.03
  12243. }
  12244. },
  12245. hand: {
  12246. height: math.unit(0.928, "feet"),
  12247. name: "Hand",
  12248. image: {
  12249. source: "./media/characters/xanthos/hand.svg"
  12250. }
  12251. },
  12252. foot: {
  12253. height: math.unit(1.286, "feet"),
  12254. name: "Foot",
  12255. image: {
  12256. source: "./media/characters/xanthos/foot.svg"
  12257. }
  12258. },
  12259. },
  12260. [
  12261. {
  12262. name: "Normal",
  12263. height: math.unit(6 + 5 / 12, "feet"),
  12264. default: true
  12265. },
  12266. {
  12267. name: "Normal+",
  12268. height: math.unit(6, "meters")
  12269. },
  12270. {
  12271. name: "Macro",
  12272. height: math.unit(40, "feet")
  12273. },
  12274. {
  12275. name: "Macro+",
  12276. height: math.unit(200, "meters")
  12277. },
  12278. {
  12279. name: "Megamacro",
  12280. height: math.unit(20, "km")
  12281. },
  12282. {
  12283. name: "Megamacro+",
  12284. height: math.unit(100, "km")
  12285. },
  12286. ]
  12287. ))
  12288. characterMakers.push(() => makeCharacter(
  12289. { name: "Grynn", species: ["charr"], tags: ["anthro"] },
  12290. {
  12291. front: {
  12292. height: math.unit(6 + 3 / 12, "feet"),
  12293. weight: math.unit(215, "lb"),
  12294. name: "Front",
  12295. image: {
  12296. source: "./media/characters/grynn/front.svg",
  12297. extra: 4627 / 4209,
  12298. bottom: 0.047
  12299. }
  12300. },
  12301. },
  12302. [
  12303. {
  12304. name: "Micro",
  12305. height: math.unit(6, "inches")
  12306. },
  12307. {
  12308. name: "Normal",
  12309. height: math.unit(6 + 3 / 12, "feet"),
  12310. default: true
  12311. },
  12312. {
  12313. name: "Big",
  12314. height: math.unit(104, "feet")
  12315. },
  12316. {
  12317. name: "Macro",
  12318. height: math.unit(944, "feet")
  12319. },
  12320. {
  12321. name: "Macro+",
  12322. height: math.unit(9480, "feet")
  12323. },
  12324. {
  12325. name: "Megamacro",
  12326. height: math.unit(78752, "feet")
  12327. },
  12328. {
  12329. name: "Megamacro+",
  12330. height: math.unit(630128, "feet")
  12331. },
  12332. {
  12333. name: "Megamacro++",
  12334. height: math.unit(3150695, "feet")
  12335. },
  12336. ]
  12337. ))
  12338. characterMakers.push(() => makeCharacter(
  12339. { name: "Mocha Aura", species: ["siberian-husky"], tags: ["anthro"] },
  12340. {
  12341. front: {
  12342. height: math.unit(7 + 5 / 12, "feet"),
  12343. weight: math.unit(450, "lb"),
  12344. name: "Front",
  12345. image: {
  12346. source: "./media/characters/mocha-aura/front.svg",
  12347. extra: 1907 / 1817,
  12348. bottom: 0.04
  12349. }
  12350. },
  12351. back: {
  12352. height: math.unit(7 + 5 / 12, "feet"),
  12353. weight: math.unit(450, "lb"),
  12354. name: "Back",
  12355. image: {
  12356. source: "./media/characters/mocha-aura/back.svg",
  12357. extra: 1900 / 1825,
  12358. bottom: 0.045
  12359. }
  12360. },
  12361. },
  12362. [
  12363. {
  12364. name: "Nano",
  12365. height: math.unit(1, "nm")
  12366. },
  12367. {
  12368. name: "Megamicro",
  12369. height: math.unit(1, "mm")
  12370. },
  12371. {
  12372. name: "Micro",
  12373. height: math.unit(3, "inches")
  12374. },
  12375. {
  12376. name: "Normal",
  12377. height: math.unit(7 + 5 / 12, "feet"),
  12378. default: true
  12379. },
  12380. {
  12381. name: "Macro",
  12382. height: math.unit(30, "feet")
  12383. },
  12384. {
  12385. name: "Megamacro",
  12386. height: math.unit(3500, "feet")
  12387. },
  12388. {
  12389. name: "Teramacro",
  12390. height: math.unit(500000, "miles")
  12391. },
  12392. {
  12393. name: "Petamacro",
  12394. height: math.unit(50000000000000000, "parsecs")
  12395. },
  12396. ]
  12397. ))
  12398. characterMakers.push(() => makeCharacter(
  12399. { name: "Ilisha Devya", species: ["alligator", "cobra", "deity"], tags: ["anthro"] },
  12400. {
  12401. front: {
  12402. height: math.unit(6, "feet"),
  12403. weight: math.unit(150, "lb"),
  12404. name: "Front",
  12405. image: {
  12406. source: "./media/characters/ilisha-devya/front.svg",
  12407. extra: 1,
  12408. bottom: 0.175
  12409. }
  12410. },
  12411. back: {
  12412. height: math.unit(6, "feet"),
  12413. weight: math.unit(150, "lb"),
  12414. name: "Back",
  12415. image: {
  12416. source: "./media/characters/ilisha-devya/back.svg",
  12417. extra: 1,
  12418. bottom: 0.015
  12419. }
  12420. },
  12421. },
  12422. [
  12423. {
  12424. name: "Macro",
  12425. height: math.unit(500, "feet"),
  12426. default: true
  12427. },
  12428. {
  12429. name: "Megamacro",
  12430. height: math.unit(10, "miles")
  12431. },
  12432. {
  12433. name: "Gigamacro",
  12434. height: math.unit(100000, "miles")
  12435. },
  12436. {
  12437. name: "Examacro",
  12438. height: math.unit(1e9, "lightyears")
  12439. },
  12440. {
  12441. name: "Omniversal",
  12442. height: math.unit(1e33, "lightyears")
  12443. },
  12444. {
  12445. name: "Beyond Infinite",
  12446. height: math.unit(1e100, "lightyears")
  12447. },
  12448. ]
  12449. ))
  12450. characterMakers.push(() => makeCharacter(
  12451. { name: "Mira", species: ["dragon"], tags: ["anthro"] },
  12452. {
  12453. Side: {
  12454. height: math.unit(6, "feet"),
  12455. weight: math.unit(150, "lb"),
  12456. name: "Side",
  12457. image: {
  12458. source: "./media/characters/mira/side.svg",
  12459. extra: 900 / 799,
  12460. bottom: 0.02
  12461. }
  12462. },
  12463. },
  12464. [
  12465. {
  12466. name: "Human Size",
  12467. height: math.unit(6, "feet")
  12468. },
  12469. {
  12470. name: "Macro",
  12471. height: math.unit(100, "feet"),
  12472. default: true
  12473. },
  12474. {
  12475. name: "Megamacro",
  12476. height: math.unit(10, "miles")
  12477. },
  12478. {
  12479. name: "Gigamacro",
  12480. height: math.unit(25000, "miles")
  12481. },
  12482. {
  12483. name: "Teramacro",
  12484. height: math.unit(300, "AU")
  12485. },
  12486. {
  12487. name: "Full Size",
  12488. height: math.unit(4.5e10, "lightyears")
  12489. },
  12490. ]
  12491. ))
  12492. characterMakers.push(() => makeCharacter(
  12493. { name: "Holly", species: ["hyena"], tags: ["anthro"] },
  12494. {
  12495. front: {
  12496. height: math.unit(6, "feet"),
  12497. weight: math.unit(150, "lb"),
  12498. name: "Front",
  12499. image: {
  12500. source: "./media/characters/holly/front.svg",
  12501. extra: 639 / 606
  12502. }
  12503. },
  12504. back: {
  12505. height: math.unit(6, "feet"),
  12506. weight: math.unit(150, "lb"),
  12507. name: "Back",
  12508. image: {
  12509. source: "./media/characters/holly/back.svg",
  12510. extra: 623 / 598
  12511. }
  12512. },
  12513. frontWorking: {
  12514. height: math.unit(6, "feet"),
  12515. weight: math.unit(150, "lb"),
  12516. name: "Front (Working)",
  12517. image: {
  12518. source: "./media/characters/holly/front-working.svg",
  12519. extra: 607 / 577,
  12520. bottom: 0.048
  12521. }
  12522. },
  12523. },
  12524. [
  12525. {
  12526. name: "Normal",
  12527. height: math.unit(12 + 3 / 12, "feet"),
  12528. default: true
  12529. },
  12530. ]
  12531. ))
  12532. characterMakers.push(() => makeCharacter(
  12533. { name: "Porter", species: ["bernese-mountain-dog"], tags: ["anthro"] },
  12534. {
  12535. front: {
  12536. height: math.unit(6, "feet"),
  12537. weight: math.unit(150, "lb"),
  12538. name: "Front",
  12539. image: {
  12540. source: "./media/characters/porter/front.svg",
  12541. extra: 1,
  12542. bottom: 0.01
  12543. }
  12544. },
  12545. frontRobes: {
  12546. height: math.unit(6, "feet"),
  12547. weight: math.unit(150, "lb"),
  12548. name: "Front (Robes)",
  12549. image: {
  12550. source: "./media/characters/porter/front-robes.svg",
  12551. extra: 1.01,
  12552. bottom: 0.01
  12553. }
  12554. },
  12555. },
  12556. [
  12557. {
  12558. name: "Normal",
  12559. height: math.unit(11 + 9 / 12, "feet"),
  12560. default: true
  12561. },
  12562. ]
  12563. ))
  12564. characterMakers.push(() => makeCharacter(
  12565. { name: "Lucy", species: ["reshiram"], tags: ["anthro"] },
  12566. {
  12567. legendary: {
  12568. height: math.unit(6, "feet"),
  12569. weight: math.unit(150, "lb"),
  12570. name: "Legendary",
  12571. image: {
  12572. source: "./media/characters/lucy/legendary.svg",
  12573. extra: 1355 / 1100,
  12574. bottom: 0.045
  12575. }
  12576. },
  12577. },
  12578. [
  12579. {
  12580. name: "Legendary",
  12581. height: math.unit(86882 * 2, "miles"),
  12582. default: true
  12583. },
  12584. ]
  12585. ))
  12586. characterMakers.push(() => makeCharacter(
  12587. { name: "Drusilla", species: ["grizzly-bear", "fox"], tags: ["anthro"] },
  12588. {
  12589. front: {
  12590. height: math.unit(6, "feet"),
  12591. weight: math.unit(150, "lb"),
  12592. name: "Front",
  12593. image: {
  12594. source: "./media/characters/drusilla/front.svg",
  12595. extra: 678 / 635,
  12596. bottom: 0.03
  12597. }
  12598. },
  12599. back: {
  12600. height: math.unit(6, "feet"),
  12601. weight: math.unit(150, "lb"),
  12602. name: "Back",
  12603. image: {
  12604. source: "./media/characters/drusilla/back.svg",
  12605. extra: 678 / 635,
  12606. bottom: 0.005
  12607. }
  12608. },
  12609. },
  12610. [
  12611. {
  12612. name: "Macro",
  12613. height: math.unit(100, "feet")
  12614. },
  12615. {
  12616. name: "Canon Height",
  12617. height: math.unit(2000, "feet"),
  12618. default: true
  12619. },
  12620. ]
  12621. ))
  12622. characterMakers.push(() => makeCharacter(
  12623. { name: "Renard Thatch", species: ["fox"], tags: ["anthro"] },
  12624. {
  12625. front: {
  12626. height: math.unit(6, "feet"),
  12627. weight: math.unit(180, "lb"),
  12628. name: "Front",
  12629. image: {
  12630. source: "./media/characters/renard-thatch/front.svg",
  12631. extra: 2411 / 2275,
  12632. bottom: 0.01
  12633. }
  12634. },
  12635. frontPosing: {
  12636. height: math.unit(6, "feet"),
  12637. weight: math.unit(180, "lb"),
  12638. name: "Front (Posing)",
  12639. image: {
  12640. source: "./media/characters/renard-thatch/front-posing.svg",
  12641. extra: 2381 / 2261,
  12642. bottom: 0.01
  12643. }
  12644. },
  12645. back: {
  12646. height: math.unit(6, "feet"),
  12647. weight: math.unit(180, "lb"),
  12648. name: "Back",
  12649. image: {
  12650. source: "./media/characters/renard-thatch/back.svg",
  12651. extra: 2428 / 2288
  12652. }
  12653. },
  12654. },
  12655. [
  12656. {
  12657. name: "Micro",
  12658. height: math.unit(3, "inches")
  12659. },
  12660. {
  12661. name: "Default",
  12662. height: math.unit(6, "feet"),
  12663. default: true
  12664. },
  12665. {
  12666. name: "Macro",
  12667. height: math.unit(75, "feet")
  12668. },
  12669. ]
  12670. ))
  12671. characterMakers.push(() => makeCharacter(
  12672. { name: "Sekvra", species: ["water-monitor"], tags: ["anthro"] },
  12673. {
  12674. front: {
  12675. height: math.unit(1450, "feet"),
  12676. weight: math.unit(1.21e6, "tons"),
  12677. name: "Front",
  12678. image: {
  12679. source: "./media/characters/sekvra/front.svg",
  12680. extra: 1,
  12681. bottom: 0.03
  12682. }
  12683. },
  12684. frontClothed: {
  12685. height: math.unit(1450, "feet"),
  12686. weight: math.unit(1.21e6, "tons"),
  12687. name: "Front (Clothed)",
  12688. image: {
  12689. source: "./media/characters/sekvra/front-clothed.svg",
  12690. extra: 1,
  12691. bottom: 0.03
  12692. }
  12693. },
  12694. side: {
  12695. height: math.unit(1450, "feet"),
  12696. weight: math.unit(1.21e6, "tons"),
  12697. name: "Side",
  12698. image: {
  12699. source: "./media/characters/sekvra/side.svg",
  12700. extra: 1,
  12701. bottom: 0.025
  12702. }
  12703. },
  12704. back: {
  12705. height: math.unit(1450, "feet"),
  12706. weight: math.unit(1.21e6, "tons"),
  12707. name: "Back",
  12708. image: {
  12709. source: "./media/characters/sekvra/back.svg",
  12710. extra: 1,
  12711. bottom: 0.005
  12712. }
  12713. },
  12714. },
  12715. [
  12716. {
  12717. name: "Macro",
  12718. height: math.unit(1450, "feet"),
  12719. default: true
  12720. },
  12721. {
  12722. name: "Megamacro",
  12723. height: math.unit(15000, "feet")
  12724. },
  12725. ]
  12726. ))
  12727. characterMakers.push(() => makeCharacter(
  12728. { name: "Carmine", species: ["otter"], tags: ["anthro"] },
  12729. {
  12730. front: {
  12731. height: math.unit(6, "feet"),
  12732. weight: math.unit(150, "lb"),
  12733. name: "Front",
  12734. image: {
  12735. source: "./media/characters/carmine/front.svg",
  12736. extra: 1,
  12737. bottom: 0.035
  12738. }
  12739. },
  12740. frontArmor: {
  12741. height: math.unit(6, "feet"),
  12742. weight: math.unit(150, "lb"),
  12743. name: "Front (Armor)",
  12744. image: {
  12745. source: "./media/characters/carmine/front-armor.svg",
  12746. extra: 1,
  12747. bottom: 0.035
  12748. }
  12749. },
  12750. },
  12751. [
  12752. {
  12753. name: "Large",
  12754. height: math.unit(1, "mile")
  12755. },
  12756. {
  12757. name: "Huge",
  12758. height: math.unit(40, "miles"),
  12759. default: true
  12760. },
  12761. {
  12762. name: "Colossal",
  12763. height: math.unit(2500, "miles")
  12764. },
  12765. ]
  12766. ))
  12767. characterMakers.push(() => makeCharacter(
  12768. { name: "Elyssia", species: ["banchofossa"], tags: ["anthro"] },
  12769. {
  12770. front: {
  12771. height: math.unit(6, "feet"),
  12772. weight: math.unit(150, "lb"),
  12773. name: "Front",
  12774. image: {
  12775. source: "./media/characters/elyssia/front.svg",
  12776. extra: 2201 / 2035,
  12777. bottom: 0.05
  12778. }
  12779. },
  12780. frontClothed: {
  12781. height: math.unit(6, "feet"),
  12782. weight: math.unit(150, "lb"),
  12783. name: "Front (Clothed)",
  12784. image: {
  12785. source: "./media/characters/elyssia/front-clothed.svg",
  12786. extra: 2201 / 2035,
  12787. bottom: 0.05
  12788. }
  12789. },
  12790. back: {
  12791. height: math.unit(6, "feet"),
  12792. weight: math.unit(150, "lb"),
  12793. name: "Back",
  12794. image: {
  12795. source: "./media/characters/elyssia/back.svg",
  12796. extra: 2201 / 2035,
  12797. bottom: 0.013
  12798. }
  12799. },
  12800. },
  12801. [
  12802. {
  12803. name: "Smaller",
  12804. height: math.unit(150, "feet")
  12805. },
  12806. {
  12807. name: "Standard",
  12808. height: math.unit(1400, "feet"),
  12809. default: true
  12810. },
  12811. {
  12812. name: "Distracted",
  12813. height: math.unit(15000, "feet")
  12814. },
  12815. ]
  12816. ))
  12817. characterMakers.push(() => makeCharacter(
  12818. { name: "Geno Maxwell", species: ["kirin"], tags: ["anthro"] },
  12819. {
  12820. front: {
  12821. height: math.unit(7 + 4 / 12, "feet"),
  12822. weight: math.unit(500, "lb"),
  12823. name: "Front",
  12824. image: {
  12825. source: "./media/characters/geno-maxwell/front.svg",
  12826. extra: 2207 / 2040,
  12827. bottom: 0.015
  12828. }
  12829. },
  12830. },
  12831. [
  12832. {
  12833. name: "Micro",
  12834. height: math.unit(3, "inches")
  12835. },
  12836. {
  12837. name: "Normal",
  12838. height: math.unit(7 + 4 / 12, "feet"),
  12839. default: true
  12840. },
  12841. {
  12842. name: "Macro",
  12843. height: math.unit(220, "feet")
  12844. },
  12845. {
  12846. name: "Megamacro",
  12847. height: math.unit(11, "miles")
  12848. },
  12849. ]
  12850. ))
  12851. characterMakers.push(() => makeCharacter(
  12852. { name: "Regena Maxwell", species: ["kirin"], tags: ["anthro"] },
  12853. {
  12854. front: {
  12855. height: math.unit(7 + 4 / 12, "feet"),
  12856. weight: math.unit(500, "lb"),
  12857. name: "Front",
  12858. image: {
  12859. source: "./media/characters/regena-maxwell/front.svg",
  12860. extra: 3115 / 2770,
  12861. bottom: 0.02
  12862. }
  12863. },
  12864. },
  12865. [
  12866. {
  12867. name: "Normal",
  12868. height: math.unit(7 + 4 / 12, "feet"),
  12869. default: true
  12870. },
  12871. {
  12872. name: "Macro",
  12873. height: math.unit(220, "feet")
  12874. },
  12875. {
  12876. name: "Megamacro",
  12877. height: math.unit(11, "miles")
  12878. },
  12879. ]
  12880. ))
  12881. characterMakers.push(() => makeCharacter(
  12882. { name: "XGlidingDragonX", species: ["arcanine", "dragon", "phoenix"], tags: ["anthro"] },
  12883. {
  12884. front: {
  12885. height: math.unit(6, "feet"),
  12886. weight: math.unit(150, "lb"),
  12887. name: "Front",
  12888. image: {
  12889. source: "./media/characters/x-gliding-dragon-x/front.svg",
  12890. extra: 860 / 690,
  12891. bottom: 0.03
  12892. }
  12893. },
  12894. },
  12895. [
  12896. {
  12897. name: "Normal",
  12898. height: math.unit(1.7, "meters"),
  12899. default: true
  12900. },
  12901. ]
  12902. ))
  12903. characterMakers.push(() => makeCharacter(
  12904. { name: "Quilly", species: ["quilava"], tags: ["anthro"] },
  12905. {
  12906. front: {
  12907. height: math.unit(6, "feet"),
  12908. weight: math.unit(150, "lb"),
  12909. name: "Front",
  12910. image: {
  12911. source: "./media/characters/quilly/front.svg",
  12912. extra: 890 / 776
  12913. }
  12914. },
  12915. },
  12916. [
  12917. {
  12918. name: "Gigamacro",
  12919. height: math.unit(404090, "miles"),
  12920. default: true
  12921. },
  12922. ]
  12923. ))
  12924. characterMakers.push(() => makeCharacter(
  12925. { name: "Tempest", species: ["lugia"], tags: ["anthro"] },
  12926. {
  12927. front: {
  12928. height: math.unit(7 + 8 / 12, "feet"),
  12929. weight: math.unit(350, "lb"),
  12930. name: "Front",
  12931. image: {
  12932. source: "./media/characters/tempest/front.svg",
  12933. extra: 1175 / 1086,
  12934. bottom: 0.02
  12935. }
  12936. },
  12937. },
  12938. [
  12939. {
  12940. name: "Normal",
  12941. height: math.unit(7 + 8 / 12, "feet"),
  12942. default: true
  12943. },
  12944. ]
  12945. ))
  12946. characterMakers.push(() => makeCharacter(
  12947. { name: "Rodger", species: ["mouse"], tags: ["anthro"] },
  12948. {
  12949. side: {
  12950. height: math.unit(4 + 5 / 12, "feet"),
  12951. weight: math.unit(80, "lb"),
  12952. name: "Side",
  12953. image: {
  12954. source: "./media/characters/rodger/side.svg",
  12955. extra: 1235 / 1118
  12956. }
  12957. },
  12958. },
  12959. [
  12960. {
  12961. name: "Micro",
  12962. height: math.unit(1, "inch")
  12963. },
  12964. {
  12965. name: "Normal",
  12966. height: math.unit(4 + 5 / 12, "feet"),
  12967. default: true
  12968. },
  12969. {
  12970. name: "Macro",
  12971. height: math.unit(120, "feet")
  12972. },
  12973. ]
  12974. ))
  12975. characterMakers.push(() => makeCharacter(
  12976. { name: "Danyel", species: ["dragon"], tags: ["anthro"] },
  12977. {
  12978. front: {
  12979. height: math.unit(6, "feet"),
  12980. weight: math.unit(150, "lb"),
  12981. name: "Front",
  12982. image: {
  12983. source: "./media/characters/danyel/front.svg",
  12984. extra: 1185 / 1123,
  12985. bottom: 0.05
  12986. }
  12987. },
  12988. },
  12989. [
  12990. {
  12991. name: "Shrunken",
  12992. height: math.unit(0.5, "mm")
  12993. },
  12994. {
  12995. name: "Micro",
  12996. height: math.unit(1, "mm"),
  12997. default: true
  12998. },
  12999. {
  13000. name: "Upsized",
  13001. height: math.unit(5 + 5 / 12, "feet")
  13002. },
  13003. ]
  13004. ))
  13005. characterMakers.push(() => makeCharacter(
  13006. { name: "Vivian Bijoux", species: ["seviper"], tags: ["anthro"] },
  13007. {
  13008. front: {
  13009. height: math.unit(5 + 6 / 12, "feet"),
  13010. weight: math.unit(200, "lb"),
  13011. name: "Front",
  13012. image: {
  13013. source: "./media/characters/vivian-bijoux/front.svg",
  13014. extra: 1,
  13015. bottom: 0.072
  13016. }
  13017. },
  13018. },
  13019. [
  13020. {
  13021. name: "Normal",
  13022. height: math.unit(5 + 6 / 12, "feet"),
  13023. default: true
  13024. },
  13025. {
  13026. name: "Bad Dream",
  13027. height: math.unit(500, "feet")
  13028. },
  13029. {
  13030. name: "Nightmare",
  13031. height: math.unit(500, "miles")
  13032. },
  13033. ]
  13034. ))
  13035. characterMakers.push(() => makeCharacter(
  13036. { name: "Zeta", species: ["bear", "otter"], tags: ["anthro"] },
  13037. {
  13038. front: {
  13039. height: math.unit(6 + 1 / 12, "feet"),
  13040. weight: math.unit(260, "lb"),
  13041. name: "Front",
  13042. image: {
  13043. source: "./media/characters/zeta/front.svg",
  13044. extra: 1968 / 1889,
  13045. bottom: 0.06
  13046. }
  13047. },
  13048. back: {
  13049. height: math.unit(6 + 1 / 12, "feet"),
  13050. weight: math.unit(260, "lb"),
  13051. name: "Back",
  13052. image: {
  13053. source: "./media/characters/zeta/back.svg",
  13054. extra: 1944 / 1858,
  13055. bottom: 0.03
  13056. }
  13057. },
  13058. hand: {
  13059. height: math.unit(1.112, "feet"),
  13060. name: "Hand",
  13061. image: {
  13062. source: "./media/characters/zeta/hand.svg"
  13063. }
  13064. },
  13065. foot: {
  13066. height: math.unit(1.48, "feet"),
  13067. name: "Foot",
  13068. image: {
  13069. source: "./media/characters/zeta/foot.svg"
  13070. }
  13071. },
  13072. },
  13073. [
  13074. {
  13075. name: "Micro",
  13076. height: math.unit(6, "inches")
  13077. },
  13078. {
  13079. name: "Normal",
  13080. height: math.unit(6 + 1 / 12, "feet"),
  13081. default: true
  13082. },
  13083. {
  13084. name: "Macro",
  13085. height: math.unit(20, "feet")
  13086. },
  13087. ]
  13088. ))
  13089. characterMakers.push(() => makeCharacter(
  13090. { name: "Jamie Larsen", species: ["rabbit"], tags: ["anthro"] },
  13091. {
  13092. front: {
  13093. height: math.unit(6, "feet"),
  13094. weight: math.unit(150, "lb"),
  13095. name: "Front",
  13096. image: {
  13097. source: "./media/characters/jamie-larsen/front.svg",
  13098. extra: 962 / 933,
  13099. bottom: 0.02
  13100. }
  13101. },
  13102. back: {
  13103. height: math.unit(6, "feet"),
  13104. weight: math.unit(150, "lb"),
  13105. name: "Back",
  13106. image: {
  13107. source: "./media/characters/jamie-larsen/back.svg",
  13108. extra: 997 / 946
  13109. }
  13110. },
  13111. },
  13112. [
  13113. {
  13114. name: "Macro",
  13115. height: math.unit(28 + 7 / 12, "feet"),
  13116. default: true
  13117. },
  13118. {
  13119. name: "Macro+",
  13120. height: math.unit(180, "feet")
  13121. },
  13122. {
  13123. name: "Megamacro",
  13124. height: math.unit(10, "miles")
  13125. },
  13126. {
  13127. name: "Gigamacro",
  13128. height: math.unit(200000, "miles")
  13129. },
  13130. ]
  13131. ))
  13132. characterMakers.push(() => makeCharacter(
  13133. { name: "Vance", species: ["flying-fox"], tags: ["anthro"] },
  13134. {
  13135. front: {
  13136. height: math.unit(6, "feet"),
  13137. weight: math.unit(120, "lb"),
  13138. name: "Front",
  13139. image: {
  13140. source: "./media/characters/vance/front.svg",
  13141. extra: 1980 / 1890,
  13142. bottom: 0.09
  13143. }
  13144. },
  13145. back: {
  13146. height: math.unit(6, "feet"),
  13147. weight: math.unit(120, "lb"),
  13148. name: "Back",
  13149. image: {
  13150. source: "./media/characters/vance/back.svg",
  13151. extra: 2081 / 1994,
  13152. bottom: 0.014
  13153. }
  13154. },
  13155. hand: {
  13156. height: math.unit(0.88, "feet"),
  13157. name: "Hand",
  13158. image: {
  13159. source: "./media/characters/vance/hand.svg"
  13160. }
  13161. },
  13162. foot: {
  13163. height: math.unit(0.64, "feet"),
  13164. name: "Foot",
  13165. image: {
  13166. source: "./media/characters/vance/foot.svg"
  13167. }
  13168. },
  13169. },
  13170. [
  13171. {
  13172. name: "Small",
  13173. height: math.unit(90, "feet"),
  13174. default: true
  13175. },
  13176. {
  13177. name: "Macro",
  13178. height: math.unit(100, "meters")
  13179. },
  13180. {
  13181. name: "Megamacro",
  13182. height: math.unit(15, "miles")
  13183. },
  13184. ]
  13185. ))
  13186. characterMakers.push(() => makeCharacter(
  13187. { name: "Xochitl", species: ["jaguar"], tags: ["anthro"] },
  13188. {
  13189. front: {
  13190. height: math.unit(6, "feet"),
  13191. weight: math.unit(180, "lb"),
  13192. name: "Front",
  13193. image: {
  13194. source: "./media/characters/xochitl/front.svg",
  13195. extra: 2297 / 2261,
  13196. bottom: 0.065
  13197. }
  13198. },
  13199. back: {
  13200. height: math.unit(6, "feet"),
  13201. weight: math.unit(180, "lb"),
  13202. name: "Back",
  13203. image: {
  13204. source: "./media/characters/xochitl/back.svg",
  13205. extra: 2386 / 2354,
  13206. bottom: 0.01
  13207. }
  13208. },
  13209. foot: {
  13210. height: math.unit(6 / 5 * 1.15, "feet"),
  13211. weight: math.unit(150, "lb"),
  13212. name: "Foot",
  13213. image: {
  13214. source: "./media/characters/xochitl/foot.svg"
  13215. }
  13216. },
  13217. },
  13218. [
  13219. {
  13220. name: "Macro",
  13221. height: math.unit(80, "feet")
  13222. },
  13223. {
  13224. name: "Macro+",
  13225. height: math.unit(400, "feet"),
  13226. default: true
  13227. },
  13228. {
  13229. name: "Gigamacro",
  13230. height: math.unit(80000, "miles")
  13231. },
  13232. {
  13233. name: "Gigamacro+",
  13234. height: math.unit(400000, "miles")
  13235. },
  13236. {
  13237. name: "Teramacro",
  13238. height: math.unit(300, "AU")
  13239. },
  13240. ]
  13241. ))
  13242. characterMakers.push(() => makeCharacter(
  13243. { name: "Vincent", species: ["egyptian-vulture"], tags: ["anthro"] },
  13244. {
  13245. front: {
  13246. height: math.unit(6, "feet"),
  13247. weight: math.unit(150, "lb"),
  13248. name: "Front",
  13249. image: {
  13250. source: "./media/characters/vincent/front.svg",
  13251. extra: 1130 / 1080,
  13252. bottom: 0.055
  13253. }
  13254. },
  13255. beak: {
  13256. height: math.unit(6 * 0.1, "feet"),
  13257. name: "Beak",
  13258. image: {
  13259. source: "./media/characters/vincent/beak.svg"
  13260. }
  13261. },
  13262. hand: {
  13263. height: math.unit(6 * 0.85, "feet"),
  13264. weight: math.unit(150, "lb"),
  13265. name: "Hand",
  13266. image: {
  13267. source: "./media/characters/vincent/hand.svg"
  13268. }
  13269. },
  13270. foot: {
  13271. height: math.unit(6 * 0.19, "feet"),
  13272. weight: math.unit(150, "lb"),
  13273. name: "Foot",
  13274. image: {
  13275. source: "./media/characters/vincent/foot.svg"
  13276. }
  13277. },
  13278. },
  13279. [
  13280. {
  13281. name: "Base",
  13282. height: math.unit(6 + 5 / 12, "feet"),
  13283. default: true
  13284. },
  13285. {
  13286. name: "Macro",
  13287. height: math.unit(300, "feet")
  13288. },
  13289. {
  13290. name: "Megamacro",
  13291. height: math.unit(2, "miles")
  13292. },
  13293. {
  13294. name: "Gigamacro",
  13295. height: math.unit(1000, "miles")
  13296. },
  13297. ]
  13298. ))
  13299. characterMakers.push(() => makeCharacter(
  13300. { name: "Jay", species: ["fox", "horse"], tags: ["anthro"] },
  13301. {
  13302. front: {
  13303. height: math.unit(6 + 2 / 12, "feet"),
  13304. weight: math.unit(265, "lb"),
  13305. name: "Front",
  13306. image: {
  13307. source: "./media/characters/jay/front.svg",
  13308. extra: 1510 / 1430,
  13309. bottom: 0.042
  13310. }
  13311. },
  13312. back: {
  13313. height: math.unit(6 + 2 / 12, "feet"),
  13314. weight: math.unit(265, "lb"),
  13315. name: "Back",
  13316. image: {
  13317. source: "./media/characters/jay/back.svg",
  13318. extra: 1510 / 1430,
  13319. bottom: 0.025
  13320. }
  13321. },
  13322. clothed: {
  13323. height: math.unit(6 + 2 / 12, "feet"),
  13324. weight: math.unit(265, "lb"),
  13325. name: "Front (Clothed)",
  13326. image: {
  13327. source: "./media/characters/jay/clothed.svg",
  13328. extra: 744 / 699,
  13329. bottom: 0.043
  13330. }
  13331. },
  13332. head: {
  13333. height: math.unit(1.772, "feet"),
  13334. name: "Head",
  13335. image: {
  13336. source: "./media/characters/jay/head.svg"
  13337. }
  13338. },
  13339. sizeRay: {
  13340. height: math.unit(1.331, "feet"),
  13341. name: "Size Ray",
  13342. image: {
  13343. source: "./media/characters/jay/size-ray.svg"
  13344. }
  13345. },
  13346. },
  13347. [
  13348. {
  13349. name: "Micro",
  13350. height: math.unit(1, "inch")
  13351. },
  13352. {
  13353. name: "Normal",
  13354. height: math.unit(6 + 2 / 12, "feet"),
  13355. default: true
  13356. },
  13357. {
  13358. name: "Macro",
  13359. height: math.unit(1, "mile")
  13360. },
  13361. {
  13362. name: "Megamacro",
  13363. height: math.unit(100, "miles")
  13364. },
  13365. ]
  13366. ))
  13367. characterMakers.push(() => makeCharacter(
  13368. { name: "Coatl", species: ["dragon"], tags: ["anthro"] },
  13369. {
  13370. front: {
  13371. height: math.unit(2, "meters"),
  13372. weight: math.unit(500, "kg"),
  13373. name: "Front",
  13374. image: {
  13375. source: "./media/characters/coatl/front.svg",
  13376. extra: 3948 / 3500,
  13377. bottom: 0.082
  13378. }
  13379. },
  13380. },
  13381. [
  13382. {
  13383. name: "Normal",
  13384. height: math.unit(4, "meters")
  13385. },
  13386. {
  13387. name: "Macro",
  13388. height: math.unit(100, "meters"),
  13389. default: true
  13390. },
  13391. {
  13392. name: "Macro+",
  13393. height: math.unit(300, "meters")
  13394. },
  13395. {
  13396. name: "Megamacro",
  13397. height: math.unit(3, "gigameters")
  13398. },
  13399. {
  13400. name: "Megamacro+",
  13401. height: math.unit(300, "terameters")
  13402. },
  13403. {
  13404. name: "Megamacro++",
  13405. height: math.unit(3, "lightyears")
  13406. },
  13407. ]
  13408. ))
  13409. characterMakers.push(() => makeCharacter(
  13410. { name: "Shiroryu", species: ["dragon", "deity"], tags: ["anthro"] },
  13411. {
  13412. front: {
  13413. height: math.unit(6, "feet"),
  13414. weight: math.unit(50, "kg"),
  13415. name: "front",
  13416. image: {
  13417. source: "./media/characters/shiroryu/front.svg",
  13418. extra: 1990 / 1935
  13419. }
  13420. },
  13421. },
  13422. [
  13423. {
  13424. name: "Mortal Mingling",
  13425. height: math.unit(3, "meters")
  13426. },
  13427. {
  13428. name: "Kaiju-ish",
  13429. height: math.unit(250, "meters")
  13430. },
  13431. {
  13432. name: "Somewhat Godly",
  13433. height: math.unit(400, "km"),
  13434. default: true
  13435. },
  13436. {
  13437. name: "Planetary",
  13438. height: math.unit(300, "megameters")
  13439. },
  13440. {
  13441. name: "Galaxy-dwarfing",
  13442. height: math.unit(450, "kiloparsecs")
  13443. },
  13444. {
  13445. name: "Universe Eater",
  13446. height: math.unit(150, "gigaparsecs")
  13447. },
  13448. {
  13449. name: "Almost Immeasurable",
  13450. height: math.unit(1.3e266, "yottaparsecs")
  13451. },
  13452. ]
  13453. ))
  13454. characterMakers.push(() => makeCharacter(
  13455. { name: "Umeko", species: ["eastern-dragon"], tags: ["anthro"] },
  13456. {
  13457. front: {
  13458. height: math.unit(6, "feet"),
  13459. weight: math.unit(150, "lb"),
  13460. name: "Front",
  13461. image: {
  13462. source: "./media/characters/umeko/front.svg",
  13463. extra: 1,
  13464. bottom: 0.019
  13465. }
  13466. },
  13467. frontArmored: {
  13468. height: math.unit(6, "feet"),
  13469. weight: math.unit(150, "lb"),
  13470. name: "Front (Armored)",
  13471. image: {
  13472. source: "./media/characters/umeko/front-armored.svg",
  13473. extra: 1,
  13474. bottom: 0.021
  13475. }
  13476. },
  13477. },
  13478. [
  13479. {
  13480. name: "Macro",
  13481. height: math.unit(220, "feet"),
  13482. default: true
  13483. },
  13484. {
  13485. name: "Guardian Dragon",
  13486. height: math.unit(50, "miles")
  13487. },
  13488. {
  13489. name: "Cosmic",
  13490. height: math.unit(800000, "miles")
  13491. },
  13492. ]
  13493. ))
  13494. characterMakers.push(() => makeCharacter(
  13495. { name: "Cassidy", species: ["leopard-seal"], tags: ["anthro"] },
  13496. {
  13497. front: {
  13498. height: math.unit(6, "feet"),
  13499. weight: math.unit(150, "lb"),
  13500. name: "Front",
  13501. image: {
  13502. source: "./media/characters/cassidy/front.svg",
  13503. extra: 1,
  13504. bottom: 0.043
  13505. }
  13506. },
  13507. },
  13508. [
  13509. {
  13510. name: "Canon Height",
  13511. height: math.unit(120, "feet"),
  13512. default: true
  13513. },
  13514. {
  13515. name: "Macro+",
  13516. height: math.unit(400, "feet")
  13517. },
  13518. {
  13519. name: "Macro++",
  13520. height: math.unit(4000, "feet")
  13521. },
  13522. {
  13523. name: "Megamacro",
  13524. height: math.unit(3, "miles")
  13525. },
  13526. ]
  13527. ))
  13528. characterMakers.push(() => makeCharacter(
  13529. { name: "Isaac", species: ["moose"], tags: ["anthro"] },
  13530. {
  13531. front: {
  13532. height: math.unit(6, "feet"),
  13533. weight: math.unit(150, "lb"),
  13534. name: "Front",
  13535. image: {
  13536. source: "./media/characters/isaac/front.svg",
  13537. extra: 896 / 815,
  13538. bottom: 0.11
  13539. }
  13540. },
  13541. },
  13542. [
  13543. {
  13544. name: "Human Size",
  13545. height: math.unit(8, "feet"),
  13546. default: true
  13547. },
  13548. {
  13549. name: "Macro",
  13550. height: math.unit(400, "feet")
  13551. },
  13552. {
  13553. name: "Megamacro",
  13554. height: math.unit(50, "miles")
  13555. },
  13556. {
  13557. name: "Canon Height",
  13558. height: math.unit(200, "AU")
  13559. },
  13560. ]
  13561. ))
  13562. characterMakers.push(() => makeCharacter(
  13563. { name: "Sleekit", species: ["rat"], tags: ["anthro"] },
  13564. {
  13565. front: {
  13566. height: math.unit(6, "feet"),
  13567. weight: math.unit(72, "kg"),
  13568. name: "Front",
  13569. image: {
  13570. source: "./media/characters/sleekit/front.svg",
  13571. extra: 4693 / 4487,
  13572. bottom: 0.012
  13573. }
  13574. },
  13575. },
  13576. [
  13577. {
  13578. name: "Minimum Height",
  13579. height: math.unit(10, "meters")
  13580. },
  13581. {
  13582. name: "Smaller",
  13583. height: math.unit(25, "meters")
  13584. },
  13585. {
  13586. name: "Larger",
  13587. height: math.unit(38, "meters"),
  13588. default: true
  13589. },
  13590. {
  13591. name: "Maximum height",
  13592. height: math.unit(100, "meters")
  13593. },
  13594. ]
  13595. ))
  13596. characterMakers.push(() => makeCharacter(
  13597. { name: "Nillia", species: ["caracal"], tags: ["anthro"] },
  13598. {
  13599. front: {
  13600. height: math.unit(6, "feet"),
  13601. weight: math.unit(150, "lb"),
  13602. name: "Front",
  13603. image: {
  13604. source: "./media/characters/nillia/front.svg",
  13605. extra: 2195 / 2037,
  13606. bottom: 0.005
  13607. }
  13608. },
  13609. back: {
  13610. height: math.unit(6, "feet"),
  13611. weight: math.unit(150, "lb"),
  13612. name: "Back",
  13613. image: {
  13614. source: "./media/characters/nillia/back.svg",
  13615. extra: 2195 / 2037,
  13616. bottom: 0.005
  13617. }
  13618. },
  13619. },
  13620. [
  13621. {
  13622. name: "Canon Height",
  13623. height: math.unit(489, "feet"),
  13624. default: true
  13625. }
  13626. ]
  13627. ))
  13628. characterMakers.push(() => makeCharacter(
  13629. { name: "Mesmyriza", species: ["shark", "dragon", "robot"], tags: ["anthro"] },
  13630. {
  13631. front: {
  13632. height: math.unit(6, "feet"),
  13633. weight: math.unit(150, "lb"),
  13634. name: "Front",
  13635. image: {
  13636. source: "./media/characters/mesmyriza/front.svg",
  13637. extra: 2067 / 1784,
  13638. bottom: 0.035
  13639. }
  13640. },
  13641. foot: {
  13642. height: math.unit(6 / (250 / 35), "feet"),
  13643. name: "Foot",
  13644. image: {
  13645. source: "./media/characters/mesmyriza/foot.svg"
  13646. }
  13647. },
  13648. },
  13649. [
  13650. {
  13651. name: "Macro",
  13652. height: math.unit(457, "meters"),
  13653. default: true
  13654. },
  13655. {
  13656. name: "Megamacro",
  13657. height: math.unit(8, "megameters")
  13658. },
  13659. ]
  13660. ))
  13661. characterMakers.push(() => makeCharacter(
  13662. { name: "Saudade", species: ["goat"], tags: ["anthro"] },
  13663. {
  13664. front: {
  13665. height: math.unit(6, "feet"),
  13666. weight: math.unit(250, "lb"),
  13667. name: "Front",
  13668. image: {
  13669. source: "./media/characters/saudade/front.svg",
  13670. extra: 1172 / 1139,
  13671. bottom: 0.035
  13672. }
  13673. },
  13674. },
  13675. [
  13676. {
  13677. name: "Micro",
  13678. height: math.unit(3, "inches")
  13679. },
  13680. {
  13681. name: "Normal",
  13682. height: math.unit(6, "feet"),
  13683. default: true
  13684. },
  13685. {
  13686. name: "Macro",
  13687. height: math.unit(50, "feet")
  13688. },
  13689. {
  13690. name: "Megamacro",
  13691. height: math.unit(2800, "feet")
  13692. },
  13693. ]
  13694. ))
  13695. characterMakers.push(() => makeCharacter(
  13696. { name: "Keireer", species: ["keynain"], tags: ["anthro"] },
  13697. {
  13698. front: {
  13699. height: math.unit(5 + 4 / 12, "feet"),
  13700. weight: math.unit(100, "lb"),
  13701. name: "Front",
  13702. image: {
  13703. source: "./media/characters/keireer/front.svg",
  13704. extra: 716 / 666,
  13705. bottom: 0.05
  13706. }
  13707. },
  13708. },
  13709. [
  13710. {
  13711. name: "Normal",
  13712. height: math.unit(5 + 4 / 12, "feet"),
  13713. default: true
  13714. },
  13715. ]
  13716. ))
  13717. characterMakers.push(() => makeCharacter(
  13718. { name: "Mirja", species: ["dragon"], tags: ["anthro"] },
  13719. {
  13720. front: {
  13721. height: math.unit(6, "feet"),
  13722. weight: math.unit(90, "kg"),
  13723. name: "Front",
  13724. image: {
  13725. source: "./media/characters/mirja/front.svg",
  13726. extra: 1789 / 1683,
  13727. bottom: 0.05
  13728. }
  13729. },
  13730. frontDressed: {
  13731. height: math.unit(6, "feet"),
  13732. weight: math.unit(90, "lb"),
  13733. name: "Front (Dressed)",
  13734. image: {
  13735. source: "./media/characters/mirja/front-dressed.svg",
  13736. extra: 1789 / 1683,
  13737. bottom: 0.05
  13738. }
  13739. },
  13740. back: {
  13741. height: math.unit(6, "feet"),
  13742. weight: math.unit(90, "lb"),
  13743. name: "Back",
  13744. image: {
  13745. source: "./media/characters/mirja/back.svg",
  13746. extra: 953 / 917,
  13747. bottom: 0.017
  13748. }
  13749. },
  13750. },
  13751. [
  13752. {
  13753. name: "\"Incognito\"",
  13754. height: math.unit(3, "meters")
  13755. },
  13756. {
  13757. name: "Strolling Size",
  13758. height: math.unit(15, "km")
  13759. },
  13760. {
  13761. name: "Larger Strolling Size",
  13762. height: math.unit(400, "km")
  13763. },
  13764. {
  13765. name: "Preferred Size",
  13766. height: math.unit(5000, "km")
  13767. },
  13768. {
  13769. name: "True Size",
  13770. height: math.unit(30657809462086840000000000000000, "parsecs"),
  13771. default: true
  13772. },
  13773. ]
  13774. ))
  13775. characterMakers.push(() => makeCharacter(
  13776. { name: "Nightraver", species: ["dragon"], tags: ["anthro"] },
  13777. {
  13778. front: {
  13779. height: math.unit(15, "feet"),
  13780. weight: math.unit(880, "kg"),
  13781. name: "Front",
  13782. image: {
  13783. source: "./media/characters/nightraver/front.svg",
  13784. extra: 2444 / 2160,
  13785. bottom: 0.027
  13786. }
  13787. },
  13788. back: {
  13789. height: math.unit(15, "feet"),
  13790. weight: math.unit(880, "kg"),
  13791. name: "Back",
  13792. image: {
  13793. source: "./media/characters/nightraver/back.svg",
  13794. extra: 2309 / 2180,
  13795. bottom: 0.005
  13796. }
  13797. },
  13798. sole: {
  13799. height: math.unit(2.878, "feet"),
  13800. name: "Sole",
  13801. image: {
  13802. source: "./media/characters/nightraver/sole.svg"
  13803. }
  13804. },
  13805. foot: {
  13806. height: math.unit(2.285, "feet"),
  13807. name: "Foot",
  13808. image: {
  13809. source: "./media/characters/nightraver/foot.svg"
  13810. }
  13811. },
  13812. maw: {
  13813. height: math.unit(2.67, "feet"),
  13814. name: "Maw",
  13815. image: {
  13816. source: "./media/characters/nightraver/maw.svg"
  13817. }
  13818. },
  13819. },
  13820. [
  13821. {
  13822. name: "Micro",
  13823. height: math.unit(1, "cm")
  13824. },
  13825. {
  13826. name: "Normal",
  13827. height: math.unit(15, "feet"),
  13828. default: true
  13829. },
  13830. {
  13831. name: "Macro",
  13832. height: math.unit(300, "feet")
  13833. },
  13834. {
  13835. name: "Megamacro",
  13836. height: math.unit(300, "miles")
  13837. },
  13838. {
  13839. name: "Gigamacro",
  13840. height: math.unit(10000, "miles")
  13841. },
  13842. ]
  13843. ))
  13844. characterMakers.push(() => makeCharacter(
  13845. { name: "Arc", species: ["raptor"], tags: ["anthro"] },
  13846. {
  13847. side: {
  13848. height: math.unit(2, "inches"),
  13849. weight: math.unit(5, "grams"),
  13850. name: "Side",
  13851. image: {
  13852. source: "./media/characters/arc/side.svg"
  13853. }
  13854. },
  13855. },
  13856. [
  13857. {
  13858. name: "Micro",
  13859. height: math.unit(2, "inches"),
  13860. default: true
  13861. },
  13862. ]
  13863. ))
  13864. characterMakers.push(() => makeCharacter(
  13865. { name: "Nebula Shahar", species: ["lucario"], tags: ["anthro"] },
  13866. {
  13867. front: {
  13868. height: math.unit(1.1938, "meters"),
  13869. weight: math.unit(54, "kg"),
  13870. name: "Front",
  13871. image: {
  13872. source: "./media/characters/nebula-shahar/front.svg",
  13873. extra: 1642 / 1436,
  13874. bottom: 0.06
  13875. }
  13876. },
  13877. },
  13878. [
  13879. {
  13880. name: "Megamicro",
  13881. height: math.unit(0.3, "mm")
  13882. },
  13883. {
  13884. name: "Micro",
  13885. height: math.unit(3, "cm")
  13886. },
  13887. {
  13888. name: "Normal",
  13889. height: math.unit(138, "cm"),
  13890. default: true
  13891. },
  13892. {
  13893. name: "Macro",
  13894. height: math.unit(30, "m")
  13895. },
  13896. ]
  13897. ))
  13898. characterMakers.push(() => makeCharacter(
  13899. { name: "Shayla", species: ["otter"], tags: ["anthro"] },
  13900. {
  13901. front: {
  13902. height: math.unit(5.24, "feet"),
  13903. weight: math.unit(150, "lb"),
  13904. name: "Front",
  13905. image: {
  13906. source: "./media/characters/shayla/front.svg",
  13907. extra: 1512 / 1414,
  13908. bottom: 0.01
  13909. }
  13910. },
  13911. back: {
  13912. height: math.unit(5.24, "feet"),
  13913. weight: math.unit(150, "lb"),
  13914. name: "Back",
  13915. image: {
  13916. source: "./media/characters/shayla/back.svg",
  13917. extra: 1512 / 1414
  13918. }
  13919. },
  13920. hand: {
  13921. height: math.unit(0.7781496062992126, "feet"),
  13922. name: "Hand",
  13923. image: {
  13924. source: "./media/characters/shayla/hand.svg"
  13925. }
  13926. },
  13927. foot: {
  13928. height: math.unit(1.4206036745406823, "feet"),
  13929. name: "Foot",
  13930. image: {
  13931. source: "./media/characters/shayla/foot.svg"
  13932. }
  13933. },
  13934. },
  13935. [
  13936. {
  13937. name: "Micro",
  13938. height: math.unit(0.32, "feet")
  13939. },
  13940. {
  13941. name: "Normal",
  13942. height: math.unit(5.24, "feet"),
  13943. default: true
  13944. },
  13945. {
  13946. name: "Macro",
  13947. height: math.unit(492.12, "feet")
  13948. },
  13949. {
  13950. name: "Megamacro",
  13951. height: math.unit(186.41, "miles")
  13952. },
  13953. ]
  13954. ))
  13955. characterMakers.push(() => makeCharacter(
  13956. { name: "Pia Jr.", species: ["ziralkia"], tags: ["anthro"] },
  13957. {
  13958. front: {
  13959. height: math.unit(2.2, "m"),
  13960. weight: math.unit(120, "kg"),
  13961. name: "Front",
  13962. image: {
  13963. source: "./media/characters/pia-jr/front.svg",
  13964. extra: 1000 / 970,
  13965. bottom: 0.035
  13966. }
  13967. },
  13968. hand: {
  13969. height: math.unit(0.759 * 7.21 / 6, "feet"),
  13970. name: "Hand",
  13971. image: {
  13972. source: "./media/characters/pia-jr/hand.svg"
  13973. }
  13974. },
  13975. paw: {
  13976. height: math.unit(1.185 * 7.21 / 6, "feet"),
  13977. name: "Paw",
  13978. image: {
  13979. source: "./media/characters/pia-jr/paw.svg"
  13980. }
  13981. },
  13982. },
  13983. [
  13984. {
  13985. name: "Micro",
  13986. height: math.unit(1.2, "cm")
  13987. },
  13988. {
  13989. name: "Normal",
  13990. height: math.unit(2.2, "m"),
  13991. default: true
  13992. },
  13993. {
  13994. name: "Macro",
  13995. height: math.unit(180, "m")
  13996. },
  13997. {
  13998. name: "Megamacro",
  13999. height: math.unit(420, "km")
  14000. },
  14001. ]
  14002. ))
  14003. characterMakers.push(() => makeCharacter(
  14004. { name: "Pia Sr.", species: ["ziralkia"], tags: ["anthro"] },
  14005. {
  14006. front: {
  14007. height: math.unit(2, "m"),
  14008. weight: math.unit(115, "kg"),
  14009. name: "Front",
  14010. image: {
  14011. source: "./media/characters/pia-sr/front.svg",
  14012. extra: 760 / 730,
  14013. bottom: 0.015
  14014. }
  14015. },
  14016. back: {
  14017. height: math.unit(2, "m"),
  14018. weight: math.unit(115, "kg"),
  14019. name: "Back",
  14020. image: {
  14021. source: "./media/characters/pia-sr/back.svg",
  14022. extra: 760 / 730,
  14023. bottom: 0.01
  14024. }
  14025. },
  14026. hand: {
  14027. height: math.unit(0.89 * 6.56 / 6, "feet"),
  14028. name: "Hand",
  14029. image: {
  14030. source: "./media/characters/pia-sr/hand.svg"
  14031. }
  14032. },
  14033. foot: {
  14034. height: math.unit(1.83, "feet"),
  14035. name: "Foot",
  14036. image: {
  14037. source: "./media/characters/pia-sr/foot.svg"
  14038. }
  14039. },
  14040. },
  14041. [
  14042. {
  14043. name: "Micro",
  14044. height: math.unit(88, "mm")
  14045. },
  14046. {
  14047. name: "Normal",
  14048. height: math.unit(2, "m"),
  14049. default: true
  14050. },
  14051. {
  14052. name: "Macro",
  14053. height: math.unit(200, "m")
  14054. },
  14055. {
  14056. name: "Megamacro",
  14057. height: math.unit(420, "km")
  14058. },
  14059. ]
  14060. ))
  14061. characterMakers.push(() => makeCharacter(
  14062. { name: "KIBIBYTE", species: ["bat", "demon"], tags: ["anthro"] },
  14063. {
  14064. front: {
  14065. height: math.unit(8 + 2 / 12, "feet"),
  14066. weight: math.unit(300, "lb"),
  14067. name: "Front",
  14068. image: {
  14069. source: "./media/characters/kibibyte/front.svg",
  14070. extra: 2221 / 2098,
  14071. bottom: 0.04
  14072. }
  14073. },
  14074. },
  14075. [
  14076. {
  14077. name: "Normal",
  14078. height: math.unit(8 + 2 / 12, "feet"),
  14079. default: true
  14080. },
  14081. {
  14082. name: "Socialable Macro",
  14083. height: math.unit(50, "feet")
  14084. },
  14085. {
  14086. name: "Macro",
  14087. height: math.unit(300, "feet")
  14088. },
  14089. {
  14090. name: "Megamacro",
  14091. height: math.unit(500, "miles")
  14092. },
  14093. ]
  14094. ))
  14095. characterMakers.push(() => makeCharacter(
  14096. { name: "Felix", species: ["siamese-cat"], tags: ["anthro"] },
  14097. {
  14098. front: {
  14099. height: math.unit(6, "feet"),
  14100. weight: math.unit(150, "lb"),
  14101. name: "Front",
  14102. image: {
  14103. source: "./media/characters/felix/front.svg",
  14104. extra: 762 / 722,
  14105. bottom: 0.02
  14106. }
  14107. },
  14108. frontClothed: {
  14109. height: math.unit(6, "feet"),
  14110. weight: math.unit(150, "lb"),
  14111. name: "Front (Clothed)",
  14112. image: {
  14113. source: "./media/characters/felix/front-clothed.svg",
  14114. extra: 762 / 722,
  14115. bottom: 0.02
  14116. }
  14117. },
  14118. },
  14119. [
  14120. {
  14121. name: "Normal",
  14122. height: math.unit(6 + 8 / 12, "feet"),
  14123. default: true
  14124. },
  14125. {
  14126. name: "Macro",
  14127. height: math.unit(2600, "feet")
  14128. },
  14129. {
  14130. name: "Megamacro",
  14131. height: math.unit(450, "miles")
  14132. },
  14133. ]
  14134. ))
  14135. characterMakers.push(() => makeCharacter(
  14136. { name: "Tobo", species: ["mouse"], tags: ["anthro"] },
  14137. {
  14138. front: {
  14139. height: math.unit(6 + 1 / 12, "feet"),
  14140. weight: math.unit(250, "lb"),
  14141. name: "Front",
  14142. image: {
  14143. source: "./media/characters/tobo/front.svg",
  14144. extra: 608 / 586,
  14145. bottom: 0.023
  14146. }
  14147. },
  14148. back: {
  14149. height: math.unit(6 + 1 / 12, "feet"),
  14150. weight: math.unit(250, "lb"),
  14151. name: "Back",
  14152. image: {
  14153. source: "./media/characters/tobo/back.svg",
  14154. extra: 608 / 586
  14155. }
  14156. },
  14157. },
  14158. [
  14159. {
  14160. name: "Nano",
  14161. height: math.unit(2, "nm")
  14162. },
  14163. {
  14164. name: "Megamicro",
  14165. height: math.unit(0.1, "mm")
  14166. },
  14167. {
  14168. name: "Micro",
  14169. height: math.unit(1, "inch"),
  14170. default: true
  14171. },
  14172. {
  14173. name: "Human-sized",
  14174. height: math.unit(6 + 1 / 12, "feet")
  14175. },
  14176. {
  14177. name: "Macro",
  14178. height: math.unit(250, "feet")
  14179. },
  14180. {
  14181. name: "Megamacro",
  14182. height: math.unit(75, "miles")
  14183. },
  14184. {
  14185. name: "Texas-sized",
  14186. height: math.unit(750, "miles")
  14187. },
  14188. {
  14189. name: "Teramacro",
  14190. height: math.unit(50000, "miles")
  14191. },
  14192. ]
  14193. ))
  14194. characterMakers.push(() => makeCharacter(
  14195. { name: "Danny Kapowsky", species: ["husky"], tags: ["anthro"] },
  14196. {
  14197. front: {
  14198. height: math.unit(6, "feet"),
  14199. weight: math.unit(269, "lb"),
  14200. name: "Front",
  14201. image: {
  14202. source: "./media/characters/danny-kapowsky/front.svg",
  14203. extra: 766 / 736,
  14204. bottom: 0.044
  14205. }
  14206. },
  14207. back: {
  14208. height: math.unit(6, "feet"),
  14209. weight: math.unit(269, "lb"),
  14210. name: "Back",
  14211. image: {
  14212. source: "./media/characters/danny-kapowsky/back.svg",
  14213. extra: 797 / 760,
  14214. bottom: 0.025
  14215. }
  14216. },
  14217. },
  14218. [
  14219. {
  14220. name: "Macro",
  14221. height: math.unit(150, "feet"),
  14222. default: true
  14223. },
  14224. {
  14225. name: "Macro+",
  14226. height: math.unit(200, "feet")
  14227. },
  14228. {
  14229. name: "Macro++",
  14230. height: math.unit(300, "feet")
  14231. },
  14232. {
  14233. name: "Macro+++",
  14234. height: math.unit(400, "feet")
  14235. },
  14236. ]
  14237. ))
  14238. characterMakers.push(() => makeCharacter(
  14239. { name: "Finn", species: ["fennec-fox"], tags: ["anthro"] },
  14240. {
  14241. side: {
  14242. height: math.unit(6, "feet"),
  14243. weight: math.unit(170, "lb"),
  14244. name: "Side",
  14245. image: {
  14246. source: "./media/characters/finn/side.svg",
  14247. extra: 1953 / 1807,
  14248. bottom: 0.057
  14249. }
  14250. },
  14251. },
  14252. [
  14253. {
  14254. name: "Megamacro",
  14255. height: math.unit(14445, "feet"),
  14256. default: true
  14257. },
  14258. ]
  14259. ))
  14260. characterMakers.push(() => makeCharacter(
  14261. { name: "Roy", species: ["chameleon"], tags: ["anthro"] },
  14262. {
  14263. front: {
  14264. height: math.unit(5 + 6 / 12, "feet"),
  14265. weight: math.unit(125, "lb"),
  14266. name: "Front",
  14267. image: {
  14268. source: "./media/characters/roy/front.svg",
  14269. extra: 1,
  14270. bottom: 0.11
  14271. }
  14272. },
  14273. },
  14274. [
  14275. {
  14276. name: "Micro",
  14277. height: math.unit(3, "inches"),
  14278. default: true
  14279. },
  14280. {
  14281. name: "Normal",
  14282. height: math.unit(5 + 6 / 12, "feet")
  14283. },
  14284. {
  14285. name: "Lesser Macro",
  14286. height: math.unit(60, "feet")
  14287. },
  14288. {
  14289. name: "Greater Macro",
  14290. height: math.unit(120, "feet")
  14291. },
  14292. ]
  14293. ))
  14294. characterMakers.push(() => makeCharacter(
  14295. { name: "Aevsivs", species: ["spider"], tags: ["anthro"] },
  14296. {
  14297. front: {
  14298. height: math.unit(6, "feet"),
  14299. weight: math.unit(100, "lb"),
  14300. name: "Front",
  14301. image: {
  14302. source: "./media/characters/aevsivs/front.svg",
  14303. extra: 1,
  14304. bottom: 0.03
  14305. }
  14306. },
  14307. back: {
  14308. height: math.unit(6, "feet"),
  14309. weight: math.unit(100, "lb"),
  14310. name: "Back",
  14311. image: {
  14312. source: "./media/characters/aevsivs/back.svg"
  14313. }
  14314. },
  14315. },
  14316. [
  14317. {
  14318. name: "Micro",
  14319. height: math.unit(2, "inches"),
  14320. default: true
  14321. },
  14322. {
  14323. name: "Normal",
  14324. height: math.unit(5, "feet")
  14325. },
  14326. ]
  14327. ))
  14328. characterMakers.push(() => makeCharacter(
  14329. { name: "Hildegard", species: ["lucario"], tags: ["anthro"] },
  14330. {
  14331. front: {
  14332. height: math.unit(5 + 7 / 12, "feet"),
  14333. weight: math.unit(159, "lb"),
  14334. name: "Front",
  14335. image: {
  14336. source: "./media/characters/hildegard/front.svg",
  14337. extra: 289 / 269,
  14338. bottom: 7.63 / 297.8
  14339. }
  14340. },
  14341. back: {
  14342. height: math.unit(5 + 7 / 12, "feet"),
  14343. weight: math.unit(159, "lb"),
  14344. name: "Back",
  14345. image: {
  14346. source: "./media/characters/hildegard/back.svg",
  14347. extra: 280 / 260,
  14348. bottom: 2.3 / 282
  14349. }
  14350. },
  14351. },
  14352. [
  14353. {
  14354. name: "Normal",
  14355. height: math.unit(5 + 7 / 12, "feet"),
  14356. default: true
  14357. },
  14358. ]
  14359. ))
  14360. characterMakers.push(() => makeCharacter(
  14361. { name: "Bernard & Wilder", species: ["lycanroc"], tags: ["anthro", "feral"] },
  14362. {
  14363. bernard: {
  14364. height: math.unit(2 + 7 / 12, "feet"),
  14365. weight: math.unit(66, "lb"),
  14366. name: "Bernard",
  14367. rename: true,
  14368. image: {
  14369. source: "./media/characters/bernard-wilder/bernard.svg",
  14370. extra: 192 / 128,
  14371. bottom: 0.05
  14372. }
  14373. },
  14374. wilder: {
  14375. height: math.unit(5 + 8 / 12, "feet"),
  14376. weight: math.unit(143, "lb"),
  14377. name: "Wilder",
  14378. rename: true,
  14379. image: {
  14380. source: "./media/characters/bernard-wilder/wilder.svg",
  14381. extra: 361 / 312,
  14382. bottom: 0.02
  14383. }
  14384. },
  14385. },
  14386. [
  14387. {
  14388. name: "Normal",
  14389. height: math.unit(2 + 7 / 12, "feet"),
  14390. default: true
  14391. },
  14392. ]
  14393. ))
  14394. characterMakers.push(() => makeCharacter(
  14395. { name: "Hearth", species: ["houndoom"], tags: ["anthro"] },
  14396. {
  14397. anthro: {
  14398. height: math.unit(6 + 1 / 12, "feet"),
  14399. weight: math.unit(155, "lb"),
  14400. name: "Anthro",
  14401. image: {
  14402. source: "./media/characters/hearth/anthro.svg",
  14403. extra: 260 / 250,
  14404. bottom: 0.02
  14405. }
  14406. },
  14407. feral: {
  14408. height: math.unit(3.78, "feet"),
  14409. weight: math.unit(35, "kg"),
  14410. name: "Feral",
  14411. image: {
  14412. source: "./media/characters/hearth/feral.svg",
  14413. extra: 153 / 135,
  14414. bottom: 0.03
  14415. }
  14416. },
  14417. },
  14418. [
  14419. {
  14420. name: "Normal",
  14421. height: math.unit(6 + 1 / 12, "feet"),
  14422. default: true
  14423. },
  14424. ]
  14425. ))
  14426. characterMakers.push(() => makeCharacter(
  14427. { name: "Ingrid", species: ["delphox"], tags: ["anthro"] },
  14428. {
  14429. front: {
  14430. height: math.unit(6, "feet"),
  14431. weight: math.unit(182, "lb"),
  14432. name: "Front",
  14433. image: {
  14434. source: "./media/characters/ingrid/front.svg",
  14435. extra: 294 / 268,
  14436. bottom: 0.027
  14437. }
  14438. },
  14439. },
  14440. [
  14441. {
  14442. name: "Normal",
  14443. height: math.unit(6, "feet"),
  14444. default: true
  14445. },
  14446. ]
  14447. ))
  14448. characterMakers.push(() => makeCharacter(
  14449. { name: "Malgam", species: ["eevee"], tags: ["anthro"] },
  14450. {
  14451. eevee: {
  14452. height: math.unit(2 + 10 / 12, "feet"),
  14453. weight: math.unit(86, "lb"),
  14454. name: "Malgam",
  14455. image: {
  14456. source: "./media/characters/malgam/eevee.svg",
  14457. extra: 218 / 180,
  14458. bottom: 0.2
  14459. }
  14460. },
  14461. sylveon: {
  14462. height: math.unit(4, "feet"),
  14463. weight: math.unit(101, "lb"),
  14464. name: "Future Malgam",
  14465. rename: true,
  14466. image: {
  14467. source: "./media/characters/malgam/sylveon.svg",
  14468. extra: 371 / 325,
  14469. bottom: 0.015
  14470. }
  14471. },
  14472. gigantamax: {
  14473. height: math.unit(50, "feet"),
  14474. name: "Gigantamax Malgam",
  14475. rename: true,
  14476. image: {
  14477. source: "./media/characters/malgam/gigantamax.svg"
  14478. }
  14479. },
  14480. },
  14481. [
  14482. {
  14483. name: "Normal",
  14484. height: math.unit(2 + 10 / 12, "feet"),
  14485. default: true
  14486. },
  14487. ]
  14488. ))
  14489. characterMakers.push(() => makeCharacter(
  14490. { name: "Fleur", species: ["lopunny"], tags: ["anthro"] },
  14491. {
  14492. front: {
  14493. height: math.unit(5 + 11 / 12, "feet"),
  14494. weight: math.unit(188, "lb"),
  14495. name: "Front",
  14496. image: {
  14497. source: "./media/characters/fleur/front.svg",
  14498. extra: 309 / 283,
  14499. bottom: 0.007
  14500. }
  14501. },
  14502. },
  14503. [
  14504. {
  14505. name: "Normal",
  14506. height: math.unit(5 + 11 / 12, "feet"),
  14507. default: true
  14508. },
  14509. ]
  14510. ))
  14511. characterMakers.push(() => makeCharacter(
  14512. { name: "Jude", species: ["absol"], tags: ["anthro"] },
  14513. {
  14514. front: {
  14515. height: math.unit(5 + 4 / 12, "feet"),
  14516. weight: math.unit(122, "lb"),
  14517. name: "Front",
  14518. image: {
  14519. source: "./media/characters/jude/front.svg",
  14520. extra: 288 / 273,
  14521. bottom: 0.03
  14522. }
  14523. },
  14524. },
  14525. [
  14526. {
  14527. name: "Normal",
  14528. height: math.unit(5 + 4 / 12, "feet"),
  14529. default: true
  14530. },
  14531. ]
  14532. ))
  14533. characterMakers.push(() => makeCharacter(
  14534. { name: "Seara", species: ["salazzle"], tags: ["anthro"] },
  14535. {
  14536. front: {
  14537. height: math.unit(5 + 11 / 12, "feet"),
  14538. weight: math.unit(190, "lb"),
  14539. name: "Front",
  14540. image: {
  14541. source: "./media/characters/seara/front.svg",
  14542. extra: 1,
  14543. bottom: 0.05
  14544. }
  14545. },
  14546. },
  14547. [
  14548. {
  14549. name: "Normal",
  14550. height: math.unit(5 + 11 / 12, "feet"),
  14551. default: true
  14552. },
  14553. ]
  14554. ))
  14555. characterMakers.push(() => makeCharacter(
  14556. { name: "Caspian", species: ["lugia"], tags: ["anthro"] },
  14557. {
  14558. front: {
  14559. height: math.unit(16 + 5 / 12, "feet"),
  14560. weight: math.unit(524, "lb"),
  14561. name: "Front",
  14562. image: {
  14563. source: "./media/characters/caspian/front.svg",
  14564. extra: 1,
  14565. bottom: 0.04
  14566. }
  14567. },
  14568. },
  14569. [
  14570. {
  14571. name: "Normal",
  14572. height: math.unit(16 + 5 / 12, "feet"),
  14573. default: true
  14574. },
  14575. ]
  14576. ))
  14577. characterMakers.push(() => makeCharacter(
  14578. { name: "Mika", species: ["rabbit"], tags: ["anthro"] },
  14579. {
  14580. front: {
  14581. height: math.unit(5 + 7 / 12, "feet"),
  14582. weight: math.unit(170, "lb"),
  14583. name: "Front",
  14584. image: {
  14585. source: "./media/characters/mika/front.svg",
  14586. extra: 1,
  14587. bottom: 0.016
  14588. }
  14589. },
  14590. },
  14591. [
  14592. {
  14593. name: "Normal",
  14594. height: math.unit(5 + 7 / 12, "feet"),
  14595. default: true
  14596. },
  14597. ]
  14598. ))
  14599. characterMakers.push(() => makeCharacter(
  14600. { name: "Sol", species: ["grovyle"], tags: ["anthro"] },
  14601. {
  14602. front: {
  14603. height: math.unit(6 + 2 / 12, "feet"),
  14604. weight: math.unit(268, "lb"),
  14605. name: "Front",
  14606. image: {
  14607. source: "./media/characters/sol/front.svg",
  14608. extra: 247 / 231,
  14609. bottom: 0.05
  14610. }
  14611. },
  14612. },
  14613. [
  14614. {
  14615. name: "Normal",
  14616. height: math.unit(6 + 2 / 12, "feet"),
  14617. default: true
  14618. },
  14619. ]
  14620. ))
  14621. characterMakers.push(() => makeCharacter(
  14622. { name: "Umiko", species: ["buizel", "floatzel"], tags: ["anthro"] },
  14623. {
  14624. buizel: {
  14625. height: math.unit(2 + 5 / 12, "feet"),
  14626. weight: math.unit(87, "lb"),
  14627. name: "Buizel",
  14628. image: {
  14629. source: "./media/characters/umiko/buizel.svg",
  14630. extra: 172 / 157,
  14631. bottom: 0.01
  14632. }
  14633. },
  14634. floatzel: {
  14635. height: math.unit(5 + 9 / 12, "feet"),
  14636. weight: math.unit(250, "lb"),
  14637. name: "Floatzel",
  14638. image: {
  14639. source: "./media/characters/umiko/floatzel.svg",
  14640. extra: 262 / 248
  14641. }
  14642. },
  14643. },
  14644. [
  14645. {
  14646. name: "Normal",
  14647. height: math.unit(2 + 5 / 12, "feet"),
  14648. default: true
  14649. },
  14650. ]
  14651. ))
  14652. characterMakers.push(() => makeCharacter(
  14653. { name: "Iliac", species: ["inteleon"], tags: ["anthro"] },
  14654. {
  14655. front: {
  14656. height: math.unit(6 + 2 / 12, "feet"),
  14657. weight: math.unit(146, "lb"),
  14658. name: "Front",
  14659. image: {
  14660. source: "./media/characters/iliac/front.svg",
  14661. extra: 389 / 365,
  14662. bottom: 0.035
  14663. }
  14664. },
  14665. },
  14666. [
  14667. {
  14668. name: "Normal",
  14669. height: math.unit(6 + 2 / 12, "feet"),
  14670. default: true
  14671. },
  14672. ]
  14673. ))
  14674. characterMakers.push(() => makeCharacter(
  14675. { name: "Topaz", species: ["blaziken"], tags: ["anthro"] },
  14676. {
  14677. front: {
  14678. height: math.unit(6, "feet"),
  14679. weight: math.unit(170, "lb"),
  14680. name: "Front",
  14681. image: {
  14682. source: "./media/characters/topaz/front.svg",
  14683. extra: 317 / 303,
  14684. bottom: 0.055
  14685. }
  14686. },
  14687. },
  14688. [
  14689. {
  14690. name: "Normal",
  14691. height: math.unit(6, "feet"),
  14692. default: true
  14693. },
  14694. ]
  14695. ))
  14696. characterMakers.push(() => makeCharacter(
  14697. { name: "Gabriel", species: ["lucario"], tags: ["anthro"] },
  14698. {
  14699. front: {
  14700. height: math.unit(5 + 11 / 12, "feet"),
  14701. weight: math.unit(144, "lb"),
  14702. name: "Front",
  14703. image: {
  14704. source: "./media/characters/gabriel/front.svg",
  14705. extra: 285 / 262,
  14706. bottom: 0.004
  14707. }
  14708. },
  14709. },
  14710. [
  14711. {
  14712. name: "Normal",
  14713. height: math.unit(5 + 11 / 12, "feet"),
  14714. default: true
  14715. },
  14716. ]
  14717. ))
  14718. characterMakers.push(() => makeCharacter(
  14719. { name: "Tempest (Suicune)", species: ["suicune"], tags: ["anthro"] },
  14720. {
  14721. side: {
  14722. height: math.unit(6 + 5 / 12, "feet"),
  14723. weight: math.unit(300, "lb"),
  14724. name: "Side",
  14725. image: {
  14726. source: "./media/characters/tempest-suicune/side.svg",
  14727. extra: 195 / 154,
  14728. bottom: 0.04
  14729. }
  14730. },
  14731. },
  14732. [
  14733. {
  14734. name: "Normal",
  14735. height: math.unit(6 + 5 / 12, "feet"),
  14736. default: true
  14737. },
  14738. ]
  14739. ))
  14740. characterMakers.push(() => makeCharacter(
  14741. { name: "Vulcan", species: ["charizard"], tags: ["anthro"] },
  14742. {
  14743. front: {
  14744. height: math.unit(7 + 2 / 12, "feet"),
  14745. weight: math.unit(322, "lb"),
  14746. name: "Front",
  14747. image: {
  14748. source: "./media/characters/vulcan/front.svg",
  14749. extra: 154 / 147,
  14750. bottom: 0.04
  14751. }
  14752. },
  14753. },
  14754. [
  14755. {
  14756. name: "Normal",
  14757. height: math.unit(7 + 2 / 12, "feet"),
  14758. default: true
  14759. },
  14760. ]
  14761. ))
  14762. characterMakers.push(() => makeCharacter(
  14763. { name: "Gault", species: ["feraligatr"], tags: ["anthro"] },
  14764. {
  14765. front: {
  14766. height: math.unit(5 + 10 / 12, "feet"),
  14767. weight: math.unit(264, "lb"),
  14768. name: "Front",
  14769. image: {
  14770. source: "./media/characters/gault/front.svg",
  14771. extra: 161 / 140,
  14772. bottom: 0.028
  14773. }
  14774. },
  14775. },
  14776. [
  14777. {
  14778. name: "Normal",
  14779. height: math.unit(5 + 10 / 12, "feet"),
  14780. default: true
  14781. },
  14782. ]
  14783. ))
  14784. characterMakers.push(() => makeCharacter(
  14785. { name: "Shard", species: ["weavile"], tags: ["anthro"] },
  14786. {
  14787. front: {
  14788. height: math.unit(6, "feet"),
  14789. weight: math.unit(150, "lb"),
  14790. name: "Front",
  14791. image: {
  14792. source: "./media/characters/shard/front.svg",
  14793. extra: 273 / 238,
  14794. bottom: 0.02
  14795. }
  14796. },
  14797. },
  14798. [
  14799. {
  14800. name: "Normal",
  14801. height: math.unit(3 + 6 / 12, "feet"),
  14802. default: true
  14803. },
  14804. ]
  14805. ))
  14806. characterMakers.push(() => makeCharacter(
  14807. { name: "Ashe", species: ["cat"], tags: ["anthro"] },
  14808. {
  14809. front: {
  14810. height: math.unit(5 + 11 / 12, "feet"),
  14811. weight: math.unit(146, "lb"),
  14812. name: "Front",
  14813. image: {
  14814. source: "./media/characters/ashe/front.svg",
  14815. extra: 400 / 373,
  14816. bottom: 0.01
  14817. }
  14818. },
  14819. },
  14820. [
  14821. {
  14822. name: "Normal",
  14823. height: math.unit(5 + 11 / 12, "feet"),
  14824. default: true
  14825. },
  14826. ]
  14827. ))
  14828. characterMakers.push(() => makeCharacter(
  14829. { name: "Beatrix", species: ["coyote"], tags: ["anthro"] },
  14830. {
  14831. front: {
  14832. height: math.unit(5 + 5 / 12, "feet"),
  14833. weight: math.unit(135, "lb"),
  14834. name: "Front",
  14835. image: {
  14836. source: "./media/characters/beatrix/front.svg",
  14837. extra: 392 / 379,
  14838. bottom: 0.01
  14839. }
  14840. },
  14841. },
  14842. [
  14843. {
  14844. name: "Normal",
  14845. height: math.unit(6, "feet"),
  14846. default: true
  14847. },
  14848. ]
  14849. ))
  14850. characterMakers.push(() => makeCharacter(
  14851. { name: "Ignatius", species: ["delphox"], tags: ["anthro"] },
  14852. {
  14853. front: {
  14854. height: math.unit(6, "feet"),
  14855. weight: math.unit(150, "lb"),
  14856. name: "Front",
  14857. image: {
  14858. source: "./media/characters/ignatius/front.svg",
  14859. extra: 245 / 222,
  14860. bottom: 0.01
  14861. }
  14862. },
  14863. },
  14864. [
  14865. {
  14866. name: "Normal",
  14867. height: math.unit(5 + 5 / 12, "feet"),
  14868. default: true
  14869. },
  14870. ]
  14871. ))
  14872. characterMakers.push(() => makeCharacter(
  14873. { name: "Mei Li", species: ["mienshao"], tags: ["anthro"] },
  14874. {
  14875. front: {
  14876. height: math.unit(6 + 2 / 12, "feet"),
  14877. weight: math.unit(138, "lb"),
  14878. name: "Front",
  14879. image: {
  14880. source: "./media/characters/mei-li/front.svg",
  14881. extra: 237 / 229,
  14882. bottom: 0.03
  14883. }
  14884. },
  14885. },
  14886. [
  14887. {
  14888. name: "Normal",
  14889. height: math.unit(6 + 2 / 12, "feet"),
  14890. default: true
  14891. },
  14892. ]
  14893. ))
  14894. characterMakers.push(() => makeCharacter(
  14895. { name: "Puru", species: ["azumarill"], tags: ["anthro"] },
  14896. {
  14897. front: {
  14898. height: math.unit(2 + 4 / 12, "feet"),
  14899. weight: math.unit(62, "lb"),
  14900. name: "Front",
  14901. image: {
  14902. source: "./media/characters/puru/front.svg",
  14903. extra: 206 / 149,
  14904. bottom: 0.06
  14905. }
  14906. },
  14907. },
  14908. [
  14909. {
  14910. name: "Normal",
  14911. height: math.unit(2 + 4 / 12, "feet"),
  14912. default: true
  14913. },
  14914. ]
  14915. ))
  14916. characterMakers.push(() => makeCharacter(
  14917. { name: "Kee", species: ["aardwolf"], tags: ["taur"] },
  14918. {
  14919. taur: {
  14920. height: math.unit(11, "feet"),
  14921. weight: math.unit(500, "lb"),
  14922. name: "Taur",
  14923. image: {
  14924. source: "./media/characters/kee/taur.svg",
  14925. extra: 1,
  14926. bottom: 0.04
  14927. }
  14928. },
  14929. },
  14930. [
  14931. {
  14932. name: "Normal",
  14933. height: math.unit(11, "feet"),
  14934. default: true
  14935. },
  14936. ]
  14937. ))
  14938. characterMakers.push(() => makeCharacter(
  14939. { name: "Cobalt (Dracha)", species: ["dracha"], tags: ["anthro"] },
  14940. {
  14941. anthro: {
  14942. height: math.unit(7, "feet"),
  14943. weight: math.unit(190, "lb"),
  14944. name: "Anthro",
  14945. image: {
  14946. source: "./media/characters/cobalt-dracha/anthro.svg",
  14947. extra: 231 / 225,
  14948. bottom: 0.04
  14949. }
  14950. },
  14951. feral: {
  14952. height: math.unit(9 + 7 / 12, "feet"),
  14953. weight: math.unit(294, "lb"),
  14954. name: "Feral",
  14955. image: {
  14956. source: "./media/characters/cobalt-dracha/feral.svg",
  14957. extra: 692 / 633,
  14958. bottom: 0.05
  14959. }
  14960. },
  14961. },
  14962. [
  14963. {
  14964. name: "Normal",
  14965. height: math.unit(7, "feet"),
  14966. default: true
  14967. },
  14968. ]
  14969. ))
  14970. characterMakers.push(() => makeCharacter(
  14971. { name: "Java", species: ["snake", "deity"], tags: ["naga"] },
  14972. {
  14973. fallen: {
  14974. height: math.unit(11 + 8 / 12, "feet"),
  14975. weight: math.unit(485, "lb"),
  14976. name: "Java (Fallen)",
  14977. rename: true,
  14978. image: {
  14979. source: "./media/characters/java/fallen.svg",
  14980. extra: 226 / 208,
  14981. bottom: 0.005
  14982. }
  14983. },
  14984. godkin: {
  14985. height: math.unit(10 + 6 / 12, "feet"),
  14986. weight: math.unit(328, "lb"),
  14987. name: "Java (Godkin)",
  14988. rename: true,
  14989. image: {
  14990. source: "./media/characters/java/godkin.svg",
  14991. extra: 270 / 262,
  14992. bottom: 0.02
  14993. }
  14994. },
  14995. },
  14996. [
  14997. {
  14998. name: "Normal",
  14999. height: math.unit(11 + 8 / 12, "feet"),
  15000. default: true
  15001. },
  15002. ]
  15003. ))
  15004. characterMakers.push(() => makeCharacter(
  15005. { name: "Skoll", species: ["wolf"], tags: ["anthro"] },
  15006. {
  15007. front: {
  15008. height: math.unit(7 + 8 / 12, "feet"),
  15009. weight: math.unit(320, "lb"),
  15010. name: "Front",
  15011. image: {
  15012. source: "./media/characters/skoll/front.svg",
  15013. extra: 232 / 220,
  15014. bottom: 0.02
  15015. }
  15016. },
  15017. },
  15018. [
  15019. {
  15020. name: "Normal",
  15021. height: math.unit(7 + 8 / 12, "feet"),
  15022. default: true
  15023. },
  15024. ]
  15025. ))
  15026. characterMakers.push(() => makeCharacter(
  15027. { name: "Purna", species: ["panther"], tags: ["anthro"] },
  15028. {
  15029. front: {
  15030. height: math.unit(5 + 9 / 12, "feet"),
  15031. weight: math.unit(170, "lb"),
  15032. name: "Front",
  15033. image: {
  15034. source: "./media/characters/purna/front.svg",
  15035. extra: 239 / 229,
  15036. bottom: 0.01
  15037. }
  15038. },
  15039. },
  15040. [
  15041. {
  15042. name: "Normal",
  15043. height: math.unit(5 + 9 / 12, "feet"),
  15044. default: true
  15045. },
  15046. ]
  15047. ))
  15048. characterMakers.push(() => makeCharacter(
  15049. { name: "Kuva", species: ["cheetah"], tags: ["anthro"] },
  15050. {
  15051. front: {
  15052. height: math.unit(5 + 9 / 12, "feet"),
  15053. weight: math.unit(142, "lb"),
  15054. name: "Front",
  15055. image: {
  15056. source: "./media/characters/kuva/front.svg",
  15057. extra: 281 / 271,
  15058. bottom: 0.006
  15059. }
  15060. },
  15061. },
  15062. [
  15063. {
  15064. name: "Normal",
  15065. height: math.unit(5 + 9 / 12, "feet"),
  15066. default: true
  15067. },
  15068. ]
  15069. ))
  15070. characterMakers.push(() => makeCharacter(
  15071. { name: "Embra", species: ["dracha"], tags: ["anthro"] },
  15072. {
  15073. anthro: {
  15074. height: math.unit(9 + 2 / 12, "feet"),
  15075. weight: math.unit(270, "lb"),
  15076. name: "Anthro",
  15077. image: {
  15078. source: "./media/characters/embra/anthro.svg",
  15079. extra: 200 / 187,
  15080. bottom: 0.02
  15081. }
  15082. },
  15083. feral: {
  15084. height: math.unit(18 + 8 / 12, "feet"),
  15085. weight: math.unit(576, "lb"),
  15086. name: "Feral",
  15087. image: {
  15088. source: "./media/characters/embra/feral.svg",
  15089. extra: 152 / 137,
  15090. bottom: 0.037
  15091. }
  15092. },
  15093. },
  15094. [
  15095. {
  15096. name: "Normal",
  15097. height: math.unit(9 + 2 / 12, "feet"),
  15098. default: true
  15099. },
  15100. ]
  15101. ))
  15102. characterMakers.push(() => makeCharacter(
  15103. { name: "Grottos", species: ["dracha"], tags: ["anthro"] },
  15104. {
  15105. anthro: {
  15106. height: math.unit(10 + 9 / 12, "feet"),
  15107. weight: math.unit(224, "lb"),
  15108. name: "Anthro",
  15109. image: {
  15110. source: "./media/characters/grottos/anthro.svg",
  15111. extra: 350 / 332,
  15112. bottom: 0.045
  15113. }
  15114. },
  15115. feral: {
  15116. height: math.unit(20 + 7 / 12, "feet"),
  15117. weight: math.unit(629, "lb"),
  15118. name: "Feral",
  15119. image: {
  15120. source: "./media/characters/grottos/feral.svg",
  15121. extra: 207 / 190,
  15122. bottom: 0.05
  15123. }
  15124. },
  15125. },
  15126. [
  15127. {
  15128. name: "Normal",
  15129. height: math.unit(10 + 9 / 12, "feet"),
  15130. default: true
  15131. },
  15132. ]
  15133. ))
  15134. characterMakers.push(() => makeCharacter(
  15135. { name: "Frifna", species: ["dracha"], tags: ["anthro"] },
  15136. {
  15137. anthro: {
  15138. height: math.unit(9 + 6 / 12, "feet"),
  15139. weight: math.unit(298, "lb"),
  15140. name: "Anthro",
  15141. image: {
  15142. source: "./media/characters/frifna/anthro.svg",
  15143. extra: 282 / 269,
  15144. bottom: 0.015
  15145. }
  15146. },
  15147. feral: {
  15148. height: math.unit(16 + 2 / 12, "feet"),
  15149. weight: math.unit(624, "lb"),
  15150. name: "Feral",
  15151. image: {
  15152. source: "./media/characters/frifna/feral.svg"
  15153. }
  15154. },
  15155. },
  15156. [
  15157. {
  15158. name: "Normal",
  15159. height: math.unit(9 + 6 / 12, "feet"),
  15160. default: true
  15161. },
  15162. ]
  15163. ))
  15164. characterMakers.push(() => makeCharacter(
  15165. { name: "Elise", species: ["mongoose"], tags: ["anthro"] },
  15166. {
  15167. front: {
  15168. height: math.unit(6 + 2 / 12, "feet"),
  15169. weight: math.unit(168, "lb"),
  15170. name: "Front",
  15171. image: {
  15172. source: "./media/characters/elise/front.svg",
  15173. extra: 276 / 271
  15174. }
  15175. },
  15176. },
  15177. [
  15178. {
  15179. name: "Normal",
  15180. height: math.unit(6 + 2 / 12, "feet"),
  15181. default: true
  15182. },
  15183. ]
  15184. ))
  15185. characterMakers.push(() => makeCharacter(
  15186. { name: "Glade", species: ["wolf"], tags: ["anthro"] },
  15187. {
  15188. front: {
  15189. height: math.unit(5 + 10 / 12, "feet"),
  15190. weight: math.unit(210, "lb"),
  15191. name: "Front",
  15192. image: {
  15193. source: "./media/characters/glade/front.svg",
  15194. extra: 258 / 247,
  15195. bottom: 0.008
  15196. }
  15197. },
  15198. },
  15199. [
  15200. {
  15201. name: "Normal",
  15202. height: math.unit(5 + 10 / 12, "feet"),
  15203. default: true
  15204. },
  15205. ]
  15206. ))
  15207. characterMakers.push(() => makeCharacter(
  15208. { name: "Rina", species: ["fox"], tags: ["anthro"] },
  15209. {
  15210. front: {
  15211. height: math.unit(5 + 10 / 12, "feet"),
  15212. weight: math.unit(129, "lb"),
  15213. name: "Front",
  15214. image: {
  15215. source: "./media/characters/rina/front.svg",
  15216. extra: 266 / 255,
  15217. bottom: 0.005
  15218. }
  15219. },
  15220. },
  15221. [
  15222. {
  15223. name: "Normal",
  15224. height: math.unit(5 + 10 / 12, "feet"),
  15225. default: true
  15226. },
  15227. ]
  15228. ))
  15229. characterMakers.push(() => makeCharacter(
  15230. { name: "Veronica", species: ["fox", "synth"], tags: ["anthro"] },
  15231. {
  15232. front: {
  15233. height: math.unit(6 + 1 / 12, "feet"),
  15234. weight: math.unit(192, "lb"),
  15235. name: "Front",
  15236. image: {
  15237. source: "./media/characters/veronica/front.svg",
  15238. extra: 319 / 309,
  15239. bottom: 0.005
  15240. }
  15241. },
  15242. },
  15243. [
  15244. {
  15245. name: "Normal",
  15246. height: math.unit(6 + 1 / 12, "feet"),
  15247. default: true
  15248. },
  15249. ]
  15250. ))
  15251. characterMakers.push(() => makeCharacter(
  15252. { name: "Braxton", species: ["great-dane"], tags: ["anthro"] },
  15253. {
  15254. front: {
  15255. height: math.unit(9 + 3 / 12, "feet"),
  15256. weight: math.unit(1100, "lb"),
  15257. name: "Front",
  15258. image: {
  15259. source: "./media/characters/braxton/front.svg",
  15260. extra: 1057 / 984,
  15261. bottom: 0.05
  15262. }
  15263. },
  15264. },
  15265. [
  15266. {
  15267. name: "Normal",
  15268. height: math.unit(9 + 3 / 12, "feet")
  15269. },
  15270. {
  15271. name: "Giant",
  15272. height: math.unit(300, "feet"),
  15273. default: true
  15274. },
  15275. {
  15276. name: "Macro",
  15277. height: math.unit(700, "feet")
  15278. },
  15279. {
  15280. name: "Megamacro",
  15281. height: math.unit(6000, "feet")
  15282. },
  15283. ]
  15284. ))
  15285. characterMakers.push(() => makeCharacter(
  15286. { name: "Blue Feyonics", species: ["phoenix"], tags: ["anthro"] },
  15287. {
  15288. front: {
  15289. height: math.unit(6 + 7 / 12, "feet"),
  15290. weight: math.unit(150, "lb"),
  15291. name: "Front",
  15292. image: {
  15293. source: "./media/characters/blue-feyonics/front.svg",
  15294. extra: 1403 / 1306,
  15295. bottom: 0.047
  15296. }
  15297. },
  15298. },
  15299. [
  15300. {
  15301. name: "Normal",
  15302. height: math.unit(6 + 7 / 12, "feet"),
  15303. default: true
  15304. },
  15305. ]
  15306. ))
  15307. characterMakers.push(() => makeCharacter(
  15308. { name: "Maxwell", species: ["shiba-inu", "wolf"], tags: ["anthro"] },
  15309. {
  15310. front: {
  15311. height: math.unit(1.8, "meters"),
  15312. weight: math.unit(60, "kg"),
  15313. name: "Front",
  15314. image: {
  15315. source: "./media/characters/maxwell/front.svg",
  15316. extra: 2060 / 1873
  15317. }
  15318. },
  15319. },
  15320. [
  15321. {
  15322. name: "Micro",
  15323. height: math.unit(1, "mm")
  15324. },
  15325. {
  15326. name: "Normal",
  15327. height: math.unit(1.8, "meter"),
  15328. default: true
  15329. },
  15330. {
  15331. name: "Macro",
  15332. height: math.unit(30, "meters")
  15333. },
  15334. {
  15335. name: "Megamacro",
  15336. height: math.unit(10, "km")
  15337. },
  15338. ]
  15339. ))
  15340. characterMakers.push(() => makeCharacter(
  15341. { name: "Jack", species: ["wolf", "dragon"], tags: ["anthro"] },
  15342. {
  15343. front: {
  15344. height: math.unit(6, "feet"),
  15345. weight: math.unit(150, "lb"),
  15346. name: "Front",
  15347. image: {
  15348. source: "./media/characters/jack/front.svg",
  15349. extra: 1754 / 1640,
  15350. bottom: 0.01
  15351. }
  15352. },
  15353. },
  15354. [
  15355. {
  15356. name: "Normal",
  15357. height: math.unit(80000, "feet"),
  15358. default: true
  15359. },
  15360. {
  15361. name: "Max size",
  15362. height: math.unit(10, "lightyears")
  15363. },
  15364. ]
  15365. ))
  15366. characterMakers.push(() => makeCharacter(
  15367. { name: "Cafat", species: ["husky"], tags: ["taur"] },
  15368. {
  15369. upright: {
  15370. height: math.unit(7, "feet"),
  15371. weight: math.unit(170, "lb"),
  15372. name: "Upright",
  15373. image: {
  15374. source: "./media/characters/cafat/upright.svg",
  15375. bottom: 0.01
  15376. }
  15377. },
  15378. uprightFull: {
  15379. height: math.unit(7, "feet"),
  15380. weight: math.unit(170, "lb"),
  15381. name: "Upright (Full)",
  15382. image: {
  15383. source: "./media/characters/cafat/upright-full.svg",
  15384. bottom: 0.01
  15385. }
  15386. },
  15387. side: {
  15388. height: math.unit(5, "feet"),
  15389. weight: math.unit(150, "lb"),
  15390. name: "Side",
  15391. image: {
  15392. source: "./media/characters/cafat/side.svg"
  15393. }
  15394. },
  15395. },
  15396. [
  15397. {
  15398. name: "Small",
  15399. height: math.unit(7, "feet"),
  15400. default: true
  15401. },
  15402. {
  15403. name: "Large",
  15404. height: math.unit(15.5, "feet")
  15405. },
  15406. ]
  15407. ))
  15408. characterMakers.push(() => makeCharacter(
  15409. { name: "Verin Raharra", species: ["sergal"], tags: ["anthro"] },
  15410. {
  15411. front: {
  15412. height: math.unit(6, "feet"),
  15413. weight: math.unit(150, "lb"),
  15414. name: "Front",
  15415. image: {
  15416. source: "./media/characters/verin-raharra/front.svg",
  15417. extra: 5019 / 4835,
  15418. bottom: 0.023
  15419. }
  15420. },
  15421. },
  15422. [
  15423. {
  15424. name: "Normal",
  15425. height: math.unit(7 + 5 / 12, "feet"),
  15426. default: true
  15427. },
  15428. {
  15429. name: "Upsized",
  15430. height: math.unit(20, "feet")
  15431. },
  15432. ]
  15433. ))
  15434. characterMakers.push(() => makeCharacter(
  15435. { name: "Nakata", species: ["hyena"], tags: ["anthro"] },
  15436. {
  15437. front: {
  15438. height: math.unit(7, "feet"),
  15439. weight: math.unit(230, "lb"),
  15440. name: "Front",
  15441. image: {
  15442. source: "./media/characters/nakata/front.svg",
  15443. extra: 1.005,
  15444. bottom: 0.01
  15445. }
  15446. },
  15447. },
  15448. [
  15449. {
  15450. name: "Normal",
  15451. height: math.unit(7, "feet"),
  15452. default: true
  15453. },
  15454. {
  15455. name: "Big",
  15456. height: math.unit(14, "feet")
  15457. },
  15458. {
  15459. name: "Macro",
  15460. height: math.unit(400, "feet")
  15461. },
  15462. ]
  15463. ))
  15464. characterMakers.push(() => makeCharacter(
  15465. { name: "Lily", species: ["ruppells-fox"], tags: ["anthro"] },
  15466. {
  15467. front: {
  15468. height: math.unit(4.91, "feet"),
  15469. weight: math.unit(100, "lb"),
  15470. name: "Front",
  15471. image: {
  15472. source: "./media/characters/lily/front.svg",
  15473. extra: 1585 / 1415,
  15474. bottom: 0.02
  15475. }
  15476. },
  15477. },
  15478. [
  15479. {
  15480. name: "Normal",
  15481. height: math.unit(4.91, "feet"),
  15482. default: true
  15483. },
  15484. ]
  15485. ))
  15486. characterMakers.push(() => makeCharacter(
  15487. { name: "Sheila", species: ["leopard-seal"], tags: ["anthro"] },
  15488. {
  15489. laying: {
  15490. height: math.unit(4 + 4 / 12, "feet"),
  15491. weight: math.unit(600, "lb"),
  15492. name: "Laying",
  15493. image: {
  15494. source: "./media/characters/sheila/laying.svg",
  15495. extra: 1333 / 1265,
  15496. bottom: 0.16
  15497. }
  15498. },
  15499. },
  15500. [
  15501. {
  15502. name: "Normal",
  15503. height: math.unit(4 + 4 / 12, "feet"),
  15504. default: true
  15505. },
  15506. ]
  15507. ))
  15508. characterMakers.push(() => makeCharacter(
  15509. { name: "Sax", species: ["argonian"], tags: ["anthro"] },
  15510. {
  15511. front: {
  15512. height: math.unit(6, "feet"),
  15513. weight: math.unit(190, "lb"),
  15514. name: "Front",
  15515. image: {
  15516. source: "./media/characters/sax/front.svg",
  15517. extra: 1187 / 973,
  15518. bottom: 0.042
  15519. }
  15520. },
  15521. },
  15522. [
  15523. {
  15524. name: "Micro",
  15525. height: math.unit(4, "inches"),
  15526. default: true
  15527. },
  15528. ]
  15529. ))
  15530. characterMakers.push(() => makeCharacter(
  15531. { name: "Pandora", species: ["fox"], tags: ["anthro"] },
  15532. {
  15533. front: {
  15534. height: math.unit(6, "feet"),
  15535. weight: math.unit(150, "lb"),
  15536. name: "Front",
  15537. image: {
  15538. source: "./media/characters/pandora/front.svg",
  15539. extra: 2720 / 2556,
  15540. bottom: 0.015
  15541. }
  15542. },
  15543. back: {
  15544. height: math.unit(6, "feet"),
  15545. weight: math.unit(150, "lb"),
  15546. name: "Back",
  15547. image: {
  15548. source: "./media/characters/pandora/back.svg",
  15549. extra: 2720 / 2556,
  15550. bottom: 0.01
  15551. }
  15552. },
  15553. beans: {
  15554. height: math.unit(6 / 8, "feet"),
  15555. name: "Beans",
  15556. image: {
  15557. source: "./media/characters/pandora/beans.svg"
  15558. }
  15559. },
  15560. skirt: {
  15561. height: math.unit(6, "feet"),
  15562. weight: math.unit(150, "lb"),
  15563. name: "Skirt",
  15564. image: {
  15565. source: "./media/characters/pandora/skirt.svg",
  15566. extra: 1622 / 1525,
  15567. bottom: 0.015
  15568. }
  15569. },
  15570. hoodie: {
  15571. height: math.unit(6, "feet"),
  15572. weight: math.unit(150, "lb"),
  15573. name: "Hoodie",
  15574. image: {
  15575. source: "./media/characters/pandora/hoodie.svg",
  15576. extra: 1622 / 1525,
  15577. bottom: 0.015
  15578. }
  15579. },
  15580. casual: {
  15581. height: math.unit(6, "feet"),
  15582. weight: math.unit(150, "lb"),
  15583. name: "Casual",
  15584. image: {
  15585. source: "./media/characters/pandora/casual.svg",
  15586. extra: 1622 / 1525,
  15587. bottom: 0.015
  15588. }
  15589. },
  15590. },
  15591. [
  15592. {
  15593. name: "Normal",
  15594. height: math.unit(6, "feet")
  15595. },
  15596. {
  15597. name: "Big Steppy",
  15598. height: math.unit(1, "km"),
  15599. default: true
  15600. },
  15601. ]
  15602. ))
  15603. characterMakers.push(() => makeCharacter(
  15604. { name: "Venio Darcony", species: ["hyena"], tags: ["anthro"] },
  15605. {
  15606. side: {
  15607. height: math.unit(10, "feet"),
  15608. weight: math.unit(800, "kg"),
  15609. name: "Side",
  15610. image: {
  15611. source: "./media/characters/venio-darcony/side.svg",
  15612. extra: 1373 / 1003,
  15613. bottom: 0.037
  15614. }
  15615. },
  15616. front: {
  15617. height: math.unit(19, "feet"),
  15618. weight: math.unit(800, "kg"),
  15619. name: "Front",
  15620. image: {
  15621. source: "./media/characters/venio-darcony/front.svg"
  15622. }
  15623. },
  15624. back: {
  15625. height: math.unit(19, "feet"),
  15626. weight: math.unit(800, "kg"),
  15627. name: "Back",
  15628. image: {
  15629. source: "./media/characters/venio-darcony/back.svg"
  15630. }
  15631. },
  15632. sideNsfw: {
  15633. height: math.unit(10, "feet"),
  15634. weight: math.unit(800, "kg"),
  15635. name: "Side (NSFW)",
  15636. image: {
  15637. source: "./media/characters/venio-darcony/side-nsfw.svg",
  15638. extra: 1373 / 1003,
  15639. bottom: 0.037
  15640. }
  15641. },
  15642. frontNsfw: {
  15643. height: math.unit(19, "feet"),
  15644. weight: math.unit(800, "kg"),
  15645. name: "Front (NSFW)",
  15646. image: {
  15647. source: "./media/characters/venio-darcony/front-nsfw.svg"
  15648. }
  15649. },
  15650. backNsfw: {
  15651. height: math.unit(19, "feet"),
  15652. weight: math.unit(800, "kg"),
  15653. name: "Back (NSFW)",
  15654. image: {
  15655. source: "./media/characters/venio-darcony/back-nsfw.svg"
  15656. }
  15657. },
  15658. sideArmored: {
  15659. height: math.unit(10, "feet"),
  15660. weight: math.unit(800, "kg"),
  15661. name: "Side (Armored)",
  15662. image: {
  15663. source: "./media/characters/venio-darcony/side-armored.svg",
  15664. extra: 1373 / 1003,
  15665. bottom: 0.037
  15666. }
  15667. },
  15668. frontArmored: {
  15669. height: math.unit(19, "feet"),
  15670. weight: math.unit(900, "kg"),
  15671. name: "Front (Armored)",
  15672. image: {
  15673. source: "./media/characters/venio-darcony/front-armored.svg"
  15674. }
  15675. },
  15676. backArmored: {
  15677. height: math.unit(19, "feet"),
  15678. weight: math.unit(900, "kg"),
  15679. name: "Back (Armored)",
  15680. image: {
  15681. source: "./media/characters/venio-darcony/back-armored.svg"
  15682. }
  15683. },
  15684. sword: {
  15685. height: math.unit(10, "feet"),
  15686. weight: math.unit(50, "lb"),
  15687. name: "Sword",
  15688. image: {
  15689. source: "./media/characters/venio-darcony/sword.svg"
  15690. }
  15691. },
  15692. },
  15693. [
  15694. {
  15695. name: "Normal",
  15696. height: math.unit(10, "feet")
  15697. },
  15698. {
  15699. name: "Macro",
  15700. height: math.unit(130, "feet"),
  15701. default: true
  15702. },
  15703. {
  15704. name: "Macro+",
  15705. height: math.unit(240, "feet")
  15706. },
  15707. ]
  15708. ))
  15709. characterMakers.push(() => makeCharacter(
  15710. { name: "Veski", species: ["shark"], tags: ["anthro"] },
  15711. {
  15712. front: {
  15713. height: math.unit(6, "feet"),
  15714. weight: math.unit(150, "lb"),
  15715. name: "Front",
  15716. image: {
  15717. source: "./media/characters/veski/front.svg",
  15718. extra: 1299 / 1225,
  15719. bottom: 0.04
  15720. }
  15721. },
  15722. back: {
  15723. height: math.unit(6, "feet"),
  15724. weight: math.unit(150, "lb"),
  15725. name: "Back",
  15726. image: {
  15727. source: "./media/characters/veski/back.svg",
  15728. extra: 1299 / 1225,
  15729. bottom: 0.008
  15730. }
  15731. },
  15732. maw: {
  15733. height: math.unit(1.5 * 1.21, "feet"),
  15734. name: "Maw",
  15735. image: {
  15736. source: "./media/characters/veski/maw.svg"
  15737. }
  15738. },
  15739. },
  15740. [
  15741. {
  15742. name: "Macro",
  15743. height: math.unit(2, "km"),
  15744. default: true
  15745. },
  15746. ]
  15747. ))
  15748. characterMakers.push(() => makeCharacter(
  15749. { name: "Isabelle", species: ["wolf"], tags: ["anthro"] },
  15750. {
  15751. front: {
  15752. height: math.unit(5 + 7 / 12, "feet"),
  15753. name: "Front",
  15754. image: {
  15755. source: "./media/characters/isabelle/front.svg",
  15756. extra: 2130 / 1976,
  15757. bottom: 0.05
  15758. }
  15759. },
  15760. },
  15761. [
  15762. {
  15763. name: "Supermicro",
  15764. height: math.unit(10, "micrometers")
  15765. },
  15766. {
  15767. name: "Micro",
  15768. height: math.unit(1, "inch")
  15769. },
  15770. {
  15771. name: "Tiny",
  15772. height: math.unit(5, "inches")
  15773. },
  15774. {
  15775. name: "Standard",
  15776. height: math.unit(5 + 7 / 12, "inches")
  15777. },
  15778. {
  15779. name: "Macro",
  15780. height: math.unit(80, "meters"),
  15781. default: true
  15782. },
  15783. {
  15784. name: "Megamacro",
  15785. height: math.unit(250, "meters")
  15786. },
  15787. {
  15788. name: "Gigamacro",
  15789. height: math.unit(5, "km")
  15790. },
  15791. {
  15792. name: "Cosmic",
  15793. height: math.unit(2.5e6, "miles")
  15794. },
  15795. ]
  15796. ))
  15797. characterMakers.push(() => makeCharacter(
  15798. { name: "Hanzo", species: ["greninja"], tags: ["anthro"] },
  15799. {
  15800. front: {
  15801. height: math.unit(6, "feet"),
  15802. weight: math.unit(150, "lb"),
  15803. name: "Front",
  15804. image: {
  15805. source: "./media/characters/hanzo/front.svg",
  15806. extra: 374 / 344,
  15807. bottom: 0.02
  15808. }
  15809. },
  15810. },
  15811. [
  15812. {
  15813. name: "Normal",
  15814. height: math.unit(8, "feet"),
  15815. default: true
  15816. },
  15817. ]
  15818. ))
  15819. characterMakers.push(() => makeCharacter(
  15820. { name: "Anna", species: ["greninja"], tags: ["anthro"] },
  15821. {
  15822. front: {
  15823. height: math.unit(7, "feet"),
  15824. weight: math.unit(130, "lb"),
  15825. name: "Front",
  15826. image: {
  15827. source: "./media/characters/anna/front.svg",
  15828. extra: 169 / 145,
  15829. bottom: 0.06
  15830. }
  15831. },
  15832. full: {
  15833. height: math.unit(4.96, "feet"),
  15834. weight: math.unit(220, "lb"),
  15835. name: "Full",
  15836. image: {
  15837. source: "./media/characters/anna/full.svg",
  15838. extra: 138 / 114,
  15839. bottom: 0.15
  15840. }
  15841. },
  15842. tongue: {
  15843. height: math.unit(2.53, "feet"),
  15844. name: "Tongue",
  15845. image: {
  15846. source: "./media/characters/anna/tongue.svg"
  15847. }
  15848. },
  15849. },
  15850. [
  15851. {
  15852. name: "Normal",
  15853. height: math.unit(7, "feet"),
  15854. default: true
  15855. },
  15856. ]
  15857. ))
  15858. characterMakers.push(() => makeCharacter(
  15859. { name: "Ian Corvid", species: ["crow"], tags: ["anthro"] },
  15860. {
  15861. front: {
  15862. height: math.unit(7, "feet"),
  15863. weight: math.unit(150, "lb"),
  15864. name: "Front",
  15865. image: {
  15866. source: "./media/characters/ian-corvid/front.svg",
  15867. extra: 150 / 142,
  15868. bottom: 0.02
  15869. }
  15870. },
  15871. back: {
  15872. height: math.unit(7, "feet"),
  15873. weight: math.unit(150, "lb"),
  15874. name: "Back",
  15875. image: {
  15876. source: "./media/characters/ian-corvid/back.svg",
  15877. extra: 150 / 143,
  15878. bottom: 0.01
  15879. }
  15880. },
  15881. stomping: {
  15882. height: math.unit(7, "feet"),
  15883. weight: math.unit(150, "lb"),
  15884. name: "Stomping",
  15885. image: {
  15886. source: "./media/characters/ian-corvid/stomping.svg",
  15887. extra: 76 / 72
  15888. }
  15889. },
  15890. sitting: {
  15891. height: math.unit(7 / 1.8, "feet"),
  15892. weight: math.unit(150, "lb"),
  15893. name: "Sitting",
  15894. image: {
  15895. source: "./media/characters/ian-corvid/sitting.svg",
  15896. extra: 1400 / 1269,
  15897. bottom: 0.15
  15898. }
  15899. },
  15900. },
  15901. [
  15902. {
  15903. name: "Tiny Microw",
  15904. height: math.unit(1, "inch")
  15905. },
  15906. {
  15907. name: "Microw",
  15908. height: math.unit(6, "inches")
  15909. },
  15910. {
  15911. name: "Crow",
  15912. height: math.unit(7 + 1 / 12, "feet"),
  15913. default: true
  15914. },
  15915. {
  15916. name: "Macrow",
  15917. height: math.unit(176, "feet")
  15918. },
  15919. ]
  15920. ))
  15921. characterMakers.push(() => makeCharacter(
  15922. { name: "Natalie Kellon", species: ["fox"], tags: ["anthro"] },
  15923. {
  15924. front: {
  15925. height: math.unit(5 + 7 / 12, "feet"),
  15926. weight: math.unit(147, "lb"),
  15927. name: "Front",
  15928. image: {
  15929. source: "./media/characters/natalie-kellon/front.svg",
  15930. extra: 1214 / 1141,
  15931. bottom: 0.02
  15932. }
  15933. },
  15934. },
  15935. [
  15936. {
  15937. name: "Micro",
  15938. height: math.unit(1 / 16, "inch")
  15939. },
  15940. {
  15941. name: "Tiny",
  15942. height: math.unit(4, "inches")
  15943. },
  15944. {
  15945. name: "Normal",
  15946. height: math.unit(5 + 7 / 12, "feet"),
  15947. default: true
  15948. },
  15949. {
  15950. name: "Amazon",
  15951. height: math.unit(12, "feet")
  15952. },
  15953. {
  15954. name: "Giantess",
  15955. height: math.unit(160, "meters")
  15956. },
  15957. {
  15958. name: "Titaness",
  15959. height: math.unit(800, "meters")
  15960. },
  15961. ]
  15962. ))
  15963. characterMakers.push(() => makeCharacter(
  15964. { name: "Alluria", species: ["megalodon"], tags: ["anthro"] },
  15965. {
  15966. front: {
  15967. height: math.unit(6, "feet"),
  15968. weight: math.unit(150, "lb"),
  15969. name: "Front",
  15970. image: {
  15971. source: "./media/characters/alluria/front.svg",
  15972. extra: 806 / 738,
  15973. bottom: 0.01
  15974. }
  15975. },
  15976. side: {
  15977. height: math.unit(6, "feet"),
  15978. weight: math.unit(150, "lb"),
  15979. name: "Side",
  15980. image: {
  15981. source: "./media/characters/alluria/side.svg",
  15982. extra: 800 / 750,
  15983. }
  15984. },
  15985. back: {
  15986. height: math.unit(6, "feet"),
  15987. weight: math.unit(150, "lb"),
  15988. name: "Back",
  15989. image: {
  15990. source: "./media/characters/alluria/back.svg",
  15991. extra: 806 / 738,
  15992. }
  15993. },
  15994. frontMaid: {
  15995. height: math.unit(6, "feet"),
  15996. weight: math.unit(150, "lb"),
  15997. name: "Front (Maid)",
  15998. image: {
  15999. source: "./media/characters/alluria/front-maid.svg",
  16000. extra: 806 / 738,
  16001. bottom: 0.01
  16002. }
  16003. },
  16004. sideMaid: {
  16005. height: math.unit(6, "feet"),
  16006. weight: math.unit(150, "lb"),
  16007. name: "Side (Maid)",
  16008. image: {
  16009. source: "./media/characters/alluria/side-maid.svg",
  16010. extra: 800 / 750,
  16011. bottom: 0.005
  16012. }
  16013. },
  16014. backMaid: {
  16015. height: math.unit(6, "feet"),
  16016. weight: math.unit(150, "lb"),
  16017. name: "Back (Maid)",
  16018. image: {
  16019. source: "./media/characters/alluria/back-maid.svg",
  16020. extra: 806 / 738,
  16021. }
  16022. },
  16023. },
  16024. [
  16025. {
  16026. name: "Micro",
  16027. height: math.unit(6, "inches"),
  16028. default: true
  16029. },
  16030. ]
  16031. ))
  16032. characterMakers.push(() => makeCharacter(
  16033. { name: "Kyle", species: ["deer"], tags: ["anthro"] },
  16034. {
  16035. front: {
  16036. height: math.unit(6, "feet"),
  16037. weight: math.unit(150, "lb"),
  16038. name: "Front",
  16039. image: {
  16040. source: "./media/characters/kyle/front.svg",
  16041. extra: 1069 / 962,
  16042. bottom: 77.228 / 1727.45
  16043. }
  16044. },
  16045. },
  16046. [
  16047. {
  16048. name: "Macro",
  16049. height: math.unit(150, "feet"),
  16050. default: true
  16051. },
  16052. ]
  16053. ))
  16054. characterMakers.push(() => makeCharacter(
  16055. { name: "Duncan", species: ["kangaroo"], tags: ["anthro"] },
  16056. {
  16057. front: {
  16058. height: math.unit(6, "feet"),
  16059. weight: math.unit(300, "lb"),
  16060. name: "Front",
  16061. image: {
  16062. source: "./media/characters/duncan/front.svg",
  16063. extra: 1650 / 1482,
  16064. bottom: 0.05
  16065. }
  16066. },
  16067. },
  16068. [
  16069. {
  16070. name: "Macro",
  16071. height: math.unit(100, "feet"),
  16072. default: true
  16073. },
  16074. ]
  16075. ))
  16076. characterMakers.push(() => makeCharacter(
  16077. { name: "Memory", species: ["sugar-glider"], tags: ["anthro"] },
  16078. {
  16079. front: {
  16080. height: math.unit(5 + 4 / 12, "feet"),
  16081. weight: math.unit(220, "lb"),
  16082. name: "Front",
  16083. image: {
  16084. source: "./media/characters/memory/front.svg",
  16085. extra: 3641 / 3545,
  16086. bottom: 0.03
  16087. }
  16088. },
  16089. back: {
  16090. height: math.unit(5 + 4 / 12, "feet"),
  16091. weight: math.unit(220, "lb"),
  16092. name: "Back",
  16093. image: {
  16094. source: "./media/characters/memory/back.svg",
  16095. extra: 3641 / 3545,
  16096. bottom: 0.025
  16097. }
  16098. },
  16099. frontSkirt: {
  16100. height: math.unit(5 + 4 / 12, "feet"),
  16101. weight: math.unit(220, "lb"),
  16102. name: "Front (Skirt)",
  16103. image: {
  16104. source: "./media/characters/memory/front-skirt.svg",
  16105. extra: 3641 / 3545,
  16106. bottom: 0.03
  16107. }
  16108. },
  16109. frontDress: {
  16110. height: math.unit(5 + 4 / 12, "feet"),
  16111. weight: math.unit(220, "lb"),
  16112. name: "Front (Dress)",
  16113. image: {
  16114. source: "./media/characters/memory/front-dress.svg",
  16115. extra: 3641 / 3545,
  16116. bottom: 0.03
  16117. }
  16118. },
  16119. },
  16120. [
  16121. {
  16122. name: "Micro",
  16123. height: math.unit(6, "inches"),
  16124. default: true
  16125. },
  16126. {
  16127. name: "Normal",
  16128. height: math.unit(5 + 4 / 12, "feet")
  16129. },
  16130. ]
  16131. ))
  16132. characterMakers.push(() => makeCharacter(
  16133. { name: "Luno", species: ["rabbit"], tags: ["anthro"] },
  16134. {
  16135. front: {
  16136. height: math.unit(4 + 11 / 12, "feet"),
  16137. weight: math.unit(100, "lb"),
  16138. name: "Front",
  16139. image: {
  16140. source: "./media/characters/luno/front.svg",
  16141. extra: 1535 / 1487,
  16142. bottom: 0.03
  16143. }
  16144. },
  16145. },
  16146. [
  16147. {
  16148. name: "Micro",
  16149. height: math.unit(3, "inches")
  16150. },
  16151. {
  16152. name: "Normal",
  16153. height: math.unit(4 + 11 / 12, "feet"),
  16154. default: true
  16155. },
  16156. {
  16157. name: "Macro",
  16158. height: math.unit(300, "feet")
  16159. },
  16160. {
  16161. name: "Megamacro",
  16162. height: math.unit(700, "miles")
  16163. },
  16164. ]
  16165. ))
  16166. characterMakers.push(() => makeCharacter(
  16167. { name: "Jamesy", species: ["deer"], tags: ["anthro"] },
  16168. {
  16169. front: {
  16170. height: math.unit(6 + 2 / 12, "feet"),
  16171. weight: math.unit(170, "lb"),
  16172. name: "Front",
  16173. image: {
  16174. source: "./media/characters/jamesy/front.svg",
  16175. extra: 440 / 382,
  16176. bottom: 0.005
  16177. }
  16178. },
  16179. },
  16180. [
  16181. {
  16182. name: "Micro",
  16183. height: math.unit(3, "inches")
  16184. },
  16185. {
  16186. name: "Normal",
  16187. height: math.unit(6 + 2 / 12, "feet"),
  16188. default: true
  16189. },
  16190. {
  16191. name: "Macro",
  16192. height: math.unit(300, "feet")
  16193. },
  16194. {
  16195. name: "Megamacro",
  16196. height: math.unit(700, "miles")
  16197. },
  16198. ]
  16199. ))
  16200. characterMakers.push(() => makeCharacter(
  16201. { name: "Mark", species: ["fox"], tags: ["anthro"] },
  16202. {
  16203. front: {
  16204. height: math.unit(6, "feet"),
  16205. weight: math.unit(160, "lb"),
  16206. name: "Front",
  16207. image: {
  16208. source: "./media/characters/mark/front.svg",
  16209. extra: 3300 / 3100,
  16210. bottom: 136.42 / 3440.47
  16211. }
  16212. },
  16213. },
  16214. [
  16215. {
  16216. name: "Macro",
  16217. height: math.unit(120, "meters")
  16218. },
  16219. {
  16220. name: "Bigger Macro",
  16221. height: math.unit(350, "meters")
  16222. },
  16223. {
  16224. name: "Megamacro",
  16225. height: math.unit(8, "km"),
  16226. default: true
  16227. },
  16228. {
  16229. name: "Continental",
  16230. height: math.unit(4550, "km")
  16231. },
  16232. {
  16233. name: "Planetary",
  16234. height: math.unit(65000, "km")
  16235. },
  16236. ]
  16237. ))
  16238. characterMakers.push(() => makeCharacter(
  16239. { name: "Mac", species: ["t-rex"], tags: ["anthro"] },
  16240. {
  16241. front: {
  16242. height: math.unit(6, "feet"),
  16243. weight: math.unit(400, "lb"),
  16244. name: "Front",
  16245. image: {
  16246. source: "./media/characters/mac/front.svg",
  16247. extra: 1048 / 987.7,
  16248. bottom: 60 / 1107.6,
  16249. }
  16250. },
  16251. },
  16252. [
  16253. {
  16254. name: "Macro",
  16255. height: math.unit(500, "feet"),
  16256. default: true
  16257. },
  16258. ]
  16259. ))
  16260. characterMakers.push(() => makeCharacter(
  16261. { name: "Bari", species: ["ampharos"], tags: ["anthro"] },
  16262. {
  16263. front: {
  16264. height: math.unit(5 + 2 / 12, "feet"),
  16265. weight: math.unit(190, "lb"),
  16266. name: "Front",
  16267. image: {
  16268. source: "./media/characters/bari/front.svg",
  16269. extra: 3156 / 2880,
  16270. bottom: 0.03
  16271. }
  16272. },
  16273. back: {
  16274. height: math.unit(5 + 2 / 12, "feet"),
  16275. weight: math.unit(190, "lb"),
  16276. name: "Back",
  16277. image: {
  16278. source: "./media/characters/bari/back.svg",
  16279. extra: 3260 / 2834,
  16280. bottom: 0.025
  16281. }
  16282. },
  16283. frontPlush: {
  16284. height: math.unit(5 + 2 / 12, "feet"),
  16285. weight: math.unit(190, "lb"),
  16286. name: "Front (Plush)",
  16287. image: {
  16288. source: "./media/characters/bari/front-plush.svg",
  16289. extra: 1112 / 1061,
  16290. bottom: 0.002
  16291. }
  16292. },
  16293. },
  16294. [
  16295. {
  16296. name: "Micro",
  16297. height: math.unit(3, "inches")
  16298. },
  16299. {
  16300. name: "Normal",
  16301. height: math.unit(5 + 2 / 12, "feet"),
  16302. default: true
  16303. },
  16304. {
  16305. name: "Macro",
  16306. height: math.unit(20, "feet")
  16307. },
  16308. ]
  16309. ))
  16310. characterMakers.push(() => makeCharacter(
  16311. { name: "Hunter Misha Raven", species: ["saint-bernard"], tags: ["anthro"] },
  16312. {
  16313. front: {
  16314. height: math.unit(6 + 1 / 12, "feet"),
  16315. weight: math.unit(275, "lb"),
  16316. name: "Front",
  16317. image: {
  16318. source: "./media/characters/hunter-misha-raven/front.svg"
  16319. }
  16320. },
  16321. },
  16322. [
  16323. {
  16324. name: "Mortal",
  16325. height: math.unit(6 + 1 / 12, "feet")
  16326. },
  16327. {
  16328. name: "Divine",
  16329. height: math.unit(1.12134e34, "parsecs"),
  16330. default: true
  16331. },
  16332. ]
  16333. ))
  16334. characterMakers.push(() => makeCharacter(
  16335. { name: "Max Calore", species: ["typhlosion"], tags: ["anthro"] },
  16336. {
  16337. front: {
  16338. height: math.unit(6 + 3 / 12, "feet"),
  16339. weight: math.unit(220, "lb"),
  16340. name: "Front",
  16341. image: {
  16342. source: "./media/characters/max-calore/front.svg",
  16343. extra: 1700 / 1648,
  16344. bottom: 0.01
  16345. }
  16346. },
  16347. back: {
  16348. height: math.unit(6 + 3 / 12, "feet"),
  16349. weight: math.unit(220, "lb"),
  16350. name: "Back",
  16351. image: {
  16352. source: "./media/characters/max-calore/back.svg",
  16353. extra: 1700 / 1648,
  16354. bottom: 0.01
  16355. }
  16356. },
  16357. },
  16358. [
  16359. {
  16360. name: "Normal",
  16361. height: math.unit(6 + 3 / 12, "feet"),
  16362. default: true
  16363. },
  16364. ]
  16365. ))
  16366. characterMakers.push(() => makeCharacter(
  16367. { name: "Aspen", species: ["mexican-wolf"], tags: ["feral"] },
  16368. {
  16369. side: {
  16370. height: math.unit(2 + 8 / 12, "feet"),
  16371. weight: math.unit(99, "lb"),
  16372. name: "Side",
  16373. image: {
  16374. source: "./media/characters/aspen/side.svg",
  16375. extra: 152 / 138,
  16376. bottom: 0.032
  16377. }
  16378. },
  16379. },
  16380. [
  16381. {
  16382. name: "Normal",
  16383. height: math.unit(2 + 8 / 12, "feet"),
  16384. default: true
  16385. },
  16386. ]
  16387. ))
  16388. characterMakers.push(() => makeCharacter(
  16389. { name: "Sheila (Feral Wolf)", species: ["wolf"], tags: ["feral"] },
  16390. {
  16391. side: {
  16392. height: math.unit(3 + 2 / 12, "feet"),
  16393. weight: math.unit(224, "lb"),
  16394. name: "Side",
  16395. image: {
  16396. source: "./media/characters/sheila-feral-wolf/side.svg",
  16397. extra: 179 / 166,
  16398. bottom: 0.03
  16399. }
  16400. },
  16401. },
  16402. [
  16403. {
  16404. name: "Normal",
  16405. height: math.unit(3 + 2 / 12, "feet"),
  16406. default: true
  16407. },
  16408. ]
  16409. ))
  16410. characterMakers.push(() => makeCharacter(
  16411. { name: "Michelle", species: ["fox"], tags: ["feral"] },
  16412. {
  16413. side: {
  16414. height: math.unit(1 + 9 / 12, "feet"),
  16415. weight: math.unit(38, "lb"),
  16416. name: "Side",
  16417. image: {
  16418. source: "./media/characters/michelle/side.svg",
  16419. extra: 147 / 136.7,
  16420. bottom: 0.03
  16421. }
  16422. },
  16423. },
  16424. [
  16425. {
  16426. name: "Normal",
  16427. height: math.unit(1 + 9 / 12, "feet"),
  16428. default: true
  16429. },
  16430. ]
  16431. ))
  16432. characterMakers.push(() => makeCharacter(
  16433. { name: "Nino", species: ["stoat"], tags: ["anthro"] },
  16434. {
  16435. front: {
  16436. height: math.unit(1 + 1 / 12, "feet"),
  16437. weight: math.unit(18, "lb"),
  16438. name: "Front",
  16439. image: {
  16440. source: "./media/characters/nino/front.svg"
  16441. }
  16442. },
  16443. },
  16444. [
  16445. {
  16446. name: "Normal",
  16447. height: math.unit(1 + 1 / 12, "feet"),
  16448. default: true
  16449. },
  16450. ]
  16451. ))
  16452. characterMakers.push(() => makeCharacter(
  16453. { name: "Viola", species: ["stoat"], tags: ["anthro"] },
  16454. {
  16455. front: {
  16456. height: math.unit(1, "feet"),
  16457. weight: math.unit(16, "lb"),
  16458. name: "Front",
  16459. image: {
  16460. source: "./media/characters/viola/front.svg"
  16461. }
  16462. },
  16463. },
  16464. [
  16465. {
  16466. name: "Normal",
  16467. height: math.unit(1, "feet"),
  16468. default: true
  16469. },
  16470. ]
  16471. ))
  16472. characterMakers.push(() => makeCharacter(
  16473. { name: "Atlas", species: ["grizzly-bear"], tags: ["anthro"] },
  16474. {
  16475. front: {
  16476. height: math.unit(6 + 5 / 12, "feet"),
  16477. weight: math.unit(580, "lb"),
  16478. name: "Front",
  16479. image: {
  16480. source: "./media/characters/atlas/front.svg",
  16481. extra: 298.5 / 290,
  16482. bottom: 0.015
  16483. }
  16484. },
  16485. },
  16486. [
  16487. {
  16488. name: "Normal",
  16489. height: math.unit(6 + 5 / 12, "feet"),
  16490. default: true
  16491. },
  16492. ]
  16493. ))
  16494. characterMakers.push(() => makeCharacter(
  16495. { name: "Davy", species: ["cat"], tags: ["feral"] },
  16496. {
  16497. side: {
  16498. height: math.unit(1 + 10 / 12, "feet"),
  16499. weight: math.unit(25, "lb"),
  16500. name: "Side",
  16501. image: {
  16502. source: "./media/characters/davy/side.svg",
  16503. extra: 200 / 170,
  16504. bottom: 0.01
  16505. }
  16506. },
  16507. },
  16508. [
  16509. {
  16510. name: "Normal",
  16511. height: math.unit(1 + 10 / 12, "feet"),
  16512. default: true
  16513. },
  16514. ]
  16515. ))
  16516. characterMakers.push(() => makeCharacter(
  16517. { name: "Fiona", species: ["deer"], tags: ["feral"] },
  16518. {
  16519. side: {
  16520. height: math.unit(4 + 8 / 12, "feet"),
  16521. weight: math.unit(166, "lb"),
  16522. name: "Side",
  16523. image: {
  16524. source: "./media/characters/fiona/side.svg",
  16525. extra: 232 / 220,
  16526. bottom: 0.03
  16527. }
  16528. },
  16529. },
  16530. [
  16531. {
  16532. name: "Normal",
  16533. height: math.unit(4 + 8 / 12, "feet"),
  16534. default: true
  16535. },
  16536. ]
  16537. ))
  16538. characterMakers.push(() => makeCharacter(
  16539. { name: "Lyla", species: ["european-honey-buzzard"], tags: ["feral"] },
  16540. {
  16541. front: {
  16542. height: math.unit(2, "feet"),
  16543. weight: math.unit(62, "lb"),
  16544. name: "Front",
  16545. image: {
  16546. source: "./media/characters/lyla/front.svg",
  16547. bottom: 0.1
  16548. }
  16549. },
  16550. },
  16551. [
  16552. {
  16553. name: "Normal",
  16554. height: math.unit(2, "feet"),
  16555. default: true
  16556. },
  16557. ]
  16558. ))
  16559. characterMakers.push(() => makeCharacter(
  16560. { name: "Perseus", species: ["monitor-lizard"], tags: ["feral"] },
  16561. {
  16562. side: {
  16563. height: math.unit(1.8, "feet"),
  16564. weight: math.unit(44, "lb"),
  16565. name: "Side",
  16566. image: {
  16567. source: "./media/characters/perseus/side.svg",
  16568. bottom: 0.21
  16569. }
  16570. },
  16571. },
  16572. [
  16573. {
  16574. name: "Normal",
  16575. height: math.unit(1.8, "feet"),
  16576. default: true
  16577. },
  16578. ]
  16579. ))
  16580. characterMakers.push(() => makeCharacter(
  16581. { name: "Remus", species: ["great-blue-heron"], tags: ["feral"] },
  16582. {
  16583. side: {
  16584. height: math.unit(4 + 2 / 12, "feet"),
  16585. weight: math.unit(20, "lb"),
  16586. name: "Side",
  16587. image: {
  16588. source: "./media/characters/remus/side.svg"
  16589. }
  16590. },
  16591. },
  16592. [
  16593. {
  16594. name: "Normal",
  16595. height: math.unit(4 + 2 / 12, "feet"),
  16596. default: true
  16597. },
  16598. ]
  16599. ))
  16600. characterMakers.push(() => makeCharacter(
  16601. { name: "Raf", species: ["maned-wolf"], tags: ["anthro"] },
  16602. {
  16603. front: {
  16604. height: math.unit(4 + 11 / 12, "feet"),
  16605. weight: math.unit(114, "lb"),
  16606. name: "Front",
  16607. image: {
  16608. source: "./media/characters/raf/front.svg",
  16609. bottom: 20.5 / 1863
  16610. }
  16611. },
  16612. side: {
  16613. height: math.unit(4 + 11 / 12, "feet"),
  16614. weight: math.unit(114, "lb"),
  16615. name: "Side",
  16616. image: {
  16617. source: "./media/characters/raf/side.svg",
  16618. bottom: 22 / 1822
  16619. }
  16620. },
  16621. },
  16622. [
  16623. {
  16624. name: "Micro",
  16625. height: math.unit(2, "inches")
  16626. },
  16627. {
  16628. name: "Normal",
  16629. height: math.unit(4 + 11 / 12, "feet"),
  16630. default: true
  16631. },
  16632. {
  16633. name: "Macro",
  16634. height: math.unit(70, "feet")
  16635. },
  16636. ]
  16637. ))
  16638. characterMakers.push(() => makeCharacter(
  16639. { name: "Liam Einarr", species: ["gray-wolf"], tags: ["anthro"] },
  16640. {
  16641. front: {
  16642. height: math.unit(1.5, "meters"),
  16643. weight: math.unit(68, "kg"),
  16644. name: "Front",
  16645. image: {
  16646. source: "./media/characters/liam-einarr/front.svg",
  16647. extra: 2822 / 2666
  16648. }
  16649. },
  16650. back: {
  16651. height: math.unit(1.5, "meters"),
  16652. weight: math.unit(68, "kg"),
  16653. name: "Back",
  16654. image: {
  16655. source: "./media/characters/liam-einarr/back.svg",
  16656. extra: 2822 / 2666,
  16657. bottom: 0.015
  16658. }
  16659. },
  16660. },
  16661. [
  16662. {
  16663. name: "Normal",
  16664. height: math.unit(1.5, "meters"),
  16665. default: true
  16666. },
  16667. {
  16668. name: "Macro",
  16669. height: math.unit(150, "meters")
  16670. },
  16671. {
  16672. name: "Megamacro",
  16673. height: math.unit(35, "km")
  16674. },
  16675. ]
  16676. ))
  16677. characterMakers.push(() => makeCharacter(
  16678. { name: "Linda", species: ["bull-terrier"], tags: ["anthro"] },
  16679. {
  16680. front: {
  16681. height: math.unit(6, "feet"),
  16682. weight: math.unit(75, "kg"),
  16683. name: "Front",
  16684. image: {
  16685. source: "./media/characters/linda/front.svg",
  16686. extra: 930 / 874,
  16687. bottom: 0.004
  16688. }
  16689. },
  16690. },
  16691. [
  16692. {
  16693. name: "Normal",
  16694. height: math.unit(6, "feet"),
  16695. default: true
  16696. },
  16697. ]
  16698. ))
  16699. characterMakers.push(() => makeCharacter(
  16700. { name: "Caylex", species: ["sergal"], tags: ["anthro"] },
  16701. {
  16702. front: {
  16703. height: math.unit(6 + 8 / 12, "feet"),
  16704. weight: math.unit(220, "lb"),
  16705. name: "Front",
  16706. image: {
  16707. source: "./media/characters/caylex/front.svg",
  16708. extra: 821 / 772,
  16709. bottom: 0.07
  16710. }
  16711. },
  16712. back: {
  16713. height: math.unit(6 + 8 / 12, "feet"),
  16714. weight: math.unit(220, "lb"),
  16715. name: "Back",
  16716. image: {
  16717. source: "./media/characters/caylex/back.svg",
  16718. extra: 821 / 772,
  16719. bottom: 0.022
  16720. }
  16721. },
  16722. hand: {
  16723. height: math.unit(1.25, "feet"),
  16724. name: "Hand",
  16725. image: {
  16726. source: "./media/characters/caylex/hand.svg"
  16727. }
  16728. },
  16729. foot: {
  16730. height: math.unit(1.6, "feet"),
  16731. name: "Foot",
  16732. image: {
  16733. source: "./media/characters/caylex/foot.svg"
  16734. }
  16735. },
  16736. armored: {
  16737. height: math.unit(6 + 8 / 12, "feet"),
  16738. weight: math.unit(250, "lb"),
  16739. name: "Armored",
  16740. image: {
  16741. source: "./media/characters/caylex/armored.svg",
  16742. extra: 1420 / 1310,
  16743. bottom: 0.045
  16744. }
  16745. },
  16746. },
  16747. [
  16748. {
  16749. name: "Normal",
  16750. height: math.unit(6 + 8 / 12, "feet"),
  16751. default: true
  16752. },
  16753. {
  16754. name: "Normal+",
  16755. height: math.unit(12, "feet")
  16756. },
  16757. ]
  16758. ))
  16759. characterMakers.push(() => makeCharacter(
  16760. { name: "Alana", species: ["wolf"], tags: ["anthro"] },
  16761. {
  16762. front: {
  16763. height: math.unit(7 + 6 / 12, "feet"),
  16764. weight: math.unit(288, "lb"),
  16765. name: "Front",
  16766. image: {
  16767. source: "./media/characters/alana/front.svg",
  16768. extra: 679 / 653,
  16769. bottom: 22.5 / 701
  16770. }
  16771. },
  16772. },
  16773. [
  16774. {
  16775. name: "Normal",
  16776. height: math.unit(7 + 6 / 12, "feet")
  16777. },
  16778. {
  16779. name: "Large",
  16780. height: math.unit(50, "feet")
  16781. },
  16782. {
  16783. name: "Macro",
  16784. height: math.unit(100, "feet"),
  16785. default: true
  16786. },
  16787. {
  16788. name: "Macro+",
  16789. height: math.unit(200, "feet")
  16790. },
  16791. ]
  16792. ))
  16793. characterMakers.push(() => makeCharacter(
  16794. { name: "Hasani", species: ["hyena"], tags: ["anthro"] },
  16795. {
  16796. front: {
  16797. height: math.unit(6 + 1 / 12, "feet"),
  16798. weight: math.unit(210, "lb"),
  16799. name: "Front",
  16800. image: {
  16801. source: "./media/characters/hasani/front.svg",
  16802. extra: 244 / 232,
  16803. bottom: 0.01
  16804. }
  16805. },
  16806. back: {
  16807. height: math.unit(6 + 1 / 12, "feet"),
  16808. weight: math.unit(210, "lb"),
  16809. name: "Back",
  16810. image: {
  16811. source: "./media/characters/hasani/back.svg",
  16812. extra: 244 / 232,
  16813. bottom: 0.01
  16814. }
  16815. },
  16816. },
  16817. [
  16818. {
  16819. name: "Normal",
  16820. height: math.unit(6 + 1 / 12, "feet")
  16821. },
  16822. {
  16823. name: "Macro",
  16824. height: math.unit(175, "feet"),
  16825. default: true
  16826. },
  16827. ]
  16828. ))
  16829. characterMakers.push(() => makeCharacter(
  16830. { name: "Nita", species: ["african-golden-cat"], tags: ["anthro"] },
  16831. {
  16832. front: {
  16833. height: math.unit(1.82, "meters"),
  16834. weight: math.unit(140, "lb"),
  16835. name: "Front",
  16836. image: {
  16837. source: "./media/characters/nita/front.svg",
  16838. extra: 2473 / 2363,
  16839. bottom: 0.01
  16840. }
  16841. },
  16842. },
  16843. [
  16844. {
  16845. name: "Normal",
  16846. height: math.unit(1.82, "m")
  16847. },
  16848. {
  16849. name: "Macro",
  16850. height: math.unit(300, "m")
  16851. },
  16852. {
  16853. name: "Mistake Canon",
  16854. height: math.unit(0.5, "miles"),
  16855. default: true
  16856. },
  16857. {
  16858. name: "Big Mistake",
  16859. height: math.unit(13, "miles")
  16860. },
  16861. {
  16862. name: "Playing God",
  16863. height: math.unit(2450, "miles")
  16864. },
  16865. ]
  16866. ))
  16867. characterMakers.push(() => makeCharacter(
  16868. { name: "Shiriko", species: ["kobold"], tags: ["anthro"] },
  16869. {
  16870. front: {
  16871. height: math.unit(4, "feet"),
  16872. weight: math.unit(120, "lb"),
  16873. name: "Front",
  16874. image: {
  16875. source: "./media/characters/shiriko/front.svg",
  16876. extra: 195 / 188
  16877. }
  16878. },
  16879. },
  16880. [
  16881. {
  16882. name: "Normal",
  16883. height: math.unit(4, "feet"),
  16884. default: true
  16885. },
  16886. ]
  16887. ))
  16888. characterMakers.push(() => makeCharacter(
  16889. { name: "Deja", species: ["kangaroo"], tags: ["anthro"] },
  16890. {
  16891. front: {
  16892. height: math.unit(6, "feet"),
  16893. name: "front",
  16894. image: {
  16895. source: "./media/characters/deja/front.svg",
  16896. extra: 926 / 840,
  16897. bottom: 0.07
  16898. }
  16899. },
  16900. },
  16901. [
  16902. {
  16903. name: "Planck Length",
  16904. height: math.unit(1.6e-35, "meters")
  16905. },
  16906. {
  16907. name: "Normal",
  16908. height: math.unit(30.48, "meters"),
  16909. default: true
  16910. },
  16911. {
  16912. name: "Universal",
  16913. height: math.unit(8.8e26, "meters")
  16914. },
  16915. ]
  16916. ))
  16917. characterMakers.push(() => makeCharacter(
  16918. { name: "Anima", species: ["black-panther"], tags: ["anthro"] },
  16919. {
  16920. side: {
  16921. height: math.unit(8, "feet"),
  16922. weight: math.unit(6300, "lb"),
  16923. name: "Side",
  16924. image: {
  16925. source: "./media/characters/anima/side.svg",
  16926. bottom: 0.035
  16927. }
  16928. },
  16929. },
  16930. [
  16931. {
  16932. name: "Normal",
  16933. height: math.unit(8, "feet"),
  16934. default: true
  16935. },
  16936. ]
  16937. ))
  16938. characterMakers.push(() => makeCharacter(
  16939. { name: "Bianca", species: ["cat", "rabbit"], tags: ["anthro"] },
  16940. {
  16941. front: {
  16942. height: math.unit(8, "feet"),
  16943. weight: math.unit(350, "lb"),
  16944. name: "Front",
  16945. image: {
  16946. source: "./media/characters/bianca/front.svg",
  16947. extra: 234 / 225,
  16948. bottom: 0.03
  16949. }
  16950. },
  16951. },
  16952. [
  16953. {
  16954. name: "Normal",
  16955. height: math.unit(8, "feet"),
  16956. default: true
  16957. },
  16958. ]
  16959. ))
  16960. characterMakers.push(() => makeCharacter(
  16961. { name: "Adinia", species: ["kelpie", "nykur"], tags: ["anthro"] },
  16962. {
  16963. front: {
  16964. height: math.unit(6, "feet"),
  16965. weight: math.unit(150, "lb"),
  16966. name: "Front",
  16967. image: {
  16968. source: "./media/characters/adinia/front.svg",
  16969. extra: 1845 / 1672,
  16970. bottom: 0.02
  16971. }
  16972. },
  16973. back: {
  16974. height: math.unit(6, "feet"),
  16975. weight: math.unit(150, "lb"),
  16976. name: "Back",
  16977. image: {
  16978. source: "./media/characters/adinia/back.svg",
  16979. extra: 1845 / 1672,
  16980. bottom: 0.002
  16981. }
  16982. },
  16983. },
  16984. [
  16985. {
  16986. name: "Normal",
  16987. height: math.unit(11 + 5 / 12, "feet"),
  16988. default: true
  16989. },
  16990. ]
  16991. ))
  16992. characterMakers.push(() => makeCharacter(
  16993. { name: "Lykasa", species: ["monster"], tags: ["anthro"] },
  16994. {
  16995. front: {
  16996. height: math.unit(3, "meters"),
  16997. weight: math.unit(200, "kg"),
  16998. name: "Front",
  16999. image: {
  17000. source: "./media/characters/lykasa/front.svg",
  17001. extra: 1076 / 976,
  17002. bottom: 0.06
  17003. }
  17004. },
  17005. },
  17006. [
  17007. {
  17008. name: "Normal",
  17009. height: math.unit(3, "meters")
  17010. },
  17011. {
  17012. name: "Kaiju",
  17013. height: math.unit(120, "meters"),
  17014. default: true
  17015. },
  17016. {
  17017. name: "Mega Kaiju",
  17018. height: math.unit(240, "km")
  17019. },
  17020. {
  17021. name: "Giga Kaiju",
  17022. height: math.unit(400, "megameters")
  17023. },
  17024. {
  17025. name: "Tera Kaiju",
  17026. height: math.unit(800, "gigameters")
  17027. },
  17028. {
  17029. name: "Kaiju Dragon Goddess",
  17030. height: math.unit(26, "zettaparsecs")
  17031. },
  17032. ]
  17033. ))
  17034. characterMakers.push(() => makeCharacter(
  17035. { name: "Malfaren", species: ["dragon"], tags: ["feral"] },
  17036. {
  17037. side: {
  17038. height: math.unit(283 / 124 * 6, "feet"),
  17039. weight: math.unit(35000, "lb"),
  17040. name: "Side",
  17041. image: {
  17042. source: "./media/characters/malfaren/side.svg",
  17043. extra: 2500 / 1010,
  17044. bottom: 0.01
  17045. }
  17046. },
  17047. front: {
  17048. height: math.unit(22.36, "feet"),
  17049. weight: math.unit(35000, "lb"),
  17050. name: "Front",
  17051. image: {
  17052. source: "./media/characters/malfaren/front.svg",
  17053. extra: 1631 / 1476,
  17054. bottom: 0.01
  17055. }
  17056. },
  17057. maw: {
  17058. height: math.unit(6.9, "feet"),
  17059. name: "Maw",
  17060. image: {
  17061. source: "./media/characters/malfaren/maw.svg"
  17062. }
  17063. },
  17064. },
  17065. [
  17066. {
  17067. name: "Big",
  17068. height: math.unit(283 / 162 * 6, "feet"),
  17069. },
  17070. {
  17071. name: "Bigger",
  17072. height: math.unit(283 / 124 * 6, "feet")
  17073. },
  17074. {
  17075. name: "Massive",
  17076. height: math.unit(283 / 92 * 6, "feet"),
  17077. default: true
  17078. },
  17079. {
  17080. name: "👀💦",
  17081. height: math.unit(283 / 73 * 6, "feet"),
  17082. },
  17083. ]
  17084. ))
  17085. characterMakers.push(() => makeCharacter(
  17086. { name: "Kernel", species: ["wolf"], tags: ["anthro"] },
  17087. {
  17088. front: {
  17089. height: math.unit(1.7, "m"),
  17090. weight: math.unit(70, "kg"),
  17091. name: "Front",
  17092. image: {
  17093. source: "./media/characters/kernel/front.svg",
  17094. extra: 222 / 210,
  17095. bottom: 0.007
  17096. }
  17097. },
  17098. },
  17099. [
  17100. {
  17101. name: "Nano",
  17102. height: math.unit(17, "micrometers")
  17103. },
  17104. {
  17105. name: "Micro",
  17106. height: math.unit(1.7, "mm")
  17107. },
  17108. {
  17109. name: "Small",
  17110. height: math.unit(1.7, "cm")
  17111. },
  17112. {
  17113. name: "Normal",
  17114. height: math.unit(1.7, "m"),
  17115. default: true
  17116. },
  17117. ]
  17118. ))
  17119. characterMakers.push(() => makeCharacter(
  17120. { name: "Jayne Folest", species: ["fox"], tags: ["anthro"] },
  17121. {
  17122. front: {
  17123. height: math.unit(1.75, "meters"),
  17124. weight: math.unit(65, "kg"),
  17125. name: "Front",
  17126. image: {
  17127. source: "./media/characters/jayne-folest/front.svg",
  17128. extra: 2115 / 2007,
  17129. bottom: 0.02
  17130. }
  17131. },
  17132. back: {
  17133. height: math.unit(1.75, "meters"),
  17134. weight: math.unit(65, "kg"),
  17135. name: "Back",
  17136. image: {
  17137. source: "./media/characters/jayne-folest/back.svg",
  17138. extra: 2115 / 2007,
  17139. bottom: 0.005
  17140. }
  17141. },
  17142. frontClothed: {
  17143. height: math.unit(1.75, "meters"),
  17144. weight: math.unit(65, "kg"),
  17145. name: "Front (Clothed)",
  17146. image: {
  17147. source: "./media/characters/jayne-folest/front-clothed.svg",
  17148. extra: 2115 / 2007,
  17149. bottom: 0.035
  17150. }
  17151. },
  17152. hand: {
  17153. height: math.unit(1 / 1.260, "feet"),
  17154. name: "Hand",
  17155. image: {
  17156. source: "./media/characters/jayne-folest/hand.svg"
  17157. }
  17158. },
  17159. foot: {
  17160. height: math.unit(1 / 0.918, "feet"),
  17161. name: "Foot",
  17162. image: {
  17163. source: "./media/characters/jayne-folest/foot.svg"
  17164. }
  17165. },
  17166. },
  17167. [
  17168. {
  17169. name: "Micro",
  17170. height: math.unit(4, "cm")
  17171. },
  17172. {
  17173. name: "Normal",
  17174. height: math.unit(1.75, "meters")
  17175. },
  17176. {
  17177. name: "Macro",
  17178. height: math.unit(47.5, "meters"),
  17179. default: true
  17180. },
  17181. ]
  17182. ))
  17183. characterMakers.push(() => makeCharacter(
  17184. { name: "Algier", species: ["mouse"], tags: ["anthro"] },
  17185. {
  17186. front: {
  17187. height: math.unit(180, "cm"),
  17188. weight: math.unit(70, "kg"),
  17189. name: "Front",
  17190. image: {
  17191. source: "./media/characters/algier/front.svg",
  17192. extra: 596 / 572,
  17193. bottom: 0.04
  17194. }
  17195. },
  17196. back: {
  17197. height: math.unit(180, "cm"),
  17198. weight: math.unit(70, "kg"),
  17199. name: "Back",
  17200. image: {
  17201. source: "./media/characters/algier/back.svg",
  17202. extra: 596 / 572,
  17203. bottom: 0.025
  17204. }
  17205. },
  17206. frontdressed: {
  17207. height: math.unit(180, "cm"),
  17208. weight: math.unit(150, "kg"),
  17209. name: "Front-dressed",
  17210. image: {
  17211. source: "./media/characters/algier/front-dressed.svg",
  17212. extra: 596 / 572,
  17213. bottom: 0.038
  17214. }
  17215. },
  17216. },
  17217. [
  17218. {
  17219. name: "Micro",
  17220. height: math.unit(5, "cm")
  17221. },
  17222. {
  17223. name: "Normal",
  17224. height: math.unit(180, "cm"),
  17225. default: true
  17226. },
  17227. {
  17228. name: "Macro",
  17229. height: math.unit(64, "m")
  17230. },
  17231. ]
  17232. ))
  17233. characterMakers.push(() => makeCharacter(
  17234. { name: "Pretzel", species: ["synx"], tags: ["anthro"] },
  17235. {
  17236. upright: {
  17237. height: math.unit(7, "feet"),
  17238. weight: math.unit(300, "lb"),
  17239. name: "Upright",
  17240. image: {
  17241. source: "./media/characters/pretzel/upright.svg",
  17242. extra: 534 / 522,
  17243. bottom: 0.065
  17244. }
  17245. },
  17246. sprawling: {
  17247. height: math.unit(3.75, "feet"),
  17248. weight: math.unit(300, "lb"),
  17249. name: "Sprawling",
  17250. image: {
  17251. source: "./media/characters/pretzel/sprawling.svg",
  17252. extra: 314 / 281,
  17253. bottom: 0.1
  17254. }
  17255. },
  17256. tongue: {
  17257. height: math.unit(2, "feet"),
  17258. name: "Tongue",
  17259. image: {
  17260. source: "./media/characters/pretzel/tongue.svg"
  17261. }
  17262. },
  17263. },
  17264. [
  17265. {
  17266. name: "Normal",
  17267. height: math.unit(7, "feet"),
  17268. default: true
  17269. },
  17270. {
  17271. name: "Oversized",
  17272. height: math.unit(15, "feet")
  17273. },
  17274. {
  17275. name: "Huge",
  17276. height: math.unit(30, "feet")
  17277. },
  17278. {
  17279. name: "Macro",
  17280. height: math.unit(250, "feet")
  17281. },
  17282. ]
  17283. ))
  17284. characterMakers.push(() => makeCharacter(
  17285. { name: "Roxi", species: ["fox"], tags: ["anthro", "feral"] },
  17286. {
  17287. sideFront: {
  17288. height: math.unit(5 + 2 / 12, "feet"),
  17289. weight: math.unit(120, "lb"),
  17290. name: "Front Side",
  17291. image: {
  17292. source: "./media/characters/roxi/side-front.svg",
  17293. extra: 2924 / 2717,
  17294. bottom: 0.08
  17295. }
  17296. },
  17297. sideBack: {
  17298. height: math.unit(5 + 2 / 12, "feet"),
  17299. weight: math.unit(120, "lb"),
  17300. name: "Back Side",
  17301. image: {
  17302. source: "./media/characters/roxi/side-back.svg",
  17303. extra: 2904 / 2693,
  17304. bottom: 0.06
  17305. }
  17306. },
  17307. front: {
  17308. height: math.unit(5 + 2 / 12, "feet"),
  17309. weight: math.unit(120, "lb"),
  17310. name: "Front",
  17311. image: {
  17312. source: "./media/characters/roxi/front.svg",
  17313. extra: 2028 / 1907,
  17314. bottom: 0.01
  17315. }
  17316. },
  17317. frontAlt: {
  17318. height: math.unit(5 + 2 / 12, "feet"),
  17319. weight: math.unit(120, "lb"),
  17320. name: "Front (Alt)",
  17321. image: {
  17322. source: "./media/characters/roxi/front-alt.svg",
  17323. extra: 1828 / 1798,
  17324. bottom: 0.01
  17325. }
  17326. },
  17327. sitting: {
  17328. height: math.unit(2.8, "feet"),
  17329. weight: math.unit(120, "lb"),
  17330. name: "Sitting",
  17331. image: {
  17332. source: "./media/characters/roxi/sitting.svg",
  17333. extra: 2660 / 2462,
  17334. bottom: 0.1
  17335. }
  17336. },
  17337. },
  17338. [
  17339. {
  17340. name: "Normal",
  17341. height: math.unit(5 + 2 / 12, "feet"),
  17342. default: true
  17343. },
  17344. ]
  17345. ))
  17346. characterMakers.push(() => makeCharacter(
  17347. { name: "Shadow", species: ["dragon"], tags: ["feral"] },
  17348. {
  17349. side: {
  17350. height: math.unit(55, "feet"),
  17351. weight: math.unit(153, "tons"),
  17352. name: "Side",
  17353. image: {
  17354. source: "./media/characters/shadow/side.svg",
  17355. extra: 701 / 628,
  17356. bottom: 0.02
  17357. }
  17358. },
  17359. flying: {
  17360. height: math.unit(145, "feet"),
  17361. weight: math.unit(153, "tons"),
  17362. name: "Flying",
  17363. image: {
  17364. source: "./media/characters/shadow/flying.svg"
  17365. }
  17366. },
  17367. },
  17368. [
  17369. {
  17370. name: "Normal",
  17371. height: math.unit(55, "feet"),
  17372. default: true
  17373. },
  17374. ]
  17375. ))
  17376. characterMakers.push(() => makeCharacter(
  17377. { name: "Marcie", species: ["kangaroo"], tags: ["anthro"] },
  17378. {
  17379. front: {
  17380. height: math.unit(6, "feet"),
  17381. weight: math.unit(200, "lb"),
  17382. name: "Front",
  17383. image: {
  17384. source: "./media/characters/marcie/front.svg",
  17385. extra: 960 / 876,
  17386. bottom: 58 / 1017.87
  17387. }
  17388. },
  17389. },
  17390. [
  17391. {
  17392. name: "Macro",
  17393. height: math.unit(1, "mile"),
  17394. default: true
  17395. },
  17396. ]
  17397. ))
  17398. characterMakers.push(() => makeCharacter(
  17399. { name: "Kachina", species: ["wolf"], tags: ["anthro"] },
  17400. {
  17401. front: {
  17402. height: math.unit(7, "feet"),
  17403. weight: math.unit(200, "lb"),
  17404. name: "Front",
  17405. image: {
  17406. source: "./media/characters/kachina/front.svg",
  17407. extra: 1290.68 / 1119,
  17408. bottom: 36.5 / 1327.18
  17409. }
  17410. },
  17411. },
  17412. [
  17413. {
  17414. name: "Normal",
  17415. height: math.unit(7, "feet"),
  17416. default: true
  17417. },
  17418. ]
  17419. ))
  17420. characterMakers.push(() => makeCharacter(
  17421. { name: "Kash", species: ["canine"], tags: ["feral"] },
  17422. {
  17423. looking: {
  17424. height: math.unit(2, "meters"),
  17425. weight: math.unit(300, "kg"),
  17426. name: "Looking",
  17427. image: {
  17428. source: "./media/characters/kash/looking.svg",
  17429. extra: 474 / 344,
  17430. bottom: 0.03
  17431. }
  17432. },
  17433. side: {
  17434. height: math.unit(2, "meters"),
  17435. weight: math.unit(300, "kg"),
  17436. name: "Side",
  17437. image: {
  17438. source: "./media/characters/kash/side.svg",
  17439. extra: 302 / 251,
  17440. bottom: 0.03
  17441. }
  17442. },
  17443. front: {
  17444. height: math.unit(2, "meters"),
  17445. weight: math.unit(300, "kg"),
  17446. name: "Front",
  17447. image: {
  17448. source: "./media/characters/kash/front.svg",
  17449. extra: 495 / 360,
  17450. bottom: 0.015
  17451. }
  17452. },
  17453. },
  17454. [
  17455. {
  17456. name: "Normal",
  17457. height: math.unit(2, "meters"),
  17458. default: true
  17459. },
  17460. {
  17461. name: "Big",
  17462. height: math.unit(3, "meters")
  17463. },
  17464. {
  17465. name: "Large",
  17466. height: math.unit(5, "meters")
  17467. },
  17468. ]
  17469. ))
  17470. characterMakers.push(() => makeCharacter(
  17471. { name: "Lalim", species: ["dragon"], tags: ["feral"] },
  17472. {
  17473. feeding: {
  17474. height: math.unit(6.7, "feet"),
  17475. weight: math.unit(350, "lb"),
  17476. name: "Feeding",
  17477. image: {
  17478. source: "./media/characters/lalim/feeding.svg",
  17479. }
  17480. },
  17481. },
  17482. [
  17483. {
  17484. name: "Normal",
  17485. height: math.unit(6.7, "feet"),
  17486. default: true
  17487. },
  17488. ]
  17489. ))
  17490. characterMakers.push(() => makeCharacter(
  17491. { name: "De'Vout", species: ["dragon"], tags: ["anthro"] },
  17492. {
  17493. front: {
  17494. height: math.unit(9.5, "feet"),
  17495. weight: math.unit(600, "lb"),
  17496. name: "Front",
  17497. image: {
  17498. source: "./media/characters/de'vout/front.svg",
  17499. extra: 1443 / 1328,
  17500. bottom: 0.025
  17501. }
  17502. },
  17503. back: {
  17504. height: math.unit(9.5, "feet"),
  17505. weight: math.unit(600, "lb"),
  17506. name: "Back",
  17507. image: {
  17508. source: "./media/characters/de'vout/back.svg",
  17509. extra: 1443 / 1328
  17510. }
  17511. },
  17512. frontDressed: {
  17513. height: math.unit(9.5, "feet"),
  17514. weight: math.unit(600, "lb"),
  17515. name: "Front (Dressed",
  17516. image: {
  17517. source: "./media/characters/de'vout/front-dressed.svg",
  17518. extra: 1443 / 1328,
  17519. bottom: 0.025
  17520. }
  17521. },
  17522. backDressed: {
  17523. height: math.unit(9.5, "feet"),
  17524. weight: math.unit(600, "lb"),
  17525. name: "Back (Dressed",
  17526. image: {
  17527. source: "./media/characters/de'vout/back-dressed.svg",
  17528. extra: 1443 / 1328
  17529. }
  17530. },
  17531. },
  17532. [
  17533. {
  17534. name: "Normal",
  17535. height: math.unit(9.5, "feet"),
  17536. default: true
  17537. },
  17538. ]
  17539. ))
  17540. characterMakers.push(() => makeCharacter(
  17541. { name: "Talana", species: ["dragon"], tags: ["anthro"] },
  17542. {
  17543. front: {
  17544. height: math.unit(8, "feet"),
  17545. weight: math.unit(225, "lb"),
  17546. name: "Front",
  17547. image: {
  17548. source: "./media/characters/talana/front.svg",
  17549. extra: 1410 / 1300,
  17550. bottom: 0.015
  17551. }
  17552. },
  17553. frontDressed: {
  17554. height: math.unit(8, "feet"),
  17555. weight: math.unit(225, "lb"),
  17556. name: "Front (Dressed",
  17557. image: {
  17558. source: "./media/characters/talana/front-dressed.svg",
  17559. extra: 1410 / 1300,
  17560. bottom: 0.015
  17561. }
  17562. },
  17563. },
  17564. [
  17565. {
  17566. name: "Normal",
  17567. height: math.unit(8, "feet"),
  17568. default: true
  17569. },
  17570. ]
  17571. ))
  17572. characterMakers.push(() => makeCharacter(
  17573. { name: "Xeauvok", species: ["monster"], tags: ["anthro"] },
  17574. {
  17575. side: {
  17576. height: math.unit(7.2, "feet"),
  17577. weight: math.unit(150, "lb"),
  17578. name: "Side",
  17579. image: {
  17580. source: "./media/characters/xeauvok/side.svg",
  17581. extra: 1975 / 1523,
  17582. bottom: 0.07
  17583. }
  17584. },
  17585. },
  17586. [
  17587. {
  17588. name: "Normal",
  17589. height: math.unit(7.2, "feet"),
  17590. default: true
  17591. },
  17592. ]
  17593. ))
  17594. characterMakers.push(() => makeCharacter(
  17595. { name: "Zara", species: ["human", "horse"], tags: ["taur"] },
  17596. {
  17597. side: {
  17598. height: math.unit(10, "feet"),
  17599. weight: math.unit(900, "kg"),
  17600. name: "Side",
  17601. image: {
  17602. source: "./media/characters/zara/side.svg",
  17603. extra: 504 / 498
  17604. }
  17605. },
  17606. },
  17607. [
  17608. {
  17609. name: "Normal",
  17610. height: math.unit(10, "feet"),
  17611. default: true
  17612. },
  17613. ]
  17614. ))
  17615. characterMakers.push(() => makeCharacter(
  17616. { name: "Richard (Dragon)", species: ["dragon"], tags: ["feral"] },
  17617. {
  17618. side: {
  17619. height: math.unit(6, "feet"),
  17620. weight: math.unit(150, "lb"),
  17621. name: "Side",
  17622. image: {
  17623. source: "./media/characters/richard-dragon/side.svg",
  17624. extra: 845 / 340,
  17625. bottom: 0.017
  17626. }
  17627. },
  17628. maw: {
  17629. height: math.unit(2.97, "feet"),
  17630. name: "Maw",
  17631. image: {
  17632. source: "./media/characters/richard-dragon/maw.svg"
  17633. }
  17634. },
  17635. },
  17636. [
  17637. ]
  17638. ))
  17639. characterMakers.push(() => makeCharacter(
  17640. { name: "Richard (Smeargle)", species: ["smeargle"], tags: ["anthro"] },
  17641. {
  17642. front: {
  17643. height: math.unit(4, "feet"),
  17644. weight: math.unit(100, "lb"),
  17645. name: "Front",
  17646. image: {
  17647. source: "./media/characters/richard-smeargle/front.svg",
  17648. extra: 2952 / 2820,
  17649. bottom: 0.028
  17650. }
  17651. },
  17652. },
  17653. [
  17654. {
  17655. name: "Normal",
  17656. height: math.unit(4, "feet"),
  17657. default: true
  17658. },
  17659. {
  17660. name: "Dynamax",
  17661. height: math.unit(20, "meters")
  17662. },
  17663. ]
  17664. ))
  17665. characterMakers.push(() => makeCharacter(
  17666. { name: "Klay", species: ["flying-fox"], tags: ["anthro"] },
  17667. {
  17668. front: {
  17669. height: math.unit(6, "feet"),
  17670. weight: math.unit(110, "lb"),
  17671. name: "Front",
  17672. image: {
  17673. source: "./media/characters/klay/front.svg",
  17674. extra: 962 / 883,
  17675. bottom: 0.04
  17676. }
  17677. },
  17678. back: {
  17679. height: math.unit(6, "feet"),
  17680. weight: math.unit(110, "lb"),
  17681. name: "Back",
  17682. image: {
  17683. source: "./media/characters/klay/back.svg",
  17684. extra: 962 / 883
  17685. }
  17686. },
  17687. beans: {
  17688. height: math.unit(1.15, "feet"),
  17689. name: "Beans",
  17690. image: {
  17691. source: "./media/characters/klay/beans.svg"
  17692. }
  17693. },
  17694. },
  17695. [
  17696. {
  17697. name: "Micro",
  17698. height: math.unit(6, "inches")
  17699. },
  17700. {
  17701. name: "Mini",
  17702. height: math.unit(3, "feet")
  17703. },
  17704. {
  17705. name: "Normal",
  17706. height: math.unit(6, "feet"),
  17707. default: true
  17708. },
  17709. {
  17710. name: "Big",
  17711. height: math.unit(25, "feet")
  17712. },
  17713. {
  17714. name: "Macro",
  17715. height: math.unit(100, "feet")
  17716. },
  17717. {
  17718. name: "Megamacro",
  17719. height: math.unit(400, "feet")
  17720. },
  17721. ]
  17722. ))
  17723. characterMakers.push(() => makeCharacter(
  17724. { name: "Marcus", species: ["skunk"], tags: ["anthro"] },
  17725. {
  17726. front: {
  17727. height: math.unit(6, "feet"),
  17728. weight: math.unit(160, "lb"),
  17729. name: "Front",
  17730. image: {
  17731. source: "./media/characters/marcus/front.svg",
  17732. extra: 734 / 676,
  17733. bottom: 0.03
  17734. }
  17735. },
  17736. },
  17737. [
  17738. {
  17739. name: "Little",
  17740. height: math.unit(6, "feet")
  17741. },
  17742. {
  17743. name: "Normal",
  17744. height: math.unit(110, "feet"),
  17745. default: true
  17746. },
  17747. {
  17748. name: "Macro",
  17749. height: math.unit(250, "feet")
  17750. },
  17751. {
  17752. name: "Megamacro",
  17753. height: math.unit(1000, "feet")
  17754. },
  17755. ]
  17756. ))
  17757. characterMakers.push(() => makeCharacter(
  17758. { name: "Claude DelRoute", species: ["goat"], tags: ["anthro"] },
  17759. {
  17760. front: {
  17761. height: math.unit(7, "feet"),
  17762. weight: math.unit(275, "lb"),
  17763. name: "Front",
  17764. image: {
  17765. source: "./media/characters/claude-delroute/front.svg",
  17766. extra: 230 / 214,
  17767. bottom: 0.007
  17768. }
  17769. },
  17770. side: {
  17771. height: math.unit(7, "feet"),
  17772. weight: math.unit(275, "lb"),
  17773. name: "Side",
  17774. image: {
  17775. source: "./media/characters/claude-delroute/side.svg",
  17776. extra: 222 / 214,
  17777. bottom: 0.01
  17778. }
  17779. },
  17780. back: {
  17781. height: math.unit(7, "feet"),
  17782. weight: math.unit(275, "lb"),
  17783. name: "Back",
  17784. image: {
  17785. source: "./media/characters/claude-delroute/back.svg",
  17786. extra: 230 / 214,
  17787. bottom: 0.015
  17788. }
  17789. },
  17790. maw: {
  17791. height: math.unit(0.6407, "meters"),
  17792. name: "Maw",
  17793. image: {
  17794. source: "./media/characters/claude-delroute/maw.svg"
  17795. }
  17796. },
  17797. },
  17798. [
  17799. {
  17800. name: "Normal",
  17801. height: math.unit(7, "feet"),
  17802. default: true
  17803. },
  17804. {
  17805. name: "Lorge",
  17806. height: math.unit(20, "feet")
  17807. },
  17808. ]
  17809. ))
  17810. characterMakers.push(() => makeCharacter(
  17811. { name: "Dragonien", species: ["dragon"], tags: ["anthro"] },
  17812. {
  17813. front: {
  17814. height: math.unit(8 + 4 / 12, "feet"),
  17815. weight: math.unit(600, "lb"),
  17816. name: "Front",
  17817. image: {
  17818. source: "./media/characters/dragonien/front.svg",
  17819. extra: 100 / 94,
  17820. bottom: 3.3 / 103.3445
  17821. }
  17822. },
  17823. back: {
  17824. height: math.unit(8 + 4 / 12, "feet"),
  17825. weight: math.unit(600, "lb"),
  17826. name: "Back",
  17827. image: {
  17828. source: "./media/characters/dragonien/back.svg",
  17829. extra: 776 / 746,
  17830. bottom: 6.4 / 782.0616
  17831. }
  17832. },
  17833. foot: {
  17834. height: math.unit(1.54, "feet"),
  17835. name: "Foot",
  17836. image: {
  17837. source: "./media/characters/dragonien/foot.svg",
  17838. }
  17839. },
  17840. },
  17841. [
  17842. {
  17843. name: "Normal",
  17844. height: math.unit(8 + 4 / 12, "feet"),
  17845. default: true
  17846. },
  17847. {
  17848. name: "Macro",
  17849. height: math.unit(200, "feet")
  17850. },
  17851. {
  17852. name: "Megamacro",
  17853. height: math.unit(1, "mile")
  17854. },
  17855. {
  17856. name: "Gigamacro",
  17857. height: math.unit(1000, "miles")
  17858. },
  17859. ]
  17860. ))
  17861. characterMakers.push(() => makeCharacter(
  17862. { name: "Desta", species: ["dratini"], tags: ["anthro"] },
  17863. {
  17864. front: {
  17865. height: math.unit(5 + 2 / 12, "feet"),
  17866. weight: math.unit(110, "lb"),
  17867. name: "Front",
  17868. image: {
  17869. source: "./media/characters/desta/front.svg",
  17870. extra: 767 / 726,
  17871. bottom: 11.7 / 779
  17872. }
  17873. },
  17874. back: {
  17875. height: math.unit(5 + 2 / 12, "feet"),
  17876. weight: math.unit(110, "lb"),
  17877. name: "Back",
  17878. image: {
  17879. source: "./media/characters/desta/back.svg",
  17880. extra: 777 / 728,
  17881. bottom: 6 / 784
  17882. }
  17883. },
  17884. frontAlt: {
  17885. height: math.unit(5 + 2 / 12, "feet"),
  17886. weight: math.unit(110, "lb"),
  17887. name: "Front",
  17888. image: {
  17889. source: "./media/characters/desta/front-alt.svg",
  17890. extra: 1482 / 1417
  17891. }
  17892. },
  17893. side: {
  17894. height: math.unit(5 + 2 / 12, "feet"),
  17895. weight: math.unit(110, "lb"),
  17896. name: "Side",
  17897. image: {
  17898. source: "./media/characters/desta/side.svg",
  17899. extra: 2579 / 2491,
  17900. bottom: 0.053
  17901. }
  17902. },
  17903. },
  17904. [
  17905. {
  17906. name: "Micro",
  17907. height: math.unit(6, "inches")
  17908. },
  17909. {
  17910. name: "Normal",
  17911. height: math.unit(5 + 2 / 12, "feet"),
  17912. default: true
  17913. },
  17914. {
  17915. name: "Macro",
  17916. height: math.unit(62, "feet")
  17917. },
  17918. {
  17919. name: "Megamacro",
  17920. height: math.unit(1800, "feet")
  17921. },
  17922. ]
  17923. ))
  17924. characterMakers.push(() => makeCharacter(
  17925. { name: "Storm Alystar", species: ["demon"], tags: ["anthro"] },
  17926. {
  17927. front: {
  17928. height: math.unit(10, "feet"),
  17929. weight: math.unit(700, "lb"),
  17930. name: "Front",
  17931. image: {
  17932. source: "./media/characters/storm-alystar/front.svg",
  17933. extra: 2112 / 1898,
  17934. bottom: 0.034
  17935. }
  17936. },
  17937. },
  17938. [
  17939. {
  17940. name: "Micro",
  17941. height: math.unit(3.5, "inches")
  17942. },
  17943. {
  17944. name: "Normal",
  17945. height: math.unit(10, "feet"),
  17946. default: true
  17947. },
  17948. {
  17949. name: "Macro",
  17950. height: math.unit(400, "feet")
  17951. },
  17952. {
  17953. name: "Deific",
  17954. height: math.unit(60, "miles")
  17955. },
  17956. ]
  17957. ))
  17958. characterMakers.push(() => makeCharacter(
  17959. { name: "Ilia", species: ["fox"], tags: ["anthro"] },
  17960. {
  17961. front: {
  17962. height: math.unit(2.35, "meters"),
  17963. weight: math.unit(119, "kg"),
  17964. name: "Front",
  17965. image: {
  17966. source: "./media/characters/ilia/front.svg",
  17967. extra: 1285 / 1255,
  17968. bottom: 0.06
  17969. }
  17970. },
  17971. },
  17972. [
  17973. {
  17974. name: "Normal",
  17975. height: math.unit(2.35, "meters")
  17976. },
  17977. {
  17978. name: "Macro",
  17979. height: math.unit(140, "meters"),
  17980. default: true
  17981. },
  17982. {
  17983. name: "Megamacro",
  17984. height: math.unit(100, "miles")
  17985. },
  17986. ]
  17987. ))
  17988. characterMakers.push(() => makeCharacter(
  17989. { name: "KingDead", species: ["wolf"], tags: ["anthro"] },
  17990. {
  17991. front: {
  17992. height: math.unit(6 + 5 / 12, "feet"),
  17993. weight: math.unit(190, "lb"),
  17994. name: "Front",
  17995. image: {
  17996. source: "./media/characters/kingdead/front.svg",
  17997. extra: 1228 / 1177
  17998. }
  17999. },
  18000. },
  18001. [
  18002. {
  18003. name: "Micro",
  18004. height: math.unit(7, "inches")
  18005. },
  18006. {
  18007. name: "Normal",
  18008. height: math.unit(6 + 5 / 12, "feet")
  18009. },
  18010. {
  18011. name: "Macro",
  18012. height: math.unit(150, "feet"),
  18013. default: true
  18014. },
  18015. {
  18016. name: "Megamacro",
  18017. height: math.unit(200, "miles")
  18018. },
  18019. ]
  18020. ))
  18021. characterMakers.push(() => makeCharacter(
  18022. { name: "Kyrehx", species: ["tigrex"], tags: ["anthro"] },
  18023. {
  18024. front: {
  18025. height: math.unit(8, "feet"),
  18026. weight: math.unit(600, "lb"),
  18027. name: "Front",
  18028. image: {
  18029. source: "./media/characters/kyrehx/front.svg",
  18030. extra: 1195 / 1095,
  18031. bottom: 0.034
  18032. }
  18033. },
  18034. },
  18035. [
  18036. {
  18037. name: "Micro",
  18038. height: math.unit(2, "inches")
  18039. },
  18040. {
  18041. name: "Normal",
  18042. height: math.unit(8, "feet"),
  18043. default: true
  18044. },
  18045. {
  18046. name: "Macro",
  18047. height: math.unit(255, "feet")
  18048. },
  18049. ]
  18050. ))
  18051. characterMakers.push(() => makeCharacter(
  18052. { name: "Xang", species: ["zangoose"], tags: ["anthro"] },
  18053. {
  18054. front: {
  18055. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18056. weight: math.unit(184, "lb"),
  18057. name: "Front",
  18058. image: {
  18059. source: "./media/characters/xang/front.svg",
  18060. extra: 845 / 755
  18061. }
  18062. },
  18063. },
  18064. [
  18065. {
  18066. name: "Normal",
  18067. height: math.unit(0.935 * (6 + 8 / 12), "feet"),
  18068. default: true
  18069. },
  18070. {
  18071. name: "Macro",
  18072. height: math.unit(0.935 * 146, "feet")
  18073. },
  18074. {
  18075. name: "Megamacro",
  18076. height: math.unit(0.935 * 3, "miles")
  18077. },
  18078. ]
  18079. ))
  18080. characterMakers.push(() => makeCharacter(
  18081. { name: "Doc Weardno", species: ["fennec-fox"], tags: ["anthro"] },
  18082. {
  18083. frontDressed: {
  18084. height: math.unit(5 + 7 / 12, "feet"),
  18085. weight: math.unit(140, "lb"),
  18086. name: "Front (Dressed)",
  18087. image: {
  18088. source: "./media/characters/doc-weardno/front-dressed.svg",
  18089. extra: 263 / 234
  18090. }
  18091. },
  18092. backDressed: {
  18093. height: math.unit(5 + 7 / 12, "feet"),
  18094. weight: math.unit(140, "lb"),
  18095. name: "Back (Dressed)",
  18096. image: {
  18097. source: "./media/characters/doc-weardno/back-dressed.svg",
  18098. extra: 266 / 238
  18099. }
  18100. },
  18101. front: {
  18102. height: math.unit(5 + 7 / 12, "feet"),
  18103. weight: math.unit(140, "lb"),
  18104. name: "Front",
  18105. image: {
  18106. source: "./media/characters/doc-weardno/front.svg",
  18107. extra: 254 / 233
  18108. }
  18109. },
  18110. },
  18111. [
  18112. {
  18113. name: "Micro",
  18114. height: math.unit(3, "inches")
  18115. },
  18116. {
  18117. name: "Normal",
  18118. height: math.unit(5 + 7 / 12, "feet"),
  18119. default: true
  18120. },
  18121. {
  18122. name: "Macro",
  18123. height: math.unit(25, "feet")
  18124. },
  18125. {
  18126. name: "Megamacro",
  18127. height: math.unit(2, "miles")
  18128. },
  18129. ]
  18130. ))
  18131. characterMakers.push(() => makeCharacter(
  18132. { name: "Seth Whilst", species: ["snake"], tags: ["anthro"] },
  18133. {
  18134. front: {
  18135. height: math.unit(6 + 2 / 12, "feet"),
  18136. weight: math.unit(153, "lb"),
  18137. name: "Front",
  18138. image: {
  18139. source: "./media/characters/seth-whilst/front.svg",
  18140. bottom: 0.07
  18141. }
  18142. },
  18143. },
  18144. [
  18145. {
  18146. name: "Micro",
  18147. height: math.unit(5, "inches")
  18148. },
  18149. {
  18150. name: "Normal",
  18151. height: math.unit(6 + 2 / 12, "feet"),
  18152. default: true
  18153. },
  18154. ]
  18155. ))
  18156. characterMakers.push(() => makeCharacter(
  18157. { name: "Pocket Jabari", species: ["mouse"], tags: ["anthro"] },
  18158. {
  18159. front: {
  18160. height: math.unit(3, "inches"),
  18161. weight: math.unit(8, "grams"),
  18162. name: "Front",
  18163. image: {
  18164. source: "./media/characters/pocket-jabari/front.svg",
  18165. extra: 1024 / 974,
  18166. bottom: 0.039
  18167. }
  18168. },
  18169. },
  18170. [
  18171. {
  18172. name: "Minimicro",
  18173. height: math.unit(8, "mm")
  18174. },
  18175. {
  18176. name: "Micro",
  18177. height: math.unit(3, "inches"),
  18178. default: true
  18179. },
  18180. {
  18181. name: "Normal",
  18182. height: math.unit(3, "feet")
  18183. },
  18184. ]
  18185. ))
  18186. characterMakers.push(() => makeCharacter(
  18187. { name: "Sapphy", species: ["dragon"], tags: ["anthro"] },
  18188. {
  18189. front: {
  18190. height: math.unit(15, "feet"),
  18191. weight: math.unit(3280, "lb"),
  18192. name: "Front",
  18193. image: {
  18194. source: "./media/characters/sapphy/front.svg",
  18195. extra: 671 / 577,
  18196. bottom: 0.085
  18197. }
  18198. },
  18199. back: {
  18200. height: math.unit(15, "feet"),
  18201. weight: math.unit(3280, "lb"),
  18202. name: "Back",
  18203. image: {
  18204. source: "./media/characters/sapphy/back.svg",
  18205. extra: 631 / 607,
  18206. bottom: 0.045
  18207. }
  18208. },
  18209. },
  18210. [
  18211. {
  18212. name: "Normal",
  18213. height: math.unit(15, "feet")
  18214. },
  18215. {
  18216. name: "Casual Macro",
  18217. height: math.unit(120, "feet")
  18218. },
  18219. {
  18220. name: "Macro",
  18221. height: math.unit(2150, "feet"),
  18222. default: true
  18223. },
  18224. {
  18225. name: "Megamacro",
  18226. height: math.unit(8, "miles")
  18227. },
  18228. {
  18229. name: "Galaxy Mom",
  18230. height: math.unit(6, "megalightyears")
  18231. },
  18232. ]
  18233. ))
  18234. characterMakers.push(() => makeCharacter(
  18235. { name: "Kiro", species: ["fox", "wolf"], tags: ["anthro"] },
  18236. {
  18237. front: {
  18238. height: math.unit(6, "feet"),
  18239. weight: math.unit(170, "lb"),
  18240. name: "Front",
  18241. image: {
  18242. source: "./media/characters/kiro/front.svg",
  18243. extra: 1064 / 1012,
  18244. bottom: 0.052
  18245. }
  18246. },
  18247. },
  18248. [
  18249. {
  18250. name: "Micro",
  18251. height: math.unit(6, "inches")
  18252. },
  18253. {
  18254. name: "Normal",
  18255. height: math.unit(6, "feet"),
  18256. default: true
  18257. },
  18258. {
  18259. name: "Macro",
  18260. height: math.unit(72, "feet")
  18261. },
  18262. ]
  18263. ))
  18264. characterMakers.push(() => makeCharacter(
  18265. { name: "Irishfox", species: ["fox"], tags: ["anthro"] },
  18266. {
  18267. front: {
  18268. height: math.unit(5 + 9 / 12, "feet"),
  18269. weight: math.unit(175, "lb"),
  18270. name: "Front",
  18271. image: {
  18272. source: "./media/characters/irishfox/front.svg",
  18273. extra: 1912 / 1680,
  18274. bottom: 0.02
  18275. }
  18276. },
  18277. },
  18278. [
  18279. {
  18280. name: "Nano",
  18281. height: math.unit(1, "mm")
  18282. },
  18283. {
  18284. name: "Micro",
  18285. height: math.unit(2, "inches")
  18286. },
  18287. {
  18288. name: "Normal",
  18289. height: math.unit(5 + 9 / 12, "feet"),
  18290. default: true
  18291. },
  18292. {
  18293. name: "Macro",
  18294. height: math.unit(45, "feet")
  18295. },
  18296. ]
  18297. ))
  18298. characterMakers.push(() => makeCharacter(
  18299. { name: "Aronai Sieyes", species: ["cross-fox", "synth"], tags: ["anthro"] },
  18300. {
  18301. front: {
  18302. height: math.unit(6 + 1 / 12, "feet"),
  18303. weight: math.unit(75, "lb"),
  18304. name: "Front",
  18305. image: {
  18306. source: "./media/characters/aronai-sieyes/front.svg",
  18307. extra: 1556 / 1480,
  18308. bottom: 0.015
  18309. }
  18310. },
  18311. side: {
  18312. height: math.unit(6 + 1 / 12, "feet"),
  18313. weight: math.unit(75, "lb"),
  18314. name: "Side",
  18315. image: {
  18316. source: "./media/characters/aronai-sieyes/side.svg",
  18317. extra: 1433 / 1390,
  18318. bottom: 0.0393
  18319. }
  18320. },
  18321. back: {
  18322. height: math.unit(6 + 1 / 12, "feet"),
  18323. weight: math.unit(75, "lb"),
  18324. name: "Back",
  18325. image: {
  18326. source: "./media/characters/aronai-sieyes/back.svg",
  18327. extra: 1544 / 1494,
  18328. bottom: 0.02
  18329. }
  18330. },
  18331. frontClothed: {
  18332. height: math.unit(6 + 1 / 12, "feet"),
  18333. weight: math.unit(75, "lb"),
  18334. name: "Front (Clothed)",
  18335. image: {
  18336. source: "./media/characters/aronai-sieyes/front-clothed.svg",
  18337. extra: 1582 / 1527
  18338. }
  18339. },
  18340. feral: {
  18341. height: math.unit(18, "feet"),
  18342. weight: math.unit(75 * 3 * 3 * 3, "lb"),
  18343. name: "Feral",
  18344. image: {
  18345. source: "./media/characters/aronai-sieyes/feral.svg",
  18346. extra: 1530 / 1240,
  18347. bottom: 0.035
  18348. }
  18349. },
  18350. },
  18351. [
  18352. {
  18353. name: "Micro",
  18354. height: math.unit(2, "inches")
  18355. },
  18356. {
  18357. name: "Normal",
  18358. height: math.unit(6 + 1 / 12, "feet"),
  18359. default: true
  18360. }
  18361. ]
  18362. ))
  18363. characterMakers.push(() => makeCharacter(
  18364. { name: "Xuna", species: ["wickerbeast"], tags: ["anthro"] },
  18365. {
  18366. front: {
  18367. height: math.unit(12, "feet"),
  18368. weight: math.unit(410, "kg"),
  18369. name: "Front",
  18370. image: {
  18371. source: "./media/characters/xuna/front.svg",
  18372. extra: 2184 / 1980
  18373. }
  18374. },
  18375. side: {
  18376. height: math.unit(12, "feet"),
  18377. weight: math.unit(410, "kg"),
  18378. name: "Side",
  18379. image: {
  18380. source: "./media/characters/xuna/side.svg",
  18381. extra: 2184 / 1980
  18382. }
  18383. },
  18384. back: {
  18385. height: math.unit(12, "feet"),
  18386. weight: math.unit(410, "kg"),
  18387. name: "Back",
  18388. image: {
  18389. source: "./media/characters/xuna/back.svg",
  18390. extra: 2184 / 1980
  18391. }
  18392. },
  18393. },
  18394. [
  18395. {
  18396. name: "Nano glow",
  18397. height: math.unit(10, "nm")
  18398. },
  18399. {
  18400. name: "Micro floof",
  18401. height: math.unit(0.3, "m")
  18402. },
  18403. {
  18404. name: "Huggable softy boi",
  18405. height: math.unit(3.6576, "m"),
  18406. default: true
  18407. },
  18408. {
  18409. name: "Admirable floof",
  18410. height: math.unit(80, "meters")
  18411. },
  18412. {
  18413. name: "Gentle macro",
  18414. height: math.unit(300, "meters")
  18415. },
  18416. {
  18417. name: "Very careful floof",
  18418. height: math.unit(3200, "meters")
  18419. },
  18420. {
  18421. name: "The mega floof",
  18422. height: math.unit(36000, "meters")
  18423. },
  18424. {
  18425. name: "Giga-fur-Wicker",
  18426. height: math.unit(4800000, "meters")
  18427. },
  18428. {
  18429. name: "Licky world",
  18430. height: math.unit(20000000, "meters")
  18431. },
  18432. {
  18433. name: "Floofy cyan sun",
  18434. height: math.unit(1500000000, "meters")
  18435. },
  18436. {
  18437. name: "Milky Wicker",
  18438. height: math.unit(1000000000000000000000, "meters")
  18439. },
  18440. {
  18441. name: "The observing Wicker",
  18442. height: math.unit(999999999999999999999999999, "meters")
  18443. },
  18444. ]
  18445. ))
  18446. characterMakers.push(() => makeCharacter(
  18447. { name: "Arokha Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18448. {
  18449. front: {
  18450. height: math.unit(5 + 9 / 12, "feet"),
  18451. weight: math.unit(150, "lb"),
  18452. name: "Front",
  18453. image: {
  18454. source: "./media/characters/arokha-sieyes/front.svg",
  18455. extra: 1425 / 1284,
  18456. bottom: 0.05
  18457. }
  18458. },
  18459. },
  18460. [
  18461. {
  18462. name: "Normal",
  18463. height: math.unit(5 + 9 / 12, "feet")
  18464. },
  18465. {
  18466. name: "Macro",
  18467. height: math.unit(30, "meters"),
  18468. default: true
  18469. },
  18470. ]
  18471. ))
  18472. characterMakers.push(() => makeCharacter(
  18473. { name: "Arokh Sieyes", species: ["kitsune"], tags: ["anthro"] },
  18474. {
  18475. front: {
  18476. height: math.unit(6, "feet"),
  18477. weight: math.unit(180, "lb"),
  18478. name: "Front",
  18479. image: {
  18480. source: "./media/characters/arokh-sieyes/front.svg",
  18481. extra: 1830 / 1769,
  18482. bottom: 0.01
  18483. }
  18484. },
  18485. },
  18486. [
  18487. {
  18488. name: "Normal",
  18489. height: math.unit(6, "feet")
  18490. },
  18491. {
  18492. name: "Macro",
  18493. height: math.unit(30, "meters"),
  18494. default: true
  18495. },
  18496. ]
  18497. ))
  18498. characterMakers.push(() => makeCharacter(
  18499. { name: "Goldeneye", species: ["gryphon"], tags: ["feral"] },
  18500. {
  18501. side: {
  18502. height: math.unit(13 + 1 / 12, "feet"),
  18503. weight: math.unit(8.5, "tonnes"),
  18504. name: "Side",
  18505. image: {
  18506. source: "./media/characters/goldeneye/side.svg",
  18507. extra: 1182 / 778,
  18508. bottom: 0.067
  18509. }
  18510. },
  18511. paw: {
  18512. height: math.unit(3.4, "feet"),
  18513. name: "Paw",
  18514. image: {
  18515. source: "./media/characters/goldeneye/paw.svg"
  18516. }
  18517. },
  18518. },
  18519. [
  18520. {
  18521. name: "Normal",
  18522. height: math.unit(13 + 1 / 12, "feet"),
  18523. default: true
  18524. },
  18525. ]
  18526. ))
  18527. characterMakers.push(() => makeCharacter(
  18528. { name: "Leonardo Lycheborne", species: ["wolf", "dog", "barghest"], tags: ["anthro", "feral", "taur"] },
  18529. {
  18530. front: {
  18531. height: math.unit(6 + 1 / 12, "feet"),
  18532. weight: math.unit(210, "lb"),
  18533. name: "Front",
  18534. image: {
  18535. source: "./media/characters/leonardo-lycheborne/front.svg",
  18536. extra: 390 / 365,
  18537. bottom: 0.032
  18538. }
  18539. },
  18540. side: {
  18541. height: math.unit(6 + 1 / 12, "feet"),
  18542. weight: math.unit(210, "lb"),
  18543. name: "Side",
  18544. image: {
  18545. source: "./media/characters/leonardo-lycheborne/side.svg",
  18546. extra: 390 / 365,
  18547. bottom: 0.005
  18548. }
  18549. },
  18550. back: {
  18551. height: math.unit(6 + 1 / 12, "feet"),
  18552. weight: math.unit(210, "lb"),
  18553. name: "Back",
  18554. image: {
  18555. source: "./media/characters/leonardo-lycheborne/back.svg",
  18556. extra: 392 / 366,
  18557. bottom: 0.01
  18558. }
  18559. },
  18560. hand: {
  18561. height: math.unit(1.08, "feet"),
  18562. name: "Hand",
  18563. image: {
  18564. source: "./media/characters/leonardo-lycheborne/hand.svg"
  18565. }
  18566. },
  18567. foot: {
  18568. height: math.unit(1.32, "feet"),
  18569. name: "Foot",
  18570. image: {
  18571. source: "./media/characters/leonardo-lycheborne/foot.svg"
  18572. }
  18573. },
  18574. were: {
  18575. height: math.unit(20, "feet"),
  18576. weight: math.unit(7800, "lb"),
  18577. name: "Were",
  18578. image: {
  18579. source: "./media/characters/leonardo-lycheborne/were.svg",
  18580. extra: 308 / 294,
  18581. bottom: 0.048
  18582. }
  18583. },
  18584. feral: {
  18585. height: math.unit(7.5, "feet"),
  18586. weight: math.unit(600, "lb"),
  18587. name: "Feral",
  18588. image: {
  18589. source: "./media/characters/leonardo-lycheborne/feral.svg",
  18590. extra: 210 / 186,
  18591. bottom: 0.108
  18592. }
  18593. },
  18594. taur: {
  18595. height: math.unit(11, "feet"),
  18596. weight: math.unit(3300, "lb"),
  18597. name: "Taur",
  18598. image: {
  18599. source: "./media/characters/leonardo-lycheborne/taur.svg",
  18600. extra: 320 / 303,
  18601. bottom: 0.025
  18602. }
  18603. },
  18604. barghest: {
  18605. height: math.unit(11, "feet"),
  18606. weight: math.unit(1300, "lb"),
  18607. name: "Barghest",
  18608. image: {
  18609. source: "./media/characters/leonardo-lycheborne/barghest.svg",
  18610. extra: 323 / 302,
  18611. bottom: 0.027
  18612. }
  18613. },
  18614. dick: {
  18615. height: math.unit((6 + 1 / 12) / 4.09, "feet"),
  18616. name: "Dick",
  18617. image: {
  18618. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18619. }
  18620. },
  18621. dickWere: {
  18622. height: math.unit((20) / 3.8, "feet"),
  18623. name: "Dick (Were)",
  18624. image: {
  18625. source: "./media/characters/leonardo-lycheborne/dick.svg"
  18626. }
  18627. },
  18628. },
  18629. [
  18630. {
  18631. name: "Normal",
  18632. height: math.unit(6 + 1 / 12, "feet"),
  18633. default: true
  18634. },
  18635. ]
  18636. ))
  18637. characterMakers.push(() => makeCharacter(
  18638. { name: "Jet", species: ["hyena"], tags: ["anthro"] },
  18639. {
  18640. front: {
  18641. height: math.unit(10, "feet"),
  18642. weight: math.unit(350, "lb"),
  18643. name: "Front",
  18644. image: {
  18645. source: "./media/characters/jet/front.svg",
  18646. extra: 2050 / 1980,
  18647. bottom: 0.013
  18648. }
  18649. },
  18650. back: {
  18651. height: math.unit(10, "feet"),
  18652. weight: math.unit(350, "lb"),
  18653. name: "Back",
  18654. image: {
  18655. source: "./media/characters/jet/back.svg",
  18656. extra: 2050 / 1980,
  18657. bottom: 0.013
  18658. }
  18659. },
  18660. },
  18661. [
  18662. {
  18663. name: "Micro",
  18664. height: math.unit(6, "inches")
  18665. },
  18666. {
  18667. name: "Normal",
  18668. height: math.unit(10, "feet"),
  18669. default: true
  18670. },
  18671. {
  18672. name: "Macro",
  18673. height: math.unit(100, "feet")
  18674. },
  18675. ]
  18676. ))
  18677. characterMakers.push(() => makeCharacter(
  18678. { name: "Tanarath", species: ["dragonoid"], tags: ["anthro"] },
  18679. {
  18680. front: {
  18681. height: math.unit(15, "feet"),
  18682. weight: math.unit(2800, "lb"),
  18683. name: "Front",
  18684. image: {
  18685. source: "./media/characters/tanarath/front.svg",
  18686. extra: 2392 / 2220,
  18687. bottom: 0.03
  18688. }
  18689. },
  18690. back: {
  18691. height: math.unit(15, "feet"),
  18692. weight: math.unit(2800, "lb"),
  18693. name: "Back",
  18694. image: {
  18695. source: "./media/characters/tanarath/back.svg",
  18696. extra: 2392 / 2220,
  18697. bottom: 0.03
  18698. }
  18699. },
  18700. },
  18701. [
  18702. {
  18703. name: "Normal",
  18704. height: math.unit(15, "feet"),
  18705. default: true
  18706. },
  18707. ]
  18708. ))
  18709. characterMakers.push(() => makeCharacter(
  18710. { name: "Patty CattyBatty", species: ["cat", "bat"], tags: ["anthro"] },
  18711. {
  18712. front: {
  18713. height: math.unit(7 + 1 / 12, "feet"),
  18714. weight: math.unit(175, "lb"),
  18715. name: "Front",
  18716. image: {
  18717. source: "./media/characters/patty-cattybatty/front.svg",
  18718. extra: 908 / 874,
  18719. bottom: 0.025
  18720. }
  18721. },
  18722. },
  18723. [
  18724. {
  18725. name: "Micro",
  18726. height: math.unit(1, "inch")
  18727. },
  18728. {
  18729. name: "Normal",
  18730. height: math.unit(7 + 1 / 12, "feet")
  18731. },
  18732. {
  18733. name: "Mini Macro",
  18734. height: math.unit(155, "feet")
  18735. },
  18736. {
  18737. name: "Macro",
  18738. height: math.unit(1077, "feet")
  18739. },
  18740. {
  18741. name: "Mega Macro",
  18742. height: math.unit(47650, "feet"),
  18743. default: true
  18744. },
  18745. {
  18746. name: "Giga Macro",
  18747. height: math.unit(440, "miles")
  18748. },
  18749. {
  18750. name: "Tera Macro",
  18751. height: math.unit(8700, "miles")
  18752. },
  18753. {
  18754. name: "Planetary Macro",
  18755. height: math.unit(32700, "miles")
  18756. },
  18757. {
  18758. name: "Solar Macro",
  18759. height: math.unit(550000, "miles")
  18760. },
  18761. {
  18762. name: "Celestial Macro",
  18763. height: math.unit(2.5, "AU")
  18764. },
  18765. ]
  18766. ))
  18767. characterMakers.push(() => makeCharacter(
  18768. { name: "Cappu", species: ["sheep"], tags: ["anthro"] },
  18769. {
  18770. front: {
  18771. height: math.unit(4 + 5 / 12, "feet"),
  18772. weight: math.unit(90, "lb"),
  18773. name: "Front",
  18774. image: {
  18775. source: "./media/characters/cappu/front.svg",
  18776. extra: 1247 / 1152,
  18777. bottom: 0.012
  18778. }
  18779. },
  18780. },
  18781. [
  18782. {
  18783. name: "Normal",
  18784. height: math.unit(4 + 5 / 12, "feet"),
  18785. default: true
  18786. },
  18787. ]
  18788. ))
  18789. characterMakers.push(() => makeCharacter(
  18790. { name: "Sebi", species: ["cat", "demon", "wolf"], tags: ["anthro"] },
  18791. {
  18792. frontDressed: {
  18793. height: math.unit(70, "cm"),
  18794. weight: math.unit(6, "kg"),
  18795. name: "Front (Dressed)",
  18796. image: {
  18797. source: "./media/characters/sebi/front-dressed.svg",
  18798. extra: 713.5 / 686.5,
  18799. bottom: 0.003
  18800. }
  18801. },
  18802. front: {
  18803. height: math.unit(70, "cm"),
  18804. weight: math.unit(5, "kg"),
  18805. name: "Front",
  18806. image: {
  18807. source: "./media/characters/sebi/front.svg",
  18808. extra: 713.5 / 686.5,
  18809. bottom: 0.003
  18810. }
  18811. }
  18812. },
  18813. [
  18814. {
  18815. name: "Normal",
  18816. height: math.unit(70, "cm"),
  18817. default: true
  18818. },
  18819. {
  18820. name: "Macro",
  18821. height: math.unit(8, "meters")
  18822. },
  18823. ]
  18824. ))
  18825. characterMakers.push(() => makeCharacter(
  18826. { name: "Typhek", species: ["t-rex"], tags: ["anthro"] },
  18827. {
  18828. front: {
  18829. height: math.unit(6, "feet"),
  18830. weight: math.unit(150, "lb"),
  18831. name: "Front",
  18832. image: {
  18833. source: "./media/characters/typhek/front.svg",
  18834. extra: 1948 / 1929,
  18835. bottom: 0.025
  18836. }
  18837. },
  18838. side: {
  18839. height: math.unit(6, "feet"),
  18840. weight: math.unit(150, "lb"),
  18841. name: "Side",
  18842. image: {
  18843. source: "./media/characters/typhek/side.svg",
  18844. extra: 2034 / 2010,
  18845. bottom: 0.003
  18846. }
  18847. },
  18848. back: {
  18849. height: math.unit(6, "feet"),
  18850. weight: math.unit(150, "lb"),
  18851. name: "Back",
  18852. image: {
  18853. source: "./media/characters/typhek/back.svg",
  18854. extra: 2005 / 1978,
  18855. bottom: 0.004
  18856. }
  18857. },
  18858. palm: {
  18859. height: math.unit(1.2, "feet"),
  18860. name: "Palm",
  18861. image: {
  18862. source: "./media/characters/typhek/palm.svg"
  18863. }
  18864. },
  18865. fist: {
  18866. height: math.unit(1.1, "feet"),
  18867. name: "Fist",
  18868. image: {
  18869. source: "./media/characters/typhek/fist.svg"
  18870. }
  18871. },
  18872. foot: {
  18873. height: math.unit(1.57, "feet"),
  18874. name: "Foot",
  18875. image: {
  18876. source: "./media/characters/typhek/foot.svg"
  18877. }
  18878. },
  18879. sole: {
  18880. height: math.unit(2.05, "feet"),
  18881. name: "Sole",
  18882. image: {
  18883. source: "./media/characters/typhek/sole.svg"
  18884. }
  18885. },
  18886. },
  18887. [
  18888. {
  18889. name: "Macro",
  18890. height: math.unit(40, "stories"),
  18891. default: true
  18892. },
  18893. {
  18894. name: "Megamacro",
  18895. height: math.unit(1, "mile")
  18896. },
  18897. {
  18898. name: "Gigamacro",
  18899. height: math.unit(4000, "solarradii")
  18900. },
  18901. {
  18902. name: "Universal",
  18903. height: math.unit(1.1, "universes")
  18904. }
  18905. ]
  18906. ))
  18907. characterMakers.push(() => makeCharacter(
  18908. { name: "Kassy", species: ["sheep"], tags: ["anthro"] },
  18909. {
  18910. side: {
  18911. height: math.unit(5 + 7 / 12, "feet"),
  18912. weight: math.unit(150, "lb"),
  18913. name: "Side",
  18914. image: {
  18915. source: "./media/characters/kassy/side.svg",
  18916. extra: 1280 / 1225,
  18917. bottom: 0.002
  18918. }
  18919. },
  18920. front: {
  18921. height: math.unit(5 + 7 / 12, "feet"),
  18922. weight: math.unit(150, "lb"),
  18923. name: "Front",
  18924. image: {
  18925. source: "./media/characters/kassy/front.svg",
  18926. extra: 1280 / 1225,
  18927. bottom: 0.025
  18928. }
  18929. },
  18930. back: {
  18931. height: math.unit(5 + 7 / 12, "feet"),
  18932. weight: math.unit(150, "lb"),
  18933. name: "Back",
  18934. image: {
  18935. source: "./media/characters/kassy/back.svg",
  18936. extra: 1280 / 1225,
  18937. bottom: 0.002
  18938. }
  18939. },
  18940. foot: {
  18941. height: math.unit(1.266, "feet"),
  18942. name: "Foot",
  18943. image: {
  18944. source: "./media/characters/kassy/foot.svg"
  18945. }
  18946. },
  18947. },
  18948. [
  18949. {
  18950. name: "Normal",
  18951. height: math.unit(5 + 7 / 12, "feet")
  18952. },
  18953. {
  18954. name: "Macro",
  18955. height: math.unit(137, "feet"),
  18956. default: true
  18957. },
  18958. {
  18959. name: "Megamacro",
  18960. height: math.unit(1, "mile")
  18961. },
  18962. ]
  18963. ))
  18964. characterMakers.push(() => makeCharacter(
  18965. { name: "Neil", species: ["deer"], tags: ["anthro"] },
  18966. {
  18967. front: {
  18968. height: math.unit(6 + 1 / 12, "feet"),
  18969. weight: math.unit(200, "lb"),
  18970. name: "Front",
  18971. image: {
  18972. source: "./media/characters/neil/front.svg",
  18973. extra: 1326 / 1250,
  18974. bottom: 0.023
  18975. }
  18976. },
  18977. },
  18978. [
  18979. {
  18980. name: "Normal",
  18981. height: math.unit(6 + 1 / 12, "feet"),
  18982. default: true
  18983. },
  18984. {
  18985. name: "Macro",
  18986. height: math.unit(200, "feet")
  18987. },
  18988. ]
  18989. ))
  18990. characterMakers.push(() => makeCharacter(
  18991. { name: "Atticus", species: ["pig"], tags: ["anthro"] },
  18992. {
  18993. front: {
  18994. height: math.unit(5 + 9 / 12, "feet"),
  18995. weight: math.unit(190, "lb"),
  18996. name: "Front",
  18997. image: {
  18998. source: "./media/characters/atticus/front.svg",
  18999. extra: 2934 / 2785,
  19000. bottom: 0.025
  19001. }
  19002. },
  19003. },
  19004. [
  19005. {
  19006. name: "Normal",
  19007. height: math.unit(5 + 9 / 12, "feet"),
  19008. default: true
  19009. },
  19010. {
  19011. name: "Macro",
  19012. height: math.unit(180, "feet")
  19013. },
  19014. ]
  19015. ))
  19016. characterMakers.push(() => makeCharacter(
  19017. { name: "Milo", species: ["scolipede"], tags: ["feral"] },
  19018. {
  19019. side: {
  19020. height: math.unit(9, "feet"),
  19021. weight: math.unit(650, "lb"),
  19022. name: "Side",
  19023. image: {
  19024. source: "./media/characters/milo/side.svg",
  19025. extra: 2644 / 2310,
  19026. bottom: 0.032
  19027. }
  19028. },
  19029. },
  19030. [
  19031. {
  19032. name: "Normal",
  19033. height: math.unit(9, "feet"),
  19034. default: true
  19035. },
  19036. {
  19037. name: "Macro",
  19038. height: math.unit(300, "feet")
  19039. },
  19040. ]
  19041. ))
  19042. characterMakers.push(() => makeCharacter(
  19043. { name: "Ijzer", species: ["dragon"], tags: ["anthro"] },
  19044. {
  19045. side: {
  19046. height: math.unit(8, "meters"),
  19047. weight: math.unit(90000, "kg"),
  19048. name: "Side",
  19049. image: {
  19050. source: "./media/characters/ijzer/side.svg",
  19051. extra: 2756 / 1600,
  19052. bottom: 0.01
  19053. }
  19054. },
  19055. },
  19056. [
  19057. {
  19058. name: "Small",
  19059. height: math.unit(3, "meters")
  19060. },
  19061. {
  19062. name: "Normal",
  19063. height: math.unit(8, "meters"),
  19064. default: true
  19065. },
  19066. {
  19067. name: "Normal+",
  19068. height: math.unit(10, "meters")
  19069. },
  19070. {
  19071. name: "Bigger",
  19072. height: math.unit(24, "meters")
  19073. },
  19074. {
  19075. name: "Huge",
  19076. height: math.unit(80, "meters")
  19077. },
  19078. ]
  19079. ))
  19080. characterMakers.push(() => makeCharacter(
  19081. { name: "Luca Cervicum", species: ["deer"], tags: ["anthro"] },
  19082. {
  19083. front: {
  19084. height: math.unit(6 + 2 / 12, "feet"),
  19085. weight: math.unit(153, "lb"),
  19086. name: "Front",
  19087. image: {
  19088. source: "./media/characters/luca-cervicum/front.svg",
  19089. extra: 370 / 327,
  19090. bottom: 0.015
  19091. }
  19092. },
  19093. back: {
  19094. height: math.unit(6 + 2 / 12, "feet"),
  19095. weight: math.unit(153, "lb"),
  19096. name: "Back",
  19097. image: {
  19098. source: "./media/characters/luca-cervicum/back.svg",
  19099. extra: 367 / 333,
  19100. bottom: 0.005
  19101. }
  19102. },
  19103. frontGear: {
  19104. height: math.unit(6 + 2 / 12, "feet"),
  19105. weight: math.unit(173, "lb"),
  19106. name: "Front (Gear)",
  19107. image: {
  19108. source: "./media/characters/luca-cervicum/front-gear.svg",
  19109. extra: 377 / 333,
  19110. bottom: 0.006
  19111. }
  19112. },
  19113. },
  19114. [
  19115. {
  19116. name: "Normal",
  19117. height: math.unit(6 + 2 / 12, "feet"),
  19118. default: true
  19119. },
  19120. ]
  19121. ))
  19122. characterMakers.push(() => makeCharacter(
  19123. { name: "Oliver", species: ["goodra"], tags: ["anthro"] },
  19124. {
  19125. front: {
  19126. height: math.unit(6 + 1 / 12, "feet"),
  19127. weight: math.unit(304, "lb"),
  19128. name: "Front",
  19129. image: {
  19130. source: "./media/characters/oliver/front.svg",
  19131. extra: 157 / 143,
  19132. bottom: 0.08
  19133. }
  19134. },
  19135. },
  19136. [
  19137. {
  19138. name: "Normal",
  19139. height: math.unit(6 + 1 / 12, "feet"),
  19140. default: true
  19141. },
  19142. ]
  19143. ))
  19144. characterMakers.push(() => makeCharacter(
  19145. { name: "Shane", species: ["gray-fox"], tags: ["anthro"] },
  19146. {
  19147. front: {
  19148. height: math.unit(5 + 7 / 12, "feet"),
  19149. weight: math.unit(140, "lb"),
  19150. name: "Front",
  19151. image: {
  19152. source: "./media/characters/shane/front.svg",
  19153. extra: 304 / 289,
  19154. bottom: 0.005
  19155. }
  19156. },
  19157. },
  19158. [
  19159. {
  19160. name: "Normal",
  19161. height: math.unit(5 + 7 / 12, "feet"),
  19162. default: true
  19163. },
  19164. ]
  19165. ))
  19166. characterMakers.push(() => makeCharacter(
  19167. { name: "Shin", species: ["rat"], tags: ["anthro"] },
  19168. {
  19169. front: {
  19170. height: math.unit(5 + 9 / 12, "feet"),
  19171. weight: math.unit(178, "lb"),
  19172. name: "Front",
  19173. image: {
  19174. source: "./media/characters/shin/front.svg",
  19175. extra: 159 / 151,
  19176. bottom: 0.015
  19177. }
  19178. },
  19179. },
  19180. [
  19181. {
  19182. name: "Normal",
  19183. height: math.unit(5 + 9 / 12, "feet"),
  19184. default: true
  19185. },
  19186. ]
  19187. ))
  19188. characterMakers.push(() => makeCharacter(
  19189. { name: "Xerxes", species: ["zoroark"], tags: ["anthro"] },
  19190. {
  19191. front: {
  19192. height: math.unit(5 + 10 / 12, "feet"),
  19193. weight: math.unit(168, "lb"),
  19194. name: "Front",
  19195. image: {
  19196. source: "./media/characters/xerxes/front.svg",
  19197. extra: 282 / 260,
  19198. bottom: 0.045
  19199. }
  19200. },
  19201. },
  19202. [
  19203. {
  19204. name: "Normal",
  19205. height: math.unit(5 + 10 / 12, "feet"),
  19206. default: true
  19207. },
  19208. ]
  19209. ))
  19210. characterMakers.push(() => makeCharacter(
  19211. { name: "Chaska", species: ["maned-wolf"], tags: ["anthro"] },
  19212. {
  19213. front: {
  19214. height: math.unit(6 + 7 / 12, "feet"),
  19215. weight: math.unit(208, "lb"),
  19216. name: "Front",
  19217. image: {
  19218. source: "./media/characters/chaska/front.svg",
  19219. extra: 332 / 319,
  19220. bottom: 0.015
  19221. }
  19222. },
  19223. },
  19224. [
  19225. {
  19226. name: "Normal",
  19227. height: math.unit(6 + 7 / 12, "feet"),
  19228. default: true
  19229. },
  19230. ]
  19231. ))
  19232. characterMakers.push(() => makeCharacter(
  19233. { name: "Enuk", species: ["black-backed-jackal"], tags: ["anthro"] },
  19234. {
  19235. front: {
  19236. height: math.unit(5 + 8 / 12, "feet"),
  19237. weight: math.unit(208, "lb"),
  19238. name: "Front",
  19239. image: {
  19240. source: "./media/characters/enuk/front.svg",
  19241. extra: 437 / 406,
  19242. bottom: 0.02
  19243. }
  19244. },
  19245. },
  19246. [
  19247. {
  19248. name: "Normal",
  19249. height: math.unit(5 + 8 / 12, "feet"),
  19250. default: true
  19251. },
  19252. ]
  19253. ))
  19254. characterMakers.push(() => makeCharacter(
  19255. { name: "Bruun", species: ["black-backed-jackal"], tags: ["anthro"] },
  19256. {
  19257. front: {
  19258. height: math.unit(5 + 10 / 12, "feet"),
  19259. weight: math.unit(252, "lb"),
  19260. name: "Front",
  19261. image: {
  19262. source: "./media/characters/bruun/front.svg",
  19263. extra: 197 / 187,
  19264. bottom: 0.012
  19265. }
  19266. },
  19267. },
  19268. [
  19269. {
  19270. name: "Normal",
  19271. height: math.unit(5 + 10 / 12, "feet"),
  19272. default: true
  19273. },
  19274. ]
  19275. ))
  19276. characterMakers.push(() => makeCharacter(
  19277. { name: "Alexeev", species: ["samurott"], tags: ["anthro"] },
  19278. {
  19279. front: {
  19280. height: math.unit(6 + 10 / 12, "feet"),
  19281. weight: math.unit(255, "lb"),
  19282. name: "Front",
  19283. image: {
  19284. source: "./media/characters/alexeev/front.svg",
  19285. extra: 213 / 200,
  19286. bottom: 0.05
  19287. }
  19288. },
  19289. },
  19290. [
  19291. {
  19292. name: "Normal",
  19293. height: math.unit(6 + 10 / 12, "feet"),
  19294. default: true
  19295. },
  19296. ]
  19297. ))
  19298. characterMakers.push(() => makeCharacter(
  19299. { name: "Evelyn", species: ["thylacine"], tags: ["anthro"] },
  19300. {
  19301. front: {
  19302. height: math.unit(2 + 8 / 12, "feet"),
  19303. weight: math.unit(22, "lb"),
  19304. name: "Front",
  19305. image: {
  19306. source: "./media/characters/evelyn/front.svg",
  19307. extra: 208 / 180
  19308. }
  19309. },
  19310. },
  19311. [
  19312. {
  19313. name: "Normal",
  19314. height: math.unit(2 + 8 / 12, "feet"),
  19315. default: true
  19316. },
  19317. ]
  19318. ))
  19319. characterMakers.push(() => makeCharacter(
  19320. { name: "Inca", species: ["gecko"], tags: ["anthro"] },
  19321. {
  19322. front: {
  19323. height: math.unit(5 + 9 / 12, "feet"),
  19324. weight: math.unit(139, "lb"),
  19325. name: "Front",
  19326. image: {
  19327. source: "./media/characters/inca/front.svg",
  19328. extra: 294 / 291,
  19329. bottom: 0.03
  19330. }
  19331. },
  19332. },
  19333. [
  19334. {
  19335. name: "Normal",
  19336. height: math.unit(5 + 9 / 12, "feet"),
  19337. default: true
  19338. },
  19339. ]
  19340. ))
  19341. characterMakers.push(() => makeCharacter(
  19342. { name: "Magdalene", species: ["mewtwo-y", "mew"], tags: ["anthro"] },
  19343. {
  19344. front: {
  19345. height: math.unit(5 + 1 / 12, "feet"),
  19346. weight: math.unit(84, "lb"),
  19347. name: "Front",
  19348. image: {
  19349. source: "./media/characters/magdalene/front.svg",
  19350. extra: 293 / 273
  19351. }
  19352. },
  19353. },
  19354. [
  19355. {
  19356. name: "Normal",
  19357. height: math.unit(5 + 1 / 12, "feet"),
  19358. default: true
  19359. },
  19360. ]
  19361. ))
  19362. characterMakers.push(() => makeCharacter(
  19363. { name: "Mera", species: ["flying-fox", "spectral-bat"], tags: ["anthro"] },
  19364. {
  19365. front: {
  19366. height: math.unit(6 + 3 / 12, "feet"),
  19367. weight: math.unit(185, "lb"),
  19368. name: "Front",
  19369. image: {
  19370. source: "./media/characters/mera/front.svg",
  19371. extra: 291 / 277,
  19372. bottom: 0.03
  19373. }
  19374. },
  19375. },
  19376. [
  19377. {
  19378. name: "Normal",
  19379. height: math.unit(6 + 3 / 12, "feet"),
  19380. default: true
  19381. },
  19382. ]
  19383. ))
  19384. characterMakers.push(() => makeCharacter(
  19385. { name: "Ceres", species: ["zoroark"], tags: ["anthro"] },
  19386. {
  19387. front: {
  19388. height: math.unit(6 + 7 / 12, "feet"),
  19389. weight: math.unit(160, "lb"),
  19390. name: "Front",
  19391. image: {
  19392. source: "./media/characters/ceres/front.svg",
  19393. extra: 1023 / 950,
  19394. bottom: 0.027
  19395. }
  19396. },
  19397. back: {
  19398. height: math.unit(6 + 7 / 12, "feet"),
  19399. weight: math.unit(160, "lb"),
  19400. name: "Back",
  19401. image: {
  19402. source: "./media/characters/ceres/back.svg",
  19403. extra: 1023 / 950
  19404. }
  19405. },
  19406. },
  19407. [
  19408. {
  19409. name: "Normal",
  19410. height: math.unit(6 + 7 / 12, "feet"),
  19411. default: true
  19412. },
  19413. ]
  19414. ))
  19415. characterMakers.push(() => makeCharacter(
  19416. { name: "Kris", species: ["ninetales"], tags: ["anthro"] },
  19417. {
  19418. front: {
  19419. height: math.unit(5 + 10 / 12, "feet"),
  19420. weight: math.unit(150, "lb"),
  19421. name: "Front",
  19422. image: {
  19423. source: "./media/characters/kris/front.svg",
  19424. extra: 885 / 803,
  19425. bottom: 0.03
  19426. }
  19427. },
  19428. },
  19429. [
  19430. {
  19431. name: "Normal",
  19432. height: math.unit(5 + 10 / 12, "feet"),
  19433. default: true
  19434. },
  19435. ]
  19436. ))
  19437. characterMakers.push(() => makeCharacter(
  19438. { name: "Taluthus", species: ["kitsune"], tags: ["anthro"] },
  19439. {
  19440. front: {
  19441. height: math.unit(7, "feet"),
  19442. weight: math.unit(120, "kg"),
  19443. name: "Front",
  19444. image: {
  19445. source: "./media/characters/taluthus/front.svg",
  19446. extra: 903 / 833,
  19447. bottom: 0.015
  19448. }
  19449. },
  19450. },
  19451. [
  19452. {
  19453. name: "Normal",
  19454. height: math.unit(7, "feet"),
  19455. default: true
  19456. },
  19457. {
  19458. name: "Macro",
  19459. height: math.unit(300, "feet")
  19460. },
  19461. ]
  19462. ))
  19463. characterMakers.push(() => makeCharacter(
  19464. { name: "Dawn", species: ["luxray"], tags: ["anthro"] },
  19465. {
  19466. front: {
  19467. height: math.unit(5 + 9 / 12, "feet"),
  19468. weight: math.unit(145, "lb"),
  19469. name: "Front",
  19470. image: {
  19471. source: "./media/characters/dawn/front.svg",
  19472. extra: 2094 / 2016,
  19473. bottom: 0.025
  19474. }
  19475. },
  19476. back: {
  19477. height: math.unit(5 + 9 / 12, "feet"),
  19478. weight: math.unit(160, "lb"),
  19479. name: "Back",
  19480. image: {
  19481. source: "./media/characters/dawn/back.svg",
  19482. extra: 2112 / 2080,
  19483. bottom: 0.005
  19484. }
  19485. },
  19486. },
  19487. [
  19488. {
  19489. name: "Normal",
  19490. height: math.unit(6 + 7 / 12, "feet"),
  19491. default: true
  19492. },
  19493. ]
  19494. ))
  19495. characterMakers.push(() => makeCharacter(
  19496. { name: "Arador", species: ["water-dragon"], tags: ["anthro"] },
  19497. {
  19498. anthro: {
  19499. height: math.unit(8 + 3 / 12, "feet"),
  19500. weight: math.unit(450, "lb"),
  19501. name: "Anthro",
  19502. image: {
  19503. source: "./media/characters/arador/anthro.svg",
  19504. extra: 1835 / 1718,
  19505. bottom: 0.025
  19506. }
  19507. },
  19508. feral: {
  19509. height: math.unit(4, "feet"),
  19510. weight: math.unit(200, "lb"),
  19511. name: "Feral",
  19512. image: {
  19513. source: "./media/characters/arador/feral.svg",
  19514. extra: 1683 / 1514,
  19515. bottom: 0.07
  19516. }
  19517. },
  19518. },
  19519. [
  19520. {
  19521. name: "Normal",
  19522. height: math.unit(8 + 3 / 12, "feet")
  19523. },
  19524. {
  19525. name: "Macro",
  19526. height: math.unit(82.5, "feet"),
  19527. default: true
  19528. },
  19529. ]
  19530. ))
  19531. characterMakers.push(() => makeCharacter(
  19532. { name: "Dharsi", species: ["dragon"], tags: ["anthro"] },
  19533. {
  19534. front: {
  19535. height: math.unit(5 + 10 / 12, "feet"),
  19536. weight: math.unit(125, "lb"),
  19537. name: "Front",
  19538. image: {
  19539. source: "./media/characters/dharsi/front.svg",
  19540. extra: 716 / 630,
  19541. bottom: 0.035
  19542. }
  19543. },
  19544. },
  19545. [
  19546. {
  19547. name: "Nano",
  19548. height: math.unit(100, "nm")
  19549. },
  19550. {
  19551. name: "Micro",
  19552. height: math.unit(2, "inches")
  19553. },
  19554. {
  19555. name: "Normal",
  19556. height: math.unit(5 + 10 / 12, "feet"),
  19557. default: true
  19558. },
  19559. {
  19560. name: "Macro",
  19561. height: math.unit(1000, "feet")
  19562. },
  19563. {
  19564. name: "Megamacro",
  19565. height: math.unit(10, "miles")
  19566. },
  19567. {
  19568. name: "Gigamacro",
  19569. height: math.unit(3000, "miles")
  19570. },
  19571. {
  19572. name: "Teramacro",
  19573. height: math.unit(500000, "miles")
  19574. },
  19575. {
  19576. name: "Teramacro+",
  19577. height: math.unit(30, "galaxies")
  19578. },
  19579. ]
  19580. ))
  19581. characterMakers.push(() => makeCharacter(
  19582. { name: "Deathy", species: ["wolf"], tags: ["anthro"] },
  19583. {
  19584. front: {
  19585. height: math.unit(6, "feet"),
  19586. weight: math.unit(150, "lb"),
  19587. name: "Front",
  19588. image: {
  19589. source: "./media/characters/deathy/front.svg",
  19590. extra: 1552 / 1463,
  19591. bottom: 0.025
  19592. }
  19593. },
  19594. side: {
  19595. height: math.unit(6, "feet"),
  19596. weight: math.unit(150, "lb"),
  19597. name: "Side",
  19598. image: {
  19599. source: "./media/characters/deathy/side.svg",
  19600. extra: 1604 / 1455,
  19601. bottom: 0.025
  19602. }
  19603. },
  19604. back: {
  19605. height: math.unit(6, "feet"),
  19606. weight: math.unit(150, "lb"),
  19607. name: "Back",
  19608. image: {
  19609. source: "./media/characters/deathy/back.svg",
  19610. extra: 1580 / 1463,
  19611. bottom: 0.005
  19612. }
  19613. },
  19614. },
  19615. [
  19616. {
  19617. name: "Micro",
  19618. height: math.unit(5, "millimeters")
  19619. },
  19620. {
  19621. name: "Normal",
  19622. height: math.unit(6 + 5 / 12, "feet"),
  19623. default: true
  19624. },
  19625. ]
  19626. ))
  19627. characterMakers.push(() => makeCharacter(
  19628. { name: "Juniper", species: ["snake"], tags: ["naga", "goo"] },
  19629. {
  19630. front: {
  19631. height: math.unit(16, "feet"),
  19632. weight: math.unit(4000, "lb"),
  19633. name: "Front",
  19634. image: {
  19635. source: "./media/characters/juniper/front.svg",
  19636. bottom: 0.04
  19637. }
  19638. },
  19639. },
  19640. [
  19641. {
  19642. name: "Normal",
  19643. height: math.unit(16, "feet"),
  19644. default: true
  19645. },
  19646. ]
  19647. ))
  19648. characterMakers.push(() => makeCharacter(
  19649. { name: "Hipster", species: ["fox"], tags: ["anthro"] },
  19650. {
  19651. front: {
  19652. height: math.unit(6, "feet"),
  19653. weight: math.unit(150, "lb"),
  19654. name: "Front",
  19655. image: {
  19656. source: "./media/characters/hipster/front.svg",
  19657. extra: 1312 / 1209,
  19658. bottom: 0.025
  19659. }
  19660. },
  19661. back: {
  19662. height: math.unit(6, "feet"),
  19663. weight: math.unit(150, "lb"),
  19664. name: "Back",
  19665. image: {
  19666. source: "./media/characters/hipster/back.svg",
  19667. extra: 1281 / 1196,
  19668. bottom: 0.01
  19669. }
  19670. },
  19671. },
  19672. [
  19673. {
  19674. name: "Micro",
  19675. height: math.unit(1, "mm")
  19676. },
  19677. {
  19678. name: "Normal",
  19679. height: math.unit(4, "inches"),
  19680. default: true
  19681. },
  19682. {
  19683. name: "Macro",
  19684. height: math.unit(500, "feet")
  19685. },
  19686. {
  19687. name: "Megamacro",
  19688. height: math.unit(1000, "miles")
  19689. },
  19690. ]
  19691. ))
  19692. characterMakers.push(() => makeCharacter(
  19693. { name: "Tendirmuldr", species: ["cow"], tags: ["anthro"] },
  19694. {
  19695. front: {
  19696. height: math.unit(6, "feet"),
  19697. weight: math.unit(150, "lb"),
  19698. name: "Front",
  19699. image: {
  19700. source: "./media/characters/tendirmuldr/front.svg",
  19701. extra: 1878 / 1772,
  19702. bottom: 0.015
  19703. }
  19704. },
  19705. },
  19706. [
  19707. {
  19708. name: "Megamacro",
  19709. height: math.unit(1500, "miles"),
  19710. default: true
  19711. },
  19712. ]
  19713. ))
  19714. characterMakers.push(() => makeCharacter(
  19715. { name: "Mort", species: ["demon"], tags: ["feral"] },
  19716. {
  19717. front: {
  19718. height: math.unit(14, "feet"),
  19719. weight: math.unit(12000, "lb"),
  19720. name: "Front",
  19721. image: {
  19722. source: "./media/characters/mort/front.svg",
  19723. extra: 365 / 318,
  19724. bottom: 0.01
  19725. }
  19726. },
  19727. side: {
  19728. height: math.unit(14, "feet"),
  19729. weight: math.unit(12000, "lb"),
  19730. name: "Side",
  19731. image: {
  19732. source: "./media/characters/mort/side.svg",
  19733. extra: 365 / 318,
  19734. bottom: 0.052
  19735. },
  19736. default: true
  19737. },
  19738. back: {
  19739. height: math.unit(14, "feet"),
  19740. weight: math.unit(12000, "lb"),
  19741. name: "Back",
  19742. image: {
  19743. source: "./media/characters/mort/back.svg",
  19744. extra: 371 / 332,
  19745. bottom: 0.18
  19746. }
  19747. },
  19748. },
  19749. [
  19750. {
  19751. name: "Normal",
  19752. height: math.unit(14, "feet"),
  19753. default: true
  19754. },
  19755. ]
  19756. ))
  19757. characterMakers.push(() => makeCharacter(
  19758. { name: "Lycoa", species: ["sergal"], tags: ["anthro", "goo"] },
  19759. {
  19760. front: {
  19761. height: math.unit(8, "feet"),
  19762. weight: math.unit(1, "ton"),
  19763. name: "Front",
  19764. image: {
  19765. source: "./media/characters/lycoa/front.svg",
  19766. extra: 1875 / 1789,
  19767. bottom: 0.022
  19768. }
  19769. },
  19770. back: {
  19771. height: math.unit(8, "feet"),
  19772. weight: math.unit(1, "ton"),
  19773. name: "Back",
  19774. image: {
  19775. source: "./media/characters/lycoa/back.svg",
  19776. extra: 1835 / 1781,
  19777. bottom: 0.03
  19778. }
  19779. },
  19780. head: {
  19781. height: math.unit(2.1, "feet"),
  19782. name: "Head",
  19783. image: {
  19784. source: "./media/characters/lycoa/head.svg"
  19785. }
  19786. },
  19787. tailmaw: {
  19788. height: math.unit(1.9, "feet"),
  19789. name: "Tailmaw",
  19790. image: {
  19791. source: "./media/characters/lycoa/tailmaw.svg"
  19792. }
  19793. },
  19794. tentacles: {
  19795. height: math.unit(2.1, "feet"),
  19796. name: "Tentacles",
  19797. image: {
  19798. source: "./media/characters/lycoa/tentacles.svg"
  19799. }
  19800. },
  19801. dick: {
  19802. height: math.unit(1.73, "feet"),
  19803. name: "Dick",
  19804. image: {
  19805. source: "./media/characters/lycoa/dick.svg"
  19806. }
  19807. },
  19808. },
  19809. [
  19810. {
  19811. name: "Normal",
  19812. height: math.unit(8, "feet"),
  19813. default: true
  19814. },
  19815. {
  19816. name: "Macro",
  19817. height: math.unit(30, "feet")
  19818. },
  19819. ]
  19820. ))
  19821. characterMakers.push(() => makeCharacter(
  19822. { name: "Naldara", species: ["jackalope"], tags: ["anthro", "naga"] },
  19823. {
  19824. front: {
  19825. height: math.unit(4 + 2 / 12, "feet"),
  19826. weight: math.unit(70, "lb"),
  19827. name: "Front",
  19828. image: {
  19829. source: "./media/characters/naldara/front.svg",
  19830. extra: 841 / 720,
  19831. bottom: 0.04
  19832. }
  19833. },
  19834. naga: {
  19835. height: math.unit(23, "feet"),
  19836. weight: math.unit(15000, "kg"),
  19837. name: "Naga",
  19838. image: {
  19839. source: "./media/characters/naldara/naga.svg",
  19840. extra: 3290 / 2959,
  19841. bottom: 124 / 3432
  19842. }
  19843. },
  19844. },
  19845. [
  19846. {
  19847. name: "Normal",
  19848. height: math.unit(4 + 2 / 12, "feet"),
  19849. default: true
  19850. },
  19851. ]
  19852. ))
  19853. characterMakers.push(() => makeCharacter(
  19854. { name: "Briar", species: ["hyena"], tags: ["anthro"] },
  19855. {
  19856. front: {
  19857. height: math.unit(13 + 7 / 12, "feet"),
  19858. weight: math.unit(1500, "lb"),
  19859. name: "Front",
  19860. image: {
  19861. source: "./media/characters/briar/front.svg",
  19862. extra: 626 / 596,
  19863. bottom: 0.08
  19864. }
  19865. },
  19866. },
  19867. [
  19868. {
  19869. name: "Normal",
  19870. height: math.unit(13 + 7 / 12, "feet"),
  19871. default: true
  19872. },
  19873. ]
  19874. ))
  19875. characterMakers.push(() => makeCharacter(
  19876. { name: "Vanguard", species: ["otter", "alligator"], tags: ["anthro"] },
  19877. {
  19878. side: {
  19879. height: math.unit(10, "feet"),
  19880. weight: math.unit(500, "lb"),
  19881. name: "Side",
  19882. image: {
  19883. source: "./media/characters/vanguard/side.svg",
  19884. extra: 502 / 425,
  19885. bottom: 0.087
  19886. }
  19887. },
  19888. },
  19889. [
  19890. {
  19891. name: "Normal",
  19892. height: math.unit(10, "feet"),
  19893. default: true
  19894. },
  19895. ]
  19896. ))
  19897. characterMakers.push(() => makeCharacter(
  19898. { name: "Artemis", species: ["renamon", "construct"], tags: ["anthro"] },
  19899. {
  19900. front: {
  19901. height: math.unit(7.5, "feet"),
  19902. weight: math.unit(2, "lb"),
  19903. name: "Front",
  19904. image: {
  19905. source: "./media/characters/artemis/front.svg",
  19906. extra: 1192 / 1075,
  19907. bottom: 0.07
  19908. }
  19909. },
  19910. frontNsfw: {
  19911. height: math.unit(7.5, "feet"),
  19912. weight: math.unit(2, "lb"),
  19913. name: "Front (NSFW)",
  19914. image: {
  19915. source: "./media/characters/artemis/front-nsfw.svg",
  19916. extra: 1192 / 1075,
  19917. bottom: 0.07
  19918. }
  19919. },
  19920. frontNsfwer: {
  19921. height: math.unit(7.5, "feet"),
  19922. weight: math.unit(2, "lb"),
  19923. name: "Front (NSFW-er)",
  19924. image: {
  19925. source: "./media/characters/artemis/front-nsfwer.svg",
  19926. extra: 1192 / 1075,
  19927. bottom: 0.07
  19928. }
  19929. },
  19930. side: {
  19931. height: math.unit(7.5, "feet"),
  19932. weight: math.unit(2, "lb"),
  19933. name: "Side",
  19934. image: {
  19935. source: "./media/characters/artemis/side.svg",
  19936. extra: 1192 / 1075,
  19937. bottom: 0.07
  19938. }
  19939. },
  19940. sideNsfw: {
  19941. height: math.unit(7.5, "feet"),
  19942. weight: math.unit(2, "lb"),
  19943. name: "Side (NSFW)",
  19944. image: {
  19945. source: "./media/characters/artemis/side-nsfw.svg",
  19946. extra: 1192 / 1075,
  19947. bottom: 0.07
  19948. }
  19949. },
  19950. sideNsfwer: {
  19951. height: math.unit(7.5, "feet"),
  19952. weight: math.unit(2, "lb"),
  19953. name: "Side (NSFW-er)",
  19954. image: {
  19955. source: "./media/characters/artemis/side-nsfwer.svg",
  19956. extra: 1192 / 1075,
  19957. bottom: 0.07
  19958. }
  19959. },
  19960. maw: {
  19961. height: math.unit(1.1, "feet"),
  19962. name: "Maw",
  19963. image: {
  19964. source: "./media/characters/artemis/maw.svg"
  19965. }
  19966. },
  19967. stomach: {
  19968. height: math.unit(0.95, "feet"),
  19969. name: "Stomach",
  19970. image: {
  19971. source: "./media/characters/artemis/stomach.svg"
  19972. }
  19973. },
  19974. dickCanine: {
  19975. height: math.unit(1, "feet"),
  19976. name: "Dick (Canine)",
  19977. image: {
  19978. source: "./media/characters/artemis/dick-canine.svg"
  19979. }
  19980. },
  19981. dickEquine: {
  19982. height: math.unit(0.85, "feet"),
  19983. name: "Dick (Equine)",
  19984. image: {
  19985. source: "./media/characters/artemis/dick-equine.svg"
  19986. }
  19987. },
  19988. dickExotic: {
  19989. height: math.unit(0.85, "feet"),
  19990. name: "Dick (Exotic)",
  19991. image: {
  19992. source: "./media/characters/artemis/dick-exotic.svg"
  19993. }
  19994. },
  19995. },
  19996. [
  19997. {
  19998. name: "Normal",
  19999. height: math.unit(7.5, "feet"),
  20000. default: true
  20001. },
  20002. {
  20003. name: "Enlarged",
  20004. height: math.unit(12, "feet")
  20005. },
  20006. ]
  20007. ))
  20008. characterMakers.push(() => makeCharacter(
  20009. { name: "Kira", species: ["fluudrani"], tags: ["anthro"] },
  20010. {
  20011. front: {
  20012. height: math.unit(5 + 3 / 12, "feet"),
  20013. weight: math.unit(160, "lb"),
  20014. name: "Front",
  20015. image: {
  20016. source: "./media/characters/kira/front.svg",
  20017. extra: 906 / 786,
  20018. bottom: 0.01
  20019. }
  20020. },
  20021. back: {
  20022. height: math.unit(5 + 3 / 12, "feet"),
  20023. weight: math.unit(160, "lb"),
  20024. name: "Back",
  20025. image: {
  20026. source: "./media/characters/kira/back.svg",
  20027. extra: 882 / 757,
  20028. bottom: 0.005
  20029. }
  20030. },
  20031. frontDressed: {
  20032. height: math.unit(5 + 3 / 12, "feet"),
  20033. weight: math.unit(160, "lb"),
  20034. name: "Front (Dressed)",
  20035. image: {
  20036. source: "./media/characters/kira/front-dressed.svg",
  20037. extra: 906 / 786,
  20038. bottom: 0.01
  20039. }
  20040. },
  20041. beans: {
  20042. height: math.unit(0.92, "feet"),
  20043. name: "Beans",
  20044. image: {
  20045. source: "./media/characters/kira/beans.svg"
  20046. }
  20047. },
  20048. },
  20049. [
  20050. {
  20051. name: "Normal",
  20052. height: math.unit(5 + 3 / 12, "feet"),
  20053. default: true
  20054. },
  20055. ]
  20056. ))
  20057. characterMakers.push(() => makeCharacter(
  20058. { name: "Scramble", species: ["surkanu"], tags: ["anthro"] },
  20059. {
  20060. front: {
  20061. height: math.unit(5 + 4 / 12, "feet"),
  20062. weight: math.unit(145, "lb"),
  20063. name: "Front",
  20064. image: {
  20065. source: "./media/characters/scramble/front.svg",
  20066. extra: 763 / 727,
  20067. bottom: 0.05
  20068. }
  20069. },
  20070. back: {
  20071. height: math.unit(5 + 4 / 12, "feet"),
  20072. weight: math.unit(145, "lb"),
  20073. name: "Back",
  20074. image: {
  20075. source: "./media/characters/scramble/back.svg",
  20076. extra: 826 / 737,
  20077. bottom: 0.002
  20078. }
  20079. },
  20080. },
  20081. [
  20082. {
  20083. name: "Normal",
  20084. height: math.unit(5 + 4 / 12, "feet"),
  20085. default: true
  20086. },
  20087. ]
  20088. ))
  20089. characterMakers.push(() => makeCharacter(
  20090. { name: "Biscuit", species: ["surkanu"], tags: ["anthro"] },
  20091. {
  20092. side: {
  20093. height: math.unit(6 + 2 / 12, "feet"),
  20094. weight: math.unit(190, "lb"),
  20095. name: "Side",
  20096. image: {
  20097. source: "./media/characters/biscuit/side.svg",
  20098. extra: 858 / 791,
  20099. bottom: 0.044
  20100. }
  20101. },
  20102. },
  20103. [
  20104. {
  20105. name: "Normal",
  20106. height: math.unit(6 + 2 / 12, "feet"),
  20107. default: true
  20108. },
  20109. ]
  20110. ))
  20111. characterMakers.push(() => makeCharacter(
  20112. { name: "Poffin", species: ["kiiasi"], tags: ["anthro"] },
  20113. {
  20114. front: {
  20115. height: math.unit(5 + 2 / 12, "feet"),
  20116. weight: math.unit(120, "lb"),
  20117. name: "Front",
  20118. image: {
  20119. source: "./media/characters/poffin/front.svg",
  20120. extra: 786 / 680,
  20121. bottom: 0.005
  20122. }
  20123. },
  20124. },
  20125. [
  20126. {
  20127. name: "Normal",
  20128. height: math.unit(5 + 2 / 12, "feet"),
  20129. default: true
  20130. },
  20131. ]
  20132. ))
  20133. characterMakers.push(() => makeCharacter(
  20134. { name: "Dhari", species: ["werewolf", "fennec-fox"], tags: ["anthro"] },
  20135. {
  20136. front: {
  20137. height: math.unit(6 + 3 / 12, "feet"),
  20138. weight: math.unit(519, "lb"),
  20139. name: "Front",
  20140. image: {
  20141. source: "./media/characters/dhari/front.svg",
  20142. extra: 1048 / 946,
  20143. bottom: 0.015
  20144. }
  20145. },
  20146. back: {
  20147. height: math.unit(6 + 3 / 12, "feet"),
  20148. weight: math.unit(519, "lb"),
  20149. name: "Back",
  20150. image: {
  20151. source: "./media/characters/dhari/back.svg",
  20152. extra: 1048 / 931,
  20153. bottom: 0.005
  20154. }
  20155. },
  20156. frontDressed: {
  20157. height: math.unit(6 + 3 / 12, "feet"),
  20158. weight: math.unit(519, "lb"),
  20159. name: "Front (Dressed)",
  20160. image: {
  20161. source: "./media/characters/dhari/front-dressed.svg",
  20162. extra: 1713 / 1546,
  20163. bottom: 0.02
  20164. }
  20165. },
  20166. backDressed: {
  20167. height: math.unit(6 + 3 / 12, "feet"),
  20168. weight: math.unit(519, "lb"),
  20169. name: "Back (Dressed)",
  20170. image: {
  20171. source: "./media/characters/dhari/back-dressed.svg",
  20172. extra: 1699 / 1537,
  20173. bottom: 0.01
  20174. }
  20175. },
  20176. maw: {
  20177. height: math.unit(0.95, "feet"),
  20178. name: "Maw",
  20179. image: {
  20180. source: "./media/characters/dhari/maw.svg"
  20181. }
  20182. },
  20183. wereFront: {
  20184. height: math.unit(12 + 8 / 12, "feet"),
  20185. weight: math.unit(4000, "lb"),
  20186. name: "Front (Were)",
  20187. image: {
  20188. source: "./media/characters/dhari/were-front.svg",
  20189. extra: 1065 / 969,
  20190. bottom: 0.015
  20191. }
  20192. },
  20193. wereBack: {
  20194. height: math.unit(12 + 8 / 12, "feet"),
  20195. weight: math.unit(4000, "lb"),
  20196. name: "Back (Were)",
  20197. image: {
  20198. source: "./media/characters/dhari/were-back.svg",
  20199. extra: 1065 / 969,
  20200. bottom: 0.012
  20201. }
  20202. },
  20203. wereMaw: {
  20204. height: math.unit(0.625, "meters"),
  20205. name: "Maw (Were)",
  20206. image: {
  20207. source: "./media/characters/dhari/were-maw.svg"
  20208. }
  20209. },
  20210. },
  20211. [
  20212. {
  20213. name: "Normal",
  20214. height: math.unit(6 + 3 / 12, "feet"),
  20215. default: true
  20216. },
  20217. ]
  20218. ))
  20219. characterMakers.push(() => makeCharacter(
  20220. { name: "Rena Dyne", species: ["sabertooth-tiger"], tags: ["anthro"] },
  20221. {
  20222. anthro: {
  20223. height: math.unit(5 + 7 / 12, "feet"),
  20224. weight: math.unit(175, "lb"),
  20225. name: "Anthro",
  20226. image: {
  20227. source: "./media/characters/rena-dyne/anthro.svg",
  20228. extra: 1849 / 1785,
  20229. bottom: 0.005
  20230. }
  20231. },
  20232. taur: {
  20233. height: math.unit(15 + 6 / 12, "feet"),
  20234. weight: math.unit(8000, "lb"),
  20235. name: "Taur",
  20236. image: {
  20237. source: "./media/characters/rena-dyne/taur.svg",
  20238. extra: 2315 / 2234,
  20239. bottom: 0.033
  20240. }
  20241. },
  20242. },
  20243. [
  20244. {
  20245. name: "Normal",
  20246. height: math.unit(5 + 7 / 12, "feet"),
  20247. default: true
  20248. },
  20249. ]
  20250. ))
  20251. characterMakers.push(() => makeCharacter(
  20252. { name: "Weremeep", species: ["monster"], tags: ["anthro"] },
  20253. {
  20254. front: {
  20255. height: math.unit(8, "feet"),
  20256. weight: math.unit(600, "lb"),
  20257. name: "Front",
  20258. image: {
  20259. source: "./media/characters/weremeep/front.svg",
  20260. extra: 967 / 862,
  20261. bottom: 0.01
  20262. }
  20263. },
  20264. },
  20265. [
  20266. {
  20267. name: "Normal",
  20268. height: math.unit(8, "feet"),
  20269. default: true
  20270. },
  20271. {
  20272. name: "Lorg",
  20273. height: math.unit(12, "feet")
  20274. },
  20275. {
  20276. name: "Oh Lawd She Comin'",
  20277. height: math.unit(20, "feet")
  20278. },
  20279. ]
  20280. ))
  20281. characterMakers.push(() => makeCharacter(
  20282. { name: "Reza", species: ["cat", "dragon"], tags: ["anthro", "feral"] },
  20283. {
  20284. front: {
  20285. height: math.unit(4, "feet"),
  20286. weight: math.unit(90, "lb"),
  20287. name: "Front",
  20288. image: {
  20289. source: "./media/characters/reza/front.svg",
  20290. extra: 1183 / 1111,
  20291. bottom: 0.017
  20292. }
  20293. },
  20294. back: {
  20295. height: math.unit(4, "feet"),
  20296. weight: math.unit(90, "lb"),
  20297. name: "Back",
  20298. image: {
  20299. source: "./media/characters/reza/back.svg",
  20300. extra: 1183 / 1111,
  20301. bottom: 0.01
  20302. }
  20303. },
  20304. drake: {
  20305. height: math.unit(30, "feet"),
  20306. weight: math.unit(246960, "lb"),
  20307. name: "Drake",
  20308. image: {
  20309. source: "./media/characters/reza/drake.svg",
  20310. extra: 2350 / 2024,
  20311. bottom: 60.7 / 2403
  20312. }
  20313. },
  20314. },
  20315. [
  20316. {
  20317. name: "Normal",
  20318. height: math.unit(4, "feet"),
  20319. default: true
  20320. },
  20321. ]
  20322. ))
  20323. characterMakers.push(() => makeCharacter(
  20324. { name: "Athea", species: ["leopard"], tags: ["taur"] },
  20325. {
  20326. side: {
  20327. height: math.unit(15, "feet"),
  20328. weight: math.unit(14, "tons"),
  20329. name: "Side",
  20330. image: {
  20331. source: "./media/characters/athea/side.svg",
  20332. extra: 960 / 540,
  20333. bottom: 0.003
  20334. }
  20335. },
  20336. sitting: {
  20337. height: math.unit(6 * 2.85, "feet"),
  20338. weight: math.unit(14, "tons"),
  20339. name: "Sitting",
  20340. image: {
  20341. source: "./media/characters/athea/sitting.svg",
  20342. extra: 621 / 581,
  20343. bottom: 0.075
  20344. }
  20345. },
  20346. maw: {
  20347. height: math.unit(7.59498031496063, "feet"),
  20348. name: "Maw",
  20349. image: {
  20350. source: "./media/characters/athea/maw.svg"
  20351. }
  20352. },
  20353. },
  20354. [
  20355. {
  20356. name: "Lap Cat",
  20357. height: math.unit(2.5, "feet")
  20358. },
  20359. {
  20360. name: "Minimacro",
  20361. height: math.unit(15, "feet"),
  20362. default: true
  20363. },
  20364. {
  20365. name: "Macro",
  20366. height: math.unit(120, "feet")
  20367. },
  20368. {
  20369. name: "Macro+",
  20370. height: math.unit(640, "feet")
  20371. },
  20372. {
  20373. name: "Colossus",
  20374. height: math.unit(2.2, "miles")
  20375. },
  20376. ]
  20377. ))
  20378. characterMakers.push(() => makeCharacter(
  20379. { name: "Seroko", species: ["je-stoff-drachen"], tags: ["anthro"] },
  20380. {
  20381. front: {
  20382. height: math.unit(8 + 8 / 12, "feet"),
  20383. weight: math.unit(130, "kg"),
  20384. name: "Front",
  20385. image: {
  20386. source: "./media/characters/seroko/front.svg",
  20387. extra: 1385 / 1280,
  20388. bottom: 0.025
  20389. }
  20390. },
  20391. back: {
  20392. height: math.unit(8 + 8 / 12, "feet"),
  20393. weight: math.unit(130, "kg"),
  20394. name: "Back",
  20395. image: {
  20396. source: "./media/characters/seroko/back.svg",
  20397. extra: 1369 / 1238,
  20398. bottom: 0.018
  20399. }
  20400. },
  20401. frontDressed: {
  20402. height: math.unit(8 + 8 / 12, "feet"),
  20403. weight: math.unit(130, "kg"),
  20404. name: "Front (Dressed)",
  20405. image: {
  20406. source: "./media/characters/seroko/front-dressed.svg",
  20407. extra: 1366 / 1275,
  20408. bottom: 0.03
  20409. }
  20410. },
  20411. },
  20412. [
  20413. {
  20414. name: "Normal",
  20415. height: math.unit(8 + 8 / 12, "feet"),
  20416. default: true
  20417. },
  20418. ]
  20419. ))
  20420. characterMakers.push(() => makeCharacter(
  20421. { name: "Quatzi", species: ["river-snaptail"], tags: ["anthro"] },
  20422. {
  20423. front: {
  20424. height: math.unit(5.5, "feet"),
  20425. weight: math.unit(160, "lb"),
  20426. name: "Front",
  20427. image: {
  20428. source: "./media/characters/quatzi/front.svg",
  20429. extra: 2346 / 2242,
  20430. bottom: 0.015
  20431. }
  20432. },
  20433. },
  20434. [
  20435. {
  20436. name: "Normal",
  20437. height: math.unit(5.5, "feet"),
  20438. default: true
  20439. },
  20440. {
  20441. name: "Big",
  20442. height: math.unit(7.7, "feet")
  20443. },
  20444. ]
  20445. ))
  20446. characterMakers.push(() => makeCharacter(
  20447. { name: "Sen", species: ["red-panda"], tags: ["anthro"] },
  20448. {
  20449. front: {
  20450. height: math.unit(5 + 11 / 12, "feet"),
  20451. weight: math.unit(180, "lb"),
  20452. name: "Front",
  20453. image: {
  20454. source: "./media/characters/sen/front.svg",
  20455. extra: 1321 / 1254,
  20456. bottom: 0.015
  20457. }
  20458. },
  20459. side: {
  20460. height: math.unit(5 + 11 / 12, "feet"),
  20461. weight: math.unit(180, "lb"),
  20462. name: "Side",
  20463. image: {
  20464. source: "./media/characters/sen/side.svg",
  20465. extra: 1321 / 1254,
  20466. bottom: 0.007
  20467. }
  20468. },
  20469. back: {
  20470. height: math.unit(5 + 11 / 12, "feet"),
  20471. weight: math.unit(180, "lb"),
  20472. name: "Back",
  20473. image: {
  20474. source: "./media/characters/sen/back.svg",
  20475. extra: 1321 / 1254
  20476. }
  20477. },
  20478. },
  20479. [
  20480. {
  20481. name: "Normal",
  20482. height: math.unit(5 + 11 / 12, "feet"),
  20483. default: true
  20484. },
  20485. ]
  20486. ))
  20487. characterMakers.push(() => makeCharacter(
  20488. { name: "Fruity", species: ["sylveon"], tags: ["anthro"] },
  20489. {
  20490. front: {
  20491. height: math.unit(166.6, "cm"),
  20492. weight: math.unit(66.6, "kg"),
  20493. name: "Front",
  20494. image: {
  20495. source: "./media/characters/fruity/front.svg",
  20496. extra: 1510 / 1386,
  20497. bottom: 0.04
  20498. }
  20499. },
  20500. back: {
  20501. height: math.unit(166.6, "cm"),
  20502. weight: math.unit(66.6, "lb"),
  20503. name: "Back",
  20504. image: {
  20505. source: "./media/characters/fruity/back.svg",
  20506. extra: 1563 / 1435,
  20507. bottom: 0.005
  20508. }
  20509. },
  20510. },
  20511. [
  20512. {
  20513. name: "Normal",
  20514. height: math.unit(166.6, "cm"),
  20515. default: true
  20516. },
  20517. {
  20518. name: "Demonic",
  20519. height: math.unit(166.6, "feet")
  20520. },
  20521. ]
  20522. ))
  20523. characterMakers.push(() => makeCharacter(
  20524. { name: "Zost", species: ["monster"], tags: ["anthro"] },
  20525. {
  20526. side: {
  20527. height: math.unit(10, "feet"),
  20528. weight: math.unit(500, "lb"),
  20529. name: "Side",
  20530. image: {
  20531. source: "./media/characters/zost/side.svg",
  20532. extra: 966 / 880,
  20533. bottom: 0.075
  20534. }
  20535. },
  20536. mawFront: {
  20537. height: math.unit(1.08, "meters"),
  20538. name: "Maw (Front)",
  20539. image: {
  20540. source: "./media/characters/zost/maw-front.svg"
  20541. }
  20542. },
  20543. mawSide: {
  20544. height: math.unit(2.66, "feet"),
  20545. name: "Maw (Side)",
  20546. image: {
  20547. source: "./media/characters/zost/maw-side.svg"
  20548. }
  20549. },
  20550. },
  20551. [
  20552. {
  20553. name: "Normal",
  20554. height: math.unit(10, "feet"),
  20555. default: true
  20556. },
  20557. ]
  20558. ))
  20559. characterMakers.push(() => makeCharacter(
  20560. { name: "Luci", species: ["hellhound"], tags: ["anthro"] },
  20561. {
  20562. front: {
  20563. height: math.unit(5 + 4 / 12, "feet"),
  20564. weight: math.unit(120, "lb"),
  20565. name: "Front",
  20566. image: {
  20567. source: "./media/characters/luci/front.svg",
  20568. extra: 1985 / 1884,
  20569. bottom: 0.04
  20570. }
  20571. },
  20572. back: {
  20573. height: math.unit(5 + 4 / 12, "feet"),
  20574. weight: math.unit(120, "lb"),
  20575. name: "Back",
  20576. image: {
  20577. source: "./media/characters/luci/back.svg",
  20578. extra: 1892 / 1791,
  20579. bottom: 0.002
  20580. }
  20581. },
  20582. },
  20583. [
  20584. {
  20585. name: "Normal",
  20586. height: math.unit(5 + 4 / 12, "feet"),
  20587. default: true
  20588. },
  20589. ]
  20590. ))
  20591. characterMakers.push(() => makeCharacter(
  20592. { name: "2th", species: ["monster"], tags: ["anthro"] },
  20593. {
  20594. front: {
  20595. height: math.unit(1500, "feet"),
  20596. weight: math.unit(3.8e6, "tons"),
  20597. name: "Front",
  20598. image: {
  20599. source: "./media/characters/2th/front.svg",
  20600. extra: 3489 / 3350,
  20601. bottom: 0.1
  20602. }
  20603. },
  20604. foot: {
  20605. height: math.unit(461, "feet"),
  20606. name: "Foot",
  20607. image: {
  20608. source: "./media/characters/2th/foot.svg"
  20609. }
  20610. },
  20611. },
  20612. [
  20613. {
  20614. name: "\"Micro\"",
  20615. height: math.unit(15 + 7 / 12, "feet")
  20616. },
  20617. {
  20618. name: "Normal",
  20619. height: math.unit(1500, "feet"),
  20620. default: true
  20621. },
  20622. {
  20623. name: "Macro",
  20624. height: math.unit(5000, "feet")
  20625. },
  20626. {
  20627. name: "Megamacro",
  20628. height: math.unit(15, "miles")
  20629. },
  20630. {
  20631. name: "Gigamacro",
  20632. height: math.unit(4000, "miles")
  20633. },
  20634. {
  20635. name: "Galactic",
  20636. height: math.unit(50, "AU")
  20637. },
  20638. ]
  20639. ))
  20640. characterMakers.push(() => makeCharacter(
  20641. { name: "Amethyst", species: ["snow-leopard"], tags: ["anthro"] },
  20642. {
  20643. front: {
  20644. height: math.unit(5 + 6 / 12, "feet"),
  20645. weight: math.unit(220, "lb"),
  20646. name: "Front",
  20647. image: {
  20648. source: "./media/characters/amethyst/front.svg",
  20649. extra: 2078 / 2040,
  20650. bottom: 0.045
  20651. }
  20652. },
  20653. back: {
  20654. height: math.unit(5 + 6 / 12, "feet"),
  20655. weight: math.unit(220, "lb"),
  20656. name: "Back",
  20657. image: {
  20658. source: "./media/characters/amethyst/back.svg",
  20659. extra: 2021 / 1989,
  20660. bottom: 0.02
  20661. }
  20662. },
  20663. },
  20664. [
  20665. {
  20666. name: "Normal",
  20667. height: math.unit(5 + 6 / 12, "feet"),
  20668. default: true
  20669. },
  20670. ]
  20671. ))
  20672. characterMakers.push(() => makeCharacter(
  20673. { name: "Yumi Akiyama", species: ["border-collie"], tags: ["anthro"] },
  20674. {
  20675. front: {
  20676. height: math.unit(4 + 11 / 12, "feet"),
  20677. weight: math.unit(120, "lb"),
  20678. name: "Front",
  20679. image: {
  20680. source: "./media/characters/yumi-akiyama/front.svg",
  20681. extra: 1327 / 1235,
  20682. bottom: 0.02
  20683. }
  20684. },
  20685. back: {
  20686. height: math.unit(4 + 11 / 12, "feet"),
  20687. weight: math.unit(120, "lb"),
  20688. name: "Back",
  20689. image: {
  20690. source: "./media/characters/yumi-akiyama/back.svg",
  20691. extra: 1287 / 1245,
  20692. bottom: 0.002
  20693. }
  20694. },
  20695. },
  20696. [
  20697. {
  20698. name: "Galactic",
  20699. height: math.unit(50, "galaxies"),
  20700. default: true
  20701. },
  20702. {
  20703. name: "Universal",
  20704. height: math.unit(100, "universes")
  20705. },
  20706. ]
  20707. ))
  20708. characterMakers.push(() => makeCharacter(
  20709. { name: "Rifter Yrmori", species: ["vendeilen"], tags: ["anthro"] },
  20710. {
  20711. front: {
  20712. height: math.unit(8, "feet"),
  20713. weight: math.unit(500, "lb"),
  20714. name: "Front",
  20715. image: {
  20716. source: "./media/characters/rifter-yrmori/front.svg",
  20717. extra: 1180 / 1125,
  20718. bottom: 0.02
  20719. }
  20720. },
  20721. back: {
  20722. height: math.unit(8, "feet"),
  20723. weight: math.unit(500, "lb"),
  20724. name: "Back",
  20725. image: {
  20726. source: "./media/characters/rifter-yrmori/back.svg",
  20727. extra: 1190 / 1145,
  20728. bottom: 0.001
  20729. }
  20730. },
  20731. wings: {
  20732. height: math.unit(7.75, "feet"),
  20733. weight: math.unit(500, "lb"),
  20734. name: "Wings",
  20735. image: {
  20736. source: "./media/characters/rifter-yrmori/wings.svg",
  20737. extra: 1357 / 1285
  20738. }
  20739. },
  20740. maw: {
  20741. height: math.unit(0.8, "feet"),
  20742. name: "Maw",
  20743. image: {
  20744. source: "./media/characters/rifter-yrmori/maw.svg"
  20745. }
  20746. },
  20747. mawfront: {
  20748. height: math.unit(1.45, "feet"),
  20749. name: "Maw (Front)",
  20750. image: {
  20751. source: "./media/characters/rifter-yrmori/maw-front.svg"
  20752. }
  20753. },
  20754. },
  20755. [
  20756. {
  20757. name: "Normal",
  20758. height: math.unit(8, "feet"),
  20759. default: true
  20760. },
  20761. {
  20762. name: "Macro",
  20763. height: math.unit(42, "meters")
  20764. },
  20765. ]
  20766. ))
  20767. characterMakers.push(() => makeCharacter(
  20768. { name: "Tahajin", species: ["monster", "star-warrior", "fluudrani", "fish", "snake", "construct"], tags: ["anthro", "naga"] },
  20769. {
  20770. were: {
  20771. height: math.unit(25 + 6 / 12, "feet"),
  20772. weight: math.unit(10000, "lb"),
  20773. name: "Were",
  20774. image: {
  20775. source: "./media/characters/tahajin/were.svg",
  20776. extra: 801 / 770,
  20777. bottom: 0.042
  20778. }
  20779. },
  20780. aquatic: {
  20781. height: math.unit(6 + 4 / 12, "feet"),
  20782. weight: math.unit(160, "lb"),
  20783. name: "Aquatic",
  20784. image: {
  20785. source: "./media/characters/tahajin/aquatic.svg",
  20786. extra: 572 / 542,
  20787. bottom: 0.04
  20788. }
  20789. },
  20790. chow: {
  20791. height: math.unit(8 + 11 / 12, "feet"),
  20792. weight: math.unit(450, "lb"),
  20793. name: "Chow",
  20794. image: {
  20795. source: "./media/characters/tahajin/chow.svg",
  20796. extra: 660 / 640,
  20797. bottom: 0.015
  20798. }
  20799. },
  20800. demiNaga: {
  20801. height: math.unit(6 + 8 / 12, "feet"),
  20802. weight: math.unit(300, "lb"),
  20803. name: "Demi Naga",
  20804. image: {
  20805. source: "./media/characters/tahajin/demi-naga.svg",
  20806. extra: 643 / 615,
  20807. bottom: 0.1
  20808. }
  20809. },
  20810. data: {
  20811. height: math.unit(5, "inches"),
  20812. weight: math.unit(0.1, "lb"),
  20813. name: "Data",
  20814. image: {
  20815. source: "./media/characters/tahajin/data.svg"
  20816. }
  20817. },
  20818. fluu: {
  20819. height: math.unit(5 + 7 / 12, "feet"),
  20820. weight: math.unit(140, "lb"),
  20821. name: "Fluu",
  20822. image: {
  20823. source: "./media/characters/tahajin/fluu.svg",
  20824. extra: 628 / 592,
  20825. bottom: 0.02
  20826. }
  20827. },
  20828. starWarrior: {
  20829. height: math.unit(4 + 5 / 12, "feet"),
  20830. weight: math.unit(50, "lb"),
  20831. name: "Star Warrior",
  20832. image: {
  20833. source: "./media/characters/tahajin/star-warrior.svg"
  20834. }
  20835. },
  20836. },
  20837. [
  20838. {
  20839. name: "Normal",
  20840. height: math.unit(25 + 6 / 12, "feet"),
  20841. default: true
  20842. },
  20843. ]
  20844. ))
  20845. characterMakers.push(() => makeCharacter(
  20846. { name: "Gabira", species: ["weasel", "monster"], tags: ["anthro"] },
  20847. {
  20848. front: {
  20849. height: math.unit(8, "feet"),
  20850. weight: math.unit(350, "lb"),
  20851. name: "Front",
  20852. image: {
  20853. source: "./media/characters/gabira/front.svg",
  20854. extra: 608 / 580,
  20855. bottom: 0.03
  20856. }
  20857. },
  20858. back: {
  20859. height: math.unit(8, "feet"),
  20860. weight: math.unit(350, "lb"),
  20861. name: "Back",
  20862. image: {
  20863. source: "./media/characters/gabira/back.svg",
  20864. extra: 608 / 580,
  20865. bottom: 0.03
  20866. }
  20867. },
  20868. },
  20869. [
  20870. {
  20871. name: "Normal",
  20872. height: math.unit(8, "feet"),
  20873. default: true
  20874. },
  20875. ]
  20876. ))
  20877. characterMakers.push(() => makeCharacter(
  20878. { name: "Sasha Katraine", species: ["clouded-leopard"], tags: ["anthro"] },
  20879. {
  20880. front: {
  20881. height: math.unit(5 + 3 / 12, "feet"),
  20882. weight: math.unit(137, "lb"),
  20883. name: "Front",
  20884. image: {
  20885. source: "./media/characters/sasha-katraine/front.svg",
  20886. bottom: 0.045
  20887. }
  20888. },
  20889. },
  20890. [
  20891. {
  20892. name: "Micro",
  20893. height: math.unit(5, "inches")
  20894. },
  20895. {
  20896. name: "Normal",
  20897. height: math.unit(5 + 3 / 12, "feet"),
  20898. default: true
  20899. },
  20900. ]
  20901. ))
  20902. characterMakers.push(() => makeCharacter(
  20903. { name: "Der", species: ["gryphon"], tags: ["anthro"] },
  20904. {
  20905. side: {
  20906. height: math.unit(4, "inches"),
  20907. weight: math.unit(200, "grams"),
  20908. name: "Side",
  20909. image: {
  20910. source: "./media/characters/der/side.svg",
  20911. extra: 719 / 400,
  20912. bottom: 30.6 / 749.9187
  20913. }
  20914. },
  20915. },
  20916. [
  20917. {
  20918. name: "Micro",
  20919. height: math.unit(4, "inches"),
  20920. default: true
  20921. },
  20922. ]
  20923. ))
  20924. characterMakers.push(() => makeCharacter(
  20925. { name: "Fixerdragon", species: ["dragon"], tags: ["feral"] },
  20926. {
  20927. side: {
  20928. height: math.unit(30, "meters"),
  20929. weight: math.unit(700, "tonnes"),
  20930. name: "Side",
  20931. image: {
  20932. source: "./media/characters/fixerdragon/side.svg",
  20933. extra: (1293.0514 - 116.03) / 1106.86,
  20934. bottom: 116.03 / 1293.0514
  20935. }
  20936. },
  20937. },
  20938. [
  20939. {
  20940. name: "Planck",
  20941. height: math.unit(1.6e-35, "meters")
  20942. },
  20943. {
  20944. name: "Micro",
  20945. height: math.unit(0.4, "meters")
  20946. },
  20947. {
  20948. name: "Normal",
  20949. height: math.unit(30, "meters"),
  20950. default: true
  20951. },
  20952. {
  20953. name: "Megamacro",
  20954. height: math.unit(1.2, "megameters")
  20955. },
  20956. {
  20957. name: "Teramacro",
  20958. height: math.unit(130, "terameters")
  20959. },
  20960. {
  20961. name: "Yottamacro",
  20962. height: math.unit(6200, "yottameters")
  20963. },
  20964. ]
  20965. ));
  20966. characterMakers.push(() => makeCharacter(
  20967. { name: "Kite", species: ["sergal"], tags: ["anthro"] },
  20968. {
  20969. front: {
  20970. height: math.unit(8, "feet"),
  20971. weight: math.unit(250, "lb"),
  20972. name: "Front",
  20973. image: {
  20974. source: "./media/characters/kite/front.svg",
  20975. extra: 2796 / 2659,
  20976. bottom: 0.002
  20977. }
  20978. },
  20979. },
  20980. [
  20981. {
  20982. name: "Normal",
  20983. height: math.unit(8, "feet"),
  20984. default: true
  20985. },
  20986. {
  20987. name: "Macro",
  20988. height: math.unit(360, "feet")
  20989. },
  20990. {
  20991. name: "Megamacro",
  20992. height: math.unit(1500, "feet")
  20993. },
  20994. ]
  20995. ))
  20996. characterMakers.push(() => makeCharacter(
  20997. { name: "Poojawa Vynar", species: ["kitsune", "sabertooth-tiger"], tags: ["anthro"] },
  20998. {
  20999. front: {
  21000. height: math.unit(5 + 10 / 12, "feet"),
  21001. weight: math.unit(150, "lb"),
  21002. name: "Front",
  21003. image: {
  21004. source: "./media/characters/poojawa-vynar/front.svg",
  21005. extra: (1506.1547 - 55) / 1356.6,
  21006. bottom: 55 / 1506.1547
  21007. }
  21008. },
  21009. frontTailless: {
  21010. height: math.unit(5 + 10 / 12, "feet"),
  21011. weight: math.unit(150, "lb"),
  21012. name: "Front (Tailless)",
  21013. image: {
  21014. source: "./media/characters/poojawa-vynar/front-tailless.svg",
  21015. extra: (1506.1547 - 55) / 1356.6,
  21016. bottom: 55 / 1506.1547
  21017. }
  21018. },
  21019. },
  21020. [
  21021. {
  21022. name: "Normal",
  21023. height: math.unit(5 + 10 / 12, "feet"),
  21024. default: true
  21025. },
  21026. ]
  21027. ))
  21028. characterMakers.push(() => makeCharacter(
  21029. { name: "Violette", species: ["doberman"], tags: ["anthro"] },
  21030. {
  21031. front: {
  21032. height: math.unit(293, "meters"),
  21033. weight: math.unit(70400, "tons"),
  21034. name: "Front",
  21035. image: {
  21036. source: "./media/characters/violette/front.svg",
  21037. extra: 1227 / 1180,
  21038. bottom: 0.005
  21039. }
  21040. },
  21041. back: {
  21042. height: math.unit(293, "meters"),
  21043. weight: math.unit(70400, "tons"),
  21044. name: "Back",
  21045. image: {
  21046. source: "./media/characters/violette/back.svg",
  21047. extra: 1227 / 1180,
  21048. bottom: 0.005
  21049. }
  21050. },
  21051. },
  21052. [
  21053. {
  21054. name: "Macro",
  21055. height: math.unit(293, "meters"),
  21056. default: true
  21057. },
  21058. ]
  21059. ))
  21060. characterMakers.push(() => makeCharacter(
  21061. { name: "Alessandra", species: ["fox"], tags: ["anthro"] },
  21062. {
  21063. front: {
  21064. height: math.unit(1050, "feet"),
  21065. weight: math.unit(200000, "tons"),
  21066. name: "Front",
  21067. image: {
  21068. source: "./media/characters/alessandra/front.svg",
  21069. extra: 960 / 912,
  21070. bottom: 0.06
  21071. }
  21072. },
  21073. },
  21074. [
  21075. {
  21076. name: "Macro",
  21077. height: math.unit(1050, "feet")
  21078. },
  21079. {
  21080. name: "Macro+",
  21081. height: math.unit(900, "meters"),
  21082. default: true
  21083. },
  21084. ]
  21085. ))
  21086. characterMakers.push(() => makeCharacter(
  21087. { name: "Person", species: ["cat", "dragon"], tags: ["anthro"] },
  21088. {
  21089. front: {
  21090. height: math.unit(5, "feet"),
  21091. weight: math.unit(187, "lb"),
  21092. name: "Front",
  21093. image: {
  21094. source: "./media/characters/person/front.svg",
  21095. extra: 3087 / 2945,
  21096. bottom: 91 / 3181
  21097. }
  21098. },
  21099. },
  21100. [
  21101. {
  21102. name: "Micro",
  21103. height: math.unit(3, "inches")
  21104. },
  21105. {
  21106. name: "Normal",
  21107. height: math.unit(5, "feet"),
  21108. default: true
  21109. },
  21110. {
  21111. name: "Macro",
  21112. height: math.unit(90, "feet")
  21113. },
  21114. {
  21115. name: "Max Size",
  21116. height: math.unit(280, "feet")
  21117. },
  21118. ]
  21119. ))
  21120. characterMakers.push(() => makeCharacter(
  21121. { name: "Ty", species: ["fox"], tags: ["anthro"] },
  21122. {
  21123. front: {
  21124. height: math.unit(4.5, "meters"),
  21125. weight: math.unit(3200, "lb"),
  21126. name: "Front",
  21127. image: {
  21128. source: "./media/characters/ty/front.svg",
  21129. extra: 1038 / 960,
  21130. bottom: 31.156 / 1068
  21131. }
  21132. },
  21133. back: {
  21134. height: math.unit(4.5, "meters"),
  21135. weight: math.unit(3200, "lb"),
  21136. name: "Back",
  21137. image: {
  21138. source: "./media/characters/ty/back.svg",
  21139. extra: 1044 / 966,
  21140. bottom: 7.48 / 1049
  21141. }
  21142. },
  21143. },
  21144. [
  21145. {
  21146. name: "Normal",
  21147. height: math.unit(4.5, "meters"),
  21148. default: true
  21149. },
  21150. ]
  21151. ))
  21152. characterMakers.push(() => makeCharacter(
  21153. { name: "Rocky", species: ["kobold"], tags: ["anthro"] },
  21154. {
  21155. front: {
  21156. height: math.unit(5 + 4 / 12, "feet"),
  21157. weight: math.unit(115, "lb"),
  21158. name: "Front",
  21159. image: {
  21160. source: "./media/characters/rocky/front.svg",
  21161. extra: 1012 / 975,
  21162. bottom: 54 / 1066
  21163. }
  21164. },
  21165. },
  21166. [
  21167. {
  21168. name: "Normal",
  21169. height: math.unit(5 + 4 / 12, "feet"),
  21170. default: true
  21171. },
  21172. ]
  21173. ))
  21174. characterMakers.push(() => makeCharacter(
  21175. { name: "Ruin", species: ["sergal"], tags: ["anthro", "feral"] },
  21176. {
  21177. upright: {
  21178. height: math.unit(6, "meters"),
  21179. weight: math.unit(4000, "kg"),
  21180. name: "Upright",
  21181. image: {
  21182. source: "./media/characters/ruin/upright.svg",
  21183. extra: 668 / 661,
  21184. bottom: 42 / 799.8396
  21185. }
  21186. },
  21187. },
  21188. [
  21189. {
  21190. name: "Normal",
  21191. height: math.unit(6, "meters"),
  21192. default: true
  21193. },
  21194. ]
  21195. ))
  21196. characterMakers.push(() => makeCharacter(
  21197. { name: "Robin", species: ["coyote"], tags: ["anthro"] },
  21198. {
  21199. front: {
  21200. height: math.unit(5, "feet"),
  21201. weight: math.unit(106, "lb"),
  21202. name: "Front",
  21203. image: {
  21204. source: "./media/characters/robin/front.svg",
  21205. extra: 862 / 799,
  21206. bottom: 42.4 / 914.8856
  21207. }
  21208. },
  21209. },
  21210. [
  21211. {
  21212. name: "Normal",
  21213. height: math.unit(5, "feet"),
  21214. default: true
  21215. },
  21216. ]
  21217. ))
  21218. characterMakers.push(() => makeCharacter(
  21219. { name: "Saian", species: ["ventura"], tags: ["feral"] },
  21220. {
  21221. side: {
  21222. height: math.unit(3, "feet"),
  21223. weight: math.unit(225, "lb"),
  21224. name: "Side",
  21225. image: {
  21226. source: "./media/characters/saian/side.svg",
  21227. extra: 566 / 356,
  21228. bottom: 79.7 / 643
  21229. }
  21230. },
  21231. maw: {
  21232. height: math.unit(2.85, "feet"),
  21233. name: "Maw",
  21234. image: {
  21235. source: "./media/characters/saian/maw.svg"
  21236. }
  21237. },
  21238. },
  21239. [
  21240. {
  21241. name: "Normal",
  21242. height: math.unit(3, "feet"),
  21243. default: true
  21244. },
  21245. ]
  21246. ))
  21247. characterMakers.push(() => makeCharacter(
  21248. { name: "Equus Silvermane", species: ["horse"], tags: ["anthro"] },
  21249. {
  21250. side: {
  21251. height: math.unit(8, "feet"),
  21252. weight: math.unit(300, "lb"),
  21253. name: "Side",
  21254. image: {
  21255. source: "./media/characters/equus-silvermane/side.svg",
  21256. extra: 2176 / 2050,
  21257. bottom: 65.7 / 2245
  21258. }
  21259. },
  21260. front: {
  21261. height: math.unit(8, "feet"),
  21262. weight: math.unit(300, "lb"),
  21263. name: "Front",
  21264. image: {
  21265. source: "./media/characters/equus-silvermane/front.svg",
  21266. extra: 4633 / 4400,
  21267. bottom: 71.3 / 4706.915
  21268. }
  21269. },
  21270. sideStepping: {
  21271. height: math.unit(8, "feet"),
  21272. weight: math.unit(300, "lb"),
  21273. name: "Side (Stepping)",
  21274. image: {
  21275. source: "./media/characters/equus-silvermane/side-stepping.svg",
  21276. extra: 1968 / 1860,
  21277. bottom: 16.4 / 1989
  21278. }
  21279. },
  21280. },
  21281. [
  21282. {
  21283. name: "Normal",
  21284. height: math.unit(8, "feet")
  21285. },
  21286. {
  21287. name: "Minimacro",
  21288. height: math.unit(75, "feet"),
  21289. default: true
  21290. },
  21291. {
  21292. name: "Macro",
  21293. height: math.unit(150, "feet")
  21294. },
  21295. {
  21296. name: "Macro+",
  21297. height: math.unit(1000, "feet")
  21298. },
  21299. {
  21300. name: "Megamacro",
  21301. height: math.unit(1, "mile")
  21302. },
  21303. ]
  21304. ))
  21305. characterMakers.push(() => makeCharacter(
  21306. { name: "Windar", species: ["dragon"], tags: ["feral"] },
  21307. {
  21308. side: {
  21309. height: math.unit(20, "feet"),
  21310. weight: math.unit(30000, "kg"),
  21311. name: "Side",
  21312. image: {
  21313. source: "./media/characters/windar/side.svg",
  21314. extra: 1491 / 1248,
  21315. bottom: 82.56 / 1568
  21316. }
  21317. },
  21318. },
  21319. [
  21320. {
  21321. name: "Normal",
  21322. height: math.unit(20, "feet"),
  21323. default: true
  21324. },
  21325. ]
  21326. ))
  21327. characterMakers.push(() => makeCharacter(
  21328. { name: "Melody", species: ["dragon"], tags: ["feral"] },
  21329. {
  21330. side: {
  21331. height: math.unit(15.66, "feet"),
  21332. weight: math.unit(150, "lb"),
  21333. name: "Side",
  21334. image: {
  21335. source: "./media/characters/melody/side.svg",
  21336. extra: 1097 / 944,
  21337. bottom: 11.8 / 1109
  21338. }
  21339. },
  21340. sideOutfit: {
  21341. height: math.unit(15.66, "feet"),
  21342. weight: math.unit(150, "lb"),
  21343. name: "Side (Outfit)",
  21344. image: {
  21345. source: "./media/characters/melody/side-outfit.svg",
  21346. extra: 1097 / 944,
  21347. bottom: 11.8 / 1109
  21348. }
  21349. },
  21350. },
  21351. [
  21352. {
  21353. name: "Normal",
  21354. height: math.unit(15.66, "feet"),
  21355. default: true
  21356. },
  21357. ]
  21358. ))
  21359. characterMakers.push(() => makeCharacter(
  21360. { name: "Windera", species: ["dragon"], tags: ["anthro"] },
  21361. {
  21362. front: {
  21363. height: math.unit(8, "feet"),
  21364. weight: math.unit(325, "lb"),
  21365. name: "Front",
  21366. image: {
  21367. source: "./media/characters/windera/front.svg",
  21368. extra: 3180 / 2845,
  21369. bottom: 178 / 3365
  21370. }
  21371. },
  21372. },
  21373. [
  21374. {
  21375. name: "Normal",
  21376. height: math.unit(8, "feet"),
  21377. default: true
  21378. },
  21379. ]
  21380. ))
  21381. characterMakers.push(() => makeCharacter(
  21382. { name: "Sonear", species: ["lugia"], tags: ["feral"] },
  21383. {
  21384. front: {
  21385. height: math.unit(28.75, "feet"),
  21386. weight: math.unit(2000, "kg"),
  21387. name: "Front",
  21388. image: {
  21389. source: "./media/characters/sonear/front.svg",
  21390. extra: 1041.1 / 964.9,
  21391. bottom: 53.7 / 1096.6
  21392. }
  21393. },
  21394. },
  21395. [
  21396. {
  21397. name: "Normal",
  21398. height: math.unit(28.75, "feet"),
  21399. default: true
  21400. },
  21401. ]
  21402. ))
  21403. characterMakers.push(() => makeCharacter(
  21404. { name: "Kanara", species: ["dinosaur"], tags: ["feral"] },
  21405. {
  21406. side: {
  21407. height: math.unit(25.5, "feet"),
  21408. weight: math.unit(23000, "kg"),
  21409. name: "Side",
  21410. image: {
  21411. source: "./media/characters/kanara/side.svg"
  21412. }
  21413. },
  21414. },
  21415. [
  21416. {
  21417. name: "Normal",
  21418. height: math.unit(25.5, "feet"),
  21419. default: true
  21420. },
  21421. ]
  21422. ))
  21423. characterMakers.push(() => makeCharacter(
  21424. { name: "Ereus", species: ["gryphon"], tags: ["feral"] },
  21425. {
  21426. side: {
  21427. height: math.unit(10, "feet"),
  21428. weight: math.unit(1000, "kg"),
  21429. name: "Side",
  21430. image: {
  21431. source: "./media/characters/ereus/side.svg",
  21432. extra: 1157 / 959,
  21433. bottom: 153 / 1312.5
  21434. }
  21435. },
  21436. },
  21437. [
  21438. {
  21439. name: "Normal",
  21440. height: math.unit(10, "feet"),
  21441. default: true
  21442. },
  21443. ]
  21444. ))
  21445. characterMakers.push(() => makeCharacter(
  21446. { name: "E-ter", species: ["wolf", "robot"], tags: ["feral"] },
  21447. {
  21448. side: {
  21449. height: math.unit(4.5, "feet"),
  21450. weight: math.unit(500, "lb"),
  21451. name: "Side",
  21452. image: {
  21453. source: "./media/characters/e-ter/side.svg",
  21454. extra: 1550 / 1248,
  21455. bottom: 146 / 1694
  21456. }
  21457. },
  21458. },
  21459. [
  21460. {
  21461. name: "Normal",
  21462. height: math.unit(4.5, "feet"),
  21463. default: true
  21464. },
  21465. ]
  21466. ))
  21467. characterMakers.push(() => makeCharacter(
  21468. { name: "Yamie", species: ["orca"], tags: ["feral"] },
  21469. {
  21470. side: {
  21471. height: math.unit(9.7, "feet"),
  21472. weight: math.unit(4000, "kg"),
  21473. name: "Side",
  21474. image: {
  21475. source: "./media/characters/yamie/side.svg"
  21476. }
  21477. },
  21478. },
  21479. [
  21480. {
  21481. name: "Normal",
  21482. height: math.unit(9.7, "feet"),
  21483. default: true
  21484. },
  21485. ]
  21486. ))
  21487. characterMakers.push(() => makeCharacter(
  21488. { name: "Anders", species: ["unicorn", "deity"], tags: ["anthro"] },
  21489. {
  21490. front: {
  21491. height: math.unit(50, "feet"),
  21492. weight: math.unit(50000, "kg"),
  21493. name: "Front",
  21494. image: {
  21495. source: "./media/characters/anders/front.svg",
  21496. extra: 570 / 539,
  21497. bottom: 14.7 / 586.7
  21498. }
  21499. },
  21500. },
  21501. [
  21502. {
  21503. name: "Large",
  21504. height: math.unit(50, "feet")
  21505. },
  21506. {
  21507. name: "Macro",
  21508. height: math.unit(2000, "feet"),
  21509. default: true
  21510. },
  21511. {
  21512. name: "Megamacro",
  21513. height: math.unit(12, "miles")
  21514. },
  21515. ]
  21516. ))
  21517. characterMakers.push(() => makeCharacter(
  21518. { name: "Reban", species: ["dragon"], tags: ["anthro"] },
  21519. {
  21520. front: {
  21521. height: math.unit(7 + 2 / 12, "feet"),
  21522. weight: math.unit(300, "lb"),
  21523. name: "Front",
  21524. image: {
  21525. source: "./media/characters/reban/front.svg",
  21526. extra: 516 / 487,
  21527. bottom: 42.82 / 558.356
  21528. }
  21529. },
  21530. dick: {
  21531. height: math.unit(7 / 5, "feet"),
  21532. name: "Dick",
  21533. image: {
  21534. source: "./media/characters/reban/dick.svg"
  21535. }
  21536. },
  21537. },
  21538. [
  21539. {
  21540. name: "Natural Height",
  21541. height: math.unit(7 + 2 / 12, "feet")
  21542. },
  21543. {
  21544. name: "Macro",
  21545. height: math.unit(500, "feet"),
  21546. default: true
  21547. },
  21548. {
  21549. name: "Canon Height",
  21550. height: math.unit(50, "AU")
  21551. },
  21552. ]
  21553. ))
  21554. characterMakers.push(() => makeCharacter(
  21555. { name: "Terrance Keayes", species: ["vole"], tags: ["anthro"] },
  21556. {
  21557. front: {
  21558. height: math.unit(6, "feet"),
  21559. weight: math.unit(150, "lb"),
  21560. name: "Front",
  21561. image: {
  21562. source: "./media/characters/terrance-keayes/front.svg",
  21563. extra: 1.005,
  21564. bottom: 151 / 1615
  21565. }
  21566. },
  21567. side: {
  21568. height: math.unit(6, "feet"),
  21569. weight: math.unit(150, "lb"),
  21570. name: "Side",
  21571. image: {
  21572. source: "./media/characters/terrance-keayes/side.svg",
  21573. extra: 1.005,
  21574. bottom: 129.4 / 1544
  21575. }
  21576. },
  21577. back: {
  21578. height: math.unit(6, "feet"),
  21579. weight: math.unit(150, "lb"),
  21580. name: "Back",
  21581. image: {
  21582. source: "./media/characters/terrance-keayes/back.svg",
  21583. extra: 1.005,
  21584. bottom: 58.4 / 1557.3
  21585. }
  21586. },
  21587. dick: {
  21588. height: math.unit(6 * 0.208, "feet"),
  21589. name: "Dick",
  21590. image: {
  21591. source: "./media/characters/terrance-keayes/dick.svg"
  21592. }
  21593. },
  21594. },
  21595. [
  21596. {
  21597. name: "Canon Height",
  21598. height: math.unit(35, "miles"),
  21599. default: true
  21600. },
  21601. ]
  21602. ))
  21603. characterMakers.push(() => makeCharacter(
  21604. { name: "Ofelia", species: ["gigantosaurus"], tags: ["anthro"] },
  21605. {
  21606. front: {
  21607. height: math.unit(6, "feet"),
  21608. weight: math.unit(150, "lb"),
  21609. name: "Front",
  21610. image: {
  21611. source: "./media/characters/ofelia/front.svg",
  21612. extra: 546 / 541,
  21613. bottom: 39 / 583
  21614. }
  21615. },
  21616. back: {
  21617. height: math.unit(6, "feet"),
  21618. weight: math.unit(150, "lb"),
  21619. name: "Back",
  21620. image: {
  21621. source: "./media/characters/ofelia/back.svg",
  21622. extra: 564 / 559.5,
  21623. bottom: 8.69 / 573.02
  21624. }
  21625. },
  21626. maw: {
  21627. height: math.unit(1, "feet"),
  21628. name: "Maw",
  21629. image: {
  21630. source: "./media/characters/ofelia/maw.svg"
  21631. }
  21632. },
  21633. foot: {
  21634. height: math.unit(1.949, "feet"),
  21635. name: "Foot",
  21636. image: {
  21637. source: "./media/characters/ofelia/foot.svg"
  21638. }
  21639. },
  21640. },
  21641. [
  21642. {
  21643. name: "Canon Height",
  21644. height: math.unit(2000, "miles"),
  21645. default: true
  21646. },
  21647. ]
  21648. ))
  21649. characterMakers.push(() => makeCharacter(
  21650. { name: "Samuel", species: ["snow-leopard"], tags: ["anthro"] },
  21651. {
  21652. front: {
  21653. height: math.unit(6, "feet"),
  21654. weight: math.unit(150, "lb"),
  21655. name: "Front",
  21656. image: {
  21657. source: "./media/characters/samuel/front.svg",
  21658. extra: 265 / 258,
  21659. bottom: 2 / 266.1566
  21660. }
  21661. },
  21662. },
  21663. [
  21664. {
  21665. name: "Macro",
  21666. height: math.unit(100, "feet"),
  21667. default: true
  21668. },
  21669. {
  21670. name: "Full Size",
  21671. height: math.unit(1000, "miles")
  21672. },
  21673. ]
  21674. ))
  21675. characterMakers.push(() => makeCharacter(
  21676. { name: "Beishir Kiel", species: ["orca", "monster"], tags: ["anthro"] },
  21677. {
  21678. front: {
  21679. height: math.unit(6, "feet"),
  21680. weight: math.unit(300, "lb"),
  21681. name: "Front",
  21682. image: {
  21683. source: "./media/characters/beishir-kiel/front.svg",
  21684. extra: 569 / 547,
  21685. bottom: 41.9 / 609
  21686. }
  21687. },
  21688. maw: {
  21689. height: math.unit(6 * 0.202, "feet"),
  21690. name: "Maw",
  21691. image: {
  21692. source: "./media/characters/beishir-kiel/maw.svg"
  21693. }
  21694. },
  21695. },
  21696. [
  21697. {
  21698. name: "Macro",
  21699. height: math.unit(300, "feet"),
  21700. default: true
  21701. },
  21702. ]
  21703. ))
  21704. characterMakers.push(() => makeCharacter(
  21705. { name: "Logan Grey", species: ["fox"], tags: ["anthro"] },
  21706. {
  21707. front: {
  21708. height: math.unit(5 + 8 / 12, "feet"),
  21709. weight: math.unit(120, "lb"),
  21710. name: "Front",
  21711. image: {
  21712. source: "./media/characters/logan-grey/front.svg",
  21713. extra: 2539 / 2393,
  21714. bottom: 97.6 / 2636.37
  21715. }
  21716. },
  21717. frontAlt: {
  21718. height: math.unit(5 + 8 / 12, "feet"),
  21719. weight: math.unit(120, "lb"),
  21720. name: "Front (Alt)",
  21721. image: {
  21722. source: "./media/characters/logan-grey/front-alt.svg",
  21723. extra: 958 / 893,
  21724. bottom: 15 / 970.768
  21725. }
  21726. },
  21727. back: {
  21728. height: math.unit(5 + 8 / 12, "feet"),
  21729. weight: math.unit(120, "lb"),
  21730. name: "Back",
  21731. image: {
  21732. source: "./media/characters/logan-grey/back.svg",
  21733. extra: 958 / 893,
  21734. bottom: 2.1881 / 970.9788
  21735. }
  21736. },
  21737. dick: {
  21738. height: math.unit(1.437, "feet"),
  21739. name: "Dick",
  21740. image: {
  21741. source: "./media/characters/logan-grey/dick.svg"
  21742. }
  21743. },
  21744. },
  21745. [
  21746. {
  21747. name: "Normal",
  21748. height: math.unit(5 + 8 / 12, "feet")
  21749. },
  21750. {
  21751. name: "The 500 Foot Femboy",
  21752. height: math.unit(500, "feet"),
  21753. default: true
  21754. },
  21755. {
  21756. name: "Megmacro",
  21757. height: math.unit(20, "miles")
  21758. },
  21759. ]
  21760. ))
  21761. characterMakers.push(() => makeCharacter(
  21762. { name: "Draganta", species: ["dragon"], tags: ["anthro"] },
  21763. {
  21764. front: {
  21765. height: math.unit(8 + 2 / 12, "feet"),
  21766. weight: math.unit(275, "lb"),
  21767. name: "Front",
  21768. image: {
  21769. source: "./media/characters/draganta/front.svg",
  21770. extra: 1177 / 1135,
  21771. bottom: 33.46 / 1212.1
  21772. }
  21773. },
  21774. },
  21775. [
  21776. {
  21777. name: "Normal",
  21778. height: math.unit(8 + 6 / 12, "feet"),
  21779. default: true
  21780. },
  21781. {
  21782. name: "Macro",
  21783. height: math.unit(150, "feet")
  21784. },
  21785. {
  21786. name: "Megamacro",
  21787. height: math.unit(1000, "miles")
  21788. },
  21789. ]
  21790. ))
  21791. characterMakers.push(() => makeCharacter(
  21792. { name: "Voski", species: ["corvid"], tags: ["anthro"] },
  21793. {
  21794. front: {
  21795. height: math.unit(1.72, "m"),
  21796. weight: math.unit(80, "lb"),
  21797. name: "Front",
  21798. image: {
  21799. source: "./media/characters/voski/front.svg",
  21800. extra: 2076.22 / 2022.4,
  21801. bottom: 102.7 / 2177.3866
  21802. }
  21803. },
  21804. frontNsfw: {
  21805. height: math.unit(1.72, "m"),
  21806. weight: math.unit(80, "lb"),
  21807. name: "Front (NSFW)",
  21808. image: {
  21809. source: "./media/characters/voski/front-nsfw.svg",
  21810. extra: 2076.22 / 2022.4,
  21811. bottom: 102.7 / 2177.3866
  21812. }
  21813. },
  21814. back: {
  21815. height: math.unit(1.72, "m"),
  21816. weight: math.unit(80, "lb"),
  21817. name: "Back",
  21818. image: {
  21819. source: "./media/characters/voski/back.svg",
  21820. extra: 2104 / 2051,
  21821. bottom: 10.45 / 2113.63
  21822. }
  21823. },
  21824. },
  21825. [
  21826. {
  21827. name: "Normal",
  21828. height: math.unit(1.72, "m")
  21829. },
  21830. {
  21831. name: "Macro",
  21832. height: math.unit(55, "m"),
  21833. default: true
  21834. },
  21835. {
  21836. name: "Macro+",
  21837. height: math.unit(300, "m")
  21838. },
  21839. {
  21840. name: "Macro++",
  21841. height: math.unit(700, "m")
  21842. },
  21843. {
  21844. name: "Macro+++",
  21845. height: math.unit(4500, "m")
  21846. },
  21847. {
  21848. name: "Macro++++",
  21849. height: math.unit(45, "km")
  21850. },
  21851. {
  21852. name: "Macro+++++",
  21853. height: math.unit(1220, "km")
  21854. },
  21855. ]
  21856. ))
  21857. characterMakers.push(() => makeCharacter(
  21858. { name: "Icowom Lee", species: ["wolf"], tags: ["anthro"] },
  21859. {
  21860. front: {
  21861. height: math.unit(2.3, "m"),
  21862. weight: math.unit(304, "kg"),
  21863. name: "Front",
  21864. image: {
  21865. source: "./media/characters/icowom-lee/front.svg",
  21866. extra: 985 / 955,
  21867. bottom: 25.4 / 1012
  21868. }
  21869. },
  21870. fronttentacles: {
  21871. height: math.unit(2.3, "m"),
  21872. weight: math.unit(304, "kg"),
  21873. name: "Front-tentacles",
  21874. image: {
  21875. source: "./media/characters/icowom-lee/front-tentacles.svg",
  21876. extra: 985 / 955,
  21877. bottom: 25.4 / 1012
  21878. }
  21879. },
  21880. back: {
  21881. height: math.unit(2.3, "m"),
  21882. weight: math.unit(304, "kg"),
  21883. name: "Back",
  21884. image: {
  21885. source: "./media/characters/icowom-lee/back.svg",
  21886. extra: 975 / 954,
  21887. bottom: 9.5 / 985
  21888. }
  21889. },
  21890. backtentacles: {
  21891. height: math.unit(2.3, "m"),
  21892. weight: math.unit(304, "kg"),
  21893. name: "Back-tentacles",
  21894. image: {
  21895. source: "./media/characters/icowom-lee/back-tentacles.svg",
  21896. extra: 975 / 954,
  21897. bottom: 9.5 / 985
  21898. }
  21899. },
  21900. frontDressed: {
  21901. height: math.unit(2.3, "m"),
  21902. weight: math.unit(304, "kg"),
  21903. name: "Front (Dressed)",
  21904. image: {
  21905. source: "./media/characters/icowom-lee/front-dressed.svg",
  21906. extra: 3076 / 2933,
  21907. bottom: 51.4 / 3125.1889
  21908. }
  21909. },
  21910. rump: {
  21911. height: math.unit(0.776, "meters"),
  21912. name: "Rump",
  21913. image: {
  21914. source: "./media/characters/icowom-lee/rump.svg"
  21915. }
  21916. },
  21917. genitals: {
  21918. height: math.unit(0.78, "meters"),
  21919. name: "Genitals",
  21920. image: {
  21921. source: "./media/characters/icowom-lee/genitals.svg"
  21922. }
  21923. },
  21924. },
  21925. [
  21926. {
  21927. name: "Normal",
  21928. height: math.unit(2.3, "meters"),
  21929. default: true
  21930. },
  21931. {
  21932. name: "Macro",
  21933. height: math.unit(94, "meters"),
  21934. default: true
  21935. },
  21936. ]
  21937. ))
  21938. characterMakers.push(() => makeCharacter(
  21939. { name: "Shock Diamond", species: ["pharaoh-hound", "aeromorph"], tags: ["anthro"] },
  21940. {
  21941. front: {
  21942. height: math.unit(22, "meters"),
  21943. weight: math.unit(21000, "kg"),
  21944. name: "Front",
  21945. image: {
  21946. source: "./media/characters/shock-diamond/front.svg",
  21947. extra: 2204 / 2053,
  21948. bottom: 65 / 2239.47
  21949. }
  21950. },
  21951. frontNude: {
  21952. height: math.unit(22, "meters"),
  21953. weight: math.unit(21000, "kg"),
  21954. name: "Front (Nude)",
  21955. image: {
  21956. source: "./media/characters/shock-diamond/front-nude.svg",
  21957. extra: 2514 / 2285,
  21958. bottom: 13 / 2527.56
  21959. }
  21960. },
  21961. },
  21962. [
  21963. {
  21964. name: "Normal",
  21965. height: math.unit(3, "meters")
  21966. },
  21967. {
  21968. name: "Macro",
  21969. height: math.unit(22, "meters"),
  21970. default: true
  21971. },
  21972. ]
  21973. ))
  21974. characterMakers.push(() => makeCharacter(
  21975. { name: "Rory", species: ["dog", "magical"], tags: ["anthro"] },
  21976. {
  21977. front: {
  21978. height: math.unit(5 + 4 / 12, "feet"),
  21979. weight: math.unit(120, "lb"),
  21980. name: "Front",
  21981. image: {
  21982. source: "./media/characters/rory/front.svg",
  21983. extra: 589 / 556,
  21984. bottom: 45.7 / 635.76
  21985. }
  21986. },
  21987. frontNude: {
  21988. height: math.unit(5 + 4 / 12, "feet"),
  21989. weight: math.unit(120, "lb"),
  21990. name: "Front (Nude)",
  21991. image: {
  21992. source: "./media/characters/rory/front-nude.svg",
  21993. extra: 589 / 556,
  21994. bottom: 45.7 / 635.76
  21995. }
  21996. },
  21997. side: {
  21998. height: math.unit(5 + 4 / 12, "feet"),
  21999. weight: math.unit(120, "lb"),
  22000. name: "Side",
  22001. image: {
  22002. source: "./media/characters/rory/side.svg",
  22003. extra: 597 / 564,
  22004. bottom: 55 / 653
  22005. }
  22006. },
  22007. back: {
  22008. height: math.unit(5 + 4 / 12, "feet"),
  22009. weight: math.unit(120, "lb"),
  22010. name: "Back",
  22011. image: {
  22012. source: "./media/characters/rory/back.svg",
  22013. extra: 620 / 585,
  22014. bottom: 8.86 / 630.43
  22015. }
  22016. },
  22017. dick: {
  22018. height: math.unit(0.86, "feet"),
  22019. name: "Dick",
  22020. image: {
  22021. source: "./media/characters/rory/dick.svg"
  22022. }
  22023. },
  22024. },
  22025. [
  22026. {
  22027. name: "Normal",
  22028. height: math.unit(5 + 4 / 12, "feet"),
  22029. default: true
  22030. },
  22031. {
  22032. name: "Macro",
  22033. height: math.unit(100, "feet")
  22034. },
  22035. {
  22036. name: "Macro+",
  22037. height: math.unit(140, "feet")
  22038. },
  22039. {
  22040. name: "Macro++",
  22041. height: math.unit(300, "feet")
  22042. },
  22043. ]
  22044. ))
  22045. characterMakers.push(() => makeCharacter(
  22046. { name: "Sprisk", species: ["dragon"], tags: ["anthro"] },
  22047. {
  22048. front: {
  22049. height: math.unit(5 + 9 / 12, "feet"),
  22050. weight: math.unit(190, "lb"),
  22051. name: "Front",
  22052. image: {
  22053. source: "./media/characters/sprisk/front.svg",
  22054. extra: 1225 / 1180,
  22055. bottom: 42.7 / 1266.4
  22056. }
  22057. },
  22058. frontNsfw: {
  22059. height: math.unit(5 + 9 / 12, "feet"),
  22060. weight: math.unit(190, "lb"),
  22061. name: "Front (NSFW)",
  22062. image: {
  22063. source: "./media/characters/sprisk/front-nsfw.svg",
  22064. extra: 1225 / 1180,
  22065. bottom: 42.7 / 1266.4
  22066. }
  22067. },
  22068. back: {
  22069. height: math.unit(5 + 9 / 12, "feet"),
  22070. weight: math.unit(190, "lb"),
  22071. name: "Back",
  22072. image: {
  22073. source: "./media/characters/sprisk/back.svg",
  22074. extra: 1247 / 1200,
  22075. bottom: 5.6 / 1253.04
  22076. }
  22077. },
  22078. },
  22079. [
  22080. {
  22081. name: "Tiny",
  22082. height: math.unit(2, "inches")
  22083. },
  22084. {
  22085. name: "Normal",
  22086. height: math.unit(5 + 9 / 12, "feet"),
  22087. default: true
  22088. },
  22089. {
  22090. name: "Mini Macro",
  22091. height: math.unit(18, "feet")
  22092. },
  22093. {
  22094. name: "Macro",
  22095. height: math.unit(100, "feet")
  22096. },
  22097. {
  22098. name: "MACRO",
  22099. height: math.unit(50, "miles")
  22100. },
  22101. {
  22102. name: "M A C R O",
  22103. height: math.unit(300, "miles")
  22104. },
  22105. ]
  22106. ))
  22107. characterMakers.push(() => makeCharacter(
  22108. { name: "Bunsen", species: ["dragon"], tags: ["feral"] },
  22109. {
  22110. side: {
  22111. height: math.unit(15.6, "meters"),
  22112. weight: math.unit(700000, "kg"),
  22113. name: "Side",
  22114. image: {
  22115. source: "./media/characters/bunsen/side.svg",
  22116. extra: 1644 / 358
  22117. }
  22118. },
  22119. foot: {
  22120. height: math.unit(1.611 * 1644 / 358, "meter"),
  22121. name: "Foot",
  22122. image: {
  22123. source: "./media/characters/bunsen/foot.svg"
  22124. }
  22125. },
  22126. },
  22127. [
  22128. {
  22129. name: "Small",
  22130. height: math.unit(10, "feet")
  22131. },
  22132. {
  22133. name: "Normal",
  22134. height: math.unit(15.6, "meters"),
  22135. default: true
  22136. },
  22137. ]
  22138. ))
  22139. characterMakers.push(() => makeCharacter(
  22140. { name: "Sesh", species: ["finnish-spitz-dog"], tags: ["anthro"] },
  22141. {
  22142. front: {
  22143. height: math.unit(4 + 11 / 12, "feet"),
  22144. weight: math.unit(140, "lb"),
  22145. name: "Front",
  22146. image: {
  22147. source: "./media/characters/sesh/front.svg",
  22148. extra: 3420 / 3231,
  22149. bottom: 72 / 3949.5
  22150. }
  22151. },
  22152. },
  22153. [
  22154. {
  22155. name: "Normal",
  22156. height: math.unit(4 + 11 / 12, "feet")
  22157. },
  22158. {
  22159. name: "Grown",
  22160. height: math.unit(15, "feet"),
  22161. default: true
  22162. },
  22163. {
  22164. name: "Macro",
  22165. height: math.unit(1500, "feet")
  22166. },
  22167. {
  22168. name: "Megamacro",
  22169. height: math.unit(30, "miles")
  22170. },
  22171. {
  22172. name: "Continental",
  22173. height: math.unit(3000, "miles")
  22174. },
  22175. {
  22176. name: "Gravity Mass",
  22177. height: math.unit(300000, "miles")
  22178. },
  22179. {
  22180. name: "Planet Buster",
  22181. height: math.unit(30000000, "miles")
  22182. },
  22183. {
  22184. name: "Big",
  22185. height: math.unit(3000000000, "miles")
  22186. },
  22187. ]
  22188. ))
  22189. characterMakers.push(() => makeCharacter(
  22190. { name: "Pepper", species: ["zorgoia"], tags: ["anthro"] },
  22191. {
  22192. front: {
  22193. height: math.unit(9, "feet"),
  22194. weight: math.unit(350, "lb"),
  22195. name: "Front",
  22196. image: {
  22197. source: "./media/characters/pepper/front.svg",
  22198. extra: 1448 / 1312,
  22199. bottom: 9.4 / 1457.88
  22200. }
  22201. },
  22202. back: {
  22203. height: math.unit(9, "feet"),
  22204. weight: math.unit(350, "lb"),
  22205. name: "Back",
  22206. image: {
  22207. source: "./media/characters/pepper/back.svg",
  22208. extra: 1423 / 1300,
  22209. bottom: 4.6 / 1429
  22210. }
  22211. },
  22212. maw: {
  22213. height: math.unit(0.932, "feet"),
  22214. name: "Maw",
  22215. image: {
  22216. source: "./media/characters/pepper/maw.svg"
  22217. }
  22218. },
  22219. },
  22220. [
  22221. {
  22222. name: "Normal",
  22223. height: math.unit(9, "feet"),
  22224. default: true
  22225. },
  22226. ]
  22227. ))
  22228. characterMakers.push(() => makeCharacter(
  22229. { name: "Maelstrom", species: ["monster"], tags: ["anthro"] },
  22230. {
  22231. front: {
  22232. height: math.unit(6, "feet"),
  22233. weight: math.unit(150, "lb"),
  22234. name: "Front",
  22235. image: {
  22236. source: "./media/characters/maelstrom/front.svg",
  22237. extra: 2100 / 1883,
  22238. bottom: 94 / 2196.7
  22239. }
  22240. },
  22241. },
  22242. [
  22243. {
  22244. name: "Less Kaiju",
  22245. height: math.unit(200, "feet")
  22246. },
  22247. {
  22248. name: "Kaiju",
  22249. height: math.unit(400, "feet"),
  22250. default: true
  22251. },
  22252. {
  22253. name: "Kaiju-er",
  22254. height: math.unit(600, "feet")
  22255. },
  22256. ]
  22257. ))
  22258. characterMakers.push(() => makeCharacter(
  22259. { name: "Lexir", species: ["sergal"], tags: ["anthro"] },
  22260. {
  22261. front: {
  22262. height: math.unit(6 + 5 / 12, "feet"),
  22263. weight: math.unit(180, "lb"),
  22264. name: "Front",
  22265. image: {
  22266. source: "./media/characters/lexir/front.svg",
  22267. extra: 180 / 172,
  22268. bottom: 12 / 192
  22269. }
  22270. },
  22271. back: {
  22272. height: math.unit(6 + 5 / 12, "feet"),
  22273. weight: math.unit(180, "lb"),
  22274. name: "Back",
  22275. image: {
  22276. source: "./media/characters/lexir/back.svg",
  22277. extra: 183.84 / 175.5,
  22278. bottom: 3.1 / 187
  22279. }
  22280. },
  22281. },
  22282. [
  22283. {
  22284. name: "Very Smal",
  22285. height: math.unit(1, "nm")
  22286. },
  22287. {
  22288. name: "Normal",
  22289. height: math.unit(6 + 5 / 12, "feet"),
  22290. default: true
  22291. },
  22292. {
  22293. name: "Macro",
  22294. height: math.unit(1, "mile")
  22295. },
  22296. {
  22297. name: "Megamacro",
  22298. height: math.unit(50, "miles")
  22299. },
  22300. ]
  22301. ))
  22302. characterMakers.push(() => makeCharacter(
  22303. { name: "Maksio", species: ["lizard"], tags: ["anthro"] },
  22304. {
  22305. front: {
  22306. height: math.unit(1.5, "meters"),
  22307. weight: math.unit(100, "lb"),
  22308. name: "Front",
  22309. image: {
  22310. source: "./media/characters/maksio/front.svg",
  22311. extra: 1549 / 1531,
  22312. bottom: 123.7 / 1674.5429
  22313. }
  22314. },
  22315. back: {
  22316. height: math.unit(1.5, "meters"),
  22317. weight: math.unit(100, "lb"),
  22318. name: "Back",
  22319. image: {
  22320. source: "./media/characters/maksio/back.svg",
  22321. extra: 1541 / 1509,
  22322. bottom: 97 / 1639
  22323. }
  22324. },
  22325. hand: {
  22326. height: math.unit(0.621, "feet"),
  22327. name: "Hand",
  22328. image: {
  22329. source: "./media/characters/maksio/hand.svg"
  22330. }
  22331. },
  22332. foot: {
  22333. height: math.unit(1.611, "feet"),
  22334. name: "Foot",
  22335. image: {
  22336. source: "./media/characters/maksio/foot.svg"
  22337. }
  22338. },
  22339. },
  22340. [
  22341. {
  22342. name: "Shrunken",
  22343. height: math.unit(10, "cm")
  22344. },
  22345. {
  22346. name: "Normal",
  22347. height: math.unit(150, "cm"),
  22348. default: true
  22349. },
  22350. ]
  22351. ))
  22352. characterMakers.push(() => makeCharacter(
  22353. { name: "Erza Bear", species: ["human", "dragon"], tags: ["anthro"] },
  22354. {
  22355. front: {
  22356. height: math.unit(100, "feet"),
  22357. name: "Front",
  22358. image: {
  22359. source: "./media/characters/erza-bear/front.svg",
  22360. extra: 2449 / 2390,
  22361. bottom: 46 / 2494
  22362. }
  22363. },
  22364. back: {
  22365. height: math.unit(100, "feet"),
  22366. name: "Back",
  22367. image: {
  22368. source: "./media/characters/erza-bear/back.svg",
  22369. extra: 2489 / 2430,
  22370. bottom: 85.4 / 2480
  22371. }
  22372. },
  22373. tail: {
  22374. height: math.unit(42, "feet"),
  22375. name: "Tail",
  22376. image: {
  22377. source: "./media/characters/erza-bear/tail.svg"
  22378. }
  22379. },
  22380. tongue: {
  22381. height: math.unit(8, "feet"),
  22382. name: "Tongue",
  22383. image: {
  22384. source: "./media/characters/erza-bear/tongue.svg"
  22385. }
  22386. },
  22387. dick: {
  22388. height: math.unit(10.5, "feet"),
  22389. name: "Dick",
  22390. image: {
  22391. source: "./media/characters/erza-bear/dick.svg"
  22392. }
  22393. },
  22394. dickVertical: {
  22395. height: math.unit(16.9, "feet"),
  22396. name: "Dick (Vertical)",
  22397. image: {
  22398. source: "./media/characters/erza-bear/dick-vertical.svg"
  22399. }
  22400. },
  22401. },
  22402. [
  22403. {
  22404. name: "Macro",
  22405. height: math.unit(100, "feet"),
  22406. default: true
  22407. },
  22408. ]
  22409. ))
  22410. characterMakers.push(() => makeCharacter(
  22411. { name: "Violet Flor", species: ["skunk"], tags: ["anthro"] },
  22412. {
  22413. front: {
  22414. height: math.unit(172, "cm"),
  22415. weight: math.unit(73, "kg"),
  22416. name: "Front",
  22417. image: {
  22418. source: "./media/characters/violet-flor/front.svg",
  22419. extra: 1530 / 1442,
  22420. bottom: 61.9 / 1588.8
  22421. }
  22422. },
  22423. back: {
  22424. height: math.unit(180, "cm"),
  22425. weight: math.unit(73, "kg"),
  22426. name: "Back",
  22427. image: {
  22428. source: "./media/characters/violet-flor/back.svg",
  22429. extra: 1692 / 1630,
  22430. bottom: 20 / 1712
  22431. }
  22432. },
  22433. },
  22434. [
  22435. {
  22436. name: "Normal",
  22437. height: math.unit(172, "cm"),
  22438. default: true
  22439. },
  22440. ]
  22441. ))
  22442. characterMakers.push(() => makeCharacter(
  22443. { name: "Lynn Rhea", species: ["shark"], tags: ["anthro"] },
  22444. {
  22445. front: {
  22446. height: math.unit(6, "feet"),
  22447. weight: math.unit(220, "lb"),
  22448. name: "Front",
  22449. image: {
  22450. source: "./media/characters/lynn-rhea/front.svg",
  22451. extra: 310 / 273
  22452. }
  22453. },
  22454. back: {
  22455. height: math.unit(6, "feet"),
  22456. weight: math.unit(220, "lb"),
  22457. name: "Back",
  22458. image: {
  22459. source: "./media/characters/lynn-rhea/back.svg",
  22460. extra: 310 / 273
  22461. }
  22462. },
  22463. dicks: {
  22464. height: math.unit(0.9, "feet"),
  22465. name: "Dicks",
  22466. image: {
  22467. source: "./media/characters/lynn-rhea/dicks.svg"
  22468. }
  22469. },
  22470. slit: {
  22471. height: math.unit(0.4, "feet"),
  22472. name: "Slit",
  22473. image: {
  22474. source: "./media/characters/lynn-rhea/slit.svg"
  22475. }
  22476. },
  22477. },
  22478. [
  22479. {
  22480. name: "Micro",
  22481. height: math.unit(1, "inch")
  22482. },
  22483. {
  22484. name: "Macro",
  22485. height: math.unit(60, "feet"),
  22486. default: true
  22487. },
  22488. {
  22489. name: "Megamacro",
  22490. height: math.unit(2, "miles")
  22491. },
  22492. {
  22493. name: "Gigamacro",
  22494. height: math.unit(3, "earths")
  22495. },
  22496. {
  22497. name: "Galactic",
  22498. height: math.unit(0.8, "galaxies")
  22499. },
  22500. ]
  22501. ))
  22502. characterMakers.push(() => makeCharacter(
  22503. { name: "Valathos", species: ["sea-monster"], tags: ["naga"] },
  22504. {
  22505. front: {
  22506. height: math.unit(1600, "feet"),
  22507. weight: math.unit(85758785169, "kg"),
  22508. name: "Front",
  22509. image: {
  22510. source: "./media/characters/valathos/front.svg",
  22511. extra: 1451 / 1339
  22512. }
  22513. },
  22514. },
  22515. [
  22516. {
  22517. name: "Macro",
  22518. height: math.unit(1600, "feet"),
  22519. default: true
  22520. },
  22521. ]
  22522. ))
  22523. characterMakers.push(() => makeCharacter(
  22524. { name: "Azula", species: ["demon"], tags: ["anthro"] },
  22525. {
  22526. front: {
  22527. height: math.unit(7 + 5 / 12, "feet"),
  22528. weight: math.unit(300, "lb"),
  22529. name: "Front",
  22530. image: {
  22531. source: "./media/characters/azula/front.svg",
  22532. extra: 3208 / 2880,
  22533. bottom: 80.2 / 3277
  22534. }
  22535. },
  22536. back: {
  22537. height: math.unit(7 + 5 / 12, "feet"),
  22538. weight: math.unit(300, "lb"),
  22539. name: "Back",
  22540. image: {
  22541. source: "./media/characters/azula/back.svg",
  22542. extra: 3169 / 2822,
  22543. bottom: 150.6 / 3321
  22544. }
  22545. },
  22546. },
  22547. [
  22548. {
  22549. name: "Normal",
  22550. height: math.unit(7 + 5 / 12, "feet"),
  22551. default: true
  22552. },
  22553. {
  22554. name: "Big",
  22555. height: math.unit(20, "feet")
  22556. },
  22557. ]
  22558. ))
  22559. characterMakers.push(() => makeCharacter(
  22560. { name: "Rupert", species: ["shark"], tags: ["anthro"] },
  22561. {
  22562. front: {
  22563. height: math.unit(5 + 1 / 12, "feet"),
  22564. weight: math.unit(110, "lb"),
  22565. name: "Front",
  22566. image: {
  22567. source: "./media/characters/rupert/front.svg",
  22568. extra: 1549 / 1495,
  22569. bottom: 54.2 / 1604.4
  22570. }
  22571. },
  22572. },
  22573. [
  22574. {
  22575. name: "Normal",
  22576. height: math.unit(5 + 1 / 12, "feet"),
  22577. default: true
  22578. },
  22579. ]
  22580. ))
  22581. characterMakers.push(() => makeCharacter(
  22582. { name: "Sheera Castellar", species: ["dragon"], tags: ["anthro"] },
  22583. {
  22584. front: {
  22585. height: math.unit(8 + 4 / 12, "feet"),
  22586. weight: math.unit(350, "lb"),
  22587. name: "Front",
  22588. image: {
  22589. source: "./media/characters/sheera-castellar/front.svg",
  22590. extra: 1957 / 1894,
  22591. bottom: 26.97 / 1975.017
  22592. }
  22593. },
  22594. side: {
  22595. height: math.unit(8 + 4 / 12, "feet"),
  22596. weight: math.unit(350, "lb"),
  22597. name: "Side",
  22598. image: {
  22599. source: "./media/characters/sheera-castellar/side.svg",
  22600. extra: 1957 / 1894
  22601. }
  22602. },
  22603. back: {
  22604. height: math.unit(8 + 4 / 12, "feet"),
  22605. weight: math.unit(350, "lb"),
  22606. name: "Back",
  22607. image: {
  22608. source: "./media/characters/sheera-castellar/back.svg",
  22609. extra: 1957 / 1894
  22610. }
  22611. },
  22612. angled: {
  22613. height: math.unit((8 + 4 / 12) * (1 - 68 / 1875), "feet"),
  22614. weight: math.unit(350, "lb"),
  22615. name: "Angled",
  22616. image: {
  22617. source: "./media/characters/sheera-castellar/angled.svg",
  22618. extra: 1807 / 1707,
  22619. bottom: 68 / 1875
  22620. }
  22621. },
  22622. genitals: {
  22623. height: math.unit(2.2, "feet"),
  22624. name: "Genitals",
  22625. image: {
  22626. source: "./media/characters/sheera-castellar/genitals.svg"
  22627. }
  22628. },
  22629. },
  22630. [
  22631. {
  22632. name: "Normal",
  22633. height: math.unit(8 + 4 / 12, "feet")
  22634. },
  22635. {
  22636. name: "Macro",
  22637. height: math.unit(150, "feet"),
  22638. default: true
  22639. },
  22640. {
  22641. name: "Macro+",
  22642. height: math.unit(800, "feet")
  22643. },
  22644. ]
  22645. ))
  22646. characterMakers.push(() => makeCharacter(
  22647. { name: "Jaipur", species: ["black-panther"], tags: ["anthro"] },
  22648. {
  22649. front: {
  22650. height: math.unit(6, "feet"),
  22651. weight: math.unit(150, "lb"),
  22652. name: "Front",
  22653. image: {
  22654. source: "./media/characters/jaipur/front.svg",
  22655. extra: 3860 / 3731,
  22656. bottom: 287 / 4140
  22657. }
  22658. },
  22659. back: {
  22660. height: math.unit(6, "feet"),
  22661. weight: math.unit(150, "lb"),
  22662. name: "Back",
  22663. image: {
  22664. source: "./media/characters/jaipur/back.svg",
  22665. extra: 4060 / 3930,
  22666. bottom: 151 / 4200
  22667. }
  22668. },
  22669. },
  22670. [
  22671. {
  22672. name: "Normal",
  22673. height: math.unit(1.85, "meters"),
  22674. default: true
  22675. },
  22676. {
  22677. name: "Macro",
  22678. height: math.unit(150, "meters")
  22679. },
  22680. {
  22681. name: "Macro+",
  22682. height: math.unit(0.5, "miles")
  22683. },
  22684. {
  22685. name: "Macro++",
  22686. height: math.unit(2.5, "miles")
  22687. },
  22688. {
  22689. name: "Macro+++",
  22690. height: math.unit(12, "miles")
  22691. },
  22692. {
  22693. name: "Macro++++",
  22694. height: math.unit(120, "miles")
  22695. },
  22696. {
  22697. name: "Macro+++++",
  22698. height: math.unit(1200, "miles")
  22699. },
  22700. ]
  22701. ))
  22702. characterMakers.push(() => makeCharacter(
  22703. { name: "Sheila (Wolf)", species: ["wolf"], tags: ["anthro"] },
  22704. {
  22705. front: {
  22706. height: math.unit(6, "feet"),
  22707. weight: math.unit(150, "lb"),
  22708. name: "Front",
  22709. image: {
  22710. source: "./media/characters/sheila-wolf/front.svg",
  22711. extra: 1931 / 1808,
  22712. bottom: 29.5 / 1960
  22713. }
  22714. },
  22715. dick: {
  22716. height: math.unit(1.464, "feet"),
  22717. name: "Dick",
  22718. image: {
  22719. source: "./media/characters/sheila-wolf/dick.svg"
  22720. }
  22721. },
  22722. muzzle: {
  22723. height: math.unit(0.513, "feet"),
  22724. name: "Muzzle",
  22725. image: {
  22726. source: "./media/characters/sheila-wolf/muzzle.svg"
  22727. }
  22728. },
  22729. },
  22730. [
  22731. {
  22732. name: "Macro",
  22733. height: math.unit(70, "feet"),
  22734. default: true
  22735. },
  22736. ]
  22737. ))
  22738. characterMakers.push(() => makeCharacter(
  22739. { name: "Almor", species: ["dragon"], tags: ["anthro"] },
  22740. {
  22741. front: {
  22742. height: math.unit(32, "meters"),
  22743. weight: math.unit(300000, "kg"),
  22744. name: "Front",
  22745. image: {
  22746. source: "./media/characters/almor/front.svg",
  22747. extra: 1408 / 1322,
  22748. bottom: 94.6 / 1506.5
  22749. }
  22750. },
  22751. },
  22752. [
  22753. {
  22754. name: "Macro",
  22755. height: math.unit(32, "meters"),
  22756. default: true
  22757. },
  22758. ]
  22759. ))
  22760. characterMakers.push(() => makeCharacter(
  22761. { name: "Silver", species: ["shark"], tags: ["anthro"] },
  22762. {
  22763. front: {
  22764. height: math.unit(7, "feet"),
  22765. weight: math.unit(200, "lb"),
  22766. name: "Front",
  22767. image: {
  22768. source: "./media/characters/silver/front.svg",
  22769. extra: 472.1 / 450.5,
  22770. bottom: 26.5 / 499.424
  22771. }
  22772. },
  22773. },
  22774. [
  22775. {
  22776. name: "Normal",
  22777. height: math.unit(7, "feet"),
  22778. default: true
  22779. },
  22780. {
  22781. name: "Macro",
  22782. height: math.unit(800, "feet")
  22783. },
  22784. {
  22785. name: "Megamacro",
  22786. height: math.unit(250, "miles")
  22787. },
  22788. ]
  22789. ))
  22790. characterMakers.push(() => makeCharacter(
  22791. { name: "Pliskin", species: ["cat"], tags: ["anthro"] },
  22792. {
  22793. front: {
  22794. height: math.unit(6, "feet"),
  22795. weight: math.unit(150, "lb"),
  22796. name: "Front",
  22797. image: {
  22798. source: "./media/characters/pliskin/front.svg",
  22799. extra: 1469 / 1359,
  22800. bottom: 70 / 1540
  22801. }
  22802. },
  22803. },
  22804. [
  22805. {
  22806. name: "Micro",
  22807. height: math.unit(3, "inches")
  22808. },
  22809. {
  22810. name: "Normal",
  22811. height: math.unit(5 + 11 / 12, "feet"),
  22812. default: true
  22813. },
  22814. {
  22815. name: "Macro",
  22816. height: math.unit(120, "feet")
  22817. },
  22818. ]
  22819. ))
  22820. characterMakers.push(() => makeCharacter(
  22821. { name: "Sammy", species: ["samurott"], tags: ["anthro"] },
  22822. {
  22823. front: {
  22824. height: math.unit(6, "feet"),
  22825. weight: math.unit(150, "lb"),
  22826. name: "Front",
  22827. image: {
  22828. source: "./media/characters/sammy/front.svg",
  22829. extra: 1193 / 1089,
  22830. bottom: 30.5 / 1226
  22831. }
  22832. },
  22833. },
  22834. [
  22835. {
  22836. name: "Macro",
  22837. height: math.unit(1700, "feet"),
  22838. default: true
  22839. },
  22840. {
  22841. name: "Examacro",
  22842. height: math.unit(2.5e9, "lightyears")
  22843. },
  22844. ]
  22845. ))
  22846. characterMakers.push(() => makeCharacter(
  22847. { name: "Kuru", species: ["umbra"], tags: ["anthro"] },
  22848. {
  22849. front: {
  22850. height: math.unit(21, "meters"),
  22851. weight: math.unit(12, "tonnes"),
  22852. name: "Front",
  22853. image: {
  22854. source: "./media/characters/kuru/front.svg",
  22855. extra: 4301 / 3785,
  22856. bottom: 371.3 / 4691
  22857. }
  22858. },
  22859. },
  22860. [
  22861. {
  22862. name: "Macro",
  22863. height: math.unit(21, "meters"),
  22864. default: true
  22865. },
  22866. ]
  22867. ))
  22868. characterMakers.push(() => makeCharacter(
  22869. { name: "Rakka", species: ["umbra"], tags: ["anthro"] },
  22870. {
  22871. front: {
  22872. height: math.unit(23, "meters"),
  22873. weight: math.unit(12.2, "tonnes"),
  22874. name: "Front",
  22875. image: {
  22876. source: "./media/characters/rakka/front.svg",
  22877. extra: 4670 / 4169,
  22878. bottom: 301 / 4968.7
  22879. }
  22880. },
  22881. },
  22882. [
  22883. {
  22884. name: "Macro",
  22885. height: math.unit(23, "meters"),
  22886. default: true
  22887. },
  22888. ]
  22889. ))
  22890. characterMakers.push(() => makeCharacter(
  22891. { name: "Rhys (Feline)", species: ["cat"], tags: ["anthro"] },
  22892. {
  22893. front: {
  22894. height: math.unit(6, "feet"),
  22895. weight: math.unit(150, "lb"),
  22896. name: "Front",
  22897. image: {
  22898. source: "./media/characters/rhys-feline/front.svg",
  22899. extra: 2488 / 2308,
  22900. bottom: 35.67 / 2519.19
  22901. }
  22902. },
  22903. },
  22904. [
  22905. {
  22906. name: "Really Small",
  22907. height: math.unit(1, "nm")
  22908. },
  22909. {
  22910. name: "Micro",
  22911. height: math.unit(4, "inches")
  22912. },
  22913. {
  22914. name: "Normal",
  22915. height: math.unit(4 + 10 / 12, "feet"),
  22916. default: true
  22917. },
  22918. {
  22919. name: "Macro",
  22920. height: math.unit(100, "feet")
  22921. },
  22922. {
  22923. name: "Megamacto",
  22924. height: math.unit(50, "miles")
  22925. },
  22926. ]
  22927. ))
  22928. characterMakers.push(() => makeCharacter(
  22929. { name: "Alydar", species: ["raven", "snow-leopard"], tags: ["feral"] },
  22930. {
  22931. side: {
  22932. height: math.unit(30, "feet"),
  22933. weight: math.unit(35000, "kg"),
  22934. name: "Side",
  22935. image: {
  22936. source: "./media/characters/alydar/side.svg",
  22937. extra: 234 / 222,
  22938. bottom: 6.5 / 241
  22939. }
  22940. },
  22941. front: {
  22942. height: math.unit(30, "feet"),
  22943. weight: math.unit(35000, "kg"),
  22944. name: "Front",
  22945. image: {
  22946. source: "./media/characters/alydar/front.svg",
  22947. extra: 223.37 / 210.2,
  22948. bottom: 22.3 / 246.76
  22949. }
  22950. },
  22951. top: {
  22952. height: math.unit(64.54, "feet"),
  22953. weight: math.unit(35000, "kg"),
  22954. name: "Top",
  22955. image: {
  22956. source: "./media/characters/alydar/top.svg"
  22957. }
  22958. },
  22959. anthro: {
  22960. height: math.unit(30, "feet"),
  22961. weight: math.unit(9000, "kg"),
  22962. name: "Anthro",
  22963. image: {
  22964. source: "./media/characters/alydar/anthro.svg",
  22965. extra: 432 / 421,
  22966. bottom: 7.18 / 440
  22967. }
  22968. },
  22969. maw: {
  22970. height: math.unit(11.693, "feet"),
  22971. name: "Maw",
  22972. image: {
  22973. source: "./media/characters/alydar/maw.svg"
  22974. }
  22975. },
  22976. head: {
  22977. height: math.unit(11.693, "feet"),
  22978. name: "Head",
  22979. image: {
  22980. source: "./media/characters/alydar/head.svg"
  22981. }
  22982. },
  22983. headAlt: {
  22984. height: math.unit(12.861, "feet"),
  22985. name: "Head (Alt)",
  22986. image: {
  22987. source: "./media/characters/alydar/head-alt.svg"
  22988. }
  22989. },
  22990. wing: {
  22991. height: math.unit(20.712, "feet"),
  22992. name: "Wing",
  22993. image: {
  22994. source: "./media/characters/alydar/wing.svg"
  22995. }
  22996. },
  22997. wingFeather: {
  22998. height: math.unit(9.662, "feet"),
  22999. name: "Wing Feather",
  23000. image: {
  23001. source: "./media/characters/alydar/wing-feather.svg"
  23002. }
  23003. },
  23004. countourFeather: {
  23005. height: math.unit(4.154, "feet"),
  23006. name: "Contour Feather",
  23007. image: {
  23008. source: "./media/characters/alydar/contour-feather.svg"
  23009. }
  23010. },
  23011. },
  23012. [
  23013. {
  23014. name: "Diplomatic",
  23015. height: math.unit(13, "feet"),
  23016. default: true
  23017. },
  23018. {
  23019. name: "Small",
  23020. height: math.unit(30, "feet")
  23021. },
  23022. {
  23023. name: "Normal",
  23024. height: math.unit(95, "feet"),
  23025. default: true
  23026. },
  23027. {
  23028. name: "Large",
  23029. height: math.unit(285, "feet")
  23030. },
  23031. {
  23032. name: "Incomprehensible",
  23033. height: math.unit(450, "megameters")
  23034. },
  23035. ]
  23036. ))
  23037. characterMakers.push(() => makeCharacter(
  23038. { name: "Selicia", species: ["dragon"], tags: ["feral"] },
  23039. {
  23040. side: {
  23041. height: math.unit(11, "feet"),
  23042. weight: math.unit(1750, "kg"),
  23043. name: "Side",
  23044. image: {
  23045. source: "./media/characters/selicia/side.svg",
  23046. extra: 440 / 396,
  23047. bottom: 24.8 / 465.979
  23048. }
  23049. },
  23050. maw: {
  23051. height: math.unit(4.665, "feet"),
  23052. name: "Maw",
  23053. image: {
  23054. source: "./media/characters/selicia/maw.svg"
  23055. }
  23056. },
  23057. },
  23058. [
  23059. {
  23060. name: "Normal",
  23061. height: math.unit(11, "feet"),
  23062. default: true
  23063. },
  23064. ]
  23065. ))
  23066. characterMakers.push(() => makeCharacter(
  23067. { name: "Layla", species: ["zorua", "vulpix"], tags: ["feral"] },
  23068. {
  23069. side: {
  23070. height: math.unit(2 + 6 / 12, "feet"),
  23071. weight: math.unit(30, "lb"),
  23072. name: "Side",
  23073. image: {
  23074. source: "./media/characters/layla/side.svg",
  23075. extra: 244 / 188,
  23076. bottom: 18.2 / 262.1
  23077. }
  23078. },
  23079. back: {
  23080. height: math.unit(2 + 6 / 12, "feet"),
  23081. weight: math.unit(30, "lb"),
  23082. name: "Back",
  23083. image: {
  23084. source: "./media/characters/layla/back.svg",
  23085. extra: 308 / 241.5,
  23086. bottom: 8.9 / 316.8
  23087. }
  23088. },
  23089. cumming: {
  23090. height: math.unit(2 + 6 / 12, "feet"),
  23091. weight: math.unit(30, "lb"),
  23092. name: "Cumming",
  23093. image: {
  23094. source: "./media/characters/layla/cumming.svg",
  23095. extra: 342 / 279,
  23096. bottom: 595 / 938
  23097. }
  23098. },
  23099. dickFlaccid: {
  23100. height: math.unit(2.595, "feet"),
  23101. name: "Flaccid Genitals",
  23102. image: {
  23103. source: "./media/characters/layla/dick-flaccid.svg"
  23104. }
  23105. },
  23106. dickErect: {
  23107. height: math.unit(2.359, "feet"),
  23108. name: "Erect Genitals",
  23109. image: {
  23110. source: "./media/characters/layla/dick-erect.svg"
  23111. }
  23112. },
  23113. },
  23114. [
  23115. {
  23116. name: "Micro",
  23117. height: math.unit(1, "inch")
  23118. },
  23119. {
  23120. name: "Small",
  23121. height: math.unit(1, "foot")
  23122. },
  23123. {
  23124. name: "Normal",
  23125. height: math.unit(2 + 6 / 12, "feet"),
  23126. default: true
  23127. },
  23128. {
  23129. name: "Macro",
  23130. height: math.unit(200, "feet")
  23131. },
  23132. {
  23133. name: "Megamacro",
  23134. height: math.unit(1000, "miles")
  23135. },
  23136. {
  23137. name: "Planetary",
  23138. height: math.unit(8000, "miles")
  23139. },
  23140. {
  23141. name: "True Layla",
  23142. height: math.unit(200000 * 7, "multiverses")
  23143. },
  23144. ]
  23145. ))
  23146. characterMakers.push(() => makeCharacter(
  23147. { name: "Knox", species: ["arcanine", "houndoom"], tags: ["feral"] },
  23148. {
  23149. back: {
  23150. height: math.unit(10.5, "feet"),
  23151. weight: math.unit(800, "lb"),
  23152. name: "Back",
  23153. image: {
  23154. source: "./media/characters/knox/back.svg",
  23155. extra: 1486 / 1089,
  23156. bottom: 107 / 1601.4
  23157. }
  23158. },
  23159. side: {
  23160. height: math.unit(10.5, "feet"),
  23161. weight: math.unit(800, "lb"),
  23162. name: "Side",
  23163. image: {
  23164. source: "./media/characters/knox/side.svg",
  23165. extra: 244 / 218,
  23166. bottom: 14 / 260
  23167. }
  23168. },
  23169. },
  23170. [
  23171. {
  23172. name: "Compact",
  23173. height: math.unit(10.5, "feet"),
  23174. default: true
  23175. },
  23176. {
  23177. name: "Dynamax",
  23178. height: math.unit(210, "feet")
  23179. },
  23180. {
  23181. name: "Full Macro",
  23182. height: math.unit(850, "feet")
  23183. },
  23184. ]
  23185. ))
  23186. characterMakers.push(() => makeCharacter(
  23187. { name: "Shin (Pikachu)", species: ["pikachu"], tags: ["anthro"] },
  23188. {
  23189. front: {
  23190. height: math.unit(6, "feet"),
  23191. weight: math.unit(152, "lb"),
  23192. name: "Front",
  23193. image: {
  23194. source: "./media/characters/shin-pikachu/front.svg",
  23195. extra: 1574 / 1480,
  23196. bottom: 53.3 / 1626
  23197. }
  23198. },
  23199. hand: {
  23200. height: math.unit(1.055, "feet"),
  23201. name: "Hand",
  23202. image: {
  23203. source: "./media/characters/shin-pikachu/hand.svg"
  23204. }
  23205. },
  23206. foot: {
  23207. height: math.unit(1.1, "feet"),
  23208. name: "Foot",
  23209. image: {
  23210. source: "./media/characters/shin-pikachu/foot.svg"
  23211. }
  23212. },
  23213. collar: {
  23214. height: math.unit(0.386, "feet"),
  23215. name: "Collar",
  23216. image: {
  23217. source: "./media/characters/shin-pikachu/collar.svg"
  23218. }
  23219. },
  23220. },
  23221. [
  23222. {
  23223. name: "Smallest",
  23224. height: math.unit(0.5, "inches")
  23225. },
  23226. {
  23227. name: "Micro",
  23228. height: math.unit(6, "inches")
  23229. },
  23230. {
  23231. name: "Normal",
  23232. height: math.unit(6, "feet"),
  23233. default: true
  23234. },
  23235. {
  23236. name: "Macro",
  23237. height: math.unit(150, "feet")
  23238. },
  23239. ]
  23240. ))
  23241. characterMakers.push(() => makeCharacter(
  23242. { name: "Kayda", species: ["dragon"], tags: ["anthro"] },
  23243. {
  23244. front: {
  23245. height: math.unit(28, "feet"),
  23246. weight: math.unit(10500, "lb"),
  23247. name: "Front",
  23248. image: {
  23249. source: "./media/characters/kayda/front.svg",
  23250. extra: 1536 / 1428,
  23251. bottom: 68.7 / 1603
  23252. }
  23253. },
  23254. back: {
  23255. height: math.unit(28, "feet"),
  23256. weight: math.unit(10500, "lb"),
  23257. name: "Back",
  23258. image: {
  23259. source: "./media/characters/kayda/back.svg",
  23260. extra: 1557 / 1464,
  23261. bottom: 39.5 / 1597.49
  23262. }
  23263. },
  23264. dick: {
  23265. height: math.unit(3.858, "feet"),
  23266. name: "Dick",
  23267. image: {
  23268. source: "./media/characters/kayda/dick.svg"
  23269. }
  23270. },
  23271. },
  23272. [
  23273. {
  23274. name: "Macro",
  23275. height: math.unit(28, "feet"),
  23276. default: true
  23277. },
  23278. ]
  23279. ))
  23280. characterMakers.push(() => makeCharacter(
  23281. { name: "Brian", species: ["barbary-lion"], tags: ["anthro"] },
  23282. {
  23283. front: {
  23284. height: math.unit(10 + 11 / 12, "feet"),
  23285. weight: math.unit(1400, "lb"),
  23286. name: "Front",
  23287. image: {
  23288. source: "./media/characters/brian/front.svg",
  23289. extra: 737 / 692,
  23290. bottom: 55.4 / 785
  23291. }
  23292. },
  23293. },
  23294. [
  23295. {
  23296. name: "Normal",
  23297. height: math.unit(10 + 11 / 12, "feet"),
  23298. default: true
  23299. },
  23300. ]
  23301. ))
  23302. characterMakers.push(() => makeCharacter(
  23303. { name: "Khemri", species: ["jackal"], tags: ["anthro"] },
  23304. {
  23305. front: {
  23306. height: math.unit(5 + 8 / 12, "feet"),
  23307. weight: math.unit(140, "lb"),
  23308. name: "Front",
  23309. image: {
  23310. source: "./media/characters/khemri/front.svg",
  23311. extra: 4780 / 4059,
  23312. bottom: 80.1 / 4859.25
  23313. }
  23314. },
  23315. },
  23316. [
  23317. {
  23318. name: "Micro",
  23319. height: math.unit(6, "inches")
  23320. },
  23321. {
  23322. name: "Normal",
  23323. height: math.unit(5 + 8 / 12, "feet"),
  23324. default: true
  23325. },
  23326. ]
  23327. ))
  23328. characterMakers.push(() => makeCharacter(
  23329. { name: "Felix Braveheart", species: ["cerberus", "wolf"], tags: ["anthro", "feral"] },
  23330. {
  23331. front: {
  23332. height: math.unit(13, "feet"),
  23333. weight: math.unit(1700, "lb"),
  23334. name: "Front",
  23335. image: {
  23336. source: "./media/characters/felix-braveheart/front.svg",
  23337. extra: 1222 / 1157,
  23338. bottom: 53.2 / 1280
  23339. }
  23340. },
  23341. back: {
  23342. height: math.unit(13, "feet"),
  23343. weight: math.unit(1700, "lb"),
  23344. name: "Back",
  23345. image: {
  23346. source: "./media/characters/felix-braveheart/back.svg",
  23347. extra: 1277 / 1203,
  23348. bottom: 50.2 / 1327
  23349. }
  23350. },
  23351. feral: {
  23352. height: math.unit(6, "feet"),
  23353. weight: math.unit(400, "lb"),
  23354. name: "Feral",
  23355. image: {
  23356. source: "./media/characters/felix-braveheart/feral.svg",
  23357. extra: 682 / 625,
  23358. bottom: 6.9 / 688
  23359. }
  23360. },
  23361. },
  23362. [
  23363. {
  23364. name: "Normal",
  23365. height: math.unit(13, "feet"),
  23366. default: true
  23367. },
  23368. ]
  23369. ))
  23370. characterMakers.push(() => makeCharacter(
  23371. { name: "Shadow Blade", species: ["horse"], tags: ["feral"] },
  23372. {
  23373. side: {
  23374. height: math.unit(5 + 11 / 12, "feet"),
  23375. weight: math.unit(1400, "lb"),
  23376. name: "Side",
  23377. image: {
  23378. source: "./media/characters/shadow-blade/side.svg",
  23379. extra: 1726 / 1267,
  23380. bottom: 58.4 / 1785
  23381. }
  23382. },
  23383. },
  23384. [
  23385. {
  23386. name: "Normal",
  23387. height: math.unit(5 + 11 / 12, "feet"),
  23388. default: true
  23389. },
  23390. ]
  23391. ))
  23392. characterMakers.push(() => makeCharacter(
  23393. { name: "Karla Halldor", species: ["nimbat"], tags: ["anthro"] },
  23394. {
  23395. front: {
  23396. height: math.unit(1 + 6 / 12, "feet"),
  23397. weight: math.unit(25, "lb"),
  23398. name: "Front",
  23399. image: {
  23400. source: "./media/characters/karla-halldor/front.svg",
  23401. extra: 1459 / 1383,
  23402. bottom: 12 / 1472
  23403. }
  23404. },
  23405. },
  23406. [
  23407. {
  23408. name: "Normal",
  23409. height: math.unit(1 + 6 / 12, "feet"),
  23410. default: true
  23411. },
  23412. ]
  23413. ))
  23414. characterMakers.push(() => makeCharacter(
  23415. { name: "Ariam", species: ["dragon"], tags: ["anthro"] },
  23416. {
  23417. front: {
  23418. height: math.unit(6 + 2 / 12, "feet"),
  23419. weight: math.unit(160, "lb"),
  23420. name: "Front",
  23421. image: {
  23422. source: "./media/characters/ariam/front.svg",
  23423. extra: 714 / 617,
  23424. bottom: 23.4 / 737,
  23425. }
  23426. },
  23427. squatting: {
  23428. height: math.unit(4.1, "feet"),
  23429. weight: math.unit(160, "lb"),
  23430. name: "Squatting",
  23431. image: {
  23432. source: "./media/characters/ariam/squatting.svg",
  23433. extra: 2617 / 2112,
  23434. bottom: 61.2 / 2681,
  23435. }
  23436. },
  23437. },
  23438. [
  23439. {
  23440. name: "Normal",
  23441. height: math.unit(6 + 2 / 12, "feet"),
  23442. default: true
  23443. },
  23444. {
  23445. name: "Normal+",
  23446. height: math.unit(4, "meters")
  23447. },
  23448. {
  23449. name: "Macro",
  23450. height: math.unit(50, "meters")
  23451. },
  23452. {
  23453. name: "Macro+",
  23454. height: math.unit(100, "meters")
  23455. },
  23456. {
  23457. name: "Megamacro",
  23458. height: math.unit(20, "km")
  23459. },
  23460. ]
  23461. ))
  23462. characterMakers.push(() => makeCharacter(
  23463. { name: "Qodri Class-of-'Fortwelve-Six", species: ["wolxi"], tags: ["anthro"] },
  23464. {
  23465. front: {
  23466. height: math.unit(1.67, "meters"),
  23467. weight: math.unit(140, "lb"),
  23468. name: "Front",
  23469. image: {
  23470. source: "./media/characters/qodri-class-of-'fortwelve-six/front.svg",
  23471. extra: 438 / 410,
  23472. bottom: 0.75 / 439
  23473. }
  23474. },
  23475. },
  23476. [
  23477. {
  23478. name: "Shrunken",
  23479. height: math.unit(7.6, "cm")
  23480. },
  23481. {
  23482. name: "Human Scale",
  23483. height: math.unit(1.67, "meters")
  23484. },
  23485. {
  23486. name: "Wolxi Scale",
  23487. height: math.unit(36.7, "meters"),
  23488. default: true
  23489. },
  23490. ]
  23491. ))
  23492. characterMakers.push(() => makeCharacter(
  23493. { name: "Izue Two-Mothers", species: ["wolxi"], tags: ["anthro"] },
  23494. {
  23495. front: {
  23496. height: math.unit(1.73, "meters"),
  23497. weight: math.unit(240, "lb"),
  23498. name: "Front",
  23499. image: {
  23500. source: "./media/characters/izue-two-mothers/front.svg",
  23501. extra: 469 / 437,
  23502. bottom: 1.24 / 470.6
  23503. }
  23504. },
  23505. },
  23506. [
  23507. {
  23508. name: "Shrunken",
  23509. height: math.unit(7.86, "cm")
  23510. },
  23511. {
  23512. name: "Human Scale",
  23513. height: math.unit(1.73, "meters")
  23514. },
  23515. {
  23516. name: "Wolxi Scale",
  23517. height: math.unit(38, "meters"),
  23518. default: true
  23519. },
  23520. ]
  23521. ))
  23522. characterMakers.push(() => makeCharacter(
  23523. { name: "Teeku Love-Shack", species: ["wolxi"], tags: ["anthro"] },
  23524. {
  23525. front: {
  23526. height: math.unit(1.55, "meters"),
  23527. weight: math.unit(120, "lb"),
  23528. name: "Front",
  23529. image: {
  23530. source: "./media/characters/teeku-love-shack/front.svg",
  23531. extra: 387 / 362,
  23532. bottom: 1.51 / 388
  23533. }
  23534. },
  23535. },
  23536. [
  23537. {
  23538. name: "Shrunken",
  23539. height: math.unit(7, "cm")
  23540. },
  23541. {
  23542. name: "Human Scale",
  23543. height: math.unit(1.55, "meters")
  23544. },
  23545. {
  23546. name: "Wolxi Scale",
  23547. height: math.unit(34.1, "meters"),
  23548. default: true
  23549. },
  23550. ]
  23551. ))
  23552. characterMakers.push(() => makeCharacter(
  23553. { name: "Dejma the Red", species: ["wolxi"], tags: ["anthro"] },
  23554. {
  23555. front: {
  23556. height: math.unit(1.83, "meters"),
  23557. weight: math.unit(135, "lb"),
  23558. name: "Front",
  23559. image: {
  23560. source: "./media/characters/dejma-the-red/front.svg",
  23561. extra: 480 / 458,
  23562. bottom: 1.8 / 482
  23563. }
  23564. },
  23565. },
  23566. [
  23567. {
  23568. name: "Shrunken",
  23569. height: math.unit(8.3, "cm")
  23570. },
  23571. {
  23572. name: "Human Scale",
  23573. height: math.unit(1.83, "meters")
  23574. },
  23575. {
  23576. name: "Wolxi Scale",
  23577. height: math.unit(40, "meters"),
  23578. default: true
  23579. },
  23580. ]
  23581. ))
  23582. characterMakers.push(() => makeCharacter(
  23583. { name: "Aki", species: ["deer"], tags: ["anthro"] },
  23584. {
  23585. front: {
  23586. height: math.unit(1.78, "meters"),
  23587. weight: math.unit(65, "kg"),
  23588. name: "Front",
  23589. image: {
  23590. source: "./media/characters/aki/front.svg",
  23591. extra: 452 / 415
  23592. }
  23593. },
  23594. frontNsfw: {
  23595. height: math.unit(1.78, "meters"),
  23596. weight: math.unit(65, "kg"),
  23597. name: "Front (NSFW)",
  23598. image: {
  23599. source: "./media/characters/aki/front-nsfw.svg",
  23600. extra: 452 / 415
  23601. }
  23602. },
  23603. back: {
  23604. height: math.unit(1.78, "meters"),
  23605. weight: math.unit(65, "kg"),
  23606. name: "Back",
  23607. image: {
  23608. source: "./media/characters/aki/back.svg",
  23609. extra: 452 / 415
  23610. }
  23611. },
  23612. rump: {
  23613. height: math.unit(2.05, "feet"),
  23614. name: "Rump",
  23615. image: {
  23616. source: "./media/characters/aki/rump.svg"
  23617. }
  23618. },
  23619. dick: {
  23620. height: math.unit(0.95, "feet"),
  23621. name: "Dick",
  23622. image: {
  23623. source: "./media/characters/aki/dick.svg"
  23624. }
  23625. },
  23626. },
  23627. [
  23628. {
  23629. name: "Micro",
  23630. height: math.unit(15, "cm")
  23631. },
  23632. {
  23633. name: "Normal",
  23634. height: math.unit(178, "cm"),
  23635. default: true
  23636. },
  23637. {
  23638. name: "Macro",
  23639. height: math.unit(214, "m")
  23640. },
  23641. {
  23642. name: "Macro+",
  23643. height: math.unit(534, "m")
  23644. },
  23645. ]
  23646. ))
  23647. characterMakers.push(() => makeCharacter(
  23648. { name: "Ari", species: ["catgirl"], tags: ["anthro"] },
  23649. {
  23650. front: {
  23651. height: math.unit(5 + 5 / 12, "feet"),
  23652. weight: math.unit(120, "lb"),
  23653. name: "Front",
  23654. image: {
  23655. source: "./media/characters/ari/front.svg",
  23656. extra: 714.5 / 682,
  23657. bottom: 8 / 722.5
  23658. }
  23659. },
  23660. },
  23661. [
  23662. {
  23663. name: "Normal",
  23664. height: math.unit(5 + 5 / 12, "feet")
  23665. },
  23666. {
  23667. name: "Macro",
  23668. height: math.unit(100, "feet"),
  23669. default: true
  23670. },
  23671. {
  23672. name: "Megamacro",
  23673. height: math.unit(100, "miles")
  23674. },
  23675. {
  23676. name: "Gigamacro",
  23677. height: math.unit(80000, "miles")
  23678. },
  23679. ]
  23680. ))
  23681. characterMakers.push(() => makeCharacter(
  23682. { name: "Bolt", species: ["keldeo"], tags: ["feral"] },
  23683. {
  23684. side: {
  23685. height: math.unit(9, "feet"),
  23686. weight: math.unit(400, "kg"),
  23687. name: "Side",
  23688. image: {
  23689. source: "./media/characters/bolt/side.svg",
  23690. extra: 1126 / 896,
  23691. bottom: 60 / 1187.3,
  23692. }
  23693. },
  23694. },
  23695. [
  23696. {
  23697. name: "Micro",
  23698. height: math.unit(5, "inches")
  23699. },
  23700. {
  23701. name: "Normal",
  23702. height: math.unit(9, "feet"),
  23703. default: true
  23704. },
  23705. {
  23706. name: "Macro",
  23707. height: math.unit(700, "feet")
  23708. },
  23709. {
  23710. name: "Max Size",
  23711. height: math.unit(1.52e22, "yottameters")
  23712. },
  23713. ]
  23714. ))
  23715. characterMakers.push(() => makeCharacter(
  23716. { name: "Draekon Sylviar", species: ["dra'gal"], tags: ["anthro"] },
  23717. {
  23718. front: {
  23719. height: math.unit(4.53, "meters"),
  23720. weight: math.unit(3, "tons"),
  23721. name: "Front",
  23722. image: {
  23723. source: "./media/characters/draekon-sylviar/front.svg",
  23724. extra: 1228 / 1068,
  23725. bottom: 41 / 1270
  23726. }
  23727. },
  23728. tail: {
  23729. height: math.unit(1.772, "meter"),
  23730. name: "Tail",
  23731. image: {
  23732. source: "./media/characters/draekon-sylviar/tail.svg"
  23733. }
  23734. },
  23735. head: {
  23736. height: math.unit(1.331, "meter"),
  23737. name: "Head",
  23738. image: {
  23739. source: "./media/characters/draekon-sylviar/head.svg"
  23740. }
  23741. },
  23742. hand: {
  23743. height: math.unit(0.564, "meter"),
  23744. name: "Hand",
  23745. image: {
  23746. source: "./media/characters/draekon-sylviar/hand.svg"
  23747. }
  23748. },
  23749. foot: {
  23750. height: math.unit(0.621, "meter"),
  23751. name: "Foot",
  23752. image: {
  23753. source: "./media/characters/draekon-sylviar/foot.svg",
  23754. bottom: 32 / 324
  23755. }
  23756. },
  23757. dick: {
  23758. height: math.unit(61, "cm"),
  23759. name: "Dick",
  23760. image: {
  23761. source: "./media/characters/draekon-sylviar/dick.svg"
  23762. }
  23763. },
  23764. dickseparated: {
  23765. height: math.unit(61, "cm"),
  23766. name: "Dick-separated",
  23767. image: {
  23768. source: "./media/characters/draekon-sylviar/dick-separated.svg"
  23769. }
  23770. },
  23771. },
  23772. [
  23773. {
  23774. name: "Small",
  23775. height: math.unit(4.53 / 2, "meters"),
  23776. default: true
  23777. },
  23778. {
  23779. name: "Normal",
  23780. height: math.unit(4.53, "meters"),
  23781. default: true
  23782. },
  23783. {
  23784. name: "Large",
  23785. height: math.unit(4.53 * 2, "meters"),
  23786. },
  23787. ]
  23788. ))
  23789. characterMakers.push(() => makeCharacter(
  23790. { name: "Brawler", species: ["german-shepherd"], tags: ["anthro"] },
  23791. {
  23792. front: {
  23793. height: math.unit(6 + 2 / 12, "feet"),
  23794. weight: math.unit(180, "lb"),
  23795. name: "Front",
  23796. image: {
  23797. source: "./media/characters/brawler/front.svg",
  23798. extra: 3301 / 3027,
  23799. bottom: 138 / 3439
  23800. }
  23801. },
  23802. },
  23803. [
  23804. {
  23805. name: "Normal",
  23806. height: math.unit(6 + 2 / 12, "feet"),
  23807. default: true
  23808. },
  23809. ]
  23810. ))
  23811. characterMakers.push(() => makeCharacter(
  23812. { name: "Alex", species: ["bayleef"], tags: ["anthro"] },
  23813. {
  23814. front: {
  23815. height: math.unit(11, "feet"),
  23816. weight: math.unit(1000, "lb"),
  23817. name: "Front",
  23818. image: {
  23819. source: "./media/characters/alex/front.svg",
  23820. bottom: 44.5 / 620
  23821. }
  23822. },
  23823. },
  23824. [
  23825. {
  23826. name: "Micro",
  23827. height: math.unit(5, "inches")
  23828. },
  23829. {
  23830. name: "Normal",
  23831. height: math.unit(11, "feet"),
  23832. default: true
  23833. },
  23834. {
  23835. name: "Macro",
  23836. height: math.unit(9.5e9, "feet")
  23837. },
  23838. {
  23839. name: "Max Size",
  23840. height: math.unit(1.4e283, "yottameters")
  23841. },
  23842. ]
  23843. ))
  23844. characterMakers.push(() => makeCharacter(
  23845. { name: "Zenari", species: ["zenari"], tags: ["anthro"] },
  23846. {
  23847. female: {
  23848. height: math.unit(29.9, "m"),
  23849. weight: math.unit(Math.pow((29.9 / 2), 3) * 80, "kg"),
  23850. name: "Female",
  23851. image: {
  23852. source: "./media/characters/zenari/female.svg",
  23853. extra: 3281.6 / 3217,
  23854. bottom: 72.2 / 3353
  23855. }
  23856. },
  23857. male: {
  23858. height: math.unit(27.7, "m"),
  23859. weight: math.unit(Math.pow((27.7 / 2), 3) * 80, "kg"),
  23860. name: "Male",
  23861. image: {
  23862. source: "./media/characters/zenari/male.svg",
  23863. extra: 3008 / 2991,
  23864. bottom: 54.6 / 3069
  23865. }
  23866. },
  23867. },
  23868. [
  23869. {
  23870. name: "Macro",
  23871. height: math.unit(29.7, "meters"),
  23872. default: true
  23873. },
  23874. ]
  23875. ))
  23876. characterMakers.push(() => makeCharacter(
  23877. { name: "Mactarian", species: ["mactarian"], tags: ["anthro"] },
  23878. {
  23879. female: {
  23880. height: math.unit(23.8, "m"),
  23881. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23882. name: "Female",
  23883. image: {
  23884. source: "./media/characters/mactarian/female.svg",
  23885. extra: 2662 / 2569,
  23886. bottom: 73 / 2736
  23887. }
  23888. },
  23889. male: {
  23890. height: math.unit(23.8, "m"),
  23891. weight: math.unit(Math.pow((23.8 / 2), 3) * 80, "kg"),
  23892. name: "Male",
  23893. image: {
  23894. source: "./media/characters/mactarian/male.svg",
  23895. extra: 2673 / 2600,
  23896. bottom: 76 / 2750
  23897. }
  23898. },
  23899. },
  23900. [
  23901. {
  23902. name: "Macro",
  23903. height: math.unit(23.8, "meters"),
  23904. default: true
  23905. },
  23906. ]
  23907. ))
  23908. characterMakers.push(() => makeCharacter(
  23909. { name: "Umok", species: ["umok"], tags: ["anthro"] },
  23910. {
  23911. female: {
  23912. height: math.unit(19.3, "m"),
  23913. weight: math.unit(Math.pow((19.3 / 2), 3) * 60, "kg"),
  23914. name: "Female",
  23915. image: {
  23916. source: "./media/characters/umok/female.svg",
  23917. extra: 2186 / 2078,
  23918. bottom: 87 / 2277
  23919. }
  23920. },
  23921. male: {
  23922. height: math.unit(19.5, "m"),
  23923. weight: math.unit(Math.pow((19.5 / 2), 3) * 60, "kg"),
  23924. name: "Male",
  23925. image: {
  23926. source: "./media/characters/umok/male.svg",
  23927. extra: 2233 / 2140,
  23928. bottom: 24.4 / 2258
  23929. }
  23930. },
  23931. },
  23932. [
  23933. {
  23934. name: "Macro",
  23935. height: math.unit(19.3, "meters"),
  23936. default: true
  23937. },
  23938. ]
  23939. ))
  23940. characterMakers.push(() => makeCharacter(
  23941. { name: "Joraxian", species: ["joraxian"], tags: ["anthro"] },
  23942. {
  23943. female: {
  23944. height: math.unit(26.15, "m"),
  23945. weight: math.unit(Math.pow((26.15 / 2), 3) * 85, "kg"),
  23946. name: "Female",
  23947. image: {
  23948. source: "./media/characters/joraxian/female.svg",
  23949. extra: 2912 / 2824,
  23950. bottom: 36 / 2956
  23951. }
  23952. },
  23953. male: {
  23954. height: math.unit(25.4, "m"),
  23955. weight: math.unit(Math.pow((25.4 / 2), 3) * 85, "kg"),
  23956. name: "Male",
  23957. image: {
  23958. source: "./media/characters/joraxian/male.svg",
  23959. extra: 2877 / 2721,
  23960. bottom: 82 / 2967
  23961. }
  23962. },
  23963. },
  23964. [
  23965. {
  23966. name: "Macro",
  23967. height: math.unit(26.15, "meters"),
  23968. default: true
  23969. },
  23970. ]
  23971. ))
  23972. characterMakers.push(() => makeCharacter(
  23973. { name: "Sthara", species: ["sthara"], tags: ["anthro"] },
  23974. {
  23975. female: {
  23976. height: math.unit(21.6, "m"),
  23977. weight: math.unit(Math.pow((21.6 / 2), 3) * 80, "kg"),
  23978. name: "Female",
  23979. image: {
  23980. source: "./media/characters/sthara/female.svg",
  23981. extra: 2516 / 2347,
  23982. bottom: 21.5 / 2537
  23983. }
  23984. },
  23985. male: {
  23986. height: math.unit(24, "m"),
  23987. weight: math.unit(Math.pow((24 / 2), 3) * 80, "kg"),
  23988. name: "Male",
  23989. image: {
  23990. source: "./media/characters/sthara/male.svg",
  23991. extra: 2732 / 2607,
  23992. bottom: 23 / 2732
  23993. }
  23994. },
  23995. },
  23996. [
  23997. {
  23998. name: "Macro",
  23999. height: math.unit(21.6, "meters"),
  24000. default: true
  24001. },
  24002. ]
  24003. ))
  24004. characterMakers.push(() => makeCharacter(
  24005. { name: "Luka Bryzant", species: ["german-shepherd"], tags: ["anthro"] },
  24006. {
  24007. front: {
  24008. height: math.unit(6 + 4 / 12, "feet"),
  24009. weight: math.unit(175, "lb"),
  24010. name: "Front",
  24011. image: {
  24012. source: "./media/characters/luka-bryzant/front.svg",
  24013. extra: 311 / 289,
  24014. bottom: 4 / 315
  24015. }
  24016. },
  24017. back: {
  24018. height: math.unit(6 + 4 / 12, "feet"),
  24019. weight: math.unit(175, "lb"),
  24020. name: "Back",
  24021. image: {
  24022. source: "./media/characters/luka-bryzant/back.svg",
  24023. extra: 311 / 289,
  24024. bottom: 3.8 / 313.7
  24025. }
  24026. },
  24027. },
  24028. [
  24029. {
  24030. name: "Micro",
  24031. height: math.unit(10, "inches")
  24032. },
  24033. {
  24034. name: "Normal",
  24035. height: math.unit(6 + 4 / 12, "feet"),
  24036. default: true
  24037. },
  24038. {
  24039. name: "Large",
  24040. height: math.unit(12, "feet")
  24041. },
  24042. ]
  24043. ))
  24044. characterMakers.push(() => makeCharacter(
  24045. { name: "Aman Aquila", species: ["husky", "german-shepherd"], tags: ["anthro"] },
  24046. {
  24047. front: {
  24048. height: math.unit(5 + 7 / 12, "feet"),
  24049. weight: math.unit(185, "lb"),
  24050. name: "Front",
  24051. image: {
  24052. source: "./media/characters/aman-aquila/front.svg",
  24053. extra: 1013 / 976,
  24054. bottom: 45.6 / 1057
  24055. }
  24056. },
  24057. side: {
  24058. height: math.unit(5 + 7 / 12, "feet"),
  24059. weight: math.unit(185, "lb"),
  24060. name: "Side",
  24061. image: {
  24062. source: "./media/characters/aman-aquila/side.svg",
  24063. extra: 1054 / 1011,
  24064. bottom: 15 / 1070
  24065. }
  24066. },
  24067. back: {
  24068. height: math.unit(5 + 7 / 12, "feet"),
  24069. weight: math.unit(185, "lb"),
  24070. name: "Back",
  24071. image: {
  24072. source: "./media/characters/aman-aquila/back.svg",
  24073. extra: 1026 / 970,
  24074. bottom: 12 / 1039
  24075. }
  24076. },
  24077. head: {
  24078. height: math.unit(1.211, "feet"),
  24079. name: "Head",
  24080. image: {
  24081. source: "./media/characters/aman-aquila/head.svg",
  24082. }
  24083. },
  24084. },
  24085. [
  24086. {
  24087. name: "Minimicro",
  24088. height: math.unit(0.057, "inches")
  24089. },
  24090. {
  24091. name: "Micro",
  24092. height: math.unit(7, "inches")
  24093. },
  24094. {
  24095. name: "Mini",
  24096. height: math.unit(3 + 7 / 12, "feet")
  24097. },
  24098. {
  24099. name: "Normal",
  24100. height: math.unit(5 + 7 / 12, "feet"),
  24101. default: true
  24102. },
  24103. {
  24104. name: "Macro",
  24105. height: math.unit(157 + 7 / 12, "feet")
  24106. },
  24107. {
  24108. name: "Megamacro",
  24109. height: math.unit(1557 + 7 / 12, "feet")
  24110. },
  24111. {
  24112. name: "Gigamacro",
  24113. height: math.unit(15557 + 7 / 12, "feet")
  24114. },
  24115. ]
  24116. ))
  24117. characterMakers.push(() => makeCharacter(
  24118. { name: "Hiphae", species: ["mouse"], tags: ["anthro"] },
  24119. {
  24120. front: {
  24121. height: math.unit(3 + 2 / 12, "inches"),
  24122. weight: math.unit(0.3, "ounces"),
  24123. name: "Front",
  24124. image: {
  24125. source: "./media/characters/hiphae/front.svg",
  24126. extra: 1931 / 1683,
  24127. bottom: 24 / 1955
  24128. }
  24129. },
  24130. },
  24131. [
  24132. {
  24133. name: "Normal",
  24134. height: math.unit(3 + 1 / 2, "inches"),
  24135. default: true
  24136. },
  24137. ]
  24138. ))
  24139. characterMakers.push(() => makeCharacter(
  24140. { name: "Nicky", species: ["shark"], tags: ["anthro"] },
  24141. {
  24142. front: {
  24143. height: math.unit(5 + 10 / 12, "feet"),
  24144. weight: math.unit(165, "lb"),
  24145. name: "Front",
  24146. image: {
  24147. source: "./media/characters/nicky/front.svg",
  24148. extra: 3144 / 2886,
  24149. bottom: 45.6 / 3192
  24150. }
  24151. },
  24152. back: {
  24153. height: math.unit(5 + 10 / 12, "feet"),
  24154. weight: math.unit(165, "lb"),
  24155. name: "Back",
  24156. image: {
  24157. source: "./media/characters/nicky/back.svg",
  24158. extra: 3055 / 2804,
  24159. bottom: 28.4 / 3087
  24160. }
  24161. },
  24162. frontclothed: {
  24163. height: math.unit(5 + 10 / 12, "feet"),
  24164. weight: math.unit(165, "lb"),
  24165. name: "Front-clothed",
  24166. image: {
  24167. source: "./media/characters/nicky/front-clothed.svg",
  24168. extra: 3184.9 / 2926.9,
  24169. bottom: 86.5 / 3239.9
  24170. }
  24171. },
  24172. foot: {
  24173. height: math.unit(1.16, "feet"),
  24174. name: "Foot",
  24175. image: {
  24176. source: "./media/characters/nicky/foot.svg"
  24177. }
  24178. },
  24179. feet: {
  24180. height: math.unit(1.34, "feet"),
  24181. name: "Feet",
  24182. image: {
  24183. source: "./media/characters/nicky/feet.svg"
  24184. }
  24185. },
  24186. maw: {
  24187. height: math.unit(0.9, "feet"),
  24188. name: "Maw",
  24189. image: {
  24190. source: "./media/characters/nicky/maw.svg"
  24191. }
  24192. },
  24193. },
  24194. [
  24195. {
  24196. name: "Normal",
  24197. height: math.unit(5 + 10 / 12, "feet"),
  24198. default: true
  24199. },
  24200. {
  24201. name: "Macro",
  24202. height: math.unit(60, "feet")
  24203. },
  24204. {
  24205. name: "Megamacro",
  24206. height: math.unit(1, "mile")
  24207. },
  24208. ]
  24209. ))
  24210. characterMakers.push(() => makeCharacter(
  24211. { name: "Blair", species: ["seal"], tags: ["taur"] },
  24212. {
  24213. side: {
  24214. height: math.unit(10, "feet"),
  24215. weight: math.unit(600, "lb"),
  24216. name: "Side",
  24217. image: {
  24218. source: "./media/characters/blair/side.svg",
  24219. bottom: 16.6 / 475,
  24220. extra: 458 / 431
  24221. }
  24222. },
  24223. },
  24224. [
  24225. {
  24226. name: "Micro",
  24227. height: math.unit(8, "inches")
  24228. },
  24229. {
  24230. name: "Normal",
  24231. height: math.unit(10, "feet"),
  24232. default: true
  24233. },
  24234. {
  24235. name: "Macro",
  24236. height: math.unit(180, "feet")
  24237. },
  24238. ]
  24239. ))
  24240. characterMakers.push(() => makeCharacter(
  24241. { name: "Fisher", species: ["dog", "fish"], tags: ["anthro"] },
  24242. {
  24243. front: {
  24244. height: math.unit(5 + 4 / 12, "feet"),
  24245. weight: math.unit(125, "lb"),
  24246. name: "Front",
  24247. image: {
  24248. source: "./media/characters/fisher/front.svg",
  24249. extra: 444 / 390,
  24250. bottom: 2 / 444.8
  24251. }
  24252. },
  24253. },
  24254. [
  24255. {
  24256. name: "Micro",
  24257. height: math.unit(4, "inches")
  24258. },
  24259. {
  24260. name: "Normal",
  24261. height: math.unit(5 + 4 / 12, "feet"),
  24262. default: true
  24263. },
  24264. {
  24265. name: "Macro",
  24266. height: math.unit(100, "feet")
  24267. },
  24268. ]
  24269. ))
  24270. characterMakers.push(() => makeCharacter(
  24271. { name: "Gliss", species: ["sergal"], tags: ["anthro"] },
  24272. {
  24273. front: {
  24274. height: math.unit(6.71, "feet"),
  24275. weight: math.unit(200, "lb"),
  24276. capacity: math.unit(1000000, "people"),
  24277. name: "Front",
  24278. image: {
  24279. source: "./media/characters/gliss/front.svg",
  24280. extra: 2347 / 2231,
  24281. bottom: 113 / 2462
  24282. }
  24283. },
  24284. hammerspaceSize: {
  24285. height: math.unit(6.71 * 717, "feet"),
  24286. weight: math.unit(200, "lb"),
  24287. capacity: math.unit(1000000, "people"),
  24288. name: "Hammerspace Size",
  24289. image: {
  24290. source: "./media/characters/gliss/front.svg",
  24291. extra: 2347 / 2231,
  24292. bottom: 113 / 2462
  24293. }
  24294. },
  24295. },
  24296. [
  24297. {
  24298. name: "Normal",
  24299. height: math.unit(6.71, "feet"),
  24300. default: true
  24301. },
  24302. ]
  24303. ))
  24304. characterMakers.push(() => makeCharacter(
  24305. { name: "Dune Anderson", species: ["wolf"], tags: ["feral"] },
  24306. {
  24307. side: {
  24308. height: math.unit(1.44, "m"),
  24309. weight: math.unit(80, "kg"),
  24310. name: "Side",
  24311. image: {
  24312. source: "./media/characters/dune-anderson/side.svg",
  24313. bottom: 49 / 1426
  24314. }
  24315. },
  24316. },
  24317. [
  24318. {
  24319. name: "Wolf-sized",
  24320. height: math.unit(1.44, "meters")
  24321. },
  24322. {
  24323. name: "Normal",
  24324. height: math.unit(5.05, "meters"),
  24325. default: true
  24326. },
  24327. {
  24328. name: "Big",
  24329. height: math.unit(14.4, "meters")
  24330. },
  24331. {
  24332. name: "Huge",
  24333. height: math.unit(144, "meters")
  24334. },
  24335. ]
  24336. ))
  24337. characterMakers.push(() => makeCharacter(
  24338. { name: "Hind", species: ["protogen"], tags: ["anthro"] },
  24339. {
  24340. front: {
  24341. height: math.unit(7, "feet"),
  24342. weight: math.unit(425, "lb"),
  24343. name: "Front",
  24344. image: {
  24345. source: "./media/characters/hind/front.svg",
  24346. extra: 2091 / 1860,
  24347. bottom: 129 / 2220
  24348. }
  24349. },
  24350. back: {
  24351. height: math.unit(7, "feet"),
  24352. weight: math.unit(425, "lb"),
  24353. name: "Back",
  24354. image: {
  24355. source: "./media/characters/hind/back.svg",
  24356. extra: 2091 / 1860,
  24357. bottom: 24.6 / 2309
  24358. }
  24359. },
  24360. tail: {
  24361. height: math.unit(2.8, "feet"),
  24362. name: "Tail",
  24363. image: {
  24364. source: "./media/characters/hind/tail.svg"
  24365. }
  24366. },
  24367. head: {
  24368. height: math.unit(2.55, "feet"),
  24369. name: "Head",
  24370. image: {
  24371. source: "./media/characters/hind/head.svg"
  24372. }
  24373. },
  24374. },
  24375. [
  24376. {
  24377. name: "XS",
  24378. height: math.unit(0.7, "feet")
  24379. },
  24380. {
  24381. name: "Normal",
  24382. height: math.unit(7, "feet"),
  24383. default: true
  24384. },
  24385. {
  24386. name: "XL",
  24387. height: math.unit(70, "feet")
  24388. },
  24389. ]
  24390. ))
  24391. characterMakers.push(() => makeCharacter(
  24392. { name: "Dylan (Skaven)", species: ["skaven"], tags: ["anthro"] },
  24393. {
  24394. front: {
  24395. height: math.unit(6, "feet"),
  24396. weight: math.unit(150, "lb"),
  24397. name: "Front",
  24398. image: {
  24399. source: "./media/characters/dylan-skaven/front.svg",
  24400. extra: 2318 / 2063,
  24401. bottom: 93.4 / 2410
  24402. }
  24403. },
  24404. },
  24405. [
  24406. {
  24407. name: "Nano",
  24408. height: math.unit(1, "mm")
  24409. },
  24410. {
  24411. name: "Micro",
  24412. height: math.unit(1, "cm")
  24413. },
  24414. {
  24415. name: "Normal",
  24416. height: math.unit(2.1, "meters"),
  24417. default: true
  24418. },
  24419. ]
  24420. ))
  24421. characterMakers.push(() => makeCharacter(
  24422. { name: "Solex Draconov", species: ["dragon", "kitsune"], tags: ["anthro"] },
  24423. {
  24424. front: {
  24425. height: math.unit(7 + 5 / 12, "feet"),
  24426. weight: math.unit(357, "lb"),
  24427. name: "Front",
  24428. image: {
  24429. source: "./media/characters/solex-draconov/front.svg",
  24430. extra: 1993 / 1865,
  24431. bottom: 117 / 2111
  24432. }
  24433. },
  24434. },
  24435. [
  24436. {
  24437. name: "Natural Height",
  24438. height: math.unit(7 + 5 / 12, "feet"),
  24439. default: true
  24440. },
  24441. {
  24442. name: "Macro",
  24443. height: math.unit(350, "feet")
  24444. },
  24445. {
  24446. name: "Macro+",
  24447. height: math.unit(1000, "feet")
  24448. },
  24449. {
  24450. name: "Megamacro",
  24451. height: math.unit(20, "km")
  24452. },
  24453. {
  24454. name: "Megamacro+",
  24455. height: math.unit(1000, "km")
  24456. },
  24457. {
  24458. name: "Gigamacro",
  24459. height: math.unit(2.5, "Gm")
  24460. },
  24461. {
  24462. name: "Teramacro",
  24463. height: math.unit(15, "Tm")
  24464. },
  24465. {
  24466. name: "Galactic",
  24467. height: math.unit(30, "Zm")
  24468. },
  24469. {
  24470. name: "Universal",
  24471. height: math.unit(21000, "Ym")
  24472. },
  24473. {
  24474. name: "Omniversal",
  24475. height: math.unit(9.861e50, "Ym")
  24476. },
  24477. {
  24478. name: "Existential",
  24479. height: math.unit(1e300, "meters")
  24480. },
  24481. ]
  24482. ))
  24483. characterMakers.push(() => makeCharacter(
  24484. { name: "Mandarax", species: ["dragon"], tags: ["feral"] },
  24485. {
  24486. side: {
  24487. height: math.unit(25, "feet"),
  24488. weight: math.unit(90000, "lb"),
  24489. name: "Side",
  24490. image: {
  24491. source: "./media/characters/mandarax/side.svg",
  24492. extra: 614 / 332,
  24493. bottom: 55 / 630
  24494. }
  24495. },
  24496. head: {
  24497. height: math.unit(11.4, "feet"),
  24498. name: "Head",
  24499. image: {
  24500. source: "./media/characters/mandarax/head.svg"
  24501. }
  24502. },
  24503. belly: {
  24504. height: math.unit(33, "feet"),
  24505. name: "Belly",
  24506. capacity: math.unit(500, "people"),
  24507. image: {
  24508. source: "./media/characters/mandarax/belly.svg"
  24509. }
  24510. },
  24511. dick: {
  24512. height: math.unit(8.46, "feet"),
  24513. name: "Dick",
  24514. image: {
  24515. source: "./media/characters/mandarax/dick.svg"
  24516. }
  24517. },
  24518. top: {
  24519. height: math.unit(28, "meters"),
  24520. name: "Top",
  24521. image: {
  24522. source: "./media/characters/mandarax/top.svg"
  24523. }
  24524. },
  24525. },
  24526. [
  24527. {
  24528. name: "Normal",
  24529. height: math.unit(25, "feet"),
  24530. default: true
  24531. },
  24532. ]
  24533. ))
  24534. characterMakers.push(() => makeCharacter(
  24535. { name: "Pixil", species: ["sylveon"], tags: ["anthro"] },
  24536. {
  24537. front: {
  24538. height: math.unit(5, "feet"),
  24539. weight: math.unit(90, "lb"),
  24540. name: "Front",
  24541. image: {
  24542. source: "./media/characters/pixil/front.svg",
  24543. extra: 2000 / 1618,
  24544. bottom: 12.3 / 2011
  24545. }
  24546. },
  24547. },
  24548. [
  24549. {
  24550. name: "Normal",
  24551. height: math.unit(5, "feet"),
  24552. default: true
  24553. },
  24554. {
  24555. name: "Megamacro",
  24556. height: math.unit(10, "miles"),
  24557. },
  24558. ]
  24559. ))
  24560. characterMakers.push(() => makeCharacter(
  24561. { name: "Angel", species: ["catgirl"], tags: ["anthro"] },
  24562. {
  24563. front: {
  24564. height: math.unit(7 + 2 / 12, "feet"),
  24565. weight: math.unit(200, "lb"),
  24566. name: "Front",
  24567. image: {
  24568. source: "./media/characters/angel/front.svg",
  24569. extra: 1830 / 1737,
  24570. bottom: 22.6 / 1854,
  24571. }
  24572. },
  24573. },
  24574. [
  24575. {
  24576. name: "Normal",
  24577. height: math.unit(7 + 2 / 12, "feet"),
  24578. default: true
  24579. },
  24580. {
  24581. name: "Macro",
  24582. height: math.unit(1000, "feet")
  24583. },
  24584. {
  24585. name: "Megamacro",
  24586. height: math.unit(2, "miles")
  24587. },
  24588. {
  24589. name: "Gigamacro",
  24590. height: math.unit(20, "earths")
  24591. },
  24592. ]
  24593. ))
  24594. characterMakers.push(() => makeCharacter(
  24595. { name: "Mekana", species: ["cowgirl"], tags: ["anthro"] },
  24596. {
  24597. front: {
  24598. height: math.unit(5, "feet"),
  24599. weight: math.unit(180, "lb"),
  24600. name: "Front",
  24601. image: {
  24602. source: "./media/characters/mekana/front.svg",
  24603. extra: 1671 / 1605,
  24604. bottom: 3.5 / 1691
  24605. }
  24606. },
  24607. side: {
  24608. height: math.unit(5, "feet"),
  24609. weight: math.unit(180, "lb"),
  24610. name: "Side",
  24611. image: {
  24612. source: "./media/characters/mekana/side.svg",
  24613. extra: 1671 / 1605,
  24614. bottom: 3.5 / 1691
  24615. }
  24616. },
  24617. back: {
  24618. height: math.unit(5, "feet"),
  24619. weight: math.unit(180, "lb"),
  24620. name: "Back",
  24621. image: {
  24622. source: "./media/characters/mekana/back.svg",
  24623. extra: 1671 / 1605,
  24624. bottom: 3.5 / 1691
  24625. }
  24626. },
  24627. },
  24628. [
  24629. {
  24630. name: "Normal",
  24631. height: math.unit(5, "feet"),
  24632. default: true
  24633. },
  24634. ]
  24635. ))
  24636. characterMakers.push(() => makeCharacter(
  24637. { name: "Pixie", species: ["pony"], tags: ["anthro"] },
  24638. {
  24639. front: {
  24640. height: math.unit(4 + 6 / 12, "feet"),
  24641. weight: math.unit(80, "lb"),
  24642. name: "Front",
  24643. image: {
  24644. source: "./media/characters/pixie/front.svg",
  24645. extra: 1924 / 1825,
  24646. bottom: 22.4 / 1946
  24647. }
  24648. },
  24649. },
  24650. [
  24651. {
  24652. name: "Normal",
  24653. height: math.unit(4 + 6 / 12, "feet"),
  24654. default: true
  24655. },
  24656. {
  24657. name: "Macro",
  24658. height: math.unit(40, "feet")
  24659. },
  24660. ]
  24661. ))
  24662. characterMakers.push(() => makeCharacter(
  24663. { name: "The Lascivious", species: ["wolxi", "deity"], tags: ["anthro"] },
  24664. {
  24665. front: {
  24666. height: math.unit(2.1, "meters"),
  24667. weight: math.unit(200, "lb"),
  24668. name: "Front",
  24669. image: {
  24670. source: "./media/characters/the-lascivious/front.svg",
  24671. extra: 1 / 0.893,
  24672. bottom: 3.5 / 573.7
  24673. }
  24674. },
  24675. },
  24676. [
  24677. {
  24678. name: "Human Scale",
  24679. height: math.unit(2.1, "meters")
  24680. },
  24681. {
  24682. name: "Wolxi Scale",
  24683. height: math.unit(46.2, "m"),
  24684. default: true
  24685. },
  24686. {
  24687. name: "Boinker of Buildings",
  24688. height: math.unit(10, "km")
  24689. },
  24690. {
  24691. name: "Shagger of Skyscrapers",
  24692. height: math.unit(40, "km")
  24693. },
  24694. {
  24695. name: "Banger of Boroughs",
  24696. height: math.unit(4000, "km")
  24697. },
  24698. {
  24699. name: "Screwer of States",
  24700. height: math.unit(100000, "km")
  24701. },
  24702. {
  24703. name: "Pounder of Planets",
  24704. height: math.unit(2000000, "km")
  24705. },
  24706. ]
  24707. ))
  24708. characterMakers.push(() => makeCharacter(
  24709. { name: "AJ", species: ["wolf"], tags: ["anthro"] },
  24710. {
  24711. front: {
  24712. height: math.unit(6, "feet"),
  24713. weight: math.unit(150, "lb"),
  24714. name: "Front",
  24715. image: {
  24716. source: "./media/characters/aj/front.svg",
  24717. extra: 2039 / 1562,
  24718. bottom: 40 / 2079
  24719. }
  24720. },
  24721. },
  24722. [
  24723. {
  24724. name: "Normal",
  24725. height: math.unit(11 + 6 / 12, "feet"),
  24726. default: true
  24727. },
  24728. {
  24729. name: "Megamacro",
  24730. height: math.unit(60, "megameters")
  24731. },
  24732. ]
  24733. ))
  24734. characterMakers.push(() => makeCharacter(
  24735. { name: "Koros", species: ["dragon"], tags: ["feral"] },
  24736. {
  24737. side: {
  24738. height: math.unit(31 + 8 / 12, "feet"),
  24739. weight: math.unit(75000, "kg"),
  24740. name: "Side",
  24741. image: {
  24742. source: "./media/characters/koros/side.svg",
  24743. extra: 1442 / 1297,
  24744. bottom: 122.7 / 1562
  24745. }
  24746. },
  24747. dicksKingsCrown: {
  24748. height: math.unit(6, "feet"),
  24749. name: "Dicks (King's Crown)",
  24750. image: {
  24751. source: "./media/characters/koros/dicks-kings-crown.svg"
  24752. }
  24753. },
  24754. dicksTailSet: {
  24755. height: math.unit(3, "feet"),
  24756. name: "Dicks (Tail Set)",
  24757. image: {
  24758. source: "./media/characters/koros/dicks-tail-set.svg"
  24759. }
  24760. },
  24761. dickCumming: {
  24762. height: math.unit(7.98, "feet"),
  24763. name: "Dick (Cumming)",
  24764. image: {
  24765. source: "./media/characters/koros/dick-cumming.svg"
  24766. }
  24767. },
  24768. dicksBack: {
  24769. height: math.unit(5.9, "feet"),
  24770. name: "Dicks (Back)",
  24771. image: {
  24772. source: "./media/characters/koros/dicks-back.svg"
  24773. }
  24774. },
  24775. dicksFront: {
  24776. height: math.unit(3.72, "feet"),
  24777. name: "Dicks (Front)",
  24778. image: {
  24779. source: "./media/characters/koros/dicks-front.svg"
  24780. }
  24781. },
  24782. dicksPeeking: {
  24783. height: math.unit(3.0, "feet"),
  24784. name: "Dicks (Peeking)",
  24785. image: {
  24786. source: "./media/characters/koros/dicks-peeking.svg"
  24787. }
  24788. },
  24789. eye: {
  24790. height: math.unit(1.7, "feet"),
  24791. name: "Eye",
  24792. image: {
  24793. source: "./media/characters/koros/eye.svg"
  24794. }
  24795. },
  24796. headFront: {
  24797. height: math.unit(11.69, "feet"),
  24798. name: "Head (Front)",
  24799. image: {
  24800. source: "./media/characters/koros/head-front.svg"
  24801. }
  24802. },
  24803. headSide: {
  24804. height: math.unit(14, "feet"),
  24805. name: "Head (Side)",
  24806. image: {
  24807. source: "./media/characters/koros/head-side.svg"
  24808. }
  24809. },
  24810. leg: {
  24811. height: math.unit(17, "feet"),
  24812. name: "Leg",
  24813. image: {
  24814. source: "./media/characters/koros/leg.svg"
  24815. }
  24816. },
  24817. mawSide: {
  24818. height: math.unit(12.8, "feet"),
  24819. name: "Maw (Side)",
  24820. image: {
  24821. source: "./media/characters/koros/maw-side.svg"
  24822. }
  24823. },
  24824. mawSpitting: {
  24825. height: math.unit(17, "feet"),
  24826. name: "Maw (Spitting)",
  24827. image: {
  24828. source: "./media/characters/koros/maw-spitting.svg"
  24829. }
  24830. },
  24831. slit: {
  24832. height: math.unit(2.8, "feet"),
  24833. name: "Slit",
  24834. image: {
  24835. source: "./media/characters/koros/slit.svg"
  24836. }
  24837. },
  24838. stomach: {
  24839. height: math.unit(6.8, "feet"),
  24840. capacity: math.unit(20, "people"),
  24841. name: "Stomach",
  24842. image: {
  24843. source: "./media/characters/koros/stomach.svg"
  24844. }
  24845. },
  24846. wingspanBottom: {
  24847. height: math.unit(114, "feet"),
  24848. name: "Wingspan (Bottom)",
  24849. image: {
  24850. source: "./media/characters/koros/wingspan-bottom.svg"
  24851. }
  24852. },
  24853. wingspanTop: {
  24854. height: math.unit(104, "feet"),
  24855. name: "Wingspan (Top)",
  24856. image: {
  24857. source: "./media/characters/koros/wingspan-top.svg"
  24858. }
  24859. },
  24860. },
  24861. [
  24862. {
  24863. name: "Normal",
  24864. height: math.unit(31 + 8 / 12, "feet"),
  24865. default: true
  24866. },
  24867. ]
  24868. ))
  24869. characterMakers.push(() => makeCharacter(
  24870. { name: "Vexx", species: ["skarlan"], tags: ["anthro"] },
  24871. {
  24872. front: {
  24873. height: math.unit(18 + 5 / 12, "feet"),
  24874. weight: math.unit(3750, "kg"),
  24875. name: "Front",
  24876. image: {
  24877. source: "./media/characters/vexx/front.svg",
  24878. extra: 426 / 396,
  24879. bottom: 31.5 / 458
  24880. }
  24881. },
  24882. maw: {
  24883. height: math.unit(6, "feet"),
  24884. name: "Maw",
  24885. image: {
  24886. source: "./media/characters/vexx/maw.svg"
  24887. }
  24888. },
  24889. },
  24890. [
  24891. {
  24892. name: "Normal",
  24893. height: math.unit(18 + 5 / 12, "feet"),
  24894. default: true
  24895. },
  24896. ]
  24897. ))
  24898. characterMakers.push(() => makeCharacter(
  24899. { name: "Baadra", species: ["skarlan"], tags: ["anthro"] },
  24900. {
  24901. front: {
  24902. height: math.unit(17 + 6 / 12, "feet"),
  24903. weight: math.unit(150, "lb"),
  24904. name: "Front",
  24905. image: {
  24906. source: "./media/characters/baadra/front.svg",
  24907. extra: 3137 / 2890,
  24908. bottom: 168.4 / 3305
  24909. }
  24910. },
  24911. back: {
  24912. height: math.unit(17 + 6 / 12, "feet"),
  24913. weight: math.unit(150, "lb"),
  24914. name: "Back",
  24915. image: {
  24916. source: "./media/characters/baadra/back.svg",
  24917. extra: 3142 / 2890,
  24918. bottom: 220 / 3371
  24919. }
  24920. },
  24921. head: {
  24922. height: math.unit(5.45, "feet"),
  24923. name: "Head",
  24924. image: {
  24925. source: "./media/characters/baadra/head.svg"
  24926. }
  24927. },
  24928. headAngry: {
  24929. height: math.unit(4.95, "feet"),
  24930. name: "Head (Angry)",
  24931. image: {
  24932. source: "./media/characters/baadra/head-angry.svg"
  24933. }
  24934. },
  24935. headOpen: {
  24936. height: math.unit(6, "feet"),
  24937. name: "Head (Open)",
  24938. image: {
  24939. source: "./media/characters/baadra/head-open.svg"
  24940. }
  24941. },
  24942. },
  24943. [
  24944. {
  24945. name: "Normal",
  24946. height: math.unit(17 + 6 / 12, "feet"),
  24947. default: true
  24948. },
  24949. ]
  24950. ))
  24951. characterMakers.push(() => makeCharacter(
  24952. { name: "Juri", species: ["kitsune"], tags: ["anthro"] },
  24953. {
  24954. front: {
  24955. height: math.unit(7 + 3 / 12, "feet"),
  24956. weight: math.unit(180, "lb"),
  24957. name: "Front",
  24958. image: {
  24959. source: "./media/characters/juri/front.svg",
  24960. extra: 1401 / 1237,
  24961. bottom: 18.5 / 1418
  24962. }
  24963. },
  24964. side: {
  24965. height: math.unit(7 + 3 / 12, "feet"),
  24966. weight: math.unit(180, "lb"),
  24967. name: "Side",
  24968. image: {
  24969. source: "./media/characters/juri/side.svg",
  24970. extra: 1424 / 1242,
  24971. bottom: 18.5 / 1447
  24972. }
  24973. },
  24974. sitting: {
  24975. height: math.unit(6, "feet"),
  24976. weight: math.unit(180, "lb"),
  24977. name: "Sitting",
  24978. image: {
  24979. source: "./media/characters/juri/sitting.svg",
  24980. extra: 1270 / 1143,
  24981. bottom: 100 / 1343
  24982. }
  24983. },
  24984. back: {
  24985. height: math.unit(7 + 3 / 12, "feet"),
  24986. weight: math.unit(180, "lb"),
  24987. name: "Back",
  24988. image: {
  24989. source: "./media/characters/juri/back.svg",
  24990. extra: 1377 / 1240,
  24991. bottom: 23.7 / 1405
  24992. }
  24993. },
  24994. maw: {
  24995. height: math.unit(2.8, "feet"),
  24996. name: "Maw",
  24997. image: {
  24998. source: "./media/characters/juri/maw.svg"
  24999. }
  25000. },
  25001. stomach: {
  25002. height: math.unit(0.89, "feet"),
  25003. capacity: math.unit(4, "liters"),
  25004. name: "Stomach",
  25005. image: {
  25006. source: "./media/characters/juri/stomach.svg"
  25007. }
  25008. },
  25009. },
  25010. [
  25011. {
  25012. name: "Normal",
  25013. height: math.unit(7 + 3 / 12, "feet"),
  25014. default: true
  25015. },
  25016. ]
  25017. ))
  25018. characterMakers.push(() => makeCharacter(
  25019. { name: "Maxene Sita", species: ["fox", "kitsune", "hellhound"], tags: ["anthro"] },
  25020. {
  25021. fox: {
  25022. height: math.unit(5 + 6 / 12, "feet"),
  25023. weight: math.unit(140, "lb"),
  25024. name: "Fox",
  25025. image: {
  25026. source: "./media/characters/maxene-sita/fox.svg",
  25027. extra: 146 / 138,
  25028. bottom: 2.1 / 148.19
  25029. }
  25030. },
  25031. foxLaying: {
  25032. height: math.unit(1.70, "feet"),
  25033. weight: math.unit(140, "lb"),
  25034. name: "Fox (Laying)",
  25035. image: {
  25036. source: "./media/characters/maxene-sita/fox-laying.svg",
  25037. extra: 910 / 572,
  25038. bottom: 71 / 981
  25039. }
  25040. },
  25041. kitsune: {
  25042. height: math.unit(10, "feet"),
  25043. weight: math.unit(800, "lb"),
  25044. name: "Kitsune",
  25045. image: {
  25046. source: "./media/characters/maxene-sita/kitsune.svg",
  25047. extra: 185 / 176,
  25048. bottom: 4.7 / 189.9
  25049. }
  25050. },
  25051. hellhound: {
  25052. height: math.unit(10, "feet"),
  25053. weight: math.unit(700, "lb"),
  25054. name: "Hellhound",
  25055. image: {
  25056. source: "./media/characters/maxene-sita/hellhound.svg",
  25057. extra: 1600 / 1545,
  25058. bottom: 81 / 1681
  25059. }
  25060. },
  25061. },
  25062. [
  25063. {
  25064. name: "Normal",
  25065. height: math.unit(5 + 6 / 12, "feet"),
  25066. default: true
  25067. },
  25068. ]
  25069. ))
  25070. characterMakers.push(() => makeCharacter(
  25071. { name: "Maia", species: ["mew"], tags: ["feral"] },
  25072. {
  25073. front: {
  25074. height: math.unit(3 + 4 / 12, "feet"),
  25075. weight: math.unit(70, "lb"),
  25076. name: "Front",
  25077. image: {
  25078. source: "./media/characters/maia/front.svg",
  25079. extra: 227 / 219.5,
  25080. bottom: 40 / 267
  25081. }
  25082. },
  25083. back: {
  25084. height: math.unit(3 + 4 / 12, "feet"),
  25085. weight: math.unit(70, "lb"),
  25086. name: "Back",
  25087. image: {
  25088. source: "./media/characters/maia/back.svg",
  25089. extra: 237 / 225
  25090. }
  25091. },
  25092. },
  25093. [
  25094. {
  25095. name: "Normal",
  25096. height: math.unit(3 + 4 / 12, "feet"),
  25097. default: true
  25098. },
  25099. ]
  25100. ))
  25101. characterMakers.push(() => makeCharacter(
  25102. { name: "Jabaro", species: ["cheetah"], tags: ["anthro"] },
  25103. {
  25104. front: {
  25105. height: math.unit(5 + 10 / 12, "feet"),
  25106. weight: math.unit(197, "lb"),
  25107. name: "Front",
  25108. image: {
  25109. source: "./media/characters/jabaro/front.svg",
  25110. extra: 225 / 216,
  25111. bottom: 5.06 / 230
  25112. }
  25113. },
  25114. back: {
  25115. height: math.unit(5 + 10 / 12, "feet"),
  25116. weight: math.unit(197, "lb"),
  25117. name: "Back",
  25118. image: {
  25119. source: "./media/characters/jabaro/back.svg",
  25120. extra: 225 / 219,
  25121. bottom: 1.9 / 227
  25122. }
  25123. },
  25124. },
  25125. [
  25126. {
  25127. name: "Normal",
  25128. height: math.unit(5 + 10 / 12, "feet"),
  25129. default: true
  25130. },
  25131. ]
  25132. ))
  25133. characterMakers.push(() => makeCharacter(
  25134. { name: "Risa", species: ["corvid"], tags: ["anthro"] },
  25135. {
  25136. front: {
  25137. height: math.unit(5 + 8 / 12, "feet"),
  25138. weight: math.unit(139, "lb"),
  25139. name: "Front",
  25140. image: {
  25141. source: "./media/characters/risa/front.svg",
  25142. extra: 270 / 260,
  25143. bottom: 11.2 / 282
  25144. }
  25145. },
  25146. back: {
  25147. height: math.unit(5 + 8 / 12, "feet"),
  25148. weight: math.unit(139, "lb"),
  25149. name: "Back",
  25150. image: {
  25151. source: "./media/characters/risa/back.svg",
  25152. extra: 264 / 255,
  25153. bottom: 4 / 268
  25154. }
  25155. },
  25156. },
  25157. [
  25158. {
  25159. name: "Normal",
  25160. height: math.unit(5 + 8 / 12, "feet"),
  25161. default: true
  25162. },
  25163. ]
  25164. ))
  25165. characterMakers.push(() => makeCharacter(
  25166. { name: "Weatley", species: ["chimera"], tags: ["anthro"] },
  25167. {
  25168. front: {
  25169. height: math.unit(2 + 11 / 12, "feet"),
  25170. weight: math.unit(30, "lb"),
  25171. name: "Front",
  25172. image: {
  25173. source: "./media/characters/weatley/front.svg",
  25174. bottom: 10.7 / 414,
  25175. extra: 403.5 / 362
  25176. }
  25177. },
  25178. back: {
  25179. height: math.unit(2 + 11 / 12, "feet"),
  25180. weight: math.unit(30, "lb"),
  25181. name: "Back",
  25182. image: {
  25183. source: "./media/characters/weatley/back.svg",
  25184. bottom: 10.7 / 414,
  25185. extra: 403.5 / 362
  25186. }
  25187. },
  25188. },
  25189. [
  25190. {
  25191. name: "Normal",
  25192. height: math.unit(2 + 11 / 12, "feet"),
  25193. default: true
  25194. },
  25195. ]
  25196. ))
  25197. characterMakers.push(() => makeCharacter(
  25198. { name: "Mercury Crescent", species: ["dragon", "kobold"], tags: ["anthro"] },
  25199. {
  25200. front: {
  25201. height: math.unit(5 + 2 / 12, "feet"),
  25202. weight: math.unit(50, "kg"),
  25203. name: "Front",
  25204. image: {
  25205. source: "./media/characters/mercury-crescent/front.svg",
  25206. extra: 1088 / 1033,
  25207. bottom: 18.9 / 1109
  25208. }
  25209. },
  25210. },
  25211. [
  25212. {
  25213. name: "Normal",
  25214. height: math.unit(5 + 2 / 12, "feet"),
  25215. default: true
  25216. },
  25217. ]
  25218. ))
  25219. characterMakers.push(() => makeCharacter(
  25220. { name: "Diamond Jones", species: ["kobold"], tags: ["anthro"] },
  25221. {
  25222. front: {
  25223. height: math.unit(2, "feet"),
  25224. weight: math.unit(15, "kg"),
  25225. name: "Front",
  25226. image: {
  25227. source: "./media/characters/diamond-jones/front.svg",
  25228. bottom: 16 / 568
  25229. }
  25230. },
  25231. },
  25232. [
  25233. {
  25234. name: "Normal",
  25235. height: math.unit(2, "feet"),
  25236. default: true
  25237. },
  25238. ]
  25239. ))
  25240. characterMakers.push(() => makeCharacter(
  25241. { name: "Sweet Bit", species: ["gestalt", "kobold"], tags: ["anthro"] },
  25242. {
  25243. front: {
  25244. height: math.unit(3, "feet"),
  25245. weight: math.unit(30, "kg"),
  25246. name: "Front",
  25247. image: {
  25248. source: "./media/characters/sweet-bit/front.svg",
  25249. extra: 675 / 567,
  25250. bottom: 27.7 / 703
  25251. }
  25252. },
  25253. },
  25254. [
  25255. {
  25256. name: "Normal",
  25257. height: math.unit(3, "feet"),
  25258. default: true
  25259. },
  25260. ]
  25261. ))
  25262. characterMakers.push(() => makeCharacter(
  25263. { name: "Umbrazen", species: ["mimic"], tags: ["feral"] },
  25264. {
  25265. side: {
  25266. height: math.unit(9.178, "feet"),
  25267. weight: math.unit(500, "lb"),
  25268. name: "Side",
  25269. image: {
  25270. source: "./media/characters/umbrazen/side.svg",
  25271. extra: 1730 / 1473,
  25272. bottom: 34.6 / 1765
  25273. }
  25274. },
  25275. },
  25276. [
  25277. {
  25278. name: "Normal",
  25279. height: math.unit(9.178, "feet"),
  25280. default: true
  25281. },
  25282. ]
  25283. ))
  25284. characterMakers.push(() => makeCharacter(
  25285. { name: "Arlist", species: ["jackal"], tags: ["anthro"] },
  25286. {
  25287. front: {
  25288. height: math.unit(10, "feet"),
  25289. weight: math.unit(750, "lb"),
  25290. name: "Front",
  25291. image: {
  25292. source: "./media/characters/arlist/front.svg",
  25293. extra: 961 / 778,
  25294. bottom: 6.2 / 986
  25295. }
  25296. },
  25297. },
  25298. [
  25299. {
  25300. name: "Normal",
  25301. height: math.unit(10, "feet"),
  25302. default: true
  25303. },
  25304. ]
  25305. ))
  25306. characterMakers.push(() => makeCharacter(
  25307. { name: "Aradel", species: ["jackalope"], tags: ["anthro"] },
  25308. {
  25309. front: {
  25310. height: math.unit(5 + 1 / 12, "feet"),
  25311. weight: math.unit(110, "lb"),
  25312. name: "Front",
  25313. image: {
  25314. source: "./media/characters/aradel/front.svg",
  25315. extra: 324 / 303,
  25316. bottom: 3.6 / 329.4
  25317. }
  25318. },
  25319. },
  25320. [
  25321. {
  25322. name: "Normal",
  25323. height: math.unit(5 + 1 / 12, "feet"),
  25324. default: true
  25325. },
  25326. ]
  25327. ))
  25328. characterMakers.push(() => makeCharacter(
  25329. { name: "Serryn", species: ["calico-rat"], tags: ["anthro"] },
  25330. {
  25331. front: {
  25332. height: math.unit(3 + 8 / 12, "feet"),
  25333. weight: math.unit(50, "lb"),
  25334. name: "Front",
  25335. image: {
  25336. source: "./media/characters/serryn/front.svg",
  25337. extra: 1792 / 1656,
  25338. bottom: 43.5 / 1840
  25339. }
  25340. },
  25341. },
  25342. [
  25343. {
  25344. name: "Normal",
  25345. height: math.unit(3 + 8 / 12, "feet"),
  25346. default: true
  25347. },
  25348. ]
  25349. ))
  25350. characterMakers.push(() => makeCharacter(
  25351. { name: "Xavier Thyme" },
  25352. {
  25353. front: {
  25354. height: math.unit(7 + 10 / 12, "feet"),
  25355. weight: math.unit(255, "lb"),
  25356. name: "Front",
  25357. image: {
  25358. source: "./media/characters/xavier-thyme/front.svg",
  25359. extra: 3733 / 3642,
  25360. bottom: 131 / 3869
  25361. }
  25362. },
  25363. frontRaven: {
  25364. height: math.unit(7 + 10 / 12, "feet"),
  25365. weight: math.unit(255, "lb"),
  25366. name: "Front (Raven)",
  25367. image: {
  25368. source: "./media/characters/xavier-thyme/front-raven.svg",
  25369. extra: 4385 / 3642,
  25370. bottom: 131 / 4517
  25371. }
  25372. },
  25373. },
  25374. [
  25375. {
  25376. name: "Normal",
  25377. height: math.unit(7 + 10 / 12, "feet"),
  25378. default: true
  25379. },
  25380. ]
  25381. ))
  25382. characterMakers.push(() => makeCharacter(
  25383. { name: "Kiki", species: ["rabbit", "panda"], tags: ["anthro"] },
  25384. {
  25385. front: {
  25386. height: math.unit(1.6, "m"),
  25387. weight: math.unit(50, "kg"),
  25388. name: "Front",
  25389. image: {
  25390. source: "./media/characters/kiki/front.svg",
  25391. extra: 4682 / 3610,
  25392. bottom: 115 / 4777
  25393. }
  25394. },
  25395. },
  25396. [
  25397. {
  25398. name: "Normal",
  25399. height: math.unit(1.6, "meters"),
  25400. default: true
  25401. },
  25402. ]
  25403. ))
  25404. characterMakers.push(() => makeCharacter(
  25405. { name: "Ryoko", species: ["oni"], tags: ["anthro"] },
  25406. {
  25407. front: {
  25408. height: math.unit(50, "m"),
  25409. weight: math.unit(500, "tonnes"),
  25410. name: "Front",
  25411. image: {
  25412. source: "./media/characters/ryoko/front.svg",
  25413. extra: 4632 / 3926,
  25414. bottom: 193 / 4823
  25415. }
  25416. },
  25417. },
  25418. [
  25419. {
  25420. name: "Normal",
  25421. height: math.unit(50, "meters"),
  25422. default: true
  25423. },
  25424. ]
  25425. ))
  25426. characterMakers.push(() => makeCharacter(
  25427. { name: "Elio", species: ["umbra"], tags: ["anthro"] },
  25428. {
  25429. front: {
  25430. height: math.unit(30, "m"),
  25431. weight: math.unit(22, "tonnes"),
  25432. name: "Front",
  25433. image: {
  25434. source: "./media/characters/elio/front.svg",
  25435. extra: 4582 / 3720,
  25436. bottom: 236 / 4828
  25437. }
  25438. },
  25439. },
  25440. [
  25441. {
  25442. name: "Normal",
  25443. height: math.unit(30, "meters"),
  25444. default: true
  25445. },
  25446. ]
  25447. ))
  25448. characterMakers.push(() => makeCharacter(
  25449. { name: "Azura", species: ["phoenix"], tags: ["anthro"] },
  25450. {
  25451. front: {
  25452. height: math.unit(6 + 3 / 12, "feet"),
  25453. weight: math.unit(120, "lb"),
  25454. name: "Front",
  25455. image: {
  25456. source: "./media/characters/azura/front.svg",
  25457. extra: 1149 / 1135,
  25458. bottom: 45 / 1194
  25459. }
  25460. },
  25461. frontClothed: {
  25462. height: math.unit(6 + 3 / 12, "feet"),
  25463. weight: math.unit(120, "lb"),
  25464. name: "Front (Clothed)",
  25465. image: {
  25466. source: "./media/characters/azura/front-clothed.svg",
  25467. extra: 1149 / 1135,
  25468. bottom: 45 / 1194
  25469. }
  25470. },
  25471. },
  25472. [
  25473. {
  25474. name: "Normal",
  25475. height: math.unit(6 + 3 / 12, "feet"),
  25476. default: true
  25477. },
  25478. {
  25479. name: "Macro",
  25480. height: math.unit(20 + 6 / 12, "feet")
  25481. },
  25482. {
  25483. name: "Megamacro",
  25484. height: math.unit(12, "miles")
  25485. },
  25486. {
  25487. name: "Gigamacro",
  25488. height: math.unit(10000, "miles")
  25489. },
  25490. {
  25491. name: "Teramacro",
  25492. height: math.unit(900000, "miles")
  25493. },
  25494. ]
  25495. ))
  25496. characterMakers.push(() => makeCharacter(
  25497. { name: "Zeus", species: ["pegasus"], tags: ["anthro"] },
  25498. {
  25499. front: {
  25500. height: math.unit(12, "feet"),
  25501. weight: math.unit(1, "ton"),
  25502. capacity: math.unit(660000, "gallons"),
  25503. name: "Front",
  25504. image: {
  25505. source: "./media/characters/zeus/front.svg",
  25506. extra: 5005 / 4717,
  25507. bottom: 363 / 5388
  25508. }
  25509. },
  25510. },
  25511. [
  25512. {
  25513. name: "Normal",
  25514. height: math.unit(12, "feet")
  25515. },
  25516. {
  25517. name: "Preferred Size",
  25518. height: math.unit(0.5, "miles"),
  25519. default: true
  25520. },
  25521. {
  25522. name: "Giga Horse",
  25523. height: math.unit(300, "miles")
  25524. },
  25525. {
  25526. name: "Riding Planets",
  25527. height: math.unit(30, "megameters")
  25528. },
  25529. {
  25530. name: "Cosmic Giant",
  25531. height: math.unit(3, "zettameters")
  25532. },
  25533. {
  25534. name: "Breeding God",
  25535. height: math.unit(9.92e22, "yottameters")
  25536. },
  25537. ]
  25538. ))
  25539. characterMakers.push(() => makeCharacter(
  25540. { name: "Fang", species: ["monster"], tags: ["feral"] },
  25541. {
  25542. side: {
  25543. height: math.unit(9, "feet"),
  25544. weight: math.unit(1500, "kg"),
  25545. name: "Side",
  25546. image: {
  25547. source: "./media/characters/fang/side.svg",
  25548. extra: 924 / 866,
  25549. bottom: 47.5 / 972.3
  25550. }
  25551. },
  25552. },
  25553. [
  25554. {
  25555. name: "Normal",
  25556. height: math.unit(9, "feet"),
  25557. default: true
  25558. },
  25559. {
  25560. name: "Macro",
  25561. height: math.unit(75 + 6 / 12, "feet")
  25562. },
  25563. {
  25564. name: "Teramacro",
  25565. height: math.unit(50000, "miles")
  25566. },
  25567. ]
  25568. ))
  25569. characterMakers.push(() => makeCharacter(
  25570. { name: "Rekhit", species: ["horse"], tags: ["anthro"] },
  25571. {
  25572. front: {
  25573. height: math.unit(10, "feet"),
  25574. weight: math.unit(2, "tons"),
  25575. name: "Front",
  25576. image: {
  25577. source: "./media/characters/rekhit/front.svg",
  25578. extra: 2796 / 2590,
  25579. bottom: 225 / 3022
  25580. }
  25581. },
  25582. },
  25583. [
  25584. {
  25585. name: "Normal",
  25586. height: math.unit(10, "feet"),
  25587. default: true
  25588. },
  25589. {
  25590. name: "Macro",
  25591. height: math.unit(500, "feet")
  25592. },
  25593. ]
  25594. ))
  25595. characterMakers.push(() => makeCharacter(
  25596. { name: "Dahlia Verrick" },
  25597. {
  25598. front: {
  25599. height: math.unit(7 + 6.451 / 12, "feet"),
  25600. weight: math.unit(310, "lb"),
  25601. name: "Front",
  25602. image: {
  25603. source: "./media/characters/dahlia-verrick/front.svg",
  25604. extra: 1488 / 1365,
  25605. bottom: 6.2 / 1495
  25606. }
  25607. },
  25608. back: {
  25609. height: math.unit(7 + 6.451 / 12, "feet"),
  25610. weight: math.unit(310, "lb"),
  25611. name: "Back",
  25612. image: {
  25613. source: "./media/characters/dahlia-verrick/back.svg",
  25614. extra: 1472 / 1351,
  25615. bottom: 5.28 / 1477
  25616. }
  25617. },
  25618. frontBusiness: {
  25619. height: math.unit(7 + 6.451 / 12, "feet"),
  25620. weight: math.unit(200, "lb"),
  25621. name: "Front (Business)",
  25622. image: {
  25623. source: "./media/characters/dahlia-verrick/front-business.svg",
  25624. extra: 1478 / 1381,
  25625. bottom: 5.5 / 1484
  25626. }
  25627. },
  25628. frontCasual: {
  25629. height: math.unit(7 + 6.451 / 12, "feet"),
  25630. weight: math.unit(200, "lb"),
  25631. name: "Front (Casual)",
  25632. image: {
  25633. source: "./media/characters/dahlia-verrick/front-casual.svg",
  25634. extra: 1478 / 1381,
  25635. bottom: 5.5 / 1484
  25636. }
  25637. },
  25638. },
  25639. [
  25640. {
  25641. name: "Travel-Sized",
  25642. height: math.unit(7.45, "inches")
  25643. },
  25644. {
  25645. name: "Normal",
  25646. height: math.unit(7 + 6.451 / 12, "feet"),
  25647. default: true
  25648. },
  25649. {
  25650. name: "Hitting the Town",
  25651. height: math.unit(37 + 8 / 12, "feet")
  25652. },
  25653. {
  25654. name: "Stomp in the Suburbs",
  25655. height: math.unit(964 + 9.728 / 12, "feet")
  25656. },
  25657. {
  25658. name: "Sit on the City",
  25659. height: math.unit(61747 + 10.592 / 12, "feet")
  25660. },
  25661. {
  25662. name: "Glomp the Globe",
  25663. height: math.unit(252919327 + 4.832 / 12, "feet")
  25664. },
  25665. ]
  25666. ))
  25667. characterMakers.push(() => makeCharacter(
  25668. { name: "Balina Mahigan", species: ["wolf", "cow"], tags: ["anthro"] },
  25669. {
  25670. front: {
  25671. height: math.unit(6 + 4 / 12, "feet"),
  25672. weight: math.unit(320, "lb"),
  25673. name: "Front",
  25674. image: {
  25675. source: "./media/characters/balina-mahigan/front.svg",
  25676. extra: 447 / 428,
  25677. bottom: 18 / 466
  25678. }
  25679. },
  25680. back: {
  25681. height: math.unit(6 + 4 / 12, "feet"),
  25682. weight: math.unit(320, "lb"),
  25683. name: "Back",
  25684. image: {
  25685. source: "./media/characters/balina-mahigan/back.svg",
  25686. extra: 445 / 428,
  25687. bottom: 4.07 / 448
  25688. }
  25689. },
  25690. arm: {
  25691. height: math.unit(1.88, "feet"),
  25692. name: "Arm",
  25693. image: {
  25694. source: "./media/characters/balina-mahigan/arm.svg"
  25695. }
  25696. },
  25697. backPort: {
  25698. height: math.unit(0.685, "feet"),
  25699. name: "Back Port",
  25700. image: {
  25701. source: "./media/characters/balina-mahigan/back-port.svg"
  25702. }
  25703. },
  25704. hoofpaw: {
  25705. height: math.unit(1.41, "feet"),
  25706. name: "Hoofpaw",
  25707. image: {
  25708. source: "./media/characters/balina-mahigan/hoofpaw.svg"
  25709. }
  25710. },
  25711. leftHandBack: {
  25712. height: math.unit(0.938, "feet"),
  25713. name: "Left Hand (Back)",
  25714. image: {
  25715. source: "./media/characters/balina-mahigan/left-hand-back.svg"
  25716. }
  25717. },
  25718. leftHandFront: {
  25719. height: math.unit(0.938, "feet"),
  25720. name: "Left Hand (Front)",
  25721. image: {
  25722. source: "./media/characters/balina-mahigan/left-hand-front.svg"
  25723. }
  25724. },
  25725. rightHandBack: {
  25726. height: math.unit(0.95, "feet"),
  25727. name: "Right Hand (Back)",
  25728. image: {
  25729. source: "./media/characters/balina-mahigan/right-hand-back.svg"
  25730. }
  25731. },
  25732. rightHandFront: {
  25733. height: math.unit(0.95, "feet"),
  25734. name: "Right Hand (Front)",
  25735. image: {
  25736. source: "./media/characters/balina-mahigan/right-hand-front.svg"
  25737. }
  25738. },
  25739. },
  25740. [
  25741. {
  25742. name: "Normal",
  25743. height: math.unit(6 + 4 / 12, "feet"),
  25744. default: true
  25745. },
  25746. ]
  25747. ))
  25748. characterMakers.push(() => makeCharacter(
  25749. { name: "Balina Mejeri", tags: ["wolf", "cow"], tags: ["anthro"] },
  25750. {
  25751. front: {
  25752. height: math.unit(6, "feet"),
  25753. weight: math.unit(320, "lb"),
  25754. name: "Front",
  25755. image: {
  25756. source: "./media/characters/balina-mejeri/front.svg",
  25757. extra: 517 / 488,
  25758. bottom: 44.2 / 561
  25759. }
  25760. },
  25761. },
  25762. [
  25763. {
  25764. name: "Normal",
  25765. height: math.unit(6 + 4 / 12, "feet")
  25766. },
  25767. {
  25768. name: "Business",
  25769. height: math.unit(155, "feet"),
  25770. default: true
  25771. },
  25772. ]
  25773. ))
  25774. characterMakers.push(() => makeCharacter(
  25775. { name: "Balbarian", species: ["wolf", "cow"], tags: ["anthro"] },
  25776. {
  25777. kneeling: {
  25778. height: math.unit(6 + 4 / 12, "feet"),
  25779. weight: math.unit(300 * 20, "lb"),
  25780. name: "Kneeling",
  25781. image: {
  25782. source: "./media/characters/balbarian/kneeling.svg",
  25783. extra: 922 / 862,
  25784. bottom: 42.4 / 965
  25785. }
  25786. },
  25787. },
  25788. [
  25789. {
  25790. name: "Normal",
  25791. height: math.unit(6 + 4 / 12, "feet")
  25792. },
  25793. {
  25794. name: "Treasured",
  25795. height: math.unit(18 + 9 / 12, "feet"),
  25796. default: true
  25797. },
  25798. {
  25799. name: "Macro",
  25800. height: math.unit(900, "feet")
  25801. },
  25802. ]
  25803. ))
  25804. characterMakers.push(() => makeCharacter(
  25805. { name: "Balina Amarini", species: ["wolf", "cow"], tags: ["anthro"] },
  25806. {
  25807. front: {
  25808. height: math.unit(6 + 4 / 12, "feet"),
  25809. weight: math.unit(325, "lb"),
  25810. name: "Front",
  25811. image: {
  25812. source: "./media/characters/balina-amarini/front.svg",
  25813. extra: 415 / 403,
  25814. bottom: 19 / 433.4
  25815. }
  25816. },
  25817. back: {
  25818. height: math.unit(6 + 4 / 12, "feet"),
  25819. weight: math.unit(325, "lb"),
  25820. name: "Back",
  25821. image: {
  25822. source: "./media/characters/balina-amarini/back.svg",
  25823. extra: 415 / 403,
  25824. bottom: 13.5 / 432
  25825. }
  25826. },
  25827. overdrive: {
  25828. height: math.unit(6 + 4 / 12, "feet"),
  25829. weight: math.unit(400, "lb"),
  25830. name: "Overdrive",
  25831. image: {
  25832. source: "./media/characters/balina-amarini/overdrive.svg",
  25833. extra: 269 / 259,
  25834. bottom: 12 / 282
  25835. }
  25836. },
  25837. },
  25838. [
  25839. {
  25840. name: "Boom",
  25841. height: math.unit(9 + 10 / 12, "feet"),
  25842. default: true
  25843. },
  25844. {
  25845. name: "Macro",
  25846. height: math.unit(280, "feet")
  25847. },
  25848. ]
  25849. ))
  25850. characterMakers.push(() => makeCharacter(
  25851. { name: "Lady Kubwa", species: ["giraffe", "deity"], tags: ["anthro"] },
  25852. {
  25853. goddess: {
  25854. height: math.unit(600, "feet"),
  25855. weight: math.unit(2000000, "tons"),
  25856. name: "Goddess",
  25857. image: {
  25858. source: "./media/characters/lady-kubwa/goddess.svg",
  25859. extra: 1240.5 / 1223,
  25860. bottom: 22 / 1263
  25861. }
  25862. },
  25863. goddesser: {
  25864. height: math.unit(900, "feet"),
  25865. weight: math.unit(20000000, "lb"),
  25866. name: "Goddess-er",
  25867. image: {
  25868. source: "./media/characters/lady-kubwa/goddess-er.svg",
  25869. extra: 899 / 888,
  25870. bottom: 12.6 / 912
  25871. }
  25872. },
  25873. },
  25874. [
  25875. {
  25876. name: "Macro",
  25877. height: math.unit(600, "feet"),
  25878. default: true
  25879. },
  25880. {
  25881. name: "Megamacro",
  25882. height: math.unit(250, "miles")
  25883. },
  25884. ]
  25885. ))
  25886. characterMakers.push(() => makeCharacter(
  25887. { name: "Tala Grovehorn", species: ["tauren"], tags: ["anthro"] },
  25888. {
  25889. front: {
  25890. height: math.unit(7 + 7 / 12, "feet"),
  25891. weight: math.unit(250, "lb"),
  25892. name: "Front",
  25893. image: {
  25894. source: "./media/characters/tala-grovehorn/front.svg",
  25895. extra: 2636 / 2525,
  25896. bottom: 147 / 2781
  25897. }
  25898. },
  25899. back: {
  25900. height: math.unit(7 + 7 / 12, "feet"),
  25901. weight: math.unit(250, "lb"),
  25902. name: "Back",
  25903. image: {
  25904. source: "./media/characters/tala-grovehorn/back.svg",
  25905. extra: 2635 / 2539,
  25906. bottom: 100 / 2732.8
  25907. }
  25908. },
  25909. mouth: {
  25910. height: math.unit(1.15, "feet"),
  25911. name: "Mouth",
  25912. image: {
  25913. source: "./media/characters/tala-grovehorn/mouth.svg"
  25914. }
  25915. },
  25916. dick: {
  25917. height: math.unit(2.36, "feet"),
  25918. name: "Dick",
  25919. image: {
  25920. source: "./media/characters/tala-grovehorn/dick.svg"
  25921. }
  25922. },
  25923. slit: {
  25924. height: math.unit(0.61, "feet"),
  25925. name: "Slit",
  25926. image: {
  25927. source: "./media/characters/tala-grovehorn/slit.svg"
  25928. }
  25929. },
  25930. },
  25931. [
  25932. ]
  25933. ))
  25934. characterMakers.push(() => makeCharacter(
  25935. { name: "Epona", species: ["unicorn"], tags: ["anthro"] },
  25936. {
  25937. front: {
  25938. height: math.unit(7 + 7 / 12, "feet"),
  25939. weight: math.unit(225, "lb"),
  25940. name: "Front",
  25941. image: {
  25942. source: "./media/characters/epona/front.svg",
  25943. extra: 2445 / 2290,
  25944. bottom: 251 / 2696
  25945. }
  25946. },
  25947. back: {
  25948. height: math.unit(7 + 7 / 12, "feet"),
  25949. weight: math.unit(225, "lb"),
  25950. name: "Back",
  25951. image: {
  25952. source: "./media/characters/epona/back.svg",
  25953. extra: 2546 / 2408,
  25954. bottom: 44 / 2589
  25955. }
  25956. },
  25957. genitals: {
  25958. height: math.unit(1.5, "feet"),
  25959. name: "Genitals",
  25960. image: {
  25961. source: "./media/characters/epona/genitals.svg"
  25962. }
  25963. },
  25964. },
  25965. [
  25966. {
  25967. name: "Normal",
  25968. height: math.unit(7 + 7 / 12, "feet"),
  25969. default: true
  25970. },
  25971. ]
  25972. ))
  25973. characterMakers.push(() => makeCharacter(
  25974. { name: "Avia Bloodbourn", species: ["lion"], tags: ["anthro"] },
  25975. {
  25976. front: {
  25977. height: math.unit(7, "feet"),
  25978. weight: math.unit(518, "lb"),
  25979. name: "Front",
  25980. image: {
  25981. source: "./media/characters/avia-bloodbourn/front.svg",
  25982. extra: 1466 / 1350,
  25983. bottom: 65 / 1527
  25984. }
  25985. },
  25986. },
  25987. [
  25988. ]
  25989. ))
  25990. characterMakers.push(() => makeCharacter(
  25991. { name: "Amera", species: ["dragon"], tags: ["anthro"] },
  25992. {
  25993. front: {
  25994. height: math.unit(9.35, "feet"),
  25995. weight: math.unit(600, "lb"),
  25996. name: "Front",
  25997. image: {
  25998. source: "./media/characters/amera/front.svg",
  25999. extra: 891 / 818,
  26000. bottom: 30 / 922.7
  26001. }
  26002. },
  26003. back: {
  26004. height: math.unit(9.35, "feet"),
  26005. weight: math.unit(600, "lb"),
  26006. name: "Back",
  26007. image: {
  26008. source: "./media/characters/amera/back.svg",
  26009. extra: 876 / 824,
  26010. bottom: 6.8 / 884
  26011. }
  26012. },
  26013. dick: {
  26014. height: math.unit(2.14, "feet"),
  26015. name: "Dick",
  26016. image: {
  26017. source: "./media/characters/amera/dick.svg"
  26018. }
  26019. },
  26020. },
  26021. [
  26022. {
  26023. name: "Normal",
  26024. height: math.unit(9.35, "feet"),
  26025. default: true
  26026. },
  26027. ]
  26028. ))
  26029. characterMakers.push(() => makeCharacter(
  26030. { name: "Rosewen", species: ["vulpera"], tags: ["anthro"] },
  26031. {
  26032. kneeling: {
  26033. height: math.unit(3 + 4 / 12, "feet"),
  26034. weight: math.unit(90, "lb"),
  26035. name: "Kneeling",
  26036. image: {
  26037. source: "./media/characters/rosewen/kneeling.svg",
  26038. extra: 1835 / 1571,
  26039. bottom: 27.7 / 1862
  26040. }
  26041. },
  26042. },
  26043. [
  26044. {
  26045. name: "Normal",
  26046. height: math.unit(3 + 4 / 12, "feet"),
  26047. default: true
  26048. },
  26049. ]
  26050. ))
  26051. characterMakers.push(() => makeCharacter(
  26052. { name: "Sabah", species: ["lucario"], tags: ["anthro"] },
  26053. {
  26054. front: {
  26055. height: math.unit(5 + 10 / 12, "feet"),
  26056. weight: math.unit(200, "lb"),
  26057. name: "Front",
  26058. image: {
  26059. source: "./media/characters/sabah/front.svg",
  26060. extra: 849 / 763,
  26061. bottom: 33.9 / 881
  26062. }
  26063. },
  26064. },
  26065. [
  26066. {
  26067. name: "Normal",
  26068. height: math.unit(5 + 10 / 12, "feet"),
  26069. default: true
  26070. },
  26071. ]
  26072. ))
  26073. characterMakers.push(() => makeCharacter(
  26074. { name: "Purple Flame", species: ["pony"], tags: ["feral"] },
  26075. {
  26076. front: {
  26077. height: math.unit(3 + 5 / 12, "feet"),
  26078. weight: math.unit(40, "kg"),
  26079. name: "Front",
  26080. image: {
  26081. source: "./media/characters/purple-flame/front.svg",
  26082. extra: 1577 / 1412,
  26083. bottom: 97 / 1694
  26084. }
  26085. },
  26086. frontDressed: {
  26087. height: math.unit(3 + 5 / 12, "feet"),
  26088. weight: math.unit(40, "kg"),
  26089. name: "Front (Dressed)",
  26090. image: {
  26091. source: "./media/characters/purple-flame/front-dressed.svg",
  26092. extra: 1577 / 1412,
  26093. bottom: 97 / 1694
  26094. }
  26095. },
  26096. headphones: {
  26097. height: math.unit(0.85, "feet"),
  26098. name: "Headphones",
  26099. image: {
  26100. source: "./media/characters/purple-flame/headphones.svg"
  26101. }
  26102. },
  26103. },
  26104. [
  26105. {
  26106. name: "Really Small",
  26107. height: math.unit(5, "cm")
  26108. },
  26109. {
  26110. name: "Micro",
  26111. height: math.unit(1 + 5 / 12, "feet")
  26112. },
  26113. {
  26114. name: "Normal",
  26115. height: math.unit(3 + 5 / 12, "feet"),
  26116. default: true
  26117. },
  26118. {
  26119. name: "Minimacro",
  26120. height: math.unit(125, "feet")
  26121. },
  26122. {
  26123. name: "Macro",
  26124. height: math.unit(0.5, "miles")
  26125. },
  26126. {
  26127. name: "Megamacro",
  26128. height: math.unit(50, "miles")
  26129. },
  26130. {
  26131. name: "Gigantic",
  26132. height: math.unit(750, "miles")
  26133. },
  26134. {
  26135. name: "Planetary",
  26136. height: math.unit(15000, "miles")
  26137. },
  26138. ]
  26139. ))
  26140. characterMakers.push(() => makeCharacter(
  26141. { name: "Arsenal", species: ["wolf", "deity"], tags: ["anthro"] },
  26142. {
  26143. front: {
  26144. height: math.unit(14, "feet"),
  26145. weight: math.unit(959, "lb"),
  26146. name: "Front",
  26147. image: {
  26148. source: "./media/characters/arsenal/front.svg",
  26149. extra: 2357 / 2157,
  26150. bottom: 93 / 2458
  26151. }
  26152. },
  26153. },
  26154. [
  26155. {
  26156. name: "Normal",
  26157. height: math.unit(14, "feet"),
  26158. default: true
  26159. },
  26160. ]
  26161. ))
  26162. characterMakers.push(() => makeCharacter(
  26163. { name: "Adira", species: ["mouse"], tags: ["anthro"] },
  26164. {
  26165. front: {
  26166. height: math.unit(6, "feet"),
  26167. weight: math.unit(150, "lb"),
  26168. name: "Front",
  26169. image: {
  26170. source: "./media/characters/adira/front.svg",
  26171. extra: 1078 / 1029,
  26172. bottom: 87 / 1166
  26173. }
  26174. },
  26175. },
  26176. [
  26177. {
  26178. name: "Micro",
  26179. height: math.unit(4, "inches"),
  26180. default: true
  26181. },
  26182. {
  26183. name: "Macro",
  26184. height: math.unit(50, "feet")
  26185. },
  26186. ]
  26187. ))
  26188. characterMakers.push(() => makeCharacter(
  26189. { name: "Grim", species: ["ceratosaurus"], tags: ["anthro"] },
  26190. {
  26191. front: {
  26192. height: math.unit(16, "feet"),
  26193. weight: math.unit(1000, "lb"),
  26194. name: "Front",
  26195. image: {
  26196. source: "./media/characters/grim/front.svg",
  26197. extra: 622 / 614,
  26198. bottom: 18.1 / 642
  26199. }
  26200. },
  26201. back: {
  26202. height: math.unit(16, "feet"),
  26203. weight: math.unit(1000, "lb"),
  26204. name: "Back",
  26205. image: {
  26206. source: "./media/characters/grim/back.svg",
  26207. extra: 610.6 / 602,
  26208. bottom: 40.8 / 652
  26209. }
  26210. },
  26211. hunched: {
  26212. height: math.unit(9.75, "feet"),
  26213. weight: math.unit(1000, "lb"),
  26214. name: "Hunched",
  26215. image: {
  26216. source: "./media/characters/grim/hunched.svg",
  26217. extra: 304 / 297,
  26218. bottom: 35.4 / 394
  26219. }
  26220. },
  26221. },
  26222. [
  26223. {
  26224. name: "Normal",
  26225. height: math.unit(16, "feet"),
  26226. default: true
  26227. },
  26228. ]
  26229. ))
  26230. characterMakers.push(() => makeCharacter(
  26231. { name: "Sinja", species: ["monster", "fox"], tags: ["anthro"] },
  26232. {
  26233. front: {
  26234. height: math.unit(2.3, "meters"),
  26235. weight: math.unit(300, "lb"),
  26236. name: "Front",
  26237. image: {
  26238. source: "./media/characters/sinja/front-sfw.svg",
  26239. extra: 1393 / 1294,
  26240. bottom: 70 / 1463
  26241. }
  26242. },
  26243. frontNsfw: {
  26244. height: math.unit(2.3, "meters"),
  26245. weight: math.unit(300, "lb"),
  26246. name: "Front (NSFW)",
  26247. image: {
  26248. source: "./media/characters/sinja/front-nsfw.svg",
  26249. extra: 1393 / 1294,
  26250. bottom: 70 / 1463
  26251. }
  26252. },
  26253. back: {
  26254. height: math.unit(2.3, "meters"),
  26255. weight: math.unit(300, "lb"),
  26256. name: "Back",
  26257. image: {
  26258. source: "./media/characters/sinja/back.svg",
  26259. extra: 1393 / 1294,
  26260. bottom: 70 / 1463
  26261. }
  26262. },
  26263. head: {
  26264. height: math.unit(1.771, "feet"),
  26265. name: "Head",
  26266. image: {
  26267. source: "./media/characters/sinja/head.svg"
  26268. }
  26269. },
  26270. slit: {
  26271. height: math.unit(0.8, "feet"),
  26272. name: "Slit",
  26273. image: {
  26274. source: "./media/characters/sinja/slit.svg"
  26275. }
  26276. },
  26277. },
  26278. [
  26279. {
  26280. name: "Normal",
  26281. height: math.unit(2.3, "meters")
  26282. },
  26283. {
  26284. name: "Macro",
  26285. height: math.unit(91, "meters"),
  26286. default: true
  26287. },
  26288. {
  26289. name: "Megamacro",
  26290. height: math.unit(91440, "meters")
  26291. },
  26292. {
  26293. name: "Gigamacro",
  26294. height: math.unit(60960000, "meters")
  26295. },
  26296. {
  26297. name: "Teramacro",
  26298. height: math.unit(9144000000, "meters")
  26299. },
  26300. ]
  26301. ))
  26302. characterMakers.push(() => makeCharacter(
  26303. { name: "Kyu", species: ["cat"], tags: ["anthro"] },
  26304. {
  26305. front: {
  26306. height: math.unit(1.7, "meters"),
  26307. weight: math.unit(130, "lb"),
  26308. name: "Front",
  26309. image: {
  26310. source: "./media/characters/kyu/front.svg",
  26311. extra: 415 / 395,
  26312. bottom: 5 / 420
  26313. }
  26314. },
  26315. head: {
  26316. height: math.unit(1.75, "feet"),
  26317. name: "Head",
  26318. image: {
  26319. source: "./media/characters/kyu/head.svg"
  26320. }
  26321. },
  26322. foot: {
  26323. height: math.unit(0.81, "feet"),
  26324. name: "Foot",
  26325. image: {
  26326. source: "./media/characters/kyu/foot.svg"
  26327. }
  26328. },
  26329. },
  26330. [
  26331. {
  26332. name: "Normal",
  26333. height: math.unit(1.7, "meters")
  26334. },
  26335. {
  26336. name: "Macro",
  26337. height: math.unit(131, "feet"),
  26338. default: true
  26339. },
  26340. {
  26341. name: "Megamacro",
  26342. height: math.unit(91440, "meters")
  26343. },
  26344. {
  26345. name: "Gigamacro",
  26346. height: math.unit(60960000, "meters")
  26347. },
  26348. {
  26349. name: "Teramacro",
  26350. height: math.unit(9144000000, "meters")
  26351. },
  26352. ]
  26353. ))
  26354. characterMakers.push(() => makeCharacter(
  26355. { name: "Joey", species: ["kangaroo"], tags: ["anthro"] },
  26356. {
  26357. front: {
  26358. height: math.unit(7 + 1 / 12, "feet"),
  26359. weight: math.unit(250, "lb"),
  26360. name: "Front",
  26361. image: {
  26362. source: "./media/characters/joey/front.svg",
  26363. extra: 1791 / 1537,
  26364. bottom: 28 / 1816
  26365. }
  26366. },
  26367. },
  26368. [
  26369. {
  26370. name: "Micro",
  26371. height: math.unit(3, "inches")
  26372. },
  26373. {
  26374. name: "Normal",
  26375. height: math.unit(7 + 1 / 12, "feet"),
  26376. default: true
  26377. },
  26378. ]
  26379. ))
  26380. characterMakers.push(() => makeCharacter(
  26381. { name: "Sam Evans", species: ["fox", "demon"], tags: ["anthro"] },
  26382. {
  26383. front: {
  26384. height: math.unit(165, "cm"),
  26385. weight: math.unit(140, "lb"),
  26386. name: "Front",
  26387. image: {
  26388. source: "./media/characters/sam-evans/front.svg",
  26389. extra: 3417 / 3230,
  26390. bottom: 41.3 / 3417
  26391. }
  26392. },
  26393. frontSixTails: {
  26394. height: math.unit(165, "cm"),
  26395. weight: math.unit(140, "lb"),
  26396. name: "Front-six-tails",
  26397. image: {
  26398. source: "./media/characters/sam-evans/front-six-tails.svg",
  26399. extra: 3417 / 3230,
  26400. bottom: 41.3 / 3417
  26401. }
  26402. },
  26403. back: {
  26404. height: math.unit(165, "cm"),
  26405. weight: math.unit(140, "lb"),
  26406. name: "Back",
  26407. image: {
  26408. source: "./media/characters/sam-evans/back.svg",
  26409. extra: 3227 / 3032,
  26410. bottom: 6.8 / 3234
  26411. }
  26412. },
  26413. face: {
  26414. height: math.unit(0.68, "feet"),
  26415. name: "Face",
  26416. image: {
  26417. source: "./media/characters/sam-evans/face.svg"
  26418. }
  26419. },
  26420. },
  26421. [
  26422. {
  26423. name: "Normal",
  26424. height: math.unit(165, "cm"),
  26425. default: true
  26426. },
  26427. {
  26428. name: "Macro",
  26429. height: math.unit(100, "meters")
  26430. },
  26431. {
  26432. name: "Macro+",
  26433. height: math.unit(800, "meters")
  26434. },
  26435. {
  26436. name: "Macro++",
  26437. height: math.unit(3, "km")
  26438. },
  26439. {
  26440. name: "Macro+++",
  26441. height: math.unit(30, "km")
  26442. },
  26443. ]
  26444. ))
  26445. characterMakers.push(() => makeCharacter(
  26446. { name: "Juliet A", species: ["lizard"], tags: ["anthro"] },
  26447. {
  26448. front: {
  26449. height: math.unit(10, "feet"),
  26450. weight: math.unit(750, "lb"),
  26451. name: "Front",
  26452. image: {
  26453. source: "./media/characters/juliet-a/front.svg",
  26454. extra: 1766 / 1720,
  26455. bottom: 43 / 1809
  26456. }
  26457. },
  26458. back: {
  26459. height: math.unit(10, "feet"),
  26460. weight: math.unit(750, "lb"),
  26461. name: "Back",
  26462. image: {
  26463. source: "./media/characters/juliet-a/back.svg",
  26464. extra: 1781 / 1734,
  26465. bottom: 35 / 1810,
  26466. }
  26467. },
  26468. },
  26469. [
  26470. {
  26471. name: "Normal",
  26472. height: math.unit(10, "feet"),
  26473. default: true
  26474. },
  26475. {
  26476. name: "Dragon Form",
  26477. height: math.unit(250, "feet")
  26478. },
  26479. {
  26480. name: "Macro",
  26481. height: math.unit(1000, "feet")
  26482. },
  26483. {
  26484. name: "Megamacro",
  26485. height: math.unit(10000, "feet")
  26486. }
  26487. ]
  26488. ))
  26489. characterMakers.push(() => makeCharacter(
  26490. { name: "Wild", species: ["hyena"], tags: ["anthro"] },
  26491. {
  26492. regular: {
  26493. height: math.unit(7 + 3 / 12, "feet"),
  26494. weight: math.unit(260, "lb"),
  26495. name: "Regular",
  26496. image: {
  26497. source: "./media/characters/wild/regular.svg",
  26498. extra: 97.45 / 92,
  26499. bottom: 6.8 / 104.3
  26500. }
  26501. },
  26502. biggums: {
  26503. height: math.unit(8 + 6 / 12, "feet"),
  26504. weight: math.unit(425, "lb"),
  26505. name: "Biggums",
  26506. image: {
  26507. source: "./media/characters/wild/biggums.svg",
  26508. extra: 97.45 / 92,
  26509. bottom: 7.5 / 132.34
  26510. }
  26511. },
  26512. mawRegular: {
  26513. height: math.unit(1.24, "feet"),
  26514. name: "Maw (Regular)",
  26515. image: {
  26516. source: "./media/characters/wild/maw.svg"
  26517. }
  26518. },
  26519. mawBiggums: {
  26520. height: math.unit(1.47, "feet"),
  26521. name: "Maw (Biggums)",
  26522. image: {
  26523. source: "./media/characters/wild/maw.svg"
  26524. }
  26525. },
  26526. },
  26527. [
  26528. {
  26529. name: "Normal",
  26530. height: math.unit(7 + 3 / 12, "feet"),
  26531. default: true
  26532. },
  26533. ]
  26534. ))
  26535. characterMakers.push(() => makeCharacter(
  26536. { name: "Vidar", species: ["deer"], tags: ["anthro", "feral"] },
  26537. {
  26538. front: {
  26539. height: math.unit(2.5, "meters"),
  26540. weight: math.unit(200, "kg"),
  26541. name: "Front",
  26542. image: {
  26543. source: "./media/characters/vidar/front.svg",
  26544. extra: 2994 / 2795,
  26545. bottom: 56 / 3061
  26546. }
  26547. },
  26548. back: {
  26549. height: math.unit(2.5, "meters"),
  26550. weight: math.unit(200, "kg"),
  26551. name: "Back",
  26552. image: {
  26553. source: "./media/characters/vidar/back.svg",
  26554. extra: 3131 / 2928,
  26555. bottom: 13.5 / 3141.5
  26556. }
  26557. },
  26558. feral: {
  26559. height: math.unit(2.5, "meters"),
  26560. weight: math.unit(2000, "kg"),
  26561. name: "Feral",
  26562. image: {
  26563. source: "./media/characters/vidar/feral.svg",
  26564. extra: 2790 / 1765,
  26565. bottom: 6 / 2796
  26566. }
  26567. },
  26568. },
  26569. [
  26570. {
  26571. name: "Normal",
  26572. height: math.unit(2.5, "meters"),
  26573. default: true
  26574. },
  26575. {
  26576. name: "Macro",
  26577. height: math.unit(100, "meters")
  26578. },
  26579. ]
  26580. ))
  26581. characterMakers.push(() => makeCharacter(
  26582. { name: "Ash", species: ["zoroark"], tags: ["anthro"] },
  26583. {
  26584. front: {
  26585. height: math.unit(5 + 9 / 12, "feet"),
  26586. weight: math.unit(120, "lb"),
  26587. name: "Front",
  26588. image: {
  26589. source: "./media/characters/ash/front.svg",
  26590. extra: 2189 / 1961,
  26591. bottom: 5.2 / 2194
  26592. }
  26593. },
  26594. },
  26595. [
  26596. {
  26597. name: "Normal",
  26598. height: math.unit(5 + 9 / 12, "feet"),
  26599. default: true
  26600. },
  26601. ]
  26602. ))
  26603. characterMakers.push(() => makeCharacter(
  26604. { name: "Gygabite", species: ["draconi"], tags: ["anthro"] },
  26605. {
  26606. front: {
  26607. height: math.unit(9, "feet"),
  26608. weight: math.unit(10000, "lb"),
  26609. name: "Front",
  26610. image: {
  26611. source: "./media/characters/gygabite/front.svg",
  26612. bottom: 31.7 / 537.8,
  26613. extra: 505 / 370
  26614. }
  26615. },
  26616. },
  26617. [
  26618. {
  26619. name: "Normal",
  26620. height: math.unit(9, "feet"),
  26621. default: true
  26622. },
  26623. ]
  26624. ))
  26625. characterMakers.push(() => makeCharacter(
  26626. { name: "P0tat0", species: ["protogen"], tags: ["anthro"] },
  26627. {
  26628. front: {
  26629. height: math.unit(12, "feet"),
  26630. weight: math.unit(35000, "lb"),
  26631. name: "Front",
  26632. image: {
  26633. source: "./media/characters/p0tat0/front.svg",
  26634. extra: 1065 / 921,
  26635. bottom: 55.7 / 1121.25
  26636. }
  26637. },
  26638. },
  26639. [
  26640. {
  26641. name: "Normal",
  26642. height: math.unit(12, "feet"),
  26643. default: true
  26644. },
  26645. ]
  26646. ))
  26647. characterMakers.push(() => makeCharacter(
  26648. { name: "Dusk", species: ["arcanine"], tags: ["feral"] },
  26649. {
  26650. side: {
  26651. height: math.unit(6.5, "feet"),
  26652. weight: math.unit(800, "lb"),
  26653. name: "Side",
  26654. image: {
  26655. source: "./media/characters/dusk/side.svg",
  26656. extra: 615 / 373,
  26657. bottom: 53 / 664
  26658. }
  26659. },
  26660. sitting: {
  26661. height: math.unit(7, "feet"),
  26662. weight: math.unit(800, "lb"),
  26663. name: "Sitting",
  26664. image: {
  26665. source: "./media/characters/dusk/sitting.svg",
  26666. extra: 753 / 425,
  26667. bottom: 33 / 774
  26668. }
  26669. },
  26670. head: {
  26671. height: math.unit(6.1, "feet"),
  26672. name: "Head",
  26673. image: {
  26674. source: "./media/characters/dusk/head.svg"
  26675. }
  26676. },
  26677. },
  26678. [
  26679. {
  26680. name: "Normal",
  26681. height: math.unit(7, "feet"),
  26682. default: true
  26683. },
  26684. ]
  26685. ))
  26686. characterMakers.push(() => makeCharacter(
  26687. { name: "Jay Direwolf", species: ["dire-wolf"], tags: ["anthro"] },
  26688. {
  26689. front: {
  26690. height: math.unit(15, "feet"),
  26691. weight: math.unit(7000, "lb"),
  26692. name: "Front",
  26693. image: {
  26694. source: "./media/characters/jay-direwolf/front.svg",
  26695. extra: 1810 / 1732,
  26696. bottom: 66 / 1892
  26697. }
  26698. },
  26699. },
  26700. [
  26701. {
  26702. name: "Normal",
  26703. height: math.unit(15, "feet"),
  26704. default: true
  26705. },
  26706. ]
  26707. ))
  26708. characterMakers.push(() => makeCharacter(
  26709. { name: "Anchovie", species: ["cat"], tags: ["anthro"] },
  26710. {
  26711. front: {
  26712. height: math.unit(4 + 9 / 12, "feet"),
  26713. weight: math.unit(130, "lb"),
  26714. name: "Front",
  26715. image: {
  26716. source: "./media/characters/anchovie/front.svg",
  26717. extra: 382 / 350,
  26718. bottom: 25 / 409
  26719. }
  26720. },
  26721. back: {
  26722. height: math.unit(4 + 9 / 12, "feet"),
  26723. weight: math.unit(130, "lb"),
  26724. name: "Back",
  26725. image: {
  26726. source: "./media/characters/anchovie/back.svg",
  26727. extra: 385 / 352,
  26728. bottom: 16.6 / 402
  26729. }
  26730. },
  26731. frontDressed: {
  26732. height: math.unit(4 + 9 / 12, "feet"),
  26733. weight: math.unit(130, "lb"),
  26734. name: "Front (Dressed)",
  26735. image: {
  26736. source: "./media/characters/anchovie/front-dressed.svg",
  26737. extra: 382 / 350,
  26738. bottom: 25 / 409
  26739. }
  26740. },
  26741. backDressed: {
  26742. height: math.unit(4 + 9 / 12, "feet"),
  26743. weight: math.unit(130, "lb"),
  26744. name: "Back (Dressed)",
  26745. image: {
  26746. source: "./media/characters/anchovie/back-dressed.svg",
  26747. extra: 385 / 352,
  26748. bottom: 16.6 / 402
  26749. }
  26750. },
  26751. },
  26752. [
  26753. {
  26754. name: "Micro",
  26755. height: math.unit(6.4, "inches")
  26756. },
  26757. {
  26758. name: "Normal",
  26759. height: math.unit(4 + 9 / 12, "feet"),
  26760. default: true
  26761. },
  26762. ]
  26763. ))
  26764. characterMakers.push(() => makeCharacter(
  26765. { name: "AcidRenamon", species: ["renamon", "skunk"], tags: ["anthro"] },
  26766. {
  26767. front: {
  26768. height: math.unit(2, "meters"),
  26769. weight: math.unit(180, "lb"),
  26770. name: "Front",
  26771. image: {
  26772. source: "./media/characters/acidrenamon/front.svg",
  26773. extra: 987 / 890,
  26774. bottom: 22.8 / 1009
  26775. }
  26776. },
  26777. back: {
  26778. height: math.unit(2, "meters"),
  26779. weight: math.unit(180, "lb"),
  26780. name: "Back",
  26781. image: {
  26782. source: "./media/characters/acidrenamon/back.svg",
  26783. extra: 983 / 891,
  26784. bottom: 8.4 / 992
  26785. }
  26786. },
  26787. head: {
  26788. height: math.unit(1.92, "feet"),
  26789. name: "Head",
  26790. image: {
  26791. source: "./media/characters/acidrenamon/head.svg"
  26792. }
  26793. },
  26794. rump: {
  26795. height: math.unit(1.72, "feet"),
  26796. name: "Rump",
  26797. image: {
  26798. source: "./media/characters/acidrenamon/rump.svg"
  26799. }
  26800. },
  26801. tail: {
  26802. height: math.unit(4.2, "feet"),
  26803. name: "Tail",
  26804. image: {
  26805. source: "./media/characters/acidrenamon/tail.svg"
  26806. }
  26807. },
  26808. },
  26809. [
  26810. {
  26811. name: "Normal",
  26812. height: math.unit(2, "meters"),
  26813. default: true
  26814. },
  26815. {
  26816. name: "Minimacro",
  26817. height: math.unit(7, "meters")
  26818. },
  26819. {
  26820. name: "Macro",
  26821. height: math.unit(200, "meters")
  26822. },
  26823. {
  26824. name: "Gigamacro",
  26825. height: math.unit(0.2, "earths")
  26826. },
  26827. ]
  26828. ))
  26829. characterMakers.push(() => makeCharacter(
  26830. { name: "Kenzie Lee", species: ["lycanroc"], tags: ["anthro"] },
  26831. {
  26832. front: {
  26833. height: math.unit(6, "feet"),
  26834. weight: math.unit(150, "lb"),
  26835. name: "Front",
  26836. image: {
  26837. source: "./media/characters/kenzie-lee/front.svg",
  26838. extra: 1525 / 1465,
  26839. bottom: 45 / 1570
  26840. }
  26841. },
  26842. side: {
  26843. height: math.unit(6, "feet"),
  26844. weight: math.unit(150, "lb"),
  26845. name: "Side",
  26846. image: {
  26847. source: "./media/characters/kenzie-lee/side.svg",
  26848. extra: 5505 / 5383,
  26849. bottom: 60 / 5573
  26850. }
  26851. },
  26852. paw: {
  26853. height: math.unit(0.57, "feet"),
  26854. name: "Paw",
  26855. image: {
  26856. source: "./media/characters/kenzie-lee/paw.svg"
  26857. }
  26858. },
  26859. },
  26860. [
  26861. {
  26862. name: "Normal",
  26863. height: math.unit(152, "feet"),
  26864. default: true
  26865. },
  26866. {
  26867. name: "Megamacro",
  26868. height: math.unit(7, "miles")
  26869. },
  26870. {
  26871. name: "Gigamacro",
  26872. height: math.unit(8000, "miles")
  26873. },
  26874. ]
  26875. ))
  26876. characterMakers.push(() => makeCharacter(
  26877. { name: "Withers", species: ["hellhound"], tags: ["anthro"] },
  26878. {
  26879. side: {
  26880. height: math.unit(6, "feet"),
  26881. weight: math.unit(150, "lb"),
  26882. name: "Side",
  26883. image: {
  26884. source: "./media/characters/withers/side.svg",
  26885. extra: 1830 / 1728,
  26886. bottom: 96 / 1927
  26887. }
  26888. },
  26889. front: {
  26890. height: math.unit(6, "feet"),
  26891. weight: math.unit(150, "lb"),
  26892. name: "Front",
  26893. image: {
  26894. source: "./media/characters/withers/front.svg",
  26895. extra: 1514 / 1438,
  26896. bottom: 118 / 1632
  26897. }
  26898. },
  26899. },
  26900. [
  26901. {
  26902. name: "Macro",
  26903. height: math.unit(168, "feet"),
  26904. default: true
  26905. },
  26906. {
  26907. name: "Megamacro",
  26908. height: math.unit(15, "miles")
  26909. }
  26910. ]
  26911. ))
  26912. characterMakers.push(() => makeCharacter(
  26913. { name: "Nemoskii", species: ["skunk"], tags: ["anthro"] },
  26914. {
  26915. front: {
  26916. height: math.unit(6 + 7 / 12, "feet"),
  26917. weight: math.unit(250, "lb"),
  26918. name: "Front",
  26919. image: {
  26920. source: "./media/characters/nemoskii/front.svg",
  26921. extra: 2270 / 1734,
  26922. bottom: 86 / 2354
  26923. }
  26924. },
  26925. back: {
  26926. height: math.unit(6 + 7 / 12, "feet"),
  26927. weight: math.unit(250, "lb"),
  26928. name: "Back",
  26929. image: {
  26930. source: "./media/characters/nemoskii/back.svg",
  26931. extra: 1845 / 1788,
  26932. bottom: 10.5 / 1852
  26933. }
  26934. },
  26935. head: {
  26936. height: math.unit(1.31, "feet"),
  26937. name: "Head",
  26938. image: {
  26939. source: "./media/characters/nemoskii/head.svg"
  26940. }
  26941. },
  26942. },
  26943. [
  26944. {
  26945. name: "Micro",
  26946. height: math.unit((6 + 7 / 12) * 0.1, "feet")
  26947. },
  26948. {
  26949. name: "Normal",
  26950. height: math.unit(6 + 7 / 12, "feet"),
  26951. default: true
  26952. },
  26953. {
  26954. name: "Macro",
  26955. height: math.unit((6 + 7 / 12) * 150, "feet")
  26956. },
  26957. {
  26958. name: "Macro+",
  26959. height: math.unit((6 + 7 / 12) * 500, "feet")
  26960. },
  26961. {
  26962. name: "Megamacro",
  26963. height: math.unit((6 + 7 / 12) * 100000, "feet")
  26964. },
  26965. ]
  26966. ))
  26967. characterMakers.push(() => makeCharacter(
  26968. { name: "Shui", species: ["dragon"], tags: ["anthro"] },
  26969. {
  26970. front: {
  26971. height: math.unit(1, "mile"),
  26972. weight: math.unit(265261.9, "lb"),
  26973. name: "Front",
  26974. image: {
  26975. source: "./media/characters/shui/front.svg",
  26976. extra: 1633 / 1564,
  26977. bottom: 91.5 / 1726
  26978. }
  26979. },
  26980. },
  26981. [
  26982. {
  26983. name: "Macro",
  26984. height: math.unit(1, "mile"),
  26985. default: true
  26986. },
  26987. ]
  26988. ))
  26989. characterMakers.push(() => makeCharacter(
  26990. { name: "Arokh Takakura", species: ["dragon"], tags: ["anthro"] },
  26991. {
  26992. front: {
  26993. height: math.unit(12 + 6 / 12, "feet"),
  26994. weight: math.unit(1342, "lb"),
  26995. name: "Front",
  26996. image: {
  26997. source: "./media/characters/arokh-takakura/front.svg",
  26998. extra: 1089 / 1043,
  26999. bottom: 77.4 / 1176.7
  27000. }
  27001. },
  27002. back: {
  27003. height: math.unit(12 + 6 / 12, "feet"),
  27004. weight: math.unit(1342, "lb"),
  27005. name: "Back",
  27006. image: {
  27007. source: "./media/characters/arokh-takakura/back.svg",
  27008. extra: 1046 / 1019,
  27009. bottom: 102 / 1150
  27010. }
  27011. },
  27012. },
  27013. [
  27014. {
  27015. name: "Big",
  27016. height: math.unit(12 + 6 / 12, "feet"),
  27017. default: true
  27018. },
  27019. ]
  27020. ))
  27021. characterMakers.push(() => makeCharacter(
  27022. { name: "Theo", species: ["cat"], tags: ["anthro"] },
  27023. {
  27024. front: {
  27025. height: math.unit(5 + 6 / 12, "feet"),
  27026. weight: math.unit(150, "lb"),
  27027. name: "Front",
  27028. image: {
  27029. source: "./media/characters/theo/front.svg",
  27030. extra: 1184 / 1131,
  27031. bottom: 7.4 / 1191
  27032. }
  27033. },
  27034. },
  27035. [
  27036. {
  27037. name: "Micro",
  27038. height: math.unit(5, "inches")
  27039. },
  27040. {
  27041. name: "Normal",
  27042. height: math.unit(5 + 6 / 12, "feet"),
  27043. default: true
  27044. },
  27045. ]
  27046. ))
  27047. characterMakers.push(() => makeCharacter(
  27048. { name: "Cecelia Swift", species: ["otter"], tags: ["anthro"] },
  27049. {
  27050. front: {
  27051. height: math.unit(5 + 9 / 12, "feet"),
  27052. weight: math.unit(130, "lb"),
  27053. name: "Front",
  27054. image: {
  27055. source: "./media/characters/cecelia-swift/front.svg",
  27056. extra: 502 / 484,
  27057. bottom: 23 / 523
  27058. }
  27059. },
  27060. back: {
  27061. height: math.unit(5 + 9 / 12, "feet"),
  27062. weight: math.unit(130, "lb"),
  27063. name: "Back",
  27064. image: {
  27065. source: "./media/characters/cecelia-swift/back.svg",
  27066. extra: 499 / 485,
  27067. bottom: 12 / 511
  27068. }
  27069. },
  27070. head: {
  27071. height: math.unit(0.90, "feet"),
  27072. name: "Head",
  27073. image: {
  27074. source: "./media/characters/cecelia-swift/head.svg"
  27075. }
  27076. },
  27077. rump: {
  27078. height: math.unit(1.75, "feet"),
  27079. name: "Rump",
  27080. image: {
  27081. source: "./media/characters/cecelia-swift/rump.svg"
  27082. }
  27083. },
  27084. },
  27085. [
  27086. {
  27087. name: "Normal",
  27088. height: math.unit(5 + 9 / 12, "feet"),
  27089. default: true
  27090. },
  27091. {
  27092. name: "Big",
  27093. height: math.unit(50, "feet")
  27094. },
  27095. {
  27096. name: "Macro",
  27097. height: math.unit(100, "feet")
  27098. },
  27099. {
  27100. name: "Macro+",
  27101. height: math.unit(500, "feet")
  27102. },
  27103. {
  27104. name: "Macro++",
  27105. height: math.unit(1000, "feet")
  27106. },
  27107. ]
  27108. ))
  27109. characterMakers.push(() => makeCharacter(
  27110. { name: "Kaunan", species: ["dragon"], tags: ["anthro"] },
  27111. {
  27112. front: {
  27113. height: math.unit(6, "feet"),
  27114. weight: math.unit(150, "lb"),
  27115. name: "Front",
  27116. image: {
  27117. source: "./media/characters/kaunan/front.svg",
  27118. extra: 2890 / 2523,
  27119. bottom: 49 / 2939
  27120. }
  27121. },
  27122. },
  27123. [
  27124. {
  27125. name: "Macro",
  27126. height: math.unit(150, "feet"),
  27127. default: true
  27128. },
  27129. ]
  27130. ))
  27131. characterMakers.push(() => makeCharacter(
  27132. { name: "Fei", species: ["fox"], tags: ["anthro"] },
  27133. {
  27134. front: {
  27135. height: math.unit(175, "cm"),
  27136. weight: math.unit(60, "kg"),
  27137. name: "Front",
  27138. image: {
  27139. source: "./media/characters/fei/front.svg",
  27140. extra: 2581 / 2400,
  27141. bottom: 82.2 / 2663
  27142. }
  27143. },
  27144. },
  27145. [
  27146. {
  27147. name: "Mortal",
  27148. height: math.unit(175, "cm")
  27149. },
  27150. {
  27151. name: "Normal",
  27152. height: math.unit(3500, "m"),
  27153. default: true
  27154. },
  27155. {
  27156. name: "Stroll",
  27157. height: math.unit(17.5, "km")
  27158. },
  27159. {
  27160. name: "Showoff",
  27161. height: math.unit(175, "km")
  27162. },
  27163. ]
  27164. ))
  27165. characterMakers.push(() => makeCharacter(
  27166. { name: "Edrax", species: ["ferromorph"], tags: ["anthro"] },
  27167. {
  27168. front: {
  27169. height: math.unit(7, "feet"),
  27170. weight: math.unit(1000, "kg"),
  27171. name: "Front",
  27172. image: {
  27173. source: "./media/characters/edrax/front.svg",
  27174. extra: 2838 / 2550,
  27175. bottom: 130 / 2968
  27176. }
  27177. },
  27178. },
  27179. [
  27180. {
  27181. name: "Small",
  27182. height: math.unit(7, "feet")
  27183. },
  27184. {
  27185. name: "Normal",
  27186. height: math.unit(1500, "meters")
  27187. },
  27188. {
  27189. name: "Mega",
  27190. height: math.unit(12000000, "km"),
  27191. default: true
  27192. },
  27193. {
  27194. name: "Megamacro",
  27195. height: math.unit(10600000, "lightyears")
  27196. },
  27197. {
  27198. name: "Hypermacro",
  27199. height: math.unit(256, "yottameters")
  27200. },
  27201. ]
  27202. ))
  27203. characterMakers.push(() => makeCharacter(
  27204. { name: "Clove", species: ["rabbit"], tags: ["anthro"] },
  27205. {
  27206. front: {
  27207. height: math.unit(10, "feet"),
  27208. weight: math.unit(750, "lb"),
  27209. name: "Front",
  27210. image: {
  27211. source: "./media/characters/clove/front.svg",
  27212. extra: 2031 / 1860,
  27213. bottom: 47.8 / 2080
  27214. }
  27215. },
  27216. back: {
  27217. height: math.unit(10, "feet"),
  27218. weight: math.unit(750, "lb"),
  27219. name: "Back",
  27220. image: {
  27221. source: "./media/characters/clove/back.svg",
  27222. extra: 2025 / 1859,
  27223. bottom: 46 / 2071
  27224. }
  27225. },
  27226. },
  27227. [
  27228. {
  27229. name: "Normal",
  27230. height: math.unit(10, "feet"),
  27231. default: true
  27232. },
  27233. ]
  27234. ))
  27235. characterMakers.push(() => makeCharacter(
  27236. { name: "Alex (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27237. {
  27238. front: {
  27239. height: math.unit(4, "feet"),
  27240. weight: math.unit(50, "lb"),
  27241. name: "Front",
  27242. image: {
  27243. source: "./media/characters/alex-rabbit/front.svg",
  27244. extra: 507 / 458,
  27245. bottom: 18.5 / 527
  27246. }
  27247. },
  27248. back: {
  27249. height: math.unit(4, "feet"),
  27250. weight: math.unit(50, "lb"),
  27251. name: "Back",
  27252. image: {
  27253. source: "./media/characters/alex-rabbit/back.svg",
  27254. extra: 502 / 460,
  27255. bottom: 18.9 / 521
  27256. }
  27257. },
  27258. },
  27259. [
  27260. {
  27261. name: "Normal",
  27262. height: math.unit(4, "feet"),
  27263. default: true
  27264. },
  27265. ]
  27266. ))
  27267. characterMakers.push(() => makeCharacter(
  27268. { name: "Zander Rose", species: ["meowth"], tags: ["anthro"] },
  27269. {
  27270. front: {
  27271. height: math.unit(1 + 3 / 12, "feet"),
  27272. weight: math.unit(80, "lb"),
  27273. name: "Front",
  27274. image: {
  27275. source: "./media/characters/zander-rose/front.svg",
  27276. extra: 916 / 797,
  27277. bottom: 17 / 933
  27278. }
  27279. },
  27280. back: {
  27281. height: math.unit(1 + 3 / 12, "feet"),
  27282. weight: math.unit(80, "lb"),
  27283. name: "Back",
  27284. image: {
  27285. source: "./media/characters/zander-rose/back.svg",
  27286. extra: 903 / 779,
  27287. bottom: 31 / 934
  27288. }
  27289. },
  27290. },
  27291. [
  27292. {
  27293. name: "Normal",
  27294. height: math.unit(1 + 3 / 12, "feet"),
  27295. default: true
  27296. },
  27297. ]
  27298. ))
  27299. characterMakers.push(() => makeCharacter(
  27300. { name: "Razz", species: ["pavodragon"], tags: ["anthro", "feral"] },
  27301. {
  27302. anthro: {
  27303. height: math.unit(6, "feet"),
  27304. weight: math.unit(150, "lb"),
  27305. name: "Anthro",
  27306. image: {
  27307. source: "./media/characters/razz/anthro.svg",
  27308. extra: 1437 / 1343,
  27309. bottom: 48 / 1485
  27310. }
  27311. },
  27312. feral: {
  27313. height: math.unit(6, "feet"),
  27314. weight: math.unit(150, "lb"),
  27315. name: "Feral",
  27316. image: {
  27317. source: "./media/characters/razz/feral.svg",
  27318. extra: 2569 / 1385,
  27319. bottom: 95 / 2664
  27320. }
  27321. },
  27322. },
  27323. [
  27324. {
  27325. name: "Normal",
  27326. height: math.unit(6, "feet"),
  27327. default: true
  27328. },
  27329. ]
  27330. ))
  27331. characterMakers.push(() => makeCharacter(
  27332. { name: "Morrigan", species: ["shark"], tags: ["anthro"] },
  27333. {
  27334. front: {
  27335. height: math.unit(9 + 4 / 12, "feet"),
  27336. weight: math.unit(500, "lb"),
  27337. name: "Front",
  27338. image: {
  27339. source: "./media/characters/morrigan/front.svg",
  27340. extra: 2707 / 2579,
  27341. bottom: 156 / 2863
  27342. }
  27343. },
  27344. },
  27345. [
  27346. {
  27347. name: "Normal",
  27348. height: math.unit(9 + 4 / 12, "feet"),
  27349. default: true
  27350. },
  27351. ]
  27352. ))
  27353. characterMakers.push(() => makeCharacter(
  27354. { name: "Jenene", species: ["wolf"], tags: ["anthro"] },
  27355. {
  27356. front: {
  27357. height: math.unit(5, "stories"),
  27358. weight: math.unit(4000, "lb"),
  27359. name: "Front",
  27360. image: {
  27361. source: "./media/characters/jenene/front.svg",
  27362. extra: 1780 / 1710,
  27363. bottom: 57 / 1837
  27364. }
  27365. },
  27366. },
  27367. [
  27368. {
  27369. name: "Normal",
  27370. height: math.unit(5, "stories"),
  27371. default: true
  27372. },
  27373. ]
  27374. ))
  27375. characterMakers.push(() => makeCharacter(
  27376. { name: "Vix Archaser", species: ["fox"], tags: ["anthro"] },
  27377. {
  27378. front: {
  27379. height: math.unit(6, "feet"),
  27380. weight: math.unit(150, "lb"),
  27381. name: "Front",
  27382. image: {
  27383. source: "./media/characters/vix-archaser/front.svg",
  27384. extra: 2767 / 2562,
  27385. bottom: 36 / 2803
  27386. }
  27387. },
  27388. },
  27389. [
  27390. {
  27391. name: "Micro",
  27392. height: math.unit(1, "foot")
  27393. },
  27394. {
  27395. name: "Normal",
  27396. height: math.unit(6 + 5 / 12, "feet")
  27397. },
  27398. {
  27399. name: "Minimacro",
  27400. height: math.unit(500, "feet")
  27401. },
  27402. {
  27403. name: "Macro",
  27404. height: math.unit(4, "miles")
  27405. },
  27406. {
  27407. name: "Megamacro",
  27408. height: math.unit(250, "miles"),
  27409. default: true
  27410. },
  27411. {
  27412. name: "Gigamacro",
  27413. height: math.unit(1, "universe")
  27414. },
  27415. {
  27416. name: "Endgame",
  27417. height: math.unit(100, "multiverses")
  27418. }
  27419. ]
  27420. ))
  27421. characterMakers.push(() => makeCharacter(
  27422. { name: "Faey", species: ["aaltranae"], tags: ["taur"] },
  27423. {
  27424. taurSfw: {
  27425. height: math.unit(10, "meters"),
  27426. weight: math.unit(17500, "kg"),
  27427. name: "Taur",
  27428. image: {
  27429. source: "./media/characters/faey/taur-sfw.svg",
  27430. extra: 1200 / 968,
  27431. bottom: 41 / 1241
  27432. }
  27433. },
  27434. chestmaw: {
  27435. height: math.unit(2.01, "meters"),
  27436. name: "Chestmaw",
  27437. image: {
  27438. source: "./media/characters/faey/chestmaw.svg"
  27439. }
  27440. },
  27441. foot: {
  27442. height: math.unit(2.43, "meters"),
  27443. name: "Foot",
  27444. image: {
  27445. source: "./media/characters/faey/foot.svg"
  27446. }
  27447. },
  27448. jaws: {
  27449. height: math.unit(1.66, "meters"),
  27450. name: "Jaws",
  27451. image: {
  27452. source: "./media/characters/faey/jaws.svg"
  27453. }
  27454. },
  27455. tongues: {
  27456. height: math.unit(2.01, "meters"),
  27457. name: "Tongues",
  27458. image: {
  27459. source: "./media/characters/faey/tongues.svg"
  27460. }
  27461. },
  27462. },
  27463. [
  27464. {
  27465. name: "Small",
  27466. height: math.unit(10, "meters"),
  27467. default: true
  27468. },
  27469. {
  27470. name: "Big",
  27471. height: math.unit(500000, "km")
  27472. },
  27473. ]
  27474. ))
  27475. characterMakers.push(() => makeCharacter(
  27476. { name: "Roku", species: ["lion"], tags: ["anthro"] },
  27477. {
  27478. front: {
  27479. height: math.unit(7, "feet"),
  27480. weight: math.unit(275, "lb"),
  27481. name: "Front",
  27482. image: {
  27483. source: "./media/characters/roku/front.svg",
  27484. extra: 903 / 878,
  27485. bottom: 37 / 940
  27486. }
  27487. },
  27488. },
  27489. [
  27490. {
  27491. name: "Normal",
  27492. height: math.unit(7, "feet"),
  27493. default: true
  27494. },
  27495. {
  27496. name: "Macro",
  27497. height: math.unit(500, "feet")
  27498. },
  27499. {
  27500. name: "Megamacro",
  27501. height: math.unit(200, "miles")
  27502. },
  27503. ]
  27504. ))
  27505. characterMakers.push(() => makeCharacter(
  27506. { name: "Lira", species: ["kitsune"], tags: ["anthro"] },
  27507. {
  27508. front: {
  27509. height: math.unit(6 + 2 / 12, "feet"),
  27510. weight: math.unit(150, "lb"),
  27511. name: "Front",
  27512. image: {
  27513. source: "./media/characters/lira/front.svg",
  27514. extra: 1727 / 1605,
  27515. bottom: 26 / 1753
  27516. }
  27517. },
  27518. back: {
  27519. height: math.unit(6 + 2 / 12, "feet"),
  27520. weight: math.unit(150, "lb"),
  27521. name: "Back",
  27522. image: {
  27523. source: "./media/characters/lira/back.svg",
  27524. extra: 1713 / 159,
  27525. bottom: 20 / 1733
  27526. }
  27527. },
  27528. hand: {
  27529. height: math.unit(0.75, "feet"),
  27530. name: "Hand",
  27531. image: {
  27532. source: "./media/characters/lira/hand.svg"
  27533. }
  27534. },
  27535. maw: {
  27536. height: math.unit(0.65, "feet"),
  27537. name: "Maw",
  27538. image: {
  27539. source: "./media/characters/lira/maw.svg"
  27540. }
  27541. },
  27542. pawDigi: {
  27543. height: math.unit(1.6, "feet"),
  27544. name: "Paw Digi",
  27545. image: {
  27546. source: "./media/characters/lira/paw-digi.svg"
  27547. }
  27548. },
  27549. pawPlanti: {
  27550. height: math.unit(1.4, "feet"),
  27551. name: "Paw Planti",
  27552. image: {
  27553. source: "./media/characters/lira/paw-planti.svg"
  27554. }
  27555. },
  27556. },
  27557. [
  27558. {
  27559. name: "Normal",
  27560. height: math.unit(6 + 2 / 12, "feet"),
  27561. default: true
  27562. },
  27563. {
  27564. name: "Macro",
  27565. height: math.unit(100, "feet")
  27566. },
  27567. {
  27568. name: "Macro²",
  27569. height: math.unit(1600, "feet")
  27570. },
  27571. {
  27572. name: "Planetary",
  27573. height: math.unit(20, "earths")
  27574. },
  27575. ]
  27576. ))
  27577. characterMakers.push(() => makeCharacter(
  27578. { name: "Hadjet", species: ["cat"], tags: ["anthro"] },
  27579. {
  27580. front: {
  27581. height: math.unit(6, "feet"),
  27582. weight: math.unit(150, "lb"),
  27583. name: "Front",
  27584. image: {
  27585. source: "./media/characters/hadjet/front.svg",
  27586. extra: 1480 / 1346,
  27587. bottom: 26 / 1506
  27588. }
  27589. },
  27590. frontNsfw: {
  27591. height: math.unit(6, "feet"),
  27592. weight: math.unit(150, "lb"),
  27593. name: "Front (NSFW)",
  27594. image: {
  27595. source: "./media/characters/hadjet/front-nsfw.svg",
  27596. extra: 1440 / 1358,
  27597. bottom: 52 / 1492
  27598. }
  27599. },
  27600. },
  27601. [
  27602. {
  27603. name: "Macro",
  27604. height: math.unit(10, "stories"),
  27605. default: true
  27606. },
  27607. {
  27608. name: "Megamacro",
  27609. height: math.unit(1.5, "miles")
  27610. },
  27611. {
  27612. name: "Megamacro+",
  27613. height: math.unit(5, "miles")
  27614. },
  27615. ]
  27616. ))
  27617. characterMakers.push(() => makeCharacter(
  27618. { name: "Kodran", species: ["dragon", "machine"], tags: ["feral"] },
  27619. {
  27620. side: {
  27621. height: math.unit(106, "feet"),
  27622. weight: math.unit(500, "tonnes"),
  27623. name: "Side",
  27624. image: {
  27625. source: "./media/characters/kodran/side.svg",
  27626. extra: 553 / 480,
  27627. bottom: 33 / 586
  27628. }
  27629. },
  27630. front: {
  27631. height: math.unit(132, "feet"),
  27632. weight: math.unit(500, "tonnes"),
  27633. name: "Front",
  27634. image: {
  27635. source: "./media/characters/kodran/front.svg",
  27636. extra: 667 / 643,
  27637. bottom: 42 / 709
  27638. }
  27639. },
  27640. flying: {
  27641. height: math.unit(350, "feet"),
  27642. weight: math.unit(500, "tonnes"),
  27643. name: "Flying",
  27644. image: {
  27645. source: "./media/characters/kodran/flying.svg"
  27646. }
  27647. },
  27648. foot: {
  27649. height: math.unit(33, "feet"),
  27650. name: "Foot",
  27651. image: {
  27652. source: "./media/characters/kodran/foot.svg"
  27653. }
  27654. },
  27655. footFront: {
  27656. height: math.unit(19, "feet"),
  27657. name: "Foot (Front)",
  27658. image: {
  27659. source: "./media/characters/kodran/foot-front.svg",
  27660. extra: 261 / 261,
  27661. bottom: 91 / 352
  27662. }
  27663. },
  27664. headFront: {
  27665. height: math.unit(53, "feet"),
  27666. name: "Head (Front)",
  27667. image: {
  27668. source: "./media/characters/kodran/head-front.svg"
  27669. }
  27670. },
  27671. headSide: {
  27672. height: math.unit(65, "feet"),
  27673. name: "Head (Side)",
  27674. image: {
  27675. source: "./media/characters/kodran/head-side.svg"
  27676. }
  27677. },
  27678. throat: {
  27679. height: math.unit(79, "feet"),
  27680. name: "Throat",
  27681. image: {
  27682. source: "./media/characters/kodran/throat.svg"
  27683. }
  27684. },
  27685. },
  27686. [
  27687. {
  27688. name: "Large",
  27689. height: math.unit(106, "feet"),
  27690. default: true
  27691. },
  27692. ]
  27693. ))
  27694. characterMakers.push(() => makeCharacter(
  27695. { name: "Pyxaron", species: ["draptor"], tags: ["feral"] },
  27696. {
  27697. side: {
  27698. height: math.unit(11, "feet"),
  27699. weight: math.unit(150, "lb"),
  27700. name: "Side",
  27701. image: {
  27702. source: "./media/characters/pyxaron/side.svg",
  27703. extra: 305 / 195,
  27704. bottom: 17 / 322
  27705. }
  27706. },
  27707. },
  27708. [
  27709. {
  27710. name: "Normal",
  27711. height: math.unit(11, "feet"),
  27712. default: true
  27713. },
  27714. ]
  27715. ))
  27716. characterMakers.push(() => makeCharacter(
  27717. { name: "Meep", species: ["candy", "salamander"], tags: ["anthro"] },
  27718. {
  27719. front: {
  27720. height: math.unit(6, "feet"),
  27721. weight: math.unit(150, "lb"),
  27722. name: "Front",
  27723. image: {
  27724. source: "./media/characters/meep/front.svg",
  27725. extra: 88 / 80,
  27726. bottom: 6 / 94
  27727. }
  27728. },
  27729. },
  27730. [
  27731. {
  27732. name: "Fun Sized",
  27733. height: math.unit(2, "inches"),
  27734. default: true
  27735. },
  27736. {
  27737. name: "Friend Sized",
  27738. height: math.unit(8, "inches")
  27739. },
  27740. ]
  27741. ))
  27742. characterMakers.push(() => makeCharacter(
  27743. { name: "Holly (Rabbit)", species: ["rabbit"], tags: ["anthro"] },
  27744. {
  27745. front: {
  27746. height: math.unit(15, "feet"),
  27747. weight: math.unit(2500, "lb"),
  27748. name: "Front",
  27749. image: {
  27750. source: "./media/characters/holly-rabbit/front.svg",
  27751. extra: 1433 / 1233,
  27752. bottom: 125 / 1558
  27753. }
  27754. },
  27755. dick: {
  27756. height: math.unit(4.6, "feet"),
  27757. name: "Dick",
  27758. image: {
  27759. source: "./media/characters/holly-rabbit/dick.svg"
  27760. }
  27761. },
  27762. },
  27763. [
  27764. {
  27765. name: "Normal",
  27766. height: math.unit(15, "feet"),
  27767. default: true
  27768. },
  27769. {
  27770. name: "Macro",
  27771. height: math.unit(250, "feet")
  27772. },
  27773. {
  27774. name: "Macro+",
  27775. height: math.unit(2500, "feet")
  27776. },
  27777. ]
  27778. ))
  27779. characterMakers.push(() => makeCharacter(
  27780. { name: "Drena", species: ["drenath"], tags: ["anthro"] },
  27781. {
  27782. front: {
  27783. height: math.unit(3.02, "meters"),
  27784. weight: math.unit(500, "kg"),
  27785. name: "Front",
  27786. image: {
  27787. source: "./media/characters/drena/front.svg",
  27788. extra: 282 / 243,
  27789. bottom: 8 / 290
  27790. }
  27791. },
  27792. side: {
  27793. height: math.unit(3.02, "meters"),
  27794. weight: math.unit(500, "kg"),
  27795. name: "Side",
  27796. image: {
  27797. source: "./media/characters/drena/side.svg",
  27798. extra: 280 / 245,
  27799. bottom: 10 / 290
  27800. }
  27801. },
  27802. back: {
  27803. height: math.unit(3.02, "meters"),
  27804. weight: math.unit(500, "kg"),
  27805. name: "Back",
  27806. image: {
  27807. source: "./media/characters/drena/back.svg",
  27808. extra: 278 / 243,
  27809. bottom: 2 / 280
  27810. }
  27811. },
  27812. foot: {
  27813. height: math.unit(0.75, "meters"),
  27814. name: "Foot",
  27815. image: {
  27816. source: "./media/characters/drena/foot.svg"
  27817. }
  27818. },
  27819. maw: {
  27820. height: math.unit(0.82, "meters"),
  27821. name: "Maw",
  27822. image: {
  27823. source: "./media/characters/drena/maw.svg"
  27824. }
  27825. },
  27826. rump: {
  27827. height: math.unit(0.93, "meters"),
  27828. name: "Rump",
  27829. image: {
  27830. source: "./media/characters/drena/rump.svg"
  27831. }
  27832. },
  27833. },
  27834. [
  27835. {
  27836. name: "Normal",
  27837. height: math.unit(3.02, "meters"),
  27838. default: true
  27839. },
  27840. ]
  27841. ))
  27842. characterMakers.push(() => makeCharacter(
  27843. { name: "Remmyzilla", species: ["coyju"], tags: ["anthro"] },
  27844. {
  27845. front: {
  27846. height: math.unit(6 + 4 / 12, "feet"),
  27847. weight: math.unit(250, "lb"),
  27848. name: "Front",
  27849. image: {
  27850. source: "./media/characters/remmyzilla/front.svg",
  27851. extra: 4033 / 3588,
  27852. bottom: 123 / 4156
  27853. }
  27854. },
  27855. back: {
  27856. height: math.unit(6 + 4 / 12, "feet"),
  27857. weight: math.unit(250, "lb"),
  27858. name: "Back",
  27859. image: {
  27860. source: "./media/characters/remmyzilla/back.svg",
  27861. extra: 2687 / 2555,
  27862. bottom: 48 / 2735
  27863. }
  27864. },
  27865. frontFancy: {
  27866. height: math.unit(6 + 4 / 12, "feet"),
  27867. weight: math.unit(250, "lb"),
  27868. name: "Front (Fancy)",
  27869. image: {
  27870. source: "./media/characters/remmyzilla/front-fancy.svg",
  27871. extra: 4119 / 3419,
  27872. bottom: 237 / 4356
  27873. }
  27874. },
  27875. paw: {
  27876. height: math.unit(1.73, "feet"),
  27877. name: "Paw",
  27878. image: {
  27879. source: "./media/characters/remmyzilla/paw.svg"
  27880. }
  27881. },
  27882. maw: {
  27883. height: math.unit(1.73, "feet"),
  27884. name: "Maw",
  27885. image: {
  27886. source: "./media/characters/remmyzilla/maw.svg"
  27887. }
  27888. },
  27889. },
  27890. [
  27891. {
  27892. name: "Normal",
  27893. height: math.unit(6 + 4 / 12, "feet")
  27894. },
  27895. {
  27896. name: "Minimacro",
  27897. height: math.unit(12 + 8 / 12, "feet")
  27898. },
  27899. {
  27900. name: "Normal",
  27901. height: math.unit(640, "feet"),
  27902. default: true
  27903. },
  27904. {
  27905. name: "Megamacro",
  27906. height: math.unit(6400, "feet")
  27907. },
  27908. {
  27909. name: "Gigamacro",
  27910. height: math.unit(64000, "miles")
  27911. },
  27912. ]
  27913. ))
  27914. characterMakers.push(() => makeCharacter(
  27915. { name: "Lawrence", species: ["sergal"], tags: ["anthro"] },
  27916. {
  27917. front: {
  27918. height: math.unit(2.5, "meters"),
  27919. weight: math.unit(300, "lb"),
  27920. name: "Front",
  27921. image: {
  27922. source: "./media/characters/lawrence/front.svg",
  27923. extra: 357 / 335,
  27924. bottom: 30 / 387
  27925. }
  27926. },
  27927. back: {
  27928. height: math.unit(2.5, "meters"),
  27929. weight: math.unit(300, "lb"),
  27930. name: "Back",
  27931. image: {
  27932. source: "./media/characters/lawrence/back.svg",
  27933. extra: 357 / 338,
  27934. bottom: 16 / 373
  27935. }
  27936. },
  27937. head: {
  27938. height: math.unit(0.9, "meter"),
  27939. name: "Head",
  27940. image: {
  27941. source: "./media/characters/lawrence/head.svg"
  27942. }
  27943. },
  27944. maw: {
  27945. height: math.unit(0.7, "meter"),
  27946. name: "Maw",
  27947. image: {
  27948. source: "./media/characters/lawrence/maw.svg"
  27949. }
  27950. },
  27951. footBottom: {
  27952. height: math.unit(0.5, "meter"),
  27953. name: "Foot (Bottom)",
  27954. image: {
  27955. source: "./media/characters/lawrence/foot-bottom.svg"
  27956. }
  27957. },
  27958. footTop: {
  27959. height: math.unit(0.5, "meter"),
  27960. name: "Foot (Top)",
  27961. image: {
  27962. source: "./media/characters/lawrence/foot-top.svg"
  27963. }
  27964. },
  27965. },
  27966. [
  27967. {
  27968. name: "Normal",
  27969. height: math.unit(2.5, "meters"),
  27970. default: true
  27971. },
  27972. {
  27973. name: "Macro",
  27974. height: math.unit(95, "meters")
  27975. },
  27976. {
  27977. name: "Megamacro",
  27978. height: math.unit(150, "km")
  27979. },
  27980. ]
  27981. ))
  27982. characterMakers.push(() => makeCharacter(
  27983. { name: "Sydney", species: ["naga"], tags: ["naga"] },
  27984. {
  27985. front: {
  27986. height: math.unit(4.2, "meters"),
  27987. name: "Front",
  27988. image: {
  27989. source: "./media/characters/sydney/front.svg",
  27990. extra: 1323 / 1277,
  27991. bottom: 111 / 1434
  27992. }
  27993. },
  27994. },
  27995. [
  27996. {
  27997. name: "Normal",
  27998. height: math.unit(4.2, "meters"),
  27999. default: true
  28000. },
  28001. ]
  28002. ))
  28003. characterMakers.push(() => makeCharacter(
  28004. { name: "Jessica", species: ["maned-wolf"], tags: ["anthro"] },
  28005. {
  28006. back: {
  28007. height: math.unit(201, "feet"),
  28008. name: "Back",
  28009. image: {
  28010. source: "./media/characters/jessica/back.svg",
  28011. extra: 273 / 259,
  28012. bottom: 7 / 280
  28013. }
  28014. },
  28015. },
  28016. [
  28017. {
  28018. name: "Normal",
  28019. height: math.unit(201, "feet"),
  28020. default: true
  28021. },
  28022. {
  28023. name: "Megamacro",
  28024. height: math.unit(8, "miles")
  28025. },
  28026. ]
  28027. ))
  28028. characterMakers.push(() => makeCharacter(
  28029. { name: "Victoria", species: ["zorgoia"], tags: ["feral"] },
  28030. {
  28031. side: {
  28032. height: math.unit(320, "cm"),
  28033. name: "Side",
  28034. image: {
  28035. source: "./media/characters/victoria/side.svg",
  28036. extra: 778 / 346,
  28037. bottom: 56 / 834
  28038. }
  28039. },
  28040. maw: {
  28041. height: math.unit(5.9, "feet"),
  28042. name: "Maw",
  28043. image: {
  28044. source: "./media/characters/victoria/maw.svg"
  28045. }
  28046. },
  28047. },
  28048. [
  28049. {
  28050. name: "Normal",
  28051. height: math.unit(320, "cm"),
  28052. default: true
  28053. },
  28054. ]
  28055. ))
  28056. characterMakers.push(() => makeCharacter(
  28057. { name: "Cat", species: ["cat", "nickit", "lucario", "lopunny"], tags: ["anthro", "feral", "taur"] },
  28058. {
  28059. front: {
  28060. height: math.unit(5 + 6 / 12, "feet"),
  28061. name: "Front",
  28062. image: {
  28063. source: "./media/characters/cat/front.svg",
  28064. extra: 1374 / 1257,
  28065. bottom: 59 / 1433
  28066. }
  28067. },
  28068. back: {
  28069. height: math.unit(5 + 6 / 12, "feet"),
  28070. name: "Back",
  28071. image: {
  28072. source: "./media/characters/cat/back.svg",
  28073. extra: 1337 / 1226,
  28074. bottom: 34 / 1371
  28075. }
  28076. },
  28077. taur: {
  28078. height: math.unit(7, "feet"),
  28079. name: "Taur",
  28080. image: {
  28081. source: "./media/characters/cat/taur.svg",
  28082. extra: 1345 / 1231,
  28083. bottom: 66 / 1411
  28084. }
  28085. },
  28086. lucario: {
  28087. height: math.unit(4, "feet"),
  28088. name: "Lucario",
  28089. image: {
  28090. source: "./media/characters/cat/lucario.svg",
  28091. extra: 1470 / 1318,
  28092. bottom: 65 / 1535
  28093. }
  28094. },
  28095. megaLucario: {
  28096. height: math.unit(4, "feet"),
  28097. name: "Mega Lucario",
  28098. image: {
  28099. source: "./media/characters/cat/mega-lucario.svg",
  28100. extra: 1515 / 1319,
  28101. bottom: 63 / 1578
  28102. }
  28103. },
  28104. nickit: {
  28105. height: math.unit(2, "feet"),
  28106. name: "Nickit",
  28107. image: {
  28108. source: "./media/characters/cat/nickit.svg",
  28109. extra: 1980 / 1585,
  28110. bottom: 102 / 2082
  28111. }
  28112. },
  28113. lopunnyFront: {
  28114. height: math.unit(5, "feet"),
  28115. name: "Lopunny (Front)",
  28116. image: {
  28117. source: "./media/characters/cat/lopunny-front.svg",
  28118. extra: 1782 / 1469,
  28119. bottom: 38 / 1820
  28120. }
  28121. },
  28122. lopunnyBack: {
  28123. height: math.unit(5, "feet"),
  28124. name: "Lopunny (Back)",
  28125. image: {
  28126. source: "./media/characters/cat/lopunny-back.svg",
  28127. extra: 1660 / 1490,
  28128. bottom: 25 / 1685
  28129. }
  28130. },
  28131. },
  28132. [
  28133. {
  28134. name: "Really small",
  28135. height: math.unit(1, "nm")
  28136. },
  28137. {
  28138. name: "Micro",
  28139. height: math.unit(5, "inches")
  28140. },
  28141. {
  28142. name: "Normal",
  28143. height: math.unit(5 + 6 / 12, "feet"),
  28144. default: true
  28145. },
  28146. {
  28147. name: "Macro",
  28148. height: math.unit(50, "feet")
  28149. },
  28150. {
  28151. name: "Macro+",
  28152. height: math.unit(150, "feet")
  28153. },
  28154. {
  28155. name: "Megamacro",
  28156. height: math.unit(100, "miles")
  28157. },
  28158. ]
  28159. ))
  28160. characterMakers.push(() => makeCharacter(
  28161. { name: "Kirina Violet", species: ["korean-jindo-dog"], tags: ["anthro"] },
  28162. {
  28163. front: {
  28164. height: math.unit(63.4, "meters"),
  28165. weight: math.unit(3.28349e+6, "kilograms"),
  28166. name: "Front",
  28167. image: {
  28168. source: "./media/characters/kirina-violet/front.svg",
  28169. extra: 2812 / 2725,
  28170. bottom: 0 / 2812
  28171. }
  28172. },
  28173. back: {
  28174. height: math.unit(63.4, "meters"),
  28175. weight: math.unit(3.28349e+6, "kilograms"),
  28176. name: "Back",
  28177. image: {
  28178. source: "./media/characters/kirina-violet/back.svg",
  28179. extra: 2812 / 2725,
  28180. bottom: 0 / 2812
  28181. }
  28182. },
  28183. mouth: {
  28184. height: math.unit(4.35, "meters"),
  28185. name: "Mouth",
  28186. image: {
  28187. source: "./media/characters/kirina-violet/mouth.svg"
  28188. }
  28189. },
  28190. paw: {
  28191. height: math.unit(5.6, "meters"),
  28192. name: "Paw",
  28193. image: {
  28194. source: "./media/characters/kirina-violet/paw.svg"
  28195. }
  28196. },
  28197. tail: {
  28198. height: math.unit(18, "meters"),
  28199. name: "Tail",
  28200. image: {
  28201. source: "./media/characters/kirina-violet/tail.svg"
  28202. }
  28203. },
  28204. },
  28205. [
  28206. {
  28207. name: "Macro",
  28208. height: math.unit(63.4, "meters"),
  28209. default: true
  28210. },
  28211. ]
  28212. ))
  28213. characterMakers.push(() => makeCharacter(
  28214. { name: "Cat (Gigachu)", species: ["pikachu"], tags: ["anthro"] },
  28215. {
  28216. front: {
  28217. height: math.unit(60, "feet"),
  28218. name: "Front",
  28219. image: {
  28220. source: "./media/characters/cat-gigachu/front.svg",
  28221. extra: 1024 / 780,
  28222. bottom: 23 / 1047
  28223. }
  28224. },
  28225. back: {
  28226. height: math.unit(60, "feet"),
  28227. name: "Back",
  28228. image: {
  28229. source: "./media/characters/cat-gigachu/back.svg",
  28230. extra: 1024 / 780,
  28231. bottom: 23 / 1047
  28232. }
  28233. },
  28234. },
  28235. [
  28236. {
  28237. name: "Dynamax",
  28238. height: math.unit(60, "feet"),
  28239. default: true
  28240. },
  28241. ]
  28242. ))
  28243. characterMakers.push(() => makeCharacter(
  28244. { name: "Sfaiyan", species: ["jackal"], tags: ["anthro"] },
  28245. {
  28246. front: {
  28247. height: math.unit(6, "feet"),
  28248. weight: math.unit(150, "lb"),
  28249. name: "Front",
  28250. image: {
  28251. source: "./media/characters/sfaiyan/front.svg",
  28252. extra: 999 / 978,
  28253. bottom: 5 / 1004
  28254. }
  28255. },
  28256. },
  28257. [
  28258. {
  28259. name: "Normal",
  28260. height: math.unit(1.82, "meters")
  28261. },
  28262. {
  28263. name: "Giant",
  28264. height: math.unit(2.27, "km"),
  28265. default: true
  28266. },
  28267. ]
  28268. ))
  28269. characterMakers.push(() => makeCharacter(
  28270. { name: "Raunehkeli", species: ["monster"], tags: ["anthro"] },
  28271. {
  28272. front: {
  28273. height: math.unit(179, "cm"),
  28274. weight: math.unit(100, "kg"),
  28275. name: "Front",
  28276. image: {
  28277. source: "./media/characters/raunehkeli/front.svg",
  28278. extra: 1934 / 1926,
  28279. bottom: 0 / 1934
  28280. }
  28281. },
  28282. },
  28283. [
  28284. {
  28285. name: "Normal",
  28286. height: math.unit(179, "cm")
  28287. },
  28288. {
  28289. name: "Maximum",
  28290. height: math.unit(575, "meters"),
  28291. default: true
  28292. },
  28293. ]
  28294. ))
  28295. characterMakers.push(() => makeCharacter(
  28296. { name: "Beatrice \"The Behemoth\" Heathers", species: ["husky", "kaiju"], tags: ["anthro"] },
  28297. {
  28298. front: {
  28299. height: math.unit(6, "feet"),
  28300. weight: math.unit(150, "lb"),
  28301. name: "Front",
  28302. image: {
  28303. source: "./media/characters/beatrice-the-behemoth-heathers/front.svg",
  28304. extra: 2625 / 2518,
  28305. bottom: 60 / 2685
  28306. }
  28307. },
  28308. },
  28309. [
  28310. {
  28311. name: "Normal",
  28312. height: math.unit(6 + 2 / 12, "feet")
  28313. },
  28314. {
  28315. name: "Macro",
  28316. height: math.unit(1180, "feet"),
  28317. default: true
  28318. },
  28319. ]
  28320. ))
  28321. characterMakers.push(() => makeCharacter(
  28322. { name: "Lilith Zott", species: ["bat", "kaiju"], tags: ["anthro"] },
  28323. {
  28324. front: {
  28325. height: math.unit(5 + 6 / 12, "feet"),
  28326. weight: math.unit(108, "lb"),
  28327. name: "Front",
  28328. image: {
  28329. source: "./media/characters/lilith-zott/front.svg",
  28330. extra: 2510 / 2238,
  28331. bottom: 100 / 2610
  28332. }
  28333. },
  28334. frontDressed: {
  28335. height: math.unit(5 + 6 / 12, "feet"),
  28336. weight: math.unit(108, "lb"),
  28337. name: "Front (Dressed)",
  28338. image: {
  28339. source: "./media/characters/lilith-zott/front-dressed.svg",
  28340. extra: 2510 / 2238,
  28341. bottom: 100 / 2610
  28342. }
  28343. },
  28344. },
  28345. [
  28346. {
  28347. name: "Normal",
  28348. height: math.unit(5 + 6 / 12, "feet")
  28349. },
  28350. {
  28351. name: "Macro",
  28352. height: math.unit(1030, "feet"),
  28353. default: true
  28354. },
  28355. ]
  28356. ))
  28357. characterMakers.push(() => makeCharacter(
  28358. { name: "Holly \"The Mega Mousky\" Heathers", species: ["mouse", "husky", "kaiju"], tags: ["anthro"] },
  28359. {
  28360. front: {
  28361. height: math.unit(6, "feet"),
  28362. weight: math.unit(150, "lb"),
  28363. name: "Front",
  28364. image: {
  28365. source: "./media/characters/holly-the-mega-mousky-heathers/front.svg",
  28366. extra: 2567 / 2435,
  28367. bottom: 39 / 2606
  28368. }
  28369. },
  28370. frontSuper: {
  28371. height: math.unit(6, "feet"),
  28372. name: "Front (Super)",
  28373. image: {
  28374. source: "./media/characters/holly-the-mega-mousky-heathers/front-super.svg",
  28375. extra: 2567 / 2435,
  28376. bottom: 39 / 2606
  28377. }
  28378. },
  28379. },
  28380. [
  28381. {
  28382. name: "Normal",
  28383. height: math.unit(5 + 10 / 12, "feet")
  28384. },
  28385. {
  28386. name: "Macro",
  28387. height: math.unit(1100, "feet"),
  28388. default: true
  28389. },
  28390. ]
  28391. ))
  28392. characterMakers.push(() => makeCharacter(
  28393. { name: "Sona", species: ["dragon"], tags: ["anthro"] },
  28394. {
  28395. front: {
  28396. height: math.unit(100, "miles"),
  28397. name: "Front",
  28398. image: {
  28399. source: "./media/characters/sona/front.svg",
  28400. extra: 2433 / 2201,
  28401. bottom: 53 / 2486
  28402. }
  28403. },
  28404. foot: {
  28405. height: math.unit(16.1, "miles"),
  28406. name: "Foot",
  28407. image: {
  28408. source: "./media/characters/sona/foot.svg"
  28409. }
  28410. },
  28411. },
  28412. [
  28413. {
  28414. name: "Macro",
  28415. height: math.unit(100, "miles"),
  28416. default: true
  28417. },
  28418. ]
  28419. ))
  28420. characterMakers.push(() => makeCharacter(
  28421. { name: "Bailey", species: ["wolf"], tags: ["anthro"] },
  28422. {
  28423. front: {
  28424. height: math.unit(6, "feet"),
  28425. weight: math.unit(150, "lb"),
  28426. name: "Front",
  28427. image: {
  28428. source: "./media/characters/bailey/front.svg",
  28429. extra: 1778 / 1724,
  28430. bottom: 30 / 1808
  28431. }
  28432. },
  28433. },
  28434. [
  28435. {
  28436. name: "Micro",
  28437. height: math.unit(4, "inches")
  28438. },
  28439. {
  28440. name: "Normal",
  28441. height: math.unit(5 + 5 / 12, "feet"),
  28442. default: true
  28443. },
  28444. {
  28445. name: "Macro",
  28446. height: math.unit(250, "feet")
  28447. },
  28448. {
  28449. name: "Megamacro",
  28450. height: math.unit(100, "miles")
  28451. },
  28452. ]
  28453. ))
  28454. characterMakers.push(() => makeCharacter(
  28455. { name: "Snaps", species: ["cat"], tags: ["anthro"] },
  28456. {
  28457. front: {
  28458. height: math.unit(5 + 2 / 12, "feet"),
  28459. weight: math.unit(120, "lb"),
  28460. name: "Front",
  28461. image: {
  28462. source: "./media/characters/snaps/front.svg",
  28463. extra: 2370 / 2177,
  28464. bottom: 48 / 2418
  28465. }
  28466. },
  28467. back: {
  28468. height: math.unit(5 + 2 / 12, "feet"),
  28469. weight: math.unit(120, "lb"),
  28470. name: "Back",
  28471. image: {
  28472. source: "./media/characters/snaps/back.svg",
  28473. extra: 2408 / 2258,
  28474. bottom: 15 / 2423
  28475. }
  28476. },
  28477. },
  28478. [
  28479. {
  28480. name: "Micro",
  28481. height: math.unit(9, "inches")
  28482. },
  28483. {
  28484. name: "Normal",
  28485. height: math.unit(5 + 2 / 12, "feet"),
  28486. default: true
  28487. },
  28488. {
  28489. name: "Mini Macro",
  28490. height: math.unit(10, "feet")
  28491. },
  28492. ]
  28493. ))
  28494. characterMakers.push(() => makeCharacter(
  28495. { name: "Azteck", species: ["sergal"], tags: ["anthro"] },
  28496. {
  28497. front: {
  28498. height: math.unit(1.8, "meters"),
  28499. weight: math.unit(85, "kg"),
  28500. name: "Front",
  28501. image: {
  28502. source: "./media/characters/azteck/front.svg",
  28503. extra: 2815 / 2625,
  28504. bottom: 89 / 2904
  28505. }
  28506. },
  28507. back: {
  28508. height: math.unit(1.8, "meters"),
  28509. weight: math.unit(85, "kg"),
  28510. name: "Back",
  28511. image: {
  28512. source: "./media/characters/azteck/back.svg",
  28513. extra: 2856 / 2648,
  28514. bottom: 85 / 2941
  28515. }
  28516. },
  28517. frontDressed: {
  28518. height: math.unit(1.8, "meters"),
  28519. weight: math.unit(85, "kg"),
  28520. name: "Front (Dressed)",
  28521. image: {
  28522. source: "./media/characters/azteck/front-dressed.svg",
  28523. extra: 2147 / 2003,
  28524. bottom: 68 / 2215
  28525. }
  28526. },
  28527. head: {
  28528. height: math.unit(0.47, "meters"),
  28529. weight: math.unit(85, "kg"),
  28530. name: "Head",
  28531. image: {
  28532. source: "./media/characters/azteck/head.svg"
  28533. }
  28534. },
  28535. },
  28536. [
  28537. {
  28538. name: "Bite sized",
  28539. height: math.unit(16, "cm")
  28540. },
  28541. {
  28542. name: "Normal",
  28543. height: math.unit(1.8, "meters"),
  28544. default: true
  28545. },
  28546. ]
  28547. ))
  28548. characterMakers.push(() => makeCharacter(
  28549. { name: "Pidge", species: ["hellhound"], tags: ["anthro"] },
  28550. {
  28551. front: {
  28552. height: math.unit(6, "feet"),
  28553. weight: math.unit(150, "lb"),
  28554. name: "Front",
  28555. image: {
  28556. source: "./media/characters/pidge/front.svg",
  28557. extra: 620 / 588,
  28558. bottom: 9 / 629
  28559. }
  28560. },
  28561. back: {
  28562. height: math.unit(6, "feet"),
  28563. weight: math.unit(150, "lb"),
  28564. name: "Back",
  28565. image: {
  28566. source: "./media/characters/pidge/back.svg",
  28567. extra: 620 / 588,
  28568. bottom: 9 / 629
  28569. }
  28570. },
  28571. },
  28572. [
  28573. {
  28574. name: "Macro",
  28575. height: math.unit(1, "mile"),
  28576. default: true
  28577. },
  28578. ]
  28579. ))
  28580. characterMakers.push(() => makeCharacter(
  28581. { name: "En", species: ["maned-wolf", "undead"], tags: ["anthro"] },
  28582. {
  28583. front: {
  28584. height: math.unit(6, "feet"),
  28585. weight: math.unit(150, "lb"),
  28586. name: "Front",
  28587. image: {
  28588. source: "./media/characters/en/front.svg",
  28589. extra: 1697 / 1563,
  28590. bottom: 103 / 1800
  28591. }
  28592. },
  28593. back: {
  28594. height: math.unit(6, "feet"),
  28595. weight: math.unit(150, "lb"),
  28596. name: "Back",
  28597. image: {
  28598. source: "./media/characters/en/back.svg",
  28599. extra: 1700 / 1570,
  28600. bottom: 51 / 1751
  28601. }
  28602. },
  28603. frontDressed: {
  28604. height: math.unit(6, "feet"),
  28605. weight: math.unit(150, "lb"),
  28606. name: "Front (Dressed)",
  28607. image: {
  28608. source: "./media/characters/en/front-dressed.svg",
  28609. extra: 1697 / 1563,
  28610. bottom: 103 / 1800
  28611. }
  28612. },
  28613. backDressed: {
  28614. height: math.unit(6, "feet"),
  28615. weight: math.unit(150, "lb"),
  28616. name: "Back (Dressed)",
  28617. image: {
  28618. source: "./media/characters/en/back-dressed.svg",
  28619. extra: 1700 / 1570,
  28620. bottom: 51 / 1751
  28621. }
  28622. },
  28623. },
  28624. [
  28625. {
  28626. name: "Macro",
  28627. height: math.unit(210, "feet"),
  28628. default: true
  28629. },
  28630. ]
  28631. ))
  28632. characterMakers.push(() => makeCharacter(
  28633. { name: "Haze Orris", species: ["cat", "undead"], tags: ["anthro"] },
  28634. {
  28635. front: {
  28636. height: math.unit(6, "feet"),
  28637. weight: math.unit(150, "lb"),
  28638. name: "Front",
  28639. image: {
  28640. source: "./media/characters/haze-orris/front.svg",
  28641. extra: 3975 / 3525,
  28642. bottom: 137 / 4112
  28643. }
  28644. },
  28645. },
  28646. [
  28647. {
  28648. name: "Micro",
  28649. height: math.unit(150, "mm"),
  28650. default: true
  28651. },
  28652. ]
  28653. ))
  28654. characterMakers.push(() => makeCharacter(
  28655. { name: "Casselene Yaro", species: ["fox"], tags: ["anthro"] },
  28656. {
  28657. front: {
  28658. height: math.unit(6, "feet"),
  28659. weight: math.unit(150, "lb"),
  28660. name: "Front",
  28661. image: {
  28662. source: "./media/characters/casselene-yaro/front.svg",
  28663. extra: 4721 / 4541,
  28664. bottom: 82 / 4803
  28665. }
  28666. },
  28667. back: {
  28668. height: math.unit(6, "feet"),
  28669. weight: math.unit(150, "lb"),
  28670. name: "Back",
  28671. image: {
  28672. source: "./media/characters/casselene-yaro/back.svg",
  28673. extra: 4569 / 4377,
  28674. bottom: 69 / 4638
  28675. }
  28676. },
  28677. frontDressed: {
  28678. height: math.unit(6, "feet"),
  28679. weight: math.unit(150, "lb"),
  28680. name: "Front-dressed",
  28681. image: {
  28682. source: "./media/characters/casselene-yaro/front-dressed.svg",
  28683. extra: 4721 / 4541,
  28684. bottom: 82 / 4803
  28685. }
  28686. },
  28687. },
  28688. [
  28689. {
  28690. name: "Macro",
  28691. height: math.unit(190, "feet"),
  28692. default: true
  28693. },
  28694. ]
  28695. ))
  28696. characterMakers.push(() => makeCharacter(
  28697. { name: "Myra Rue Delore", species: ["monster"], tags: ["anthro"] },
  28698. {
  28699. front: {
  28700. height: math.unit(6, "feet"),
  28701. weight: math.unit(150, "lb"),
  28702. name: "Front",
  28703. image: {
  28704. source: "./media/characters/myra-rue-delore/front.svg",
  28705. extra: 1340 / 1308,
  28706. bottom: 67 / 1407
  28707. }
  28708. },
  28709. back: {
  28710. height: math.unit(6, "feet"),
  28711. weight: math.unit(150, "lb"),
  28712. name: "Back",
  28713. image: {
  28714. source: "./media/characters/myra-rue-delore/back.svg",
  28715. extra: 1341 / 1310,
  28716. bottom: 40 / 1381
  28717. }
  28718. },
  28719. frontDressed: {
  28720. height: math.unit(6, "feet"),
  28721. weight: math.unit(150, "lb"),
  28722. name: "Front (Dressed)",
  28723. image: {
  28724. source: "./media/characters/myra-rue-delore/front-dressed.svg",
  28725. extra: 1340 / 1308,
  28726. bottom: 67 / 1407
  28727. }
  28728. },
  28729. },
  28730. [
  28731. {
  28732. name: "Macro",
  28733. height: math.unit(150, "feet"),
  28734. default: true
  28735. },
  28736. ]
  28737. ))
  28738. characterMakers.push(() => makeCharacter(
  28739. { name: "Fem!Plat", species: ["raven"], tags: ["anthro"] },
  28740. {
  28741. front: {
  28742. height: math.unit(10, "feet"),
  28743. weight: math.unit(15015, "lb"),
  28744. name: "Front",
  28745. image: {
  28746. source: "./media/characters/fem!plat/front.svg",
  28747. extra: 2799 / 2604,
  28748. bottom: 149 / 2948
  28749. }
  28750. },
  28751. },
  28752. [
  28753. {
  28754. name: "Normal",
  28755. height: math.unit(10, "feet"),
  28756. default: true
  28757. },
  28758. {
  28759. name: "Macro",
  28760. height: math.unit(100, "feet")
  28761. },
  28762. {
  28763. name: "Megamacro",
  28764. height: math.unit(1000, "feet")
  28765. },
  28766. ]
  28767. ))
  28768. characterMakers.push(() => makeCharacter(
  28769. { name: "Neapolitan Ananassa", species: ["gelato-bee"], tags: ["anthro"] },
  28770. {
  28771. front: {
  28772. height: math.unit(15 + 5 / 12, "feet"),
  28773. weight: math.unit(4600, "lb"),
  28774. name: "Front",
  28775. image: {
  28776. source: "./media/characters/neapolitan-ananassa/front.svg",
  28777. extra: 2903 / 2736,
  28778. bottom: 0 / 2903
  28779. }
  28780. },
  28781. side: {
  28782. height: math.unit(15 + 5 / 12, "feet"),
  28783. weight: math.unit(4600, "lb"),
  28784. name: "Side",
  28785. image: {
  28786. source: "./media/characters/neapolitan-ananassa/side.svg",
  28787. extra: 2925 / 2719,
  28788. bottom: 0 / 2925
  28789. }
  28790. },
  28791. back: {
  28792. height: math.unit(15 + 5 / 12, "feet"),
  28793. weight: math.unit(4600, "lb"),
  28794. name: "Back",
  28795. image: {
  28796. source: "./media/characters/neapolitan-ananassa/back.svg",
  28797. extra: 2903 / 2736,
  28798. bottom: 0 / 2903
  28799. }
  28800. },
  28801. },
  28802. [
  28803. {
  28804. name: "Normal",
  28805. height: math.unit(15 + 5 / 12, "feet"),
  28806. default: true
  28807. },
  28808. {
  28809. name: "Post-Millenium",
  28810. height: math.unit(35 + 5 / 12, "feet")
  28811. },
  28812. {
  28813. name: "Post-Era",
  28814. height: math.unit(450 + 5 / 12, "feet")
  28815. },
  28816. ]
  28817. ))
  28818. characterMakers.push(() => makeCharacter(
  28819. { name: "Pazuzu", species: ["demon"], tags: ["anthro"] },
  28820. {
  28821. front: {
  28822. height: math.unit(300, "meters"),
  28823. weight: math.unit(125000, "tonnes"),
  28824. name: "Front",
  28825. image: {
  28826. source: "./media/characters/pazuzu/front.svg",
  28827. extra: 877 / 794,
  28828. bottom: 47 / 924
  28829. }
  28830. },
  28831. },
  28832. [
  28833. {
  28834. name: "Macro",
  28835. height: math.unit(300, "meters"),
  28836. default: true
  28837. },
  28838. ]
  28839. ))
  28840. characterMakers.push(() => makeCharacter(
  28841. { name: "Aasha", species: ["whale", "seal"], tags: ["anthro"] },
  28842. {
  28843. side: {
  28844. height: math.unit(10 + 7 / 12, "feet"),
  28845. weight: math.unit(2.5, "tons"),
  28846. name: "Side",
  28847. image: {
  28848. source: "./media/characters/aasha/side.svg",
  28849. extra: 1345 / 1245,
  28850. bottom: 111 / 1456
  28851. }
  28852. },
  28853. back: {
  28854. height: math.unit(10 + 7 / 12, "feet"),
  28855. weight: math.unit(2.5, "tons"),
  28856. name: "Back",
  28857. image: {
  28858. source: "./media/characters/aasha/back.svg",
  28859. extra: 1133 / 1057,
  28860. bottom: 257 / 1390
  28861. }
  28862. },
  28863. },
  28864. [
  28865. {
  28866. name: "Normal",
  28867. height: math.unit(10 + 7 / 12, "feet"),
  28868. default: true
  28869. },
  28870. ]
  28871. ))
  28872. characterMakers.push(() => makeCharacter(
  28873. { name: "Nevan", species: ["gardevoir"], tags: ["anthro"] },
  28874. {
  28875. front: {
  28876. height: math.unit(6 + 3 / 12, "feet"),
  28877. name: "Front",
  28878. image: {
  28879. source: "./media/characters/nevan/front.svg",
  28880. extra: 704 / 704,
  28881. bottom: 28 / 732
  28882. }
  28883. },
  28884. back: {
  28885. height: math.unit(6 + 3 / 12, "feet"),
  28886. name: "Back",
  28887. image: {
  28888. source: "./media/characters/nevan/back.svg",
  28889. extra: 714 / 714,
  28890. bottom: 21 / 735
  28891. }
  28892. },
  28893. frontFlaccid: {
  28894. height: math.unit(6 + 3 / 12, "feet"),
  28895. name: "Front (Flaccid)",
  28896. image: {
  28897. source: "./media/characters/nevan/front-flaccid.svg",
  28898. extra: 704 / 704,
  28899. bottom: 28 / 732
  28900. }
  28901. },
  28902. frontErect: {
  28903. height: math.unit(6 + 3 / 12, "feet"),
  28904. name: "Front (Erect)",
  28905. image: {
  28906. source: "./media/characters/nevan/front-erect.svg",
  28907. extra: 704 / 704,
  28908. bottom: 28 / 732
  28909. }
  28910. },
  28911. backFlaccid: {
  28912. height: math.unit(6 + 3 / 12, "feet"),
  28913. name: "Back (Flaccid)",
  28914. image: {
  28915. source: "./media/characters/nevan/back-flaccid.svg",
  28916. extra: 714 / 714,
  28917. bottom: 21 / 735
  28918. }
  28919. },
  28920. },
  28921. [
  28922. {
  28923. name: "Normal",
  28924. height: math.unit(6 + 3 / 12, "feet"),
  28925. default: true
  28926. },
  28927. ]
  28928. ))
  28929. characterMakers.push(() => makeCharacter(
  28930. { name: "Arhan", species: ["kobold"], tags: ["anthro"] },
  28931. {
  28932. front: {
  28933. height: math.unit(4, "feet"),
  28934. name: "Front",
  28935. image: {
  28936. source: "./media/characters/arhan/front.svg",
  28937. extra: 3368 / 3133,
  28938. bottom: 0 / 3368
  28939. }
  28940. },
  28941. side: {
  28942. height: math.unit(4, "feet"),
  28943. name: "Side",
  28944. image: {
  28945. source: "./media/characters/arhan/side.svg",
  28946. extra: 3347 / 3105,
  28947. bottom: 0 / 3347
  28948. }
  28949. },
  28950. tongue: {
  28951. height: math.unit(1.42, "feet"),
  28952. name: "Tongue",
  28953. image: {
  28954. source: "./media/characters/arhan/tongue.svg"
  28955. }
  28956. },
  28957. head: {
  28958. height: math.unit(0.85, "feet"),
  28959. name: "Head",
  28960. image: {
  28961. source: "./media/characters/arhan/head.svg"
  28962. }
  28963. },
  28964. },
  28965. [
  28966. {
  28967. name: "Normal",
  28968. height: math.unit(4, "feet"),
  28969. default: true
  28970. },
  28971. ]
  28972. ))
  28973. characterMakers.push(() => makeCharacter(
  28974. { name: "DigiDuncan", species: ["human"], tags: ["anthro"] },
  28975. {
  28976. front: {
  28977. height: math.unit(5 + 7.5 / 12, "feet"),
  28978. weight: math.unit(120, "lb"),
  28979. name: "Front",
  28980. image: {
  28981. source: "./media/characters/digi-duncan/front.svg",
  28982. extra: 330 / 326,
  28983. bottom: 16 / 346
  28984. }
  28985. },
  28986. side: {
  28987. height: math.unit(5 + 7.5 / 12, "feet"),
  28988. weight: math.unit(120, "lb"),
  28989. name: "Side",
  28990. image: {
  28991. source: "./media/characters/digi-duncan/side.svg",
  28992. extra: 341 / 337,
  28993. bottom: 1 / 342
  28994. }
  28995. },
  28996. back: {
  28997. height: math.unit(5 + 7.5 / 12, "feet"),
  28998. weight: math.unit(120, "lb"),
  28999. name: "Back",
  29000. image: {
  29001. source: "./media/characters/digi-duncan/back.svg",
  29002. extra: 330 / 326,
  29003. bottom: 12 / 342
  29004. }
  29005. },
  29006. },
  29007. [
  29008. {
  29009. name: "Speck",
  29010. height: math.unit(0.25, "mm")
  29011. },
  29012. {
  29013. name: "Micro",
  29014. height: math.unit(5, "mm")
  29015. },
  29016. {
  29017. name: "Tiny",
  29018. height: math.unit(0.5, "inches"),
  29019. default: true
  29020. },
  29021. {
  29022. name: "Human",
  29023. height: math.unit(5 + 7.5 / 12, "feet")
  29024. },
  29025. {
  29026. name: "Minigiant",
  29027. height: math.unit(8 + 5.25, "feet")
  29028. },
  29029. {
  29030. name: "Giant",
  29031. height: math.unit(2000, "feet")
  29032. },
  29033. {
  29034. name: "Mega",
  29035. height: math.unit(371.1, "miles")
  29036. },
  29037. ]
  29038. ))
  29039. characterMakers.push(() => makeCharacter(
  29040. { name: "Jagaz Soulbreaker", species: ["charr"], tags: ["anthro"] },
  29041. {
  29042. front: {
  29043. height: math.unit(2, "meters"),
  29044. weight: math.unit(350, "kg"),
  29045. name: "Front",
  29046. image: {
  29047. source: "./media/characters/jagaz-soulbreaker/front.svg",
  29048. extra: 898 / 838,
  29049. bottom: 9 / 907
  29050. }
  29051. },
  29052. },
  29053. [
  29054. {
  29055. name: "Micro",
  29056. height: math.unit(8, "meters")
  29057. },
  29058. {
  29059. name: "Normal",
  29060. height: math.unit(50, "meters"),
  29061. default: true
  29062. },
  29063. {
  29064. name: "Macro",
  29065. height: math.unit(500, "meters")
  29066. },
  29067. ]
  29068. ))
  29069. characterMakers.push(() => makeCharacter(
  29070. { name: "Khardesh", species: ["dragon"], tags: ["anthro"] },
  29071. {
  29072. front: {
  29073. height: math.unit(6 + 6 / 12, "feet"),
  29074. name: "Front",
  29075. image: {
  29076. source: "./media/characters/khardesh/front.svg",
  29077. extra: 888 / 797,
  29078. bottom: 25 / 913
  29079. }
  29080. },
  29081. },
  29082. [
  29083. {
  29084. name: "Normal",
  29085. height: math.unit(6 + 6 / 12, "feet"),
  29086. default: true
  29087. },
  29088. {
  29089. name: "Normal+",
  29090. height: math.unit(4, "meters")
  29091. },
  29092. {
  29093. name: "Macro",
  29094. height: math.unit(50, "meters")
  29095. },
  29096. {
  29097. name: "Macro+",
  29098. height: math.unit(100, "meters")
  29099. },
  29100. {
  29101. name: "Megamacro",
  29102. height: math.unit(20, "km")
  29103. },
  29104. ]
  29105. ))
  29106. characterMakers.push(() => makeCharacter(
  29107. { name: "Kosho", species: ["kirin"], tags: ["anthro"] },
  29108. {
  29109. front: {
  29110. height: math.unit(6, "feet"),
  29111. weight: math.unit(150, "lb"),
  29112. name: "Front",
  29113. image: {
  29114. source: "./media/characters/kosho/front.svg",
  29115. extra: 1847 / 1847,
  29116. bottom: 86 / 1933
  29117. }
  29118. },
  29119. },
  29120. [
  29121. {
  29122. name: "Second-stage micro",
  29123. height: math.unit(0.5, "inches")
  29124. },
  29125. {
  29126. name: "First-stage micro",
  29127. height: math.unit(6, "inches")
  29128. },
  29129. {
  29130. name: "Normal",
  29131. height: math.unit(6, "feet"),
  29132. default: true
  29133. },
  29134. {
  29135. name: "First-stage macro",
  29136. height: math.unit(72, "feet")
  29137. },
  29138. {
  29139. name: "Second-stage macro",
  29140. height: math.unit(864, "feet")
  29141. },
  29142. ]
  29143. ))
  29144. characterMakers.push(() => makeCharacter(
  29145. { name: "Hydra", species: ["frog"], tags: ["anthro"] },
  29146. {
  29147. normal: {
  29148. height: math.unit(4 + 6 / 12, "feet"),
  29149. name: "Normal",
  29150. image: {
  29151. source: "./media/characters/hydra/normal.svg",
  29152. extra: 2833 / 2634,
  29153. bottom: 68 / 2901
  29154. }
  29155. },
  29156. smol: {
  29157. height: math.unit(0.705, "inches"),
  29158. name: "Smol",
  29159. image: {
  29160. source: "./media/characters/hydra/smol.svg",
  29161. extra: 2715 / 2540,
  29162. bottom: 0 / 2715
  29163. }
  29164. },
  29165. },
  29166. [
  29167. {
  29168. name: "Normal",
  29169. height: math.unit(4 + 6 / 12, "feet"),
  29170. default: true
  29171. }
  29172. ]
  29173. ))
  29174. characterMakers.push(() => makeCharacter(
  29175. { name: "Daz", species: ["ant"], tags: ["anthro"] },
  29176. {
  29177. front: {
  29178. height: math.unit(0.6, "cm"),
  29179. name: "Front",
  29180. image: {
  29181. source: "./media/characters/daz/front.svg",
  29182. extra: 1682 / 1164,
  29183. bottom: 42 / 1724
  29184. }
  29185. },
  29186. },
  29187. [
  29188. {
  29189. name: "Normal",
  29190. height: math.unit(0.6, "cm"),
  29191. default: true
  29192. },
  29193. ]
  29194. ))
  29195. characterMakers.push(() => makeCharacter(
  29196. { name: "Theo (Pangolin)", species: ["pangolin"], tags: ["anthro"] },
  29197. {
  29198. front: {
  29199. height: math.unit(6, "feet"),
  29200. weight: math.unit(235, "lb"),
  29201. name: "Front",
  29202. image: {
  29203. source: "./media/characters/theo-pangolin/front.svg",
  29204. extra: 1996 / 1969,
  29205. bottom: 115 / 2111
  29206. }
  29207. },
  29208. back: {
  29209. height: math.unit(6, "feet"),
  29210. weight: math.unit(235, "lb"),
  29211. name: "Back",
  29212. image: {
  29213. source: "./media/characters/theo-pangolin/back.svg",
  29214. extra: 1979 / 1979,
  29215. bottom: 40 / 2019
  29216. }
  29217. },
  29218. feral: {
  29219. height: math.unit(2, "feet"),
  29220. weight: math.unit(30, "lb"),
  29221. name: "Feral",
  29222. image: {
  29223. source: "./media/characters/theo-pangolin/feral.svg",
  29224. extra: 803 / 791,
  29225. bottom: 181 / 984
  29226. }
  29227. },
  29228. footFive: {
  29229. height: math.unit(1.43, "feet"),
  29230. name: "Foot (Five Toes)",
  29231. image: {
  29232. source: "./media/characters/theo-pangolin/foot-five.svg"
  29233. }
  29234. },
  29235. footFour: {
  29236. height: math.unit(1.43, "feet"),
  29237. name: "Foot (Four Toes)",
  29238. image: {
  29239. source: "./media/characters/theo-pangolin/foot-four.svg"
  29240. }
  29241. },
  29242. handFour: {
  29243. height: math.unit(0.81, "feet"),
  29244. name: "Hand (Four Fingers)",
  29245. image: {
  29246. source: "./media/characters/theo-pangolin/hand-four.svg"
  29247. }
  29248. },
  29249. handThree: {
  29250. height: math.unit(0.81, "feet"),
  29251. name: "Hand (Three Fingers)",
  29252. image: {
  29253. source: "./media/characters/theo-pangolin/hand-three.svg"
  29254. }
  29255. },
  29256. headFront: {
  29257. height: math.unit(1.37, "feet"),
  29258. name: "Head (Front)",
  29259. image: {
  29260. source: "./media/characters/theo-pangolin/head-front.svg"
  29261. }
  29262. },
  29263. headSide: {
  29264. height: math.unit(1.43, "feet"),
  29265. name: "Head (Side)",
  29266. image: {
  29267. source: "./media/characters/theo-pangolin/head-side.svg"
  29268. }
  29269. },
  29270. tongue: {
  29271. height: math.unit(2.29, "feet"),
  29272. name: "Tongue",
  29273. image: {
  29274. source: "./media/characters/theo-pangolin/tongue.svg"
  29275. }
  29276. },
  29277. },
  29278. [
  29279. {
  29280. name: "Normal",
  29281. height: math.unit(6, "feet")
  29282. },
  29283. {
  29284. name: "Macro",
  29285. height: math.unit(400, "feet"),
  29286. default: true
  29287. },
  29288. ]
  29289. ))
  29290. characterMakers.push(() => makeCharacter(
  29291. { name: "Renée", species: ["mouse"], tags: ["anthro"] },
  29292. {
  29293. front: {
  29294. height: math.unit(6, "inches"),
  29295. weight: math.unit(0.036, "kg"),
  29296. name: "Front",
  29297. image: {
  29298. source: "./media/characters/renée/front.svg",
  29299. extra: 900 / 886,
  29300. bottom: 8 / 908
  29301. }
  29302. },
  29303. },
  29304. [
  29305. {
  29306. name: "Nano",
  29307. height: math.unit(1, "nm")
  29308. },
  29309. {
  29310. name: "Micro",
  29311. height: math.unit(1, "mm")
  29312. },
  29313. {
  29314. name: "Normal",
  29315. height: math.unit(6, "inches")
  29316. },
  29317. {
  29318. name: "Macro",
  29319. height: math.unit(2000, "feet"),
  29320. default: true
  29321. },
  29322. {
  29323. name: "Megamacro",
  29324. height: math.unit(2, "km")
  29325. },
  29326. {
  29327. name: "Gigamacro",
  29328. height: math.unit(2000, "km")
  29329. },
  29330. {
  29331. name: "Teramacro",
  29332. height: math.unit(250000, "km")
  29333. },
  29334. ]
  29335. ))
  29336. characterMakers.push(() => makeCharacter(
  29337. { name: "Caledvwlch", species: ["unicorn"], tags: ["anthro"] },
  29338. {
  29339. front: {
  29340. height: math.unit(4, "meters"),
  29341. weight: math.unit(150, "kg"),
  29342. name: "Front",
  29343. image: {
  29344. source: "./media/characters/caledvwlch/front.svg",
  29345. extra: 1760 / 1551,
  29346. bottom: 28 / 1788
  29347. }
  29348. },
  29349. side: {
  29350. height: math.unit(4, "meters"),
  29351. weight: math.unit(150, "kg"),
  29352. name: "Side",
  29353. image: {
  29354. source: "./media/characters/caledvwlch/side.svg",
  29355. extra: 1605 / 1536,
  29356. bottom: 31 / 1636
  29357. }
  29358. },
  29359. back: {
  29360. height: math.unit(4, "meters"),
  29361. weight: math.unit(150, "kg"),
  29362. name: "Back",
  29363. image: {
  29364. source: "./media/characters/caledvwlch/back.svg",
  29365. extra: 1635 / 1565,
  29366. bottom: 27 / 1662
  29367. }
  29368. },
  29369. },
  29370. [
  29371. {
  29372. name: "\"Incognito\"",
  29373. height: math.unit(4, "meters")
  29374. },
  29375. {
  29376. name: "Small rampage",
  29377. height: math.unit(600, "meters")
  29378. },
  29379. {
  29380. name: "Mega",
  29381. height: math.unit(30, "km")
  29382. },
  29383. {
  29384. name: "Home-size",
  29385. height: math.unit(50, "km"),
  29386. default: true
  29387. },
  29388. {
  29389. name: "Giga",
  29390. height: math.unit(300, "km")
  29391. },
  29392. {
  29393. name: "Lounging",
  29394. height: math.unit(11000, "km")
  29395. },
  29396. {
  29397. name: "Planet snacking",
  29398. height: math.unit(2000000, "km")
  29399. },
  29400. ]
  29401. ))
  29402. characterMakers.push(() => makeCharacter(
  29403. { name: "Sapphire Svell", species: ["dragon"], tags: ["anthro"] },
  29404. {
  29405. front: {
  29406. height: math.unit(6, "feet"),
  29407. weight: math.unit(215, "lb"),
  29408. name: "Front",
  29409. image: {
  29410. source: "./media/characters/sapphire-svell/front.svg",
  29411. extra: 495 / 455,
  29412. bottom: 20 / 515
  29413. }
  29414. },
  29415. back: {
  29416. height: math.unit(6, "feet"),
  29417. weight: math.unit(216, "lb"),
  29418. name: "Back",
  29419. image: {
  29420. source: "./media/characters/sapphire-svell/back.svg",
  29421. extra: 497 / 477,
  29422. bottom: 7 / 504
  29423. }
  29424. },
  29425. maw: {
  29426. height: math.unit(1.57, "feet"),
  29427. name: "Maw",
  29428. image: {
  29429. source: "./media/characters/sapphire-svell/maw.svg"
  29430. }
  29431. },
  29432. foot: {
  29433. height: math.unit(1.07, "feet"),
  29434. name: "Foot",
  29435. image: {
  29436. source: "./media/characters/sapphire-svell/foot.svg"
  29437. }
  29438. },
  29439. toering: {
  29440. height: math.unit(1.7, "inch"),
  29441. name: "Toering",
  29442. image: {
  29443. source: "./media/characters/sapphire-svell/toering.svg"
  29444. }
  29445. },
  29446. },
  29447. [
  29448. {
  29449. name: "Normal",
  29450. height: math.unit(300, "feet"),
  29451. default: true
  29452. },
  29453. {
  29454. name: "Augmented",
  29455. height: math.unit(1250, "feet")
  29456. },
  29457. {
  29458. name: "Unleashed",
  29459. height: math.unit(3000, "feet")
  29460. },
  29461. ]
  29462. ))
  29463. characterMakers.push(() => makeCharacter(
  29464. { name: "Glitch Flux", species: ["wolf"], tags: ["feral"] },
  29465. {
  29466. side: {
  29467. height: math.unit(2 + 3 / 12, "feet"),
  29468. weight: math.unit(110, "lb"),
  29469. name: "Side",
  29470. image: {
  29471. source: "./media/characters/glitch-flux/side.svg",
  29472. extra: 997 / 805,
  29473. bottom: 20 / 1017
  29474. }
  29475. },
  29476. },
  29477. [
  29478. {
  29479. name: "Normal",
  29480. height: math.unit(2 + 3 / 12, "feet"),
  29481. default: true
  29482. },
  29483. ]
  29484. ))
  29485. characterMakers.push(() => makeCharacter(
  29486. { name: "Mid", species: ["cat"], tags: ["anthro"] },
  29487. {
  29488. front: {
  29489. height: math.unit(4, "meters"),
  29490. name: "Front",
  29491. image: {
  29492. source: "./media/characters/mid/front.svg",
  29493. extra: 507 / 476,
  29494. bottom: 17 / 524
  29495. }
  29496. },
  29497. back: {
  29498. height: math.unit(4, "meters"),
  29499. name: "Back",
  29500. image: {
  29501. source: "./media/characters/mid/back.svg",
  29502. extra: 519 / 487,
  29503. bottom: 7 / 526
  29504. }
  29505. },
  29506. stuck: {
  29507. height: math.unit(2.2, "meters"),
  29508. name: "Stuck",
  29509. image: {
  29510. source: "./media/characters/mid/stuck.svg",
  29511. extra: 1951 / 1869,
  29512. bottom: 88 / 2039
  29513. }
  29514. }
  29515. },
  29516. [
  29517. {
  29518. name: "Normal",
  29519. height: math.unit(4, "meters"),
  29520. default: true
  29521. },
  29522. {
  29523. name: "Big",
  29524. height: math.unit(10, "meters")
  29525. },
  29526. {
  29527. name: "Macro",
  29528. height: math.unit(800, "meters")
  29529. },
  29530. {
  29531. name: "Megamacro",
  29532. height: math.unit(100, "km")
  29533. },
  29534. {
  29535. name: "Overgrown",
  29536. height: math.unit(1, "parsec")
  29537. },
  29538. ]
  29539. ))
  29540. characterMakers.push(() => makeCharacter(
  29541. { name: "Iris", species: ["tiger"], tags: ["anthro"] },
  29542. {
  29543. front: {
  29544. height: math.unit(2.5, "meters"),
  29545. weight: math.unit(225, "kg"),
  29546. name: "Front",
  29547. image: {
  29548. source: "./media/characters/iris/front.svg",
  29549. extra: 3348 / 3251,
  29550. bottom: 205 / 3553
  29551. }
  29552. },
  29553. maw: {
  29554. height: math.unit(0.56, "meter"),
  29555. name: "Maw",
  29556. image: {
  29557. source: "./media/characters/iris/maw.svg"
  29558. }
  29559. },
  29560. },
  29561. [
  29562. {
  29563. name: "Mewter cat",
  29564. height: math.unit(1.2, "meters")
  29565. },
  29566. {
  29567. name: "Minimacro",
  29568. height: math.unit(2.5, "meters"),
  29569. default: true
  29570. },
  29571. {
  29572. name: "Macro",
  29573. height: math.unit(180, "meters")
  29574. },
  29575. {
  29576. name: "Megamacro",
  29577. height: math.unit(2746, "meters")
  29578. },
  29579. ]
  29580. ))
  29581. characterMakers.push(() => makeCharacter(
  29582. { name: "Axel", species: ["raven"], tags: ["anthro"] },
  29583. {
  29584. front: {
  29585. height: math.unit(6, "feet"),
  29586. weight: math.unit(135, "lb"),
  29587. name: "Front",
  29588. image: {
  29589. source: "./media/characters/axel/front.svg",
  29590. extra: 908 / 908,
  29591. bottom: 58 / 966
  29592. }
  29593. },
  29594. side: {
  29595. height: math.unit(6, "feet"),
  29596. weight: math.unit(135, "lb"),
  29597. name: "Side",
  29598. image: {
  29599. source: "./media/characters/axel/side.svg",
  29600. extra: 958 / 958,
  29601. bottom: 11 / 969
  29602. }
  29603. },
  29604. back: {
  29605. height: math.unit(6, "feet"),
  29606. weight: math.unit(135, "lb"),
  29607. name: "Back",
  29608. image: {
  29609. source: "./media/characters/axel/back.svg",
  29610. extra: 887 / 887,
  29611. bottom: 34 / 921
  29612. }
  29613. },
  29614. head: {
  29615. height: math.unit(1.07, "feet"),
  29616. name: "Head",
  29617. image: {
  29618. source: "./media/characters/axel/head.svg"
  29619. }
  29620. },
  29621. beak: {
  29622. height: math.unit(1.4, "feet"),
  29623. name: "Beak",
  29624. image: {
  29625. source: "./media/characters/axel/beak.svg"
  29626. }
  29627. },
  29628. beakSide: {
  29629. height: math.unit(1.4, "feet"),
  29630. name: "Beak Side",
  29631. image: {
  29632. source: "./media/characters/axel/beak-side.svg"
  29633. }
  29634. },
  29635. sheath: {
  29636. height: math.unit(0.5, "feet"),
  29637. name: "Sheath",
  29638. image: {
  29639. source: "./media/characters/axel/sheath.svg"
  29640. }
  29641. },
  29642. dick: {
  29643. height: math.unit(0.98, "feet"),
  29644. name: "Dick",
  29645. image: {
  29646. source: "./media/characters/axel/dick.svg"
  29647. }
  29648. },
  29649. },
  29650. [
  29651. {
  29652. name: "Macro",
  29653. height: math.unit(68, "meters"),
  29654. default: true
  29655. },
  29656. ]
  29657. ))
  29658. characterMakers.push(() => makeCharacter(
  29659. { name: "Joanna", species: ["wolf"], tags: ["anthro"] },
  29660. {
  29661. front: {
  29662. height: math.unit(3.5, "meters"),
  29663. weight: math.unit(1200, "kg"),
  29664. name: "Front",
  29665. image: {
  29666. source: "./media/characters/joanna/front.svg",
  29667. extra: 1596 / 1488,
  29668. bottom: 29 / 1625
  29669. }
  29670. },
  29671. back: {
  29672. height: math.unit(3.5, "meters"),
  29673. weight: math.unit(1200, "kg"),
  29674. name: "Back",
  29675. image: {
  29676. source: "./media/characters/joanna/back.svg",
  29677. extra: 1594 / 1495,
  29678. bottom: 26 / 1620
  29679. }
  29680. },
  29681. frontShorts: {
  29682. height: math.unit(3.5, "meters"),
  29683. weight: math.unit(1200, "kg"),
  29684. name: "Front (Shorts)",
  29685. image: {
  29686. source: "./media/characters/joanna/front-shorts.svg",
  29687. extra: 1596 / 1488,
  29688. bottom: 29 / 1625
  29689. }
  29690. },
  29691. frontBiker: {
  29692. height: math.unit(3.5, "meters"),
  29693. weight: math.unit(1200, "kg"),
  29694. name: "Front (Biker)",
  29695. image: {
  29696. source: "./media/characters/joanna/front-biker.svg",
  29697. extra: 1596 / 1488,
  29698. bottom: 29 / 1625
  29699. }
  29700. },
  29701. backBiker: {
  29702. height: math.unit(3.5, "meters"),
  29703. weight: math.unit(1200, "kg"),
  29704. name: "Back (Biker)",
  29705. image: {
  29706. source: "./media/characters/joanna/back-biker.svg",
  29707. extra: 1594 / 1495,
  29708. bottom: 88 / 1682
  29709. }
  29710. },
  29711. bikeLeft: {
  29712. height: math.unit(2.4, "meters"),
  29713. weight: math.unit(1600, "kg"),
  29714. name: "Bike (Left)",
  29715. image: {
  29716. source: "./media/characters/joanna/bike-left.svg",
  29717. extra: 720 / 720,
  29718. bottom: 8 / 728
  29719. }
  29720. },
  29721. bikeRight: {
  29722. height: math.unit(2.4, "meters"),
  29723. weight: math.unit(1600, "kg"),
  29724. name: "Bike (Right)",
  29725. image: {
  29726. source: "./media/characters/joanna/bike-right.svg",
  29727. extra: 720 / 720,
  29728. bottom: 8 / 728
  29729. }
  29730. },
  29731. },
  29732. [
  29733. {
  29734. name: "Incognito",
  29735. height: math.unit(3.5, "meters")
  29736. },
  29737. {
  29738. name: "Casual Big",
  29739. height: math.unit(200, "meters")
  29740. },
  29741. {
  29742. name: "Macro",
  29743. height: math.unit(600, "meters")
  29744. },
  29745. {
  29746. name: "Original",
  29747. height: math.unit(20, "km"),
  29748. default: true
  29749. },
  29750. {
  29751. name: "Giga",
  29752. height: math.unit(400, "km")
  29753. },
  29754. {
  29755. name: "Lounging",
  29756. height: math.unit(1500, "km")
  29757. },
  29758. {
  29759. name: "Planetary",
  29760. height: math.unit(200000, "km")
  29761. },
  29762. ]
  29763. ))
  29764. characterMakers.push(() => makeCharacter(
  29765. { name: "Hugo Sigil", species: ["cat"], tags: ["anthro"] },
  29766. {
  29767. front: {
  29768. height: math.unit(6, "feet"),
  29769. weight: math.unit(150, "lb"),
  29770. name: "Front",
  29771. image: {
  29772. source: "./media/characters/hugo-sigil/front.svg",
  29773. extra: 522 / 500,
  29774. bottom: 2 / 524
  29775. }
  29776. },
  29777. back: {
  29778. height: math.unit(6, "feet"),
  29779. weight: math.unit(150, "lb"),
  29780. name: "Back",
  29781. image: {
  29782. source: "./media/characters/hugo-sigil/back.svg",
  29783. extra: 519 / 495,
  29784. bottom: 5 / 524
  29785. }
  29786. },
  29787. maw: {
  29788. height: math.unit(1.4, "feet"),
  29789. weight: math.unit(150, "lb"),
  29790. name: "Maw",
  29791. image: {
  29792. source: "./media/characters/hugo-sigil/maw.svg"
  29793. }
  29794. },
  29795. feet: {
  29796. height: math.unit(1.56, "feet"),
  29797. weight: math.unit(150, "lb"),
  29798. name: "Feet",
  29799. image: {
  29800. source: "./media/characters/hugo-sigil/feet.svg",
  29801. extra: 177 / 177,
  29802. bottom: 12 / 189
  29803. }
  29804. },
  29805. },
  29806. [
  29807. {
  29808. name: "Normal",
  29809. height: math.unit(6, "feet")
  29810. },
  29811. {
  29812. name: "Macro",
  29813. height: math.unit(200, "feet"),
  29814. default: true
  29815. },
  29816. ]
  29817. ))
  29818. characterMakers.push(() => makeCharacter(
  29819. { name: "Peri", species: ["husky"], tags: ["anthro"] },
  29820. {
  29821. front: {
  29822. height: math.unit(6, "feet"),
  29823. weight: math.unit(150, "lb"),
  29824. name: "Front",
  29825. image: {
  29826. source: "./media/characters/peri/front.svg",
  29827. extra: 2354 / 2233,
  29828. bottom: 49 / 2403
  29829. }
  29830. },
  29831. },
  29832. [
  29833. {
  29834. name: "Really Small",
  29835. height: math.unit(1, "nm")
  29836. },
  29837. {
  29838. name: "Micro",
  29839. height: math.unit(4, "inches")
  29840. },
  29841. {
  29842. name: "Normal",
  29843. height: math.unit(7, "inches"),
  29844. default: true
  29845. },
  29846. {
  29847. name: "Macro",
  29848. height: math.unit(400, "feet")
  29849. },
  29850. {
  29851. name: "Megamacro",
  29852. height: math.unit(100, "miles")
  29853. },
  29854. ]
  29855. ))
  29856. characterMakers.push(() => makeCharacter(
  29857. { name: "Issilora", species: ["dragon"], tags: ["anthro"] },
  29858. {
  29859. frontSlim: {
  29860. height: math.unit(7, "feet"),
  29861. name: "Front (Slim)",
  29862. image: {
  29863. source: "./media/characters/issilora/front-slim.svg",
  29864. extra: 529 / 449,
  29865. bottom: 53 / 582
  29866. }
  29867. },
  29868. sideSlim: {
  29869. height: math.unit(7, "feet"),
  29870. name: "Side (Slim)",
  29871. image: {
  29872. source: "./media/characters/issilora/side-slim.svg",
  29873. extra: 570 / 480,
  29874. bottom: 30 / 600
  29875. }
  29876. },
  29877. backSlim: {
  29878. height: math.unit(7, "feet"),
  29879. name: "Back (Slim)",
  29880. image: {
  29881. source: "./media/characters/issilora/back-slim.svg",
  29882. extra: 537 / 455,
  29883. bottom: 46 / 583
  29884. }
  29885. },
  29886. frontBuff: {
  29887. height: math.unit(7, "feet"),
  29888. name: "Front (Buff)",
  29889. image: {
  29890. source: "./media/characters/issilora/front-buff.svg",
  29891. extra: 2310 / 2035,
  29892. bottom: 335 / 2645
  29893. }
  29894. },
  29895. head: {
  29896. height: math.unit(1.94, "feet"),
  29897. name: "Head",
  29898. image: {
  29899. source: "./media/characters/issilora/head.svg"
  29900. }
  29901. },
  29902. },
  29903. [
  29904. {
  29905. name: "Minimum",
  29906. height: math.unit(7, "feet")
  29907. },
  29908. {
  29909. name: "Comfortable",
  29910. height: math.unit(17, "feet")
  29911. },
  29912. {
  29913. name: "Fun Size",
  29914. height: math.unit(47, "feet")
  29915. },
  29916. {
  29917. name: "Natural Macro",
  29918. height: math.unit(137, "feet"),
  29919. default: true
  29920. },
  29921. {
  29922. name: "Maximum Kaiju",
  29923. height: math.unit(397, "feet")
  29924. },
  29925. ]
  29926. ))
  29927. characterMakers.push(() => makeCharacter(
  29928. { name: "Irb'iiritaahn", species: ["uragi'viidorn"], tags: ["taur"] },
  29929. {
  29930. front: {
  29931. height: math.unit(50 + 9/12, "feet"),
  29932. weight: math.unit(32.8, "tons"),
  29933. name: "Front",
  29934. image: {
  29935. source: "./media/characters/irb'iiritaahn/front.svg",
  29936. extra: 1878/1826,
  29937. bottom: 326/2204
  29938. }
  29939. },
  29940. back: {
  29941. height: math.unit(50 + 9/12, "feet"),
  29942. weight: math.unit(32.8, "tons"),
  29943. name: "Back",
  29944. image: {
  29945. source: "./media/characters/irb'iiritaahn/back.svg",
  29946. extra: 2052/2018,
  29947. bottom: 152/2204
  29948. }
  29949. },
  29950. head: {
  29951. height: math.unit(12.86, "feet"),
  29952. name: "Head",
  29953. image: {
  29954. source: "./media/characters/irb'iiritaahn/head.svg"
  29955. }
  29956. },
  29957. maw: {
  29958. height: math.unit(9.66, "feet"),
  29959. name: "Maw",
  29960. image: {
  29961. source: "./media/characters/irb'iiritaahn/maw.svg"
  29962. }
  29963. },
  29964. frontDick: {
  29965. height: math.unit(8.78461, "feet"),
  29966. name: "Front Dick",
  29967. image: {
  29968. source: "./media/characters/irb'iiritaahn/front-dick.svg"
  29969. }
  29970. },
  29971. rearDick: {
  29972. height: math.unit(8.78461, "feet"),
  29973. name: "Rear Dick",
  29974. image: {
  29975. source: "./media/characters/irb'iiritaahn/rear-dick.svg"
  29976. }
  29977. },
  29978. rearDickUnfolded: {
  29979. height: math.unit(8.78, "feet"),
  29980. name: "Rear Dick (Unfolded)",
  29981. image: {
  29982. source: "./media/characters/irb'iiritaahn/rear-dick-unfolded.svg"
  29983. }
  29984. },
  29985. wings: {
  29986. height: math.unit(43, "feet"),
  29987. name: "Wings",
  29988. image: {
  29989. source: "./media/characters/irb'iiritaahn/wings.svg"
  29990. }
  29991. },
  29992. },
  29993. [
  29994. {
  29995. name: "Macro",
  29996. height: math.unit(50 + 9/12, "feet"),
  29997. default: true
  29998. },
  29999. ]
  30000. ))
  30001. characterMakers.push(() => makeCharacter(
  30002. { name: "Irbisgreif", species: ["gryphdelphais"], tags: ["anthro"] },
  30003. {
  30004. front: {
  30005. height: math.unit(205, "cm"),
  30006. weight: math.unit(102, "kg"),
  30007. name: "Front",
  30008. image: {
  30009. source: "./media/characters/irbisgreif/front.svg",
  30010. extra: 785/706,
  30011. bottom: 13/798
  30012. }
  30013. },
  30014. back: {
  30015. height: math.unit(205, "cm"),
  30016. weight: math.unit(102, "kg"),
  30017. name: "Back",
  30018. image: {
  30019. source: "./media/characters/irbisgreif/back.svg",
  30020. extra: 713/701,
  30021. bottom: 26/739
  30022. }
  30023. },
  30024. frontDressed: {
  30025. height: math.unit(216, "cm"),
  30026. weight: math.unit(102, "kg"),
  30027. name: "Front-dressed",
  30028. image: {
  30029. source: "./media/characters/irbisgreif/front-dressed.svg",
  30030. extra: 902/776,
  30031. bottom: 14/916
  30032. }
  30033. },
  30034. sideDressed: {
  30035. height: math.unit(195, "cm"),
  30036. weight: math.unit(102, "kg"),
  30037. name: "Side-dressed",
  30038. image: {
  30039. source: "./media/characters/irbisgreif/side-dressed.svg",
  30040. extra: 788/688,
  30041. bottom: 21/809
  30042. }
  30043. },
  30044. backDressed: {
  30045. height: math.unit(216, "cm"),
  30046. weight: math.unit(102, "kg"),
  30047. name: "Back-dressed",
  30048. image: {
  30049. source: "./media/characters/irbisgreif/back-dressed.svg",
  30050. extra: 901/783,
  30051. bottom: 10/911
  30052. }
  30053. },
  30054. dick: {
  30055. height: math.unit(0.49, "feet"),
  30056. name: "Dick",
  30057. image: {
  30058. source: "./media/characters/irbisgreif/dick.svg"
  30059. }
  30060. },
  30061. wingTop: {
  30062. height: math.unit(1.93 , "feet"),
  30063. name: "Wing-top",
  30064. image: {
  30065. source: "./media/characters/irbisgreif/wing-top.svg"
  30066. }
  30067. },
  30068. wingBottom: {
  30069. height: math.unit(1.93 , "feet"),
  30070. name: "Wing-bottom",
  30071. image: {
  30072. source: "./media/characters/irbisgreif/wing-bottom.svg"
  30073. }
  30074. },
  30075. },
  30076. [
  30077. {
  30078. name: "Normal",
  30079. height: math.unit(216, "cm"),
  30080. default: true
  30081. },
  30082. ]
  30083. ))
  30084. characterMakers.push(() => makeCharacter(
  30085. { name: "Pride", species: ["skunk"], tags: ["anthro"] },
  30086. {
  30087. front: {
  30088. height: math.unit(6, "feet"),
  30089. weight: math.unit(150, "lb"),
  30090. name: "Front",
  30091. image: {
  30092. source: "./media/characters/pride/front.svg",
  30093. extra: 1299/1230,
  30094. bottom: 18/1317
  30095. }
  30096. },
  30097. },
  30098. [
  30099. {
  30100. name: "Normal",
  30101. height: math.unit(7, "feet")
  30102. },
  30103. {
  30104. name: "Mini-macro",
  30105. height: math.unit(11, "feet")
  30106. },
  30107. {
  30108. name: "Macro",
  30109. height: math.unit(15, "meters"),
  30110. default: true
  30111. },
  30112. {
  30113. name: "Macro+",
  30114. height: math.unit(40, "meters")
  30115. },
  30116. ]
  30117. ))
  30118. characterMakers.push(() => makeCharacter(
  30119. { name: "Vaelophys Nyx", species: ["maned-wolf"], tags: ["anthro", "feral"] },
  30120. {
  30121. front: {
  30122. height: math.unit(4 + 2 / 12, "feet"),
  30123. weight: math.unit(95, "lb"),
  30124. name: "Front",
  30125. image: {
  30126. source: "./media/characters/vaelophis-nyx/front.svg",
  30127. extra: 2532/2330,
  30128. bottom: 0/2532
  30129. }
  30130. },
  30131. back: {
  30132. height: math.unit(4 + 2 / 12, "feet"),
  30133. weight: math.unit(95, "lb"),
  30134. name: "Back",
  30135. image: {
  30136. source: "./media/characters/vaelophis-nyx/back.svg",
  30137. extra: 2484/2361,
  30138. bottom: 0/2484
  30139. }
  30140. },
  30141. feralSide: {
  30142. height: math.unit(2 + 1/12, "feet"),
  30143. weight: math.unit(20, "lb"),
  30144. name: "Feral (Side)",
  30145. image: {
  30146. source: "./media/characters/vaelophis-nyx/feral-side.svg",
  30147. extra: 1721/1581,
  30148. bottom: 70/1791
  30149. }
  30150. },
  30151. feralLazing: {
  30152. height: math.unit(1.08, "feet"),
  30153. weight: math.unit(20, "lb"),
  30154. name: "Feral (Lazing)",
  30155. image: {
  30156. source: "./media/characters/vaelophis-nyx/feral-lazing.svg",
  30157. extra: 822/822,
  30158. bottom: 248/1070
  30159. }
  30160. },
  30161. ear: {
  30162. height: math.unit(0.416, "feet"),
  30163. name: "Ear",
  30164. image: {
  30165. source: "./media/characters/vaelophis-nyx/ear.svg"
  30166. }
  30167. },
  30168. eye: {
  30169. height: math.unit(0.0748, "feet"),
  30170. name: "Eye",
  30171. image: {
  30172. source: "./media/characters/vaelophis-nyx/eye.svg"
  30173. }
  30174. },
  30175. mouth: {
  30176. height: math.unit(0.378, "feet"),
  30177. name: "Mouth",
  30178. image: {
  30179. source: "./media/characters/vaelophis-nyx/mouth.svg"
  30180. }
  30181. },
  30182. spade: {
  30183. height: math.unit(0.55, "feet"),
  30184. name: "Spade",
  30185. image: {
  30186. source: "./media/characters/vaelophis-nyx/spade.svg"
  30187. }
  30188. },
  30189. },
  30190. [
  30191. {
  30192. name: "Normal",
  30193. height: math.unit(4 + 2/12, "feet"),
  30194. default: true
  30195. },
  30196. ]
  30197. ))
  30198. characterMakers.push(() => makeCharacter(
  30199. { name: "Flux", species: ["luxray"], tags: ["anthro", "feral"] },
  30200. {
  30201. front: {
  30202. height: math.unit(7, "feet"),
  30203. weight: math.unit(231, "lb"),
  30204. name: "Front",
  30205. image: {
  30206. source: "./media/characters/flux/front.svg",
  30207. extra: 919/871,
  30208. bottom: 0/919
  30209. }
  30210. },
  30211. back: {
  30212. height: math.unit(7, "feet"),
  30213. weight: math.unit(231, "lb"),
  30214. name: "Back",
  30215. image: {
  30216. source: "./media/characters/flux/back.svg",
  30217. extra: 1040/992,
  30218. bottom: 0/1040
  30219. }
  30220. },
  30221. frontDressed: {
  30222. height: math.unit(7, "feet"),
  30223. weight: math.unit(231, "lb"),
  30224. name: "Front (Dressed)",
  30225. image: {
  30226. source: "./media/characters/flux/front-dressed.svg",
  30227. extra: 919/871,
  30228. bottom: 0/919
  30229. }
  30230. },
  30231. feralSide: {
  30232. height: math.unit(5, "feet"),
  30233. weight: math.unit(150, "lb"),
  30234. name: "Feral (Side)",
  30235. image: {
  30236. source: "./media/characters/flux/feral-side.svg",
  30237. extra: 598/528,
  30238. bottom: 28/626
  30239. }
  30240. },
  30241. head: {
  30242. height: math.unit(1.585, "feet"),
  30243. name: "Head",
  30244. image: {
  30245. source: "./media/characters/flux/head.svg"
  30246. }
  30247. },
  30248. headSide: {
  30249. height: math.unit(1.74, "feet"),
  30250. name: "Head (Side)",
  30251. image: {
  30252. source: "./media/characters/flux/head-side.svg"
  30253. }
  30254. },
  30255. headSideFire: {
  30256. height: math.unit(1.76, "feet"),
  30257. name: "Head (Side, Fire)",
  30258. image: {
  30259. source: "./media/characters/flux/head-side-fire.svg"
  30260. }
  30261. },
  30262. },
  30263. [
  30264. {
  30265. name: "Normal",
  30266. height: math.unit(7, "feet"),
  30267. default: true
  30268. },
  30269. ]
  30270. ))
  30271. characterMakers.push(() => makeCharacter(
  30272. { name: "Ulfra Lupae", species: ["wolf"], tags: ["anthro"] },
  30273. {
  30274. front: {
  30275. height: math.unit(9, "feet"),
  30276. weight: math.unit(1012, "lb"),
  30277. name: "Front",
  30278. image: {
  30279. source: "./media/characters/ulfra-lupae/front.svg",
  30280. extra: 1083/1011,
  30281. bottom: 67/1150
  30282. }
  30283. },
  30284. },
  30285. [
  30286. {
  30287. name: "Micro",
  30288. height: math.unit(6, "inches")
  30289. },
  30290. {
  30291. name: "Socializing",
  30292. height: math.unit(6 + 5/12, "feet")
  30293. },
  30294. {
  30295. name: "Normal",
  30296. height: math.unit(9, "feet"),
  30297. default: true
  30298. },
  30299. {
  30300. name: "Macro",
  30301. height: math.unit(150, "feet")
  30302. },
  30303. ]
  30304. ))
  30305. characterMakers.push(() => makeCharacter(
  30306. { name: "Timber", species: ["canine"], tags: ["anthro"] },
  30307. {
  30308. front: {
  30309. height: math.unit(5 + 2/12, "feet"),
  30310. weight: math.unit(120, "lb"),
  30311. name: "Front",
  30312. image: {
  30313. source: "./media/characters/timber/front.svg",
  30314. extra: 2814/2705,
  30315. bottom: 181/2995
  30316. }
  30317. },
  30318. },
  30319. [
  30320. {
  30321. name: "Normal",
  30322. height: math.unit(5 + 2/12, "feet"),
  30323. default: true
  30324. },
  30325. ]
  30326. ))
  30327. characterMakers.push(() => makeCharacter(
  30328. { name: "Nicki", species: ["goat", "wolf", "rabbit"], tags: ["anthro"] },
  30329. {
  30330. front: {
  30331. height: math.unit(5 + 7/12, "feet"),
  30332. weight: math.unit(220, "lb"),
  30333. name: "Front",
  30334. image: {
  30335. source: "./media/characters/nicki/front.svg",
  30336. extra: 453/419,
  30337. bottom: 7/460
  30338. }
  30339. },
  30340. frontAlt: {
  30341. height: math.unit(5 + 7/12, "feet"),
  30342. weight: math.unit(220, "lb"),
  30343. name: "Front-alt",
  30344. image: {
  30345. source: "./media/characters/nicki/front-alt.svg",
  30346. extra: 435/411,
  30347. bottom: 12/447
  30348. }
  30349. },
  30350. back: {
  30351. height: math.unit(5 + 7/12, "feet"),
  30352. weight: math.unit(220, "lb"),
  30353. name: "Back",
  30354. image: {
  30355. source: "./media/characters/nicki/back.svg",
  30356. extra: 440/413,
  30357. bottom: 19/459
  30358. }
  30359. },
  30360. taur: {
  30361. height: math.unit(7 + 6/12, "feet"),
  30362. weight: math.unit(700, "lb"),
  30363. name: "Taur",
  30364. image: {
  30365. source: "./media/characters/nicki/taur.svg",
  30366. extra: 975/773,
  30367. bottom: 0/975
  30368. }
  30369. },
  30370. frontNsfw: {
  30371. height: math.unit(5 + 7/12, "feet"),
  30372. weight: math.unit(220, "lb"),
  30373. name: "Front (NSFW)",
  30374. image: {
  30375. source: "./media/characters/nicki/front-nsfw.svg",
  30376. extra: 453/419,
  30377. bottom: 7/460
  30378. }
  30379. },
  30380. frontNsfwAlt: {
  30381. height: math.unit(5 + 7/12, "feet"),
  30382. weight: math.unit(220, "lb"),
  30383. name: "Front (Alt, NSFW)",
  30384. image: {
  30385. source: "./media/characters/nicki/front-alt-nsfw.svg",
  30386. extra: 435/411,
  30387. bottom: 12/447
  30388. }
  30389. },
  30390. backNsfw: {
  30391. height: math.unit(5 + 7/12, "feet"),
  30392. weight: math.unit(220, "lb"),
  30393. name: "Back (NSFW)",
  30394. image: {
  30395. source: "./media/characters/nicki/back-nsfw.svg",
  30396. extra: 440/413,
  30397. bottom: 19/459
  30398. }
  30399. },
  30400. head: {
  30401. height: math.unit(2.1, "feet"),
  30402. name: "Head",
  30403. image: {
  30404. source: "./media/characters/nicki/head.svg"
  30405. }
  30406. },
  30407. paw: {
  30408. height: math.unit(1.88, "feet"),
  30409. name: "Paw",
  30410. image: {
  30411. source: "./media/characters/nicki/paw.svg"
  30412. }
  30413. },
  30414. },
  30415. [
  30416. {
  30417. name: "Normal",
  30418. height: math.unit(5 + 7/12, "feet"),
  30419. default: true
  30420. },
  30421. ]
  30422. ))
  30423. characterMakers.push(() => makeCharacter(
  30424. { name: "Lee", species: ["monster"], tags: ["anthro"] },
  30425. {
  30426. front: {
  30427. height: math.unit(7 + 10/12, "feet"),
  30428. weight: math.unit(3.5, "tons"),
  30429. name: "Front",
  30430. image: {
  30431. source: "./media/characters/lee/front.svg",
  30432. extra: 1773/1615,
  30433. bottom: 86/1859
  30434. }
  30435. },
  30436. hand: {
  30437. height: math.unit(1.78, "feet"),
  30438. name: "Hand",
  30439. image: {
  30440. source: "./media/characters/lee/hand.svg"
  30441. }
  30442. },
  30443. maw: {
  30444. height: math.unit(1.18, "feet"),
  30445. name: "Maw",
  30446. image: {
  30447. source: "./media/characters/lee/maw.svg"
  30448. }
  30449. },
  30450. },
  30451. [
  30452. {
  30453. name: "Normal",
  30454. height: math.unit(7 + 10/12, "feet"),
  30455. default: true
  30456. },
  30457. ]
  30458. ))
  30459. characterMakers.push(() => makeCharacter(
  30460. { name: "Guti", species: ["lion"], tags: ["anthro", "goo"] },
  30461. {
  30462. front: {
  30463. height: math.unit(9, "feet"),
  30464. name: "Front",
  30465. image: {
  30466. source: "./media/characters/guti/front.svg",
  30467. extra: 4551/4355,
  30468. bottom: 123/4674
  30469. }
  30470. },
  30471. tongue: {
  30472. height: math.unit(1, "feet"),
  30473. name: "Tongue",
  30474. image: {
  30475. source: "./media/characters/guti/tongue.svg"
  30476. }
  30477. },
  30478. paw: {
  30479. height: math.unit(1.18, "feet"),
  30480. name: "Paw",
  30481. image: {
  30482. source: "./media/characters/guti/paw.svg"
  30483. }
  30484. },
  30485. },
  30486. [
  30487. {
  30488. name: "Normal",
  30489. height: math.unit(9, "feet"),
  30490. default: true
  30491. },
  30492. ]
  30493. ))
  30494. characterMakers.push(() => makeCharacter(
  30495. { name: "Vesper", species: ["kitsune"], tags: ["anthro"] },
  30496. {
  30497. side: {
  30498. height: math.unit(5, "meters"),
  30499. name: "Side",
  30500. image: {
  30501. source: "./media/characters/vesper/side.svg",
  30502. extra: 1605/1518,
  30503. bottom: 0/1605
  30504. }
  30505. },
  30506. },
  30507. [
  30508. {
  30509. name: "Small",
  30510. height: math.unit(5, "meters")
  30511. },
  30512. {
  30513. name: "Sage",
  30514. height: math.unit(100, "meters"),
  30515. default: true
  30516. },
  30517. {
  30518. name: "Fun Size",
  30519. height: math.unit(600, "meters")
  30520. },
  30521. {
  30522. name: "Goddess",
  30523. height: math.unit(20000, "km")
  30524. },
  30525. {
  30526. name: "Maximum",
  30527. height: math.unit(5, "galaxies")
  30528. },
  30529. ]
  30530. ))
  30531. characterMakers.push(() => makeCharacter(
  30532. { name: "Gawain", species: ["arcanine"], tags: ["anthro"] },
  30533. {
  30534. front: {
  30535. height: math.unit(6 + 3/12, "feet"),
  30536. weight: math.unit(190, "lb"),
  30537. name: "Front",
  30538. image: {
  30539. source: "./media/characters/gawain/front.svg",
  30540. extra: 2222/2139,
  30541. bottom: 90/2312
  30542. }
  30543. },
  30544. back: {
  30545. height: math.unit(6 + 3/12, "feet"),
  30546. weight: math.unit(190, "lb"),
  30547. name: "Back",
  30548. image: {
  30549. source: "./media/characters/gawain/back.svg",
  30550. extra: 2199/2111,
  30551. bottom: 73/2272
  30552. }
  30553. },
  30554. },
  30555. [
  30556. {
  30557. name: "Normal",
  30558. height: math.unit(6 + 3/12, "feet"),
  30559. default: true
  30560. },
  30561. ]
  30562. ))
  30563. characterMakers.push(() => makeCharacter(
  30564. { name: "Dascalti", species: ["draiger"], tags: ["anthro"] },
  30565. {
  30566. side: {
  30567. height: math.unit(3.5, "meters"),
  30568. weight: math.unit(16000, "lb"),
  30569. name: "Side",
  30570. image: {
  30571. source: "./media/characters/dascalti/side.svg",
  30572. extra: 392/273,
  30573. bottom: 47/439
  30574. }
  30575. },
  30576. breath: {
  30577. height: math.unit(7.4, "feet"),
  30578. name: "Breath",
  30579. image: {
  30580. source: "./media/characters/dascalti/breath.svg"
  30581. }
  30582. },
  30583. fed: {
  30584. height: math.unit(3.6, "meters"),
  30585. weight: math.unit(16000, "lb"),
  30586. name: "Fed",
  30587. image: {
  30588. source: "./media/characters/dascalti/fed.svg",
  30589. extra: 1419/820,
  30590. bottom: 95/1514
  30591. }
  30592. },
  30593. },
  30594. [
  30595. {
  30596. name: "Normal",
  30597. height: math.unit(3.5, "meters"),
  30598. default: true
  30599. },
  30600. ]
  30601. ))
  30602. characterMakers.push(() => makeCharacter(
  30603. { name: "Mauve", species: ["skunk"], tags: ["anthro"] },
  30604. {
  30605. front: {
  30606. height: math.unit(3 + 5/12, "feet"),
  30607. name: "Front",
  30608. image: {
  30609. source: "./media/characters/mauve/front.svg",
  30610. extra: 1126/1033,
  30611. bottom: 65/1191
  30612. }
  30613. },
  30614. side: {
  30615. height: math.unit(3 + 5/12, "feet"),
  30616. name: "Side",
  30617. image: {
  30618. source: "./media/characters/mauve/side.svg",
  30619. extra: 1089/1001,
  30620. bottom: 29/1118
  30621. }
  30622. },
  30623. back: {
  30624. height: math.unit(3 + 5/12, "feet"),
  30625. name: "Back",
  30626. image: {
  30627. source: "./media/characters/mauve/back.svg",
  30628. extra: 1173/1053,
  30629. bottom: 109/1282
  30630. }
  30631. },
  30632. },
  30633. [
  30634. {
  30635. name: "Normal",
  30636. height: math.unit(3 + 5/12, "feet"),
  30637. default: true
  30638. },
  30639. ]
  30640. ))
  30641. characterMakers.push(() => makeCharacter(
  30642. { name: "Carlos", species: ["foxsky"], tags: ["anthro"] },
  30643. {
  30644. front: {
  30645. height: math.unit(6 + 3/12, "feet"),
  30646. weight: math.unit(430, "lb"),
  30647. name: "Front",
  30648. image: {
  30649. source: "./media/characters/carlos/front.svg",
  30650. extra: 1964/1913,
  30651. bottom: 70/2034
  30652. }
  30653. },
  30654. },
  30655. [
  30656. {
  30657. name: "Normal",
  30658. height: math.unit(6 + 3/12, "feet"),
  30659. default: true
  30660. },
  30661. ]
  30662. ))
  30663. characterMakers.push(() => makeCharacter(
  30664. { name: "Jax", species: ["husky"], tags: ["anthro"] },
  30665. {
  30666. back: {
  30667. height: math.unit(5 + 10/12, "feet"),
  30668. weight: math.unit(200, "lb"),
  30669. name: "Back",
  30670. image: {
  30671. source: "./media/characters/jax/back.svg",
  30672. extra: 764/739,
  30673. bottom: 25/789
  30674. }
  30675. },
  30676. },
  30677. [
  30678. {
  30679. name: "Normal",
  30680. height: math.unit(5 + 10/12, "feet"),
  30681. default: true
  30682. },
  30683. ]
  30684. ))
  30685. characterMakers.push(() => makeCharacter(
  30686. { name: "Eikthynir", species: ["deer"], tags: ["anthro"] },
  30687. {
  30688. front: {
  30689. height: math.unit(8, "feet"),
  30690. weight: math.unit(250, "lb"),
  30691. name: "Front",
  30692. image: {
  30693. source: "./media/characters/eikthynir/front.svg",
  30694. extra: 1332/1166,
  30695. bottom: 82/1414
  30696. }
  30697. },
  30698. back: {
  30699. height: math.unit(8, "feet"),
  30700. weight: math.unit(250, "lb"),
  30701. name: "Back",
  30702. image: {
  30703. source: "./media/characters/eikthynir/back.svg",
  30704. extra: 1342/1190,
  30705. bottom: 19/1361
  30706. }
  30707. },
  30708. dick: {
  30709. height: math.unit(2.35, "feet"),
  30710. name: "Dick",
  30711. image: {
  30712. source: "./media/characters/eikthynir/dick.svg"
  30713. }
  30714. },
  30715. },
  30716. [
  30717. {
  30718. name: "Normal",
  30719. height: math.unit(8, "feet"),
  30720. default: true
  30721. },
  30722. ]
  30723. ))
  30724. characterMakers.push(() => makeCharacter(
  30725. { name: "Zlmos", species: ["dragon"], tags: ["anthro"] },
  30726. {
  30727. front: {
  30728. height: math.unit(99, "meters"),
  30729. weight: math.unit(13000, "tons"),
  30730. name: "Front",
  30731. image: {
  30732. source: "./media/characters/zlmos/front.svg",
  30733. extra: 2202/1992,
  30734. bottom: 315/2517
  30735. }
  30736. },
  30737. },
  30738. [
  30739. {
  30740. name: "Macro",
  30741. height: math.unit(99, "meters"),
  30742. default: true
  30743. },
  30744. ]
  30745. ))
  30746. characterMakers.push(() => makeCharacter(
  30747. { name: "Purri", species: ["cat"], tags: ["anthro"] },
  30748. {
  30749. front: {
  30750. height: math.unit(6 + 5/12, "feet"),
  30751. name: "Front",
  30752. image: {
  30753. source: "./media/characters/purri/front.svg",
  30754. extra: 1698/1610,
  30755. bottom: 32/1730
  30756. }
  30757. },
  30758. frontAlt: {
  30759. height: math.unit(6 + 5/12, "feet"),
  30760. name: "Front (Alt)",
  30761. image: {
  30762. source: "./media/characters/purri/front-alt.svg",
  30763. extra: 450/420,
  30764. bottom: 26/476
  30765. }
  30766. },
  30767. boots: {
  30768. height: math.unit(5.5, "feet"),
  30769. name: "Boots",
  30770. image: {
  30771. source: "./media/characters/purri/boots.svg",
  30772. extra: 905/853,
  30773. bottom: 18/923
  30774. }
  30775. },
  30776. lying: {
  30777. height: math.unit(2, "feet"),
  30778. name: "Lying",
  30779. image: {
  30780. source: "./media/characters/purri/lying.svg",
  30781. extra: 940/843,
  30782. bottom: 146/1086
  30783. }
  30784. },
  30785. devious: {
  30786. height: math.unit(1.77, "feet"),
  30787. name: "Devious",
  30788. image: {
  30789. source: "./media/characters/purri/devious.svg",
  30790. extra: 1440/1155,
  30791. bottom: 147/1587
  30792. }
  30793. },
  30794. bean: {
  30795. height: math.unit(1.94, "feet"),
  30796. name: "Bean",
  30797. image: {
  30798. source: "./media/characters/purri/bean.svg"
  30799. }
  30800. },
  30801. },
  30802. [
  30803. {
  30804. name: "Micro",
  30805. height: math.unit(1, "mm")
  30806. },
  30807. {
  30808. name: "Normal",
  30809. height: math.unit(6 + 5/12, "feet"),
  30810. default: true
  30811. },
  30812. {
  30813. name: "Macro :3c",
  30814. height: math.unit(2, "miles")
  30815. },
  30816. ]
  30817. ))
  30818. characterMakers.push(() => makeCharacter(
  30819. { name: "Moonlight", species: ["umbreon"], tags: ["anthro"] },
  30820. {
  30821. front: {
  30822. height: math.unit(6 + 2/12, "feet"),
  30823. weight: math.unit(250, "lb"),
  30824. name: "Front",
  30825. image: {
  30826. source: "./media/characters/moonlight/front.svg",
  30827. extra: 1044/908,
  30828. bottom: 56/1100
  30829. }
  30830. },
  30831. feral: {
  30832. height: math.unit(3 + 1/12, "feet"),
  30833. weight: math.unit(50, "kg"),
  30834. name: "Feral",
  30835. image: {
  30836. source: "./media/characters/moonlight/feral.svg",
  30837. extra: 3705/2791,
  30838. bottom: 145/3850
  30839. }
  30840. },
  30841. paw: {
  30842. height: math.unit(1, "feet"),
  30843. name: "Paw",
  30844. image: {
  30845. source: "./media/characters/moonlight/paw.svg"
  30846. }
  30847. },
  30848. paws: {
  30849. height: math.unit(0.98, "feet"),
  30850. name: "Paws",
  30851. image: {
  30852. source: "./media/characters/moonlight/paws.svg",
  30853. extra: 939/939,
  30854. bottom: 50/989
  30855. }
  30856. },
  30857. mouth: {
  30858. height: math.unit(0.48, "feet"),
  30859. name: "Mouth",
  30860. image: {
  30861. source: "./media/characters/moonlight/mouth.svg"
  30862. }
  30863. },
  30864. dick: {
  30865. height: math.unit(1.46, "feet"),
  30866. name: "Dick",
  30867. image: {
  30868. source: "./media/characters/moonlight/dick.svg"
  30869. }
  30870. },
  30871. },
  30872. [
  30873. {
  30874. name: "Normal",
  30875. height: math.unit(6 + 2/12, "feet"),
  30876. default: true
  30877. },
  30878. {
  30879. name: "Macro",
  30880. height: math.unit(300, "feet")
  30881. },
  30882. {
  30883. name: "Macro+",
  30884. height: math.unit(1, "mile")
  30885. },
  30886. {
  30887. name: "Mt. Moon",
  30888. height: math.unit(5, "miles")
  30889. },
  30890. {
  30891. name: "Megamacro",
  30892. height: math.unit(15, "miles")
  30893. },
  30894. ]
  30895. ))
  30896. characterMakers.push(() => makeCharacter(
  30897. { name: "Sylen", species: ["wolf"], tags: ["anthro"] },
  30898. {
  30899. back: {
  30900. height: math.unit(6, "feet"),
  30901. weight: math.unit(150, "lb"),
  30902. name: "Back",
  30903. image: {
  30904. source: "./media/characters/sylen/back.svg",
  30905. extra: 1335/1273,
  30906. bottom: 107/1442
  30907. }
  30908. },
  30909. },
  30910. [
  30911. {
  30912. name: "Normal",
  30913. height: math.unit(5 + 5/12, "feet")
  30914. },
  30915. {
  30916. name: "Megamacro",
  30917. height: math.unit(3, "miles"),
  30918. default: true
  30919. },
  30920. ]
  30921. ))
  30922. characterMakers.push(() => makeCharacter(
  30923. { name: "Huttser", species: ["coyote"], tags: ["anthro"] },
  30924. {
  30925. front: {
  30926. height: math.unit(6, "feet"),
  30927. weight: math.unit(190, "lb"),
  30928. name: "Front",
  30929. image: {
  30930. source: "./media/characters/huttser/front.svg",
  30931. extra: 1152/1058,
  30932. bottom: 23/1175
  30933. }
  30934. },
  30935. side: {
  30936. height: math.unit(6, "feet"),
  30937. weight: math.unit(190, "lb"),
  30938. name: "Side",
  30939. image: {
  30940. source: "./media/characters/huttser/side.svg",
  30941. extra: 1174/1065,
  30942. bottom: 18/1192
  30943. }
  30944. },
  30945. back: {
  30946. height: math.unit(6, "feet"),
  30947. weight: math.unit(190, "lb"),
  30948. name: "Back",
  30949. image: {
  30950. source: "./media/characters/huttser/back.svg",
  30951. extra: 1158/1056,
  30952. bottom: 12/1170
  30953. }
  30954. },
  30955. },
  30956. [
  30957. ]
  30958. ))
  30959. characterMakers.push(() => makeCharacter(
  30960. { name: "Faan", species: ["slime-dragon"], tags: ["anthro", "goo"] },
  30961. {
  30962. side: {
  30963. height: math.unit(12 + 9/12, "feet"),
  30964. weight: math.unit(15000, "lb"),
  30965. name: "Side",
  30966. image: {
  30967. source: "./media/characters/faan/side.svg",
  30968. extra: 2747/2697,
  30969. bottom: 0/2747
  30970. }
  30971. },
  30972. front: {
  30973. height: math.unit(12 + 9/12, "feet"),
  30974. weight: math.unit(15000, "lb"),
  30975. name: "Front",
  30976. image: {
  30977. source: "./media/characters/faan/front.svg",
  30978. extra: 607/571,
  30979. bottom: 24/631
  30980. }
  30981. },
  30982. head: {
  30983. height: math.unit(2.85, "feet"),
  30984. name: "Head",
  30985. image: {
  30986. source: "./media/characters/faan/head.svg"
  30987. }
  30988. },
  30989. headAlt: {
  30990. height: math.unit(3.13, "feet"),
  30991. name: "Head-alt",
  30992. image: {
  30993. source: "./media/characters/faan/head-alt.svg"
  30994. }
  30995. },
  30996. },
  30997. [
  30998. {
  30999. name: "Normal",
  31000. height: math.unit(12 + 9/12, "feet"),
  31001. default: true
  31002. },
  31003. ]
  31004. ))
  31005. characterMakers.push(() => makeCharacter(
  31006. { name: "Tanio", species: ["foxsky"], tags: ["anthro"] },
  31007. {
  31008. front: {
  31009. height: math.unit(6, "feet"),
  31010. weight: math.unit(300, "lb"),
  31011. name: "Front",
  31012. image: {
  31013. source: "./media/characters/tanio/front.svg",
  31014. extra: 711/673,
  31015. bottom: 25/736
  31016. }
  31017. },
  31018. },
  31019. [
  31020. {
  31021. name: "Normal",
  31022. height: math.unit(6, "feet"),
  31023. default: true
  31024. },
  31025. ]
  31026. ))
  31027. characterMakers.push(() => makeCharacter(
  31028. { name: "Noboru", species: ["cat"], tags: ["anthro"] },
  31029. {
  31030. front: {
  31031. height: math.unit(3, "inches"),
  31032. name: "Front",
  31033. image: {
  31034. source: "./media/characters/noboru/front.svg",
  31035. extra: 1039/932,
  31036. bottom: 18/1057
  31037. }
  31038. },
  31039. },
  31040. [
  31041. {
  31042. name: "Micro",
  31043. height: math.unit(3, "inches"),
  31044. default: true
  31045. },
  31046. ]
  31047. ))
  31048. characterMakers.push(() => makeCharacter(
  31049. { name: "Daniel Barrett", species: ["wolf"], tags: ["anthro"] },
  31050. {
  31051. front: {
  31052. height: math.unit(1.85, "meters"),
  31053. weight: math.unit(80, "kg"),
  31054. name: "Front",
  31055. image: {
  31056. source: "./media/characters/daniel-barrett/front.svg",
  31057. extra: 355/337,
  31058. bottom: 9/364
  31059. }
  31060. },
  31061. },
  31062. [
  31063. {
  31064. name: "Pico",
  31065. height: math.unit(0.0433, "mm")
  31066. },
  31067. {
  31068. name: "Nano",
  31069. height: math.unit(1.5, "mm")
  31070. },
  31071. {
  31072. name: "Micro",
  31073. height: math.unit(5.3, "cm"),
  31074. default: true
  31075. },
  31076. {
  31077. name: "Normal",
  31078. height: math.unit(1.85, "meters")
  31079. },
  31080. {
  31081. name: "Macro",
  31082. height: math.unit(64.7, "meters")
  31083. },
  31084. {
  31085. name: "Megamacro",
  31086. height: math.unit(2.26, "km")
  31087. },
  31088. {
  31089. name: "Gigamacro",
  31090. height: math.unit(79, "km")
  31091. },
  31092. {
  31093. name: "Teramacro",
  31094. height: math.unit(2765, "km")
  31095. },
  31096. {
  31097. name: "Petamacro",
  31098. height: math.unit(96678, "km")
  31099. },
  31100. ]
  31101. ))
  31102. characterMakers.push(() => makeCharacter(
  31103. { name: "Zeel", species: ["kobold", "raptor"], tags: ["anthro"] },
  31104. {
  31105. front: {
  31106. height: math.unit(30, "meters"),
  31107. weight: math.unit(400, "tons"),
  31108. name: "Front",
  31109. image: {
  31110. source: "./media/characters/zeel/front.svg",
  31111. extra: 2599/2599,
  31112. bottom: 226/2825
  31113. }
  31114. },
  31115. },
  31116. [
  31117. {
  31118. name: "Macro",
  31119. height: math.unit(30, "meters"),
  31120. default: true
  31121. },
  31122. ]
  31123. ))
  31124. characterMakers.push(() => makeCharacter(
  31125. { name: "Tarn", species: ["wolf"], tags: ["anthro"] },
  31126. {
  31127. front: {
  31128. height: math.unit(6 + 7/12, "feet"),
  31129. weight: math.unit(210, "lb"),
  31130. name: "Front",
  31131. image: {
  31132. source: "./media/characters/tarn/front.svg",
  31133. extra: 3517/3220,
  31134. bottom: 91/3608
  31135. }
  31136. },
  31137. back: {
  31138. height: math.unit(6 + 7/12, "feet"),
  31139. weight: math.unit(210, "lb"),
  31140. name: "Back",
  31141. image: {
  31142. source: "./media/characters/tarn/back.svg",
  31143. extra: 3566/3241,
  31144. bottom: 34/3600
  31145. }
  31146. },
  31147. dick: {
  31148. height: math.unit(1.65, "feet"),
  31149. name: "Dick",
  31150. image: {
  31151. source: "./media/characters/tarn/dick.svg"
  31152. }
  31153. },
  31154. paw: {
  31155. height: math.unit(1.80, "feet"),
  31156. name: "Paw",
  31157. image: {
  31158. source: "./media/characters/tarn/paw.svg"
  31159. }
  31160. },
  31161. tongue: {
  31162. height: math.unit(0.97, "feet"),
  31163. name: "Tongue",
  31164. image: {
  31165. source: "./media/characters/tarn/tongue.svg"
  31166. }
  31167. },
  31168. },
  31169. [
  31170. {
  31171. name: "Micro",
  31172. height: math.unit(4, "inches")
  31173. },
  31174. {
  31175. name: "Normal",
  31176. height: math.unit(6 + 7/12, "feet"),
  31177. default: true
  31178. },
  31179. {
  31180. name: "Macro",
  31181. height: math.unit(300, "feet")
  31182. },
  31183. ]
  31184. ))
  31185. characterMakers.push(() => makeCharacter(
  31186. { name: "Leonidas \"Leon\" Nisitalia", species: ["cat"], tags: ["anthro"] },
  31187. {
  31188. front: {
  31189. height: math.unit(5 + 7/12, "feet"),
  31190. weight: math.unit(80, "kg"),
  31191. name: "Front",
  31192. image: {
  31193. source: "./media/characters/leonidas-leon-nisitalia/front.svg",
  31194. extra: 3023/2865,
  31195. bottom: 33/3056
  31196. }
  31197. },
  31198. back: {
  31199. height: math.unit(5 + 7/12, "feet"),
  31200. weight: math.unit(80, "kg"),
  31201. name: "Back",
  31202. image: {
  31203. source: "./media/characters/leonidas-leon-nisitalia/back.svg",
  31204. extra: 3020/2886,
  31205. bottom: 30/3050
  31206. }
  31207. },
  31208. dick: {
  31209. height: math.unit(0.98, "feet"),
  31210. name: "Dick",
  31211. image: {
  31212. source: "./media/characters/leonidas-leon-nisitalia/dick.svg"
  31213. }
  31214. },
  31215. anatomy: {
  31216. height: math.unit(2.86, "feet"),
  31217. name: "Anatomy",
  31218. image: {
  31219. source: "./media/characters/leonidas-leon-nisitalia/anatomy.svg"
  31220. }
  31221. },
  31222. },
  31223. [
  31224. {
  31225. name: "Really Small",
  31226. height: math.unit(2, "inches")
  31227. },
  31228. {
  31229. name: "Micro",
  31230. height: math.unit(5.583, "inches")
  31231. },
  31232. {
  31233. name: "Normal",
  31234. height: math.unit(5 + 7/12, "feet"),
  31235. default: true
  31236. },
  31237. {
  31238. name: "Macro",
  31239. height: math.unit(67, "feet")
  31240. },
  31241. {
  31242. name: "Megamacro",
  31243. height: math.unit(134, "feet")
  31244. },
  31245. ]
  31246. ))
  31247. characterMakers.push(() => makeCharacter(
  31248. { name: "Sally", species: ["enderman"], tags: ["anthro"] },
  31249. {
  31250. front: {
  31251. height: math.unit(9, "feet"),
  31252. weight: math.unit(120, "lb"),
  31253. name: "Front",
  31254. image: {
  31255. source: "./media/characters/sally/front.svg",
  31256. extra: 1506/1349,
  31257. bottom: 66/1572
  31258. }
  31259. },
  31260. },
  31261. [
  31262. {
  31263. name: "Normal",
  31264. height: math.unit(9, "feet"),
  31265. default: true
  31266. },
  31267. ]
  31268. ))
  31269. characterMakers.push(() => makeCharacter(
  31270. { name: "Owen", species: ["bear"], tags: ["anthro"] },
  31271. {
  31272. front: {
  31273. height: math.unit(8, "feet"),
  31274. weight: math.unit(900, "lb"),
  31275. name: "Front",
  31276. image: {
  31277. source: "./media/characters/owen/front.svg",
  31278. extra: 1761/1657,
  31279. bottom: 74/1835
  31280. }
  31281. },
  31282. side: {
  31283. height: math.unit(8, "feet"),
  31284. weight: math.unit(900, "lb"),
  31285. name: "Side",
  31286. image: {
  31287. source: "./media/characters/owen/side.svg",
  31288. extra: 1797/1734,
  31289. bottom: 30/1827
  31290. }
  31291. },
  31292. back: {
  31293. height: math.unit(8, "feet"),
  31294. weight: math.unit(900, "lb"),
  31295. name: "Back",
  31296. image: {
  31297. source: "./media/characters/owen/back.svg",
  31298. extra: 1796/1706,
  31299. bottom: 59/1855
  31300. }
  31301. },
  31302. maw: {
  31303. height: math.unit(1.76, "feet"),
  31304. name: "Maw",
  31305. image: {
  31306. source: "./media/characters/owen/maw.svg"
  31307. }
  31308. },
  31309. },
  31310. [
  31311. {
  31312. name: "Normal",
  31313. height: math.unit(8, "feet"),
  31314. default: true
  31315. },
  31316. ]
  31317. ))
  31318. characterMakers.push(() => makeCharacter(
  31319. { name: "Ryth", species: ["gremlin"], tags: ["anthro"] },
  31320. {
  31321. front: {
  31322. height: math.unit(4, "feet"),
  31323. weight: math.unit(400, "lb"),
  31324. name: "Front",
  31325. image: {
  31326. source: "./media/characters/ryth/front.svg",
  31327. extra: 876/691,
  31328. bottom: 25/901
  31329. }
  31330. },
  31331. },
  31332. [
  31333. {
  31334. name: "Normal",
  31335. height: math.unit(4, "feet"),
  31336. default: true
  31337. },
  31338. ]
  31339. ))
  31340. characterMakers.push(() => makeCharacter(
  31341. { name: "Necrolance", species: ["dragonsune"], tags: ["anthro"] },
  31342. {
  31343. front: {
  31344. height: math.unit(7, "feet"),
  31345. weight: math.unit(180, "lb"),
  31346. name: "Front",
  31347. image: {
  31348. source: "./media/characters/necrolance/front.svg",
  31349. extra: 1062/947,
  31350. bottom: 41/1103
  31351. }
  31352. },
  31353. back: {
  31354. height: math.unit(7, "feet"),
  31355. weight: math.unit(180, "lb"),
  31356. name: "Back",
  31357. image: {
  31358. source: "./media/characters/necrolance/back.svg",
  31359. extra: 1045/984,
  31360. bottom: 14/1059
  31361. }
  31362. },
  31363. wing: {
  31364. height: math.unit(2.67, "feet"),
  31365. name: "Wing",
  31366. image: {
  31367. source: "./media/characters/necrolance/wing.svg"
  31368. }
  31369. },
  31370. },
  31371. [
  31372. {
  31373. name: "Normal",
  31374. height: math.unit(7, "feet"),
  31375. default: true
  31376. },
  31377. ]
  31378. ))
  31379. characterMakers.push(() => makeCharacter(
  31380. { name: "Tyler", species: ["naga"], tags: ["naga"] },
  31381. {
  31382. front: {
  31383. height: math.unit(76, "meters"),
  31384. weight: math.unit(30000, "tons"),
  31385. name: "Front",
  31386. image: {
  31387. source: "./media/characters/tyler/front.svg",
  31388. extra: 1640/1640,
  31389. bottom: 114/1754
  31390. }
  31391. },
  31392. },
  31393. [
  31394. {
  31395. name: "Macro",
  31396. height: math.unit(76, "meters"),
  31397. default: true
  31398. },
  31399. ]
  31400. ))
  31401. characterMakers.push(() => makeCharacter(
  31402. { name: "Icey", species: ["cat"], tags: ["anthro"] },
  31403. {
  31404. front: {
  31405. height: math.unit(4 + 11/12, "feet"),
  31406. weight: math.unit(132, "lb"),
  31407. name: "Front",
  31408. image: {
  31409. source: "./media/characters/icey/front.svg",
  31410. extra: 2750/2550,
  31411. bottom: 33/2783
  31412. }
  31413. },
  31414. back: {
  31415. height: math.unit(4 + 11/12, "feet"),
  31416. weight: math.unit(132, "lb"),
  31417. name: "Back",
  31418. image: {
  31419. source: "./media/characters/icey/back.svg",
  31420. extra: 2624/2481,
  31421. bottom: 35/2659
  31422. }
  31423. },
  31424. },
  31425. [
  31426. {
  31427. name: "Normal",
  31428. height: math.unit(4 + 11/12, "feet"),
  31429. default: true
  31430. },
  31431. ]
  31432. ))
  31433. characterMakers.push(() => makeCharacter(
  31434. { name: "Smile", species: ["skunk", "ghost"], tags: ["anthro"] },
  31435. {
  31436. front: {
  31437. height: math.unit(100, "feet"),
  31438. weight: math.unit(0, "lb"),
  31439. name: "Front",
  31440. image: {
  31441. source: "./media/characters/smile/front.svg",
  31442. extra: 2983/2912,
  31443. bottom: 162/3145
  31444. }
  31445. },
  31446. back: {
  31447. height: math.unit(100, "feet"),
  31448. weight: math.unit(0, "lb"),
  31449. name: "Back",
  31450. image: {
  31451. source: "./media/characters/smile/back.svg",
  31452. extra: 3143/3031,
  31453. bottom: 91/3234
  31454. }
  31455. },
  31456. head: {
  31457. height: math.unit(26.3, "feet"),
  31458. weight: math.unit(0, "lb"),
  31459. name: "Head",
  31460. image: {
  31461. source: "./media/characters/smile/head.svg"
  31462. }
  31463. },
  31464. collar: {
  31465. height: math.unit(5.3, "feet"),
  31466. weight: math.unit(0, "lb"),
  31467. name: "Collar",
  31468. image: {
  31469. source: "./media/characters/smile/collar.svg"
  31470. }
  31471. },
  31472. },
  31473. [
  31474. {
  31475. name: "Macro",
  31476. height: math.unit(100, "feet"),
  31477. default: true
  31478. },
  31479. ]
  31480. ))
  31481. characterMakers.push(() => makeCharacter(
  31482. { name: "Arimphae", species: ["dragon"], tags: ["feral"] },
  31483. {
  31484. dragon: {
  31485. height: math.unit(26, "feet"),
  31486. weight: math.unit(36, "tons"),
  31487. name: "Dragon",
  31488. image: {
  31489. source: "./media/characters/arimphae/dragon.svg",
  31490. extra: 1574/983,
  31491. bottom: 357/1931
  31492. }
  31493. },
  31494. drake: {
  31495. height: math.unit(9, "feet"),
  31496. weight: math.unit(1.5, "tons"),
  31497. name: "Drake",
  31498. image: {
  31499. source: "./media/characters/arimphae/drake.svg",
  31500. extra: 1120/925,
  31501. bottom: 435/1555
  31502. }
  31503. },
  31504. },
  31505. [
  31506. {
  31507. name: "Small",
  31508. height: math.unit(26*5/9, "feet")
  31509. },
  31510. {
  31511. name: "Normal",
  31512. height: math.unit(26, "feet"),
  31513. default: true
  31514. },
  31515. ]
  31516. ))
  31517. characterMakers.push(() => makeCharacter(
  31518. { name: "Xander", species: ["false-vampire-bat"], tags: ["anthro"] },
  31519. {
  31520. front: {
  31521. height: math.unit(8 + 9/12, "feet"),
  31522. name: "Front",
  31523. image: {
  31524. source: "./media/characters/xander/front.svg",
  31525. extra: 848/673,
  31526. bottom: 62/910
  31527. }
  31528. },
  31529. },
  31530. [
  31531. {
  31532. name: "Normal",
  31533. height: math.unit(8 + 9/12, "feet"),
  31534. default: true
  31535. },
  31536. {
  31537. name: "Gaze Grabber",
  31538. height: math.unit(13 + 8/12, "feet")
  31539. },
  31540. {
  31541. name: "Jaw Dropper",
  31542. height: math.unit(27, "feet")
  31543. },
  31544. {
  31545. name: "Show Stopper",
  31546. height: math.unit(136, "feet")
  31547. },
  31548. {
  31549. name: "Superstar",
  31550. height: math.unit(1.9e6, "miles")
  31551. },
  31552. ]
  31553. ))
  31554. characterMakers.push(() => makeCharacter(
  31555. { name: "Osiris", species: ["plush", "dragon"], tags: ["feral"] },
  31556. {
  31557. side: {
  31558. height: math.unit(2100, "feet"),
  31559. name: "Side",
  31560. image: {
  31561. source: "./media/characters/osiris/side.svg",
  31562. extra: 1105/939,
  31563. bottom: 167/1272
  31564. }
  31565. },
  31566. },
  31567. [
  31568. {
  31569. name: "Macro",
  31570. height: math.unit(2100, "feet"),
  31571. default: true
  31572. },
  31573. ]
  31574. ))
  31575. characterMakers.push(() => makeCharacter(
  31576. { name: "Rhys Londe", species: ["dragon"], tags: ["anthro"] },
  31577. {
  31578. front: {
  31579. height: math.unit(6 + 8/12, "feet"),
  31580. weight: math.unit(225, "lb"),
  31581. name: "Front",
  31582. image: {
  31583. source: "./media/characters/rhys-londe/front.svg",
  31584. extra: 2258/2141,
  31585. bottom: 188/2446
  31586. }
  31587. },
  31588. back: {
  31589. height: math.unit(6 + 8/12, "feet"),
  31590. weight: math.unit(225, "lb"),
  31591. name: "Back",
  31592. image: {
  31593. source: "./media/characters/rhys-londe/back.svg",
  31594. extra: 2237/2137,
  31595. bottom: 63/2300
  31596. }
  31597. },
  31598. frontNsfw: {
  31599. height: math.unit(6 + 8/12, "feet"),
  31600. weight: math.unit(225, "lb"),
  31601. name: "Front (NSFW)",
  31602. image: {
  31603. source: "./media/characters/rhys-londe/front-nsfw.svg",
  31604. extra: 2258/2141,
  31605. bottom: 188/2446
  31606. }
  31607. },
  31608. backNsfw: {
  31609. height: math.unit(6 + 8/12, "feet"),
  31610. weight: math.unit(225, "lb"),
  31611. name: "Back (NSFW)",
  31612. image: {
  31613. source: "./media/characters/rhys-londe/back-nsfw.svg",
  31614. extra: 2237/2137,
  31615. bottom: 63/2300
  31616. }
  31617. },
  31618. dick: {
  31619. height: math.unit(30, "inches"),
  31620. name: "Dick",
  31621. image: {
  31622. source: "./media/characters/rhys-londe/dick.svg"
  31623. }
  31624. },
  31625. maw: {
  31626. height: math.unit(1.6, "feet"),
  31627. name: "Maw",
  31628. image: {
  31629. source: "./media/characters/rhys-londe/maw.svg"
  31630. }
  31631. },
  31632. },
  31633. [
  31634. {
  31635. name: "Normal",
  31636. height: math.unit(6 + 8/12, "feet"),
  31637. default: true
  31638. },
  31639. ]
  31640. ))
  31641. characterMakers.push(() => makeCharacter(
  31642. { name: "Taivas Ensim", species: ["kobold"], tags: ["anthro"] },
  31643. {
  31644. front: {
  31645. height: math.unit(3 + 10/12, "feet"),
  31646. weight: math.unit(90, "lb"),
  31647. name: "Front",
  31648. image: {
  31649. source: "./media/characters/taivas-ensim/front.svg",
  31650. extra: 1327/1216,
  31651. bottom: 96/1423
  31652. }
  31653. },
  31654. back: {
  31655. height: math.unit(3 + 10/12, "feet"),
  31656. weight: math.unit(90, "lb"),
  31657. name: "Back",
  31658. image: {
  31659. source: "./media/characters/taivas-ensim/back.svg",
  31660. extra: 1355/1247,
  31661. bottom: 11/1366
  31662. }
  31663. },
  31664. frontNsfw: {
  31665. height: math.unit(3 + 10/12, "feet"),
  31666. weight: math.unit(90, "lb"),
  31667. name: "Front (NSFW)",
  31668. image: {
  31669. source: "./media/characters/taivas-ensim/front-nsfw.svg",
  31670. extra: 1327/1216,
  31671. bottom: 96/1423
  31672. }
  31673. },
  31674. backNsfw: {
  31675. height: math.unit(3 + 10/12, "feet"),
  31676. weight: math.unit(90, "lb"),
  31677. name: "Back (NSFW)",
  31678. image: {
  31679. source: "./media/characters/taivas-ensim/back-nsfw.svg",
  31680. extra: 1355/1247,
  31681. bottom: 11/1366
  31682. }
  31683. },
  31684. },
  31685. [
  31686. {
  31687. name: "Normal",
  31688. height: math.unit(3 + 10/12, "feet"),
  31689. default: true
  31690. },
  31691. ]
  31692. ))
  31693. characterMakers.push(() => makeCharacter(
  31694. { name: "Byliss", species: ["dragon", "succubus"], tags: ["anthro"] },
  31695. {
  31696. front: {
  31697. height: math.unit(9 + 6/12, "feet"),
  31698. weight: math.unit(940, "lb"),
  31699. name: "Front",
  31700. image: {
  31701. source: "./media/characters/byliss/front.svg",
  31702. extra: 1327/1290,
  31703. bottom: 82/1409
  31704. }
  31705. },
  31706. back: {
  31707. height: math.unit(9 + 6/12, "feet"),
  31708. weight: math.unit(940, "lb"),
  31709. name: "Back",
  31710. image: {
  31711. source: "./media/characters/byliss/back.svg",
  31712. extra: 1376/1349,
  31713. bottom: 9/1385
  31714. }
  31715. },
  31716. frontNsfw: {
  31717. height: math.unit(9 + 6/12, "feet"),
  31718. weight: math.unit(940, "lb"),
  31719. name: "Front (NSFW)",
  31720. image: {
  31721. source: "./media/characters/byliss/front-nsfw.svg",
  31722. extra: 1327/1290,
  31723. bottom: 82/1409
  31724. }
  31725. },
  31726. backNsfw: {
  31727. height: math.unit(9 + 6/12, "feet"),
  31728. weight: math.unit(940, "lb"),
  31729. name: "Back (NSFW)",
  31730. image: {
  31731. source: "./media/characters/byliss/back-nsfw.svg",
  31732. extra: 1376/1349,
  31733. bottom: 9/1385
  31734. }
  31735. },
  31736. },
  31737. [
  31738. {
  31739. name: "Normal",
  31740. height: math.unit(9 + 6/12, "feet"),
  31741. default: true
  31742. },
  31743. ]
  31744. ))
  31745. characterMakers.push(() => makeCharacter(
  31746. { name: "Noraly", species: ["mia"], tags: ["anthro"] },
  31747. {
  31748. front: {
  31749. height: math.unit(5 + 2/12, "feet"),
  31750. weight: math.unit(200, "lb"),
  31751. name: "Front",
  31752. image: {
  31753. source: "./media/characters/noraly/front.svg",
  31754. extra: 4985/4773,
  31755. bottom: 150/5135
  31756. }
  31757. },
  31758. full: {
  31759. height: math.unit(5 + 2/12, "feet"),
  31760. weight: math.unit(164, "lb"),
  31761. name: "Full",
  31762. image: {
  31763. source: "./media/characters/noraly/full.svg",
  31764. extra: 1114/1059,
  31765. bottom: 35/1149
  31766. }
  31767. },
  31768. fuller: {
  31769. height: math.unit(5 + 2/12, "feet"),
  31770. weight: math.unit(230, "lb"),
  31771. name: "Fuller",
  31772. image: {
  31773. source: "./media/characters/noraly/fuller.svg",
  31774. extra: 1114/1059,
  31775. bottom: 35/1149
  31776. }
  31777. },
  31778. fullest: {
  31779. height: math.unit(5 + 2/12, "feet"),
  31780. weight: math.unit(300, "lb"),
  31781. name: "Fullest",
  31782. image: {
  31783. source: "./media/characters/noraly/fullest.svg",
  31784. extra: 1114/1059,
  31785. bottom: 35/1149
  31786. }
  31787. },
  31788. },
  31789. [
  31790. {
  31791. name: "Normal",
  31792. height: math.unit(5 + 2/12, "feet"),
  31793. default: true
  31794. },
  31795. ]
  31796. ))
  31797. characterMakers.push(() => makeCharacter(
  31798. { name: "Pera", species: ["snake"], tags: ["naga"] },
  31799. {
  31800. front: {
  31801. height: math.unit(5 + 2/12, "feet"),
  31802. weight: math.unit(210, "lb"),
  31803. name: "Front",
  31804. image: {
  31805. source: "./media/characters/pera/front.svg",
  31806. extra: 1560/1531,
  31807. bottom: 165/1725
  31808. }
  31809. },
  31810. back: {
  31811. height: math.unit(5 + 2/12, "feet"),
  31812. weight: math.unit(210, "lb"),
  31813. name: "Back",
  31814. image: {
  31815. source: "./media/characters/pera/back.svg",
  31816. extra: 1523/1493,
  31817. bottom: 152/1675
  31818. }
  31819. },
  31820. dick: {
  31821. height: math.unit(2.4, "feet"),
  31822. name: "Dick",
  31823. image: {
  31824. source: "./media/characters/pera/dick.svg"
  31825. }
  31826. },
  31827. },
  31828. [
  31829. {
  31830. name: "Normal",
  31831. height: math.unit(5 + 2/12, "feet"),
  31832. default: true
  31833. },
  31834. ]
  31835. ))
  31836. characterMakers.push(() => makeCharacter(
  31837. { name: "Julian", species: ["rainbow"], tags: ["anthro"] },
  31838. {
  31839. front: {
  31840. height: math.unit(12, "feet"),
  31841. weight: math.unit(3200, "lb"),
  31842. name: "Front",
  31843. image: {
  31844. source: "./media/characters/julian/front.svg",
  31845. extra: 2962/2701,
  31846. bottom: 184/3146
  31847. }
  31848. },
  31849. maw: {
  31850. height: math.unit(5.35, "feet"),
  31851. name: "Maw",
  31852. image: {
  31853. source: "./media/characters/julian/maw.svg"
  31854. }
  31855. },
  31856. paw: {
  31857. height: math.unit(3.07, "feet"),
  31858. name: "Paw",
  31859. image: {
  31860. source: "./media/characters/julian/paw.svg"
  31861. }
  31862. },
  31863. },
  31864. [
  31865. {
  31866. name: "Default",
  31867. height: math.unit(12, "feet"),
  31868. default: true
  31869. },
  31870. {
  31871. name: "Big",
  31872. height: math.unit(50, "feet")
  31873. },
  31874. {
  31875. name: "Really Big",
  31876. height: math.unit(1, "mile")
  31877. },
  31878. {
  31879. name: "Extremely Big",
  31880. height: math.unit(100, "miles")
  31881. },
  31882. {
  31883. name: "Planet Hugger",
  31884. height: math.unit(200, "megameters")
  31885. },
  31886. {
  31887. name: "Unreasonably Big",
  31888. height: math.unit(1e300, "meters")
  31889. },
  31890. ]
  31891. ))
  31892. characterMakers.push(() => makeCharacter(
  31893. { name: "Pi", species: ["solgaleo"], tags: ["anthro", "goo"] },
  31894. {
  31895. solgooleo: {
  31896. height: math.unit(4, "meters"),
  31897. weight: math.unit(6000*1.5, "kg"),
  31898. volume: math.unit(6000, "liters"),
  31899. name: "Solgooleo",
  31900. image: {
  31901. source: "./media/characters/pi/solgooleo.svg",
  31902. extra: 388/331,
  31903. bottom: 29/417
  31904. }
  31905. },
  31906. },
  31907. [
  31908. {
  31909. name: "Normal",
  31910. height: math.unit(4, "meters"),
  31911. default: true
  31912. },
  31913. ]
  31914. ))
  31915. characterMakers.push(() => makeCharacter(
  31916. { name: "Shaun", species: ["dragon"], tags: ["anthro"] },
  31917. {
  31918. front: {
  31919. height: math.unit(8 + 2/12, "feet"),
  31920. weight: math.unit(4, "tons"),
  31921. name: "Front",
  31922. image: {
  31923. source: "./media/characters/shaun/front.svg",
  31924. extra: 1550/1505,
  31925. bottom: 353/1903
  31926. }
  31927. },
  31928. },
  31929. [
  31930. {
  31931. name: "Lorg",
  31932. height: math.unit(8 + 2/12, "feet"),
  31933. default: true
  31934. },
  31935. ]
  31936. ))
  31937. characterMakers.push(() => makeCharacter(
  31938. { name: "Sini", species: ["dragon"], tags: ["anthro", "feral"] },
  31939. {
  31940. front: {
  31941. height: math.unit(7, "feet"),
  31942. name: "Front",
  31943. image: {
  31944. source: "./media/characters/sini/front.svg",
  31945. extra: 726/678,
  31946. bottom: 35/761
  31947. }
  31948. },
  31949. back: {
  31950. height: math.unit(7, "feet"),
  31951. name: "Back",
  31952. image: {
  31953. source: "./media/characters/sini/back.svg",
  31954. extra: 743/701,
  31955. bottom: 12/755
  31956. }
  31957. },
  31958. mawAnthro: {
  31959. height: math.unit(2.14, "feet"),
  31960. name: "Maw (Anthro)",
  31961. image: {
  31962. source: "./media/characters/sini/maw-anthro.svg"
  31963. }
  31964. },
  31965. dick: {
  31966. height: math.unit(1.45, "feet"),
  31967. name: "Dick (Anthro)",
  31968. image: {
  31969. source: "./media/characters/sini/dick-anthro.svg"
  31970. }
  31971. },
  31972. feral: {
  31973. height: math.unit(13, "feet"),
  31974. name: "Feral",
  31975. image: {
  31976. source: "./media/characters/sini/feral.svg",
  31977. extra: 814/605,
  31978. bottom: 11/825
  31979. }
  31980. },
  31981. mawFeral: {
  31982. height: math.unit(4.6, "feet"),
  31983. name: "Maw-feral",
  31984. image: {
  31985. source: "./media/characters/sini/maw-feral.svg"
  31986. }
  31987. },
  31988. footFeral: {
  31989. height: math.unit(4.2, "feet"),
  31990. name: "Foot-feral",
  31991. image: {
  31992. source: "./media/characters/sini/foot-feral.svg"
  31993. }
  31994. },
  31995. },
  31996. [
  31997. {
  31998. name: "Normal",
  31999. height: math.unit(7, "feet"),
  32000. default: true
  32001. },
  32002. ]
  32003. ))
  32004. characterMakers.push(() => makeCharacter(
  32005. { name: "Raylldo", species: ["dragon"], tags: ["feral"] },
  32006. {
  32007. side: {
  32008. height: math.unit(13, "meters"),
  32009. weight: math.unit(9072, "kg"),
  32010. name: "Side",
  32011. image: {
  32012. source: "./media/characters/raylldo/side.svg",
  32013. extra: 403/344,
  32014. bottom: 42/445
  32015. }
  32016. },
  32017. leaping: {
  32018. height: math.unit(12.3, "meters"),
  32019. weight: math.unit(9072, "kg"),
  32020. name: "Leaping",
  32021. image: {
  32022. source: "./media/characters/raylldo/leaping.svg",
  32023. extra: 470/249,
  32024. bottom: 13/483
  32025. }
  32026. },
  32027. flying: {
  32028. height: math.unit(18, "meters"),
  32029. weight: math.unit(9072, "kg"),
  32030. name: "Flying",
  32031. image: {
  32032. source: "./media/characters/raylldo/flying.svg"
  32033. }
  32034. },
  32035. head: {
  32036. height: math.unit(5.85, "meters"),
  32037. name: "Head",
  32038. image: {
  32039. source: "./media/characters/raylldo/head.svg"
  32040. }
  32041. },
  32042. maw: {
  32043. height: math.unit(5.32, "meters"),
  32044. name: "Maw",
  32045. image: {
  32046. source: "./media/characters/raylldo/maw.svg"
  32047. }
  32048. },
  32049. eye: {
  32050. height: math.unit(0.54, "meters"),
  32051. name: "Eye",
  32052. image: {
  32053. source: "./media/characters/raylldo/eye.svg"
  32054. }
  32055. },
  32056. },
  32057. [
  32058. {
  32059. name: "Normal",
  32060. height: math.unit(13, "meters"),
  32061. default: true
  32062. },
  32063. ]
  32064. ))
  32065. characterMakers.push(() => makeCharacter(
  32066. { name: "Glint", species: ["lucent-nargacuga"], tags: ["anthro", "feral"] },
  32067. {
  32068. anthroFront: {
  32069. height: math.unit(9, "feet"),
  32070. weight: math.unit(600, "lb"),
  32071. name: "Anthro (Front)",
  32072. image: {
  32073. source: "./media/characters/glint/anthro-front.svg",
  32074. extra: 1097/1018,
  32075. bottom: 28/1125
  32076. }
  32077. },
  32078. anthroBack: {
  32079. height: math.unit(9, "feet"),
  32080. weight: math.unit(600, "lb"),
  32081. name: "Anthro (Back)",
  32082. image: {
  32083. source: "./media/characters/glint/anthro-back.svg",
  32084. extra: 1154/997,
  32085. bottom: 36/1190
  32086. }
  32087. },
  32088. feral: {
  32089. height: math.unit(11, "feet"),
  32090. weight: math.unit(50000, "lb"),
  32091. name: "Feral",
  32092. image: {
  32093. source: "./media/characters/glint/feral.svg",
  32094. extra: 3035/1585,
  32095. bottom: 1169/4204
  32096. }
  32097. },
  32098. dickAnthro: {
  32099. height: math.unit(0.7, "meters"),
  32100. name: "Dick (Anthro)",
  32101. image: {
  32102. source: "./media/characters/glint/dick-anthro.svg"
  32103. }
  32104. },
  32105. dickFeral: {
  32106. height: math.unit(2.65, "meters"),
  32107. name: "Dick (Feral)",
  32108. image: {
  32109. source: "./media/characters/glint/dick-feral.svg"
  32110. }
  32111. },
  32112. slitHidden: {
  32113. height: math.unit(5.85, "meters"),
  32114. name: "Slit (Hidden)",
  32115. image: {
  32116. source: "./media/characters/glint/slit-hidden.svg"
  32117. }
  32118. },
  32119. slitErect: {
  32120. height: math.unit(5.85, "meters"),
  32121. name: "Slit (Erect)",
  32122. image: {
  32123. source: "./media/characters/glint/slit-erect.svg"
  32124. }
  32125. },
  32126. mawAnthro: {
  32127. height: math.unit(0.63, "meters"),
  32128. name: "Maw (Anthro)",
  32129. image: {
  32130. source: "./media/characters/glint/maw.svg"
  32131. }
  32132. },
  32133. mawFeral: {
  32134. height: math.unit(2.89, "meters"),
  32135. name: "Maw (Feral)",
  32136. image: {
  32137. source: "./media/characters/glint/maw.svg"
  32138. }
  32139. },
  32140. },
  32141. [
  32142. {
  32143. name: "Normal",
  32144. height: math.unit(9, "feet"),
  32145. default: true
  32146. },
  32147. ]
  32148. ))
  32149. characterMakers.push(() => makeCharacter(
  32150. { name: "Kairne", species: ["dragon"], tags: ["feral"] },
  32151. {
  32152. side: {
  32153. height: math.unit(15, "feet"),
  32154. weight: math.unit(5000, "kg"),
  32155. name: "Side",
  32156. image: {
  32157. source: "./media/characters/kairne/side.svg",
  32158. extra: 979/811,
  32159. bottom: 13/992
  32160. }
  32161. },
  32162. front: {
  32163. height: math.unit(15, "feet"),
  32164. weight: math.unit(5000, "kg"),
  32165. name: "Front",
  32166. image: {
  32167. source: "./media/characters/kairne/front.svg",
  32168. extra: 908/814,
  32169. bottom: 26/934
  32170. }
  32171. },
  32172. sideNsfw: {
  32173. height: math.unit(15, "feet"),
  32174. weight: math.unit(5000, "kg"),
  32175. name: "Side (NSFW)",
  32176. image: {
  32177. source: "./media/characters/kairne/side-nsfw.svg",
  32178. extra: 979/811,
  32179. bottom: 13/992
  32180. }
  32181. },
  32182. frontNsfw: {
  32183. height: math.unit(15, "feet"),
  32184. weight: math.unit(5000, "kg"),
  32185. name: "Front (NSFW)",
  32186. image: {
  32187. source: "./media/characters/kairne/front-nsfw.svg",
  32188. extra: 908/814,
  32189. bottom: 26/934
  32190. }
  32191. },
  32192. dickCaged: {
  32193. height: math.unit(0.65, "meters"),
  32194. name: "Dick-caged",
  32195. image: {
  32196. source: "./media/characters/kairne/dick-caged.svg"
  32197. }
  32198. },
  32199. dick: {
  32200. height: math.unit(0.79, "meters"),
  32201. name: "Dick",
  32202. image: {
  32203. source: "./media/characters/kairne/dick.svg"
  32204. }
  32205. },
  32206. genitals: {
  32207. height: math.unit(1.29, "meters"),
  32208. name: "Genitals",
  32209. image: {
  32210. source: "./media/characters/kairne/genitals.svg"
  32211. }
  32212. },
  32213. maw: {
  32214. height: math.unit(1.73, "meters"),
  32215. name: "Maw",
  32216. image: {
  32217. source: "./media/characters/kairne/maw.svg"
  32218. }
  32219. },
  32220. },
  32221. [
  32222. {
  32223. name: "Normal",
  32224. height: math.unit(15, "feet"),
  32225. default: true
  32226. },
  32227. ]
  32228. ))
  32229. characterMakers.push(() => makeCharacter(
  32230. { name: "Biscuit (Jackal)", species: ["jackal"], tags: ["anthro"] },
  32231. {
  32232. front: {
  32233. height: math.unit(5 + 8/12, "feet"),
  32234. weight: math.unit(139, "lb"),
  32235. name: "Front",
  32236. image: {
  32237. source: "./media/characters/biscuit-jackal/front.svg",
  32238. extra: 2106/1961,
  32239. bottom: 58/2164
  32240. }
  32241. },
  32242. back: {
  32243. height: math.unit(5 + 8/12, "feet"),
  32244. weight: math.unit(139, "lb"),
  32245. name: "Back",
  32246. image: {
  32247. source: "./media/characters/biscuit-jackal/back.svg",
  32248. extra: 2132/1976,
  32249. bottom: 57/2189
  32250. }
  32251. },
  32252. werejackal: {
  32253. height: math.unit(6 + 3/12, "feet"),
  32254. weight: math.unit(188, "lb"),
  32255. name: "Werejackal",
  32256. image: {
  32257. source: "./media/characters/biscuit-jackal/werejackal.svg",
  32258. extra: 2373/2178,
  32259. bottom: 53/2426
  32260. }
  32261. },
  32262. },
  32263. [
  32264. {
  32265. name: "Normal",
  32266. height: math.unit(5 + 8/12, "feet"),
  32267. default: true
  32268. },
  32269. ]
  32270. ))
  32271. characterMakers.push(() => makeCharacter(
  32272. { name: "Tayra White", species: ["human", "chimera"], tags: ["anthro"] },
  32273. {
  32274. front: {
  32275. height: math.unit(140, "cm"),
  32276. weight: math.unit(45, "kg"),
  32277. name: "Front",
  32278. image: {
  32279. source: "./media/characters/tayra-white/front.svg",
  32280. extra: 2229/2192,
  32281. bottom: 75/2304
  32282. }
  32283. },
  32284. },
  32285. [
  32286. {
  32287. name: "Normal",
  32288. height: math.unit(140, "cm"),
  32289. default: true
  32290. },
  32291. ]
  32292. ))
  32293. characterMakers.push(() => makeCharacter(
  32294. { name: "Scoop", species: ["mouse"], tags: ["anthro"] },
  32295. {
  32296. front: {
  32297. height: math.unit(4 + 5/12, "feet"),
  32298. name: "Front",
  32299. image: {
  32300. source: "./media/characters/scoop/front.svg",
  32301. extra: 1257/1136,
  32302. bottom: 69/1326
  32303. }
  32304. },
  32305. back: {
  32306. height: math.unit(4 + 5/12, "feet"),
  32307. name: "Back",
  32308. image: {
  32309. source: "./media/characters/scoop/back.svg",
  32310. extra: 1321/1152,
  32311. bottom: 32/1353
  32312. }
  32313. },
  32314. maw: {
  32315. height: math.unit(0.68, "feet"),
  32316. name: "Maw",
  32317. image: {
  32318. source: "./media/characters/scoop/maw.svg"
  32319. }
  32320. },
  32321. },
  32322. [
  32323. {
  32324. name: "Really Small",
  32325. height: math.unit(1, "mm")
  32326. },
  32327. {
  32328. name: "Micro",
  32329. height: math.unit(1, "inch")
  32330. },
  32331. {
  32332. name: "Normal",
  32333. height: math.unit(4 + 5/12, "feet"),
  32334. default: true
  32335. },
  32336. {
  32337. name: "Macro",
  32338. height: math.unit(200, "feet")
  32339. },
  32340. {
  32341. name: "Megamacro",
  32342. height: math.unit(3240, "feet")
  32343. },
  32344. {
  32345. name: "Teramacro",
  32346. height: math.unit(2500, "miles")
  32347. },
  32348. ]
  32349. ))
  32350. characterMakers.push(() => makeCharacter(
  32351. { name: "Saphinara", species: ["demon", "snow-leopard"], tags: ["anthro"] },
  32352. {
  32353. front: {
  32354. height: math.unit(15 + 7/12, "feet"),
  32355. name: "Front",
  32356. image: {
  32357. source: "./media/characters/saphinara/front.svg",
  32358. extra: 604/546,
  32359. bottom: 19/623
  32360. }
  32361. },
  32362. side: {
  32363. height: math.unit(15 + 7/12, "feet"),
  32364. name: "Side",
  32365. image: {
  32366. source: "./media/characters/saphinara/side.svg",
  32367. extra: 605/547,
  32368. bottom: 6/611
  32369. }
  32370. },
  32371. back: {
  32372. height: math.unit(15 + 7/12, "feet"),
  32373. name: "Back",
  32374. image: {
  32375. source: "./media/characters/saphinara/back.svg",
  32376. extra: 591/531,
  32377. bottom: 13/604
  32378. }
  32379. },
  32380. frontTail: {
  32381. height: math.unit(15 + 7/12, "feet"),
  32382. name: "Front (Full Tail)",
  32383. image: {
  32384. source: "./media/characters/saphinara/front-tail.svg",
  32385. extra: 748/547,
  32386. bottom: 66/814
  32387. }
  32388. },
  32389. },
  32390. [
  32391. {
  32392. name: "Normal",
  32393. height: math.unit(15 + 7/12, "feet"),
  32394. default: true
  32395. },
  32396. {
  32397. name: "Angry",
  32398. height: math.unit(30 + 6/12, "feet")
  32399. },
  32400. {
  32401. name: "Enraged",
  32402. height: math.unit(102 + 1/12, "feet")
  32403. },
  32404. ]
  32405. ))
  32406. characterMakers.push(() => makeCharacter(
  32407. { name: "Jrain", species: ["leviathan"], tags: ["anthro"] },
  32408. {
  32409. front: {
  32410. height: math.unit(6 + 8/12, "feet"),
  32411. weight: math.unit(300, "lb"),
  32412. name: "Front",
  32413. image: {
  32414. source: "./media/characters/jrain/front.svg",
  32415. extra: 3039/2865,
  32416. bottom: 399/3438
  32417. }
  32418. },
  32419. back: {
  32420. height: math.unit(6 + 8/12, "feet"),
  32421. weight: math.unit(300, "lb"),
  32422. name: "Back",
  32423. image: {
  32424. source: "./media/characters/jrain/back.svg",
  32425. extra: 3089/2938,
  32426. bottom: 172/3261
  32427. }
  32428. },
  32429. head: {
  32430. height: math.unit(2.14, "feet"),
  32431. name: "Head",
  32432. image: {
  32433. source: "./media/characters/jrain/head.svg"
  32434. }
  32435. },
  32436. maw: {
  32437. height: math.unit(1.77, "feet"),
  32438. name: "Maw",
  32439. image: {
  32440. source: "./media/characters/jrain/maw.svg"
  32441. }
  32442. },
  32443. leftHand: {
  32444. height: math.unit(1.1, "feet"),
  32445. name: "Left Hand",
  32446. image: {
  32447. source: "./media/characters/jrain/left-hand.svg"
  32448. }
  32449. },
  32450. rightHand: {
  32451. height: math.unit(1.1, "feet"),
  32452. name: "Right Hand",
  32453. image: {
  32454. source: "./media/characters/jrain/right-hand.svg"
  32455. }
  32456. },
  32457. eye: {
  32458. height: math.unit(0.35, "feet"),
  32459. name: "Eye",
  32460. image: {
  32461. source: "./media/characters/jrain/eye.svg"
  32462. }
  32463. },
  32464. },
  32465. [
  32466. {
  32467. name: "Normal",
  32468. height: math.unit(6 + 8/12, "feet"),
  32469. default: true
  32470. },
  32471. {
  32472. name: "Casually Large",
  32473. height: math.unit(25, "feet")
  32474. },
  32475. {
  32476. name: "Giant",
  32477. height: math.unit(100, "feet")
  32478. },
  32479. {
  32480. name: "Kaiju",
  32481. height: math.unit(300, "feet")
  32482. },
  32483. ]
  32484. ))
  32485. characterMakers.push(() => makeCharacter(
  32486. { name: "Sabrina", species: ["dragon", "snake", "gryphon"], tags: ["feral"] },
  32487. {
  32488. dragon: {
  32489. height: math.unit(5, "meters"),
  32490. name: "Dragon",
  32491. image: {
  32492. source: "./media/characters/sabrina/dragon.svg",
  32493. extra: 3670 / 2365,
  32494. bottom: 333 / 4003
  32495. }
  32496. },
  32497. gryphon: {
  32498. height: math.unit(3, "meters"),
  32499. name: "Gryphon",
  32500. image: {
  32501. source: "./media/characters/sabrina/gryphon.svg",
  32502. extra: 1576 / 945,
  32503. bottom: 71 / 1647
  32504. }
  32505. },
  32506. snake: {
  32507. height: math.unit(12, "meters"),
  32508. name: "Snake",
  32509. image: {
  32510. source: "./media/characters/sabrina/snake.svg",
  32511. extra: 1758 / 1320,
  32512. bottom: 186 / 1944
  32513. }
  32514. },
  32515. collar: {
  32516. height: math.unit(1.86, "meters"),
  32517. name: "Collar",
  32518. image: {
  32519. source: "./media/characters/sabrina/collar.svg"
  32520. }
  32521. },
  32522. eye: {
  32523. height: math.unit(0.53, "meters"),
  32524. name: "Eye",
  32525. image: {
  32526. source: "./media/characters/sabrina/eye.svg"
  32527. }
  32528. },
  32529. foot: {
  32530. height: math.unit(1.86, "meters"),
  32531. name: "Foot",
  32532. image: {
  32533. source: "./media/characters/sabrina/foot.svg"
  32534. }
  32535. },
  32536. hand: {
  32537. height: math.unit(1.32, "meters"),
  32538. name: "Hand",
  32539. image: {
  32540. source: "./media/characters/sabrina/hand.svg"
  32541. }
  32542. },
  32543. head: {
  32544. height: math.unit(2.44, "meters"),
  32545. name: "Head",
  32546. image: {
  32547. source: "./media/characters/sabrina/head.svg"
  32548. }
  32549. },
  32550. headAngry: {
  32551. height: math.unit(2.44, "meters"),
  32552. name: "Head (Angry))",
  32553. image: {
  32554. source: "./media/characters/sabrina/head-angry.svg"
  32555. }
  32556. },
  32557. maw: {
  32558. height: math.unit(1.65, "meters"),
  32559. name: "Maw",
  32560. image: {
  32561. source: "./media/characters/sabrina/maw.svg"
  32562. }
  32563. },
  32564. spikes: {
  32565. height: math.unit(1.69, "meters"),
  32566. name: "Spikes",
  32567. image: {
  32568. source: "./media/characters/sabrina/spikes.svg"
  32569. }
  32570. },
  32571. stomach: {
  32572. height: math.unit(1.15, "meters"),
  32573. name: "Stomach",
  32574. image: {
  32575. source: "./media/characters/sabrina/stomach.svg"
  32576. }
  32577. },
  32578. tongue: {
  32579. height: math.unit(1.27, "meters"),
  32580. name: "Tongue",
  32581. image: {
  32582. source: "./media/characters/sabrina/tongue.svg"
  32583. }
  32584. },
  32585. wingDorsal: {
  32586. height: math.unit(4.85, "meters"),
  32587. name: "Wing (Dorsal)",
  32588. image: {
  32589. source: "./media/characters/sabrina/wing-dorsal.svg"
  32590. }
  32591. },
  32592. wingVentral: {
  32593. height: math.unit(4.85, "meters"),
  32594. name: "Wing (Ventral)",
  32595. image: {
  32596. source: "./media/characters/sabrina/wing-ventral.svg"
  32597. }
  32598. },
  32599. },
  32600. [
  32601. {
  32602. name: "Normal",
  32603. height: math.unit(5, "meters"),
  32604. default: true
  32605. },
  32606. ]
  32607. ))
  32608. characterMakers.push(() => makeCharacter(
  32609. { name: "Midnight Tales", species: ["bat"], tags: ["anthro"] },
  32610. {
  32611. frontMaid: {
  32612. height: math.unit(5 + 5/12, "feet"),
  32613. weight: math.unit(130, "lb"),
  32614. name: "Front (Maid)",
  32615. image: {
  32616. source: "./media/characters/midnight-tales/front-maid.svg",
  32617. extra: 489/454,
  32618. bottom: 61/550
  32619. }
  32620. },
  32621. frontFormal: {
  32622. height: math.unit(5 + 5/12, "feet"),
  32623. weight: math.unit(130, "lb"),
  32624. name: "Front (Formal)",
  32625. image: {
  32626. source: "./media/characters/midnight-tales/front-formal.svg",
  32627. extra: 489/454,
  32628. bottom: 61/550
  32629. }
  32630. },
  32631. back: {
  32632. height: math.unit(5 + 5/12, "feet"),
  32633. weight: math.unit(130, "lb"),
  32634. name: "Back",
  32635. image: {
  32636. source: "./media/characters/midnight-tales/back.svg",
  32637. extra: 498/456,
  32638. bottom: 33/531
  32639. }
  32640. },
  32641. frontBeast: {
  32642. height: math.unit(40, "feet"),
  32643. weight: math.unit(64000, "lb"),
  32644. name: "Front (Beast)",
  32645. image: {
  32646. source: "./media/characters/midnight-tales/front-beast.svg",
  32647. extra: 927/860,
  32648. bottom: 53/980
  32649. }
  32650. },
  32651. backBeast: {
  32652. height: math.unit(40, "feet"),
  32653. weight: math.unit(64000, "lb"),
  32654. name: "Back (Beast)",
  32655. image: {
  32656. source: "./media/characters/midnight-tales/back-beast.svg",
  32657. extra: 929/855,
  32658. bottom: 16/945
  32659. }
  32660. },
  32661. footBeast: {
  32662. height: math.unit(6.7, "feet"),
  32663. name: "Foot (Beast)",
  32664. image: {
  32665. source: "./media/characters/midnight-tales/foot-beast.svg"
  32666. }
  32667. },
  32668. headBeast: {
  32669. height: math.unit(8, "feet"),
  32670. name: "Head (Beast)",
  32671. image: {
  32672. source: "./media/characters/midnight-tales/head-beast.svg"
  32673. }
  32674. },
  32675. },
  32676. [
  32677. {
  32678. name: "Normal",
  32679. height: math.unit(5 + 5 / 12, "feet"),
  32680. default: true
  32681. },
  32682. {
  32683. name: "Macro",
  32684. height: math.unit(25, "feet")
  32685. },
  32686. ]
  32687. ))
  32688. characterMakers.push(() => makeCharacter(
  32689. { name: "Argon", species: ["dragon"], tags: ["anthro"] },
  32690. {
  32691. front: {
  32692. height: math.unit(5 + 10/12, "feet"),
  32693. name: "Front",
  32694. image: {
  32695. source: "./media/characters/argon/front.svg",
  32696. extra: 2009/1935,
  32697. bottom: 118/2127
  32698. }
  32699. },
  32700. back: {
  32701. height: math.unit(5 + 10/12, "feet"),
  32702. name: "Back",
  32703. image: {
  32704. source: "./media/characters/argon/back.svg",
  32705. extra: 2047/1992,
  32706. bottom: 20/2067
  32707. }
  32708. },
  32709. frontDressed: {
  32710. height: math.unit(5 + 10/12, "feet"),
  32711. name: "Front (Dressed)",
  32712. image: {
  32713. source: "./media/characters/argon/front-dressed.svg",
  32714. extra: 2009/1935,
  32715. bottom: 118/2127
  32716. }
  32717. },
  32718. },
  32719. [
  32720. {
  32721. name: "Normal",
  32722. height: math.unit(5 + 10/12, "feet"),
  32723. default: true
  32724. },
  32725. ]
  32726. ))
  32727. characterMakers.push(() => makeCharacter(
  32728. { name: "Kichi", species: ["bull", "tanuki"], tags: ["anthro"] },
  32729. {
  32730. front: {
  32731. height: math.unit(8 + 6/12, "feet"),
  32732. weight: math.unit(1150, "lb"),
  32733. name: "Front",
  32734. image: {
  32735. source: "./media/characters/kichi/front.svg",
  32736. extra: 1267/1164,
  32737. bottom: 61/1328
  32738. }
  32739. },
  32740. back: {
  32741. height: math.unit(8 + 6/12, "feet"),
  32742. weight: math.unit(1150, "lb"),
  32743. name: "Back",
  32744. image: {
  32745. source: "./media/characters/kichi/back.svg",
  32746. extra: 1273/1166,
  32747. bottom: 33/1306
  32748. }
  32749. },
  32750. },
  32751. [
  32752. {
  32753. name: "Normal",
  32754. height: math.unit(8 + 6/12, "feet"),
  32755. default: true
  32756. },
  32757. ]
  32758. ))
  32759. characterMakers.push(() => makeCharacter(
  32760. { name: "Manetel Greyscale", species: ["dragon"], tags: ["anthro"] },
  32761. {
  32762. front: {
  32763. height: math.unit(6, "feet"),
  32764. weight: math.unit(210, "lb"),
  32765. name: "Front",
  32766. image: {
  32767. source: "./media/characters/manetel-greyscale/front.svg",
  32768. extra: 350/312,
  32769. bottom: 8/358
  32770. }
  32771. },
  32772. },
  32773. [
  32774. {
  32775. name: "Micro",
  32776. height: math.unit(2, "inches")
  32777. },
  32778. {
  32779. name: "Normal",
  32780. height: math.unit(6, "feet"),
  32781. default: true
  32782. },
  32783. {
  32784. name: "Minimacro",
  32785. height: math.unit(17, "feet")
  32786. },
  32787. {
  32788. name: "Macro",
  32789. height: math.unit(117, "feet")
  32790. },
  32791. ]
  32792. ))
  32793. characterMakers.push(() => makeCharacter(
  32794. { name: "Softpurr", species: ["chakat"], tags: ["taur"] },
  32795. {
  32796. side: {
  32797. height: math.unit(5 + 1/12, "feet"),
  32798. weight: math.unit(418, "lb"),
  32799. name: "Side",
  32800. image: {
  32801. source: "./media/characters/softpurr/side.svg",
  32802. extra: 1993/1945,
  32803. bottom: 134/2127
  32804. }
  32805. },
  32806. front: {
  32807. height: math.unit(5 + 1/12, "feet"),
  32808. weight: math.unit(418, "lb"),
  32809. name: "Front",
  32810. image: {
  32811. source: "./media/characters/softpurr/front.svg",
  32812. extra: 1950/1856,
  32813. bottom: 174/2124
  32814. }
  32815. },
  32816. paw: {
  32817. height: math.unit(1, "feet"),
  32818. name: "Paw",
  32819. image: {
  32820. source: "./media/characters/softpurr/paw.svg"
  32821. }
  32822. },
  32823. },
  32824. [
  32825. {
  32826. name: "Normal",
  32827. height: math.unit(5 + 1/12, "feet"),
  32828. default: true
  32829. },
  32830. ]
  32831. ))
  32832. characterMakers.push(() => makeCharacter(
  32833. { name: "Anahita", species: ["shark"], tags: ["anthro"] },
  32834. {
  32835. front: {
  32836. height: math.unit(260, "meters"),
  32837. name: "Front",
  32838. image: {
  32839. source: "./media/characters/anahita/front.svg",
  32840. extra: 665/635,
  32841. bottom: 89/754
  32842. }
  32843. },
  32844. },
  32845. [
  32846. {
  32847. name: "Macro",
  32848. height: math.unit(260, "meters"),
  32849. default: true
  32850. },
  32851. ]
  32852. ))
  32853. characterMakers.push(() => makeCharacter(
  32854. { name: "Chip (Mouse)", species: ["mouse"], tags: ["anthro"] },
  32855. {
  32856. front: {
  32857. height: math.unit(4 + 10/12, "feet"),
  32858. weight: math.unit(160, "lb"),
  32859. name: "Front",
  32860. image: {
  32861. source: "./media/characters/chip-mouse/front.svg",
  32862. extra: 3528/3408,
  32863. bottom: 0/3528
  32864. }
  32865. },
  32866. frontNsfw: {
  32867. height: math.unit(4 + 10/12, "feet"),
  32868. weight: math.unit(160, "lb"),
  32869. name: "Front (NSFW)",
  32870. image: {
  32871. source: "./media/characters/chip-mouse/front-nsfw.svg",
  32872. extra: 3528/3408,
  32873. bottom: 0/3528
  32874. }
  32875. },
  32876. },
  32877. [
  32878. {
  32879. name: "Normal",
  32880. height: math.unit(4 + 10/12, "feet"),
  32881. default: true
  32882. },
  32883. ]
  32884. ))
  32885. characterMakers.push(() => makeCharacter(
  32886. { name: "Kremm", species: ["dragon"], tags: ["feral"] },
  32887. {
  32888. side: {
  32889. height: math.unit(10, "feet"),
  32890. weight: math.unit(14000, "lb"),
  32891. name: "Side",
  32892. image: {
  32893. source: "./media/characters/kremm/side.svg",
  32894. extra: 1390/1053,
  32895. bottom: 90/1480
  32896. }
  32897. },
  32898. gut: {
  32899. height: math.unit(5.8, "feet"),
  32900. name: "Gut",
  32901. image: {
  32902. source: "./media/characters/kremm/gut.svg"
  32903. }
  32904. },
  32905. ass: {
  32906. height: math.unit(6.1, "feet"),
  32907. name: "Ass",
  32908. image: {
  32909. source: "./media/characters/kremm/ass.svg"
  32910. }
  32911. },
  32912. jaws: {
  32913. height: math.unit(2.2, "feet"),
  32914. name: "Jaws",
  32915. image: {
  32916. source: "./media/characters/kremm/jaws.svg"
  32917. }
  32918. },
  32919. dick: {
  32920. height: math.unit(4.26, "feet"),
  32921. name: "Dick",
  32922. image: {
  32923. source: "./media/characters/kremm/dick.svg"
  32924. }
  32925. },
  32926. },
  32927. [
  32928. {
  32929. name: "Normal",
  32930. height: math.unit(10, "feet"),
  32931. default: true
  32932. },
  32933. ]
  32934. ))
  32935. characterMakers.push(() => makeCharacter(
  32936. { name: "Kai", species: ["skunk"], tags: ["anthro"] },
  32937. {
  32938. front: {
  32939. height: math.unit(30, "stories"),
  32940. name: "Front",
  32941. image: {
  32942. source: "./media/characters/kai/front.svg",
  32943. extra: 1892/1718,
  32944. bottom: 162/2054
  32945. }
  32946. },
  32947. },
  32948. [
  32949. {
  32950. name: "Macro",
  32951. height: math.unit(30, "stories"),
  32952. default: true
  32953. },
  32954. ]
  32955. ))
  32956. characterMakers.push(() => makeCharacter(
  32957. { name: "Sykes", species: ["maned-wolf"], tags: ["anthro"] },
  32958. {
  32959. front: {
  32960. height: math.unit(6 + 4/12, "feet"),
  32961. weight: math.unit(145, "lb"),
  32962. name: "Front",
  32963. image: {
  32964. source: "./media/characters/sykes/front.svg",
  32965. extra: 1321 / 1187,
  32966. bottom: 66 / 1387
  32967. }
  32968. },
  32969. back: {
  32970. height: math.unit(6 + 4/12, "feet"),
  32971. weight: math.unit(145, "lb"),
  32972. name: "Back",
  32973. image: {
  32974. source: "./media/characters/sykes/back.svg",
  32975. extra: 1326/1181,
  32976. bottom: 31/1357
  32977. }
  32978. },
  32979. handBack: {
  32980. height: math.unit(0.9, "feet"),
  32981. name: "Hand (Back)",
  32982. image: {
  32983. source: "./media/characters/sykes/hand-back.svg"
  32984. }
  32985. },
  32986. handFront: {
  32987. height: math.unit(0.839, "feet"),
  32988. name: "Hand (Front)",
  32989. image: {
  32990. source: "./media/characters/sykes/hand-front.svg"
  32991. }
  32992. },
  32993. leftFoot: {
  32994. height: math.unit(1.2, "feet"),
  32995. name: "Foot (Left)",
  32996. image: {
  32997. source: "./media/characters/sykes/foot-left.svg"
  32998. }
  32999. },
  33000. rightFoot: {
  33001. height: math.unit(1.2, "feet"),
  33002. name: "Foot (Right)",
  33003. image: {
  33004. source: "./media/characters/sykes/foot-right.svg"
  33005. }
  33006. },
  33007. maw: {
  33008. height: math.unit(1.93, "feet"),
  33009. name: "Maw",
  33010. image: {
  33011. source: "./media/characters/sykes/maw.svg"
  33012. }
  33013. },
  33014. teeth: {
  33015. height: math.unit(0.51, "feet"),
  33016. name: "Teeth",
  33017. image: {
  33018. source: "./media/characters/sykes/teeth.svg"
  33019. }
  33020. },
  33021. tongue: {
  33022. height: math.unit(2.13, "feet"),
  33023. name: "Tongue",
  33024. image: {
  33025. source: "./media/characters/sykes/tongue.svg"
  33026. }
  33027. },
  33028. uvula: {
  33029. height: math.unit(0.16, "feet"),
  33030. name: "Uvula",
  33031. image: {
  33032. source: "./media/characters/sykes/uvula.svg"
  33033. }
  33034. },
  33035. collar: {
  33036. height: math.unit(0.287, "feet"),
  33037. name: "Collar",
  33038. image: {
  33039. source: "./media/characters/sykes/collar.svg"
  33040. }
  33041. },
  33042. },
  33043. [
  33044. {
  33045. name: "Shrunken",
  33046. height: math.unit(5, "inches")
  33047. },
  33048. {
  33049. name: "Normal",
  33050. height: math.unit(6 + 4 / 12, "feet"),
  33051. default: true
  33052. },
  33053. {
  33054. name: "Big",
  33055. height: math.unit(15, "feet")
  33056. },
  33057. ]
  33058. ))
  33059. characterMakers.push(() => makeCharacter(
  33060. { name: "Oven Otter", species: ["otter"], tags: ["anthro"] },
  33061. {
  33062. front: {
  33063. height: math.unit(5 + 8/12, "feet"),
  33064. weight: math.unit(190, "lb"),
  33065. name: "Front",
  33066. image: {
  33067. source: "./media/characters/oven-otter/front.svg",
  33068. extra: 1809/1740,
  33069. bottom: 181/1990
  33070. }
  33071. },
  33072. back: {
  33073. height: math.unit(5 + 8/12, "feet"),
  33074. weight: math.unit(190, "lb"),
  33075. name: "Back",
  33076. image: {
  33077. source: "./media/characters/oven-otter/back.svg",
  33078. extra: 1709/1635,
  33079. bottom: 118/1827
  33080. }
  33081. },
  33082. hand: {
  33083. height: math.unit(1.07, "feet"),
  33084. name: "Hand",
  33085. image: {
  33086. source: "./media/characters/oven-otter/hand.svg"
  33087. }
  33088. },
  33089. beans: {
  33090. height: math.unit(1.74, "feet"),
  33091. name: "Beans",
  33092. image: {
  33093. source: "./media/characters/oven-otter/beans.svg"
  33094. }
  33095. },
  33096. },
  33097. [
  33098. {
  33099. name: "Micro",
  33100. height: math.unit(0.5, "inches")
  33101. },
  33102. {
  33103. name: "Normal",
  33104. height: math.unit(5 + 8/12, "feet"),
  33105. default: true
  33106. },
  33107. {
  33108. name: "Macro",
  33109. height: math.unit(250, "feet")
  33110. },
  33111. {
  33112. name: "Really High",
  33113. height: math.unit(420, "feet")
  33114. },
  33115. ]
  33116. ))
  33117. characterMakers.push(() => makeCharacter(
  33118. { name: "Devourer", species: ["dragon", "monster"], tags: ["anthro"] },
  33119. {
  33120. front: {
  33121. height: math.unit(5, "meters"),
  33122. weight: math.unit(292000000000000, "kg"),
  33123. name: "Front",
  33124. image: {
  33125. source: "./media/characters/devourer/front.svg",
  33126. extra: 1800/1733,
  33127. bottom: 211/2011
  33128. }
  33129. },
  33130. maw: {
  33131. height: math.unit(1.1, "meter"),
  33132. name: "Maw",
  33133. image: {
  33134. source: "./media/characters/devourer/maw.svg"
  33135. }
  33136. },
  33137. },
  33138. [
  33139. {
  33140. name: "Small",
  33141. height: math.unit(3, "meters")
  33142. },
  33143. {
  33144. name: "Large",
  33145. height: math.unit(5, "meters"),
  33146. default: true
  33147. },
  33148. ]
  33149. ))
  33150. characterMakers.push(() => makeCharacter(
  33151. { name: "Ellarby", species: ["hydra"], tags: ["feral"] },
  33152. {
  33153. front: {
  33154. height: math.unit(6, "feet"),
  33155. weight: math.unit(400, "lb"),
  33156. name: "Front",
  33157. image: {
  33158. source: "./media/characters/ellarby/front.svg",
  33159. extra: 1909/1763,
  33160. bottom: 80/1989
  33161. }
  33162. },
  33163. back: {
  33164. height: math.unit(6, "feet"),
  33165. weight: math.unit(400, "lb"),
  33166. name: "Back",
  33167. image: {
  33168. source: "./media/characters/ellarby/back.svg",
  33169. extra: 1914/1784,
  33170. bottom: 172/2086
  33171. }
  33172. },
  33173. },
  33174. [
  33175. {
  33176. name: "Mischief",
  33177. height: math.unit(18, "inches")
  33178. },
  33179. {
  33180. name: "Trouble",
  33181. height: math.unit(12, "feet")
  33182. },
  33183. {
  33184. name: "Havoc",
  33185. height: math.unit(200, "feet"),
  33186. default: true
  33187. },
  33188. {
  33189. name: "Pandemonium",
  33190. height: math.unit(1, "mile")
  33191. },
  33192. {
  33193. name: "Catastrophe",
  33194. height: math.unit(100, "miles")
  33195. },
  33196. ]
  33197. ))
  33198. characterMakers.push(() => makeCharacter(
  33199. { name: "Vex", species: ["dragon"], tags: ["feral"] },
  33200. {
  33201. front: {
  33202. height: math.unit(4.7, "meters"),
  33203. weight: math.unit(6500, "kg"),
  33204. name: "Front",
  33205. image: {
  33206. source: "./media/characters/vex/front.svg",
  33207. extra: 1288/1140,
  33208. bottom: 100/1388
  33209. }
  33210. },
  33211. },
  33212. [
  33213. {
  33214. name: "Normal",
  33215. height: math.unit(4.7, "meters"),
  33216. default: true
  33217. },
  33218. ]
  33219. ))
  33220. characterMakers.push(() => makeCharacter(
  33221. { name: "Teshy", species: ["pangolin", "monster"], tags: ["anthro"] },
  33222. {
  33223. normal: {
  33224. height: math.unit(6, "feet"),
  33225. weight: math.unit(350, "lb"),
  33226. name: "Normal",
  33227. image: {
  33228. source: "./media/characters/teshy/normal.svg",
  33229. extra: 1795/1735,
  33230. bottom: 16/1811
  33231. }
  33232. },
  33233. monsterFront: {
  33234. height: math.unit(12, "feet"),
  33235. weight: math.unit(4700, "lb"),
  33236. name: "Monster (Front)",
  33237. image: {
  33238. source: "./media/characters/teshy/monster-front.svg",
  33239. extra: 2042/2034,
  33240. bottom: 128/2170
  33241. }
  33242. },
  33243. monsterSide: {
  33244. height: math.unit(12, "feet"),
  33245. weight: math.unit(4700, "lb"),
  33246. name: "Monster (Side)",
  33247. image: {
  33248. source: "./media/characters/teshy/monster-side.svg",
  33249. extra: 2067/2056,
  33250. bottom: 70/2137
  33251. }
  33252. },
  33253. monsterBack: {
  33254. height: math.unit(12, "feet"),
  33255. weight: math.unit(4700, "lb"),
  33256. name: "Monster (Back)",
  33257. image: {
  33258. source: "./media/characters/teshy/monster-back.svg",
  33259. extra: 1921/1914,
  33260. bottom: 171/2092
  33261. }
  33262. },
  33263. },
  33264. [
  33265. {
  33266. name: "Normal",
  33267. height: math.unit(6, "feet"),
  33268. default: true
  33269. },
  33270. ]
  33271. ))
  33272. characterMakers.push(() => makeCharacter(
  33273. { name: "Ramey", species: ["raccoon"], tags: ["anthro"] },
  33274. {
  33275. front: {
  33276. height: math.unit(6, "feet"),
  33277. name: "Front",
  33278. image: {
  33279. source: "./media/characters/ramey/front.svg",
  33280. extra: 790/787,
  33281. bottom: 27/817
  33282. }
  33283. },
  33284. },
  33285. [
  33286. {
  33287. name: "Normal",
  33288. height: math.unit(6, "feet"),
  33289. default: true
  33290. },
  33291. ]
  33292. ))
  33293. characterMakers.push(() => makeCharacter(
  33294. { name: "Phirae", species: ["cat"], tags: ["anthro"] },
  33295. {
  33296. front: {
  33297. height: math.unit(5 + 5/12, "feet"),
  33298. weight: math.unit(120, "lb"),
  33299. name: "Front",
  33300. image: {
  33301. source: "./media/characters/phirae/front.svg",
  33302. extra: 2491/2436,
  33303. bottom: 38/2529
  33304. }
  33305. },
  33306. },
  33307. [
  33308. {
  33309. name: "Normal",
  33310. height: math.unit(5 + 5/12, "feet"),
  33311. default: true
  33312. },
  33313. ]
  33314. ))
  33315. characterMakers.push(() => makeCharacter(
  33316. { name: "Stagglas", species: ["dragon"], tags: ["anthro"] },
  33317. {
  33318. front: {
  33319. height: math.unit(6, "feet"),
  33320. weight: math.unit(150, "lb"),
  33321. name: "Front",
  33322. image: {
  33323. source: "./media/characters/stagglas/front.svg",
  33324. extra: 962/882,
  33325. bottom: 53/1015
  33326. }
  33327. },
  33328. },
  33329. [
  33330. {
  33331. name: "Normal",
  33332. height: math.unit(5 + 3/12, "feet"),
  33333. default: true
  33334. },
  33335. ]
  33336. ))
  33337. characterMakers.push(() => makeCharacter(
  33338. { name: "Starra", species: ["dragon"], tags: ["anthro"] },
  33339. {
  33340. front: {
  33341. height: math.unit(5 + 4/12, "feet"),
  33342. weight: math.unit(145, "lb"),
  33343. name: "Front",
  33344. image: {
  33345. source: "./media/characters/starra/front.svg",
  33346. extra: 1790/1691,
  33347. bottom: 91/1881
  33348. }
  33349. },
  33350. },
  33351. [
  33352. {
  33353. name: "Normal",
  33354. height: math.unit(5 + 4/12, "feet"),
  33355. default: true
  33356. },
  33357. ]
  33358. ))
  33359. characterMakers.push(() => makeCharacter(
  33360. { name: "Dr. Kaizo Inazuma", species: ["zorgoia"], tags: ["anthro"] },
  33361. {
  33362. front: {
  33363. height: math.unit(2.2, "meters"),
  33364. name: "Front",
  33365. image: {
  33366. source: "./media/characters/dr-kaizo-inazuma/front.svg",
  33367. extra: 1194/1005,
  33368. bottom: 25/1219
  33369. }
  33370. },
  33371. },
  33372. [
  33373. {
  33374. name: "Normal",
  33375. height: math.unit(2.2, "meters"),
  33376. default: true
  33377. },
  33378. ]
  33379. ))
  33380. characterMakers.push(() => makeCharacter(
  33381. { name: "Mika Valentine", species: ["red-panda"], tags: ["taur"] },
  33382. {
  33383. side: {
  33384. height: math.unit(8 + 2/12, "feet"),
  33385. weight: math.unit(1240, "lb"),
  33386. name: "Side",
  33387. image: {
  33388. source: "./media/characters/mika-valentine/side.svg",
  33389. extra: 2670/2501,
  33390. bottom: 250/2920
  33391. }
  33392. },
  33393. },
  33394. [
  33395. {
  33396. name: "Normal",
  33397. height: math.unit(8 + 2/12, "feet"),
  33398. default: true
  33399. },
  33400. ]
  33401. ))
  33402. characterMakers.push(() => makeCharacter(
  33403. { name: "Xoltol", species: ["dragon"], tags: ["anthro"] },
  33404. {
  33405. front: {
  33406. height: math.unit(7 + 2/12, "feet"),
  33407. name: "Front",
  33408. image: {
  33409. source: "./media/characters/xoltol/front.svg",
  33410. extra: 2212/2124,
  33411. bottom: 84/2296
  33412. }
  33413. },
  33414. side: {
  33415. height: math.unit(7 + 2/12, "feet"),
  33416. name: "Side",
  33417. image: {
  33418. source: "./media/characters/xoltol/side.svg",
  33419. extra: 2273/2197,
  33420. bottom: 26/2299
  33421. }
  33422. },
  33423. hand: {
  33424. height: math.unit(2.5, "feet"),
  33425. name: "Hand",
  33426. image: {
  33427. source: "./media/characters/xoltol/hand.svg"
  33428. }
  33429. },
  33430. },
  33431. [
  33432. {
  33433. name: "Small-ish",
  33434. height: math.unit(5 + 11/12, "feet")
  33435. },
  33436. {
  33437. name: "Normal",
  33438. height: math.unit(7 + 2/12, "feet")
  33439. },
  33440. {
  33441. name: "\"Macro\"",
  33442. height: math.unit(14 + 9/12, "feet"),
  33443. default: true
  33444. },
  33445. {
  33446. name: "Alternate Height",
  33447. height: math.unit(20, "feet")
  33448. },
  33449. {
  33450. name: "Actually Macro",
  33451. height: math.unit(100, "feet")
  33452. },
  33453. ]
  33454. ))
  33455. characterMakers.push(() => makeCharacter(
  33456. { name: "Kotetsu Redwood", species: ["zigzagoon"], tags: ["anthro"] },
  33457. {
  33458. front: {
  33459. height: math.unit(5 + 2/12, "feet"),
  33460. name: "Front",
  33461. image: {
  33462. source: "./media/characters/kotetsu-redwood/front.svg",
  33463. extra: 1053/942,
  33464. bottom: 60/1113
  33465. }
  33466. },
  33467. },
  33468. [
  33469. {
  33470. name: "Normal",
  33471. height: math.unit(5 + 2/12, "feet"),
  33472. default: true
  33473. },
  33474. ]
  33475. ))
  33476. characterMakers.push(() => makeCharacter(
  33477. { name: "Lilith", species: ["vulture"], tags: ["anthro"] },
  33478. {
  33479. front: {
  33480. height: math.unit(2.4, "meters"),
  33481. weight: math.unit(125, "kg"),
  33482. name: "Front",
  33483. image: {
  33484. source: "./media/characters/lilith/front.svg",
  33485. extra: 1590/1513,
  33486. bottom: 203/1793
  33487. }
  33488. },
  33489. },
  33490. [
  33491. {
  33492. name: "Humanoid",
  33493. height: math.unit(2.4, "meters")
  33494. },
  33495. {
  33496. name: "Normal",
  33497. height: math.unit(6, "meters"),
  33498. default: true
  33499. },
  33500. {
  33501. name: "Largest",
  33502. height: math.unit(55, "meters")
  33503. },
  33504. ]
  33505. ))
  33506. characterMakers.push(() => makeCharacter(
  33507. { name: "Bek'kah Bolger", species: ["kobold"], tags: ["anthro"] },
  33508. {
  33509. front: {
  33510. height: math.unit(8 + 4/12, "feet"),
  33511. weight: math.unit(535, "lb"),
  33512. name: "Front",
  33513. image: {
  33514. source: "./media/characters/beh'kah-bolger/front.svg",
  33515. extra: 1660/1603,
  33516. bottom: 37/1697
  33517. }
  33518. },
  33519. },
  33520. [
  33521. {
  33522. name: "Normal",
  33523. height: math.unit(8 + 4/12, "feet"),
  33524. default: true
  33525. },
  33526. {
  33527. name: "Kaiju",
  33528. height: math.unit(250, "feet")
  33529. },
  33530. {
  33531. name: "Still Growing",
  33532. height: math.unit(10, "miles")
  33533. },
  33534. {
  33535. name: "Continental",
  33536. height: math.unit(5000, "miles")
  33537. },
  33538. {
  33539. name: "Final Form",
  33540. height: math.unit(2500000, "miles")
  33541. },
  33542. ]
  33543. ))
  33544. characterMakers.push(() => makeCharacter(
  33545. { name: "Tatyana Milewska", species: ["shark"], tags: ["anthro"] },
  33546. {
  33547. front: {
  33548. height: math.unit(7 + 2/12, "feet"),
  33549. weight: math.unit(230, "kg"),
  33550. name: "Front",
  33551. image: {
  33552. source: "./media/characters/tatyana-milewska/front.svg",
  33553. extra: 1199/1150,
  33554. bottom: 86/1285
  33555. }
  33556. },
  33557. },
  33558. [
  33559. {
  33560. name: "Normal",
  33561. height: math.unit(7 + 2/12, "feet"),
  33562. default: true
  33563. },
  33564. {
  33565. name: "Big",
  33566. height: math.unit(12, "feet")
  33567. },
  33568. {
  33569. name: "Minimacro",
  33570. height: math.unit(20, "feet")
  33571. },
  33572. {
  33573. name: "Macro",
  33574. height: math.unit(120, "feet")
  33575. },
  33576. ]
  33577. ))
  33578. characterMakers.push(() => makeCharacter(
  33579. { name: "Helen Arri", species: ["dragon"], tags: ["anthro"] },
  33580. {
  33581. front: {
  33582. height: math.unit(7 + 8/12, "feet"),
  33583. weight: math.unit(152, "kg"),
  33584. name: "Front",
  33585. image: {
  33586. source: "./media/characters/helen-arri/front.svg",
  33587. extra: 440/423,
  33588. bottom: 14/454
  33589. }
  33590. },
  33591. back: {
  33592. height: math.unit(7 + 8/12, "feet"),
  33593. weight: math.unit(152, "kg"),
  33594. name: "Back",
  33595. image: {
  33596. source: "./media/characters/helen-arri/back.svg",
  33597. extra: 443/426,
  33598. bottom: 8/451
  33599. }
  33600. },
  33601. },
  33602. [
  33603. {
  33604. name: "Normal",
  33605. height: math.unit(7 + 8/12, "feet"),
  33606. default: true
  33607. },
  33608. {
  33609. name: "Big",
  33610. height: math.unit(14, "feet")
  33611. },
  33612. {
  33613. name: "Minimacro",
  33614. height: math.unit(24, "feet")
  33615. },
  33616. {
  33617. name: "Macro",
  33618. height: math.unit(140, "feet")
  33619. },
  33620. ]
  33621. ))
  33622. characterMakers.push(() => makeCharacter(
  33623. { name: "Ehanu Rehu", species: ["eastern-dragon"], tags: ["anthro"] },
  33624. {
  33625. front: {
  33626. height: math.unit(6, "meters"),
  33627. name: "Front",
  33628. image: {
  33629. source: "./media/characters/ehanu-rehu/front.svg",
  33630. extra: 1800/1800,
  33631. bottom: 59/1859
  33632. }
  33633. },
  33634. },
  33635. [
  33636. {
  33637. name: "Normal",
  33638. height: math.unit(6, "meters"),
  33639. default: true
  33640. },
  33641. ]
  33642. ))
  33643. characterMakers.push(() => makeCharacter(
  33644. { name: "Renholder", species: ["bat"], tags: ["anthro"] },
  33645. {
  33646. front: {
  33647. height: math.unit(7 + 3/12, "feet"),
  33648. name: "Front",
  33649. image: {
  33650. source: "./media/characters/renholder/front.svg",
  33651. extra: 3096/2960,
  33652. bottom: 250/3346
  33653. }
  33654. },
  33655. },
  33656. [
  33657. {
  33658. name: "Normal Bat",
  33659. height: math.unit(7 + 3/12, "feet"),
  33660. default: true
  33661. },
  33662. {
  33663. name: "Slightly Tall Bat",
  33664. height: math.unit(100, "feet")
  33665. },
  33666. {
  33667. name: "Big Bat",
  33668. height: math.unit(1000, "feet")
  33669. },
  33670. {
  33671. name: "City-Sized Bat",
  33672. height: math.unit(200000, "feet")
  33673. },
  33674. {
  33675. name: "Bigger Bat",
  33676. height: math.unit(10000, "miles")
  33677. },
  33678. {
  33679. name: "Solar Sized Bat",
  33680. height: math.unit(100, "AU")
  33681. },
  33682. {
  33683. name: "Galactic Bat",
  33684. height: math.unit(200000, "lightyears")
  33685. },
  33686. {
  33687. name: "Universally Known Bat",
  33688. height: math.unit(1, "universe")
  33689. },
  33690. ]
  33691. ))
  33692. //characters
  33693. function makeCharacters() {
  33694. const results = [];
  33695. characterMakers.forEach(character => {
  33696. results.push(character());
  33697. });
  33698. return results;
  33699. }